diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-10 09:18:50 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-10 09:18:50 +0300 |
commit | 426afac5ee1c835f53eb78fa98df52ce52959c22 (patch) | |
tree | 0dc441a3f4b09baffe8937fe739b3bbe0fcdf3e4 /awk.h | |
parent | 9bac49a90fec1886de5ae898d84a0022a2a4f2f6 (diff) | |
download | egawk-426afac5ee1c835f53eb78fa98df52ce52959c22.tar.gz egawk-426afac5ee1c835f53eb78fa98df52ce52959c22.tar.bz2 egawk-426afac5ee1c835f53eb78fa98df52ce52959c22.zip |
Bug fix to flag values.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -437,10 +437,10 @@ typedef struct exp_node { # define NULL_FIELD 0x4000 /* this is the null field */ /* type = Node_var_array */ -# define ARRAYMAXED 0x4000 /* array is at max size */ -# define HALFHAT 0x8000 /* half-capacity Hashed Array Tree; +# define ARRAYMAXED 0x8000 /* array is at max size */ +# define HALFHAT 0x10000 /* half-capacity Hashed Array Tree; * See cint_array.c */ -# define XARRAY 0x10000 +# define XARRAY 0x20000 } NODE; #define vname sub.nodep.name |