[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, feature/cpp-compile, updated. gawk-4.1.0-4665-gb3a734
From: |
Arnold Robbins |
Subject: |
[SCM] gawk branch, feature/cpp-compile, updated. gawk-4.1.0-4665-gb3a7348 |
Date: |
Mon, 18 Oct 2021 12:23:25 -0400 (EDT) |
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/cpp-compile has been updated
via b3a7348866f676133f0edd588ce74979170ad667 (commit)
via 3d6d06827c2a84b5b3a22de5b546857b3c3991e1 (commit)
via 51181b9f13fe0b26135a448e2a5f3d4e4d82e151 (commit)
from ed135e2c0f8492bfba49eb7fb2bf805dc2c42724 (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=b3a7348866f676133f0edd588ce74979170ad667
commit b3a7348866f676133f0edd588ce74979170ad667
Merge: ed135e2 3d6d068
Author: Arnold D. Robbins <arnold@skeeve.com>
Date: Mon Oct 18 19:23:17 2021 +0300
Merge branch 'master' into feature/cpp-compile
diff --cc awkgram.c
index 54b0cbe,7bd2f18..34210f8
--- a/awkgram.c
+++ b/awkgram.c
@@@ -9312,10 -9312,10 +9312,10 @@@ check_qualified_special(char *token
goto done;
}
- if (strcmp(ns, "awk") == 0) {
+ if (strcmp(ns, awk_namespace) == 0) {
i = check_special(subname);
if (i >= 0) {
- if ((tokentab[i].flags & GAWKX) != 0 &&
tokentab[i].class == LEX_BUILTIN)
+ if ((tokentab[i].flags & GAWKX) != 0 &&
tokentab[i].lex_class == LEX_BUILTIN)
; // gawk additional builtin function, is
ok
else
error_ln(sourceline, _("using reserved
identifier `%s' as second component of a qualified name is not allowed"),
subname);
diff --cc awkgram.y
index ce96eee,f4a8124..ac355c1
--- a/awkgram.y
+++ b/awkgram.y
@@@ -6804,10 -6804,10 +6804,10 @@@ check_qualified_special(char *token
goto done;
}
- if (strcmp(ns, "awk") == 0) {
+ if (strcmp(ns, awk_namespace) == 0) {
i = check_special(subname);
if (i >= 0) {
- if ((tokentab[i].flags & GAWKX) != 0 &&
tokentab[i].class == LEX_BUILTIN)
+ if ((tokentab[i].flags & GAWKX) != 0 &&
tokentab[i].lex_class == LEX_BUILTIN)
; // gawk additional builtin function, is
ok
else
error_ln(sourceline, _("using reserved
identifier `%s' as second component of a qualified name is not allowed"),
subname);
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 16 +++++++++++++
awkgram.c | 8 +++----
awkgram.y | 8 +++----
pc/Makefile.tst | 67 +++++++++++++++++++++++++++++-------------------------
profile.c | 7 +++---
symbol.c | 26 ++++++++++++++-------
test/ChangeLog | 5 ++++
test/Makefile.am | 10 ++++----
test/Makefile.in | 15 ++++++++----
test/Maketests | 5 ++++
test/profile16.awk | 16 +++++++++++++
test/profile16.ok | 18 +++++++++++++++
12 files changed, 143 insertions(+), 58 deletions(-)
create mode 100644 test/profile16.awk
create mode 100644 test/profile16.ok
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, feature/cpp-compile, updated. gawk-4.1.0-4665-gb3a7348,
Arnold Robbins <=