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