]> git.saurik.com Git - bison.git/blobdiff - src/scan-gram.l
tests: close files in glr-regression
[bison.git] / src / scan-gram.l
index dbea2a1d783b91d95a417ec9d20aa5794cdf0b4a..ad061cc6f86159ba93da4023e60fa326111f8b86 100644 (file)
@@ -291,7 +291,7 @@ splice       (\\[ \f\t\v]*\n)*
   }
 
   . {
-    complain_at (*loc, _("invalid character: %s"), quote (yytext));
+    complain_at (*loc, _("invalid character: %s"), quote_mem (yytext, yyleng));
   }
 
   <<EOF>> {
@@ -375,7 +375,7 @@ splice       (\\[ \f\t\v]*\n)*
   }
   . {
     complain_at (*loc, _("invalid character in bracketed name: %s"),
-                quote (yytext));
+                quote_mem (yytext, yyleng));
   }
   <<EOF>> {
     BEGIN bracketed_id_context_state;