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