4 Changes in version 1.28c:
6 * The Bison manual is now distributed under the terms of the GNU FDL.
8 * The input and the output files has automatically a similar extension.
10 * Russian translation added.
12 * NLS support updated; should hopefully be less troublesome.
14 * Added the old Bison reference card.
16 * Added `--locations' and `%locations'.
18 * Added `-S' and `--skeleton'.
20 * `%raw', `-r', `--raw' is disabled.
22 * Special characters are escaped when output. This solves the problems
23 of the #line lines with path names including backslashes.
26 `%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose',
27 `%debug', `%source_extension' and `%header_extension'.
29 Changes in version 1.28:
31 * Should compile better now with K&R compilers.
35 * Fixed a problem with escaping the double quote character.
39 Changes in version 1.27:
41 * The make rule which prevented bison.simple from being created on
42 some systems has been fixed.
44 Changes in version 1.26:
46 * Bison now uses automake.
48 * New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>.
50 * Token numbers now start at 257 as previously documented, not 258.
52 * Bison honors the TMPDIR environment variable.
54 * A couple of buffer overruns have been fixed.
56 * Problems when closing files should now be reported.
58 * Generated parsers should now work even on operating systems which do
61 Changes in version 1.25:
63 * Errors in the input grammar are not fatal; Bison keeps reading
64 the grammar file, and reports all the errors found in it.
66 * Tokens can now be specified as multiple-character strings: for
67 example, you could use "<=" for a token which looks like <=, instead
68 of chosing a name like LESSEQ.
70 * The %token_table declaration says to write a table of tokens (names
71 and numbers) into the parser file. The yylex function can use this
72 table to recognize multiple-character string tokens, or for other
75 * The %no_lines declaration says not to generate any #line preprocessor
76 directives in the parser file.
78 * The %raw declaration says to use internal Bison token numbers, not
79 Yacc-compatible token numbers, when token names are defined as macros.
81 * The --no-parser option produces the parser tables without including
82 the parser engine; a project can now use its own parser engine.
83 The actions go into a separate file called NAME.act, in the form of
84 a switch statement body.
86 Changes in version 1.23:
88 The user can define YYPARSE_PARAM as the name of an argument to be
89 passed into yyparse. The argument should have type void *. It should
90 actually point to an object. Grammar actions can access the variable
91 by casting it to the proper pointer type.
93 Line numbers in output file corrected.
95 Changes in version 1.22:
99 Changes in version 1.20:
101 Output file does not redefine const for C++.