* config/srclist.txt: Add glibc bug 1223.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 20 Aug 2005 22:26:51 +0000 (22:26 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 20 Aug 2005 22:26:51 +0000 (22:26 +0000)
* lib/regcomp.c (create_initial_state): Remove duplicate decl.

config/ChangeLog
config/srclist.txt
lib/ChangeLog
lib/regcomp.c

index 6eebce9..2131a32 100644 (file)
@@ -1,6 +1,6 @@
 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
 
-       * srclist.txt: Add glibc bugs 1220, 1221, 1222.
+       * srclist.txt: Add glibc bugs 1220, 1221, 1222, 1223.
 
 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
 
index 3b9bd00..4092744 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: srclist.txt,v 1.73 2005-08-20 07:42:15 eggert Exp $
+# $Id: srclist.txt,v 1.74 2005-08-20 22:26:51 eggert Exp $
 # Files for which we are not the source.  See ./srclistvars.sh for the
 # variable definitions.
 
@@ -97,6 +97,7 @@ $LIBCSRC/stdlib/getsubopt.c           lib gpl
 # http://sources.redhat.com/bugzilla/show_bug.cgi?id=1057
 # http://sources.redhat.com/bugzilla/show_bug.cgi?id=1217
 # http://sources.redhat.com/bugzilla/show_bug.cgi?id=1220
+# http://sources.redhat.com/bugzilla/show_bug.cgi?id=1223
 #$LIBCSRC/posix/regcomp.c              lib gpl
 #
 $LIBCSRC/posix/regex.c                 lib gpl
index 2dca012..dea9edc 100644 (file)
@@ -1,5 +1,7 @@
 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * regcomp.c (create_initial_state): Remove duplicate decl.
+
        * regcomp.c:
        (re_compile_pattern, re_set_syntax, re_compile_fastmap):
        (re_compile_fastmap_iter, regcomp, regerror, regfree):
@@ -15,6 +17,7 @@
        (build_charclass, build_charclass_op, fetch_number, create_tree):
        (create_token_tree, mark_opt_subexp, duplicate_tree):
        Use prototypes rather than old-style definitions.
+
        * regex_internal.c:
        (re_string_allocate, re_string_construct, re_string_realloc_buffers):
        (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
index aa4f08d..ade9159 100644 (file)
@@ -33,7 +33,6 @@ static reg_errcode_t create_initial_state (re_dfa_t *dfa);
 static void optimize_utf8 (re_dfa_t *dfa);
 #endif
 static reg_errcode_t analyze (regex_t *preg);
-static reg_errcode_t create_initial_state (re_dfa_t *dfa);
 static reg_errcode_t preorder (bin_tree_t *root,
                               reg_errcode_t (fn (void *, bin_tree_t *)),
                               void *extra);