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