]> git.saurik.com Git - bison.git/commitdiff
(yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 21 Apr 2003 19:37:09 +0000 (19:37 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 21 Apr 2003 19:37:09 +0000 (19:37 +0000)
Fix obvious typo that results in uncompilable GLR parsers
when both %pure-parser and %locations are used.  (trivial change
from Yakov Markovitch <Markovitch@iso.ru>)

data/glr.c

index 86a6fd0e5ef72c6fea8b3709dce1e4435989082a..d04edbd08ac12e0011a0b295348f57d0a3445a98 100644 (file)
@@ -926,7 +926,7 @@ yyexpandGLRStack (yyGLRStack* yystack]b4_pure_formals[)
 
 #else
 
-  yyFail (yystack][]b4_lpure_args[, "parser stack overflow");
+  yyFail (yystack][]b4_pure_args[, "parser stack overflow");
 #endif
 }