4 Changes in version 1.49b:
7 The undefined token was systematically mapped to 2 which prevented
8 the use of 2 from the user. This is no longer the case.
11 If yylex returned a code out of range, yyparse could die. This is
15 According to POSIX, the error token should be numbered as 256.
16 Bison extends this requirement by making it a preference: *if* the
17 user specified that one of her tokens is numbered 256, then error
18 will be mapped onto another number.
21 Are now supported (large token numbers, large grammar size (= sum of
22 the LHS and RHS lengths), large LALR tables).
24 * The initial rule is explicit.
25 Bison used to play hacks with the initial rule, which the user does
26 not write. It is now explicit, and visible in the reports and
29 * Useless rules are actually removed.
30 Before, Bison reported the useless rules, but, although not used,
31 included them in the parsers.
33 * False `Token not used' report fixed.
38 exp: '0' %prec useful;
40 where a token was used to set the precedence of the last rule,
41 bison reported both `useful' and `useless' as useless tokens.
43 * Revert the C++ namespace changes introduced in 1.31, as they caused too
44 many portability hassles.
47 Bison no longer dumps core when there are too many items, it just
51 The token end of file may be specified by the user, in which case,
52 the user symbol is used in the reports, the graphs, and the verbose
53 error messages instead of `$', which remains being the defaults.
57 %token YYEOF 0 "end of file"
60 This old option, which has been broken for ages, is removed.
63 Changes in version 1.35, 2002-03-25:
66 Some projects use Bison's C parser with C++ compilers, and define
67 YYSTYPE as a class. The recent adjustment of C parsers for data
68 alignment and 64 bit architectures made this impossible.
70 Because for the time being no real solution for C++ parser
71 generation exists, kludges were implemented in the parser to
72 maintain this use. In the future, when Bison has C++ parsers, this
73 kludge will be disabled.
75 This kludge also addresses some C++ problems when the stack was
79 Changes in version 1.34, 2002-03-12:
81 * File name clashes are detected
82 $ bison foo.y -d -o foo.x
83 fatal error: header and parser would both be named `foo.x'
85 * A missing `;' at the end of a rule triggers a warning
86 In accordance with POSIX, and in agreement with other
87 Yacc implementations, Bison will mandate this semicolon in the near
88 future. This eases the implementation of a Bison parser of Bison
89 grammars by making this grammar LALR(1) instead of LR(2). To
90 facilitate the transition, this release introduces a warning.
92 * Revert the C++ namespace changes introduced in 1.31, as they caused too
93 many portability hassles.
95 * DJGPP support added.
97 * Fix test suite portability problems.
99 Changes in version 1.33, 2002-02-07:
102 Groff could not be compiled for the definition of size_t was lacking
103 under some conditions.
108 Changes in version 1.32, 2002-01-23:
110 * Fix Yacc output file names
114 * Italian, Dutch translations
116 Changes in version 1.31, 2002-01-14:
120 * GNU Gettext and %expect
121 GNU Gettext asserts 10 s/r conflicts, but there are 7. Now that
122 Bison dies on incorrect %expectations, we fear there will be
123 too many bug reports for Gettext, so _for the time being_, %expect
124 does not trigger an error when the input file is named `plural.y'.
126 * Use of alloca in parsers
127 If YYSTACK_USE_ALLOCA is defined to 0, then the parsers will use
128 malloc exclusively. Since 1.29, but was not NEWS'ed.
130 alloca is used only when compiled with GCC, to avoid portability
133 * When the generated parser lacks debugging code, YYDEBUG is now 0
134 (as POSIX requires) instead of being undefined.
137 Bison has always permitted actions such as { $$ = $1 }: it adds the
138 ending semicolon. Now if in Yacc compatibility mode, the semicolon
139 is no longer output: one has to write { $$ = $1; }.
141 * Better C++ compliance
142 The output parsers try to respect C++ namespaces.
143 [This turned out to be a failed experiment, and it was reverted later.]
146 Fixed bugs when reporting useless nonterminals.
149 The parsers work properly on 64 bit hosts.
152 Some calls to strerror resulted in scrambled or missing error messages.
155 When the number of shift/reduce conflicts is correct, don't issue
158 * The verbose report includes the rule line numbers.
160 * Rule line numbers are fixed in traces.
162 * Swedish translation
165 Verbose parse error messages from the parsers are better looking.
166 Before: parse error: unexpected `'/'', expecting `"number"' or `'-'' or `'(''
167 Now: parse error: unexpected '/', expecting "number" or '-' or '('
169 * Fixed parser memory leaks.
170 When the generated parser was using malloc to extend its stacks, the
171 previous allocations were not freed.
173 * Fixed verbose output file.
174 Some newlines were missing.
175 Some conflicts in state descriptions were missing.
177 * Fixed conflict report.
178 Option -v was needed to get the result.
182 Mismatches are errors, not warnings.
184 * Fixed incorrect processing of some invalid input.
186 * Fixed CPP guards: 9foo.h uses BISON_9FOO_H instead of 9FOO_H.
188 * Fixed some typos in the documentation.
190 * %token MY_EOF 0 is supported.
191 Before, MY_EOF was silently renumbered as 257.
193 * doc/refcard.tex is updated.
195 * %output, %file-prefix, %name-prefix.
199 New, aliasing `--output-file'.
201 Changes in version 1.30, 2001-10-26:
203 * `--defines' and `--graph' have now an optionnal argument which is the
204 output file name. `-d' and `-g' do not change, they do not take any
207 * `%source_extension' and `%header_extension' are removed, failed
212 Changes in version 1.29, 2001-09-07:
214 * The output file does not define const, as this caused problems when used
215 with common autoconfiguration schemes. If you still use ancient compilers
216 that lack const, compile with the equivalent of the C compiler option
217 `-Dconst='. autoconf's AC_C_CONST macro provides one way to do this.
219 * Added `-g' and `--graph'.
221 * The Bison manual is now distributed under the terms of the GNU FDL.
223 * The input and the output files has automatically a similar extension.
225 * Russian translation added.
227 * NLS support updated; should hopefully be less troublesome.
229 * Added the old Bison reference card.
231 * Added `--locations' and `%locations'.
233 * Added `-S' and `--skeleton'.
235 * `%raw', `-r', `--raw' is disabled.
237 * Special characters are escaped when output. This solves the problems
238 of the #line lines with path names including backslashes.
241 `%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose',
242 `%debug', `%source_extension' and `%header_extension'.
245 Automatic location tracking.
247 Changes in version 1.28, 1999-07-06:
249 * Should compile better now with K&R compilers.
253 * Fixed a problem with escaping the double quote character.
255 * There is now a FAQ.
257 Changes in version 1.27:
259 * The make rule which prevented bison.simple from being created on
260 some systems has been fixed.
262 Changes in version 1.26:
264 * Bison now uses automake.
266 * New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>.
268 * Token numbers now start at 257 as previously documented, not 258.
270 * Bison honors the TMPDIR environment variable.
272 * A couple of buffer overruns have been fixed.
274 * Problems when closing files should now be reported.
276 * Generated parsers should now work even on operating systems which do
277 not provide alloca().
279 Changes in version 1.25, 1995-10-16:
281 * Errors in the input grammar are not fatal; Bison keeps reading
282 the grammar file, and reports all the errors found in it.
284 * Tokens can now be specified as multiple-character strings: for
285 example, you could use "<=" for a token which looks like <=, instead
286 of chosing a name like LESSEQ.
288 * The %token_table declaration says to write a table of tokens (names
289 and numbers) into the parser file. The yylex function can use this
290 table to recognize multiple-character string tokens, or for other
293 * The %no_lines declaration says not to generate any #line preprocessor
294 directives in the parser file.
296 * The %raw declaration says to use internal Bison token numbers, not
297 Yacc-compatible token numbers, when token names are defined as macros.
299 * The --no-parser option produces the parser tables without including
300 the parser engine; a project can now use its own parser engine.
301 The actions go into a separate file called NAME.act, in the form of
302 a switch statement body.
304 Changes in version 1.23:
306 The user can define YYPARSE_PARAM as the name of an argument to be
307 passed into yyparse. The argument should have type void *. It should
308 actually point to an object. Grammar actions can access the variable
309 by casting it to the proper pointer type.
311 Line numbers in output file corrected.
313 Changes in version 1.22:
317 Changes in version 1.20:
319 Output file does not redefine const for C++.
327 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
329 This file is part of GNU Autoconf.
331 GNU Autoconf is free software; you can redistribute it and/or modify
332 it under the terms of the GNU General Public License as published by
333 the Free Software Foundation; either version 2, or (at your option)
336 GNU Autoconf is distributed in the hope that it will be useful,
337 but WITHOUT ANY WARRANTY; without even the implied warranty of
338 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
339 GNU General Public License for more details.
341 You should have received a copy of the GNU General Public License
342 along with autoconf; see the file COPYING. If not, write to
343 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
344 Boston, MA 02111-1307, USA.