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