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