X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/4982f078bfd98d50b9c97d2bcddb7a89d20ff3df..e20e6a50d57ce0fb1a51a4b27cf6c8cfdd64bf99:/NEWS 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.