Branch: Tag:

1998-02-01

1998-02-01 04:01:36 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

multi-lvalues implemented...

Rev: src/array.c:1.26
Rev: src/array.h:1.8
Rev: src/docode.c:1.30
Rev: src/interpret.c:1.66
Rev: src/language.yacc:1.59
Rev: src/las.c:1.50
Rev: src/lex.c:1.43
Rev: src/svalue.h:1.11

25:   };      #define ARRAY_CYCLIC 1 + #define ARRAY_LVALUE 2      extern struct array empty_array;   
61:   /* Prototypes begin here */   struct array *low_allocate_array(INT32 size,INT32 extra_space);   void really_free_array(struct array *v); + void do_free_array(struct array *a);   void array_index_no_free(struct svalue *s,struct array *v,INT32 index);   void array_index(struct svalue *s,struct array *v,INT32 index);   void simple_array_index_no_free(struct svalue *s,