bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Typo


From: Akim Demaille
Subject: Typo
Date: 20 Jun 2002 12:29:22 +0200
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.4 (Honest Recruiter)

Index: ChangeLog
from  Akim Demaille  <address@hidden>

        * data/bison.simple (YYLEX): Fix the declaration when %pure-parser.

Index: data/bison.simple
===================================================================
RCS file: /cvsroot/bison/bison/data/bison.simple,v
retrieving revision 1.44
diff -u -u -r1.44 bison.simple
--- data/bison.simple 20 Jun 2002 09:47:44 -0000 1.44
+++ data/bison.simple 20 Jun 2002 10:28:34 -0000
@@ -537,9 +537,9 @@
 
 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 ()])
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]