[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, feature/fixtype, updated. gawk-4.1.0-188
From: |
Andrew J. Schorr |
Subject: |
[gawk-diffs] [SCM] gawk branch, feature/fixtype, updated. gawk-4.1.0-1887-gff4e070 |
Date: |
Sun, 3 Jul 2016 20:51:40 +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 ff4e0706c5ee5dffd69168ebd0ff5f53e474d048 (commit)
from f34cb4d3ef340a58dae88f426543c05c4e09f6dd (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=ff4e0706c5ee5dffd69168ebd0ff5f53e474d048
commit ff4e0706c5ee5dffd69168ebd0ff5f53e474d048
Author: Andrew J. Schorr <address@hidden>
Date: Sun Jul 3 16:51:23 2016 -0400
Revert warning message until I'm certain that that flag combo is invalid.
diff --git a/ChangeLog b/ChangeLog
index e50324d..ecd9305 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2016-07-03 Andrew J. Schorr <address@hidden>
+ * field.c (rebuild_record): Revert warning message regarding flags,
+ since I'm not yet totally confident that it is invalid to have FIELD
+ and MALLOC set at the same time.
+
+2016-07-03 Andrew J. Schorr <address@hidden>
+
* field.c (rebuild_record): Do not turn off the STRING flag when
copying a FIELD node, and issue a warning if MALLOC is enabled.
diff --git a/field.c b/field.c
index 5e5a351..892818f 100644
--- a/field.c
+++ b/field.c
@@ -216,11 +216,7 @@ rebuild_record()
}
} else {
*n = *r;
- if (n->flags & MALLOC) {
- /* unexpected, since FIELD is on! */
- warning(_("invalid flags combination
`%s' detected while rebuilding record; please file a bug report."),
flags2str(n->flags));
- n->flags &= ~MALLOC;
- }
+ n->flags &= ~MALLOC;
}
n->stptr = cops;
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 6 ++++++
field.c | 6 +-----
2 files changed, 7 insertions(+), 5 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-1887-gff4e070,
Andrew J. Schorr <=