pike.git/
src/
language.yacc
Branch:
Tag:
Non-build tags
All tags
No tags
1997-03-01
1997-03-01 02:37:03 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
e319bb1ed4c7fdb0743e300754afc1cc98f6b934 (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
sill bug fixed
Rev: src/language.yacc:1.26
Rev: src/las.c:1.28
156:
/* This is the grammar definition of Pike. */ #include "global.h"
-
RCSID("$Id: language.yacc,v 1.
25
1997/
02
/
18
05
:
13
:
34
hubbe Exp $");
+
RCSID("$Id: language.yacc,v 1.
26
1997/
03
/
01
02
:
37
:
01
hubbe Exp $");
#ifdef HAVE_MEMORY_H #include <memory.h> #endif
1130:
{ $$=index_node($1, $3); free_node($1);
-
free_string
(
$3
)
;
-
free_string(last_identifier);
+
if(last
_
identifier
) free_string(last_identifier);
copy_shared_string(last_identifier, $3);
-
+
free_string($3);
} ;