]> git.saurik.com Git - bison.git/commitdiff
* data/bison.simple (YYLEX): Fix the declaration when
authorAkim Demaille <akim@epita.fr>
Thu, 20 Jun 2002 10:29:27 +0000 (10:29 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 20 Jun 2002 10:29:27 +0000 (10:29 +0000)
%pure-parser.

ChangeLog
data/bison.simple

index 4a48d21eb710807c2a24efef1125a7bb9f70121b..1c34436da5a947feba4101a83c05bd21c88f7607 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-06-20  Akim Demaille  <akim@epita.fr>
+
+       * data/bison.simple (YYLEX): Fix the declaration when
+       %pure-parser.
+
 2002-06-20  Akim Demaille  <akim@epita.fr>
 
        * data/bison.simple (yysymprint): Don't print the token number,
index c5ce13864150a38eeafedc6ea15316096bd848d6..3aa24765dbd2f6bd8ea14b00f60d204e39f938d5 100644 (file)
@@ -537,9 +537,9 @@ while (0)
 
 b4_pure_if(
 [#ifdef YYLEX_PARAM
-# define YYLEX yylex (&yylval, b4_location_if([&yylloc, ])YYLEX_PARAM)
+# define YYLEX yylex (&yylval[]b4_location_if([, &yylloc]), YYLEX_PARAM)
 #else
-# define YYLEX yylex (&yylval, b4_location_if([&yylloc, ]))
+# define YYLEX yylex (&yylval[]b4_location_if([, &yylloc]))
 #endif],
 [#define YYLEX yylex ()])