[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-2090-g5cf16f
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-2090-g5cf16f1 |
Date: |
Mon, 21 Nov 2016 08:19:38 +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, master has been updated
via 5cf16f15d342bd16093b9cbd233404f7f52ae4b5 (commit)
from c2448a50be949f5df2da4f7a1baf58358b297970 (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=5cf16f15d342bd16093b9cbd233404f7f52ae4b5
commit 5cf16f15d342bd16093b9cbd233404f7f52ae4b5
Author: Arnold D. Robbins <address@hidden>
Date: Mon Nov 21 10:19:28 2016 +0200
Sync dfa.c with GNULIB.
diff --git a/ChangeLog b/ChangeLog
index de34388..d656636 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-11-21 Arnold D. Robbins <address@hidden>
+
+ * dfa.c: Sync with GNULIB.
+
2016-11-17 Arnold D. Robbins <address@hidden>
General cleanup for zero termination of strings.
diff --git a/dfa.c b/dfa.c
index 62bb643..0267378 100644
--- a/dfa.c
+++ b/dfa.c
@@ -841,8 +841,8 @@ using_simple_locale (bool multibyte)
&& '}' == 125 && '~' == 126)
};
- if (native_c_charset && !multibyte)
- return true;
+ if (!native_c_charset || multibyte)
+ return false;
else
{
/* Treat C and POSIX locales as being compatible. Also, treat
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++++
dfa.c | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-2090-g5cf16f1,
Arnold Robbins <=