[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, feature/fixtype, updated. gawk-4.1.0-203
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, feature/fixtype, updated. gawk-4.1.0-2037-ge8d1df7 |
Date: |
Tue, 11 Oct 2016 11:40:05 +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/fixtype has been updated
via e8d1df79c448926cc725450f4aedbaa936b2b237 (commit)
via 662a50264f770f5bd972bee0e1980b9cb08ff41d (commit)
from 1a9f578a4a54493cb4fbaee8efab4937fc2f9054 (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=e8d1df79c448926cc725450f4aedbaa936b2b237
commit e8d1df79c448926cc725450f4aedbaa936b2b237
Merge: 1a9f578 662a502
Author: Arnold D. Robbins <address@hidden>
Date: Tue Oct 11 14:39:56 2016 +0300
Merge branch 'master' into feature/fixtype
diff --cc awk.h
index 1c5363d,827d550..57300e2
--- 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/fixtype, updated. gawk-4.1.0-2037-ge8d1df7,
Arnold Robbins <=