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 Changes in version 1.30:
12 * `--defines' and `--graph' have now an optionnal argument which is the
13 output file name. `-d' and `-g' do not change, they do not take any
16 * `%source_extension' and `%header_extension' are removed, failed
21 Changes in version 1.29:
23 * The output file does not define const, as this caused problems when used
24 with common autoconfiguration schemes. If you still use ancient compilers
25 that lack const, compile with the equivalent of the C compiler option
26 `-Dconst='. autoconf's AC_C_CONST macro provides one way to do this.
28 * Added `-g' and `--graph'.
30 * The Bison manual is now distributed under the terms of the GNU FDL.
32 * The input and the output files has automatically a similar extension.
34 * Russian translation added.
36 * NLS support updated; should hopefully be less troublesome.
38 * Added the old Bison reference card.
40 * Added `--locations' and `%locations'.
42 * Added `-S' and `--skeleton'.
44 * `%raw', `-r', `--raw' is disabled.
46 * Special characters are escaped when output. This solves the problems
47 of the #line lines with path names including backslashes.
50 `%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose',
51 `%debug', `%source_extension' and `%header_extension'.
54 Automatic location tracking.
56 Changes in version 1.28:
58 * Should compile better now with K&R compilers.
62 * Fixed a problem with escaping the double quote character.
66 Changes in version 1.27:
68 * The make rule which prevented bison.simple from being created on
69 some systems has been fixed.
71 Changes in version 1.26:
73 * Bison now uses automake.
75 * New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>.
77 * Token numbers now start at 257 as previously documented, not 258.
79 * Bison honors the TMPDIR environment variable.
81 * A couple of buffer overruns have been fixed.
83 * Problems when closing files should now be reported.
85 * Generated parsers should now work even on operating systems which do
88 Changes in version 1.25:
90 * Errors in the input grammar are not fatal; Bison keeps reading
91 the grammar file, and reports all the errors found in it.
93 * Tokens can now be specified as multiple-character strings: for
94 example, you could use "<=" for a token which looks like <=, instead
95 of chosing a name like LESSEQ.
97 * The %token_table declaration says to write a table of tokens (names
98 and numbers) into the parser file. The yylex function can use this
99 table to recognize multiple-character string tokens, or for other
102 * The %no_lines declaration says not to generate any #line preprocessor
103 directives in the parser file.
105 * The %raw declaration says to use internal Bison token numbers, not
106 Yacc-compatible token numbers, when token names are defined as macros.
108 * The --no-parser option produces the parser tables without including
109 the parser engine; a project can now use its own parser engine.
110 The actions go into a separate file called NAME.act, in the form of
111 a switch statement body.
113 Changes in version 1.23:
115 The user can define YYPARSE_PARAM as the name of an argument to be
116 passed into yyparse. The argument should have type void *. It should
117 actually point to an object. Grammar actions can access the variable
118 by casting it to the proper pointer type.
120 Line numbers in output file corrected.
122 Changes in version 1.22:
126 Changes in version 1.20:
128 Output file does not redefine const for C++.