grep-commit
[Top][All Lists]
Advanced

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

grep branch, master, updated. v2.21-44-gc279a25


From: Paul Eggert
Subject: grep branch, master, updated. v2.21-44-gc279a25
Date: Sat, 04 Jul 2015 15:38:46 +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  c279a25680129b5525a6ee0f7112f5fb0061ce96 (commit)
       via  89ba3a292ab3fc76a9293c49f2a40953948eaac4 (commit)
       via  4ced7bc93f152981cebc8a001f7f1f6b031fec78 (commit)
       via  66521f5b70559b58498d47a0afb92b174f12d78f (commit)
       via  4629191813aca41fa65cfba698683e662e41a5a5 (commit)
      from  0e8fda0d880cccd0e1997a905eb9a7910f957245 (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=c279a25680129b5525a6ee0f7112f5fb0061ce96


commit c279a25680129b5525a6ee0f7112f5fb0061ce96
Author: Paul Eggert <address@hidden>
Date:   Sat Jul 4 08:35:58 2015 -0700

    grep: use recent gnulib syntax bits
    
    * src/grep.c (Gcompile, Ecompile): Use plain RE_SYNTAX_GREP
    and RE_SYNTAX_EGREP, now that we assume a recent-enough gnulib.

diff --git a/src/grep.c b/src/grep.c
index 9b38cf5..a735ea5 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -1861,18 +1861,13 @@ if any error occurs and -q is not given, the exit 
status is 2.\n"));
 static void
 Gcompile (char const *pattern, size_t size)
 {
-  GEAcompile (pattern, size,
-              ((RE_SYNTAX_GREP | RE_DOT_NEWLINE | RE_NO_EMPTY_RANGES)
-               & ~RE_HAT_LISTS_NOT_NEWLINE));
+  GEAcompile (pattern, size, RE_SYNTAX_GREP);
 }
 
 static void
 Ecompile (char const *pattern, size_t size)
 {
-  GEAcompile (pattern, size,
-              ((RE_SYNTAX_POSIX_EGREP | RE_DOT_NEWLINE
-                | RE_NO_EMPTY_RANGES | RE_UNMATCHED_RIGHT_PAREN_ORD)
-               & ~RE_HAT_LISTS_NOT_NEWLINE));
+  GEAcompile (pattern, size, RE_SYNTAX_EGREP);
 }
 
 static void

http://git.savannah.gnu.org/cgit/grep.git/commit/?id=89ba3a292ab3fc76a9293c49f2a40953948eaac4


commit c279a25680129b5525a6ee0f7112f5fb0061ce96
Author: Paul Eggert <address@hidden>
Date:   Sat Jul 4 08:35:58 2015 -0700

    grep: use recent gnulib syntax bits
    
    * src/grep.c (Gcompile, Ecompile): Use plain RE_SYNTAX_GREP
    and RE_SYNTAX_EGREP, now that we assume a recent-enough gnulib.

diff --git a/src/grep.c b/src/grep.c
index 9b38cf5..a735ea5 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -1861,18 +1861,13 @@ if any error occurs and -q is not given, the exit 
status is 2.\n"));
 static void
 Gcompile (char const *pattern, size_t size)
 {
-  GEAcompile (pattern, size,
-              ((RE_SYNTAX_GREP | RE_DOT_NEWLINE | RE_NO_EMPTY_RANGES)
-               & ~RE_HAT_LISTS_NOT_NEWLINE));
+  GEAcompile (pattern, size, RE_SYNTAX_GREP);
 }
 
 static void
 Ecompile (char const *pattern, size_t size)
 {
-  GEAcompile (pattern, size,
-              ((RE_SYNTAX_POSIX_EGREP | RE_DOT_NEWLINE
-                | RE_NO_EMPTY_RANGES | RE_UNMATCHED_RIGHT_PAREN_ORD)
-               & ~RE_HAT_LISTS_NOT_NEWLINE));
+  GEAcompile (pattern, size, RE_SYNTAX_EGREP);
 }
 
 static void

http://git.savannah.gnu.org/cgit/grep.git/commit/?id=4ced7bc93f152981cebc8a001f7f1f6b031fec78


commit c279a25680129b5525a6ee0f7112f5fb0061ce96
Author: Paul Eggert <address@hidden>
Date:   Sat Jul 4 08:35:58 2015 -0700

    grep: use recent gnulib syntax bits
    
    * src/grep.c (Gcompile, Ecompile): Use plain RE_SYNTAX_GREP
    and RE_SYNTAX_EGREP, now that we assume a recent-enough gnulib.

diff --git a/src/grep.c b/src/grep.c
index 9b38cf5..a735ea5 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -1861,18 +1861,13 @@ if any error occurs and -q is not given, the exit 
status is 2.\n"));
 static void
 Gcompile (char const *pattern, size_t size)
 {
-  GEAcompile (pattern, size,
-              ((RE_SYNTAX_GREP | RE_DOT_NEWLINE | RE_NO_EMPTY_RANGES)
-               & ~RE_HAT_LISTS_NOT_NEWLINE));
+  GEAcompile (pattern, size, RE_SYNTAX_GREP);
 }
 
 static void
 Ecompile (char const *pattern, size_t size)
 {
-  GEAcompile (pattern, size,
-              ((RE_SYNTAX_POSIX_EGREP | RE_DOT_NEWLINE
-                | RE_NO_EMPTY_RANGES | RE_UNMATCHED_RIGHT_PAREN_ORD)
-               & ~RE_HAT_LISTS_NOT_NEWLINE));
+  GEAcompile (pattern, size, RE_SYNTAX_EGREP);
 }
 
 static void

http://git.savannah.gnu.org/cgit/grep.git/commit/?id=66521f5b70559b58498d47a0afb92b174f12d78f


commit c279a25680129b5525a6ee0f7112f5fb0061ce96
Author: Paul Eggert <address@hidden>
Date:   Sat Jul 4 08:35:58 2015 -0700

    grep: use recent gnulib syntax bits
    
    * src/grep.c (Gcompile, Ecompile): Use plain RE_SYNTAX_GREP
    and RE_SYNTAX_EGREP, now that we assume a recent-enough gnulib.

diff --git a/src/grep.c b/src/grep.c
index 9b38cf5..a735ea5 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -1861,18 +1861,13 @@ if any error occurs and -q is not given, the exit 
status is 2.\n"));
 static void
 Gcompile (char const *pattern, size_t size)
 {
-  GEAcompile (pattern, size,
-              ((RE_SYNTAX_GREP | RE_DOT_NEWLINE | RE_NO_EMPTY_RANGES)
-               & ~RE_HAT_LISTS_NOT_NEWLINE));
+  GEAcompile (pattern, size, RE_SYNTAX_GREP);
 }
 
 static void
 Ecompile (char const *pattern, size_t size)
 {
-  GEAcompile (pattern, size,
-              ((RE_SYNTAX_POSIX_EGREP | RE_DOT_NEWLINE
-                | RE_NO_EMPTY_RANGES | RE_UNMATCHED_RIGHT_PAREN_ORD)
-               & ~RE_HAT_LISTS_NOT_NEWLINE));
+  GEAcompile (pattern, size, RE_SYNTAX_EGREP);
 }
 
 static void

http://git.savannah.gnu.org/cgit/grep.git/commit/?id=4629191813aca41fa65cfba698683e662e41a5a5


commit c279a25680129b5525a6ee0f7112f5fb0061ce96
Author: Paul Eggert <address@hidden>
Date:   Sat Jul 4 08:35:58 2015 -0700

    grep: use recent gnulib syntax bits
    
    * src/grep.c (Gcompile, Ecompile): Use plain RE_SYNTAX_GREP
    and RE_SYNTAX_EGREP, now that we assume a recent-enough gnulib.

diff --git a/src/grep.c b/src/grep.c
index 9b38cf5..a735ea5 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -1861,18 +1861,13 @@ if any error occurs and -q is not given, the exit 
status is 2.\n"));
 static void
 Gcompile (char const *pattern, size_t size)
 {
-  GEAcompile (pattern, size,
-              ((RE_SYNTAX_GREP | RE_DOT_NEWLINE | RE_NO_EMPTY_RANGES)
-               & ~RE_HAT_LISTS_NOT_NEWLINE));
+  GEAcompile (pattern, size, RE_SYNTAX_GREP);
 }
 
 static void
 Ecompile (char const *pattern, size_t size)
 {
-  GEAcompile (pattern, size,
-              ((RE_SYNTAX_POSIX_EGREP | RE_DOT_NEWLINE
-                | RE_NO_EMPTY_RANGES | RE_UNMATCHED_RIGHT_PAREN_ORD)
-               & ~RE_HAT_LISTS_NOT_NEWLINE));
+  GEAcompile (pattern, size, RE_SYNTAX_EGREP);
 }
 
 static void

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

Summary of changes:
 NEWS               |    4 ++--
 doc/.gitignore     |    1 +
 gnulib             |    2 +-
 src/dfa.c          |    8 ++++----
 src/grep.c         |    7 ++-----
 tests/utf8-bracket |   12 +++++++++---
 6 files changed, 19 insertions(+), 15 deletions(-)


hooks/post-receive
-- 
grep



reply via email to

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