From a0c45dd5d2697b726add2bbc81947e9cb98c2799 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Tue, 31 Jul 2012 14:18:43 +0200 Subject: [PATCH] regen --- src/parse-gram.c | 14 ++++++++------ src/parse-gram.h | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/parse-gram.c b/src/parse-gram.c index 3d0e0b8a..207938dc 100644 --- a/src/parse-gram.c +++ b/src/parse-gram.c @@ -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")); diff --git a/src/parse-gram.h b/src/parse-gram.h index 10de0a64..50cfe23e 100644 --- a/src/parse-gram.h +++ b/src/parse-gram.h @@ -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 -- 2.45.2