maint: minor fixes

* NEWS: restore missing entry.
* cfg.mk: Adjust to *.texinfo -> *.texi.
* src/symtab.c: Spaces fixes.
This commit is contained in:
Akim Demaille
2012-07-06 11:15:24 +02:00
parent 8f064948c5
commit 9553083c72
3 changed files with 5 additions and 3 deletions

2
NEWS
View File

@@ -124,6 +124,8 @@ GNU Bison NEWS
* Noteworthy changes in release 2.5.90 (2012-07-05) [beta] * Noteworthy changes in release 2.5.90 (2012-07-05) [beta]
** Future changes:
The next major release of Bison will drop support for the following The next major release of Bison will drop support for the following
deprecated features. Please report disagreements to bug-bison@gnu.org. deprecated features. Please report disagreements to bug-bison@gnu.org.

2
cfg.mk
View File

@@ -63,7 +63,7 @@ $(call exclude, \
prohibit_always-defined_macros+=?|^src/(parse-gram.c|system.h)$$ \ prohibit_always-defined_macros+=?|^src/(parse-gram.c|system.h)$$ \
prohibit_always-defined_macros+=?|^tests/regression.at$$ \ prohibit_always-defined_macros+=?|^tests/regression.at$$ \
prohibit_empty_lines_at_EOF=^src/parse-gram.h$$ \ prohibit_empty_lines_at_EOF=^src/parse-gram.h$$ \
prohibit_strcmp=^doc/bison\.texinfo$$ \ prohibit_strcmp=^doc/bison\.texi$$ \
require_config_h_first=^(lib/yyerror|data/(glr|yacc))\.c$$ \ require_config_h_first=^(lib/yyerror|data/(glr|yacc))\.c$$ \
space_tab=^tests/(input|c\+\+)\.at$$ \ space_tab=^tests/(input|c\+\+)\.at$$ \
unmarked_diagnostics=^(djgpp/|doc/bison.texi$$) \ unmarked_diagnostics=^(djgpp/|doc/bison.texi$$) \

View File

@@ -611,10 +611,10 @@ symbol_translation (symbol *this)
(this->user_token_number, (this->user_token_number,
symbols[token_translations[this->user_token_number]], symbols[token_translations[this->user_token_number]],
this); this);
token_translations[this->user_token_number] = this->number; token_translations[this->user_token_number] = this->number;
} }
return true; return true;
} }