]> git.saurik.com Git - bison.git/blame_incremental - NEWS
Added `bison.simple' to list of files removed by `make distclean'.
[bison.git] / NEWS
... / ...
CommitLineData
1Bison News
2----------
3
4Change in version 1.26:
5
6* Bison now uses automake.
7
8* New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>.
9
10* Token numbers now start at 257 as previously documented, not 258.
11
12* Bison honors the TMPDIR environment variable.
13
14* A couple of buffer overruns have been fixed.
15
16* Problems when closing files should now be reported.
17
18* Generated parsers should now work even on operating systems which do
19 not provide alloca().
20\f
21Change in version 1.25:
22
23* Errors in the input grammar are not fatal; Bison keeps reading
24the grammar file, and reports all the errors found in it.
25
26* Tokens can now be specified as multiple-character strings: for
27example, you could use "<=" for a token which looks like <=, instead
28of chosing a name like LESSEQ.
29
30* The %token_table declaration says to write a table of tokens (names
31and numbers) into the parser file. The yylex function can use this
32table to recognize multiple-character string tokens, or for other
33purposes.
34
35* The %no_lines declaration says not to generate any #line preprocessor
36directives in the parser file.
37
38* The %raw declaration says to use internal Bison token numbers, not
39Yacc-compatible token numbers, when token names are defined as macros.
40
41* The --no-parser option produces the parser tables without including
42the parser engine; a project can now use its own parser engine.
43The actions go into a separate file called NAME.act, in the form of
44a switch statement body.
45\f
46Changes in version 1.23:
47
48The user can define YYPARSE_PARAM as the name of an argument to be
49passed into yyparse. The argument should have type void *. It should
50actually point to an object. Grammar actions can access the variable
51by casting it to the proper pointer type.
52
53Line numbers in output file corrected.
54\f
55Changes in version 1.22:
56
57--help option added.
58\f
59Changes in version 1.20:
60
61Output file does not redefine const for C++.