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