+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,
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 ()])