gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gawk-diffs] [SCM] gawk branch, gawk-4.0-stable, updated. 84d6acb5c16aa9


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.0-stable, updated. 84d6acb5c16aa9aed908fde7cb0bc53c2ecbeede
Date: Sun, 12 Aug 2012 09:48:32 +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.0-stable has been updated
       via  84d6acb5c16aa9aed908fde7cb0bc53c2ecbeede (commit)
      from  f60abc38c224e5a56aef64564d37f5f6ef7e87a9 (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=84d6acb5c16aa9aed908fde7cb0bc53c2ecbeede

commit 84d6acb5c16aa9aed908fde7cb0bc53c2ecbeede
Author: Arnold D. Robbins <address@hidden>
Date:   Sun Aug 12 12:48:18 2012 +0300

    Sync w/GNU grep.

diff --git a/ChangeLog b/ChangeLog
index d6afeb2..7c0d638 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-08-12         Arnold D. Robbins     <address@hidden>
+
+       * dfa.c: Sync w/GNU grep.
+
 2012-06-19         Arnold D. Robbins     <address@hidden>
 
        * main.c (main): Do setlocale to "C" if --characters-as-bytes.
diff --git a/dfa.c b/dfa.c
index 64b7ddc..fa05181 100644
--- a/dfa.c
+++ b/dfa.c
@@ -1673,7 +1673,7 @@ add_utf8_anychar (void)
   static const charclass utf8_classes[5] = {
     {0, 0, 0, 0, ~0, ~0, 0, 0}, /* 80-bf: non-lead bytes */
     {~0, ~0, ~0, ~0, 0, 0, 0, 0},       /* 00-7f: 1-byte sequence */
-    {0, 0, 0, 0, 0, 0, 0xfffffffcU, 0}, /* c2-df: 2-byte sequence */
+    {0, 0, 0, 0, 0, 0, ~3, 0},          /* c2-df: 2-byte sequence */
     {0, 0, 0, 0, 0, 0, 0, 0xffff},      /* e0-ef: 3-byte sequence */
     {0, 0, 0, 0, 0, 0, 0, 0xff0000}     /* f0-f7: 4-byte sequence */
   };

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog |    4 ++++
 dfa.c     |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]