]> git.saurik.com Git - bison.git/blobdiff - NEWS
Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
[bison.git] / NEWS
diff --git a/NEWS b/NEWS
index 1bf3b70dc149a86583ea3a830f02aee36d10b7f7..3f546c8f42553d43d40b3bbcdecce2e04476d41d 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,14 +1,52 @@
 Bison News
 ----------
 
-Changes in version 1.75b:
+Changes in version 1.75d, 2002-12-13:
+
+* Semicolons are once again optional at the end of grammar rules.
+  This reverts to the behavior of Bison 1.33 and earlier, and improves
+  compatibility with Yacc.
+
+* Type clashes now generate warnings, not errors.
+
+* Yacc command and library now available
+  The Bison distribution now installs a yacc command, as POSIX requires.
+  Also, Bison now installs a small library liby.a containing
+  implementations of Yacc-compatible yyerror and main functions.
+  This library is normally not useful, but POSIX requires it.
+
+* %lex-param, %parse-param
+  These now take just one operand, not two.
+
+* The documentation now emphasizes that yylex and yyerror must be
+  declared before use.  C99 requires this.
+
+* The documentation license has been upgraded to version 1.2
+  of the GNU Free Documentation License.
+
+Changes in version 1.75c, 2002-11-25:
+
+* "parse error" -> "syntax error"
+  Bison now uniformly uses the term "syntax error"; formerly, the code
+  and manual sometimes used the term "parse error" instead.  POSIX
+  requires "syntax error" in diagnostics, and it was thought better to
+  be consistent.
+
+* "parsing stack overflow..." -> "parser stack overflow"
+  GLR parsers now report "parser stack overflow" as per the Bison manual.
+
+* GLR and inline
+  Users of Bison have to decide how they handle the portability of the
+  C keyword `inline'.
+
+Changes in version 1.75b, 2002-11-13:
 
 * %destructor
   It is now possible to reclaim the memory associated to symbols
   discarded during error recovery.  This feature is still experimental.
 
-* Bison now parses C99 lexical constructs like digraphs, UCNs, and
-  backslash-newline within C escape sequences, as POSIX now requires.
+* Bison now parses C99 lexical constructs like UCNs and
+  backslash-newline within C escape sequences, as POSIX 1003.1-2001 requires.
 
 * --no-line works properly.
 
@@ -164,9 +202,9 @@ Changes in version 1.50, 2002-10-04:
   the user symbol is used in the reports, the graphs, and the verbose
   error messages instead of `$end', which remains being the default.
   For instance
-     %token YYEOF 0
+     %token MYEOF 0
   or
-     %token YYEOF 0 "end of file"
+     %token MYEOF 0 "end of file"
 
 * Semantic parser
   This old option, which has been broken for ages, is removed.