[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-674
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-674-g6ee29a0 |
Date: |
Sun, 26 Apr 2015 19:37:41 +0000 |
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, gawk-4.1-stable has been updated
via 6ee29a02f9c71a3e97c1cc1a8cc7c476c2e96187 (commit)
from 2762b8ff355e33ede7bcd71efbaf076b54a4e43b (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=6ee29a02f9c71a3e97c1cc1a8cc7c476c2e96187
commit 6ee29a02f9c71a3e97c1cc1a8cc7c476c2e96187
Author: Arnold D. Robbins <address@hidden>
Date: Sun Apr 26 22:37:26 2015 +0300
Sync dfa.c with GNU grep.
diff --git a/ChangeLog b/ChangeLog
index 14f4af1..3696d13 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-04-26 Arnold D. Robbins <address@hidden>
+
+ * dfa.c: Sync with grep.
+
2015-04-16 Arnold D. Robbins <address@hidden>
* builtin.c (do_strftime): For bad time_t values, return "".
diff --git a/dfa.c b/dfa.c
index 4b461fe..9649786 100644
--- a/dfa.c
+++ b/dfa.c
@@ -1008,9 +1008,8 @@ find_pred (const char *str)
unsigned int i;
for (i = 0; prednames[i].name; ++i)
if (STREQ (str, prednames[i].name))
- break;
-
- return &prednames[i];
+ return &prednames[i];
+ return NULL;
}
/* Multibyte character handling sub-routine for lex.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++++
dfa.c | 5 ++---
2 files changed, 6 insertions(+), 3 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-674-g6ee29a0,
Arnold Robbins <=