From: Peep P. <so...@us...> - 2004-06-07 15:43:21
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8566 Modified Files: lpc.h Log Message: Removed T_SPECIAL and uses of array_t Index: lpc.h =================================================================== RCS file: /cvsroot/agd/server/src/lpc.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- lpc.h 3 Apr 2004 20:19:08 -0000 1.8 +++ lpc.h 7 Jun 2004 15:43:11 -0000 1.9 @@ -15,9 +15,9 @@ #define T_LVALUE 0x10 /* Used by interpret.c. I'd rather not have it here, but as it also needs an union member, it would be too cluttered otherwise. */ -#define T_SPECIAL 0x20 /* For initializing variables in compile.c and lang.y */ #define T_ARRAY 0x80 /* Indicates an array datatype. */ +/* string_types */ #define ST_MALLOC 1 #define ST_STATIC 2 @@ -32,7 +32,7 @@ unsigned char c; #endif char *s; - array_t *a; + struct array_t *a; struct object_t *ob; struct variable_t *v; /* T_LVALUE */ } u; |