aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2012-10-11 22:23:34 +0200
committerArnold D. Robbins <arnold@skeeve.com>2012-10-11 22:23:34 +0200
commit7187c507d21165be6c060f0ee6495cd8869a1e08 (patch)
tree65e0023740862af701560922add2992984bec80f /awk.h
parent0961d7b8cc08365bc82f7410a013517a839d683e (diff)
downloadegawk-7187c507d21165be6c060f0ee6495cd8869a1e08.tar.gz
egawk-7187c507d21165be6c060f0ee6495cd8869a1e08.tar.bz2
egawk-7187c507d21165be6c060f0ee6495cd8869a1e08.zip
Bug fix in testext test and fix flag values.
Diffstat (limited to 'awk.h')
-rw-r--r--awk.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/awk.h b/awk.h
index c2a65584..a684b732 100644
--- a/awk.h
+++ b/awk.h
@@ -449,10 +449,10 @@ typedef struct exp_node {
# define NO_EXT_SET 0x2000 /* extension cannot set a value for this variable */
/* type = Node_var_array */
-# define ARRAYMAXED 0x2000 /* array is at max size */
-# define HALFHAT 0x4000 /* half-capacity Hashed Array Tree;
+# define ARRAYMAXED 0x4000 /* array is at max size */
+# define HALFHAT 0x8000 /* half-capacity Hashed Array Tree;
* See cint_array.c */
-# define XARRAY 0x8000
+# define XARRAY 0x10000
} NODE;
#define vname sub.nodep.name