From 426afac5ee1c835f53eb78fa98df52ce52959c22 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Thu, 10 Oct 2013 09:18:50 +0300 Subject: Bug fix to flag values. --- awk.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'awk.h') diff --git a/awk.h b/awk.h index f57e62e9..e2744e53 100644 --- a/awk.h +++ b/awk.h @@ -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 -- cgit v1.2.3