* config/srclist.txt: Add glibc bug 1232.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 23 Aug 2005 19:11:45 +0000 (19:11 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 23 Aug 2005 19:11:45 +0000 (19:11 +0000)
* 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>.

config/ChangeLog
config/srclist.txt
lib/ChangeLog
lib/regex.h

index 3bd132b..3ffe3ca 100644 (file)
@@ -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>
 
index d066839..76007a6 100644 (file)
@@ -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 @@ $LIBCSRC/posix/regex.c                      lib gpl
 # 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
index 36e00fb..336b1f5 100644 (file)
@@ -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.
index 425f60e..c31095a 100644 (file)
@@ -136,8 +136,7 @@ typedef unsigned long int reg_syntax_t;
 
 /* 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.