]>
Commit | Line | Data |
---|---|---|
6780ca7a DM |
1 | Bison News |
2 | ---------- | |
3af4feb2 | 3 | |
eb520e4c | 4 | Changes in the next version (not yet released): |
1ce59070 | 5 | |
a7db4add | 6 | * Bison-generated parsers now support the translation of diagnostics like |
baf785db PE |
7 | "syntax error" into languages other than English. The default |
8 | language is still English. For details, please see the new | |
0410a6e0 PE |
9 | Internationalization section of the Bison manual. Software |
10 | distributors should also see the new PACKAGING file. Thanks to | |
11 | Bruno Haible for this new feature. | |
1ce59070 | 12 | |
1a059451 PE |
13 | * Wording in the Bison-generated parsers has been changed slightly to |
14 | simplify translation. In particular, the message "memory exhausted" | |
15 | has replaced "parser stack overflow", as the old message was not | |
16 | always accurate for modern Bison-generated parsers. | |
17 | ||
eb520e4c PE |
18 | The following change was also in version 2.0a, 2005-05-22: |
19 | ||
a7db4add | 20 | * When generating verbose diagnostics, Bison-generated parsers no longer |
72f000b0 PE |
21 | quote the literal strings associated with tokens. For example, for |
22 | a syntax error associated with '%token NUM "number"' they might | |
23 | print 'syntax error, unexpected number' instead of 'syntax error, | |
24 | unexpected "number"'. | |
25 | ||
82de6b0d | 26 | Changes in version 2.0, 2004-12-25: |
efeed023 | 27 | |
82de6b0d | 28 | * Possibly-incompatible changes |
d7e14fc0 | 29 | |
82de6b0d PE |
30 | - Bison-generated parsers no longer default to using the alloca function |
31 | (when available) to extend the parser stack, due to widespread | |
32 | problems in unchecked stack-overflow detection. You can "#define | |
33 | YYSTACK_USE_ALLOCA 1" to require the use of alloca, but please read | |
34 | the manual to determine safe values for YYMAXDEPTH in that case. | |
8dd162d3 | 35 | |
82de6b0d PE |
36 | - Error token location. |
37 | During error recovery, the location of the syntax error is updated | |
38 | to cover the whole sequence covered by the error token: it includes | |
39 | the shifted symbols thrown away during the first part of the error | |
40 | recovery, and the lookahead rejected during the second part. | |
18d192f0 | 41 | |
82de6b0d PE |
42 | - Semicolon changes: |
43 | . Stray semicolons are no longer allowed at the start of a grammar. | |
44 | . Semicolons are now required after in-grammar declarations. | |
e342c3be | 45 | |
82de6b0d PE |
46 | - Unescaped newlines are no longer allowed in character constants or |
47 | string literals. They were never portable, and GCC 3.4.0 has | |
48 | dropped support for them. Better diagnostics are now generated if | |
49 | forget a closing quote. | |
8dd162d3 | 50 | |
82de6b0d | 51 | - NUL bytes are no longer allowed in Bison string literals, unfortunately. |
f74b6f91 | 52 | |
82de6b0d | 53 | * New features |
1452af69 | 54 | |
82de6b0d | 55 | - GLR grammars now support locations. |
4febdd96 | 56 | |
82de6b0d PE |
57 | - New directive: %initial-action. |
58 | This directive allows the user to run arbitrary code (including | |
59 | initializing @$) from yyparse before parsing starts. | |
1452af69 | 60 | |
82de6b0d PE |
61 | - A new directive "%expect-rr N" specifies the expected number of |
62 | reduce/reduce conflicts in GLR parsers. | |
1452af69 | 63 | |
82de6b0d PE |
64 | - %token numbers can now be hexadecimal integers, e.g., `%token FOO 0x12d'. |
65 | This is a GNU extension. | |
4febdd96 | 66 | |
82de6b0d PE |
67 | - The option `--report=lookahead' was changed to `--report=look-ahead'. |
68 | The old spelling still works, but is not documented and will be | |
69 | removed. | |
1452af69 | 70 | |
82de6b0d | 71 | - Experimental %destructor support has been added to lalr1.cc. |
1452af69 | 72 | |
82de6b0d PE |
73 | - New configure option --disable-yacc, to disable installation of the |
74 | yacc command and -ly library introduced in 1.875 for POSIX conformance. | |
6040d338 | 75 | |
82de6b0d | 76 | * Bug fixes |
d5a3fe37 | 77 | |
82de6b0d PE |
78 | - For now, %expect-count violations are now just warnings, not errors. |
79 | This is for compatibility with Bison 1.75 and earlier (when there are | |
80 | reduce/reduce conflicts) and with Bison 1.30 and earlier (when there | |
81 | are too many or too few shift/reduce conflicts). However, in future | |
82 | versions of Bison we plan to improve the %expect machinery so that | |
83 | these violations will become errors again. | |
3473d0f8 | 84 | |
82de6b0d PE |
85 | - Within Bison itself, numbers (e.g., goto numbers) are no longer |
86 | arbitrarily limited to 16-bit counts. | |
d600ee67 | 87 | |
82de6b0d | 88 | - Semicolons are now allowed before "|" in grammar rules, as POSIX requires. |
d600ee67 | 89 | \f |
dc546b0f | 90 | Changes in version 1.875, 2003-01-01: |
963fcc17 | 91 | |
dc546b0f PE |
92 | * The documentation license has been upgraded to version 1.2 |
93 | of the GNU Free Documentation License. | |
75eb3bc4 | 94 | |
dc546b0f | 95 | * syntax error processing |
75eb3bc4 | 96 | |
dc546b0f PE |
97 | - In Yacc-style parsers YYLLOC_DEFAULT is now used to compute error |
98 | locations too. This fixes bugs in error-location computation. | |
75eb3bc4 | 99 | |
dc546b0f PE |
100 | - %destructor |
101 | It is now possible to reclaim the memory associated to symbols | |
102 | discarded during error recovery. This feature is still experimental. | |
20daca06 | 103 | |
dc546b0f PE |
104 | - %error-verbose |
105 | This new directive is preferred over YYERROR_VERBOSE. | |
74724a70 | 106 | |
dc546b0f PE |
107 | - #defining yyerror to steal internal variables is discouraged. |
108 | It is not guaranteed to work forever. | |
d1de5372 | 109 | |
dc546b0f | 110 | * POSIX conformance |
d1de5372 | 111 | |
dc546b0f PE |
112 | - Semicolons are once again optional at the end of grammar rules. |
113 | This reverts to the behavior of Bison 1.33 and earlier, and improves | |
114 | compatibility with Yacc. | |
74724a70 | 115 | |
dc546b0f PE |
116 | - `parse error' -> `syntax error' |
117 | Bison now uniformly uses the term `syntax error'; formerly, the code | |
118 | and manual sometimes used the term `parse error' instead. POSIX | |
119 | requires `syntax error' in diagnostics, and it was thought better to | |
120 | be consistent. | |
74724a70 | 121 | |
dc546b0f PE |
122 | - The documentation now emphasizes that yylex and yyerror must be |
123 | declared before use. C99 requires this. | |
d1de5372 | 124 | |
dc546b0f PE |
125 | - Bison now parses C99 lexical constructs like UCNs and |
126 | backslash-newline within C escape sequences, as POSIX 1003.1-2001 requires. | |
d1de5372 | 127 | |
dc546b0f PE |
128 | - File names are properly escaped in C output. E.g., foo\bar.y is |
129 | output as "foo\\bar.y". | |
6780ca7a | 130 | |
dc546b0f PE |
131 | - Yacc command and library now available |
132 | The Bison distribution now installs a `yacc' command, as POSIX requires. | |
133 | Also, Bison now installs a small library liby.a containing | |
134 | implementations of Yacc-compatible yyerror and main functions. | |
135 | This library is normally not useful, but POSIX requires it. | |
6e649e65 | 136 | |
dc546b0f | 137 | - Type clashes now generate warnings, not errors. |
6e649e65 | 138 | |
dc546b0f PE |
139 | - If the user does not define YYSTYPE as a macro, Bison now declares it |
140 | using typedef instead of defining it as a macro. | |
141 | For consistency, YYLTYPE is also declared instead of defined. | |
9501dc6e | 142 | |
dc546b0f | 143 | * Other compatibility issues |
886a425c | 144 | |
dc546b0f PE |
145 | - %union directives can now have a tag before the `{', e.g., the |
146 | directive `%union foo {...}' now generates the C code | |
147 | `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility. | |
148 | The default union tag is `YYSTYPE', for compatibility with Solaris 9 Yacc. | |
149 | For consistency, YYLTYPE's struct tag is now `YYLTYPE' not `yyltype'. | |
150 | This is for compatibility with both Yacc and Bison 1.35. | |
72f889cc | 151 | |
dc546b0f PE |
152 | - `;' is output before the terminating `}' of an action, for |
153 | compatibility with Bison 1.35. | |
886a425c | 154 | |
dc546b0f PE |
155 | - Bison now uses a Yacc-style format for conflict reports, e.g., |
156 | `conflicts: 2 shift/reduce, 1 reduce/reduce'. | |
437c2d80 | 157 | |
dc546b0f PE |
158 | - `yystype' and `yyltype' are now obsolescent macros instead of being |
159 | typedefs or tags; they are no longer documented and are planned to be | |
160 | withdrawn in a future release. | |
2a8d363a | 161 | |
dc546b0f | 162 | * GLR parser notes |
2a8d363a | 163 | |
dc546b0f PE |
164 | - GLR and inline |
165 | Users of Bison have to decide how they handle the portability of the | |
166 | C keyword `inline'. | |
959e5f51 | 167 | |
dc546b0f PE |
168 | - `parsing stack overflow...' -> `parser stack overflow' |
169 | GLR parsers now report `parser stack overflow' as per the Bison manual. | |
900c5db5 | 170 | |
dc546b0f PE |
171 | * Bison now warns if it detects conflicting outputs to the same file, |
172 | e.g., it generates a warning for `bison -d -o foo.h foo.y' since | |
173 | that command outputs both code and header to foo.h. | |
6e40b4eb | 174 | |
dc546b0f PE |
175 | * #line in output files |
176 | - --no-line works properly. | |
6e40b4eb AD |
177 | |
178 | * Bison can no longer be built by a K&R C compiler; it requires C89 or | |
179 | later to be built. This change originally took place a few versions | |
180 | ago, but nobody noticed until we recently asked someone to try | |
181 | building Bison with a K&R C compiler. | |
d600ee67 | 182 | \f |
5c16c6b1 | 183 | Changes in version 1.75, 2002-10-14: |
7933f2b5 PE |
184 | |
185 | * Bison should now work on 64-bit hosts. | |
186 | ||
b7195100 | 187 | * Indonesian translation thanks to Tedi Heriyanto. |
7933f2b5 | 188 | |
f50adbbd AD |
189 | * GLR parsers |
190 | Fix spurious parse errors. | |
191 | ||
192 | * Pure parsers | |
193 | Some people redefine yyerror to steal yyparse' private variables. | |
194 | Reenable this trick until an official feature replaces it. | |
195 | ||
d90c934c AD |
196 | * Type Clashes |
197 | In agreement with POSIX and with other Yaccs, leaving a default | |
198 | action is valid when $$ is untyped, and $1 typed: | |
199 | ||
200 | untyped: ... typed; | |
201 | ||
202 | but the converse remains an error: | |
203 | ||
204 | typed: ... untyped; | |
205 | ||
206 | * Values of mid-rule actions | |
207 | The following code: | |
208 | ||
209 | foo: { ... } { $$ = $1; } ... | |
210 | ||
211 | was incorrectly rejected: $1 is defined in the second mid-rule | |
212 | action, and is equal to the $$ of the first mid-rule action. | |
d600ee67 | 213 | \f |
420f93c8 | 214 | Changes in version 1.50, 2002-10-04: |
adc8c848 | 215 | |
676385e2 PH |
216 | * GLR parsing |
217 | The declaration | |
218 | %glr-parser | |
219 | causes Bison to produce a Generalized LR (GLR) parser, capable of handling | |
220 | almost any context-free grammar, ambiguous or not. The new declarations | |
e8832397 | 221 | %dprec and %merge on grammar rules allow parse-time resolution of |
676385e2 PH |
222 | ambiguities. Contributed by Paul Hilfinger. |
223 | ||
7933f2b5 | 224 | Unfortunately Bison 1.50 does not work properly on 64-bit hosts |
420f93c8 PE |
225 | like the Alpha, so please stick to 32-bit hosts for now. |
226 | ||
8c165d89 AD |
227 | * Output Directory |
228 | When not in Yacc compatibility mode, when the output file was not | |
e88dbdbf | 229 | specified, running `bison foo/bar.y' created `foo/bar.c'. It |
8c165d89 AD |
230 | now creates `bar.c'. |
231 | ||
007a50a4 AD |
232 | * Undefined token |
233 | The undefined token was systematically mapped to 2 which prevented | |
e88dbdbf | 234 | the use of 2 by the user. This is no longer the case. |
007a50a4 | 235 | |
77714df2 | 236 | * Unknown token numbers |
e88dbdbf | 237 | If yylex returned an out of range value, yyparse could die. This is |
007a50a4 AD |
238 | no longer the case. |
239 | ||
23c5a174 | 240 | * Error token |
e88dbdbf | 241 | According to POSIX, the error token must be 256. |
23c5a174 AD |
242 | Bison extends this requirement by making it a preference: *if* the |
243 | user specified that one of her tokens is numbered 256, then error | |
244 | will be mapped onto another number. | |
245 | ||
217598da | 246 | * Verbose error messages |
e88dbdbf | 247 | They no longer report `..., expecting error or...' for states where |
217598da AD |
248 | error recovery is possible. |
249 | ||
250 | * End token | |
251 | Defaults to `$end' instead of `$'. | |
252 | ||
68cd8af3 PE |
253 | * Error recovery now conforms to documentation and to POSIX |
254 | When a Bison-generated parser encounters a syntax error, it now pops | |
255 | the stack until it finds a state that allows shifting the error | |
256 | token. Formerly, it popped the stack until it found a state that | |
257 | allowed some non-error action other than a default reduction on the | |
258 | error token. The new behavior has long been the documented behavior, | |
259 | and has long been required by POSIX. For more details, please see | |
337116ba PE |
260 | Paul Eggert, "Reductions during Bison error handling" (2002-05-20) |
261 | <http://lists.gnu.org/archive/html/bug-bison/2002-05/msg00038.html>. | |
68cd8af3 | 262 | |
5504898e AD |
263 | * Traces |
264 | Popped tokens and nonterminals are now reported. | |
265 | ||
a861a339 PE |
266 | * Larger grammars |
267 | Larger grammars are now supported (larger token numbers, larger grammar | |
268 | size (= sum of the LHS and RHS lengths), larger LALR tables). | |
269 | Formerly, many of these numbers ran afoul of 16-bit limits; | |
270 | now these limits are 32 bits on most hosts. | |
355e7c1c | 271 | |
77714df2 | 272 | * Explicit initial rule |
643a5994 AD |
273 | Bison used to play hacks with the initial rule, which the user does |
274 | not write. It is now explicit, and visible in the reports and | |
275 | graphs as rule 0. | |
23c5a174 | 276 | |
77714df2 | 277 | * Useless rules |
643a5994 | 278 | Before, Bison reported the useless rules, but, although not used, |
77714df2 | 279 | included them in the parsers. They are now actually removed. |
23c5a174 | 280 | |
6b98e4b5 AD |
281 | * Useless rules, useless nonterminals |
282 | They are now reported, as a warning, with their locations. | |
283 | ||
e8832397 AD |
284 | * Rules never reduced |
285 | Rules that can never be reduced because of conflicts are now | |
286 | reported. | |
287 | ||
77714df2 | 288 | * Incorrect `Token not used' |
11652ab3 AD |
289 | On a grammar such as |
290 | ||
291 | %token useless useful | |
292 | %% | |
293 | exp: '0' %prec useful; | |
294 | ||
295 | where a token was used to set the precedence of the last rule, | |
296 | bison reported both `useful' and `useless' as useless tokens. | |
297 | ||
77714df2 AD |
298 | * Revert the C++ namespace changes introduced in 1.31 |
299 | as they caused too many portability hassles. | |
0179dd65 | 300 | |
b2d52318 AD |
301 | * Default locations |
302 | By an accident of design, the default computation of @$ was | |
303 | performed after another default computation was performed: @$ = @1. | |
304 | The latter is now removed: YYLLOC_DEFAULT is fully responsible of | |
305 | the computation of @$. | |
adc8c848 | 306 | |
b7c49edf AD |
307 | * Token end-of-file |
308 | The token end of file may be specified by the user, in which case, | |
309 | the user symbol is used in the reports, the graphs, and the verbose | |
a861a339 | 310 | error messages instead of `$end', which remains being the default. |
b7c49edf | 311 | For instance |
7bd6c77e | 312 | %token MYEOF 0 |
b7c49edf | 313 | or |
7bd6c77e | 314 | %token MYEOF 0 "end of file" |
fdbcd8e2 AD |
315 | |
316 | * Semantic parser | |
317 | This old option, which has been broken for ages, is removed. | |
318 | ||
a861a339 PE |
319 | * New translations |
320 | Brazilian Portuguese, thanks to Alexandre Folle de Menezes. | |
84614e13 AD |
321 | Croatian, thanks to Denis Lackovic. |
322 | ||
77714df2 | 323 | * Incorrect token definitions |
e88dbdbf | 324 | When given `%token 'a' "A"', Bison used to output `#define 'a' 65'. |
b87f8b21 | 325 | |
77714df2 AD |
326 | * Token definitions as enums |
327 | Tokens are output both as the traditional #define's, and, provided | |
328 | the compiler supports ANSI C or is a C++ compiler, as enums. | |
e88dbdbf | 329 | This lets debuggers display names instead of integers. |
77714df2 | 330 | |
ec3bc396 AD |
331 | * Reports |
332 | In addition to --verbose, bison supports --report=THINGS, which | |
333 | produces additional information: | |
b408954b AD |
334 | - itemset |
335 | complete the core item sets with their closure | |
8dd162d3 PE |
336 | - lookahead [changed to `look-ahead' in 1.875e and later] |
337 | explicitly associate look-ahead tokens to items | |
b408954b AD |
338 | - solved |
339 | describe shift/reduce conflicts solving. | |
340 | Bison used to systematically output this information on top of | |
341 | the report. Solved conflicts are now attached to their states. | |
ec3bc396 | 342 | |
9af3fbce AD |
343 | * Type clashes |
344 | Previous versions don't complain when there is a type clash on | |
345 | the default action if the rule has a mid-rule action, such as in: | |
346 | ||
347 | %type <foo> bar | |
348 | %% | |
349 | bar: '0' {} '0'; | |
350 | ||
351 | This is fixed. | |
a861a339 PE |
352 | |
353 | * GNU M4 is now required when using Bison. | |
f987e9d2 | 354 | \f |
76551463 AD |
355 | Changes in version 1.35, 2002-03-25: |
356 | ||
357 | * C Skeleton | |
358 | Some projects use Bison's C parser with C++ compilers, and define | |
359 | YYSTYPE as a class. The recent adjustment of C parsers for data | |
360 | alignment and 64 bit architectures made this impossible. | |
361 | ||
362 | Because for the time being no real solution for C++ parser | |
363 | generation exists, kludges were implemented in the parser to | |
364 | maintain this use. In the future, when Bison has C++ parsers, this | |
365 | kludge will be disabled. | |
366 | ||
367 | This kludge also addresses some C++ problems when the stack was | |
368 | extended. | |
76551463 AD |
369 | \f |
370 | Changes in version 1.34, 2002-03-12: | |
371 | ||
372 | * File name clashes are detected | |
373 | $ bison foo.y -d -o foo.x | |
374 | fatal error: header and parser would both be named `foo.x' | |
375 | ||
376 | * A missing `;' at the end of a rule triggers a warning | |
377 | In accordance with POSIX, and in agreement with other | |
378 | Yacc implementations, Bison will mandate this semicolon in the near | |
379 | future. This eases the implementation of a Bison parser of Bison | |
380 | grammars by making this grammar LALR(1) instead of LR(2). To | |
381 | facilitate the transition, this release introduces a warning. | |
382 | ||
383 | * Revert the C++ namespace changes introduced in 1.31, as they caused too | |
384 | many portability hassles. | |
385 | ||
386 | * DJGPP support added. | |
387 | ||
388 | * Fix test suite portability problems. | |
389 | \f | |
390 | Changes in version 1.33, 2002-02-07: | |
391 | ||
392 | * Fix C++ issues | |
393 | Groff could not be compiled for the definition of size_t was lacking | |
394 | under some conditions. | |
395 | ||
396 | * Catch invalid @n | |
397 | As is done with $n. | |
398 | \f | |
399 | Changes in version 1.32, 2002-01-23: | |
400 | ||
401 | * Fix Yacc output file names | |
402 | ||
403 | * Portability fixes | |
404 | ||
405 | * Italian, Dutch translations | |
406 | \f | |
52d1aeee MA |
407 | Changes in version 1.31, 2002-01-14: |
408 | ||
409 | * Many Bug Fixes | |
410 | ||
411 | * GNU Gettext and %expect | |
412 | GNU Gettext asserts 10 s/r conflicts, but there are 7. Now that | |
413 | Bison dies on incorrect %expectations, we fear there will be | |
414 | too many bug reports for Gettext, so _for the time being_, %expect | |
415 | does not trigger an error when the input file is named `plural.y'. | |
416 | ||
417 | * Use of alloca in parsers | |
418 | If YYSTACK_USE_ALLOCA is defined to 0, then the parsers will use | |
419 | malloc exclusively. Since 1.29, but was not NEWS'ed. | |
420 | ||
421 | alloca is used only when compiled with GCC, to avoid portability | |
422 | problems as on AIX. | |
423 | ||
424 | * When the generated parser lacks debugging code, YYDEBUG is now 0 | |
425 | (as POSIX requires) instead of being undefined. | |
426 | ||
427 | * User Actions | |
428 | Bison has always permitted actions such as { $$ = $1 }: it adds the | |
429 | ending semicolon. Now if in Yacc compatibility mode, the semicolon | |
430 | is no longer output: one has to write { $$ = $1; }. | |
431 | ||
432 | * Better C++ compliance | |
433 | The output parsers try to respect C++ namespaces. | |
76551463 | 434 | [This turned out to be a failed experiment, and it was reverted later.] |
52d1aeee MA |
435 | |
436 | * Reduced Grammars | |
437 | Fixed bugs when reporting useless nonterminals. | |
438 | ||
439 | * 64 bit hosts | |
440 | The parsers work properly on 64 bit hosts. | |
441 | ||
442 | * Error messages | |
443 | Some calls to strerror resulted in scrambled or missing error messages. | |
444 | ||
445 | * %expect | |
446 | When the number of shift/reduce conflicts is correct, don't issue | |
447 | any warning. | |
448 | ||
449 | * The verbose report includes the rule line numbers. | |
450 | ||
451 | * Rule line numbers are fixed in traces. | |
452 | ||
453 | * Swedish translation | |
454 | ||
455 | * Parse errors | |
456 | Verbose parse error messages from the parsers are better looking. | |
457 | Before: parse error: unexpected `'/'', expecting `"number"' or `'-'' or `'('' | |
458 | Now: parse error: unexpected '/', expecting "number" or '-' or '(' | |
459 | ||
460 | * Fixed parser memory leaks. | |
461 | When the generated parser was using malloc to extend its stacks, the | |
462 | previous allocations were not freed. | |
463 | ||
464 | * Fixed verbose output file. | |
465 | Some newlines were missing. | |
466 | Some conflicts in state descriptions were missing. | |
467 | ||
468 | * Fixed conflict report. | |
469 | Option -v was needed to get the result. | |
470 | ||
471 | * %expect | |
472 | Was not used. | |
473 | Mismatches are errors, not warnings. | |
474 | ||
475 | * Fixed incorrect processing of some invalid input. | |
476 | ||
477 | * Fixed CPP guards: 9foo.h uses BISON_9FOO_H instead of 9FOO_H. | |
478 | ||
479 | * Fixed some typos in the documentation. | |
480 | ||
481 | * %token MY_EOF 0 is supported. | |
482 | Before, MY_EOF was silently renumbered as 257. | |
483 | ||
484 | * doc/refcard.tex is updated. | |
485 | ||
486 | * %output, %file-prefix, %name-prefix. | |
487 | New. | |
488 | ||
489 | * --output | |
490 | New, aliasing `--output-file'. | |
491 | \f | |
76551463 | 492 | Changes in version 1.30, 2001-10-26: |
342b8b6e | 493 | |
fdac0091 PE |
494 | * `--defines' and `--graph' have now an optional argument which is the |
495 | output file name. `-d' and `-g' do not change; they do not take any | |
342b8b6e AD |
496 | argument. |
497 | ||
498 | * `%source_extension' and `%header_extension' are removed, failed | |
499 | experiment. | |
500 | ||
f987e9d2 AD |
501 | * Portability fixes. |
502 | \f | |
9f4503d6 | 503 | Changes in version 1.29, 2001-09-07: |
342b8b6e AD |
504 | |
505 | * The output file does not define const, as this caused problems when used | |
506 | with common autoconfiguration schemes. If you still use ancient compilers | |
507 | that lack const, compile with the equivalent of the C compiler option | |
508 | `-Dconst='. autoconf's AC_C_CONST macro provides one way to do this. | |
509 | ||
510 | * Added `-g' and `--graph'. | |
f87a2205 | 511 | |
f2b5126e PB |
512 | * The Bison manual is now distributed under the terms of the GNU FDL. |
513 | ||
f1c63ced | 514 | * The input and the output files has automatically a similar extension. |
234a3be3 | 515 | |
f87a2205 JT |
516 | * Russian translation added. |
517 | ||
518 | * NLS support updated; should hopefully be less troublesome. | |
519 | ||
520 | * Added the old Bison reference card. | |
c33638bb AD |
521 | |
522 | * Added `--locations' and `%locations'. | |
6deb4447 | 523 | |
cd5bd6ac AD |
524 | * Added `-S' and `--skeleton'. |
525 | ||
62ab6972 AD |
526 | * `%raw', `-r', `--raw' is disabled. |
527 | ||
cd5bd6ac AD |
528 | * Special characters are escaped when output. This solves the problems |
529 | of the #line lines with path names including backslashes. | |
530 | ||
6deb4447 | 531 | * New directives. |
4ecbf796 MA |
532 | `%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose', |
533 | `%debug', `%source_extension' and `%header_extension'. | |
f987e9d2 AD |
534 | |
535 | * @$ | |
536 | Automatic location tracking. | |
f87a2205 | 537 | \f |
9f4503d6 | 538 | Changes in version 1.28, 1999-07-06: |
d2e00347 JT |
539 | |
540 | * Should compile better now with K&R compilers. | |
541 | ||
542 | * Added NLS. | |
543 | ||
544 | * Fixed a problem with escaping the double quote character. | |
545 | ||
546 | * There is now a FAQ. | |
547 | \f | |
5c31c3c2 JT |
548 | Changes in version 1.27: |
549 | ||
550 | * The make rule which prevented bison.simple from being created on | |
551 | some systems has been fixed. | |
552 | \f | |
553 | Changes in version 1.26: | |
4be07551 JT |
554 | |
555 | * Bison now uses automake. | |
556 | ||
557 | * New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>. | |
558 | ||
559 | * Token numbers now start at 257 as previously documented, not 258. | |
560 | ||
561 | * Bison honors the TMPDIR environment variable. | |
562 | ||
563 | * A couple of buffer overruns have been fixed. | |
f51dbca1 JT |
564 | |
565 | * Problems when closing files should now be reported. | |
566 | ||
567 | * Generated parsers should now work even on operating systems which do | |
568 | not provide alloca(). | |
4be07551 | 569 | \f |
9f4503d6 | 570 | Changes in version 1.25, 1995-10-16: |
df8878c5 RS |
571 | |
572 | * Errors in the input grammar are not fatal; Bison keeps reading | |
573 | the grammar file, and reports all the errors found in it. | |
8c44d3ec | 574 | |
df8878c5 RS |
575 | * Tokens can now be specified as multiple-character strings: for |
576 | example, you could use "<=" for a token which looks like <=, instead | |
577 | of chosing a name like LESSEQ. | |
578 | ||
579 | * The %token_table declaration says to write a table of tokens (names | |
580 | and numbers) into the parser file. The yylex function can use this | |
581 | table to recognize multiple-character string tokens, or for other | |
582 | purposes. | |
583 | ||
584 | * The %no_lines declaration says not to generate any #line preprocessor | |
585 | directives in the parser file. | |
586 | ||
587 | * The %raw declaration says to use internal Bison token numbers, not | |
588 | Yacc-compatible token numbers, when token names are defined as macros. | |
589 | ||
590 | * The --no-parser option produces the parser tables without including | |
591 | the parser engine; a project can now use its own parser engine. | |
592 | The actions go into a separate file called NAME.act, in the form of | |
593 | a switch statement body. | |
594 | \f | |
6780ca7a DM |
595 | Changes in version 1.23: |
596 | ||
4d019228 DM |
597 | The user can define YYPARSE_PARAM as the name of an argument to be |
598 | passed into yyparse. The argument should have type void *. It should | |
599 | actually point to an object. Grammar actions can access the variable | |
600 | by casting it to the proper pointer type. | |
6780ca7a | 601 | |
6780ca7a | 602 | Line numbers in output file corrected. |
6780ca7a DM |
603 | \f |
604 | Changes in version 1.22: | |
605 | ||
606 | --help option added. | |
6780ca7a DM |
607 | \f |
608 | Changes in version 1.20: | |
609 | ||
610 | Output file does not redefine const for C++. | |
9f4503d6 AD |
611 | |
612 | Local Variables: | |
613 | mode: outline | |
614 | End: | |
76551463 AD |
615 | |
616 | ----- | |
617 | ||
1ce59070 | 618 | Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 |
dc546b0f | 619 | Free Software Foundation, Inc. |
76551463 | 620 | |
75eb3bc4 | 621 | This file is part of Bison, the GNU Compiler Compiler. |
76551463 | 622 | |
75eb3bc4 | 623 | Bison is free software; you can redistribute it and/or modify |
76551463 AD |
624 | it under the terms of the GNU General Public License as published by |
625 | the Free Software Foundation; either version 2, or (at your option) | |
626 | any later version. | |
627 | ||
75eb3bc4 | 628 | Bison is distributed in the hope that it will be useful, |
76551463 AD |
629 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
630 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
631 | GNU General Public License for more details. | |
632 | ||
633 | You should have received a copy of the GNU General Public License | |
634 | along with autoconf; see the file COPYING. If not, write to | |
0fb669f9 PE |
635 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
636 | Boston, MA 02110-1301, USA. |