YYLEX_PARAM: drop support

* data/yacc.c, doc/bison.texi: Remove YYLEX_PARAM support.
* NEWS: Document it.
This commit is contained in:
Akim Demaille
2012-12-25 17:13:39 +01:00
parent 304b384ea3
commit 40bb6f78f8
3 changed files with 8 additions and 16 deletions

11
NEWS
View File

@@ -6,10 +6,13 @@ GNU Bison NEWS
*** Obsolete features
Support for YYFAIL is removed (deprecated in Bison 2.4.2).
Support for yystype and yyltype (instead of YYSTYPE and YYLTYPE)
is removed (deprecated in Bison 1.875).
Support for YYPARSE_PARAM is removed (deprecated in Bison 1.875).
Support for YYFAIL is removed (deprecated in Bison 2.4.2): use YYERROR.
Support for yystype and yyltype is removed (deprecated in Bison 1.875):
use YYSTYPE and YYLTYPE.
Support for YYLEX_PARAM and YYPARSE_PARAM is removed (deprecated in Bison
1.875): use %lex-param, %parse-param, or %param.
** Warnings