]> git.saurik.com Git - bison.git/commitdiff
regen
authorAkim Demaille <akim@lrde.epita.fr>
Tue, 31 Jul 2012 12:18:43 +0000 (14:18 +0200)
committerAkim Demaille <akim@lrde.epita.fr>
Wed, 1 Aug 2012 07:16:56 +0000 (09:16 +0200)
src/parse-gram.c
src/parse-gram.h

index 3d0e0b8abc4d03ff6a607ce5169681ed603fd4aa..207938dc152468b7fbaf0952bbda5b6dcde78807 100644 (file)
@@ -1,4 +1,4 @@
-/* A Bison parser, made by GNU Bison 2.6.29-cd73-dirty.  */
+/* A Bison parser, made by GNU Bison 2.6.1.6-b045.  */
 
 /* Bison implementation for Yacc-like parsers in C
    
@@ -44,7 +44,7 @@
 #define YYBISON 1
 
 /* Bison version.  */
-#define YYBISON_VERSION "2.6.29-cd73-dirty"
+#define YYBISON_VERSION "2.6.1.6-b045"
 
 /* Skeleton name.  */
 #define YYSKELETON_NAME "yacc.c"
@@ -3169,11 +3169,13 @@ add_param (char const *type, char *decl, location loc)
 
   /* Strip the surrounding '{' and '}', and any blanks just inside
      the braces.  */
-  while (*--p == ' ' || *p == '\t')
-    continue;
+  --p;
+  while (isspace ((unsigned char) *p))
+    --p;
   p[1] = '\0';
-  while (*++decl == ' ' || *decl == '\t')
-    continue;
+  ++decl;
+  while (isspace ((unsigned char) *decl))
+    ++decl;
 
   if (! name_start)
     complain_at (loc, _("missing identifier in parameter declaration"));
index 10de0a64ac90613177a59cf2f28b0b45f01ec14c..50cfe23ebeaa98dc60ea0768f67a2c7137211f90 100644 (file)
@@ -1,4 +1,4 @@
-/* A Bison parser, made by GNU Bison 2.6.29-cd73-dirty.  */
+/* A Bison parser, made by GNU Bison 2.6.1.6-b045.  */
 
 /* Bison interface for Yacc-like parsers in C