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