[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, feature/nocopy, updated. gawk-4.1.0-2036
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, feature/nocopy, updated. gawk-4.1.0-2036-g21da4e0 |
Date: |
Tue, 11 Oct 2016 11:42:25 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, feature/nocopy has been updated
via 21da4e0801ad2e54503f0790b328ac81fee5d290 (commit)
via 662a50264f770f5bd972bee0e1980b9cb08ff41d (commit)
from 66f3b2f25f28d88def287e3b7e958bb504bc4eb1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=21da4e0801ad2e54503f0790b328ac81fee5d290
commit 21da4e0801ad2e54503f0790b328ac81fee5d290
Merge: 66f3b2f 662a502
Author: Arnold D. Robbins <address@hidden>
Date: Tue Oct 11 14:42:17 2016 +0300
Merge branch 'master' into feature/nocopy
diff --cc awk.h
index ffe9a39,827d550..a3fc907
--- a/awk.h
+++ b/awk.h
@@@ -442,22 -442,24 +442,23 @@@ typedef struct exp_node
# define NUMBER 0x0010 /* assigned as number */
# define MAYBE_NUM 0x0020 /* user input: if NUMERIC then
* a NUMBER */
-# define FIELD 0x0040 /* this is a field */
-# define INTLSTR 0x0080 /* use localized version */
-# define NUMINT 0x0100 /* numeric value is an integer */
-# define INTIND 0x0200 /* integral value is array index;
+# define INTLSTR 0x0040 /* use localized version */
+# define NUMINT 0x0080 /* numeric value is an integer */
+# define INTIND 0x0100 /* integral value is array index;
* lazy conversion to string.
*/
-# define WSTRCUR 0x0400 /* wide str value is current */
-# define MPFN 0x0800 /* arbitrary-precision
floating-point number */
-# define MPZN 0x1000 /* arbitrary-precision integer */
-# define NO_EXT_SET 0x2000 /* extension cannot set a value
for this variable */
-# define NULL_FIELD 0x4000 /* this is the null field */
+# define WSTRCUR 0x0200 /* wide str value is current */
+# define MPFN 0x0400 /* arbitrary-precision
floating-point number */
+# define MPZN 0x0800 /* arbitrary-precision integer */
+# define NO_EXT_SET 0x1000 /* extension cannot set a value
for this variable */
+# define NULL_FIELD 0x2000 /* this is the null field */
/* type = Node_var_array */
-# define ARRAYMAXED 0x8000 /* array is at max size */
-# define HALFHAT 0x10000 /* 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 0x20000
-# define NUMCONSTSTR 0x40000 /* have string value for
numeric constant */
+# define XARRAY 0x10000
++# define NUMCONSTSTR 0x20000 /* have string value for
numeric constant */
} NODE;
#define vname sub.nodep.name
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 10 +
awk.h | 1 +
awkgram.c | 806 +++++++++++++++++++++++++++-------------------------
awkgram.y | 46 ++-
profile.c | 38 +--
test/ChangeLog | 4 +
test/mpfrmemok1.ok | 2 +-
7 files changed, 479 insertions(+), 428 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, feature/nocopy, updated. gawk-4.1.0-2036-g21da4e0,
Arnold Robbins <=