changeset 6081:e258f5e2593e

* config/srclist.txt: Add glibc bug 1226. * lib/regex_internal.c (calc_state_hash): Put 'inline' before type, since some compilers warn about it otherwise.
author Paul Eggert <eggert@cs.ucla.edu>
date Sun, 21 Aug 2005 03:31:45 +0000
parents 371903e6dfee
children f7e7f62a1516
files config/ChangeLog config/srclist.txt lib/ChangeLog lib/regex_internal.c
diffstat 4 files changed, 10 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -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>
 
--- a/config/srclist.txt
+++ b/config/srclist.txt
@@ -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 @@
 # 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
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -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
--- a/lib/regex_internal.c
+++ b/lib/regex_internal.c
@@ -34,7 +34,7 @@
 					  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;
 
 /* Functions for string operation.  */
@@ -1353,7 +1353,7 @@
   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)
 {