news: schedule the removal of the ";" hack

scan-code.l is significantly more complex because of this.

* NEWS: Doc it.
This commit is contained in:
Akim Demaille
2012-07-27 12:19:01 +02:00
parent 4d24ffb75e
commit e20e6a50d5

12
NEWS
View File

@@ -4,6 +4,18 @@ GNU Bison NEWS
Bison no longer executes user-specified M4 code when processing a grammar.
** Future Changes
In addition to the removal of the features announced in Bison 2.6, the
next major release will remove the "Temporary hack for adding a semicolon
to the user action", as announced in the release 2.5. Instead of:
exp: exp "+" exp { $$ = $1 + $3 };
write:
exp: exp "+" exp { $$ = $1 + $3; };
** Bug fixes
*** Type names are now properly escaped.