* src/reduce.c (inaccessable_symbols): Fix a buglet: because of a

lacking `+ 1' to nrules, Bison reported as useless a token if it
was used solely to set the precedence of the last rule...
This commit is contained in:
Akim Demaille
2002-04-07 15:30:42 +00:00
parent 26b23c1a49
commit 11652ab3dc
3 changed files with 18 additions and 1 deletions

10
NEWS
View File

@@ -3,6 +3,16 @@ Bison News
Changes in version 1.49a:
* False `Token not used' report fixed.
On a grammar such as
%token useless useful
%%
exp: '0' %prec useful;
where a token was used to set the precedence of the last rule,
bison reported both `useful' and `useless' as useless tokens.
* Revert the C++ namespace changes introduced in 1.31, as they caused too
many portability hassles.