* src/bison.simple (yyparse): When reporting verbosely an error,

no longer issue additional quotes around token names.
* tests/calc.at: Adjust.
This commit is contained in:
Akim Demaille
2001-11-19 09:13:26 +00:00
parent 35f61cb998
commit c555896775
4 changed files with 24 additions and 14 deletions

5
NEWS
View File

@@ -3,6 +3,11 @@ Bison News
Changes in version 1.30d:
* Parse errors
Verbose parse error messages from the parsers are better looking.
Before: parse error: unexpected `'/'', expecting `"number"' or `'-'' or `'(''
Now: parse error: unexpected '/', expecting "number" or '-' or '('
Changes in version 1.30c:
* Fixed a few warnings.