grep-commit
[Top][All Lists]
Advanced

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

grep branch, master, updated. v2.18-136-ga095149


From: Paul Eggert
Subject: grep branch, master, updated. v2.18-136-ga095149
Date: Fri, 09 May 2014 19:43:21 +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 "grep".

The branch, master has been updated
       via  a0951492eb630fb26e33f02f440a24305db33b51 (commit)
      from  504646d81b5010d5ef303d864d862714cccdf03e (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.savannah.gnu.org/cgit/grep.git/commit/?id=a0951492eb630fb26e33f02f440a24305db33b51


commit a0951492eb630fb26e33f02f440a24305db33b51
Author: Norihiro Tanaka <address@hidden>
Date:   Fri May 9 15:28:38 2014 +0900

    dfa: fix inconsistency in multibyte locales
    
    * src/dfa.c (dfaexec): Use the same exit condition in multibyte
    locales as in unibyte.

diff --git a/src/dfa.c b/src/dfa.c
index 591788c..0a221f7 100644
--- a/src/dfa.c
+++ b/src/dfa.c
@@ -3321,7 +3321,7 @@ dfaexec (struct dfa *d, char const *begin, char *end,
                                          end - (char const *) mbp, d);
                   p = mbp;
 
-                  if ((char *) p >= end)
+                  if ((char *) p > end)
                     {
                       p = NULL;
                       goto done;

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

Summary of changes:
 src/dfa.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
grep



reply via email to

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