4 Changes in version 1.29b:
6 * `--defines' and `--graph' have now an optionnal argument which is the
7 output file name. `-d' and `-g' do not change, they do not take any
10 * `%source_extension' and `%header_extension' are removed, failed
13 * The test suite is more portable.
17 Changes in version 1.29:
19 * Output file does not redefine const; that is now config.h's job.
21 * Added `-g' and `--graph'.
23 * The Bison manual is now distributed under the terms of the GNU FDL.
25 * The input and the output files has automatically a similar extension.
27 * Russian translation added.
29 * NLS support updated; should hopefully be less troublesome.
31 * Added the old Bison reference card.
33 * Added `--locations' and `%locations'.
35 * Added `-S' and `--skeleton'.
37 * `%raw', `-r', `--raw' is disabled.
39 * Special characters are escaped when output. This solves the problems
40 of the #line lines with path names including backslashes.
43 `%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose',
44 `%debug', `%source_extension' and `%header_extension'.
46 Changes in version 1.28:
48 * Should compile better now with K&R compilers.
52 * Fixed a problem with escaping the double quote character.
56 Changes in version 1.27:
58 * The make rule which prevented bison.simple from being created on
59 some systems has been fixed.
61 Changes in version 1.26:
63 * Bison now uses automake.
65 * New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>.
67 * Token numbers now start at 257 as previously documented, not 258.
69 * Bison honors the TMPDIR environment variable.
71 * A couple of buffer overruns have been fixed.
73 * Problems when closing files should now be reported.
75 * Generated parsers should now work even on operating systems which do
78 Changes in version 1.25:
80 * Errors in the input grammar are not fatal; Bison keeps reading
81 the grammar file, and reports all the errors found in it.
83 * Tokens can now be specified as multiple-character strings: for
84 example, you could use "<=" for a token which looks like <=, instead
85 of chosing a name like LESSEQ.
87 * The %token_table declaration says to write a table of tokens (names
88 and numbers) into the parser file. The yylex function can use this
89 table to recognize multiple-character string tokens, or for other
92 * The %no_lines declaration says not to generate any #line preprocessor
93 directives in the parser file.
95 * The %raw declaration says to use internal Bison token numbers, not
96 Yacc-compatible token numbers, when token names are defined as macros.
98 * The --no-parser option produces the parser tables without including
99 the parser engine; a project can now use its own parser engine.
100 The actions go into a separate file called NAME.act, in the form of
101 a switch statement body.
103 Changes in version 1.23:
105 The user can define YYPARSE_PARAM as the name of an argument to be
106 passed into yyparse. The argument should have type void *. It should
107 actually point to an object. Grammar actions can access the variable
108 by casting it to the proper pointer type.
110 Line numbers in output file corrected.
112 Changes in version 1.22:
116 Changes in version 1.20:
118 Output file does not redefine const for C++.