From 1d2d7eddf73d4244900ea00fe1949c56db07a2f7 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 21 Apr 2003 19:37:09 +0000 Subject: [PATCH] (yyexpandGLRStack) [!YYSTACKEXPANDABLE]: Fix obvious typo that results in uncompilable GLR parsers when both %pure-parser and %locations are used. (trivial change from Yakov Markovitch ) --- data/glr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/glr.c b/data/glr.c index 86a6fd0..d04edbd 100644 --- a/data/glr.c +++ b/data/glr.c @@ -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 } -- 2.7.4