[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, feature/api-parser, updated. gawk-4.1.0-
From: |
Andrew J. Schorr |
Subject: |
[gawk-diffs] [SCM] gawk branch, feature/api-parser, updated. gawk-4.1.0-2490-g627836f |
Date: |
Mon, 10 Apr 2017 12:13:57 -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/api-parser has been updated
via 627836fc67d52e54f004dc4f7ad7ec0f609840f6 (commit)
from 7f6772a66e57c9f636cbbf370015200a7dae2ef8 (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=627836fc67d52e54f004dc4f7ad7ec0f609840f6
commit 627836fc67d52e54f004dc4f7ad7ec0f609840f6
Author: Andrew J. Schorr <address@hidden>
Date: Mon Apr 10 12:13:08 2017 -0400
Trivial change to field.c set_FIELDWIDTHS for type consistency.
diff --git a/ChangeLog b/ChangeLog
index 60f3a73..ed428a8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-04-10 Andrew J. Schorr <address@hidden>
+
+ * field.c (set_FIELDWIDTHS): Set use_chars to awk_true, since its
+ type is awk_bool_t.
+
2017-04-09 Andrew J. Schorr <address@hidden>
* field.c (fw_parse_field): Edit comment about resetting shift state.
diff --git a/field.c b/field.c
index 3810574..a3be977 100644
--- a/field.c
+++ b/field.c
@@ -1150,7 +1150,7 @@ set_FIELDWIDTHS()
if (FIELDWIDTHS == NULL) {
emalloc(FIELDWIDTHS, awk_fieldwidth_info_t *,
awk_fieldwidth_info_size(fw_alloc), "set_FIELDWIDTHS");
- FIELDWIDTHS->use_chars = true;
+ FIELDWIDTHS->use_chars = awk_true;
}
FIELDWIDTHS->nf = 0;
for (i = 0; ; i++) {
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
field.c | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, feature/api-parser, updated. gawk-4.1.0-2490-g627836f,
Andrew J. Schorr <=