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