4 Changes in version 1.30a:
6 * Fixed incorrect processing of some invalid input.
8 * Fixed CPP guards: 9foo.h uses BISON_9FOO_H instead of 9FOO_H.
10 * Fixed some typos in the documentation.
12 * %token MY_EOF 0 is supported.
13 Before, MY_EOF was silently renumbered as 257.
15 * doc/refcard.tex is updated.
17 * %output, %file-prefix, %name-prefix.
21 New, aliasing `--output-file'.
23 Changes in version 1.30, 2001-10-26:
25 * `--defines' and `--graph' have now an optionnal argument which is the
26 output file name. `-d' and `-g' do not change, they do not take any
29 * `%source_extension' and `%header_extension' are removed, failed
34 Changes in version 1.29, 2001-09-07:
36 * The output file does not define const, as this caused problems when used
37 with common autoconfiguration schemes. If you still use ancient compilers
38 that lack const, compile with the equivalent of the C compiler option
39 `-Dconst='. autoconf's AC_C_CONST macro provides one way to do this.
41 * Added `-g' and `--graph'.
43 * The Bison manual is now distributed under the terms of the GNU FDL.
45 * The input and the output files has automatically a similar extension.
47 * Russian translation added.
49 * NLS support updated; should hopefully be less troublesome.
51 * Added the old Bison reference card.
53 * Added `--locations' and `%locations'.
55 * Added `-S' and `--skeleton'.
57 * `%raw', `-r', `--raw' is disabled.
59 * Special characters are escaped when output. This solves the problems
60 of the #line lines with path names including backslashes.
63 `%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose',
64 `%debug', `%source_extension' and `%header_extension'.
67 Automatic location tracking.
69 Changes in version 1.28, 1999-07-06:
71 * Should compile better now with K&R compilers.
75 * Fixed a problem with escaping the double quote character.
79 Changes in version 1.27:
81 * The make rule which prevented bison.simple from being created on
82 some systems has been fixed.
84 Changes in version 1.26:
86 * Bison now uses automake.
88 * New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>.
90 * Token numbers now start at 257 as previously documented, not 258.
92 * Bison honors the TMPDIR environment variable.
94 * A couple of buffer overruns have been fixed.
96 * Problems when closing files should now be reported.
98 * Generated parsers should now work even on operating systems which do
101 Changes in version 1.25, 1995-10-16:
103 * Errors in the input grammar are not fatal; Bison keeps reading
104 the grammar file, and reports all the errors found in it.
106 * Tokens can now be specified as multiple-character strings: for
107 example, you could use "<=" for a token which looks like <=, instead
108 of chosing a name like LESSEQ.
110 * The %token_table declaration says to write a table of tokens (names
111 and numbers) into the parser file. The yylex function can use this
112 table to recognize multiple-character string tokens, or for other
115 * The %no_lines declaration says not to generate any #line preprocessor
116 directives in the parser file.
118 * The %raw declaration says to use internal Bison token numbers, not
119 Yacc-compatible token numbers, when token names are defined as macros.
121 * The --no-parser option produces the parser tables without including
122 the parser engine; a project can now use its own parser engine.
123 The actions go into a separate file called NAME.act, in the form of
124 a switch statement body.
126 Changes in version 1.23:
128 The user can define YYPARSE_PARAM as the name of an argument to be
129 passed into yyparse. The argument should have type void *. It should
130 actually point to an object. Grammar actions can access the variable
131 by casting it to the proper pointer type.
133 Line numbers in output file corrected.
135 Changes in version 1.22:
139 Changes in version 1.20:
141 Output file does not redefine const for C++.