* 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 3bd132b4880c0ed53c5d76ab5cc316baa2dd4535..3ffe3ca0d7fa7680e229cda1bbbbde52146d98f4 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 d0668391b97771872bc448d12ce3d4478a61edb6..76007a601af7ec08537ec01269af746f3bd9352e 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 36e00fb4b1706e3c331eb28243bc30332dd6cead..336b1f5808d9c2afa800924fa1137fcd6b0beb6d 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 425f60e9f0173649cc2d3aab5880c4d754efc0d5..c31095aa2fc83c27074f01067457adfb256de87f 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.