diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-10 09:19:11 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-10 09:19:11 +0300 |
commit | b25b2ce75d1360bb1cf4e7f140afdb6ed0cc58f2 (patch) | |
tree | b661b715f7528f0d524512f2905662fec5477cac /awk.h | |
parent | 769a5078505d62a0c7f89dcecc13fb119a990d00 (diff) | |
parent | 426afac5ee1c835f53eb78fa98df52ce52959c22 (diff) | |
download | egawk-b25b2ce75d1360bb1cf4e7f140afdb6ed0cc58f2.tar.gz egawk-b25b2ce75d1360bb1cf4e7f140afdb6ed0cc58f2.tar.bz2 egawk-b25b2ce75d1360bb1cf4e7f140afdb6ed0cc58f2.zip |
Merge branch 'gawk-4.1-stable'
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 |