changeset 6085:d7b1b7dd9bf8

* config/srclist.txt: Add glibc bug 1232. * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James Youngman in <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 23 Aug 2005 19:11:45 +0000
parents 87075d885cc5
children eae241763577
files config/ChangeLog config/srclist.txt lib/ChangeLog lib/regex.h
diffstat 4 files changed, 7 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,6 +1,6 @@
 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
 
-	* srclist.txt: Add glibc bug 1231.
+	* srclist.txt: Add glibc bugs 1231, 1232.
 
 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
 
--- a/config/srclist.txt
+++ b/config/srclist.txt
@@ -1,4 +1,4 @@
-# $Id: srclist.txt,v 1.79 2005-08-23 18:55:44 eggert Exp $
+# $Id: srclist.txt,v 1.80 2005-08-23 19:11:46 eggert Exp $
 # Files for which we are not the source.  See ./srclistvars.sh for the
 # variable definitions.
 
@@ -106,6 +106,7 @@
 # http://sources.redhat.com/bugzilla/show_bug.cgi?id=1201
 # http://sources.redhat.com/bugzilla/show_bug.cgi?id=1207
 # http://sources.redhat.com/bugzilla/show_bug.cgi?id=1222
+# http://sources.redhat.com/bugzilla/show_bug.cgi?id=1232
 #$LIBCSRC/posix/regex.h			lib gpl
 #
 # http://sources.redhat.com/bugzilla/show_bug.cgi?id=1215
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,5 +1,8 @@
 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
 
+	* regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James Youngman
+	in <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
+
 	* regex_internal.c (re_string_skip_chars, register_state):
 	(calc_state_hash):
 	Remove forward decls; no longer needed now that we use prototypes.
--- a/lib/regex.h
+++ b/lib/regex.h
@@ -136,8 +136,7 @@
 
 /* If this bit is set, then an ending range point collating higher
      than the starting range point, as in [z-a], is invalid.
-   If not set, then when ending range point collates higher than the
-     starting range point, the range is ignored.  */
+   If not set, the containing range is empty and does not match any string.  */
 #define RE_NO_EMPTY_RANGES (RE_NO_BK_VBAR << 1)
 
 /* If this bit is set, then an unmatched ) is ordinary.