4 Changes in version 1.30e:
7 When the number of shift/reduce conflicts is correct, don't issue
10 * The verbose report includes the rule line numbers.
12 * Rule line numbers are fixed in traces.
14 Changes in version 1.30d:
19 Verbose parse error messages from the parsers are better looking.
20 Before: parse error: unexpected `'/'', expecting `"number"' or `'-'' or `'(''
21 Now: parse error: unexpected '/', expecting "number" or '-' or '('
24 Was broken when strings aliases for symbols were used.
26 Changes in version 1.30c:
28 * Fixed a few warnings.
30 * Some portability issues.
32 Changes in version 1.30b:
34 * Fixed parser memory leaks.
35 When the generated parser was using malloc to extend its stacks, the
36 previous allocations were not freed.
38 * Fixed verbose output file.
39 Some newlines were missing.
40 Some conflicts in state descriptions were missing.
42 * Fixed conflict report.
43 Option -v was needed to get the result.
47 Mismatches are errors, not warnings.
49 * Fixed incorrect processing of some invalid input.
51 * Fixed CPP guards: 9foo.h uses BISON_9FOO_H instead of 9FOO_H.
53 * Fixed some typos in the documentation.
55 * %token MY_EOF 0 is supported.
56 Before, MY_EOF was silently renumbered as 257.
58 * doc/refcard.tex is updated.
60 * %output, %file-prefix, %name-prefix.
64 New, aliasing `--output-file'.
66 Changes in version 1.30, 2001-10-26:
68 * `--defines' and `--graph' have now an optionnal argument which is the
69 output file name. `-d' and `-g' do not change, they do not take any
72 * `%source_extension' and `%header_extension' are removed, failed
77 Changes in version 1.29, 2001-09-07:
79 * The output file does not define const, as this caused problems when used
80 with common autoconfiguration schemes. If you still use ancient compilers
81 that lack const, compile with the equivalent of the C compiler option
82 `-Dconst='. autoconf's AC_C_CONST macro provides one way to do this.
84 * Added `-g' and `--graph'.
86 * The Bison manual is now distributed under the terms of the GNU FDL.
88 * The input and the output files has automatically a similar extension.
90 * Russian translation added.
92 * NLS support updated; should hopefully be less troublesome.
94 * Added the old Bison reference card.
96 * Added `--locations' and `%locations'.
98 * Added `-S' and `--skeleton'.
100 * `%raw', `-r', `--raw' is disabled.
102 * Special characters are escaped when output. This solves the problems
103 of the #line lines with path names including backslashes.
106 `%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose',
107 `%debug', `%source_extension' and `%header_extension'.
110 Automatic location tracking.
112 Changes in version 1.28, 1999-07-06:
114 * Should compile better now with K&R compilers.
118 * Fixed a problem with escaping the double quote character.
120 * There is now a FAQ.
122 Changes in version 1.27:
124 * The make rule which prevented bison.simple from being created on
125 some systems has been fixed.
127 Changes in version 1.26:
129 * Bison now uses automake.
131 * New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>.
133 * Token numbers now start at 257 as previously documented, not 258.
135 * Bison honors the TMPDIR environment variable.
137 * A couple of buffer overruns have been fixed.
139 * Problems when closing files should now be reported.
141 * Generated parsers should now work even on operating systems which do
142 not provide alloca().
144 Changes in version 1.25, 1995-10-16:
146 * Errors in the input grammar are not fatal; Bison keeps reading
147 the grammar file, and reports all the errors found in it.
149 * Tokens can now be specified as multiple-character strings: for
150 example, you could use "<=" for a token which looks like <=, instead
151 of chosing a name like LESSEQ.
153 * The %token_table declaration says to write a table of tokens (names
154 and numbers) into the parser file. The yylex function can use this
155 table to recognize multiple-character string tokens, or for other
158 * The %no_lines declaration says not to generate any #line preprocessor
159 directives in the parser file.
161 * The %raw declaration says to use internal Bison token numbers, not
162 Yacc-compatible token numbers, when token names are defined as macros.
164 * The --no-parser option produces the parser tables without including
165 the parser engine; a project can now use its own parser engine.
166 The actions go into a separate file called NAME.act, in the form of
167 a switch statement body.
169 Changes in version 1.23:
171 The user can define YYPARSE_PARAM as the name of an argument to be
172 passed into yyparse. The argument should have type void *. It should
173 actually point to an object. Grammar actions can access the variable
174 by casting it to the proper pointer type.
176 Line numbers in output file corrected.
178 Changes in version 1.22:
182 Changes in version 1.20:
184 Output file does not redefine const for C++.