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