4 Changes in version 1.49a:
7 Bison no longer dumps core when there are too many items, it just
11 Changes in version 1.30:
13 * `--defines' and `--graph' have now an optionnal argument which is the
14 output file name. `-d' and `-g' do not change, they do not take any
17 * `%source_extension' and `%header_extension' are removed, failed
22 Changes in version 1.29, 2001-09-07:
24 * The output file does not define const, as this caused problems when used
25 with common autoconfiguration schemes. If you still use ancient compilers
26 that lack const, compile with the equivalent of the C compiler option
27 `-Dconst='. autoconf's AC_C_CONST macro provides one way to do this.
29 * Added `-g' and `--graph'.
31 * The Bison manual is now distributed under the terms of the GNU FDL.
33 * The input and the output files has automatically a similar extension.
35 * Russian translation added.
37 * NLS support updated; should hopefully be less troublesome.
39 * Added the old Bison reference card.
41 * Added `--locations' and `%locations'.
43 * Added `-S' and `--skeleton'.
45 * `%raw', `-r', `--raw' is disabled.
47 * Special characters are escaped when output. This solves the problems
48 of the #line lines with path names including backslashes.
51 `%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose',
52 `%debug', `%source_extension' and `%header_extension'.
55 Automatic location tracking.
57 Changes in version 1.28, 1999-07-06:
59 * Should compile better now with K&R compilers.
63 * Fixed a problem with escaping the double quote character.
67 Changes in version 1.27:
69 * The make rule which prevented bison.simple from being created on
70 some systems has been fixed.
72 Changes in version 1.26:
74 * Bison now uses automake.
76 * New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>.
78 * Token numbers now start at 257 as previously documented, not 258.
80 * Bison honors the TMPDIR environment variable.
82 * A couple of buffer overruns have been fixed.
84 * Problems when closing files should now be reported.
86 * Generated parsers should now work even on operating systems which do
89 Changes in version 1.25, 1995-10-16:
91 * Errors in the input grammar are not fatal; Bison keeps reading
92 the grammar file, and reports all the errors found in it.
94 * Tokens can now be specified as multiple-character strings: for
95 example, you could use "<=" for a token which looks like <=, instead
96 of chosing a name like LESSEQ.
98 * The %token_table declaration says to write a table of tokens (names
99 and numbers) into the parser file. The yylex function can use this
100 table to recognize multiple-character string tokens, or for other
103 * The %no_lines declaration says not to generate any #line preprocessor
104 directives in the parser file.
106 * The %raw declaration says to use internal Bison token numbers, not
107 Yacc-compatible token numbers, when token names are defined as macros.
109 * The --no-parser option produces the parser tables without including
110 the parser engine; a project can now use its own parser engine.
111 The actions go into a separate file called NAME.act, in the form of
112 a switch statement body.
114 Changes in version 1.23:
116 The user can define YYPARSE_PARAM as the name of an argument to be
117 passed into yyparse. The argument should have type void *. It should
118 actually point to an object. Grammar actions can access the variable
119 by casting it to the proper pointer type.
121 Line numbers in output file corrected.
123 Changes in version 1.22:
127 Changes in version 1.20:
129 Output file does not redefine const for C++.