bison-patches
[Top][All Lists]
Advanced

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

[PATCH 1/4] regen


From: Akim Demaille
Subject: [PATCH 1/4] regen
Date: Tue, 28 Apr 2020 07:20:03 +0200

---
 src/parse-gram.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/src/parse-gram.c b/src/parse-gram.c
index 4c5ca366..610f2004 100644
--- a/src/parse-gram.c
+++ b/src/parse-gram.c
@@ -1960,6 +1960,17 @@ yybackup:
       yytoken = YYSYMBOL_YYEOF;
       YYDPRINTF ((stderr, "Now at end of input.\n"));
     }
+  else if (yychar == GRAM_ERRCODE)
+    {
+      /* The scanner already issued an error message, process directly
+         to error recovery.  But do not keep the error token as
+         lookahead, it is too special and may lead us to an endless
+         loop in error recovery. */
+      yychar = GRAM_UNDEF;
+      yytoken = YYSYMBOL_YYERRCODE;
+      yyerror_range[1] = yylloc;
+      goto yyerrlab1;
+    }
   else
     {
       yytoken = YYTRANSLATE (yychar);
@@ -2640,7 +2651,6 @@ yyerrlab:
     }
 
   yyerror_range[1] = yylloc;
-
   if (yyerrstatus == 3)
     {
       /* If just tried and failed to reuse lookahead token after an
-- 
2.26.2




reply via email to

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