* config/srclist.txt: Add glibc bug 1226.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 21 Aug 2005 03:31:45 +0000 (03:31 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 21 Aug 2005 03:31:45 +0000 (03:31 +0000)
* lib/regex_internal.c (calc_state_hash): Put 'inline' before type, since
some compilers warn about it otherwise.

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

index 04ec036..725cda7 100644 (file)
@@ -1,6 +1,6 @@
 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
 
-       * srclist.txt: Add glibc bugs 1220, 1221, 1222, 1223, 1224, 1225.
+       * srclist.txt: Add glibc bugs 1220, 1221, 1222, 1223, 1224, 1225, 1226.
 
 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
 
index 62a228e..779ba1f 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: srclist.txt,v 1.76 2005-08-21 00:43:34 eggert Exp $
+# $Id: srclist.txt,v 1.77 2005-08-21 03:31:46 eggert Exp $
 # Files for which we are not the source.  See ./srclistvars.sh for the
 # variable definitions.
 
@@ -111,6 +111,7 @@ $LIBCSRC/posix/regex.c                      lib gpl
 # http://sources.redhat.com/bugzilla/show_bug.cgi?id=1215
 # http://sources.redhat.com/bugzilla/show_bug.cgi?id=1218
 # http://sources.redhat.com/bugzilla/show_bug.cgi?id=1220
+# http://sources.redhat.com/bugzilla/show_bug.cgi?id=1226
 #$LIBCSRC/posix/regex_internal.c               lib gpl
 #
 # http://sources.redhat.com/bugzilla/show_bug.cgi?id=1054
index 341580d..c50e56d 100644 (file)
@@ -1,3 +1,8 @@
+2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * regex_internal.c (calc_state_hash): Put 'inline' before type, since
+       some compilers warn about it otherwise.
+
 2005-08-20  Jim Meyering  <jim@meyering.net>
 
        * regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
index 80e8406..46fe046 100644 (file)
@@ -34,7 +34,7 @@ static re_dfastate_t *create_cd_newstate (re_dfa_t *dfa,
                                          const re_node_set *nodes,
                                          unsigned int context,
                                          unsigned int hash) internal_function;
-static unsigned int inline calc_state_hash (const re_node_set *nodes,
+static inline unsigned int calc_state_hash (const re_node_set *nodes,
                                            unsigned int context) internal_function;
 \f
 /* Functions for string operation.  */
@@ -1353,7 +1353,7 @@ re_dfa_add_node (re_dfa_t *dfa, re_token_t token)
   return dfa->nodes_len++;
 }
 
-static unsigned int inline
+static inline unsigned int
 internal_function
 calc_state_hash (const re_node_set *nodes, unsigned int context)
 {