From: Akim Demaille Date: Fri, 27 Jul 2012 10:19:01 +0000 (+0200) Subject: news: schedule the removal of the ";" hack X-Git-Tag: v2.6.1~11 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/e20e6a50d57ce0fb1a51a4b27cf6c8cfdd64bf99 news: schedule the removal of the ";" hack scan-code.l is significantly more complex because of this. * NEWS: Doc it. --- diff --git a/NEWS b/NEWS index 56961cc2..5a9d314a 100644 --- a/NEWS +++ b/NEWS @@ -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.