From e20e6a50d57ce0fb1a51a4b27cf6c8cfdd64bf99 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Fri, 27 Jul 2012 12:19:01 +0200 Subject: [PATCH] news: schedule the removal of the ";" hack scan-code.l is significantly more complex because of this. * NEWS: Doc it. --- NEWS | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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. -- 2.47.2