bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 2/5] news: schedule the removal of the ";" hack


From: Akim Demaille
Subject: [PATCH 2/5] news: schedule the removal of the ";" hack
Date: Fri, 27 Jul 2012 17:13:32 +0200

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 56961cc..5a9d314 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.
-- 
1.7.11.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]