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