]>
Commit | Line | Data |
---|---|---|
6780ca7a DM |
1 | Bison News |
2 | ---------- | |
3 | ||
6cbfbcc5 | 4 | Changes in version 1.49b: |
adc8c848 | 5 | |
007a50a4 AD |
6 | * Undefined token |
7 | The undefined token was systematically mapped to 2 which prevented | |
8 | the use of 2 from the user. This is no longer the case. | |
9 | ||
77714df2 | 10 | * Unknown token numbers |
007a50a4 AD |
11 | If yylex returned a code out of range, yyparse could die. This is |
12 | no longer the case. | |
13 | ||
23c5a174 AD |
14 | * Error token |
15 | According to POSIX, the error token should be numbered as 256. | |
16 | Bison extends this requirement by making it a preference: *if* the | |
17 | user specified that one of her tokens is numbered 256, then error | |
18 | will be mapped onto another number. | |
19 | ||
68cd8af3 PE |
20 | * Error recovery now conforms to documentation and to POSIX |
21 | When a Bison-generated parser encounters a syntax error, it now pops | |
22 | the stack until it finds a state that allows shifting the error | |
23 | token. Formerly, it popped the stack until it found a state that | |
24 | allowed some non-error action other than a default reduction on the | |
25 | error token. The new behavior has long been the documented behavior, | |
26 | and has long been required by POSIX. For more details, please see | |
27 | <http://mail.gnu.org/pipermail/bug-bison/2002-May/001452.html>. | |
28 | ||
355e7c1c | 29 | * Large grammars |
77714df2 AD |
30 | Large grammars are now supported (large token numbers, large grammar |
31 | size (= sum of the LHS and RHS lengths), large LALR tables). | |
355e7c1c | 32 | |
77714df2 | 33 | * Explicit initial rule |
643a5994 AD |
34 | Bison used to play hacks with the initial rule, which the user does |
35 | not write. It is now explicit, and visible in the reports and | |
36 | graphs as rule 0. | |
23c5a174 | 37 | |
77714df2 | 38 | * Useless rules |
643a5994 | 39 | Before, Bison reported the useless rules, but, although not used, |
77714df2 | 40 | included them in the parsers. They are now actually removed. |
23c5a174 | 41 | |
77714df2 | 42 | * Incorrect `Token not used' |
11652ab3 AD |
43 | On a grammar such as |
44 | ||
45 | %token useless useful | |
46 | %% | |
47 | exp: '0' %prec useful; | |
48 | ||
49 | where a token was used to set the precedence of the last rule, | |
50 | bison reported both `useful' and `useless' as useless tokens. | |
51 | ||
77714df2 AD |
52 | * Revert the C++ namespace changes introduced in 1.31 |
53 | as they caused too many portability hassles. | |
0179dd65 | 54 | |
b2d52318 AD |
55 | * Default locations |
56 | By an accident of design, the default computation of @$ was | |
57 | performed after another default computation was performed: @$ = @1. | |
58 | The latter is now removed: YYLLOC_DEFAULT is fully responsible of | |
59 | the computation of @$. | |
adc8c848 | 60 | |
b7c49edf AD |
61 | * Token end-of-file |
62 | The token end of file may be specified by the user, in which case, | |
63 | the user symbol is used in the reports, the graphs, and the verbose | |
64 | error messages instead of `$', which remains being the defaults. | |
65 | For instance | |
66 | %token YYEOF 0 | |
67 | or | |
68 | %token YYEOF 0 "end of file" | |
fdbcd8e2 AD |
69 | |
70 | * Semantic parser | |
71 | This old option, which has been broken for ages, is removed. | |
72 | ||
77714df2 | 73 | * New translations |
84614e13 AD |
74 | Croatian, thanks to Denis Lackovic. |
75 | ||
77714df2 | 76 | * Incorrect token definitions |
b87f8b21 AD |
77 | When fed with `%token 'a' "A"', Bison used to output `#define 'a' 65'. |
78 | ||
77714df2 AD |
79 | * Token definitions as enums |
80 | Tokens are output both as the traditional #define's, and, provided | |
81 | the compiler supports ANSI C or is a C++ compiler, as enums. | |
82 | This helps debuggers producing symbols instead of values. | |
83 | ||
ec3bc396 AD |
84 | * Reports |
85 | In addition to --verbose, bison supports --report=THINGS, which | |
86 | produces additional information: | |
87 | ||
88 | `itemset' complete the core item sets with their closure | |
89 | `lookahead' explicitly associate lookaheads to items | |
90 | ||
f987e9d2 | 91 | \f |
76551463 AD |
92 | Changes in version 1.35, 2002-03-25: |
93 | ||
94 | * C Skeleton | |
95 | Some projects use Bison's C parser with C++ compilers, and define | |
96 | YYSTYPE as a class. The recent adjustment of C parsers for data | |
97 | alignment and 64 bit architectures made this impossible. | |
98 | ||
99 | Because for the time being no real solution for C++ parser | |
100 | generation exists, kludges were implemented in the parser to | |
101 | maintain this use. In the future, when Bison has C++ parsers, this | |
102 | kludge will be disabled. | |
103 | ||
104 | This kludge also addresses some C++ problems when the stack was | |
105 | extended. | |
106 | ||
107 | \f | |
108 | Changes in version 1.34, 2002-03-12: | |
109 | ||
110 | * File name clashes are detected | |
111 | $ bison foo.y -d -o foo.x | |
112 | fatal error: header and parser would both be named `foo.x' | |
113 | ||
114 | * A missing `;' at the end of a rule triggers a warning | |
115 | In accordance with POSIX, and in agreement with other | |
116 | Yacc implementations, Bison will mandate this semicolon in the near | |
117 | future. This eases the implementation of a Bison parser of Bison | |
118 | grammars by making this grammar LALR(1) instead of LR(2). To | |
119 | facilitate the transition, this release introduces a warning. | |
120 | ||
121 | * Revert the C++ namespace changes introduced in 1.31, as they caused too | |
122 | many portability hassles. | |
123 | ||
124 | * DJGPP support added. | |
125 | ||
126 | * Fix test suite portability problems. | |
127 | \f | |
128 | Changes in version 1.33, 2002-02-07: | |
129 | ||
130 | * Fix C++ issues | |
131 | Groff could not be compiled for the definition of size_t was lacking | |
132 | under some conditions. | |
133 | ||
134 | * Catch invalid @n | |
135 | As is done with $n. | |
136 | \f | |
137 | Changes in version 1.32, 2002-01-23: | |
138 | ||
139 | * Fix Yacc output file names | |
140 | ||
141 | * Portability fixes | |
142 | ||
143 | * Italian, Dutch translations | |
144 | \f | |
52d1aeee MA |
145 | Changes in version 1.31, 2002-01-14: |
146 | ||
147 | * Many Bug Fixes | |
148 | ||
149 | * GNU Gettext and %expect | |
150 | GNU Gettext asserts 10 s/r conflicts, but there are 7. Now that | |
151 | Bison dies on incorrect %expectations, we fear there will be | |
152 | too many bug reports for Gettext, so _for the time being_, %expect | |
153 | does not trigger an error when the input file is named `plural.y'. | |
154 | ||
155 | * Use of alloca in parsers | |
156 | If YYSTACK_USE_ALLOCA is defined to 0, then the parsers will use | |
157 | malloc exclusively. Since 1.29, but was not NEWS'ed. | |
158 | ||
159 | alloca is used only when compiled with GCC, to avoid portability | |
160 | problems as on AIX. | |
161 | ||
162 | * When the generated parser lacks debugging code, YYDEBUG is now 0 | |
163 | (as POSIX requires) instead of being undefined. | |
164 | ||
165 | * User Actions | |
166 | Bison has always permitted actions such as { $$ = $1 }: it adds the | |
167 | ending semicolon. Now if in Yacc compatibility mode, the semicolon | |
168 | is no longer output: one has to write { $$ = $1; }. | |
169 | ||
170 | * Better C++ compliance | |
171 | The output parsers try to respect C++ namespaces. | |
76551463 | 172 | [This turned out to be a failed experiment, and it was reverted later.] |
52d1aeee MA |
173 | |
174 | * Reduced Grammars | |
175 | Fixed bugs when reporting useless nonterminals. | |
176 | ||
177 | * 64 bit hosts | |
178 | The parsers work properly on 64 bit hosts. | |
179 | ||
180 | * Error messages | |
181 | Some calls to strerror resulted in scrambled or missing error messages. | |
182 | ||
183 | * %expect | |
184 | When the number of shift/reduce conflicts is correct, don't issue | |
185 | any warning. | |
186 | ||
187 | * The verbose report includes the rule line numbers. | |
188 | ||
189 | * Rule line numbers are fixed in traces. | |
190 | ||
191 | * Swedish translation | |
192 | ||
193 | * Parse errors | |
194 | Verbose parse error messages from the parsers are better looking. | |
195 | Before: parse error: unexpected `'/'', expecting `"number"' or `'-'' or `'('' | |
196 | Now: parse error: unexpected '/', expecting "number" or '-' or '(' | |
197 | ||
198 | * Fixed parser memory leaks. | |
199 | When the generated parser was using malloc to extend its stacks, the | |
200 | previous allocations were not freed. | |
201 | ||
202 | * Fixed verbose output file. | |
203 | Some newlines were missing. | |
204 | Some conflicts in state descriptions were missing. | |
205 | ||
206 | * Fixed conflict report. | |
207 | Option -v was needed to get the result. | |
208 | ||
209 | * %expect | |
210 | Was not used. | |
211 | Mismatches are errors, not warnings. | |
212 | ||
213 | * Fixed incorrect processing of some invalid input. | |
214 | ||
215 | * Fixed CPP guards: 9foo.h uses BISON_9FOO_H instead of 9FOO_H. | |
216 | ||
217 | * Fixed some typos in the documentation. | |
218 | ||
219 | * %token MY_EOF 0 is supported. | |
220 | Before, MY_EOF was silently renumbered as 257. | |
221 | ||
222 | * doc/refcard.tex is updated. | |
223 | ||
224 | * %output, %file-prefix, %name-prefix. | |
225 | New. | |
226 | ||
227 | * --output | |
228 | New, aliasing `--output-file'. | |
229 | \f | |
76551463 | 230 | Changes in version 1.30, 2001-10-26: |
342b8b6e AD |
231 | |
232 | * `--defines' and `--graph' have now an optionnal argument which is the | |
233 | output file name. `-d' and `-g' do not change, they do not take any | |
234 | argument. | |
235 | ||
236 | * `%source_extension' and `%header_extension' are removed, failed | |
237 | experiment. | |
238 | ||
f987e9d2 AD |
239 | * Portability fixes. |
240 | \f | |
9f4503d6 | 241 | Changes in version 1.29, 2001-09-07: |
342b8b6e AD |
242 | |
243 | * The output file does not define const, as this caused problems when used | |
244 | with common autoconfiguration schemes. If you still use ancient compilers | |
245 | that lack const, compile with the equivalent of the C compiler option | |
246 | `-Dconst='. autoconf's AC_C_CONST macro provides one way to do this. | |
247 | ||
248 | * Added `-g' and `--graph'. | |
f87a2205 | 249 | |
f2b5126e PB |
250 | * The Bison manual is now distributed under the terms of the GNU FDL. |
251 | ||
f1c63ced | 252 | * The input and the output files has automatically a similar extension. |
234a3be3 | 253 | |
f87a2205 JT |
254 | * Russian translation added. |
255 | ||
256 | * NLS support updated; should hopefully be less troublesome. | |
257 | ||
258 | * Added the old Bison reference card. | |
c33638bb AD |
259 | |
260 | * Added `--locations' and `%locations'. | |
6deb4447 | 261 | |
cd5bd6ac AD |
262 | * Added `-S' and `--skeleton'. |
263 | ||
62ab6972 AD |
264 | * `%raw', `-r', `--raw' is disabled. |
265 | ||
cd5bd6ac AD |
266 | * Special characters are escaped when output. This solves the problems |
267 | of the #line lines with path names including backslashes. | |
268 | ||
6deb4447 | 269 | * New directives. |
4ecbf796 MA |
270 | `%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose', |
271 | `%debug', `%source_extension' and `%header_extension'. | |
f987e9d2 AD |
272 | |
273 | * @$ | |
274 | Automatic location tracking. | |
f87a2205 | 275 | \f |
9f4503d6 | 276 | Changes in version 1.28, 1999-07-06: |
d2e00347 JT |
277 | |
278 | * Should compile better now with K&R compilers. | |
279 | ||
280 | * Added NLS. | |
281 | ||
282 | * Fixed a problem with escaping the double quote character. | |
283 | ||
284 | * There is now a FAQ. | |
285 | \f | |
5c31c3c2 JT |
286 | Changes in version 1.27: |
287 | ||
288 | * The make rule which prevented bison.simple from being created on | |
289 | some systems has been fixed. | |
290 | \f | |
291 | Changes in version 1.26: | |
4be07551 JT |
292 | |
293 | * Bison now uses automake. | |
294 | ||
295 | * New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>. | |
296 | ||
297 | * Token numbers now start at 257 as previously documented, not 258. | |
298 | ||
299 | * Bison honors the TMPDIR environment variable. | |
300 | ||
301 | * A couple of buffer overruns have been fixed. | |
f51dbca1 JT |
302 | |
303 | * Problems when closing files should now be reported. | |
304 | ||
305 | * Generated parsers should now work even on operating systems which do | |
306 | not provide alloca(). | |
4be07551 | 307 | \f |
9f4503d6 | 308 | Changes in version 1.25, 1995-10-16: |
df8878c5 RS |
309 | |
310 | * Errors in the input grammar are not fatal; Bison keeps reading | |
311 | the grammar file, and reports all the errors found in it. | |
8c44d3ec | 312 | |
df8878c5 RS |
313 | * Tokens can now be specified as multiple-character strings: for |
314 | example, you could use "<=" for a token which looks like <=, instead | |
315 | of chosing a name like LESSEQ. | |
316 | ||
317 | * The %token_table declaration says to write a table of tokens (names | |
318 | and numbers) into the parser file. The yylex function can use this | |
319 | table to recognize multiple-character string tokens, or for other | |
320 | purposes. | |
321 | ||
322 | * The %no_lines declaration says not to generate any #line preprocessor | |
323 | directives in the parser file. | |
324 | ||
325 | * The %raw declaration says to use internal Bison token numbers, not | |
326 | Yacc-compatible token numbers, when token names are defined as macros. | |
327 | ||
328 | * The --no-parser option produces the parser tables without including | |
329 | the parser engine; a project can now use its own parser engine. | |
330 | The actions go into a separate file called NAME.act, in the form of | |
331 | a switch statement body. | |
332 | \f | |
6780ca7a DM |
333 | Changes in version 1.23: |
334 | ||
4d019228 DM |
335 | The user can define YYPARSE_PARAM as the name of an argument to be |
336 | passed into yyparse. The argument should have type void *. It should | |
337 | actually point to an object. Grammar actions can access the variable | |
338 | by casting it to the proper pointer type. | |
6780ca7a | 339 | |
6780ca7a | 340 | Line numbers in output file corrected. |
6780ca7a DM |
341 | \f |
342 | Changes in version 1.22: | |
343 | ||
344 | --help option added. | |
6780ca7a DM |
345 | \f |
346 | Changes in version 1.20: | |
347 | ||
348 | Output file does not redefine const for C++. | |
9f4503d6 AD |
349 | |
350 | Local Variables: | |
351 | mode: outline | |
352 | End: | |
76551463 AD |
353 | |
354 | ----- | |
355 | ||
356 | Copyright (C) 2001, 2002 Free Software Foundation, Inc. | |
357 | ||
358 | This file is part of GNU Autoconf. | |
359 | ||
360 | GNU Autoconf is free software; you can redistribute it and/or modify | |
361 | it under the terms of the GNU General Public License as published by | |
362 | the Free Software Foundation; either version 2, or (at your option) | |
363 | any later version. | |
364 | ||
365 | GNU Autoconf is distributed in the hope that it will be useful, | |
366 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
367 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
368 | GNU General Public License for more details. | |
369 | ||
370 | You should have received a copy of the GNU General Public License | |
371 | along with autoconf; see the file COPYING. If not, write to | |
372 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
373 | Boston, MA 02111-1307, USA. |