]> git.saurik.com Git - bison.git/blob - ChangeLog
* data/yacc.c: Fix last apostrophe warning from xgettext.
[bison.git] / ChangeLog
1 2011-01-24 Joel E. Denny <joeldenny@joeldenny.org>
2
3 * data/yacc.c: Fix last apostrophe warning from xgettext.
4
5 2011-01-09 Paul Eggert <eggert@cs.ucla.edu>
6
7 Fix minor problems encountered by a fresh bootstrap.
8 * data/glr.c, data/yacc.c: Do not use apostrophes in '#' comments,
9 as they confuse xgettext, which tries to parse them as C character
10 constants in a preprocessor directive.
11 * data/yacc.c (yy_lac): Don't use printf %d format on *yyesp, as
12 that expression might not promote to int on some platforms.
13 * src/parse-gram.c, src/parse-gram.h: Regenerate.
14
15 2011-01-09 Joel E. Denny <joeldenny@joeldenny.org>
16
17 Improve error messages for `$' or `@' followed by `.' or `-'.
18 Previously, for this special case of an invalid reference, the
19 usual "symbol not found in production:" was printed. However,
20 because the symbol name was parsed as the empty string, that
21 message was followed immediately by a newline instead of a symbol
22 name. In reality, this is a syntax error, so the reference is
23 invalid regardless of the symbols actually appearing in the
24 production. Discussed at
25 <http://lists.gnu.org/archive/html/bison-patches/2011-01/msg00012.html>.
26 * src/scan-code.l (parse_ref): Report the above case as a syntax
27 error. Other than that, continue to handle this case like any
28 other invalid reference that Bison manages to parse because
29 "possibly meant" messages can still be helpful to the user.
30 * tests/named-refs.at ($ or @ followed by . or -): New test group.
31
32 2011-01-08 Joel E. Denny <joeldenny@joeldenny.org>
33
34 doc: don't use @acronym.
35 Lately, many GNU packages are dropping it. See
36 <http://lists.gnu.org/archive/html/bison-patches/2011-01/msg00003.html>.
37 * doc/bison.texinfo: Remove all uses.
38
39 2011-01-05 Alex Rozenman <rozenman@gmail.com>
40
41 Do not allow identifiers that start with a negative number.
42 Reported by Paul Hilfinger as a side effect of named references
43 support at
44 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00000.html>.
45 Suggested by Paul Eggert.
46 * src/scan-code.l ({letter}, {id}): Adjust lexical definitions.
47 * src/scan-gram.l ({letter}, {id}): Likewise.
48
49 2011-01-03 Joel E. Denny <joeldenny@joeldenny.org>
50
51 * ChangeLog (2011-01-02): improve description.
52
53 2011-01-03 Joel E. Denny <joeldenny@joeldenny.org>
54
55 maint: don't update copyright years in bootstrap.
56 * .x-update-copyright: Add entry for bootstrap.
57 * bootstrap: Remove 2011 from copyright years. The bootstrap
58 version we're currently using comes from an older version of
59 gnulib.
60 * bootstrap.conf (bootstrap_sync): Add comments explaining this
61 issue.
62
63 2011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
64
65 maint: run "make update-copyright".
66
67 2011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
68
69 maint: prepare to use year ranges in copyright notices.
70 * README (Copyright statements): New section explaining the range
71 notation. The GNU maintainers document requires this explanation:
72 <http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices>.
73 I copied our explanation from coreutils.
74 * build-aux/update-b4-copyright: Revert 2010-06-17 changes that
75 disabled Bison's automated use of ranges.
76 * cfg.mk (update-copyright-env): Likewise.
77
78 2011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
79
80 Correct my email address.
81 * ChangeLog: In all recent entries.
82 * THANKS (Joel E. Denny): Here.
83
84 2010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
85
86 doc: cleanup.
87 * NEWS (2.5): Try to sort entries according to how interesting
88 users might find them.
89
90 2010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
91
92 doc: cleanup.
93 * NEWS (2.5): Make some minor improvements to wording, and format
94 entries more consistently.
95 * doc/bison.texinfo (Language and Grammar): Point out that IELR
96 and canonical LR are experimental features.
97 (Decl Summary): In list of %define variables, make wording more
98 consistent. Improve discussion of using LALR for GLR.
99
100 2010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
101
102 parse.lac: document.
103 * NEWS (2.5): Add entry for LAC, and mention LAC in entry for
104 other corrections to verbose syntax error messages.
105 * doc/bison.texinfo (Decl Summary): Rewrite entries for
106 lr.default-reductions and lr.type to be clearer, to mention
107 %nonassoc's effect on canonical LR, and to mention LAC. Add entry
108 for parse.lac.
109 (Glossary): Add entry for LAC.
110
111 2010-12-11 Joel E. Denny <joeldenny@joeldenny.org>
112
113 parse.lac: implement exploratory stack reallocations.
114 * data/yacc.c: Rename %define variable parse.lac.es-capacity to
115 parse.lac.es-capacity-initial. Accept parse.lac.memory-trace
116 with values of "failures" (default) or "full".
117 (b4_declare_parser_state_variables): Add yyesa, yyes, and
118 yyes_capacity variables.
119 (YYSTACK_USE_ALLOCA): Ignore it if LAC requested.
120 (YYSTACK_ALLOC, YYSTACK_FREE, YYSTACK_ALLOC_MAXIMUM): Define if
121 LAC requested.
122 (YYCOPY_NEEDED): New cpp macro.
123 (YYCOPY): Define if LAC requested.
124 (yy_lac_stack_realloc): New function implementing stack
125 reallocations. Use YYMAXDEPTH for maximum stack size given that
126 the stack should never need to grow larger than the main state
127 stack needs to grow without LAC.
128 (YY_LAC_ESTABLISH): Update yy_lac invocation.
129 (yy_lac): Add arguments for exploratory stack memory data
130 recorded in the main parser. Invoke yy_lac_stack_realloc when
131 reallocation is necessary.
132 (yysyntax_error): Add the same new arguments and pass them to
133 yy_lac.
134 (yypstate_delete): Free yyes if necessary.
135 (yyesa, yyes, yyes_capacity): #define these to yypstate members
136 in the case of push parsing.
137 (yyparse, yypush_parse): Initialize yyes and yyes_capacity.
138 Update yysyntax_error invocations. At yyreturn, free yyes if
139 necessary.
140 * src/parse-gram.y: %define parse.lac full.
141 * tests/input.at (LAC: errors for %define): Extend for
142 parse.lac-memory-trace.
143 * tests/regression.at (LAC: Exploratory stack): Extend to check
144 that stack reallocs happen when expected.
145 (LAC: Memory exhaustion): Update to use YYMAXDEPTH and
146 parse.lac.es-capacity-initial.
147
148 2010-12-11 Joel E. Denny <joeldenny@joeldenny.org>
149
150 parse.lac: implement as %define variable.
151 LAC = lookahead correction. See discussion at
152 <http://lists.gnu.org/archive/html/bison-patches/2009-09/msg00034.html>.
153 However, one point there must be corrected: because of %nonassoc,
154 LAC is *not* always redundant for lr.type=canonical-lr.
155 * data/yacc.c: Accept values of "none" (default) or "full" for
156 parse.lac. Accept %define parse.lac.es-capacity to specify
157 capacity of LAC's temporary exploratory stack. It defaults to 20
158 and, for now, will not grow dynamically.
159 (b4_lac_flag, b4_lac_if): New m4 macros. Evaluate as true for
160 parse.lac!=none.
161 (YYBACKUP): Invoke YY_LAC_DISCARD.
162 (YY_LAC_ESTABLISH, YY_LAC_DISCARD): New cpp macros that invoke
163 yy_lac and track when it needs to be invoked
164 (yy_lac): New function that, given the current stack, determines
165 whether a token can eventually be shifted. Return status mimics
166 yyparse return status.
167 (yysyntax_error): Change yystate argument to yyssp so stack top
168 can be passed to yy_lac. If LAC is requested, build expected
169 token list by invoking yy_lac for every token instead of just
170 checking the current state for lookaheads. Return 2 if yy_lac
171 exhausts memory.
172 (yyparse, yypush_parse): Use local variable yy_lac_established and
173 cpp macros YY_LAC_ESTABLISH and YY_LAC_DISCARD to implement LAC.
174 Update yysyntax_error invocation. Add yyexhaustedlab code if LAC
175 is requested.
176 * tests/conflicts.at (%nonassoc and eof): Extend to check the
177 effect of each of -Dlr.type=canonical-lr and -Dparse.lac=full.
178 (%error-verbose and consistent errors): Likewise.
179 (LAC: %nonassoc requires splitting canonical LR states): New test
180 group demonstrating how LAC can fix canonical LR.
181 * tests/input.at (LAC: Errors for %define): New test group.
182 * tests/regression.at (LAC: Exploratory stack): New test group.
183 (LAC: Memory exhaustion): New test group.
184
185 2010-11-21 Joel E. Denny <joeldenny@joeldenny.org>
186
187 build: use gnulib's new bootstrap_sync option.
188 Now, whenever we update bison's copy of gnulib, bootstrap will
189 update itself the next time it's run.
190 * bootstrap: Copy from latest gnulib for bootstrap_sync support.
191 * bootstrap.conf (bootstrap_sync): Set to true.
192 * gnulib: Update to latest so bootstrap is in sync now.
193
194 2010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
195
196 yysyntax_error: adjust prior fixes for branch-2.5's lalr1.cc.
197 On master, there is no yychar in lalr1.cc, but there is on
198 branch-2.5, and the prior cherry-pick of "Fix handling of yychar
199 manipulation in user semantic actions" wasn't adjusted for that
200 difference.
201 * data/lalr1.cc (yy::parser::parse): Translate yychar before
202 every use of yytoken, and add comments explaining this approach.
203 * tests/conflicts.at (%error-verbose and consistent errors):
204 Extend to test yychar manipulation with lalr1.cc.
205
206 2010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
207
208 yysyntax_error: fix for consistent error with lookahead.
209 * NEWS (2.5): Document.
210 * data/yacc.c (yysyntax_error): In a verbose syntax error
211 message while in a consistent state with a default action (which
212 must be an error action given that yysyntax_error is being
213 invoked), continue to drop the expected token list, but don't
214 drop the unexpected token unless there actually is no lookahead.
215 Moreover, handle that internally instead of returning 1 to tell
216 the caller to do it. With that meaning of 1 gone, renumber
217 return codes more usefully.
218 (yyparse, yypush_parse): Update yysyntax_error usage. Most
219 importantly, set yytoken to YYEMPTY when there's no lookahead.
220 * data/glr.c (yyreportSyntaxError): As in yacc.c, don't drop the
221 unexpected token unless there actually is no lookahead.
222 * data/lalr1.cc (yy::parser::parse): If there's no lookahead,
223 set yytoken to yyempty_ before invoking yysyntax_error_.
224 (yy::parser::yysyntax_error_): Again, don't drop the unexpected
225 token unless there actually is no lookahead.
226 * data/lalr1.java (YYParser::parse): If there's no lookahead,
227 set yytoken to yyempty_ before invoking yysyntax_error.
228 (YYParser::yysyntax_error): Again, don't drop the unexpected
229 token unless there actually is no lookahead.
230 * tests/conflicts.at (%error-verbose and consistent
231 errors): Extend test group to further reveal how the previous
232 use of the simple "syntax error" message was too general. Test
233 yacc.c, glr.c, lalr1.cc, and lalr1.java. No longer an expected
234 failure.
235 * tests/java.at (AT_JAVA_COMPILE, AT_JAVA_PARSER_CHECK): Move
236 to...
237 * tests/local.at: ... here.
238 (_AT_BISON_OPTION_PUSHDEFS): Push AT_SKEL_JAVA_IF definition.
239 (AT_BISON_OPTION_POPDEFS): Pop it.
240 (AT_FULL_COMPILE): Extend to handle Java.
241
242 2010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
243
244 yysyntax_error: more preparation for readability of next patch.
245 There are no behavioral changes here.
246 * data/glr.c (yyreportSyntaxError): Reorganize.
247 * data/lalr1.cc (yy::parser::yysyntax_error_): Reorganize.
248 * tests/conflicts.at (%error-verbose and consistent errors):
249 Reorganize.
250
251 2010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
252
253 yysyntax_error: prepare for readability of next patches.
254 These are purely whitespace changes that result in ugly code
255 but that make the next couple of patches much easier to read.
256 * data/glr.c (yyreportSyntaxError): Reindent.
257 * data/lalr1.cc (yy::parser::yysyntax_error_): Reindent.
258 * data/lalr1.java (YYParser::yysyntax_error): Reindent.
259 * data/yacc.c (yysyntax_error): Reindent.
260
261 2010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
262
263 yysyntax_error: improve invocation readability.
264 * data/yacc.c (yyparse, yypush_parse): For yysyntax_error
265 invocation, get rid of the while loop, which is misleading
266 because there are really at most two iterations.
267
268 2010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
269
270 * ChangeLog: Correct some errors in previous entries.
271
272 2010-10-17 Joel E. Denny <joeldenny@joeldenny.org>
273
274 maint: re-anchor all .gitignore entries.
275 * bootstrap: Copy from gnulib's latest for the fix to
276 automatically anchor entries it constructs.
277 * gnulib: Update to latest just so it has the same bootstrap.
278 * .gitignore, build-aux/.gitignore, doc/.gitignore:
279 * lib/.gitignore, m4/.gitignore, po/.gitignore:
280 * runtime-po/.gitignore: Re-anchor all entries.
281
282 2010-10-08 Paul Eggert <eggert@cs.ucla.edu>
283
284 Fix portability problem on OpenBSD 4.7.
285
286 Jim Meyering reported this in
287 <http://lists.gnu.org/archive/html/bug-bison/2010-10/msg00007.html>.
288 * data/yacc.c: Use EXIT_SUCCESS as a witness for stdlib.h,
289 not _STDLIB_H. EXIT_SUCCESS has been defined by the standard
290 for quite some time.
291 * src/parse-gram.c, src/parse-gram.h: Regenerate.
292 * tests/regression.at: Tamper with the renamed witness.
293
294 Adjust to recent changes to gnulib bootstrap.
295
296 * .cvsignore, build-aux/.cvsignore, doc/.cvsignore, etc/.cvsignore:
297 * examples/calc++/.cvsignore, lib/.cvsignore, m4/.cvsignore:
298 * po/.cvsignore, runtime-po/.cvsignore, src/.cvsignore:
299 * tests/.cvsignore: Remove; I don't use CVS to maintain Bison
300 anymore and don't know of anybody else who does. If someone needs
301 these files, they can resurrect them.
302 * .gitignore, build-aux/.gitignore, doc/.gitignore, lib/.gitignore:
303 * m4/.gitignore, po/.gitignore, runtime-po/.gitignore:
304 Omit leading '/', since bootstrap omits it.
305 Adjust file names to match current contents better.
306 * bootstrap: Sync from gnulib: this contains the new gnulib_mk_hook
307 installed just for us.
308 * bootstrap.conf (excluded_files): Don't exclude codeset.m4,
309 glibc21.m4, inttypes_h.m4, size_max.m4, xsize.m4, as they are now
310 needed somehow. Don't have time to look into why.
311 (gnulib_modules): Change malloc to malloc-gnu. Do we really assume
312 the GNU malloc behavior, where malloc (0) != NULL unless we're
313 out of storage? If not, we can omit malloc-gnu; but for now I left
314 it in to be safe.
315 (vc_ignore): Remove.
316 * README-hacking: Renamed from HACKING, since gnulib bootstrap now
317 uses that convention.
318
319 2010-08-05 Joel E. Denny <joeldenny@joeldenny.org>
320
321 Version 2.4.3.
322 * NEWS (2.4.3): Set date.
323
324 2010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
325
326 maint: add gettext version to release announcements.
327 Suggested by Paul Hilfinger at
328 <http://lists.gnu.org/archive/html/bison-patches/2010-07/msg00019.html>
329 <http://lists.gnu.org/archive/html/bison-patches/2010-08/msg00002.html>.
330 * cfg.mk (bootstrap-tools): Add gettext.
331
332 2010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
333
334 doc: fix -W and %expect documentation some.
335 * NEWS (2.4.3): Mention that there are documentation fixes.
336 * doc/bison.texinfo (Expect Decl): Make it clear that %expect
337 turns conflicts into errors not warnings.
338 (Shift/Reduce): Likewise.
339 (Bison Options): Don't mention -Wsyntax. It doesn't exist.
340
341 2010-08-01 Joel E. Denny <joeldenny@joeldenny.org>
342
343 -Werror: fix for rules useless in parser after conflicts.
344 * NEWS (2.4.3): Document fix.
345 * src/complain.c (error_message): Extend to handle incomplete
346 error messages so warn and warn_at can be used in more cases.
347 * src/gram.c (grammar_rules_useless_report): Use warn_at so that
348 -Werror is always obeyed.
349 * src/reduce.c (reduce_print): Use warn so that the "warnings
350 being treated as errors" message is printed consistently before
351 the first warning message. This makes testing easier.
352 * tests/local.at (AT_BISON_WERROR_MSG): New macro.
353 (AT_BISON_CHECK_NO_XML): Extend to check -Werror and
354 --warnings=error when warnings appear in bison's stderr.
355
356 2010-07-29 Joel E. Denny <joeldenny@joeldenny.org>
357
358 maint: enable gnits only at stable releases.
359 * configure.ac (AM_INIT_AUTOMAKE): Underscore or dash in a
360 version string should disable gnits. Explain in comments.
361
362 2010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
363
364 i18n: update.
365 * po/POTFILES.in: Add src/graphviz.c.
366
367 2010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
368
369 i18n: fix for gnulib.
370 * po/POTFILES.in: Add remaining gnulib files that have
371 translatable strings.
372
373 2010-07-25 Joel E. Denny <joeldenny@joeldenny.org>
374
375 maint: use announce-gen's new --mail-headers.
376 * HACKING (Announce): Update instructions.
377 * cfg.mk (announcement_Cc_): Define.
378 * configure.ac (AM_GNU_GETTEXT_VERSION): Update to 0.18 as
379 required by latest gnulib.
380 * gnulib: Update to latest.
381
382 2010-07-24 Joel E. Denny <joeldenny@joeldenny.org>
383
384 tests: handle Valgrind that complains about >&-.
385 * tests/output.at (AT_CHECK_OUTPUT): Extend to accept pre-tests.
386 (Output files: -dv >&-): Skip test group if running
387 maintainer-check-valgrind.
388
389 2010-06-17 Paul Eggert <eggert@cs.ucla.edu>
390
391 Update from GFDL GFDL 1.2 to 1.3.
392 * doc/bison.texinfo: Update GFDL version number.
393 * doc/fdl.texi: Update to version 1.3, taken from:
394 http://www.gnu.org/licenses/fdl.texi
395
396 2010-06-17 Paul Eggert <eggert@cs.ucla.edu>
397
398 Do not use date ranges in copyright notices.
399 See http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices
400
401 * HACKING, Makefile.am, NEWS, PACKAGING, README, README-alpha:
402 * TODO, bootstrap, bootstrap.conf:
403 * build-aux/update-b4-copyright, cfg.mk, configure.ac:
404 * data/README, data/bison.m4, data/c++-skel.m4, data/c++.m4:
405 * data/c-skel.m4, data/c.m4, data/glr.c, data/glr.cc:
406 * data/java-skel.m4, data/java.m4, data/lalr1.cc:
407 * data/lalr1.java, data/location.cc:
408 * data/xslt/bison.xsl:
409 * data/xslt/xml2dot.xsl, data/xslt/xml2text.xsl:
410 * data/xslt/xml2xhtml.xsl, data/yacc.c, djgpp/Makefile.maint:
411 * djgpp/README.in, djgpp/config.bat, djgpp/config.sed:
412 * djgpp/config.site, djgpp/config_h.sed, djgpp/djunpack.bat:
413 * djgpp/subpipe.c, djgpp/subpipe.h:
414 * djgpp/testsuite.sed, doc/bison.texinfo:
415 * doc/refcard.tex, etc/README, etc/bench.pl.in:
416 * examples/calc++/Makefile.am, examples/extexi:
417 * lib/abitset.c, lib/abitset.h:
418 * lib/bbitset.h, lib/bitset.c, lib/bitset.h:
419 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
420 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
421 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
422 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
423 * lib/libiberty.h, lib/main.c, lib/timevar.c:
424 * lib/timevar.def, lib/timevar.h, lib/vbitset.c:
425 * lib/vbitset.h, lib/yyerror.c, m4/bison-i18n.m4:
426 * m4/c-working.m4, m4/cxx.m4, m4/subpipe.m4, m4/timevar.m4:
427 * src/AnnotationList.c, src/AnnotationList.h:
428 * src/InadequacyList.c, src/InadequacyList.h, src/LR0.c:
429 * src/LR0.h, src/Sbitset.c, src/Sbitset.h, src/assoc.c:
430 * src/assoc.h, src/closure.c, src/closure.h, src/complain.c:
431 * src/complain.h, src/conflicts.c, src/conflicts.h:
432 * src/derives.c, src/derives.h, src/files.c, src/files.h:
433 * src/flex-scanner.h, src/getargs.c, src/getargs.h:
434 * src/gram.c, src/gram.h, src/graphviz.c, src/ielr.c:
435 * src/ielr.h, src/lalr.c, src/lalr.h:
436 * src/location.c, src/location.h, src/main.c:
437 * src/muscle-tab.c, src/muscle-tab.h, src/named-ref.c:
438 * src/named-ref.h, src/nullable.c, src/nullable.h:
439 * src/output.c, src/output.h, src/parse-gram.y:
440 * src/print-xml.c, src/print-xml.h, src/print.c, src/print.h:
441 * src/print_graph.c, src/print_graph.h, src/reader.c:
442 * src/reader.h, src/reduce.c, src/reduce.h, src/relation.c:
443 * src/relation.h, src/scan-code.h, src/scan-code.l:
444 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
445 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
446 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
447 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
448 * tests/actions.at, tests/atlocal.in, tests/c++.at:
449 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
450 * tests/existing.at, tests/glr-regression.at:
451 * tests/headers.at, tests/input.at, tests/java.at:
452 * tests/local.at, tests/named-refs.at:
453 * tests/output.at, tests/push.at, tests/reduce.at:
454 * tests/regression.at, tests/sets.at, tests/skeletons.at:
455 * tests/synclines.at, tests/testsuite.at, tests/torture.at:
456 * data/Makefile.am, data/location.cc, doc/Makefile.am, src/Makefile.am:
457 * tests/Makefile.am, lib/Makefile.am, examples/Makefile.am:
458 * etc/Makefile.am:
459 Don't use date ranges in copyright notices.
460
461 2010-05-11 Akim Demaille <demaille@gostai.com>
462
463 lalrl1.cc: give a chance to user defined YYLLOC_DEFAULT.
464 * data/lalr1.cc (YYLLOC_DEFAULT): Move its definition from the
465 header file to the implementation file, after the user %code
466 sections.
467 * NEWS (2.5): Document this.
468
469 2010-05-07 Akim Demaille <demaille@gostai.com>
470
471 c++: use YYRHSLOC.
472 * data/lalr1.cc (YYRHSLOC): New.
473 (YYLLOC_DEFAULT): Use it.
474 * data/glr.cc: If location_type was user defined, do not include
475 location.hh, and do not produce location.hh and position.hh.
476 * tests/calc.at (YYLLOC_DEFAULT): Use YYRHSLOC.
477 Check that glr.cc supports user defined location_type.
478 * NEWS: Document this.
479
480 2010-05-10 Akim Demaille <demaille@gostai.com>
481
482 doc: fix lalr1.cc documentation.
483 * doc/bison.texinfo (C++ Scanner Interface): Fix yylex signature.
484 (C++ Bison Interface): Fix lalr1.cc skeleton name.
485 (C++ Parser Interface): Fix semantic_type and location_type names.
486 Document yy::parser::token.
487 Reported by Jerry Quinn.
488
489 2010-05-04 Akim Demaille <demaille@gostai.com>
490
491 lalr1.cc: don't generate location.hh when location_type is defined
492 * data/bison.m4 (b4_percent_define_use): New.
493 (b4_percent_define_get): Use it.
494 Accept a default value.
495 * data/c++.m4: Do not provide a default value for the %define
496 variable location_type, rather, use b4_percent_define_get with a
497 default argument where its value is needed.
498 * data/lalr1.cc: Do not load location.cc (which outputs both
499 location.hh and position.hh) if the user defined location_type.
500 Do not include location.hh either.
501 * data/glr.cc: Likewise.
502
503 2010-05-04 Akim Demaille <demaille@gostai.com>
504
505 lalr1.cc: location_type: make sure we don't depend on loc.(begin|end).
506 * tests/calc.at (Span): Instead of begin/end, as in the built-in
507 location class, use first and last.
508 Define YYLLOC_DEFAULT to adjust to these changes.
509 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Adjust to the
510 location_type changes.
511
512 2010-05-04 Akim Demaille <demaille@gostai.com>
513
514 tests: enhance AT_SYNCLINES_COMPILE.
515 * tests/synclines.at (AT_TEST_SYNCLINE): Move GCC 4.5 protection
516 into...
517 (AT_SYNCLINES_COMPILE): here.
518 Add more distcc patterns.
519
520 2010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
521
522 tests: fix maintainer-xml-check.
523 * data/xslt/xml2dot.xsl (xsl:template match="bison-xml-report"):
524 Update output to include comments now produced by --graph.
525 (xsl:template match="automaton"): As for --graph, name the
526 digraph after the grammar file.
527 * src/print-xml.c (escape_bufs): Enlarge array.
528 (print_xml): Add bug-report and url attributes to
529 bison-xml-report element.
530
531 2010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
532
533 In DOT output, convert from "/*" comments to "//" comments.
534 This handles the possibility that a "*/" might appear in
535 variable portions of those comments at some point in the future.
536 * src/graphviz.c (start_graph): Implement.
537
538 2010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
539
540 Document that undefined %prec identifier warnings will remain.
541 * NEWS (2.4.3): Here.
542 (2.4.2): Here.
543
544 2010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
545
546 Revert 2009-12-30 change for undefined %prec token complaints.
547 That is, keep them as warnings because that should be sufficient
548 to satisfy POSIX without creating backward compatibility issues.
549 Suggested by Richard Stallman at
550 <http://lists.gnu.org/archive/html/bison-patches/2010-03/msg00033.html>.
551 * NEWS (2.5): Remove mention of complaint.
552 * src/reader.c (grammar_rule_check): Convert complaint back to
553 warning.
554 * tests/input.at (%prec's token must be defined): Update.
555
556 2010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
557
558 build: don't require src/bison during bootstrap.
559 Suggested by Eric Blake at
560 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00003.html>.
561 * bootstrap.conf (bootstrap_epilogue): New function to make sure
562 src/parse-gram.[ch] are stamped later than src/parse-gram.y.
563
564 2010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
565
566 i18n: fix untranslatable string.
567 Reported by Goran Uddeborg at
568 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00000.html>.
569 * src/muscle-tab.c (muscle_percent_define_insert): Here.
570
571 2010-04-13 Akim Demaille <demaille@gostai.com>
572
573 tests: calc: minor refactoring.
574 * tests/calc.at (_AT_DATA_CALC_Y): Simplify yylex.
575
576 2010-04-13 Akim Demaille <demaille@gostai.com>
577
578 tests: calc: simplify location management.
579 * tests/local.at (AT_LOC_PUSHDEF, AT_LOC_POPDEF): New.
580 (_AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS): Use them to
581 define the appropriate AT_LOC accessors.
582 * tests/calc.at: Use AT_LOC accessors.
583
584 2010-04-13 Akim Demaille <demaille@gostai.com>
585
586 test location_type.
587 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS):
588 Define AT_LOCATION_TYPE_IF.
589 (_AT_BISON_OPTION_POPDEFS): Undefine AT_LOCATION_TYPE_IF.
590 * tests/calc.at (_AT_DATA_CALC_Y): When %define location_type is
591 used, provide a user location type and use it.
592 (Simple LALR1 C++ Calculator): Add a test case for location_type.
593
594 2010-04-13 Akim Demaille <demaille@gostai.com>
595
596 tests: check fclose's return value.
597 * tests/calc.at (_AT_DATA_CALC_Y): Check fclose's return status.
598
599 2010-04-13 Akim Demaille <demaille@gostai.com>
600
601 tests: don't depend on the actual location type.
602 * tests/calc.at: Use yy::parser::location_type rather than
603 yy::location, since the former is always right, and might point to
604 another type than the latter.
605
606 2010-04-13 Akim Demaille <demaille@gostai.com>
607
608 formatting changes.
609 * tests/calc.at: Formatting changes.
610
611 2010-04-13 Akim Demaille <demaille@gostai.com>
612
613 lalr1.cc: remove useless forward declaration.
614 * data/lalr1.cc: Include location.hh before stack.hh.
615 Remove the useless forward declarations of position and location.
616 Reported by Chris Morley.
617 * data/glr.cc: Likewise.
618
619 2010-04-11 Joel E. Denny <joeldenny@joeldenny.org>
620
621 * NEWS (2.4.3): Mention fix for Sun Studio C++.
622
623 2010-04-10 Joel E. Denny <joeldenny@joeldenny.org>
624
625 tests: fix for newer Sun Studio C++.
626 Reported by Dagobert Michelsen at
627 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00023.html>.
628 * THANKS (Dagobert Michelsen): Add.
629 * configure.ac (AC_PREREQ): Set to 2.64 so we get the latest
630 Autoconf macro for handling the restrict keyword.
631 * gnulib: Update to latest, which no longer overrides that macro
632 from Autoconf.
633
634 2010-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
635
636 portability: fix pointer arithmetic to conform to C standard.
637 Reported by Tys Lefering at
638 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00035.html>.
639 This fix is already implemented in glr.c and does not apply to
640 lalr1.java.
641 * data/lalr1.cc (yy::parser::parse): Increase size of
642 yyerror_range and adjust subscripting so you don't have to
643 subtract one from the beginning of the array.
644 * data/yacc.c (b4_declare_parser_state_variables,
645 yyparse, yypush_parse): Likewise.
646
647 2010-04-05 Akim Demaille <demaille@gostai.com>
648
649 remove useless include.
650 * src/graphviz.h: Don't include stdbool.h.
651
652 2010-04-05 Akim Demaille <demaille@gostai.com>
653
654 graph: sign the output file.
655 * src/graphviz.c (start_graph): Issue comments about Bison.
656 Suggested by Tys Lefering.
657
658 2010-03-31 Joel E. Denny <jdenny@ces.clemson.edu>
659
660 portability: fix test suite for GCC 4.5's new #error message.
661 Reported by Tys Lefering at
662 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00030.html>.
663 * NEWS (2.4.3): Mention.
664 * tests/synclines.at (AT_TEST_SYNCLINE): Implement.
665
666 2010-03-30 Akim Demaille <demaille@gostai.com>
667
668 fix comments.
669 * src/graphviz.h: Add missing license notice.
670 Document.
671
672 2010-03-25 Akim Demaille <demaille@gostai.com>
673
674 tests: fix 250: parse.error=verbose overflow.
675 * tests/regression.at (parse.error=verbose overflow): Avoid the
676 double inclusion of stdlib.h as it triggers hard errors.
677
678 2010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
679
680 portability: fix for BSD make.
681 Reported by Johan van Selst at
682 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00016.html>.
683 * tests/Makefile.am ($(TESTSUITE)): Qualify package.m4 in
684 this dependency list as in package.m4's target rule.
685
686 2010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
687
688 portability: fix spawning on at least FreeBSD 8 and FreeBSD 9.
689 Reported by Johan van Selst at
690 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00014.html>.
691 * NEWS (2.4.3): New.
692 * THANKS (Johan van Selst): Add.
693 * gnulib: Update to latest.
694
695 2010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
696
697 maint: update for changes to gnulib's announce-gen.
698 * HACKING (Announce): RELEASE_TYPE=major must now be written
699 RELEASE_TYPE=stable.
700
701 2010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
702
703 Version 2.4.2.
704 * NEWS (2.4.2): Set version and date. For the recent test suite
705 portability fixes, don't be so optimistic about their success
706 given the lack of feedback on the affected platforms.
707
708 2010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
709
710 tests: fix maintainer-xml-check for recent changes.
711 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
712 AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
713 output file whose name conflicts with a previous output file
714 is now never generated.
715
716 2010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
717
718 portability: fix several issues with M4 subprocess.
719
720 M4's output pipe was not being drained upon fatal errors during
721 scan_skel. As a result, broken-pipe messages from M4 were seen
722 on at least AIX, HP-UX, Solaris, and RHEL4, and this caused a
723 failure in the test suite. The problem was that, on platforms
724 where the default disposition for SIGPIPE is ignore instead of
725 terminate, M4 sometimes saw fwrite fail with errno=EPIPE and
726 then reported it. However, there's some sort of race condition,
727 because the new test group occasionally succeeded.
728 Reported by Albert Chin at
729 <http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00004.html>.
730
731 There were also problems with the test suite livelocking on
732 Tru64 5.1b. Reported by Didier Godefroy at
733 <http://lists.gnu.org/archive/html/bug-bison/2009-05/msg00005.html>.
734 Switching to create_pipe_bidi suggested by Akim Demaille.
735
736 To attempt to solve both of these problems, switch to gnulib's
737 create_pipe_bidi and register M4 process as a slave. Along the
738 way, clean up file name conflict handling, which was affected by
739 the broken-pipe problem before the switch.
740 * NEWS (2.4.2): Document.
741 * THANKS (Didier Godefroy): Add.
742 * bootstrap.conf (gnulib_modules): Add pipe.
743 * gnulib: Update to latest to make sure we have all the latest
744 fixes.
745 * lib/Makefile.am (libbison_a_SOURCES): Remove subpipe.h and
746 subpipe.c.
747 * po/POTFILES.in (lib/subpipe.c): Remove.
748 * src/files.c (compute_output_file_names): Update invocations
749 of output_file_name_check.
750 (output_file_name_check): In the case that the grammar file
751 would be overwritten, use complain instead of fatal, but replace
752 the output file name with /dev/null. Use the /dev/null solution
753 for the case of two conflicting output files as well because it
754 seems safer in case Bison one day tries to open both files at
755 the same time.
756 * src/files.h (output_file_name_check): Update prototype.
757 * src/output.c (output_skeleton): Use create_pipe_bidi and
758 wait_subprocess. Assert that scan_skel completely drains the
759 pipe.
760 * src/scan-skel.l (at_directive_perform): Update
761 output_file_name_check invocation.
762 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Check that the
763 grammar file actually isn't overwritten.
764 (Conflicting output files: -o foo.y): Update expected output.
765 * tests/skeletons.at (Fatal errors but M4 continues producing
766 output): New test group.
767
768 2010-02-04 Joel E. Denny <jdenny@ces.clemson.edu>
769
770 Update POTFILES.
771 * HACKING (Release Procedure): Add reminder about keeping
772 POTFILES files up-to-date.
773 * po/POTFILES.in (src/muscle-tab.c, src/scan-skel.l): Add.
774
775 2010-02-01 Joel E. Denny <jdenny@clemson.edu>
776
777 Code cleanup.
778 * tests/atlocal.in (abs_top_srcdir): Remove shell variable,
779 which is already defined in atconfig.
780
781 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
782
783 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
784
785 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
786
787 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
788 * HACKING (Release Procedure): Update notes on copyright years.
789 * Makefile.am (update-package-copyright-year): New target rule.
790 * build-aux/update-package-copyright-year: New file.
791 * cfg.mk (update-copyright): Add update-package-copyright-year
792 as a dependency.
793
794 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
795
796 * bootstrap: Import improvements from latest gnulib.
797
798 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
799
800 build: require Automake 1.11.1 to avoid a security flaw.
801 * HACKING (Release Procedure): Don't document Automake security
802 flaw here.
803 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
804 why here.
805
806 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
807
808 gnulib: update to latest.
809
810 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
811
812 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
813
814 2010-01-15 Joel E. Denny <jdenny@clemson.edu>
815
816 Thank the developer of the initial push parser implementation.
817 This unfortunate oversight is several years old.
818 * THANKS (Odd Arild Olsen): Add.
819
820 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
821
822 Fix some comments concerning LR(0) versus LALR(1).
823
824 Stop equating LR(0) with nondeterminism and LALR(1) with
825 determinism. That is, if all states are consistent, then LR(0)
826 tables are deterministic. On the other hand, LALR(1) tables
827 might be nondeterministic before conflict resolution, and GLR
828 permits LALR(1) tables to remain nondeterministic.
829 * src/LR0.c, src/LR0.h: Here.
830 * src/lalr.c, src/lalr.h: Here.
831 * src/main.c (main): Here.
832 * src/state.c, src/state.h: Here.
833
834 * src/ielr.h (ielr): In preconditions, expect LR(0) not LALR(1)
835 parser tables.
836
837 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
838
839 maint: run "make update-copyright"
840
841 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
842
843 POSIX: complain if %prec's token was not defined.
844 * NEWS (2.5): Document.
845 * src/reader.c (grammar_rule_check): Convert warning to
846 complaint.
847 * tests/input.at (%prec's token must be defined): Update.
848
849 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
850
851 POSIX: warn if %prec's token was not defined.
852 Reported by Florian Krohm at
853 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
854 * NEWS (2.4.2): Document.
855 * src/reader.c (grammar_rule_check): Implement.
856 (grammar_current_rule_prec_set): Add comments explaining that we
857 here assume a %prec identifier is a token, but we still manage
858 to support POSIX.
859 * tests/input.at (%prec's token must be defined): New test
860 group.
861
862 2009-12-31 Joel E. Denny <jdenny@clemson.edu>
863
864 * HACKING (Release Procedure): Recommend a secure automake.
865
866 2008-12-11 Akim Demaille <demaille@gostai.com>
867
868 Propagate i18n changes into glr.c.
869 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
870 building the error message format dynamically.
871 * data/lalr1.java: Formatting changes.
872
873 2009-12-22 Joel E. Denny <jdenny@clemson.edu>
874
875 Port small part of master's 11707b2b so future ports are easier.
876 * data/lalr1.java (YYParser::yysyntax_error): Untabify.
877
878 2008-12-11 Akim Demaille <demaille@gostai.com>
879
880 Simplify the i18n of the error messages.
881 * data/lalr1.cc: Comment changes.
882
883 2008-11-11 Akim Demaille <demaille@gostai.com>
884
885 Prefer M4 to CPP.
886 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
887 YYERROR_VERBOSE.
888
889 2008-11-11 Akim Demaille <demaille@gostai.com>
890
891 Support i18n of the parse error messages.
892 * TODO (lalr1.cc/I18n): Remove.
893 * data/lalr1.cc (yysyntax_error_): Support the translation of the
894 error messages, as done in yacc.c.
895 Stay within the yy* pseudo namespace.
896
897 2009-12-22 Joel E. Denny <jdenny@clemson.edu>
898
899 Port small part of master's 8901f32e so future ports are easier.
900 * data/lalr1.cc (yy::parser::yysyntax_error_): Always add second
901 argument, but name it in the function definition only when
902 verbose error messages are enabled and it'll thus be used.
903 (yy::parser::parse): Update use of yysyntax_error_.
904
905 2009-12-29 Joel E. Denny <jdenny@clemson.edu>
906
907 portability: `<' and `>' are not always defined on addresses.
908 Specifically, don't sort objects by their memory addresses when
909 they're not allocated in the same array or other object. Though
910 I haven't found a test case where that fails on my platform, C
911 says the behavior is undefined.
912 * src/AnnotationList.c (AnnotationList__insertInto): Remove
913 FIXME. Use new id field of InadequacyList nodes rather than
914 their memory addresses when sorting.
915 (AnnotationList__compute_from_inadequacies): Add
916 inadequacy_list_node_count argument to pass to
917 InadequacyList__new_conflict.
918 * src/AnnotationList.h
919 (AnnotationList__compute_from_inadequacies): Update prototype
920 and documentation for new argument.
921 * src/InadequacyList.c (InadequacyList__new_conflict): Add
922 node_count argument and use it to assign a unique ID.
923 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
924 (InadequacyList): Add id field.
925 (InadequacyList__new_conflict): Update prototype and
926 documentation for new argument.
927 * src/ielr.c (ielr_compute_annotation_lists): Update
928 AnnotationList__compute_from_inadequacies invocation.
929
930 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
931
932 Fix handling of yychar manipulation in user semantic actions.
933 The problem was that yacc.c didn't always update the yychar
934 translation afterwards. However, other skeletons appear to be
935 fine. glr.c appears to already translate yychar before every
936 use. lalr1.cc does not define yychar and does not document its
937 replacement, yyla, for users. It does provide yyclearin, but
938 that does not manipulate yyla and thus requires no translation
939 update. In lalr1.java, yychar is out of scope during semantic
940 actions.
941 * NEWS (2.5): Document.
942 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
943 yytoken here.
944 (yyparse, yypush_parse): Instead, translate before every use of
945 yytoken, and add comments explaining this approach.
946 * tests/actions.at (Destroying lookahead assigned by semantic
947 action): New test group checking that translation happens before
948 lookahead destructor calls at parser return. Previously,
949 incorrect destructors were called.
950 * tests/conflicts.at (%error-verbose and consistent
951 errors): New test group checking that translation happens at
952 syntax error detection before the associated verbose error
953 message and the associated lookahead destructor calls. While
954 the destructor call is fixed by this patch, the verbose error
955 message is currently incorrect due to another bug (see
956 comments in test group), so this is an expected failure for now.
957
958 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
959
960 YYFAIL: warn about uses and remove from lalr1.java.
961 * NEWS (2.5): Document.
962 * data/lalr1.java (YYParser::YYFAIL): Rename to YYERRLAB,
963 and make it private. Update all uses.
964 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
965
966 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
967
968 YYFAIL: deprecate.
969 * NEWS (2.4.2): Document deprecation and the phase-out plan.
970 * data/lalr1.java (YYParser::YYFAIL): Add comment about
971 deprecation.
972 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
973 YYFAIL from GCC cpp's -Wunused-macros.
974 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
975 documentation.
976 (LocalWords): Remove YYFAIL.
977
978 2009-12-17 Joel E. Denny <jdenny@clemson.edu>
979
980 Code cleanup.
981 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
982 function, which is no longer used.
983
984 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
985
986 Add gcc's -Wundef to test suite and fix another warning from it.
987 * NEWS (2.4.2): Update description of -Wundef fix.
988 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
989 (WARN_CFLAGS_TEST): New substitution.
990 * data/glr.c: Avoid warning about __STRICT_ANSI__.
991 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
992 WARN_CFLAGS.
993 (NO_WERROR_CFLAGS): Likewise.
994 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
995
996 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
997
998 * data/yacc.c: Reformat m4 a little.
999
1000 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
1001
1002 Document gcc -Wundef fix.
1003 * NEWS (2.4.2): Here.
1004 * THANKS (Jonathan Nieder): Add.
1005
1006 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
1007
1008 Simplify y.tab.c when location tracking is disabled.
1009 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
1010 tracking is not enabled. Instead, unconditionally define
1011 YY_LOCATION_PRINT as a no-op for backward compatibility.
1012
1013 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
1014
1015 Avoid warnings from gcc -Wundef y.tab.c.
1016 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
1017 defined before using them.
1018 * data/lalr1.cc: Likewise.
1019 * data/yacc.c: Likewise.
1020
1021 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
1022
1023 autoconf: update to latest for fix of M4 detection.
1024 Reported by Eric Blake.
1025 * submodules/autoconf: Update.
1026
1027 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
1028
1029 portability: use -DGNULIB_POSIXCHECK.
1030 Reported by Eric Blake. See discussions at
1031 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
1032 and
1033 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
1034 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
1035 * bootstrap.conf (gnulib_modules): Add all the printf modules
1036 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
1037 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
1038 (excluded_files): Remove m4/printf-posix.m4.
1039 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
1040 lib/libbison.a so gnulib libraries can be linked.
1041
1042 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
1043
1044 Enable assertion output and --disable-assert for configure.
1045 * bootstrap.conf (gnulib_modules): Add assert module.
1046 * src/system.h (aver): Define as assert, and summarize the
1047 discussion on this issue.
1048
1049 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
1050
1051 Expand GLR acronym in summary of Bison.
1052 Based on discussion with Akim Demaille starting at
1053 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
1054 * doc/bison.texinfo (Introduction): Here.
1055 * src/getargs.c (usage): Here.
1056
1057 2009-10-03 Alex Rozenman <rozenman@gmail.com>
1058
1059 Document named references.
1060 * doc/bison.texinfo (Actions): Add new example and xref to
1061 Using Named References node.
1062 (Using Named References): New node.
1063
1064 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
1065
1066 cleanup.
1067 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
1068 of char*.
1069 (Sbitset__isEmpty): Use Sbitset instead of char*.
1070 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
1071 instead of char. This helps to avoid casting errors.
1072 (Sbitset__or): Use Sbitset instead of char*.
1073
1074 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
1075
1076 portability: don't assume 8-bit bytes.
1077 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
1078 * src/Sbitset.h (Sbitset__nbytes): Here.
1079 (Sbitset__byteAddress): Here.
1080 (Sbitset__bit_mask): Here.
1081 (Sbitset__last_byte_mask): Here.
1082 (Sbitset__ones): Here.
1083 (SBITSET__FOR_EACH): Here.
1084
1085 2009-10-11 Joel E. Denny <jdenny@clemson.edu>
1086
1087 portability: use va_start and va_end in the same function.
1088 * src/complain.c (error_message): Move va_end from here...
1089 (ERROR_MESSAGE): ... to here.
1090
1091 2009-10-08 Joel E. Denny <jdenny@clemson.edu>
1092
1093 * data/bison.m4: Update comments for rename to muscle-tab.h.
1094
1095 2009-10-08 Joel E. Denny <jdenny@clemson.edu>
1096
1097 Rename muscle_tab.* to muscle-tab.* for consistency with master.
1098 * src/Makefile.am (bison_SOURCES): Update.
1099 * src/getargs.c, src/ielr.c, src/lalr.c, src/main.c,
1100 src/output.c, src/parse-gram.y, src/print.c, src/reader.c,
1101 src/tables.c: Update include.
1102 * src/muscle_tab.c, src/muscle_tab.h: Rename to...
1103 * src/muscle-tab.c, src/muscle-tab.h: ... these and update
1104 include.
1105
1106 2009-10-07 Joel E. Denny <jdenny@clemson.edu>
1107
1108 Minor code cleanup.
1109 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
1110 replace all uses with UNIQSTR_CONCAT.
1111 * src/uniqstr.c (uniqstr_vsprintf): New function.
1112 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
1113 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
1114 macros.
1115
1116 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
1117
1118 Minor code cleanup.
1119 * src/parse-gram.y: Clean up sorting of declarations.
1120 Use types to simplify %printer declarations where possible.
1121 Provide %printer for BRACKETED_ID and symbol.prec.
1122 * src/symtab.c: Whitespace change.
1123
1124 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
1125
1126 tests: skip tests of file names that platform does not support.
1127 Reported by Michael Raskin at
1128 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
1129 * THANKS (Michael Raskin): Add.
1130 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
1131 to fail at least for file names containing ":" or "\".
1132
1133 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
1134
1135 yysyntax_error: avoid duplicate lookahead collection.
1136 Except when memory reallocation is required, this change
1137 eliminates the need to invoke yysyntax_error twice and thus to
1138 repeat the collection of lookaheads. It also prepares for
1139 future extensions that will make those repetitions more
1140 expensive and that will require additional memory management in
1141 yysyntax_error. Finally, it fixes an obscure bug already
1142 exercised in the test suite.
1143 * data/yacc.c (yysyntax_error): Add arguments for message
1144 buffer variables stored in the parser. Instead of size, return
1145 status similar to yyparse status but indicating success of
1146 message creation. Other than the actual reallocation of the
1147 message buffer, import and clean up memory management code
1148 from...
1149 (yyparse, yypush_parse): ... here.
1150 * tests/regression.at (%error-verbose overflow): No longer an
1151 expected failure.
1152
1153 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
1154
1155 yysyntax_error: test memory management more.
1156 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
1157 * tests/regression.at (%error-verbose and YYSTACK_USE_ALLOCA):
1158 New test group.
1159 (%error-verbose overflow): New test group that reveals an
1160 obscure bug. Expected fail for now.
1161
1162 2008-12-11 Akim Demaille <demaille@gostai.com>
1163
1164 Pass the token type to yysyntax_error.
1165 * data/yacc.c (yysyntax_error): Take the transated token instead
1166 of the raw number.
1167 Adjust callers.
1168
1169 2008-12-11 Akim Demaille <demaille@gostai.com>
1170
1171 Simplify the i18n of the error messages.
1172 * data/yacc.c (yysyntax_error): Rewrite, using a switch instead
1173 of building dynamically the format string.
1174
1175 2009-10-03 Joel E. Denny <jdenny@clemson.edu>
1176
1177 Remove dead code.
1178 * src/symtab.c (symbol_pack): Here because every symbol's number
1179 is always defined by this time.
1180
1181 2009-10-03 Alex Rozenman <rozenman@gmail.com>
1182
1183 Add additional space after periods in NEWS.
1184 * NEWS (2.5): here.
1185
1186 2009-09-29 Joel E. Denny <jdenny@clemson.edu>
1187
1188 Use the correct conversion specifier for size_t.
1189 Reported by Jim Meyering.
1190 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
1191 because Sbitset__Index is size_t.
1192 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
1193
1194 2009-09-27 Joel E. Denny <jdenny@clemson.edu>
1195
1196 tests: don't abuse AT_BISON_CHECK.
1197 * tests/regression.at (parse-gram.y: LALR = IELR): Move
1198 additional shell commands outside of AT_BISON_CHECK.
1199
1200 2009-09-26 Joel E. Denny <jdenny@clemson.edu>
1201
1202 tests: check that parse-gram.y's IELR and LALR are identical.
1203 * tests/atlocal.in (abs_top_srcdir): New shell variable.
1204 * tests/regression.at (parse-gram.y: LALR = IELR): New test
1205 group.
1206
1207 2009-09-16 Akim Demaille <demaille@gostai.com>
1208
1209 doc: comment changes.
1210 * doc/bison.texinfo: Comment changes.
1211
1212 2009-09-16 Akim Demaille <demaille@gostai.com>
1213
1214 doc: spell checking.
1215 * doc/bison.texinfo: here.
1216
1217 2009-09-19 Alex Rozenman <rozenman@gmail.com>
1218
1219 Keep sub-messages aligned. Fix strings for translation.
1220 * src/location.h (location_print): Add return value.
1221 * src/location.c (location_print): Return number of printed
1222 characters.
1223 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
1224 new functions.
1225 * src/complain.cpp (indent_ptr): New static variable.
1226 (error_message, complain_at_indent, warn_at_indent): Implement
1227 the alignment mechanism.
1228 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
1229 for translations. Use new alignment mechanism.
1230 * tests/named-ref.at: Adjust test-cases.
1231 * NEWS (2.5): Add an announcement about named references.
1232
1233 2009-09-13 Joel E. Denny <jdenny@clemson.edu>
1234
1235 tests: clean up push.at test group titles.
1236 * tests/push.at: Remove "Push Parsing: " from test group titles
1237 because these are already under the banner "Push Parsing Tests".
1238
1239 2009-09-12 Alex Rozenman <rozenman@gmail.com>
1240
1241 Provide an additional sub-message for clarity.
1242 Add "symbol not found in production" error message when
1243 an "invalid reference" is detected in named references
1244 resolution.
1245 * src/scan-code.l: Update "invalid reference" case.
1246 * tests/named-ref.at: Adjust test-cases.
1247
1248 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
1249
1250 Clean up yacc.c a little.
1251 * data/yacc.c: Clean up M4 for readability, and make output
1252 whitespace more consistent. For the main parse function
1253 comment, instead of saying "yyparse or yypush_parse", say either
1254 "yyparse" or "yypush_parse" depending on which it actually is.
1255
1256 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
1257
1258 Complain about unused %define variables and %code qualifiers.
1259 * NEWS (2.5): Document.
1260 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
1261 * doc/bison.texinfo (Decl Summary): Document complaint, and
1262 improve %define documentation a little otherwise.
1263 * tests/input.at (Reject unused %code qualifiers): Update.
1264 (%define errors): Update.
1265 (%define, --define, --force-define): Update.
1266 (%define backward compatibility): Update.
1267 (Unused %define api.pure): Update.
1268 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
1269
1270 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
1271
1272 Use aver not assert.
1273 * src/output.c: Don't include assert.h.
1274 (output_skeleton): Use aver not assert.
1275 * src/system.h (aver): In documentation of why, add links to
1276 Paul Eggert's explanations in the mailing lists.
1277
1278 2009-09-05 Alex Rozenman <rozenman@gmail.com>
1279
1280 Use "Unresolved reference" error message when no symbols were found
1281 in a symbolic reference resolution. Remove .expr and -expr from
1282 the shown reference when the reference is unresolved.
1283 * src/scan-code.l: Change the error message, adjust location columns,
1284 rename variable "exact_mode" to "explicit_bracketing".
1285 * tests/named-ref.at: Adjust existing tests and add a new one.
1286
1287 2009-09-03 Akim Demaille <demaille@gostai.com>
1288
1289 * NEWS (2.4.2): Add "Internationalization" item.
1290
1291 2009-09-03 Akim Demaille <demaille@gostai.com>
1292
1293 bootstrap: fix/improve find_tool.
1294 * bootstrap (find_tool): Improve error messages.
1295 Fix typo about find_tool_names.
1296
1297 2009-08-29 Joel E. Denny <jdenny@clemson.edu>
1298
1299 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
1300 See
1301 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
1302 * src/scan-code.h (code_props_rule_action_init): Rename
1303 named_ref arg to name so it doesn't shadow named_ref type. This
1304 makes it consistent with the function definition in scan-code.l
1305 anyway.
1306
1307 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
1308
1309 %define: accept unquoted values.
1310 * NEWS (2.5): Group all %define changes together, and document
1311 this one. Remove quotes in IELR and canonical LR entry.
1312 * doc/bison.texinfo: Remove quotes in most examples throughout.
1313 (Decl Summary): Update %define documentation.
1314 (Table of Symbols): Likewise.
1315 * src/ielr.c (LrType): Update documentation.
1316 * src/parse-gram.y (content.opt): Add production for ID.
1317 * tests/calc.at: Remove quotes in most tests.
1318 * tests/existing.at: Likewise.
1319 * tests/input.at: Likewise.
1320 * tests/local.at: Likewise.
1321 * tests/push.at: Likewise.
1322 * tests/reduce.at: Likewise.
1323 * tests/torture.at: Likewise.
1324
1325 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
1326
1327 %define lr.type: make values lowercase IDs.
1328 That is, "LALR" => "lalr", "IELR" => "ielr", and
1329 "canonical LR" => "canonical-lr".
1330 * NEWS (2.5): Update documentation.
1331 * doc/bison.texinfo (Decl Summary): Likewise.
1332 * src/ielr.c (ielr): Use new values.
1333 * src/ielr.h (ielr): Update documentation.
1334 * src/reader.c (prepare_percent_define_front_end_variables): Use
1335 and validate new values.
1336 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
1337 grammars.
1338 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
1339
1340 2009-08-27 Eric Blake <ebb9@byu.net>
1341
1342 scan-gram: avoid portability trap with ctype usage.
1343 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
1344 Avoid compiler warning.
1345
1346 2009-08-27 Joel E. Denny <jdenny@clemson.edu>
1347
1348 tests: use perl for printing special sequences to files.
1349 And skip tests if perl is not available. This is better than
1350 playing tricks with shell portability. Suggested by Akim
1351 Demaille.
1352 * tests/input.at (Bad character literals): Use it here for
1353 omitting final newlines.
1354 (Bad escapes in literals): Use it here for special characters.
1355
1356 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
1357
1358 tests: show a use of %define lr.default-reductions "consistent"
1359 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
1360 prevents the omission of expected tokens for %error-verbose.
1361
1362 2009-08-26 Akim Demaille <demaille@gostai.com>
1363
1364 tests: portability fix.
1365 * tests/input.at (Bad escapes in literals): Don't expect "echo
1366 '\0'" to output \ then 0.
1367
1368 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
1369
1370 Actually handle the yytable zero value correctly this time.
1371 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Don't
1372 mention zero values in the YYTABLE comments.
1373 * data/glr.c (yytable_value_is_error): Don't check for zero
1374 value.
1375 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
1376 * data/yacc.c (yytable_value_is_error): Likewise.
1377 * data/lalr1.java (yy_table_value_is_error_): Likewise.
1378 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
1379 * src/tables.h: In header comments, explain why it's useless to
1380 check for a zero value in yytable.
1381
1382 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
1383
1384 More fixes related to last two patches.
1385 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
1386 defined.
1387 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Fix
1388 yytable comments: zero indicates syntax error not default
1389 action.
1390 * data/glr.c (yyis_pact_ninf): Rename to...
1391 (yypact_value_is_default): ... this.
1392 (yyisDefaultedState): Update for rename.
1393 (yyis_table_ninf): Rename to...
1394 (yytable_value_is_error): ... this, and check for value zero
1395 besides just YYTABLE_NINF.
1396 (yygetLRActions): Check for default value from yypact. It
1397 appears that this check is always performed before this function
1398 is invoked, and so adding the check here is probably redundant.
1399 However, the code may evolve after this subtlety is forgotten.
1400 Also, update for rename to yytable_value_is_error. Because that
1401 macro now checks for zero, a different but equivalent branch of
1402 the if-then-else here is evaluated.
1403 (yyreportSyntaxError): Update for rename to
1404 yytable_value_is_error. The zero condition was mishandled
1405 before.
1406 (yyrecoverSyntaxError): Update for renames. No behavioral
1407 changes.
1408 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
1409 New function.
1410 (yy_table_value_is_error_): New function.
1411 (parse): Use new functions where possible. No behavioral
1412 changes.
1413 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
1414 The zero condition was mishandled before.
1415 * data/yacc.c (yyis_pact_ninf): Rename to...
1416 (yypact_value_is_default): ... this.
1417 (yyis_table_ninf): Rename to...
1418 (yytable_value_is_error): ... this, and check for value zero
1419 besides just YYTABLE_NINF.
1420 (yysyntax_error): Update for rename to yytable_value_is_error.
1421 The zero condition was mishandled before.
1422 (yyparse): Update for renames. No behavioral changes.
1423 * src/tables.h: Improve comments about yypact, yytable, etc.
1424 more. Most importantly, say yytable value of zero means syntax
1425 error not default action.
1426
1427 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
1428
1429 Fix %error-verbose for conflicts resolved by %nonassoc.
1430 * NEWS (2.5): Document.
1431 * data/glr.c (yyreportSyntaxError): Fix this by checking
1432 yyis_table_ninf.
1433 * data/yacc.c (yysyntax_error): Likewise.
1434 * data/lalr1.cc (yysyntax_error_): Fix this by checking
1435 yytable_ninf_.
1436 * data/lalr1.java (yysyntax_error): Likewise.
1437 * tests/conflicts.at (%nonassoc and eof): Update expected output
1438 and remove FIXME.
1439
1440 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
1441
1442 Some code and documentation improvements.
1443 * data/c.m4 (b4_table_value_equals): New macro to capture
1444 some repeated code.
1445 * data/glr.c (yyis_pact_ninf): Use it here.
1446 (yyis_table_ninf): Likewise.
1447 (yyreportSyntaxError): Improve internal comments.
1448 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
1449 Use it everywhere possible.
1450 (yyis_table_ninf): Likewise.
1451 (yysyntax_error): Improve internal comments.
1452 * data/lalr1.cc (yysyntax_error_): Likewise.
1453 * data/lalr1.java (yysyntax_error): Likewise.
1454 * src/tables.h: Improve comments about yypact, yytable, etc.
1455
1456 2009-08-21 Joel E. Denny <jdenny@clemson.edu>
1457
1458 Use locale when quoting.
1459 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
1460 quote rather than implementing quoting here.
1461
1462 2009-08-20 Eric Blake <ebb9@byu.net>
1463
1464 Make previous patch more robust.
1465 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
1466 argmatch.h.
1467 (output_skeleton): Use it.
1468 Suggested by Akim Demaille.
1469
1470 Import latest m4/m4.m4.
1471 * submodules/autoconf: Update to autoconf 2.64.
1472 * configure.ac (M4_GNU_OPTION): New define.
1473 * src/output.c (output_skeleton): Use it to resolve FIXME.
1474 * NEWS: Mention this.
1475
1476 2009-08-19 Joel E. Denny <jdenny@clemson.edu>
1477
1478 Fix complaints about escape sequences.
1479 Discussed starting at
1480 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
1481 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
1482 For a \0 and similar escape sequences meaning the null
1483 character, report an invalid escape sequence instead of an
1484 invalid null character because the latter does not actually
1485 appear in the user's input.
1486 In all escape sequence complaints, don't escape the initial
1487 backslash, and don't quote when the sequence appears at the end
1488 of the complaint line unless there's whitespace that quotearg
1489 won't escape.
1490 Consistently say "invalid" not "unrecognized".
1491 Consistently prefer "empty character literal" over "extra
1492 characters in character literal" warning for invalid escape
1493 sequences; that is, consistently discard those sequences.
1494 * tests/input.at (Bad escapes in literals): New.
1495
1496 2009-08-19 Akim Demaille <demaille@gostai.com>
1497
1498 doc: fixes.
1499 * doc/bison.texinfo: Fix minor Texinfo errors.
1500
1501 2009-08-19 Akim Demaille <demaille@gostai.com>
1502
1503 doc: %initial-action to initialize yylloc.
1504 Reported by Bill Allombert.
1505 * doc/bison.texinfo: Set fill-column to 76.
1506 (Location Type): Document the use of %initial-action to initialize
1507 yylloc.
1508
1509 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
1510
1511 maint: update for gnulib's recent update-copyright changes
1512 * gnulib: Update.
1513 * .x-update-copyright (COPYING): Add as it's no longer implied
1514 when .x-update-copyright is present.
1515 * cfg.mk (update-copyright-local): Remove, now ignored.
1516 (update-copyright): Declare update-b4-copyright as a dependency.
1517
1518 2009-08-17 Akim Demaille <demaille@gostai.com>
1519
1520 build: require gettext 0.17.
1521
1522 Suggested by Bruno Haible.
1523 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
1524 * configure.ac: require gettext 0.17 to ensure compatibility with
1525 gnulib.
1526
1527 2009-08-17 Akim Demaille <demaille@gostai.com>
1528
1529 build: lower gettext requirements.
1530
1531 Bison was uselessly requiring the formatstring macros from
1532 gettext, which resulted in mo files not being installed on systems
1533 that perfectly supported Bison mo files. Lower the requirement.
1534 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
1535
1536 * configure.ac: Require need-ngettext instead of
1537 need-formatstring-macros.
1538 Reported by Martin Jabocs.
1539 Suggested by Bruno Haible.
1540 * INSTALL: Restructure.
1541 (Internationalization): New.
1542
1543 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
1544
1545 maint: fix use of copyright year intervals.
1546 * gnulib: Update.
1547 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
1548 as now recommended in gnulib/NEWS.
1549 * build-aux/update-b4-copyright: Fix.
1550 * cfg.mk (update-copyright-env): Configure update-copyright.
1551
1552 2009-08-13 Joel E. Denny <jdenny@clemson.edu>
1553
1554 Make it easier to write deterministic tests.
1555 Continues Akim's work from his 2009-06-10 commits.
1556 * src/reader.c (check_and_convert_grammar): Don't add any
1557 symbols after the first symbols_do invocation.
1558 * src/symtab.c (symbols_sorted): New static global.
1559 (user_token_number_redeclaration): Update comments.
1560 (symbol_from_uniqstr): If a new symbol is being created, assert
1561 that symbols_sorted hasn't been allocated yet.
1562 (symbols_free): Free symbols_sorted.
1563 (symbols_cmp, symbols_cmp_qsort): New functions.
1564 (symbols_do): Sort symbol_table into symbols_sorted on first
1565 invocation.
1566 * tests/input.at (Numbered tokens): Recombine tests now that the
1567 output should be deterministic across multiple numbers.
1568
1569 2009-08-12 Akim Demaille <demaille@gostai.com>
1570
1571 distcheck: fix.
1572
1573 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
1574
1575 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
1576
1577 * tests/Makefile.am (TESTSUITE_AT): Add named-refs.at.
1578
1579 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
1580
1581 Miscellaneous code readability improvements.
1582
1583 * src/reader.c (reader): Move %define front-end variable
1584 defaults and checking into...
1585 (prepare_percent_define_front_end_variables): ... this new
1586 function.
1587
1588 * src/scan-gram.l (INITIAL): For consistency with string
1589 literals, don't store open quote on character literal. It's
1590 discarded before returning anyway.
1591 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
1592 Make length test more readable, and make the character stored
1593 for an empty literal more obvious while consistent with the
1594 previous behavior.
1595
1596 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
1597 USER_NUMBER_HAS_STRING_ALIAS throughout.
1598 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
1599 that is repeated in symtab.h. Improve argument names to make it
1600 clear which side of the symbol-string alias pair is which.
1601 (symbol_check_alias_consistency): Improve local variable names
1602 for the same purpose.
1603 * src/symtab.h (struct symbol): Make comments about aliases
1604 clearer.
1605 (symbol_make_alias): Improve comments and argument name.
1606 * src/output.c (token_definitions_output): Update for rename to
1607 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
1608
1609 2009-08-08 Alex Rozenman <rozenman@gmail.com>
1610
1611 Convert "misleading reference" messages to warnings.
1612 * src/scan-code.l: New function 'show_sub_messages', more
1613 factoring.
1614 * tests/named-ref.at: Adjust tests.
1615
1616 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
1617
1618 maint: run "make update-copyright"
1619
1620 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
1621
1622 maint: make update-b4-copyright easier to use
1623 * build-aux/update-b4-copyright: In warnings, report line
1624 numbers rather than character positions.
1625 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
1626 that update-copyright runs it.
1627 * gnulib: Update.
1628
1629 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
1630
1631 maint: clean up update-b4-copyright code
1632 * build-aux/update-b4-copyright: Do not accept 2-digit
1633 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
1634 Don't accept a `[' in a b4_copyright argument.
1635 Format code more consistently.
1636 Don't assume b4*copyright never occurs.
1637
1638 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1639
1640 maint: automate b4_copyright updates.
1641 * Makefile.am (update-b4-copyright): New target rule.
1642 * build-aux/Makefile.am (EXTRA_DIST): Add update-b4-copyright.
1643 * build-aux/update-b4-copyright: New.
1644 * data/yacc.c: Remove stray characters around b4_copyright
1645 invocations.
1646
1647 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1648
1649 maint: automate annual package-wide copyright-year update.
1650 * .x-update-copyright: New.
1651 * Makefile.am (EXTRA_DIST): Remove maint.mk.
1652 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
1653 update-copyright. Remove gnumakefile, which is implied by
1654 maintainer-makefile.
1655 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
1656 * gnulib: Update.
1657 * maint.mk: Remove, now copied from gnulib.
1658 * examples/extexi: Add missing "(C)" in copyright statement so
1659 update-copyright can recognize it.
1660 * src/LR0.h: Likewise.
1661 * src/print.h: Likewise.
1662 * src/print_graph.h: Likewise.
1663 * src/gram.c: Add missing comma in copyright statement.
1664 * src/gram.h: Likewise.
1665
1666 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1667
1668 Fix "make distcheck".
1669 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
1670 of just calc.stamp.
1671
1672 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
1673
1674 Pacify "gcc -Wunused" for the input function from Flex.
1675 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
1676 and later.
1677 * src/scan-code.l: Add "%option noinput", which I cannot find in
1678 the Flex manual, but which Flex has supported since at least as
1679 far back as 2.5.4. However, if any of our developers still use
1680 Flex 2.5.4, they'll need to stop configuring with
1681 --enable-gcc-warnings because "%option noinput" didn't work
1682 correctly until Flex 2.5.6.
1683 * src/scan-gram.l: Likewise.
1684 * src/scan-skel.l: Likewise.
1685
1686 2009-07-31 Alex Rozenman <rozenman@gmail.com>
1687
1688 Fix --enable-gcc-warnings problems.
1689 * src/reader.c: Adjust variable names.
1690 * src/scan-code.l: Fix prototypes and adjust names.
1691 * src/named-ref.c: Remove redundant "if".
1692
1693 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1694
1695 Fix a --enable-gcc-warnings problem.
1696 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
1697 variable.
1698
1699 2009-07-24 Alex Rozenman <rozenman@gmail.com>
1700
1701 Fix some memory leaks.
1702 * src/named-ref.c: Add a pointer check (named_ref_free).
1703 * src/scan-code.l: New function (variant_table_free). Called in
1704 code_scanner_free.
1705 * src/symlist.c: Call to named_ref_free (symbol_list_free).
1706
1707 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1708
1709 Warn about character literals not of length one.
1710 * NEWS (2.5): Document.
1711 * src/scan-gram.l (INITIAL): Remove comment that we don't check
1712 the length.
1713 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
1714 * tests/input.at (Bad character literals): New test group.
1715
1716 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1717
1718 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
1719
1720 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
1721
1722 Some M4 cleanup in the testsuite.
1723 Suggested by Eric Blake at
1724 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
1725 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
1726 complicate the code by distinguishing between a missing value
1727 and an empty string value for an optional argument. This fix is
1728 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
1729 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
1730 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
1731 arguments are not needed because of the following changes.
1732 Fix stale comments.
1733 Bison developers should use GNU M4 and should not use
1734 POSIXLY_CORRECT when building the test suite, so do not
1735 complicate the code by avoiding $10 and above.
1736 Do not quote an empty string value for an optional argument, and
1737 do not distinguish between a missing value and an empty string
1738 value.
1739
1740 2009-07-21 Joel E. Denny <jdenny@ces.clemson.edu>
1741
1742 * m4/m4.m4: Make it a sym link to submodules/autoconf/m4/m4.m4.
1743
1744 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1745
1746 Revert unnecessary column realignment in --help output.
1747 Reported by Akim Demaille at
1748 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
1749 * src/getargs.c (usage): Here.
1750
1751 2009-07-04 Alex Rozenman <rozenman@gmail.com>
1752
1753 Alphabetical order in src/Makefile.am.
1754 * src/Makefile.am: Adjust.
1755
1756 2009-07-04 Alex Rozenman <rozenman@gmail.com>
1757
1758 Style changes and factoring.
1759 * src/named-ref.h: Add comments.
1760 * src/parse-gram.y: Readability and style changes.
1761 * src/reader.c: Factoring: assign_named_ref function.
1762 * src/scan-code.l: Factoring and style changes. Rename
1763 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
1764 Use "unsigned" type for variant index. Improve readablity.
1765 * src/scan-gram.l: Change error messages and add comments.
1766 * src/symlist.h: symbol_list_null: New function decl.
1767 * src/symlist.c: symbol_list_null: Implement here.
1768 * tests/named-refs.at: Adjust for new error messages.
1769
1770 2009-06-29 Eric Blake <ebb9@byu.net>
1771
1772 scan-code: avoid compiler warnings
1773 * src/scan-code.l (parse_named_ref): Use correct specifiers.
1774
1775 2009-06-29 Akim Demaille <demaille@gostai.com>
1776
1777 build: avoid concurrent extraction of calc++.
1778 * examples/calc++/Makefile.am (calc.stamp): New.
1779 Depend on it to create the sources of calc++ so that concurrent
1780 builds don't launch several "extexi" in parallel.
1781 Not only this is inefficient, this also builds incorrect sources
1782 with several extractions mixed together.
1783
1784 2009-06-27 Alex Rozenman <rozenman@gmail.com>
1785
1786 Implement support for named symbol references.
1787 * src/parse-gram.y: Add new syntax (named_ref.opt).
1788 * src/reader.c: Store named refs in symbol lists.
1789 * src/reader.h: New argument for symbol_append and
1790 action_append functions.
1791 * src/scan-code.h: Add new field (named_ref) into
1792 code_props data structure. Keeps named ref of midrule
1793 actions.
1794 * src/scan-code.l: Support for named refs in semantic
1795 action code. New function 'parse_named_ref'.
1796 * src/scan-gram.l: Support bracketed id.
1797 * src/symlist.c: Store named refs in symbol lists.
1798 * src/symlist.h: New field in symbol list: named_ref.
1799 * src/named-ref.h: New file, a struct for named_ref.
1800 * src/named-ref.cp: New file, named_ref_new function.
1801 * src/local.mk: Add two new files.
1802 * tests/testsuite.at: Include new test group:
1803 * tests/named-refs.at: this new file.
1804
1805 2009-06-25 Akim Demaille <demaille@gostai.com>
1806
1807 hash: check insertion for memory exhaustion.
1808 * src/uniqstr.c (uniqstr_new): New.
1809
1810 2009-06-11 Akim Demaille <demaille@gostai.com>
1811
1812 style changes.
1813 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
1814 * src/print-xml.c: Style changes.
1815 * tests/conflicts.at: Comment changes.
1816
1817 2009-06-11 Akim Demaille <demaille@gostai.com>
1818
1819 xml: beware of user strings used to give a %prec to rules.
1820 * tests/conflicts.at (%prec with user strings): New.
1821 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
1822 XML output.
1823
1824 2009-06-11 Akim Demaille <demaille@gostai.com>
1825
1826 hash: check insertion for memory exhaustion.
1827 * src/muscle-tab.c (muscle_insert, muscle_grow)
1828 * src/state.c (state_hash_insert): Check the return value of
1829 hash_insert.
1830
1831 2009-06-10 Akim Demaille <demaille@gostai.com>
1832
1833 deterministic test suite.
1834 Some consistency checks on symbols are performed after all the
1835 symbols were read, by an iteration over the symbol table. This
1836 traversal is nondeterministic, which can be a problem for test
1837 cases.
1838 Avoid this.
1839 Addresses another form of nondeterminism reported by Joel E. Denny.
1840 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1841
1842 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
1843 test in two.
1844 Use different file names for the three tests to make the
1845 maintenance easier.
1846
1847 2009-06-10 Akim Demaille <demaille@gostai.com>
1848
1849 deterministic user-token-number redeclaration errors.
1850 Address nondeterminism reported by Joel E. Denny.
1851 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1852
1853 * src/uniqstr.h: Comment changes.
1854 * src/location.h (boundary_cmp, location_cmp): New.
1855 * src/symtab.c (user_token_number_redeclaration): New.
1856 (symbol_translation): Use it.
1857 * tests/input.at (Numbered tokens): Adjust the expected output.
1858
1859 2009-05-25 Akim Demaille <demaille@gostai.com>
1860
1861 gnulib: update.
1862 * gnulib: Update to latest.
1863 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
1864 * m4/.gitignore: Regen.
1865 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
1866 Call xalloc_die on hash_insert failures.
1867 Requested by the new __warn_unused_result__ attribute of
1868 hash_insert.
1869
1870 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1871
1872 Convert multiple variable definition warnings to complaints.
1873 * NEWS (2.5): Add a new entry for that change.
1874 * doc/bison.texinfo (Decl Summary): Update %define entry.
1875 (Bison Options): Update -D/--define/-F/--force-define entry.
1876 * src/muscle_tab.c (muscle_percent_define_insert): Implement.
1877 * src/muscle_tab.h (muscle_percent_define_insert): Update
1878 comments.
1879 * tests/input.at (`%define errors'): Update.
1880 (`%define, --define, --force-define'): Update.
1881
1882 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1883
1884 -F/--force-define and relative %define/-D/--define priorities.
1885 * NEWS (2.5): Add documentation to -D/--define entry.
1886 * build-aux/cross-options.pl: Hard-code association of
1887 --force-define with %define.
1888 * doc/bison.texinfo (Decl Summary): In %define entry,
1889 cross-reference command-line options.
1890 (Bison Options): Add documentation to -D/--define entry.
1891 (Option Cross Key): Widen column for --force-define row.
1892 * src/getargs.c (usage): Document -F/--force-define. Realign
1893 options in output.
1894 (short_options, long_options, getargs): Parse -F/--force-define,
1895 and update muscle_percent_define_insert invocation.
1896 * src/muscle_tab.h (muscle_percent_define_how): New enum type.
1897 (muscle_percent_define_insert): Add argument with that type.
1898 * src/muscle_tab.c (muscle_percent_define_insert): Implement
1899 -F/--force-define behavior and priorities.
1900 * src/parse-gram.y (prologue_declaration): Update
1901 muscle_percent_define_insert invocations.
1902 * tests/input.at (`%define, --define'): Rename to...
1903 (`%define, --define, --force-define'): ... this and extend.
1904
1905 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1906
1907 Update some comments to make sense for -D.
1908 * data/bison.m4 (b4_check_user_names): In header comments, say
1909 "user occurrence" instead of "grammar occurrence".
1910 * src/muscle_tab.h (muscle_percent_define_insert): Likewise.
1911 (muscle_percent_code_grow): Likewise just for consistency.
1912
1913 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1914
1915 * data/c++.m4: Update copyright year.
1916
1917 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1918
1919 * data/c++.m4 (b4_namespace_close): Simplify slightly.
1920
1921 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
1922
1923 Handle a trailing `:' in a user-supplied C++ namespace better.
1924 * data/c++.m4 (b4_namespace_close): Don't let it be printed
1925 among the closing braces here. This fix might make the
1926 generated code easier to debug, but otherwise it should be
1927 insignificant because a trailing `:' is a C++ error already.
1928
1929 2009-05-19 Akim Demaille <demaille@gostai.com>
1930
1931 remove useless variable.
1932 * src/getargs.c (skeleton_arg): Remove now useless variable.
1933 Should help the compiler see that this printf-like call is sane.
1934
1935 2009-05-11 Akim Demaille <demaille@gostai.com>
1936
1937 doc: use C++ headers.
1938 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
1939 headers.
1940
1941 2009-05-05 Akim Demaille <demaille@gostai.com>
1942
1943 fix hexadecimal token number support.
1944 * src/scan-gram.l: Catch incorrect ids after hexadecimal numbers.
1945
1946 2009-05-05 Akim Demaille <demaille@gostai.com>
1947
1948 tests: check token numbers.
1949 * tests/input.at (Numbered tokens): New.
1950
1951 2009-05-04 Akim Demaille <demaille@gostai.com>
1952
1953 bison: catch bad symbol names.
1954 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
1955 * tests/input.at: Adjust.
1956
1957 2009-05-04 Akim Demaille <demaille@gostai.com>
1958
1959 space changes.
1960 * src/scan-gram.l: Untabify to be robust to zealous editors.
1961
1962 2009-05-04 Akim Demaille <demaille@gostai.com>
1963
1964 identifiers: dashes are letters.
1965 Dashes can now start identifiers (symbols and directives).
1966
1967 * src/scan-gram.l ({letter}): Add dash.
1968 ({id}): Remove it.
1969 * tests/input.at (Symbols): Adjust.
1970 Remove stray comment.
1971 * tests/regression.at (Invalid inputs): Adjust error message.
1972 * doc/bison.texinfo (Symbols): Update.
1973
1974 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
1975
1976 Declare %code to be a permanent feature.
1977 * NEWS (2.4.2): Here.
1978 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
1979 experimental.
1980 (Decl Summary): Likewise.
1981
1982 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1983
1984 Convert underscores to dashes in some %define variable names.
1985 For now, just api.push-pull and lr.keep-unreachable-states.
1986 Maintain old names for backward compatibility.
1987 * NEWS (2.5): Document.
1988 * data/c.m4 (b4_identification): Update comment.
1989 * data/yacc.c: Update access.
1990 * doc/bison.texinfo: Update.
1991 * etc/bench.pl.in (bench_grammar): Update use.
1992 * src/files.c (tr): Move to...
1993 * src/getargs.c, src/getargs.h (tr): ... here because I can't
1994 think of a better place to expose it. My logic is that, for all
1995 uses of tr so far, command-line arguments can be involved, and
1996 getargs.h is already included.
1997 * src/main.c (main): Update access.
1998 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
1999 variable names to new variable names before assigning value.
2000 * src/reader.c (reader): Update setting default.
2001 * tests/calc.at: Update uses.
2002 * tests/conflicts.at (Unreachable States After Conflict
2003 Resolution): Update use.
2004 * tests/input.at (%define enum variables): Update use.
2005 (%define backward compatibility): New test group.
2006 * tests/push.at: Update uses.
2007 * tests/reduce.at: Update uses.
2008 * tests/torture.at: Update uses.
2009
2010 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2011
2012 Set all front-end %define defaults in one place.
2013 * src/main.c (main): Move lr.keep_unreachable_states default...
2014 * src/reader.c (reader): ... to here.
2015
2016 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2017
2018 Rename lr.default_reductions to lr.default-reductions.
2019 * NEWS (2.5): Here.
2020 * doc/bison.texinfo: Here.
2021 * src/lalr.c (initialize_LA): Here.
2022 * src/print.c (print_reductions): Here.
2023 * src/reader.c (reader): Here.
2024 * src/tables.c (action_row): Here.
2025 * tests/input.at (%define enum variables): Here.
2026 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
2027
2028 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2029
2030 Pacify ./configure --enable-gcc-warnings.
2031 * tests/input.at (Symbols): Prototype yyerror and yylex.
2032
2033 2009-04-21 Akim Demaille <demaille@gostai.com>
2034
2035 tests: check the use of dashes and periods in symbols.
2036 * tests/input.at (Symbol): New test group.
2037
2038 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2039
2040 Document how `%define "var" "value"' is not M4-friendly.
2041 * src/parse-gram.y (variable): In comments here.
2042
2043 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2044
2045 Add copyright updates missed during previous cherry pick.
2046 * src/output.c: Here.
2047 * src/parse-gram.y: Here.
2048 * src/scan-gram.l: Here.
2049
2050 2009-04-20 Akim Demaille <demaille@gostai.com>
2051
2052 variables: accept dashes.
2053 * src/scan-gram.l ({id}): Also accept dashes after the initial
2054 letter.
2055 ({directive}): Use {id}.
2056 * src/parse-gram.y: Comment and formatting changes.
2057 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
2058 symbols.
2059 * src/complain.h, src/complain.c (yacc_at): New.
2060 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
2061 symbol names.
2062 * src/output.c (token_definitions_output): Do not #define token
2063 names with dashes.
2064
2065 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2066
2067 Clean up recent patches a little.
2068 Reported by Akim Demaille.
2069 * doc/bison.texinfo (Understanding): Fix typos.
2070 * src/print.c (print_reductions): Don't use negated variable.
2071
2072 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2073
2074 List accepted values for a %define enum variable with an invalid value.
2075 Suggested by Akim Demaille at
2076 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
2077 * data/bison.m4 (_b4_percent_define_check_values): Implement.
2078 * src/muscle_tab.c (muscle_percent_define_check_values): Implement.
2079 * tests/input.at (%define lr.default_reductions invalid values): Merge
2080 into...
2081 (%define enum variables): ... here, and update output.
2082
2083 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
2084
2085 Rename "default rule" to "default reduction".
2086 This includes changing variable names in code, changing
2087 comments, and renaming %define lr.default_rules to %define
2088 lr.default_reductions.
2089 * NEWS (2.5): Update IELR documentation.
2090 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c:
2091 Adjust YYDEFACT and yydefact_ documentation.
2092 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
2093 and lr.type documentation. Make some other wording
2094 improvements.
2095 (Glossary): Adjust cross-references and Default Reduction
2096 definition.
2097 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
2098 Remove a confusing comment pointed out by Akim Demaille.
2099 (initialize_LA): Adjust code.
2100 * src/print-xml.c (print_reductions): Adjust code.
2101 * src/print.c (print_reductions): Adjust code.
2102 * src/reader.c (reader): Adjust code.
2103 * src/tables.c (action_row): Adjust code.
2104 (token_actions): Adjust code.
2105 * src/tables.h: Adjust YYDEFACT documentation.
2106 * tests/input.at (%define lr.default_rules invalid values):
2107 Rename test group to...
2108 (%define lr.default_reductions invalid values): ... this, and
2109 update grammar file and expected output.
2110 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
2111 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
2112
2113 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2114
2115 Document %define lr.type and lr.default_rules.
2116 * NEWS (2.5): Add an entry.
2117 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
2118 besides just LALR(1) and GLR(1).
2119 * doc/bison.texinfo (Introduction): Likewise.
2120 (Language and Grammar): Bison is no longer limited to LALR(1)
2121 restrictions.
2122 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
2123 when trying to distinguish from GLR. Talk about LR(1) grammars
2124 rather than LALR(1) grammars.
2125 (Decl Summary): In %define api.push_pull entry, say it applies
2126 to deterministic parsers in C rather than LALR(1) parsers in C.
2127 Add lr.default_rules entry.
2128 Add lr.type entry.
2129 (Mystery Conflicts): Bison is no longer limited to LALR(1)
2130 restrictions.
2131 (Generalized LR Parsing): Same changes as for the previous GLR
2132 section.
2133 (Memory Management): Say deterministic rather than LALR(1).
2134 (Understanding): Correct some bison output.
2135 Index discussion of "accepting state".
2136 Say deterministic rather than LALR(1).
2137 (Bison Options): In --yacc entry, say deterministic rather than
2138 LALR(1).
2139 In --report, --graph, and --xml entries, just don't mention
2140 LALR(1).
2141 (C++ Parsers): Say deterministic rather than LALR(1).
2142 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
2143 (Glossary): Add Accepting State, Consistent State, Default Rule,
2144 and IELR(1) definitions.
2145 In Generalized LR (GLR) definition, make same changes as in
2146 previous GLR sections.
2147 In LALR(1) definition, say Bison uses LALR(1) by default rather
2148 than implying Bison is limited to LALR(1).
2149 (LocalWords): Add IELR.
2150
2151 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2152
2153 Finish implementing %define lr.type.
2154 Its value can be "LALR", "IELR", or "canonical LR".
2155 * lib/timevar.def (TV_IELR_PHASE1): New var.
2156 (TV_IELR_PHASE2): New var.
2157 (TV_IELR_PHASE3): New var.
2158 (TV_IELR_PHASE4): New var.
2159 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
2160 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
2161 Sbitset.h, ielr.h, and ielr.c.
2162 * src/getargs.h, src/getargs.c (enum trace, trace_args,
2163 trace_types): Add trace_ielr.
2164 * src/lalr.h, src/lalr.c (ngotos): Export it.
2165 (F): Rename to...
2166 (goto_follows): ... this, update all uses, and export it.
2167 (set_goto_map): Export it.
2168 (map_goto): Export it.
2169 (compute_lookahead_tokens): Don't free goto_follows yet. Now
2170 handled in ielr.
2171 (initialize_LA): Export it. Move lookback allocation to...
2172 (lalr): ... here because, for canonical LR, initialize_LA must
2173 be invoked but lookback and much of the rest of LALR isn't
2174 needed.
2175 * main.c (main): Instead of lalr, invoke ielr, which invokes
2176 lalr.
2177 * src/reader.c (reader): Default lr.type to "LALR".
2178 Default lr.default_rules to "accepting" if lr.type is "canonical
2179 LR". Leave the default as "all" otherwise.
2180 Check for a valid lr.type value.
2181 * src/state.h, src/state.c (struct state_list): Add state_list
2182 member.
2183 (state_new): Initialize state_list member to NULL.
2184 (state_new_isocore): New function, exported.
2185 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
2186 exercises all values of lr.type.
2187 (GNU AWK Grammar): Rename test group to...
2188 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
2189 AT_TEST_EXISTING_GRAMMAR.
2190 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
2191 (GNU pic Grammar): Rename test group to...
2192 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
2193 AT_TEST_EXISTING_GRAMMAR.
2194 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
2195 all values of lr.type.
2196 (Single State Split): New test groups using AT_TEST_LR_TYPE.
2197 (Lane Split): Likewise.
2198 (Complex Lane Split): Likewise.
2199 (Split During Added Lookahead Propagation): Likewise.
2200
2201 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2202
2203 Add new files for IELR and canonical LR implementation.
2204 * src/AnnotationList.c: New.
2205 * src/AnnotationList.h: New.
2206 * src/InadequacyList.c: New.
2207 * src/InadequacyList.h: New.
2208 * src/Sbitset.c: New.
2209 * src/Sbitset.h: New.
2210 * src/ielr.c: New.
2211 * src/ielr.h: New.
2212
2213 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2214
2215 Implement %define lr.default_rules.
2216 Its value describes the states that are permitted to contain
2217 default rules: "all", "consistent", or "accepting".
2218 * src/reader.c (reader): Default lr.default_rules to "all".
2219 Check for a valid lr.default_rules value.
2220 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
2221 is "accepting", then only mark the accepting state as
2222 consistent.
2223 (initialize_LA): Tell state_lookahead_tokens_count whether
2224 lr.default_rules is "accepting".
2225 * src/tables.c (action_row): If lr.default_rules is not "all",
2226 then disable default rules in inconsistent states.
2227 * src/print.c (print_reductions): Use this opportunity to
2228 perform some assertions about whether lr.default_rules was
2229 obeyed correctly.
2230 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
2231 helps with checking the parser tables for a grammar.
2232 * tests/input.at (%define lr.default_rules invalid values): New
2233 test group.
2234 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
2235 AT_TEST_TABLES_AND_PARSE.
2236 (`no %define lr.default_rules'): New test group generated by
2237 AT_TEST_LR_DEFAULT_RULES.
2238 (`%define lr.default_rules "all"'): Likewise.
2239 (`%define lr.default_rules "consistent"'): Likewise.
2240 (`%define lr.default_rules "accepting"'): Likewise.
2241
2242 2009-04-20 Akim Demaille <demaille@gostai.com>
2243
2244 Consistently refer to Yacc, not YACC.
2245 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
2246
2247 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
2248
2249 Pacify make maintainer-check-posix.
2250 * tests/input.at (%define, --define): Move bison command-line
2251 options before grammar file name.
2252
2253 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2254
2255 Document semicolon warnings.
2256 * NEWS (2.5): Here.
2257
2258 2008-12-08 Akim Demaille <demaille@gostai.com>
2259
2260 Fix portability issue in the test suite.
2261 * tests/local.at (AT_MATCHES_CHECK): New.
2262 Based on Perl instead of Sed. Sed has too many portability
2263 pitfalls, not ever Sed is GNU Sed.
2264 * tests/actions.at (Fix user actions without a trailing semicolon):
2265 Use it.
2266
2267 2008-12-07 Di-an Jan <dianj@freeshell.org>
2268
2269 Implement the FIXME that ends an user action with a semicolon
2270 if it seems necessary.
2271 * src/scan-code.l (flex rules section): Flag cpp directive from
2272 any `#' to the first unescaped end-of-line. Semicolon is not
2273 needed after `;', `{', '}', or cpp directives and is needed after
2274 any other token (whitespaces and comments have no effect).
2275 * tests/actions.at (Fix user actions without a trailing semicolon):
2276 New test.
2277 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
2278 to make user actions complete statements.
2279 Adjust column numbers in error messages.
2280 * tests/regression.at (Fix user actions without a trailing semicolon):
2281 Remove. Covered by new test.
2282
2283 2009-04-14 Akim Demaille <demaille@gostai.com>
2284
2285 doc: minor fixes.
2286 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
2287 (Table of Symbols): Remove duplicate entry for %debug.
2288
2289 2009-04-10 Eric Blake <ebb9@byu.net>
2290
2291 submodules: update to latest
2292 * submodules/autoconf: Use latest upstream Autoconf.
2293
2294 2009-04-06 Eric Blake <ebb9@byu.net>
2295
2296 Work around autoconf 2.63b bug in testsuite.
2297 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
2298 autoconf bug related to # in test.
2299
2300 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2301
2302 * NEWS (2.5): Describe new -D/--define feature.
2303
2304 2008-11-10 Akim Demaille <demaille@gostai.com>
2305
2306 --trace=muscles
2307 * src/getargs.h, src/getargs.c (trace_muscle): New.
2308 (trace_types, trace_args): Support it.
2309 * src/output.c (output_skeleton): Use it.
2310
2311 2008-11-10 Akim Demaille <demaille@gostai.com>
2312
2313 muscles_output.
2314 * src/output.c (muscles_output): New, extracted from...
2315 (output_skeleton): here.
2316 Adjust.
2317
2318 2008-11-21 Akim Demaille <demaille@gostai.com>
2319
2320 Display the changes in cross-options.texi.
2321 * build-aux/cross-options.pl ($sep): New, to separate items.
2322 * doc/Makefile.am ($(srcdir)/cross-options.texi): Use diff to display
2323 the changes.
2324
2325 2008-11-20 Di-an Jan <dianj@freeshell.org>
2326
2327 Improves options in the manual.
2328 * doc/bison.texinfo (-g, -x): Add space before argument.
2329 (Option Cross Key): Implement FIXME: listing directives also.
2330 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2331 (Short Option): Special case -d. Put arguments inside @option.
2332 (Bison Directive): Add column, automatically extracted from
2333 src/scan-gram.l (actual name passed as the first argument)
2334 with special case for %define.
2335 * doc/Makefile.am (doc/cross-options.texi): Pass src/scan-gram.l
2336 to build-aux/cross-options.pl.
2337 * src/getargs.c (usage): Document limitations of cross-options.pl.
2338 * src/scan-gram.l: Likewise.
2339
2340 2009-02-25 Akim Demaille <demaille@gostai.com>
2341
2342 Copyright years.
2343 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
2344
2345 2008-12-08 Akim Demaille <demaille@gostai.com>
2346
2347 Install autoconf as a submodule to get m4sugar.
2348 * .gitmodules: Add submodules/autoconf.
2349 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
2350 submodules/autoconf.
2351
2352 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2353
2354 Simplify last patch slightly.
2355 * src/getargs.c (getargs): Here.
2356
2357 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2358
2359 Fix last warning from --enable-gcc-warnings.
2360 * src/getargs.c (getargs): Don't assign const address to non-const
2361 pointer.
2362
2363 2008-11-17 Di-an Jan <dianj@freeshell.org>
2364
2365 Handle --enable-gcc-warnings.
2366 * src/getargs.c (command_line_location): Set parameters to void.
2367
2368 2008-11-11 Akim Demaille <demaille@gostai.com>
2369
2370 AT_FULL_COMPILE.
2371 * tests/actions.at, tests/regression.at: Use it.
2372
2373 2008-11-07 Akim Demaille <demaille@gostai.com>
2374
2375 Pass command line location to skeleton_arg and language_argmatch.
2376 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
2377 The location argument is now mandatory.
2378 Adjust all dependencies.
2379 (getargs): Use command_line_location.
2380
2381 2008-11-07 Akim Demaille <demaille@gostai.com>
2382
2383 -D, --define.
2384 * src/getargs.c (usage): Document -D.
2385 Fix help string for --locations.
2386 (command_line_location): New.
2387 (short_options, long_options, getargs): Support -D, --define.
2388 (getargs): Move -d support at the right place.
2389 * doc/bison.texinfo (Bison Options): Update.
2390 * tests/input.at (%define, --define): New.
2391
2392 2008-11-07 Akim Demaille <demaille@gostai.com>
2393
2394 Initialize the muscle table before parsing the command line.
2395 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
2396 (getargs): Define file_name.
2397 * src/main.c (main): Initialize muscle_tab before calling
2398 getargs.
2399 * src/muscle_tab.c (muscle_init): No longer define file_name, as
2400 its value is not available yet.
2401
2402 2008-11-09 Akim Demaille <demaille@gostai.com>
2403
2404 Require the generation of parse-gram.output.
2405 * src/Makefile.am (YACC): Pass --report=all.
2406
2407 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2408
2409 * NEWS (2.5): New stub.
2410
2411 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2412
2413 Fix options documentation.
2414 * build-aux/cross-options.pl: As in --help output, write optional
2415 arguments as [=ARG] not =[ARG].
2416 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
2417
2418 2008-11-07 Akim Demaille <demaille@gostai.com>
2419
2420 Fix --help.
2421 * src/getargs.c (usage): Fix help string for -W.
2422
2423 2008-11-07 Akim Demaille <demaille@gostai.com>
2424
2425 Handle more general types of option arguments.
2426 * build-aux/cross-options.pl: The argument ends at the first
2427 space, not the first non-symbol character.
2428 Use @var for each word appearing the argument description.
2429
2430 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2431
2432 Remove spurious initial empty lines.
2433 * data/location.cc: End the @output lines with an @.
2434
2435 2008-11-04 Akim Demaille <demaille@gostai.com>
2436
2437 Remove spurious initial empty lines.
2438 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
2439 * data/yacc.c: End the @output lines with an @.
2440
2441 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2442
2443 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
2444 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
2445 requirements for a correct m4 are stricter.
2446 * m4/m4.m4: Replace with Autoconf 2.63's m4/m4.m4.
2447 * configure.ac: Update to use AC_PROG_GNU_M4.
2448 Reported by Eric Blake.
2449
2450 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2451
2452 Help with updating web manual.
2453 * HACKING: Incorporate instructions from gnulib/doc/README.
2454 * bootstrap.conf (gnulib_modules): Add gendocs.
2455
2456 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2457
2458 Fix strange %define locations for default values.
2459 Reported by Akim Demaille at
2460 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
2461 and discussed again starting at
2462 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
2463 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
2464 because location information is bogus.
2465 Use angle brackets to delimit fake file name because square brackets
2466 look like underexpanded m4. Choose a better fake file name.
2467 Use negative line numbers.
2468 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
2469 * src/location.c (location_print): If line for a boundary is negative,
2470 only print that boundary's file name.
2471 * src/location.h: Document that.
2472 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2473 defaults): Update output.
2474
2475 2008-11-07 Akim Demaille <demaille@gostai.com>
2476
2477 Locations without columns for command line arguments.
2478 * src/location.c (location_print): Don't display negative columns.
2479 * src/location.h: Document this.
2480
2481 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
2482
2483 Add reminder about uploading public key to keys.gnupg.net.
2484 * HACKING (Release Procedure): Here.
2485
2486 2009-03-31 Akim Demaille <demaille@gostai.com>
2487
2488 bootstrap: --help to stdout.
2489 * bootstrap (usage): Don't send --help to stderr.
2490 Use a here doc instead of a long string.
2491
2492 2009-03-31 Akim Demaille <demaille@gostai.com>
2493
2494 bootstrap: README-hacking no longer exists
2495 * bootstrap (checkout_only_file): Set to HACKING.
2496
2497 2009-03-26 Akim Demaille <demaille@gostai.com>
2498
2499 doc: merge HACKING and README-hacking.
2500 Two files is confusing.
2501 Reported by Alexandre Duret-Lutz.
2502
2503 * README-hacking: Merge into...
2504 * HACKING (Working from the repository): here.
2505
2506 2009-03-26 Akim Demaille <demaille@gostai.com>
2507
2508 doc: update README-hacking.
2509 * README-hacking: We now use git and git submodules.
2510 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
2511
2512 2009-03-26 Akim Demaille <demaille@gostai.com>
2513
2514 lalr1.cc: avoid GCC 4.3 warnings.
2515 GCC 4.3 now warns about "a || b && c" and asks for explicit
2516 parentheses.
2517 Reported by Alexandre Duret-Lutz.
2518 * data/location.cc: Update copyright years.
2519 (Position::operator==): Use parens to make precedence explicit.
2520 Compare lines and columns first, as they are more likely to be
2521 different, and they are faster to compare.
2522
2523 2009-03-26 Akim Demaille <demaille@gostai.com>
2524
2525 gnulib: update.
2526 * gnulib: Update to latest.
2527 * lib/Makefile.am (AM_CPPFLAGS): It is now defined by gnulib, so
2528 use +=.
2529
2530 2009-01-08 Akim Demaille <demaille@gostai.com>
2531
2532 Fix grep portability issues.
2533 Grep on Solaris does not support -q.
2534 Reported by Summum Bonum.
2535
2536 * NEWS: Add a stub for 2.4.2.
2537 * THANKS: Add Summum Bonum.
2538 * tests/atlocal.in (EGREP): New.
2539 (CC, CXX, XSLTPROC): Make it possible to override them via
2540 envvars.
2541 * tests/java.at: Use $EGREP instead of egrep.
2542 Use AT_CHECK's ignore instead of grep's -q.
2543
2544 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
2545
2546 Version 2.4.1.
2547 * NEWS: Set version and date.
2548 * lib/Makefile.am: Update copyright year.
2549 * tests/atlocal.in: Update copyright year.
2550
2551 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
2552
2553 Semicolon feature removal is not about future language support.
2554 * NEWS: The semicolon feature is no longer active for newer languages,
2555 so don't claim that it causes trouble for them.
2556
2557 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
2558
2559 * gnulib: Update submodule to HEAD.
2560
2561 2008-12-09 Akim Demaille <demaille@gostai.com>
2562
2563 Update data/README.
2564 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
2565
2566 2008-12-05 Eric Blake <ebb9@byu.net>
2567
2568 Build testsuite with newer autoconf.
2569 * tests/output.at (m4_expand): Don't override in newer autoconf,
2570 where the underlying implementation changed.
2571 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
2572 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
2573 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
2574 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
2575 since some of them contain unbalanced ')'.
2576
2577 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
2578
2579 * NEWS: Clarify a little.
2580
2581 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
2582
2583 * NEWS: Update for recent changes.
2584
2585 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2586
2587 Fix unexpanded macros in GLR defines file.
2588 Reported by Csaba Raduly at
2589 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
2590 * THANKS (Csaba Raduly): Add.
2591 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
2592 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
2593 lexer in a separate module that includes the defines file.
2594 (AT_CHECK_CALC): Use AT_FULL_COMPILE and request compilation of lexer
2595 source.
2596 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
2597 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
2598 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
2599 (AT_DATA_SOURCE_PROLOGUE): New.
2600 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
2601 (AT_DATA_SOURCE): New.
2602 (AT_FULL_COMPILE): New, copied from master branch and extended to
2603 support an additional source file.
2604
2605 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2606
2607 Don't let maintainer-*-check targets force a version update.
2608 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
2609 handled.
2610
2611 2008-11-17 Di-an Jan <dianj@freeshell.org>
2612
2613 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
2614 Align menus. Adjust word wrapping. Use node names for menu names.
2615 (Examples): Don't abbreviate node names.
2616 (LocalWords): Remove abbreviations.
2617 (Copying): Make description a sentence.
2618 (Java Action Features): Remove period to match the rest of menu.
2619
2620 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
2621
2622 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
2623 * configure.ac: Adjust usage.
2624 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2625 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2626 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
2627
2628 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2629
2630 Don't add a semicolon to actions for %skeleton or %language.
2631 It breaks Java test cases as reported by Akim Demaille.
2632 * src/scan-code.l: Implement.
2633
2634 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2635
2636 Clean up %skeleton and %language priority implementation.
2637 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
2638 remove static qualifier because others will soon need to see it.
2639 (language_prio): Likewise.
2640 (getargs): Use command_line_prio rather than 0.
2641 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
2642 enum fields.
2643 (skeleton_prio): Extern it.
2644 (language_prio): Extern it.
2645 * src/parse-gram.y: Use grammar_prio rather than 1.
2646
2647 2008-11-04 Akim Demaille <demaille@gostai.com>
2648
2649 * NEWS: Mention the trailing semicolon in action.
2650
2651 2008-11-04 Akim Demaille <demaille@gostai.com>
2652
2653 Reformat NEWS.
2654 * NEWS: Use more outline-mode markup.
2655 Suggested by Jim Meyering.
2656
2657 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
2658
2659 Fix user actions without a trailing semicolon.
2660 Reported by Sergei Steshenko at
2661 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
2662 * THANKS (Sergei Steshenko): Add.
2663 * src/scan-code.l (SC_RULE_ACTION): Fix it.
2664 * tests/regression.at (Fix user actions without a trailing semicolon):
2665 New test case.
2666
2667 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2668
2669 Initiate further development.
2670 * NEWS: Create an empty section for new entries.
2671 * gnulib: Update submodule to HEAD.
2672
2673 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2674
2675 * NEWS: Version 2.4.
2676
2677 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2678
2679 Prepare for next release.
2680 * NEWS: Briefly mention changes since 2.3b.
2681 * README: Say GNU m4 1.4.6, which we've been requiring in release
2682 announcements already, not 1.4.3, which breaks the build.
2683
2684 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2685
2686 Say %language is experimental.
2687 We're thinking of extending it's effect on output file naming. See the
2688 thread at
2689 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
2690 * NEWS: Say it's experimental.
2691 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
2692 recommend it over %skeleton for now.
2693 (Bison Options): Likewise.
2694 (C++ Bison Interface): Use %skeleton not %language.
2695 (Calc++ Parser): Use %skeleton not %language.
2696 * src/getargs.c (usage): Say it's experimental.
2697
2698 2008-11-01 Di-an Jan <dianj@freeshell.org>
2699 Paolo Bonzini <bonzini@gnu.org>
2700
2701 Support all Java parser class modifiers.
2702 * data/java.m4 (b4_percent_define_get3): New.
2703 (b4_final_if, b4_strictfp_if): New.
2704 * data/lalr1.java (final, strictfp, extends, implements): Support.
2705 * doc/bison.texinfo (final, strictfp, extends, implements): Add
2706 documentation.
2707 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
2708 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
2709 (AT_CHECK_JAVA_GREP): New.
2710 (Java parser class modifiers): New test.
2711 (Java parser class extends and implements): New test.
2712
2713 Model exception propagation better with throws and lex_throws.
2714 * data/java.m4 (b4_list2): New.
2715 (throws): Change default.
2716 * data/lalr1.java (yyaction): Add throws.
2717 (parse): Add lex_throws in addition to throws.
2718 * doc/bison.texinfo (throws, lex_throws): Add documentation.
2719 * tests/java.at (Java throws specifications): New test.
2720
2721 Improve documentation for Java parsers.
2722 * doc/bison.texinfo (Java Parsers): Add subsections.
2723 Don't quote first argument of %define.
2724 (Java Bison Interface): Document output files. Move documentation
2725 of parser class and merge into Java Parser Interface. Document
2726 features that error out. Document directives with no effect.
2727 Move note about Javadoc higher.
2728 (Java Semantic Values): Explicitly mention stype.
2729 Document that generic types cannot be used.
2730 (Java Location Values): Use @deftypeivar. Document constructors.
2731 Correct return value for toString.
2732 (Java Parser Interface): List undocumented constants/fields.
2733 Move documentation of fields added by %parse-param closer to list
2734 of members. Document that token names are added as fields.
2735 Document constructors accurately. Remove error method.
2736 (Java Scanner Interface): Move note on %pure-parser to Java Bison
2737 Interface. Describe %code lexer and yylex accutately.
2738 Remove documentation that does not match the code.
2739 (Java Action Features): New.
2740 (Java Differences): Add reference. Add item on semantic values.
2741 Add note about @{ ... @}. Clarify %% epilogue placement.
2742 (Java Declarations Summary): New.
2743
2744 Fix Java skeleton.
2745 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
2746 (b4_remove_comma): Quote test argument.
2747 (b4_identification): Remove "bison" field.
2748 * tests/java.at (Java parser class and package names): New test.
2749 (Java %parse-param and %lex-param): New test.
2750 (Java stype, position_class and location_class): New test.
2751
2752 2008-10-31 Di-an Jan <dianj@freeshell.org>
2753
2754 * data/lalr1.jave: Update copyright years.
2755 (YYParser): Correct name of "generated from" file in Javadoc:
2756 use b4_file_name instead of @ofile@.
2757 (Location constructor): Correct Javadoc parameter name.
2758 (yylloc): Add missing opening m4 quote after b4_location_if.
2759 This removes a stray [ in the Javadoc of Lexer.getStartPos.
2760 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
2761 (YYParser constructor): Correct Javadoc parameter name.
2762
2763 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
2764
2765 Always put auxiliary code files in the same dir as other output files.
2766 * src/files.c (compute_file_name_parts): When the user specifies
2767 --output but not --file-prefix, extract the directory prefix from the
2768 file prefix not from the grammar file name. This affects the location
2769 of files like location.hh generated by the C++ skeleton. The includes
2770 in the other output files require this fix.
2771 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
2772 for expected output files.
2773 (Output files): Add a test for the above.
2774
2775 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
2776
2777 * gnulib: Update submodule to HEAD.
2778
2779 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2780
2781 Update copyright year.
2782 * src/files.c: Here.
2783
2784 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
2785
2786 Don't overwrite the input file.
2787 * src/files.c (output_file_name_check): Fatal error if using input file
2788 for output.
2789 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
2790 argument.
2791 (Conflicting output files): Add test.
2792
2793 2008-10-28 Akim Demaille <demaille@gostai.com>
2794
2795 Space changes.
2796 * data/lalr1.cc: Formatting changes.
2797
2798 2008-10-28 Akim Demaille <demaille@gostai.com>
2799
2800 Don't define debugging functions when !YYDEBUG.
2801 * data/lalr1.cc (debug_stream, set_debug_stream)
2802 (debug_level_type, debug_level, set_debug_level): Don't
2803 declare them when YYDEBUG is not defined.
2804 The implementation are already YYDEBUG-aware.
2805
2806 2008-10-28 Akim Demaille <demaille@gostai.com>
2807
2808 Prefer "continue" for empty loop bodies.
2809 * etc/bench.pl.in: Use "continue" instead of {}.
2810
2811 2008-10-28 Akim Demaille <demaille@gostai.com>
2812
2813 Space and comments changes.
2814 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
2815 * data/c.m4, data/lalr1.cc: Space changes.
2816
2817 2008-10-28 Akim Demaille <demaille@gostai.com>
2818
2819 Make gnulib a submodule.
2820 * gnulib: New.
2821 * .gitmodules (gnulib): New.
2822
2823 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
2824
2825 Fix yyerror_range for user-defined location type in C++. Reported by
2826 Georg Sauthoff at
2827 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
2828 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
2829 * THANKS (Georg Sauthoff): Add.
2830
2831 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
2832
2833 Update several administrative files mainly to facilitate releasing.
2834 * HACKING (Administrivia): Make the git-merge-changelog notes more
2835 helpful.
2836 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
2837 (Release Procedure): Update for git and add numerous details that were
2838 previously missing.
2839 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
2840 * maint.mk (announcement): Don't list bison as a bootstrap tool so
2841 that announcements don't claim we bootstrapped with whatever bison
2842 happened to be in PATH. Add flex as a bootstrap tool.
2843 * Makefile.maint: Remove, previously replaced by maint.mk.
2844 * Makefile.cfg: Remove, and migrate settings to...
2845 * cfg.mk: ... here for the sake of `make announcement'.
2846 * bootstrap.conf (gnulib_modules): Add announce-gen.
2847 * README: Say GNU Bison instead of just Bison. Suggested by Karl
2848 Berry.
2849
2850 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
2851
2852 Small but important bugfixes for the Java skeleton.
2853 * data/lalr1.java (yyerror): Change Location to b4_location_type.
2854 (yy_symbol_print): Call toString on yyvaluep.
2855
2856 2008-08-29 Akim Demaille <demaille@gostai.com>
2857
2858 Clarify UPDATED use.
2859 * doc/bison.texinfo: It refers to the last edition of this file,
2860 not to the release date of Bison.
2861 Reported by Joel E. Denny.
2862
2863 2008-08-29 Akim Demaille <demaille@gostai.com>
2864
2865 * README: Update FAQ pointer.
2866 Reported by Joel E. Denny.
2867
2868 2008-08-27 Eric Blake <ebb9@byu.net>
2869
2870 Resync m4sugar from autoconf.
2871 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
2872 (m4_init): Adjust to latest m4.git changes.
2873 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
2874 effects.
2875 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
2876 (_m4_list_cmp): Reduce side effects.
2877
2878 2008-08-27 Akim Demaille <demaille@gostai.com>
2879
2880 Check yyerrok in calc.at.
2881 * tests/calc.at (calc.y): Use yyerrok on "( error )".
2882 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
2883 expected.
2884
2885 2008-08-27 Akim Demaille <demaille@gostai.com>
2886
2887 Support yyerrok in lalr1.cc.
2888 YYBACKUP is still to import back into lalr1.cc.
2889 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
2890
2891 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
2892
2893 For maintainer-check*, don't recompile for a $(VERSION) update.
2894 * cfg.mk: New file.
2895 (_is-dist-target): Override the one in GNUmakefile.
2896 * Makefile.am (EXTRA_DIST): Add cfg.mk.
2897
2898 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
2899
2900 Update for recent change to gnulib.
2901 * src/parse-gram.y: Don't include strverscmp.h. It comes from
2902 string.h now.
2903
2904 2008-08-15 Eric Blake <ebb9@byu.net>
2905
2906 Remaining m4sugar merge from autoconf.
2907 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
2908 * data/m4sugar/foreach.m4: New file, copied from autoconf.
2909 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
2910 * src/output.c (output_skeleton): Tell m4 how to find it.
2911
2912 Partial m4sugar merge from autoconf: m4_map.
2913 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
2914 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
2915 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
2916 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
2917 for empty list.
2918 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
2919 Likewise.
2920 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
2921 declares it.
2922
2923 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
2924
2925 Keep .version and PACKAGE_VERSION in sync.
2926 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
2927 dependency, and add comments justifying this in more detail. Discussed
2928 starting at
2929 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
2930
2931 2008-08-06 Eric Blake <ebb9@byu.net>
2932
2933 Partial m4sugar merge from autoconf: m4_shiftn.
2934 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
2935 (m4_shift2, m4_shift3): New macros.
2936 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
2937 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
2938 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
2939 * data/java.m4 (b4_remove_comma): Likewise.
2940
2941 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
2942 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
2943 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
2944 (m4_init): Consolidate wrapped text into single m4_wrap.
2945 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
2946 in wrapped text.
2947
2948 2008-08-05 Eric Blake <ebb9@byu.net>
2949
2950 Partial m4sugar merge from autoconf: builtins, version.m4.
2951 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
2952 (m4_prepend): Remove, as it is unused and inherently quadratic,
2953 whereas m4_append is linear in newer m4.
2954 (m4_mkstemp): New builtin.
2955 (m4_symbols): Make rename conditional.
2956 (m4_version_prereq): Ensure fatal error if used in bison, which
2957 intentionally lacks version.m4.
2958
2959 Fix comments in m4sugar.
2960 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
2961
2962 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
2963
2964 Update for recent .gitignore fix in Gnulib.
2965 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
2966 anchored .gitignore entries.
2967
2968 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
2969
2970 Set gnu or gnits strictness.
2971 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
2972 development and gnits strictness for releases. Based on Eric Blake's
2973 suggestion at
2974 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
2975
2976 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
2977
2978 * NEWS: Clarify documentation of %language.
2979
2980 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
2981
2982 Support usage of git-merge-changelog.
2983 * .gitattributes: New.
2984 * HACKING: Document usage of git-merge-changelog.
2985 * bootstrap: Install git-merge-changelog entries in .git/config
2986 if appropriate.
2987
2988 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2989
2990 Remove remaining dependence on CVS Id keyword.
2991 * ChangeLog: For the sake of people still using CVS, don't use dollars
2992 when mentioning Id.
2993 * data/xslt/bison.xsl: Remove Id from header comments, where it was
2994 unusual anyway.
2995 * data/xslt/xml2dot.xsl: Likewise.
2996 * data/xslt/xml2text.xsl: Likewise.
2997 * data/xslt/xml2xhtml.xsl: Likewise.
2998 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
2999 * doc/Makefile.am (neutralize): Remove, no longer needed.
3000 (.x.1): Don't use neutralize.
3001 (edit): Don't substitute for ID.
3002 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
3003
3004 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3005
3006 Fix dependence on computed configure variables.
3007 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
3008 $(top_srcdir)/configure.ac so that changes to computed variables, such
3009 as PACKAGE_VERSION, are seen.
3010 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
3011
3012 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
3013
3014 Update copyright dates for recent changes.
3015 * Makefile.am: Here.
3016 * src/Makefile.am: Here.
3017 * src/reduce.c: Here.
3018 * tests/reduce.at: Here.
3019
3020 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
3021
3022 Use git-version-gen for version names between releases.
3023 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
3024 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
3025 * .prev-version: New.
3026 * .version.in: Remove.
3027 * ChangeLog: Remove the Id previously used for capturing the CVS
3028 revision.
3029 * GNUmakefile: Remove, now copied from Gnulib.
3030 * Makefile.am: Add code suggested by comments in
3031 build-aux/git-version-gen.
3032 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
3033 .prev-version, and .version.
3034 * NEWS (2.3b+): Rename to...
3035 (?.?): ... this because we're dropping the "+" version naming scheme,
3036 but, in general, we still can't be sure of our next release name.
3037 * bootstrap: Add a quick hack to remove from .gitignore the
3038 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
3039 entry. This should really be fixed in gnulib instead.
3040 * bootstrap.conf (gnulib_modules): Add gnumakefile.
3041 * configure.ac (AC_INIT): Set version name by invoking
3042 build-aux/git-version-gen.
3043 (AC_CONFIG_FILES): Remove .version, now generated by
3044 build-aux/git-version-gen.
3045 * maint.mk: New, copied from coreutils.
3046 * doc/.cvsignore (bison.1): Add.
3047 * doc/.gitignore (/bison.1): Add.
3048 * doc/bison.1: Remove, generated.
3049 * src/.cvsignore (revision.c): Remove.
3050 * src/.gitignore (/revision.c): Remove.
3051 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
3052 (BUILT_SOURCES): Remove revision.c.
3053 (revision.c): Remove.
3054 * src/getargs.c (version): Don't print revision after the VERSION.
3055 * src/revision.h: Remove.
3056
3057 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3058
3059 Fix untranslatable composition of sentences. Reported by Goran
3060 Uddeborg at
3061 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
3062 * THANKS (Goran Uddeborg): Add.
3063 * src/reduce.c (reduce_print): Report the number of nonterminals and
3064 rules useless in the grammar in separate sentences.
3065 * tests/reduce.at (Useless Rules): Update output.
3066 (Reduced Automaton): Likewise.
3067 (Underivable Rules): Likewise.
3068 (Empty Language): Likewise.
3069
3070 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3071
3072 Fix some .gitignore and .cvsignore problems.
3073 * bootstrap (insert_sorted_if_absent): Replace all uses with...
3074 (insert_vc_ignore): ... this new function, which prepends `/' to all
3075 .gitignore entries before passing them to insert_sorted_if_absent.
3076 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
3077 .cvsignore files are maintained even though Bison developers run
3078 bootstrap while using Git.
3079 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
3080 unneeded by Bison.
3081 (gnulib): Add.
3082 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
3083 unneeded. Reported by Eric Blake.
3084 * lib/.gitignore (/*~): Add.
3085 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
3086 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
3087 Blake.
3088 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
3089
3090 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3091
3092 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
3093 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
3094 * bootstrap.conf (gnulib_modules): Add unsetenv.
3095 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
3096 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
3097 (/setenv.m4): Add.
3098 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
3099 the first argument because it may become position-dependent, and unset
3100 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
3101 Add comments explaining these issues in more detail.
3102
3103 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
3104
3105 Add .gitignore everywhere based on .cvsignore.
3106 * .gitignore: New.
3107 * build-aux/.gitignore: New.
3108 * data/.gitignore: New.
3109 * doc/.gitignore: New.
3110 * etc/.gitignore: New.
3111 * examples/.gitignore: New.
3112 * examples/calc++/.gitignore: New.
3113 * lib/.gitignore: New.
3114 * m4/.gitignore: New.
3115 * po/.gitignore: New.
3116 * runtime-po/.gitignore: New.
3117 * src/.gitignore: New.
3118 * tests/.gitignore: New.
3119
3120 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3121
3122 * NEWS (2.3b+): New section, empty for now.
3123 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
3124
3125 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3126
3127 * NEWS (2.3b): Update release date since there has been a delay in
3128 getting the announcements and tarballs out.
3129
3130 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3131
3132 * NEWS: Version 2.3b.
3133 * configure.ac (AC_INIT): Likewise.
3134 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
3135
3136 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3137
3138 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
3139 been doing it for years.
3140 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
3141 (Release Procedure): Add FIXME about make alpha being unmaintained.
3142
3143 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
3144
3145 * data/yacc.c: Reformat m4 a little for readability.
3146 * src/lalr.c (build_relations): Correct comment.
3147
3148 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3149
3150 DJGPP specific issue.
3151 * djgpp/config.sed: Fixes required to run configure scripts generated
3152 by autoconf 2.62.
3153
3154 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3155
3156 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
3157 coordinator@translationproject.org.
3158
3159 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3160
3161 * THANKS: Add Eric Blake.
3162
3163 2008-04-23 Eric Blake <ebb9@byu.net>
3164
3165 Revert prior patch, by working around autoconf regression.
3166 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
3167 ("Output file name: ("): Uncomment test.
3168 ("Output file name: )"): Likewise.
3169 Based on an idea from Noah Misch.
3170
3171 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3172
3173 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
3174 2.61. Reported by Juan Manuel Guerrero at
3175 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
3176 * tests/output.at ("Output file name: ("): Comment out test case for
3177 now.
3178 ("Output file name: )"): Likewise.
3179
3180 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3181
3182 * GNUmakefile: Update git-version-gen invocation so make dist
3183 succeeds.
3184
3185 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3186
3187 Update to the current gnulib CVS repository, and fix trigraph handling
3188 in Bison.
3189 * bootstrap: Update gnulib CVS repository URL.
3190 (symlink_to_dir): Encapsulate the code that guarantees the destination
3191 directory exists into...
3192 (check_dst_dir): ... this new function, and...
3193 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
3194 fail when copying files into lib/uniwidth/.
3195 * src/output.c (prepare_symbols): When writing yytname muscles, where
3196 symbol names will be encoded in C-string literals, tell quotearg to
3197 escape trigraphs. This used to be the default in gnulib.
3198 * tests/regression.at (Token definitions): Because of the change in
3199 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
3200 escapes trigraphs in symbol names. Thus, yytname no longer has
3201 trigraphs unnecessarily doubly escaped. Update test case output.
3202 Extend test case to be sure Bison's own error messages will no longer
3203 have trigraphs in symbol names unnecessarily escaped once.
3204
3205 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
3206
3207 Fix make dist infinite loop reported by Juan Manuel Guerrero at
3208 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
3209 * .cvsignore: Add .version.
3210 * .version.in: New.
3211 * bootstrap.conf (gnulib_modules): Add git-version-gen.
3212 * configure.ac (AC_CONFIG_FILES): Add .version.
3213 * build-aux/.cvsignore: Add git-version-gen.
3214
3215 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
3216
3217 * NEWS (2.3a+): Mention that -g now takes an argument.
3218 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
3219 consistency. Update the -g and -x entries now that they take
3220 arguments. Use brackets to indicate optional arguments.
3221 * src/getargs.c (usage): Explain the relationship between arguments of
3222 long and short options more completely. Document --defines and -d
3223 separately since the former takes an argument but, for POSIX Yacc, the
3224 latter does not.
3225 (short_options): Let -W take an optional argument like --warnings.
3226 (getargs): Sort cases.
3227
3228 2008-02-28 Akim Demaille <demaille@gostai.com>
3229
3230 * doc/bison.texinfo: Fix a few typos.
3231
3232 2008-02-28 Akim Demaille <akim@epita.fr>
3233
3234 * doc/bison.texinfo (Bison Options): Document -W.
3235 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
3236
3237 2008-02-28 Akim Demaille <akim@epita.fr>
3238
3239 * src/getargs.c (short_options): Split and sort for readability.
3240 -g and -x take optional arguments, just like their long options.
3241 * build-aux/cross-options.pl: Use /x to make the regexp easier to
3242 understand.
3243 Fix the handling of $opt which resulted in all the argument to be
3244 considered as optional.
3245
3246 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
3247
3248 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
3249 say its interface is experimental.
3250 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3251 Java.
3252 (Bison Options): In the -L and --language entry, mention Java.
3253 (Java Bison Interface): Say the interface is experimental.
3254 * src/getargs.c (usage): Mention -L and --language.
3255
3256 * NEWS (2.3a+): Say the push parsing interface is experimental.
3257 * doc/bison.texinfo (Push Decl): Likewise.
3258 (Decl Summary): Likewise in the "%define api.push_pull" entry.
3259 (Push Parser Function): Likewise.
3260 (Pull Parser Function): Likewise.
3261 (Parser Create Function): Likewise.
3262 (Parser Delete Function): Likewise.
3263 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
3264 yypull_parse, and yypush_parse entries.
3265
3266 * NEWS (2.3a+): Mention XML support, and say the schema is
3267 experimental.
3268 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
3269 * src/getargs.c (usage): Say the XML schema is experimental.
3270
3271 * NEWS (2.3a+): Say option instead of flag.
3272
3273 2008-02-21 Wojciech Polak <polak@gnu.org>
3274
3275 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
3276 text.
3277
3278 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
3279
3280 Fix impure push parser compile error reported by Bob Rossi at
3281 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
3282 * data/yacc.c: Clean up whitespace in the output a little.
3283 (yypstate_allocated): Define for impure push parsers regardless of
3284 whether the pull interface is also requested.
3285 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
3286 check impure push parsers without the pull interface.
3287
3288 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
3289 yyerror takes arguments specified by %parse-param while yypstate_new
3290 does not.
3291 * doc/bison.texinfo (Parser Create Function): Document that
3292 yypstate_new returns 0 for multiple impure parser instances.
3293 * tests/push.at (Push Parsing: Multiple impure instances): Update
3294 expected stderr output.
3295
3296 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3297
3298 * runtime-po/POTFILES.in (push.c): Remove.
3299
3300 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3301
3302 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
3303 * data/push.c: Rename to...
3304 * data/yacc.c: ... this, overwriting it.
3305 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
3306 `%push-pull-parser' -> `%define api.push_pull "both"'.
3307 Remove old yacc.c tests, and update push.c tests to yacc.c.
3308
3309 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3310
3311 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
3312 `"%code top" blocks' instead of `%code "top" blocks'.
3313 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
3314 Clean up whitespace in the output a little.
3315
3316 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3317
3318 Fix documentation problems reported by Tim Josling at
3319 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
3320 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
3321 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
3322 integers. Explain the effect of literal string aliases on error
3323 messages. Copy token 0 documentation from the C++ skeleton
3324 documentation.
3325
3326 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3327
3328 Accept a token number in a %left, %right, or %nonassoc for POSIX
3329 conformance. Reported by Tim Josling at
3330 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
3331 * NEWS (2.3a+): Mention.
3332 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
3333 and code numbers are treated by precedence declarations.
3334 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
3335 of symbols.1.
3336 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
3337 of symbol.
3338 (symbol.prec): New, just like symbol but allows INT.
3339 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
3340 longer holds.
3341 * tests/regression.at (Token number in precedence declaration): New
3342 test case.
3343
3344 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3345
3346 DJGPP specific issues.
3347 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
3348 be changed. Copyright timestamp adjusted.
3349 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
3350 be changed. Copyright timestamp adjusted.
3351 * djgpp/config.site: Copyright timestamp adjusted.
3352 * djgpp/config_h.sed: Copyright timestamp adjusted.
3353 * djgpp/djunpack.bat: Copyright timestamp adjusted.
3354 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
3355 filename translation list.
3356 * djgpp/subpipe.c (init_subpipe): Check the environment variables
3357 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
3358 files shall be created. Before trying to use the temp dir where the
3359 environment variable points to check that the dir really exists. If
3360 not default to the cwd as temp dir. Copyright timestamp adjusted.
3361 * djgpp/subpipe.h: Copyright timestamp adjusted.
3362 * djgpp/testsuite.sed: Copyright timestamp adjusted.
3363
3364 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
3365
3366 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
3367
3368 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
3369
3370 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
3371 Problem reported by Claudio Saavedra in
3372 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
3373
3374 2008-01-05 Wojciech Polak <polak@gnu.org>
3375
3376 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
3377 document's title with the input grammar file name.
3378
3379 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
3380
3381 Automate regression testing of the XML/XSLT implementation. Discussed
3382 starting at
3383 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
3384 * configure.ac (XSLTPROC): New substitution.
3385 * Makefile.am (maintainer-xml-check): New phony target invoking...
3386 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
3387 invoking make maintainer-check with BISON_TEST_XML=1.
3388 * tests/atlocal.in (XSLTPROC): New.
3389 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
3390 not to report reachable memory when Bison is expected to have a
3391 non-zero exit status and (2) to compare XML/XSLT output with --graph
3392 and --report=all output for every working grammar when
3393 BISON_TEST_XML=1.
3394 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
3395 (AT_BISON_CHECK_XML): New.
3396 (AT_QUELL_VALGRIND): New.
3397 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
3398 (AT_CHECK): ... don't redefine this since this was the old way to
3399 quell Valgrind.
3400 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
3401 AT_BISON_CHECK invocations.
3402 * tests/c++.at: Likewise.
3403 * tests/calc.at: Likewise.
3404 * tests/conflicts.at: Likewise.
3405 * tests/cxx-type.at: Likewise.
3406 * tests/existing.at: Likewise.
3407 * tests/glr-regression.at: Likewise.
3408 * tests/headers.at: Likewise.
3409 * tests/input.at: Likewise.
3410 * tests/java.at: Likewise.
3411 * tests/output.at: Likewise.
3412 * tests/push.at: Likewise.
3413 * tests/reduce.at: Likewise.
3414 * tests/regression.at: Likewise.
3415 * tests/sets.at: Likewise.
3416 * tests/skeletons.at: Likewise.
3417 * tests/synclines.at: Likewise.
3418 * tests/torture.at: Likewise.
3419 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
3420 tends to hang xsltproc.
3421 (Big horizontal): Likewise.
3422
3423 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3424
3425 In XML output, remove redundant class attribute on symbol element.
3426 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
3427 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
3428 look up a symbol to determine whether it's a nonterminal or terminal.
3429 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
3430 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
3431
3432 Add prec/assoc information to XML output.
3433 * src/gram.c (grammar_rules_print_xml): For each rule that has a
3434 %prec, add a percent_prec attribute.
3435 * src/print-xml.c (print_grammar): For each terminal that has a
3436 precedence or associativity, add a prec or assoc attribute.
3437 (xml_indent): New.
3438 (xml_puts): Use xml_indent.
3439 (xml_printf): Use xml_indent.
3440 * src/print-xml.h (xml_indent): Prototype.
3441
3442 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
3443 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
3444
3445 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3446
3447 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
3448 (bison:ruleByNumber): ... this for clarity.
3449 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
3450 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
3451 (xsl:template match="reduction"): Update.
3452 (xsl:template match="item"): Update.
3453 (xsl:template match="reduction"): Update.
3454
3455 In the XML output, don't print the list of rules where symbols appear.
3456 Compute it in XSLT instead. Discussed at
3457 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
3458 * data/xslt/bison.xsl (bison:ruleByLhs): New.
3459 (bison:ruleByRhs): New.
3460 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
3461 bison:ruleByRhs.
3462 (xsl:template match="terminal/rule"): Remove.
3463 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3464 bison:ruleByRhs.
3465 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3466 Remove.
3467 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
3468 bison:ruleByRhs and mode="number-link" for rule template.
3469 (xsl:template match="terminal/rule"): Remove.
3470 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3471 bison:ruleByRhs and mode="number-link" for rule template.
3472 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3473 Rewrite as...
3474 (xsl:template match="rule" mode="number-link"): ... this.
3475 * src/print-xml.c (print_grammar): Don't print the list of rules.
3476
3477 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3478
3479 Don't let --report affect XML output; always print all information.
3480 Discussed at
3481 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
3482 * src/conflicts.c (log_resolution): Implement.
3483 * src/print-xml.c (print_core): Implement.
3484 (print_state): Implement.
3485 (print_xml): Implement.
3486
3487 * NEWS (2.3a+): Fix quotes.
3488 * src/parse-gram.y (prologue_declaration): For consistency with -v,
3489 don't let %verbose clear the list specified by --report.
3490
3491 2007-11-26 Akim Demaille <akim@epita.fr>
3492
3493 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
3494
3495 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
3496
3497 In the XML output, list useless and unused symbols and rules with the
3498 useful ones and add a "usefulness" attribute. Discussed starting at
3499 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
3500 * src/gram.c (grammar_rules_partial_print_xml): Remove.
3501 (grammar_rules_print_xml): Print all rules instead of just those
3502 useful in the grammar, and add a "usefulness" attribute.
3503 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
3504 * src/print-xml.c (print_rules_useless_in_parser): Remove.
3505 (print_grammar): Print all nonterminals instead of just useful ones,
3506 and add a "usefulness" attribute to nonterminals and terminals.
3507 (print_xml): Don't print a separate "reductions" or
3508 "rules-useless-in-parser" element.
3509 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
3510 (reduce_xml): Remove.
3511 (reduce_token_unused_in_grammar): New.
3512 (reduce_nonterminal_useless_in_grammar): New.
3513 * src/reduce.h (reduce_xml): Remove prototype.
3514 (reduce_token_unused_in_grammar): Add prototype.
3515 (reduce_nonterminal_useless_in_grammar): Add prototype.
3516 * data/xslt/xml2text.xsl: Update for XML changes.
3517 * data/xslt/xml2xhtml.xsl: Update for XML changes.
3518 * tests/reduce.at (Useless Terminals): Update output.
3519 (Useless Rules): Update output.
3520 (Reduced Automaton): Update output.
3521
3522 Say "Terminals unused in grammar" instead of "Unused terminals".
3523 * NEWS (2.3a+): Update.
3524 * doc/bison.texinfo (Understanding): Update example output.
3525 * src/reduce.c (reduce_output): Implement.
3526 * data/xslt/xml2text.xsl: Implement.
3527 * data/xslt/xml2xhtml.xsl: Implement.
3528
3529 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
3530
3531 Accept --report-file=FILE to override the default `.output' filename.
3532 * NEWS (2.3a+): Mention.
3533 * doc/bison.texinfo (Bison Options): Add an entry.
3534 * src/files.c (compute_output_file_names): Don't override
3535 spec_verbose_file if already set.
3536 * src/getargs.c (usage): Document --report-file.
3537 (REPORT_FILE_OPTION): New anonymous enum member.
3538 (long_options): Add entry for it.
3539 (getargs): Add case for it setting spec_verbose_file.
3540
3541 * build-aux/cross-options.pl: Don't record a short option just because
3542 there's an arg.
3543 * doc/.cvsignore: Add yacc.1.
3544
3545 2007-11-14 Akim Demaille <akim@epita.fr>
3546
3547 * doc/yacc.1.in: New.
3548 * configure.ac, doc/Makefile.am: Adjust.
3549 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
3550 config.h symbol.
3551 Use AC_SUBST for assignments too.
3552 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
3553
3554 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3555
3556 * src/gram.c: Remove comments that duplicate comments in gram.h.
3557
3558 When reporting useless rules and nonterminals, say "useless in grammar"
3559 instead of "useless", and say "useless in parser" instead of "never
3560 reduced". Discussed starting at
3561 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
3562 * NEWS (2.3a+): Mention this change.
3563 * data/xslt/xml2text.xsl: Update output text and expected input XML
3564 element names to match changes below.
3565 * data/xslt/xml2xhtml.xsl: Likewise.
3566 (xsl:template match="bison-xml-report"): Add missing entry in Table of
3567 Contents: "Rules useless in parser due to conflicts".
3568 * doc/bison.texinfo (Decl Summary): Reword a little.
3569 (Understanding): Update example output for changes below.
3570 * src/gram.c: (rule_useful_p): Rename to...
3571 (rule_useful_in_grammar_p): ... this.
3572 (rule_useless_p): Rename to...
3573 (rule_useless_in_grammar_p): ... this.
3574 (rule_never_reduced_p): Rename to...
3575 (rule_useless_in_parser_p): ... this.
3576 (grammar_rules_print): Update for renames.
3577 (grammar_rules_print_xml): Update for renames.
3578 (grammar_rules_never_reduced_report): Rename to...
3579 (grammar_rules_useless_report): ... this since it is used for either
3580 kind of useless rule.
3581 * src/gram.h: Reword comments and update function names in prototypes.
3582 * src/main.c (main): Say "rule useless in parser due to conflicts".
3583 * src/print-xml.c (print_rules_never_reduced): Rename to...
3584 (print_rules_useless_in_parser): ... this, and rename output XML
3585 element "rules-never-reduced" to "rules-useless-in-parser".
3586 (print_xml): Update for rename.
3587 * src/print.c (print_results): Say "Rules useless in parser due to
3588 conflicts".
3589 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
3590 (nonterminals_reduce): Say "nonterminal useless in grammar".
3591 (reduce_output): Say "Nonterminals useless in grammar".
3592 Say "Rules useless in grammar".
3593 (reduce_xml): Rename output XML element "useless" to
3594 "useless-in-grammar".
3595 (reduce_print): Don't report the count of grammatically useless rules
3596 as "rules never reduced" just because %yacc is specified.
3597 In the correct report of this count, say nonterminal(s) and rule(s)
3598 "useless in grammar".
3599 * tests/conflicts.at (S/R in initial): Update expected output.
3600 (Defaulted Conflicted Reduction): Likewise.
3601 (Unreachable States After Conflict Resolution): Likewise.
3602 * tests/existing.at (GNU pic Grammar): Likewise.
3603 * tests/reduce.at (Useless Nonterminals): Likewise.
3604 (Useless Rules): Likewise.
3605 (Reduced Automaton): Likewise.
3606 (Underivable Rules): Likewise.
3607 (Empty Language): Likewise.
3608
3609 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
3610
3611 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
3612 here document and before the EOF so that BSD's implementation of Bourne
3613 shell doesn't parse the delimiter as part of the here document.
3614 * doc/.cvsignore: Add cross-options.texi.
3615 * src/getargs.c (usage): Add a blank line after the warning categories.
3616
3617 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
3618
3619 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
3620
3621 2007-11-05 Akim Demaille <akim@epita.fr>
3622
3623 Remove Id: from bison.1.
3624 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
3625 (perl -0777 -pi -e 's/\.PP\nId): New.
3626 (.x.1): Use it to ignore the version control revision.
3627
3628 2007-11-05 Akim Demaille <demaille@gostai.com>
3629
3630 * build-aux/Makefile.am: Ship cross-options.pl.
3631 * doc/Makefile.am: Always refer to cross-options.texi with
3632 $(srcdir).
3633 (MAINTAINERCLEANFILES): Add it.
3634
3635 2007-11-04 Akim Demaille <demaille@gostai.com>
3636
3637 Generate the long/short option cross-table.
3638 * build-aux/cross-options.pl: New.
3639 * doc/Makefile.am (cross-options.texi): New.
3640 * doc/bison.texinfo: Use it.
3641
3642 2007-11-04 Akim Demaille <demaille@gostai.com>
3643
3644 Generate bison.1 using help2man.
3645 * doc/common.x, doc/bison.x: New.
3646 * doc/Makefile.am (bison.1, .x.1): New.
3647 The code is taken from autoconf-2.61/man/Makefile.am.
3648 * configure.ac: Look for help2man.
3649
3650 2007-11-04 Akim Demaille <demaille@gostai.com>
3651
3652 Complete --help.
3653 * src/getargs.c (usage): Document -W, make it clear that -d,
3654 -g and -x have optional arguments.
3655
3656 2007-11-04 Akim Demaille <demaille@gostai.com>
3657
3658 Find sha1sum when named gsha1sum.
3659 * bootstrap (find_tool): New.
3660 ($SHA1SUM): New.
3661
3662 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3663
3664 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
3665 at
3666 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
3667 * NEWS (2.3a+): Mention.
3668 * data/bison.m4 (b4_pure_if): Don't define it here.
3669 * data/c.m4 (b4_identification): Depend on individual skeletons to
3670 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
3671 values of the %define variables api.pure or api.push_pull. Define
3672 YYPURE, YYPUSH, and YYPULL accordingly.
3673 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
3674 glr.cc has already defined b4_pure_flag.
3675 * data/push.c: Define b4_pure_if based on `%define api.pure'.
3676 Remove YYPUSH and YYPULL since they're back in b4_identification again.
3677 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
3678 * doc/bison.texinfo (Pure Decl): Update.
3679 (Push Decl): Update.
3680 (Decl Summary): Add api.pure to %define entry.
3681 In %pure-parser entry, say it's deprecated and reference %define.
3682 (Pure Calling): Update.
3683 (Error Reporting): Update.
3684 (C++ Scanner Interface): Update.
3685 (How Can I Reset the Parser): Update.
3686 (Table of Symbols): In %pure-parser entry, say it's deprecated and
3687 reference %define.
3688 * src/getargs.c (pure_parser): Remove global variable.
3689 * src/getargs.h (pure_parser): Remove extern.
3690 * src/output.c (prepare): Don't define pure_flag muscle.
3691 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
3692 wrapper around `%define api.pure'.
3693 * tests/calc.at (Simple LALR Calculator): Update.
3694 (Simple GLR Calculator): Update.
3695 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
3696 Update.
3697 (GLR: Resolve ambiguity, pure, locations): Update.
3698 (GLR: Merge conflicting parses, pure, no locations): Update.
3699 (GLR: Merge conflicting parses, pure, locations): Update.
3700 * tests/glr-regression.at (Uninitialized location when reporting
3701 ambiguity): Update
3702 * tests/input.at (Unused %define api.pure): New test case.
3703 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
3704 AT_PURE_IF and AT_PURE_AND_LOC_IF.
3705 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
3706
3707 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3708
3709 %define push_pull -> %define api.push_pull. Discussed starting at
3710 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
3711 * data/push.c: Expect the new name.
3712 * data/yacc.c: Likewise.
3713 * doc/bison.texinfo (Push Decl): Update.
3714 (Decl Summary): Update %define entry.
3715 (Push Parser Function): Update.
3716 (Pull Parser Function): Update.
3717 (Parser Create Function): Update.
3718 (Parser Delete Function): Update.
3719 * tests/calc.at (Simple LALR Calculator): Update.
3720 * tests/input.at (%define enum variables): Update.
3721 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
3722 (Push Parsing: Multiple impure instances): Update.
3723 (Push Parsing: Unsupported Skeletons): Update.
3724 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
3725 (Exploding the Stack Size with Malloc): Update.
3726
3727 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
3728 other entries some.
3729
3730 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
3731
3732 For the XML output's terminal element, rename @number to @token-number,
3733 and add @symbol-number. In the nonterminal element, rename @number to
3734 @symbol-number. Discussed starting at
3735 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
3736 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
3737 renames.
3738 (xsl:template match="nonterminal"): Likewise.
3739 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
3740 (xsl:template match="nonterminal"): Likewise.
3741 * src/print-xml.c (print_grammar): Implement.
3742
3743 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3744
3745 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
3746 2007-10-11 change, the child elements here are items not rules.
3747 (xsl:template match="item"): New.
3748 (xsl:template match="rule"): Update for new reduced itemset.
3749 (xsl:template match="point"): Remove.
3750 (xsl:template match="empty"): For consistency with --graph, don't
3751 output "/* empty */".
3752 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
3753 line-wrap, don't pass a negative value as first-line-length since this
3754 won't work with the following changes.
3755 (xsl:template name="line-wrap"): Simplify slightly.
3756 (xsl:template name="ws-search"): Eliminate recursion.
3757 * src/print_graph.c (print_core): Don't print a reduction's lookahead
3758 set next to an item whose dot is not at the end of the RHS even if it
3759 happens to be associated with the same rule.
3760
3761 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
3762
3763 Add %define lr.keep_unreachable_states.
3764 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
3765 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
3766 * src/main.c (main): Implement it.
3767 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3768 Extend to test it, and fix a typo.
3769
3770 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
3771
3772 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
3773 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
3774 the example .output text.
3775 * tests/regression.at (Extra lookahead sets in report): Improve wording
3776 of comments.
3777
3778 2007-10-17 Wojciech Polak <polak@gnu.org>
3779
3780 * src/print-xml.c (print_grammar): Renamed
3781 <terminal> and <nonterminal> attributes:
3782 "type" to "number" and "symbol" to "name".
3783 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
3784 Use new attribute names.
3785 (xsl:template match="nonterminal"): Likewise.
3786 * data/xslt/xml2xhtml.xsl: Likewise.
3787
3788 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
3789
3790 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
3791 (Option Cross Key): Likewise.
3792
3793 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
3794 next to an item whose dot is not at the end of the RHS even if it
3795 happens to be associated with the same rule.
3796 * src/print.c (print_core): Likewise.
3797 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
3798 (Resolved SR Conflicts): Update output.
3799 * tests/regression.at (Extra lookahead sets in report): New test case.
3800
3801 2007-10-11 Wojciech Polak <polak@gnu.org>
3802
3803 * src/print-xml.c (print_core): Remove item set
3804 redundancy.
3805 * data/xslt/bison.xsl (bison:ruleNumber): New key.
3806 Improve processing time. Suggested by Joel E. Denny.
3807 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
3808 Write xsl:param "required" attribute as comment.
3809 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
3810 (xsl:template match="rule"): Support new reduced itemset.
3811 (xsl:template match="point"): Remove.
3812 * data/xslt/xml2xhtml.xsl: Likewise.
3813
3814 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
3815
3816 * src/getargs.c (version): Update copyright year.
3817
3818 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
3819
3820 Make xml2dot.xsl and --graph produce the same output.
3821 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
3822 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
3823 escaped later.
3824 (xsl:template name="output-node"): Use the new escape template instead
3825 of the string-replace template directly.
3826 (xsl:template name="output-edge"): Likewise.
3827 (xsl:template name="escape"): New, escapes backslashes and newlines in
3828 addition to quotation marks.
3829 * src/graphviz.c (start_graph, output_node, output_edge): Add
3830 whitespace to output for legibility.
3831
3832 Make xml2text.xsl and --report produce the same output, and remove the
3833 XML "conflicts" element since a conflict summary is easily extracted
3834 from the automaton.
3835 * data/xslt/bison.xsl: New.
3836 (xsl:template match="state" mode="bison:count-conflicts): New.
3837 * data/xslt/xml2text.xsl: Import bison.xsl.
3838 (xsl:template match="bison-xml-report"): Instead of styling the
3839 "conflicts" element, style the "automaton" element with mode
3840 "conflicts". Unlike the former, the latter lists S/R and R/R
3841 conflicts for a state on the same line.
3842 (xsl:template match="conflicts"): Remove.
3843 (xsl:template match="conflict"): Remove.
3844 (xsl:template match="terminal"): Line-wrap the list of rules in which
3845 the terminal is used.
3846 (xsl:template match="nonterminal"): Likewise for nonterminals.
3847 (xsl:template match="automaton" mode="conflicts"): New.
3848 (xsl:template match="state" mode="conflicts"): New.
3849 (xsl:template name="line-wrap"): New.
3850 (xsl:template name="ws-search"): New.
3851 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
3852 (xsl:template match="bison-xml-report"): Instead of styling the
3853 "conflicts" element, style the "automaton" element with mode
3854 "conflicts."
3855 (xsl:template match="conflicts"): Remove.
3856 (xsl:template match="conflict"): Remove.
3857 (xsl:template match="automaton" mode="conflicts"): New.
3858 (xsl:template match="state" mode="conflicts): New.
3859 * src/conflicts.c (conflicts_output_xml): Remove.
3860 * src/conflicts.h (conflicts_output_xml): Remove prototype.
3861 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
3862 * src/print.c (print_grammar): Consistently wrap at the 66th column so
3863 the corresponding XSLT is easier. Also, never wrap between a word and
3864 the comma that follows it.
3865
3866 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
3867
3868 Improve C++ namespace support. Discussed starting at
3869 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
3870 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
3871 b4_namespace_close): New macros that interpret the %define variable
3872 "namespace" so its value can contain "::" to indicate nested
3873 namespaces.
3874 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
3875 the above macros.
3876 * data/lalr1.cc (b4_namespace): Likewise.
3877 * data/location.cc (b4_namespace): Likewise.
3878 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
3879 inside a new table in the general %define entry. Document `%define
3880 namespace' there as well. Point the %name-prefix entry to it since it
3881 explains it more completely in the case of C++.
3882 (C++ Bison Interface): Mention `%define namespace' instead of
3883 %name-prefix.
3884 (Table of Symbols): Remove the `%define push_pull' entry. The %define
3885 entry suffices.
3886 * tests/c++.at (Relative namespace references): New test case.
3887 (Absolute namespace references): New test case.
3888 (Syntactically invalid namespace references): New test case.
3889 * tests/input.at (C++ namespace reference errors): New test case.
3890
3891 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
3892
3893 Add syncline support and location accessor to internal %define
3894 interfaces.
3895 * data/bison.m4 (b4_percent_define_get_loc): New.
3896 (b4_percent_define_get_syncline): New.
3897 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
3898 (b4_percent_define_default): Record defining location as line 1 rather
3899 than 0 for the sake of synchronizing #line's, and define
3900 b4_percent_define_syncline(VARIABLE).
3901 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
3902 * src/muscle_tab.c (muscle_syncline_grow): New.
3903 (muscle_code_grow): Use muscle_syncline_grow.
3904 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
3905 define b4_percent_define_syncline(VARIABLE).
3906 (muscle_percent_define_get_loc): New.
3907 (muscle_percent_define_get_syncline): New.
3908 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
3909 remove some unused variables.
3910 (muscle_percent_define_default): Record defining location as line 1
3911 rather than 0 for the sake of synchronizing #line's, and define
3912 b4_percent_define_syncline(VARIABLE).
3913 (muscle_percent_define_check_values): Use
3914 muscle_percent_define_get_loc.
3915 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
3916 (muscle_percent_define_get_syncline): Prototype.
3917 * tests/skeletons.at (%define Boolean variables: invalid skeleton
3918 defaults): Update output for location change.
3919 (Complaining during macro argument expansion): Extend to test
3920 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
3921
3922 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
3923
3924 Fix some error-reporting macro bugs.
3925 * data/bison.m4 (b4_cat): New.
3926 (b4_error, b4_error_at): Use b4_cat to send error directives directly
3927 to stdout so they don't become arguments to other macros. Update
3928 comments and add examples.
3929 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
3930 add examples.
3931 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
3932 after printing the error directive so that M4 doesn't report subsequent
3933 problems that are induced by this problem.
3934 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
3935 instead of just in them. Recognize @\n in both places. Both expand to
3936 the empty string. Needed by b4_cat.
3937 * tests/skeletons.at (Complaining during macro argument expansion):
3938 New test case.
3939 (Fatal errors make M4 exit immediately): New test case.
3940
3941 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
3942
3943 Implement --print-datadir.
3944 * src/getargs.c (usage): Mention.
3945 (PRINT_DATADIR_OPTION): New anonymous enum member.
3946 (long_options): Add entry for it.
3947 (getargs): Add case for it calling compute_pkgdatadir.
3948 * src/output.c (output_skeleton): Encapsulate data directory
3949 computation from here...
3950 (prepare): ... and from here...
3951 (compute_pkgdatadir): ... into this new function.
3952 * src/output.h (compute_pkgdatadir): Prototype.
3953
3954 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
3955
3956 * src/print-xml.c (escape_bufs): New static global variable
3957 replacing...
3958 (xml_escape_n): ... the static local variable buf here.
3959 (print_xml): Free memory for escape_bufs.
3960 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
3961
3962 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
3963
3964 Replace `%push-parser' and `%push-pull-parser' with
3965 `%define push_pull "push"' and `%define push_pull "both"'.
3966 `%define push_pull "pull"' is the default.
3967 * doc/bison.texinfo (Push Decl, Push Parser Function,
3968 Pull Parser Function, Parser Create Function, Parser Delete Function):
3969 Update declarations.
3970 (Decl Summary, Table of Symbols): Replace %push-parser and
3971 %push-pull-parser entries with a %define push_pull entry.
3972 * data/bison.m4 (b4_percent_define_check_values): New macro.
3973 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
3974 definitions...
3975 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
3976 definitions...
3977 * data/push.c: ... to here and compute them from the value of the
3978 %define variable push_pull.
3979 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
3980 parsing requests here...
3981 * data/yacc.c: ... hack this to switch to push.c any time
3982 b4_use_push_pull_flag or the %define variable push_pull is set. This
3983 will go away when we mv push.c yacc.c.
3984 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
3985 push parsing is not supported since unused %define variables are
3986 reported anyway.
3987 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
3988 * src/muscle_tab.h (muscle_percent_define_check_values): Update
3989 comments for consistency with b4_percent_define_check_values.
3990 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
3991 muscles.
3992 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
3993 Remove.
3994 (prologue_declaration): Remove %push-parser and %push-pull-parser
3995 rules.
3996 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
3997 * tests/calc.at: Update declarations.
3998 * tests/input.at (%define enum variables): New test case.
3999 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
4000 declaration.
4001 (Push Parsing: Multiple impure instances): Update declaration.
4002 (Push Parsing: Unsupported Skeletons): New test case.
4003 * tests/torture.at (Exploding the Stack Size with Alloca): Update
4004 declaration.
4005 (Exploding the Stack Size with Malloc): Update declaration.
4006
4007 2007-09-24 Wojciech Polak <polak@gnu.org>
4008
4009 Add XSLT transformations.
4010
4011 * data/xslt/xml2dot.xsl: Transform XML into DOT.
4012 * data/xslt/xml2text.xsl: Transform XML into plain text.
4013 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
4014 * data/Makefile.am (xsltdir): New variable.
4015 (dist_xslt_DATA): Add xslt/*.xsl files.
4016
4017 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
4018
4019 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
4020 Problem reported by Wojciech Polak.
4021 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
4022 (xml_printf): Undo change I made on 21 September; that is,
4023 indent 2 spaces, not 1.
4024
4025 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
4026
4027 Pacify ./configure --enable-gcc-warnings.
4028 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
4029 `char const *' instead of `char *'.
4030 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
4031 local variable `sep'.
4032
4033 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4034
4035 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
4036 elsewhere.
4037 * src/print-xml.c: Prefer "const" after types; that's more consistent.
4038 (xml_printf): Indent just 1 space for level.
4039 (e_char, xlate_char): Remove.
4040 (xml_escape_string): Rewrite to avoid undefined behavior (used
4041 storage that was freed from the stack).
4042 (xml_escape_n): Don't bother checking for subscript error.
4043
4044 2007-09-21 Wojciech Polak <polak@gnu.org>
4045
4046 Add Bison XML Automaton Report.
4047
4048 Add support for an -x option to generate an XML report.
4049 It is not documented yet.
4050 * src/print-xml.c: New file.
4051 * src/print-xml.h: Likewise.
4052 * lib/timevar.def (TV_XML): New var.
4053 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
4054 * src/conflicts.c: Include print-xml.h.
4055 (solved_conflicts_xml_obstack): New var.
4056 (log_resolution, conflicts_solve, conflicts_free):
4057 Add support for XML report.
4058 (conflicts_output_val): New function.
4059 * src/conflicts.h (conflicts_output_val): New decl.
4060 * src/files.c (spec_xml_file): New var.
4061 (compute_output_file_names, output_file_names_free): Add XML support.
4062 * src/files.h (spec_xml_file): New decl.
4063 * src/getargs.c (xml_flag): New var.
4064 (usage, short_options, long_options, getargs): Add XML support.
4065 * src/getargs.h (xml_flag): New decl.
4066 * src/gram.c: Include print-xml.h.
4067 (rule_lhs_print_xml, rule_rhs_print_xml):
4068 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
4069 New functions.
4070 * src/gram.h: Declare external ones.
4071 * src/main.c: Include print-xml.h.
4072 (main): Add XML support.
4073 * src/reduce.c: Include print-xml.h.
4074 (reduce_xml): New function.
4075 * src/reduce.h: Declare it.
4076 * src/state.c: Include print-xml.h.
4077 (state_new): Add XML support.
4078 (state_rule_lookahead_tokens_print_xml): New function.
4079 * src/state.h: Declare it.
4080 (struct state): New member solved_conflicts_xml.
4081 * src/symtab.c (symbol_class_get_string): New function.
4082 * src/symtab.h: Declare it.
4083
4084 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4085
4086 * GNUmakefile: Switch to coreutils's version.
4087 * bootstrap: Likewise.
4088 * Makefile.cfg: Adjust to new GNUmakefile.
4089 * README-hacking: Likewise.
4090
4091 Import from gnulib:
4092
4093 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
4094 Bruno Haible <bruno@clisp.org>
4095
4096 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
4097 and is a script that invokes bison. Tighten the code. Add comments.
4098
4099 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
4100
4101 Spell "boolean" as "Boolean". Reported by Akim Demaille.
4102 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
4103 * doc/bison.texinfo (Decl Summary): Fix.
4104 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
4105 * tests/input.at (Boolean %define variables): Update output.
4106 * tests/skeletons.at (%define boolean variables: invalid skeleton
4107 defaults): Rename to...
4108 (%define Boolean variables: invalid skeleton defaults): ... this and
4109 update output.
4110
4111 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
4112
4113 In impure push mode, don't allow more than one yypstate to be allocated
4114 since multiple impure parsers would corrupt yynerrs.
4115 * data/push.c (yypstate_allocated): New static global variable
4116 initialized to 0.
4117 (yypull_parse): If yypstate_new returns 0, don't report it as memory
4118 exhaustion if yypstate_allocated is 1, but still return 2.
4119 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
4120 already 1. Otherwise, set it to 1.
4121 (yypstate_delete): Set it to 0.
4122 * tests/push.at (Push Parsing: Multiple impure instances): New test
4123 case.
4124
4125 2007-08-17 Bob Rossi <bob@brasko.net>
4126
4127 * doc/bison.texinfo (Push Decl): Document the push parser.
4128 (Table of Symbols): Ditto.
4129 (Pure Decl): Ditto.
4130 (Decl Summary): Ditto.
4131 (Multiple Parsers, Push Parser Function, Pull Parser Function,
4132 Parser Create Function, Parser Delete Function):
4133 Add new push parser symbols.
4134 (Table of Symbols): Document push-parser, push-pull-parser,
4135 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
4136
4137 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
4138
4139 Update to GPLv3.
4140 * doc/gpl-3.0.texi: New file.
4141 * doc/gpl.texi: Remove.
4142 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
4143 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
4144 * README-hacking, TODO, bootstrap, bootstrap.conf:
4145 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
4146 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
4147 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
4148 * data/lalr1.cc, data/lalr1.java, data/location.cc:
4149 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
4150 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
4151 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
4152 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
4153 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
4154 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
4155 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
4156 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
4157 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
4158 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
4159 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
4160 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
4161 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
4162 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
4163 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
4164 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
4165 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
4166 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
4167 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
4168 * src/complain.c, src/complain.h, src/conflicts.c:
4169 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
4170 * src/files.h, src/flex-scanner.h, src/getargs.c:
4171 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
4172 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
4173 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
4174 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
4175 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
4176 * src/print.c, src/print.h, src/print_graph.c:
4177 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
4178 * src/reduce.h, src/relation.c, src/relation.h:
4179 * src/revision.h, src/scan-code.h, src/scan-code.l:
4180 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
4181 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
4182 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
4183 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
4184 * tests/Makefile.am, tests/actions.at, tests/c++.at:
4185 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
4186 * tests/existing.at, tests/glr-regression.at:
4187 * tests/headers.at, tests/input.at, tests/java.at:
4188 * tests/local.at, tests/output.at, tests/push.at:
4189 * tests/reduce.at, tests/regression.at, tests/sets.at:
4190 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
4191 * tests/torture.at:
4192 Update to GPLv3.
4193
4194 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4195
4196 Get rid of broken %no-parser, -n, and --no-parser implementation and
4197 documentation.
4198 * TODO: Don't mention them.
4199 * doc/bison.1: Likewise.
4200 * doc/bison.texinfo (Decl Summary): Likewise.
4201 (Bison Options): Likewise.
4202 (Option Cross Key): Likewise.
4203 * src/getargs.c (no_parser_flag): Remove global variable.
4204 (usage): Don't print description of -n and --no-parser.
4205 (long_options): Remove --no-parser entry here.
4206 (getargs): Remove -n case in the switch here.
4207 * src/getargs.h (no_parser_flag): Remove extern.
4208 * tests/regression.at (Web2c Actions): Remove comment that mentions
4209 --no-parser.
4210
4211 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4212
4213 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
4214 name user variables starting with `yy'. Just pass NULL instead of a
4215 dummy local &yylval to yypush_parse.
4216 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
4217 starting with `yy'.
4218
4219 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
4220
4221 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
4222 true since it's then always used regardless of whether yyoverflow is
4223 defined. Reported by Christian Burger at
4224 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
4225 * THANKS: Add Christian Burger.
4226
4227 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4228 node names: say "Decl Summary" not "Bison Declaration Summary".
4229
4230 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
4231
4232 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
4233 determine whether this function has already complained about an invalid
4234 value for a %define boolean variable, don't check whether Bison has
4235 ever examined the value. As written, the check was a tautology.
4236 Instead, record and check for this complaint using a separate muscle.
4237
4238 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4239
4240 Fix push parsing memory leak reported by Brandon Lucia at
4241 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
4242 * THANKS: Add Brandon Lucia.
4243 * data/push.c (yypstate_delete): Free the stack if it was reallocated
4244 but the parse never completed and thus freed it.
4245 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
4246 * tests/testsuite.at: Include push.at.
4247 * test/push.at: New.
4248 (Push Parsing: Memory Leak for Early Deletion): New test case.
4249
4250 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
4251
4252 Improve handling of multiple S/R conflicts in the same state and of S/R
4253 conflicts involving multiple reductions.
4254 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
4255 set for a state here or Bison will abort if it is reassigned on a
4256 later conflicted reduction in the same state.
4257 Similarly, don't finalize and assign the solved conflicts report here
4258 or it will be lost if it is reassigned on a later conflicted reduction
4259 in the same state.
4260 (set_conflicts): Instead, assign them both here after all S/R conflicts
4261 in the state have been fully examined.
4262 * src/print.c (shift_set): Rename to...
4263 (no_reduce_set): ... this.
4264 (print_reductions): Update for rename, and add %nonassoc error action
4265 tokens to no_reduce_set so that, when printing the first remaining
4266 reduction on an error action token, the reduction is enclosed in
4267 brackets.
4268 (print_results): Update for rename.
4269 * tests/conflicts.at (Solved conflicts report for multiple reductions
4270 in a state): New test case.
4271 (%nonassoc error actions for multiple reductions in a state): New test
4272 case.
4273
4274 * src/main.c (main): Don't depend on C99 features.
4275
4276 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4277
4278 * build-aux/.cvsignore: Add compile.
4279 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
4280 uniwidth.
4281
4282 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
4283
4284 * bootstrap (slurp): Create target directories that don't exist.
4285 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
4286
4287 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4288
4289 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
4290 than item number.
4291 * closure.c (closure): Likewise.
4292 * state.h (reductions): Comment sorting of rules.
4293 (state): Comment sorting of items.
4294
4295 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
4296
4297 Fix C++ test cases after recent Gnulib changes. Discussed starting at
4298 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
4299 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
4300 definition in order to avoid Gnulib headers since we don't use config.h
4301 here.
4302 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
4303 rather than AT_DATA so that config.h is included.
4304
4305 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
4306
4307 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
4308 instead of fprintf. Guard these functions with #if YYDEBUG instead of
4309 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
4310 and so that YYFPRINTF is guaranteed to be defined here.
4311
4312 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
4313
4314 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
4315 with...
4316 (muscle_percent_define_check_values): ... this more helpful function.
4317 Again, it's not used yet, but it will be.
4318 * src/muscle_tab.h: Likewise.
4319
4320 Improve some comments in parser table construction.
4321 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
4322 (generate_states): Don't mention ruleset, which is internal to closure.
4323 * src/closure.c (closure): Explain sorting of core and itemset, which
4324 is required for this function to behave correctly.
4325 * src/closure.h (closure): Mention sorting.
4326
4327 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
4328
4329 * src/lalr.c (state_lookahead_tokens_count): For code readability,
4330 move the check for disabled transitions to an aver since conflict
4331 resolution hasn't happened yet.
4332
4333 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
4334 labels a state as inconsistent just because it has error transitions.
4335 The original form of this check appeared in revision 1.1 of lalr.c,
4336 which was committed on 1991-12-21. Now (at least), changing the
4337 consistency label on such a state appears to have no useful effect in
4338 any of the places it is examined, which I enumerate below. The key
4339 point to understanding each item in this enumeration is that a state
4340 with an error transition is labelled consistent in the first place only
4341 if it has no rules, so the check cannot matter for states that have
4342 rules. (1) Labelling a state as inconsistent will cause set_conflicts
4343 to try to identify its conflicts, and a state must have *rules* to have
4344 conflicts. (2) Labelling a state as inconsistent will affect how
4345 action_row sets the default *rule* for the state. (3) Labelling a
4346 state as inconsistent will cause build_relations to add lookback edges
4347 to *rules* in that state.
4348 * src/state.h (struct state): Word the comment for member consistent
4349 more carefully.
4350
4351 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4352
4353 Don't depend on C99 features.
4354 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
4355 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
4356 * src/reader.c (check_and_convert_grammar): Fix for-loop.
4357 * src/state.c (state_mark_reachable_states): Fix for-loop.
4358 (state_remove_unreachable_states): Fix for-loop.
4359
4360 Don't widen struct state with member reachable just to temporarily
4361 record reachability. Instead, use a local bitset.
4362 * src/state.h (struct state): Remove member.
4363 * src/state.c (state_new): Don't initialize it.
4364 (state_mark_reachable_states): Rename to...
4365 (state_record_reachable_states): ... this, and use bitset.
4366 (state_remove_unreachable_states): Use bitset.
4367
4368 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
4369
4370 * src/Makefile.am (yacc): Quote target action commands properly so
4371 that the yacc script isn't corrupt. Reported by Hans Aberg at
4372 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
4373
4374 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
4375 the case of pure parsers. Reported by Frans Englich at
4376 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
4377 * THANKS: Add Frans Englich.
4378
4379 * NEWS (2.3a+): In the %code entry, reference section `Bison
4380 Declaration Summary' from the manual now since the %code summary has
4381 moved there.
4382 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
4383 in the rules section must be terminated by semicolons.
4384
4385 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
4386
4387 Extend the front-end API for %define variables to more completely
4388 mirror the back-end. This will be useful in the future.
4389 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
4390 Update comments to mention the new front-end counterparts of these
4391 macros.
4392 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
4393 for muscle_string_decode and muscle_location_decode.
4394 (muscle_string_decode): New static function.
4395 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
4396 (muscle_percent_define_get, muscle_percent_define_ifdef): New
4397 functions.
4398 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
4399 muscle_percent_define_get to mimic the b4_percent_define_flag_if
4400 implementation more closely.
4401 (muscle_percent_define_invalid_value): New function.
4402 * src/muscle_tab.h (muscle_percent_define_get,
4403 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
4404 Prototype.
4405
4406 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4407
4408 * NEWS (2.3a+): Mention yesterday's state-removal change.
4409 (2.3a): Remove the %language entry, which was added after 2.3a.
4410 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
4411 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
4412 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
4413 tests/existing.at: Update copyright date.
4414
4415 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4416
4417 If conflict resolution makes states unreachable, remove those states,
4418 report rules that are then unused, and don't report conflicts in those
4419 states.
4420 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
4421 New global function.
4422 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
4423 function.
4424 * src/main.c (main): After conflict resolution, remove the unreachable
4425 states and update all data structures that reference states by number.
4426 * src/state.c (state_new): Initialize each state's reachable member to
4427 false.
4428 (state_mark_reachable_states): New static function.
4429 (state_remove_unreachable_states): New global function.
4430 * src/state.h (struct state): Add member bool reachable.
4431 (state_remove_unreachable_states): Prototype.
4432 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4433 New test case.
4434 * tests/existing.at (GNU pic Grammar): Update test case output now that
4435 an unused rule is discovered.
4436
4437 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4438
4439 Minor code cleanup in parser table construction.
4440 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
4441 (new_itemsets, save_reductions): Update for rename to nitemset.
4442 * src/closure.c (nritemset): Rename to...
4443 (nitemset): ... this since the "r" appears to meaningless and isn't
4444 used in the comments.
4445 (closure): Update for rename.
4446 * src/closure.h (nritemset): Update extern to...
4447 (nitemset): ... this.
4448 * src/lalr.c (LA): Fix a typo in comments.
4449 * src/print.c (print_core): Update for rename to nitemset.
4450 * src/print_graph.c (print_graph): Likewise.
4451 * src/state.h: Fix some typos in header comments.
4452
4453 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
4454
4455 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
4456 still sticks to ASCII. Sorry!
4457
4458 * README-hacking: New file, taken mostly from coreutils, with changes
4459 for Bison. Contains much of the contents of:
4460 * README-cvs: Remove.
4461 * bootstrap: Sync from gnulib.
4462 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
4463 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
4464
4465 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
4466
4467 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
4468 Setzer.
4469 (Java Differences): Fix some typos.
4470 * THANKS: Add Sebastian Setzer.
4471
4472 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
4473
4474 * data/java.m4 (b4_single_class_if): Remove.
4475 (b4_abstract_if): Look at "%define abstract".
4476 (b4_lexer_if): New.
4477 (b4_union_name): Rename...
4478 (b4_yystype): ... to this. Map to "%define stype".
4479 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
4480 b4_maybe_throws): Fix quoting.
4481 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
4482 * data/lalr1.java (Lexer interface): Always define.
4483 (Lexer interface within parser class): Remove.
4484 (YYLexer class): New, used when "%code lexer" is present.
4485 (constructor): When "%code lexer" is used, pass %lex-param
4486 to the lexer constructor.
4487 (yylex, yyparse): Remove %lex-param from method invocations
4488 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
4489
4490 * doc/bison.texinfo (Java Bison Interface): Mention "%define
4491 abstract". Rename "%define union_name" to "%define stype".
4492 Rename method names according to previous patch.
4493 (Java Scanner Interface): Describe "%code lexer" instead of
4494 "%pure-parser" and "%define single_class".
4495 (Java Differences): Mention "%code lexer".
4496
4497 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
4498 Include scanner here, using macros from tests/local.at.
4499 (AT_DATA_CALC_Y): Remove final argument.
4500 (_AT_CHECK_JAVA_CALC): Likewise.
4501 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
4502 of %locations and %error-verbose.
4503 (main): Test with and without %lex-param.
4504 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
4505 (AT_BISON_OPTION_POPDEFS): Pop it.
4506
4507 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4508
4509 DJGPP spefic issue. Inhibit the use of disallowed characters for
4510 file name genertion on Win98, WinXP, etc. These are |<>":?*\
4511 and concern testsuite case 46.
4512 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
4513 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
4514 * djgpp/config.bat: Inhibit the use of disallowed characters.
4515
4516 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
4517
4518 Miscellaneous %define and %code cleanup.
4519 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
4520 values are interpreted.
4521 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
4522 documentation a little more.
4523 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
4524 muscle_percent_define_insert, muscle_percent_code_grow): New
4525 functions/macros.
4526 * src/muscle_tab.h (muscle_percent_define_insert,
4527 muscle_percent_code_grow): Prototype.
4528 * src/parse-gram.y (prologue_declaration): Use
4529 muscle_percent_define_insert and muscle_percent_code_grow when parsing
4530 %define and %code directives.
4531
4532 Make it easy to share %define boolean variables between the front-end
4533 and back-end. Though not used yet, this will be useful in the future.
4534 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
4535 Bison uses of names rather than just skeleton uses of names.
4536 (b4_percent_define_get, b4_percent_define_ifdef): Rename
4537 b4_percent_define_skeleton_variables(VARIABLE) to
4538 b4_percent_define_bison_variables(VARIABLE).
4539 (b4_percent_code_get, b4_percent_code_ifdef): Rename
4540 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
4541 b4_percent_code_bison_qualifiers(QUALIFIER).
4542 (b4_check_user_names_wrap): Update for renames.
4543 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
4544 muscle_percent_define_default): New functions mimicking
4545 b4_percent_define_flag_if and b4_percent_define_default.
4546
4547 For %define variables, report locations for invalid values and
4548 redefinitions.
4549 * data/bison.m4 (b4_percent_define_flag_if): Read
4550 b4_percent_define_loc(VARIABLE) to report the location of an invalid
4551 value for VARIABLE.
4552 (b4_percent_define_default): Save a special location in
4553 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
4554 must later be reported as invalid.
4555 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
4556 functions.
4557 (muscle_percent_define_insert): Record the location of VARIABLE in
4558 muscle percent_define_loc(VARIABLE), and use it to report the previous
4559 location for a redefinition.
4560 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
4561 (muscle_percent_define_default): Update like b4_percent_define_default.
4562 (muscle_grow_user_name_list): Rename to...
4563 (muscle_user_name_list_grow): ... this for consistency and use
4564 muscle_location_grow.
4565 * src/muscle_tab.h (muscle_location_grow): Prototype.
4566 * tests/input.at (%define errors): Update expected output.
4567 * tests/skeletons.at (%define boolean variables: invalid skeleton
4568 defaults): New test case.
4569
4570 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
4571
4572 * src/print.c (lookahead_set, state_default_rule): Remove.
4573 (print_reductions): Replace state_default_rule invocation with
4574 equivalent use of yydefact, which was computed in token_actions in
4575 tables.c.
4576 (print_results): Don't allocate lookahead_set.
4577
4578 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
4579
4580 * data/lalr1.java: Prefix all private members with yy.
4581
4582 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
4583
4584 Use YYFPRINTF instead of fprintf where appropriate. Reported by
4585 Sebastien Fricker at
4586 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
4587 * THANKS: Add Sebastien Fricker.
4588 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
4589 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
4590 accept a variable number of arguments.
4591
4592 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4593
4594 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
4595
4596 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4597
4598 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
4599 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
4600 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
4601
4602 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
4603
4604 Undo my 2007-02-07 change, switching back to the c-strcase module
4605 introduced in the 2007-02-03 change. Bruno Haible reported that
4606 the 2007-02-07 change would be dangerous in Turkish if we add a
4607 language whose name contains "i", since "i" is not lowercase "I"
4608 in Turkish.
4609 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
4610 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
4611 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
4612 * m4/.cvsignore: Remove strcase.m4.
4613 * src/getargs.c: Revert 2007-02-07 change, as follows.
4614 Include c-strcase.h.
4615 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
4616
4617 2007-02-11 Bruno Haible <bruno@clisp.org>
4618
4619 Enable the Java related testsuite tests when the only Java compiler
4620 found is a gcj < 4.3. Discussed at
4621 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
4622 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
4623
4624 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
4625
4626 * data/Makefile.am: Update copyright date.
4627 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
4628 yypstate_new returns NULL.
4629 (yypstate_new): Return NULL if malloc does.
4630 * src/reader.c (packgram): Move translation of rule actions from the
4631 beginning of packgram to...
4632 (check_and_convert_grammar): ... here right before packgram is invoked
4633 so it's easier to write more complete comments, and remove redundant
4634 code.
4635
4636 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
4637
4638 As in semantic actions, make @$ in %initial-action, %destructor, and
4639 %printer imply %locations.
4640 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
4641 scanning @$.
4642 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
4643 (@$ in %initial-action implies %locations,
4644 @$ in %destructor implies %locations,
4645 @$ in %printer implies %locations): ... these new test cases.
4646
4647 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
4648
4649 Undo most of the 2007-02-03 change, switching to the strcase module
4650 now that gnulib strcase has been fixed.
4651 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
4652 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
4653 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
4654 * m4/.cvsignore: Add strcase.m4.
4655 * src/getargs.c: Revert 2007-02-03 change, as follows.
4656 Don't include c-strcase.h.
4657 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
4658 strcasecmp has "unspecified behavior" outside the POSIX locale,
4659 but it works fine in practice if at least one argument is ASCII,
4660 as is the case in Bison.
4661
4662 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
4663
4664 * tests/java.at: Skip tests if only one of javac/java is present.
4665 Reported by Joel E. Denny.
4666 * tests/atlocal.in: Adjust copyright years.
4667
4668 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
4669
4670 * data/lalr1.java (Stack): Work around old verifiers that disallow
4671 access to the private fields of an inner class, from the outer class.
4672 We can make Stack's fields public because user code doesn't have access
4673 to the instance of Stack used by parse(). Reported by Paul Eggert.
4674
4675 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
4676
4677 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
4678 the right spot for these files?
4679 * bootstrap.conf (gnulib_modules): Add c-strcase.
4680 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
4681 c-strncasecmp.c.
4682 * src/getargs.c: Include c-strcase.h.
4683 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
4684 to avoid unspecified behavior.
4685
4686 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
4687
4688 * doc/bison.texinfo (Decl Summary): Correct typo.
4689
4690 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
4691
4692 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
4693 Complain if the value does not match empty, "true" or "false".
4694 * data/c++.m4: Adjust default definitions of %define variables.
4695 * data/java.m4: Adjust default definitions of %define variables.
4696 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
4697 to above behavior.
4698 * tests/input.at (Boolean %define variables): Test new behavior.
4699
4700 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
4701
4702 * NEWS: Mention java.
4703 * TODO: Remove things that are done.
4704 * bootstrap.conf: Add javacomp-script and javaexec-script.
4705 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
4706
4707 * data/Makefile.am: Add new files.
4708 * data/java-skel.m4: New.
4709 * data/java.m4: New.
4710 * data/lalr1.java: New.
4711
4712 * doc/bison.texinfo: Put "A Complete C++ Example" under
4713 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
4714 under Other Languages.
4715
4716 * src/getargs.c (valid_languages): Add Java.
4717 * src/getargs.h (struct bison_language): Update size of string fields.
4718
4719 * tests/Makefile.am: Add java.at.
4720 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
4721 * tests/java.at: New.
4722 * tests/testsuite.at: Include it.
4723
4724 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
4725
4726 Clean up.
4727 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
4728 at_directive_argv arguments so these no longer have to be global
4729 variables. Also, update the implementation for the following changes.
4730 (fail_for_at_directive_too_many_args,
4731 fail_for_at_directive_too_few_args): Add at_directive_name argument.
4732 (at_directive_name): Remove as at_directive_argv[0] will be used for
4733 this now.
4734 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
4735 for the directive name.
4736 (at_directive_argc, at_directive_argv): Make these local within
4737 skel_lex instead of global.
4738 (INITIAL): Update directive start action for above changes.
4739 (SC_AT_DIRECTIVE_ARG): Rename to...
4740 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
4741 (SC_AT_DIRECTIVE_SKIP_WS): Update.
4742 (scan_skel): Move yylex_destroy to...
4743 (skel_scanner_free): ... here.
4744 * tests/skeletons.at (installed skeleton file name): Rename to...
4745 (installed skeleton file names): ... this.
4746
4747 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
4748
4749 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4750 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
4751 Summary" not "Directives".
4752 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
4753 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
4754 since the former is now the more complete one.
4755 (Prologue Alternatives): Likewise and do the same for %defines.
4756 (Table of Symbols): Add summary of %code, add summary of %define, and
4757 move full %code documentation to...
4758 (Decl Summary): ... here for consistency with other entries in these
4759 sections.
4760 Move %define entry in order to keep this list alphabetized.
4761 Reword %define entry a little to put less emphasis on the skeleton
4762 concept, which most users shouldn't have to think about.
4763
4764 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
4765
4766 Adjust to recent gnulib changes.
4767 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
4768 Add string.h, string_.h, unistd_.h, wchar_.h.
4769 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
4770 * src/system.h: Don't include <stpcpy.h>; this is now done by
4771 <string.h>.
4772
4773 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
4774
4775 Simplify implementation of unqualified %code, implement macros for
4776 uniform treatment of boolean %define flags. Document %define.
4777 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
4778 b4_percent_code_ifdef): New.
4779 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
4780 * data/c++.m4: Define default value for global_tokens_and_yystype.
4781 * data/glr.cc: Likewise.
4782 * data/location.cc: Use b4_percent_define_flag_if.
4783
4784 * doc/bison.texinfo (Decl Summary): Document %define.
4785
4786 * src/parse-gram.y (Unqualified %code): Change muscle name to
4787 b4_percent_code().
4788 (content.opt): Default to empty.
4789
4790 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
4791
4792 Implement support for relative and absolute skeleton file names.
4793 Discussed starting at
4794 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
4795 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
4796 (Bison Options): Document in --skeleton entry.
4797 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
4798 full_skeleton can't necessarily hold all of pkgdatadir.
4799 If the specified skeleton file name contains a `/', don't prepend
4800 pkgdatadir.
4801 * src/parse-gram.y (prologue_declaration): If the specified skeleton
4802 file name contains a `/', prepend the grammar file directory.
4803 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
4804 * skeletons.at: New file.
4805 (relative skeleton file names): New test case.
4806 (installed skeleton file names): New test case.
4807 * tests/testsuite.at: Include skeletons.at.
4808
4809 * bootstrap: Update copyright to 2007.
4810
4811 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
4812
4813 * bootstrap: Remove occurrences of .#bootmp from the files.
4814
4815 2007-01-17 Akim Demaille <akim@epita.fr>
4816
4817 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
4818 nonterminals.
4819 Use per-type %printer.
4820
4821 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
4822
4823 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
4824 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4825 djgpp/config.site, src/files.c, src/files.h, src/main.c,
4826 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
4827 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
4828 tests/glr-regression.at, tests/input.at, tests/local.at,
4829 tests/output.at, tests/torture.at: Update copyright to 2007.
4830
4831 2007-01-16 Akim Demaille <akim@epita.fr>
4832
4833 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
4834 error code.
4835 (Calc++ Scanner): Exit with failure if we can't open the input
4836 file.
4837 Accept "-" standing for stdin.
4838 (Calc++ Top Level): Print the result only if the parsing was
4839 successful.
4840
4841 2007-01-16 Akim Demaille <akim@epita.fr>
4842
4843 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
4844
4845 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
4846 and Joel E. Denny <jdenny@ces.clemson.edu>
4847
4848 Clean up %define and %code implementation in M4 some. Most
4849 importantly, rename all related macros to be in the b4_percent_define
4850 and b4_percent_code namespaces. Also, complete support for `.' in
4851 %define variable names and %code qualifiers.
4852 * data/bison.m4 (b4_check_user_names): Check for special
4853 "SKELETON-NAMESPACE(name)" macros instead of using two nested
4854 m4_foreach loops.
4855 (b4_get_percent_define, b4_get_percent_code): Rename to...
4856 (b4_percent_define_get, b4_percent_code_get): ... these.
4857 Extend documentation with examples.
4858 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
4859 b4_percent_define_skeleton_variables and
4860 b4_percent_code_skeleton_qualifiers.
4861 Expect any value for the %define variable `foo' to be stored in the
4862 macro named `b4_percent_define(foo)'; expect any %code blocks for the
4863 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
4864 expect any unqualified %code blocks to be stored in a macro named
4865 `b4_percent_code_unqualified'.
4866 Use m4_indir so that %define variable names and %code qualifiers can
4867 contain `.', which is allowed by the grammar parser.
4868 (b4_percent_define_default): New macro to set a default value for a
4869 %define variable.
4870 (m4_wrap): Update wrapped code, and fix some underquoting.
4871 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
4872 Expect grammar uses of %define variables and %code qualifiers to be
4873 defined in b4_percent_define_user_variables and
4874 b4_percent_code_user_qualifiers.
4875 * data/c++.m4: Use b4_percent_define_default rather than
4876 m4_define_default. Fix some underquoting. Skeleton usage of %define
4877 variable define_location_comparison now implies skeleton usage of
4878 %define variable filename_type.
4879 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4880 data/push.c, data/yacc.c: Update macro names.
4881 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
4882 muscle names.
4883
4884 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4885
4886 DJGPP specific issues.
4887
4888 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
4889 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
4890
4891 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4892
4893 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
4894 run parsers in all tests so that Valgrind is invoked during
4895 maintainer-check-valgrind.
4896 (Duplicate representation of merged trees): Free all semantic values.
4897 (Duplicated user destructor for lookahead): Likewise.
4898
4899 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4900
4901 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
4902 command-line prefix.
4903 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
4904 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
4905 miss Valgrind messages.
4906 (Exploding the Stack Size with Malloc): Likewise.
4907
4908 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4909
4910 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
4911 locals. Reported by Juan Manuel Guerrero at
4912 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
4913 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
4914 Fix some indentation also.
4915 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
4916 explaining this issue.
4917
4918 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
4919 and Joel E. Denny <jdenny@ces.clemson.edu>
4920
4921 Simplify union and prologue handling, and escape union and lex/parse
4922 params with digraphs.
4923 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
4924 values to the empty string since these are no longer guaranteed
4925 initialized by the front-end.
4926 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
4927 braces around b4_user_stype since this is no longer done by the
4928 front-end.
4929 * src/files.c, src/files.h (pre_prologue_obstack,
4930 post_prologue_obstack): Remove.
4931 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
4932 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
4933 with digraphs. This fixes lex params and parse params.
4934 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
4935 * src/output.c (prepare): Remove muscle insertion of the prologues.
4936 (output): Remove freeing of pre_prologue_obstack and
4937 post_prologue_obstack.
4938 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
4939 than prologue_augment for prologue parsing so you don't need prologue
4940 obstacks.
4941 (grammar_declaration): For %union RHS, use `braceless' instead of
4942 "{...}" so that braces are already stripped and code is escaped with
4943 digraphs.
4944 * src/reader.c (prologue_augment): Remove.
4945 (reader): Remove initialization of pre_prologue_obstack and
4946 post_prologue_obstack.
4947 * src/reader.h (prologue_augment): Remove.
4948
4949 * data/c.m4: Remove stray parenthesis.
4950
4951 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4952
4953 Remove quotes from variables names in %define directives and from
4954 qualifiers in %code directives, and restrict the characters that are
4955 allowed in them to M4-friendly ones. For %define, continue to support
4956 the quoted form as a deprecated feature. Discussed starting at
4957 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
4958 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
4959 %code.
4960 * doc/bison.texinfo (Prologue Alternatives): Update.
4961 (Decl Summary): In %defines entry, update mention of `%code requires'
4962 and `%code provides'.
4963 (C++ Location Values): Update %define uses.
4964 (Calc++ Parser Interface): Likewise.
4965 (Calc++ Parser): Likewise, and update `%code requires' uses.
4966 (Table of Symbols): Update %code documentation.
4967 * src/parse-gram.y (prologue_declaration): For %define variables, use
4968 `variable' instead of `STRING'.
4969 (grammar_declaration): For %code qualifiers, use `ID' instead of
4970 `STRING'.
4971 (variable): New nonterminal that takes an `ID' or a `STRING'.
4972 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
4973 and %define uses.
4974 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
4975 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
4976 (%define errors): Update %define uses.
4977
4978 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4979
4980 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
4981 instead of muscle_insert for %define values so that M4-special
4982 characters are replaced with digraphs.
4983 * tests/input.at (%define errors): Extend to check weird values.
4984
4985 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4986
4987 Instead of having skeletons declare all valid %define variables and
4988 %code qualifiers, provide macros that retrieve the associated values
4989 and build these lists automatically. Thus Bison will now warn when a
4990 variable or qualifier is not used by the skeleton in the current
4991 invocation regardless of whether it might sometimes be used by that
4992 skeleton in other invocations. Also, move all %define value macros to
4993 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
4994 form, which is replaced by %code.
4995 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
4996 (b4_check_user_names): ... this, and change the series of valid name
4997 arguments to a single list argument for names used in the skeleton
4998 similar to the existing list argument for names used in the grammar.
4999 Warn instead of complaining.
5000 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
5001 values and %code code, to format %code code properly, and to build
5002 lists of all %define variables and %code qualifiers used in the
5003 skeleton: b4_skeleton_percent_define_variables and
5004 b4_skeleton_percent_code_qualifiers.
5005 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
5006 Remove, and...
5007 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
5008 the skeleton names lists can finish building first. In place of
5009 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
5010 expect the lists b4_user_percent_define_variables and
5011 b4_user_percent_code_qualifiers.
5012 * data/c++.m4: Where setting default values for b4_parser_class_name,
5013 b4_location_type, b4_filename_type, b4_namespace, and
5014 b4_define_location_comparison, update their names to the
5015 b4_percent_define_ namespace.
5016 * data/glr.c: Don't use b4_check_percent_define_variables and
5017 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5018 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
5019 (b4_parser_class_name, b4_namespace): Define these using
5020 b4_get_percent_define for parser_class_name and namespace.
5021 * data/location.cc: Use b4_get_percent_define.
5022 * data/push.c: Don't use b4_check_percent_define_variables and
5023 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5024 * data/yacc.c: Likewise, and don't call m4_exit in
5025 b4_use_push_for_pull_if or m4_wrap code will never execute.
5026 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
5027 Rename to...
5028 (muscle_grow_user_name_list): ... this for consistency with the
5029 terminology used in bison.m4.
5030 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
5031 %define variable names, and rename muscle used_percent_define_variables
5032 to user_percent_define_variables.
5033 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
5034 user_percent_code_qualifiers.
5035 (content): Remove.
5036 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
5037 {CODE} form is no longer accepted.
5038 * tests/input.at (Reject bad %code qualifiers): Rename to...
5039 (Reject unused %code qualifiers): ... this, and update test output.
5040 (%define error): Update test output.
5041
5042 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
5043
5044 Check for unrecognized %define variables similar to checking for
5045 unrecognized %code qualifiers. Check for redefined %define variables.
5046 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
5047 generalizes...
5048 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
5049 (b4_check_percent_define_variables): New, also wraps it.
5050 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
5051 variables using b4_check_percent_define_variables.
5052 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
5053 all those exercised in the test suite and all those listed in the
5054 `Default values' section of c++.m4. Are there others?
5055 * data/push.c, data/yacc.c: Declare no valid %define variables.
5056 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
5057 similar to muscle_find, but it works even when the muscle stores a
5058 const value.
5059 (muscle_grow_used_name_list): New function for constructing the used
5060 name list muscles that b4_check_for_unrecognized_names requires.
5061 * src/parse-gram.y (prologue_declaration): Warn if a variable is
5062 %define'd more than once. Define the b4_used_percent_define_variables
5063 muscle with muscle_grow_used_name_list.
5064 (grammar_declaration): Abbreviate %code code with
5065 muscle_grow_used_name_list.
5066 * tests/input.at (%define errors): New.
5067
5068 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5069
5070 Provide warn_at, complain_at, and fatal_at function callbacks to the
5071 skeletons, and use this for %code qualifier complaints.
5072 * data/bison.m4 (b4_error_at): New, invoked by...
5073 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
5074 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
5075 @fatal_at(...@) directives.
5076 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
5077 qualifiers in b4_used_percent_code_qualifiers and to use
5078 b4_complain_at.
5079 * src/location.c, src/location.h (boundary_set_from_string): New global
5080 function.
5081 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
5082 function.
5083 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
5084 to b4_used_percent_code_qualifiers.
5085 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
5086 function.
5087 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
5088 (lineno): Rename to...
5089 (out_lineno): ... this so I don't misunderstand it again.
5090 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
5091 here; these newlines are in the input but not the output file.
5092 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
5093 (at_directive_perform): ... this new static function, and add handling
5094 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
5095 directives.
5096 * tests/input.at (Reject bad %code qualifiers): Update test output with
5097 locations and extend.
5098
5099 * tests/output.at (Output file name: [, Output file name: ]): Remove
5100 bogus comment about these tests failing.
5101
5102 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5103
5104 Clean up b4_check_percent_code_qualifiers a little.
5105 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
5106 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
5107 documentation and add examples.
5108 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
5109 qualifiers here.
5110
5111 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
5112
5113 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
5114 unreliable -- especially when they're hidden inside another macro.
5115 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
5116 data/c.m4: Remove m4_divert(-1).
5117 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5118 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
5119 m4_divert_push(0) and m4_divert_pop(0).
5120 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
5121 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
5122 pushed and popped by m4sugar, should be first on the stack.
5123
5124 Provide warn, complain, and fatal function callbacks to the skeletons.
5125 This provides more flexibility than m4_fatal, improves the error
5126 message format, and captures messages for translation. Discussed
5127 starting at
5128 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
5129 * data/bison.m4 (b4_error): New, invoked by...
5130 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
5131 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
5132 directives. Because these M4 macros might be called when the current
5133 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
5134 the previous removal of uses of m4_divert, which caused trouble.
5135 (b4_check_percent_code_qualifiers): Use b4_complain instead of
5136 m4_fatal to report unrecognized %code qualifiers.
5137 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
5138 push parser requests.
5139 * data/glr.c: Use b4_complain instead of m4_fatal to report
5140 non-deterministic push parser requests.
5141 Update @output usage to @output(...@) form.
5142 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
5143 report missing %defines. Update @output usage to @output(...@) form.
5144 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
5145 @output(...@) form.
5146 * src/main.c (main): Invoke skel_scanner_free.
5147 * src/scan-skel.h (skel_scanner_free): Prototype new function.
5148 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
5149 obstack_for_string from flex-scanner.h.
5150 (YY_DECL): Use to declare skel_lex static.
5151 (decode_at_digraphs): Remove; now handled in the new
5152 SC_AT_DIRECTIVE_ARG start condition.
5153 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
5154 functions.
5155 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
5156 at_directive_argv): New static globals.
5157 (INITIAL): Use fail_for_invalid_at.
5158 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
5159 recognize the start of a generalized `@directive(...@)' form and
5160 start...
5161 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
5162 directive args (using the new obstack_for_string), to decode the
5163 contained @ diagraphs, and to perform the directive. It recognizes
5164 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
5165 @output(...@).
5166 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
5167 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
5168 `@,'.
5169 (scan_skel): Initialize obstack_for_string on the first call.
5170 (skel_scanner_free): New function to free obstack_for_string.
5171 * tests/input.at (Reject bad %code qualifiers): Update test output.
5172
5173 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
5174
5175 Consolidate the 4 prologue alternative directives (%code, %requires,
5176 %provides, and %code-top) into a single %code directive with an
5177 optional qualifier field. Discussed at
5178 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
5179 * NEWS (2.3a+): Rewrite the existing entry for the prologue
5180 alternatives.
5181 * doc/bison.texinfo (Prologue Alternatives): Update.
5182 (Decl Summary): Update to %code "requires" and %code "provides".
5183 (Calc++ Parser): Update to %code "requires".
5184 (Table of Symbols): Remove entries for %requires, %provides, and
5185 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
5186 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
5187 are replaced by b4_percent_code_provides and b4_percent_code_requires,
5188 which are skeleton-specific.
5189 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
5190 declare what %code qualifiers it supports and to complain if any other
5191 qualifiers were used in the grammar.
5192 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
5193 and b4_user_code([b4_percent_code_provides]) in place of
5194 b4_user_requires and b4_user_provides.
5195 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
5196 Add b4_user_code([b4_percent_code_top]) and
5197 b4_user_code([b4_percent_code]).
5198 Invoke b4_check_percent_code_qualifiers.
5199 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5200 PERCENT_REQUIRES): Remove.
5201 (grammar_declaration): Remove RHS's for %code-top, %provides, and
5202 %requires. Rewrite the %code RHS as the unqualified form defining the
5203 muscle b4_percent_code. Add another RHS for the qualified %code form,
5204 which defines muscles of the form b4_percent_code_QUALIFIER and the
5205 b4_used_percent_code_qualifiers muscle.
5206 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5207 PERCENT_REQUIRES): Remove.
5208 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
5209 %code "requires" and %code "provides".
5210 * tests/input.at (Reject bad %code qualifiers): New.
5211
5212 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5213
5214 Use the new code_props interface for destructors and printers.
5215 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
5216 printer_location members, and change the type of the destructor and
5217 printer members to code_props.
5218 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
5219 symbol_printer_get, semantic_type_destructor_set,
5220 semantic_type_printer_set, default_tagged_destructor_set,
5221 default_tagless_destructor_set, default_tagged_printer_set,
5222 default_tagless_printer_set): Use code_props in arguments and return
5223 types in place of char const * and location.
5224 (symbol_destructor_location_get, symbol_printer_location_get): Remove
5225 since the locations are now contained in the return of
5226 symbol_destructor_get and symbol_printer_get.
5227 * src/output.c (symbol_destructors_output, symbol_printers_output):
5228 Replace with...
5229 (symbol_code_props_output): ... this to eliminate duplicate code.
5230 (output_skeleton): Update to use symbol_code_props_output.
5231 * src/reader.c (symbol_should_be_used): Update use of
5232 symbol_destructor_get.
5233 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5234 Update uses of the various _destructor_set and _printer_set functions.
5235 * src/symtab.c: (default_tagged_destructor_location,
5236 default_tagless_destructor_location, default_tagged_printer_location,
5237 default_tagless_printer_location): Remove since we...
5238 (default_tagged_destructor, default_tagless_destructor,
5239 default_tagged_printer, default_tagless_printer): ... change the type
5240 of these to code_props.
5241 (symbol_new, semantic_type_new, symbol_destructor_set,
5242 semantic_type_destructor_set, symbol_destructor_get,
5243 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
5244 symbol_check_alias_consistency, default_tagged_destructor_set,
5245 default_tagless_destructor_set, default_tagged_printer_set,
5246 default_tagless_printer_set): Update.
5247 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
5248 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
5249 code_props members.
5250 (symbol_print): Use SYMBOL_CODE_PRINT.
5251
5252 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5253
5254 Use the new code_props interface for rule actions.
5255 * src/symlist.h (symbol_list): Replace action, action_location, and
5256 used members with a code_props action_props member.
5257 * src/reader.c (symbol_should_be_used, grammar_rule_check,
5258 grammar_midrule_action, grammar_current_rule_merge_set,
5259 grammar_current_rule_symbol_append, packgram): Update.
5260 * src/scan-code.h (translate_rule_action): Remove, no longer used.
5261 * src/scan-code.l (handle_action_dollar): Update.
5262 (translate_rule_action): Remove, no longer used.
5263 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
5264
5265 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5266
5267 Use the new code_props interface in parse-gram.y.
5268 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
5269 Update all uses of translate_* functions to use the new code_props
5270 interface and to use gram_scanner_last_string_free and
5271 code_scanner_last_string_free where possible.
5272 (grammar_declaration): symbol_list_destructor_set and
5273 symbol_list_printer_set now perform the translation, so don't do it
5274 here. Use gram_scanner_last_string_free where possible.
5275 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
5276 translate_code): Remove, no longer used.
5277 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
5278 symbol_list_printer_set): Perform code translation here rather than
5279 depending on the caller to do so.
5280
5281 * src/symlist.h (struct symbol_list): Correct some documentation typos.
5282 * src/scan-gram.h (gram_last_string): Remove declaration.
5283 * src/scan-gram.l (last_string): Declare it static.
5284
5285 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5286
5287 Encapsulate code properties and related functionality for the various
5288 destructors, printers, and actions into a code_props structure and
5289 interface. This patch merely implements code_props in scan-code.h and
5290 scan-code.l. Future patches will rewrite other modules to use it.
5291 Discussed starting at
5292 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
5293 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
5294 consistently initialize const structs that have an empty location
5295 field.
5296 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
5297 to ensure consistency.
5298 * src/scan-code.h (code_props): New structure.
5299 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
5300 function, macro, and const global variable for initializing a
5301 code_props with no code.
5302 (code_props_plain_init, code_props_symbol_action_init,
5303 code_props_rule_action_init, code_props_translate_code): The rest of
5304 the new code_props functional interface. Among other things, the init
5305 functions set the code_props kind field so that
5306 code_props_translate_code will know whether to behave like
5307 translate_symbol_action, translate_rule_action, or translate_code.
5308 These old translate functions must remain until all other modules are
5309 updated to use the new code_props interface.
5310 (code_scanner_last_string_free): New function similar to
5311 gram_scanner_last_string_free.
5312 (code_scanner_free): Add documentation.
5313 * src/scan-code.l: Implement the new interface.
5314 (code_lex): Make it static, add a code_props* argument, and remove the
5315 rule argument.
5316 (last_string): New static global similar to the one in scan-gram.l.
5317 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
5318 instead of rule.
5319 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
5320 code_props since Bison may one day use this information for destructors
5321 and printers.
5322 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
5323 (handle_action_dollar): Use symbol_list_n_get and set used flag
5324 directly since symbol_list_n_used_set is removed.
5325 (translate_action): Add a code_props* argument and remove the rule,
5326 action, and location arguments. Pass the code_props* on to code_lex.
5327 (translate_rule_action, translate_symbol_action, translate_code):
5328 Rewrite as wrappers around the new code_props interface.
5329 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
5330 it would eventually need to break the encapsulation of code_props.
5331
5332 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5333
5334 * etc/.cvsignore: New.
5335
5336 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5337
5338 Add maintainer-push-check to run maintainer-check using push parsing in
5339 place of pull parsing where available.
5340 * Makefile.am (maintainer-push-check): New.
5341 * data/bison.m4 (b4_use_push_for_pull_if): New.
5342 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
5343 appropriately based on their existing values.
5344 (yypush_parse): Don't print push-parser-specific diagnostics if push
5345 parsing is being used in place of pull parsing.
5346 * data/yacc.c: If push parsing should replace pull parsing, redirect to
5347 push.c.
5348 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
5349 variable, and insert b4_use_push_for_pull_flag into muscles.
5350 * tests/Makefile.am (maintainer-push-check): New.
5351
5352 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5353
5354 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
5355 (whether successful or failed) so that yypush_parse can be invoked
5356 again to start a new parse using the same yypstate.
5357 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
5358 check multiple yypull_parse invocations on the same yypstate. For pull
5359 mode, extend to check multiple yyparse invocations.
5360 (Exploding the Stack Size with Alloca): Extend to try with
5361 %push-pull-parser.
5362 (Exploding the Stack Size with Malloc): Likewise.
5363
5364 * tests/calc.at (Simple LALR Calculator): Don't specify
5365 %skeleton "push.c" since %push-pull-parser implies that now.
5366 * tests/headers.at (export YYLTYPE): Don't check for the push
5367 declarations. Otherwise, this test case can't be used to see if push
5368 mode can truly emulate pull mode.
5369 * tests/input.at (Torturing the Scanner): Likewise.
5370 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
5371 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
5372 AT_YACC_IF, which now includes the case of push mode since %skeleton
5373 need not be used for push mode. This will be more intuitive once
5374 push.c is renamed to yacc.c.
5375
5376 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5377
5378 For push mode, convert yyparse from a macro to a function, invoke yylex
5379 instead of passing a yylexp argument to yypull_parse, and don't
5380 generate yypull_parse or yyparse unless %push-pull-parser is declared.
5381 Discussed starting at
5382 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
5383 * data/bison.m4 (b4_pull_if): New.
5384 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
5385 * data/push.c: Improve M4 quoting a little.
5386 (b4_generate_macro_args, b4_parenthesize): Remove.
5387 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
5388 any time a pull parser is requested.
5389 Don't #define this as a wrapper around yypull_parse. Instead, when
5390 both push and pull are requested, make it a function that does that
5391 same thing.
5392 (yypull_parse): If there's a b4_prefix, #define this to
5393 b4_prefix[pull_parse] when both push and pull are requested.
5394 Don't define this as a function unless both push and pull are
5395 requested.
5396 Remove the yylexp argument and hard-code yylex invocation instead.
5397 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
5398 %push-parser.
5399 * src/getargs.c (pull_parser): New global initialized to true.
5400 * getargs.h (pull_parser): extern it.
5401 * src/output.c (prepare): Insert pull_flag muscle.
5402 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
5403 (prologue_declaration): Set both push_parser and pull_parser = true for
5404 %push-pull-parser. Set push_parser = true and pull_parser = false for
5405 %push-parser.
5406 * src/scan-gram.l: Don't accept %push_parser as an alternative to
5407 %push-parser since there's no backward-compatibility concern here.
5408 Scan %push-pull-parser.
5409 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
5410 instead of %push-parser.
5411 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
5412 prototype it in the module that calls yyparse.
5413 * tests/input.at (Torturing the Scanner): Likewise.
5414 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
5415
5416 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
5417
5418 Update etc/bench.pl. Optimize push mode a little (the yyn change
5419 deserves most of the credit).
5420 * Makefile.am (SUBDIRS): Add etc subdirectory.
5421 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
5422 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
5423 yytoken, yyval, and yyloc declarations to...
5424 (yyparse or yypush_parse): ... here to improve performance. For
5425 yypush_parse invocations after the first, be sure to assign yyn its old
5426 value again.
5427 (yypstate_new): Don't bother initializing the yyresult field since the
5428 initial value isn't used.
5429 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
5430 remove the #define that, in push mode, set it to yyps->NAME.
5431 * etc/Makefile.am: New.
5432 * etc/bench.pl: Remove and build it instead from...
5433 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
5434 "tests/bison" from the build directory by default rather than just
5435 invoking "bison" from $PATH.
5436 (calc_grammar): Update push parser code: don't declare yylval globally,
5437 don't define yyparse_wrapper, and don't #define yyparse.
5438 (bench_grammar): Update to check all working combinations of yacc.c,
5439 push.c, impure, pure, pull, and push.
5440
5441 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5442
5443 For push mode, add pull wrappers around yypush_parse.
5444 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
5445 (yypull_parse): New function wrapping yypush_parse.
5446 (yyparse): New #define wrapping yypull_parse.
5447 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
5448 is declared.
5449 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
5450 prototype yylex in the module that calls yyparse, and don't prototype
5451 yyparse there. Otherwise, the yyparse expansion won't compile.
5452 * tests/input.at (Torturing the Scanner): Likewise.
5453
5454 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5455
5456 Enable push parsers to operate in impure mode. Thus, %push-parser no
5457 longer implies %pure-parser. The point of this change is to move
5458 towards being able to test the push parser code by running the entire
5459 test suite as if %push-parser had been declared.
5460 * data/push.c (yypush_parse): For impure mode, remove the
5461 yypushed_char, yypushed_val, and yypushed_loc arguments.
5462 Instead, declare these as local variables initialized to the global
5463 yychar, yylval, and yylloc.
5464 For the first yypush_parse invocation only, restore the initial values
5465 of these global variables when it's time to read a token since they
5466 have been overwritten.
5467 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
5468 %push-parser.
5469 * tests/calc.at (Simple LALR(1) Calculator): Always declare
5470 %pure-parser along with %push-parser since this test case was designed
5471 for pure push parsers.
5472 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
5473 (AT_YACC_OR_PUSH_IF): New.
5474 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
5475 add a note that it's still wrong for some cases (as it has been for a
5476 while).
5477 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
5478 %push-parser no longer implies %pure-parser.
5479
5480 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5481
5482 Remove some unnecessary differences between the pull parser code and
5483 the push parser code. This patch enables yynerrs in push mode.
5484 * data/push.c: Reformat M4 a little.
5485 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
5486 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
5487 because push mode is on. Instead, if pure mode is on, move yynerrs
5488 to...
5489 (b4_declare_parser_state_variables): ... here.
5490 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
5491 to yyps->NAME so it can be used in yypush_parse.
5492 (yypush_parse): Don't omit uses of yynerrs in push mode.
5493
5494 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5495
5496 Fix bug such that the first pushed token's value and location are
5497 sometimes overwritten (sometimes by %initial-action) before being used.
5498 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
5499 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
5500 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
5501 more closely mimic the pull parser logic.
5502 Don't copy the pushed token to yychar, yylval, and yylloc until it's
5503 time to read a token, which is after any initialization of yylval and
5504 yylloc.
5505 (gottoken): Rename label to...
5506 (yyread_pushed_token): ... for clarity and to avoid infringing on the
5507 user namespace.
5508
5509 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5510
5511 Rearrange initialization of the parser state variables so that the
5512 skeleton doesn't have to have a copy for pull mode and another for push
5513 mode. This patch also fixes at least a bug such that yylloc was not
5514 initialized (with b4_location_initial_line and
5515 b4_location_initial_column) upon calling yypush_parse. However, that
5516 initialization now overwrites the first token's location;
5517 %initial-action assigning @$ already did the same thing, and both bugs
5518 will be fixed in a later patch.
5519 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
5520 (b4_declare_parser_state_variables): Remove initialization of yytoken,
5521 yyss, yyvs, yyls, and yystacksize.
5522 (yypstate_new): Remove initialization of some yypstate fields: yystate,
5523 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
5524 yylsp.
5525 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
5526 yyps->NAME so it can be used in yypush_parse.
5527 (yyparse or yypush_parse): For yypush_parse, don't print the
5528 "Starting parse" diagnostic for invocations after the first.
5529 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
5530 yypush_parse, only do it for the first invocation.
5531 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
5532 initialization to occur in yypush_parse but only on the first
5533 invocation.
5534
5535 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5536
5537 * data/push.c: Add CPP guards around push parser declarations in both
5538 the header and the code file.
5539 In the code file, move the push parser declarations to the same place
5540 they appear in the header file.
5541 Clean up the M4 some, especially the inconsistent underquoting in
5542 some b4_c_function_def and b4_c_function_decl uses.
5543
5544 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5545
5546 Encapsulate the push parser state variables into an M4 macro so the
5547 push skeleton doesn't have to list them again for pull mode's yyparse.
5548 For push mode, remove yypush_parse's local equivalents of these
5549 variables to eliminate unnecessary copying between the two sets at
5550 run-time. This patch also fixes at least a bug related to multiple
5551 %initial-action invocations in push mode.
5552 * data/push.c (b4_declare_parser_variables): Rename to...
5553 (b4_declare_scanner_communication_variables): ... this for clarity and
5554 update both uses.
5555 (b4_declare_yyparse_variables): Remove and move its contents to the one
5556 spot where it was invoked.
5557 (b4_declare_parser_state_variables): New macro containing the parser
5558 state variables required by push mode.
5559 (struct yypstate): Replace all fields but yynew with
5560 b4_declare_parser_state_variables.
5561 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
5562 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
5563 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
5564 (yyparse or yypush_parse): For yyparse in pull mode, replace local
5565 parser state variable declarations with
5566 b4_declare_parser_state_variables.
5567 Don't initialize parser state variables when calling yypush_parse since
5568 yypstate_new already does that.
5569 Invoke the user's initial action only upon the first yypush_parse
5570 invocation.
5571 Remove all code that copies between the local parser state variables
5572 and the yypstate.
5573
5574 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5575
5576 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
5577 prevent a name collision in a future patch where these names will
5578 sometimes be #define'd.
5579 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
5580 since it no longer has the same name as the existing argument.
5581 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
5582
5583 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5584 and Joel E. Denny <jdenny@ces.clemson.edu>
5585
5586 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
5587 that the argument is case-insensitive, and there's no `=' here.
5588 For the %skeleton entry, mention that %language is better.
5589 (Bison Options): Likewise for --language and --skeleton. Move the
5590 --skeleton entry so that the `Tuning the parser' section is sorted
5591 alphabetically on long options.
5592 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
5593 %language directive in detail here; cross-reference the %language
5594 documentation instead.
5595 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
5596 `%require "2.3b"' so that the example is always up-to-date.
5597 (Table of Symbols): Add entries for %language and %skeleton.
5598 * examples/extexi (normalize): Instead of replacing every %require
5599 argument with the current Bison version, just substitute for
5600 `@value{VERSION}'. This guarantees that we're testing what actually
5601 appears in the documentation.
5602 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
5603 rather than `@VERSION@'.
5604
5605 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
5606
5607 * NEWS: Reword the %language news a bit, and put it earlier.
5608
5609 * src/getargs.c (skeleton_arg): Last arg is now location const *.
5610 Rewrite to simplify the logic.
5611 (language_argmatch): Likewise.
5612 (program_name): We now own this var.
5613 * src/getargs.h (struct bison_language): Use char[] rather than
5614 const char *.
5615
5616 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
5617 Java is supported.
5618 * src/complain.c (program_name): Remove decl; no longer needed.
5619 * src/main.c (program_name): Remove; now belongs to getargs.
5620
5621 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
5622
5623 * NEWS: Document %language.
5624
5625 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
5626
5627 * data/c-skel.m4, data/c++-skel.m4: New files.
5628 * data/glr.c: Complain on push parsers.
5629
5630 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
5631 over %skeleton.
5632 (Decl Summary): Document %language and %skeleton.
5633 (Command line): Document -L.
5634
5635 * examples/extexi: Rewrite %require directive.
5636 * examples/calc++/Makefile.am: Pass VERSION to extexi.
5637
5638 * src/files.c (compute_exts_from_gc): Look in language structure
5639 for .y extension.
5640 (compute_file_name_parts): Check whether .tab should be added.
5641 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
5642 (language, skeleton_arg, language_argmatch): New.
5643 (long_options): Add --language.
5644 (getargs): Use skeleton_arg, add -L/--language.
5645 * src/getargs.h: Include location.h.
5646 (struct bison_language, language, skeleton_arg, language_argmatch): New.
5647 * src/output.c (prepare): Pick default skeleton from struct language.
5648 Don't dispatch C skeletons here.
5649 * src/parse-gram.y (PERCENT_LANGUAGE): New.
5650 (prologue_declaration): Add "%language" rule, use skeleton_arg.
5651 * src/scan-gram.l ("%language"): New rule.
5652
5653 * tests/calc.at: Test %skeleton and %language.
5654 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
5655 (AT_GLR_IF): Look for %skeleton "glr.cc".
5656 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
5657 (AT_YACC_IF): Reject %language.
5658
5659 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
5660
5661 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
5662 since it wasn't used; only the typedef name 'semantic_type' is needed.
5663 Also, omit trailing white space.
5664
5665 * bootstrap: Sync from coreutils.
5666 (gnulib_extra_files): Add build-aux/announce.gen.
5667 (slurp): Adjust .gitignore files like .cvsignore files.
5668 * build-aux/announce-gen: Remove from CVS, since bootstrap
5669 now creates this.
5670
5671 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
5672
5673 Make %push-parser imply %pure-parser. This fixes several bugs; see
5674 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
5675 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
5676 pure_parser = true.
5677 * data/push.c: Don't bother testing b4_push_if when deciding whether
5678 to expand b4_declare_parser_variables globally.
5679 (yypush_parse): Likewise in here.
5680
5681 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
5682 (yy_reduce_print): Reformat M4 for readability.
5683
5684 2006-12-15 Bob Rossi <bob@brasko.net>
5685 and Joel Denny <jdenny@ces.clemson.edu>
5686
5687 * data/push.c (yypstate): Add typedef, and update all uses of
5688 struct yypstate to just yypstate.
5689 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
5690
5691 2006-12-14 Bob Rossi <bob@brasko.net>
5692
5693 * data/push.c (yypush_parse): Declare prototype regardless of
5694 %locations option.
5695
5696 2006-12-14 Bob Rossi <bob@brasko.net>
5697
5698 * data/push.c (yyparse): Remove the prototype and the #define when in
5699 push-parser mode.
5700
5701 2006-12-13 Bob Rossi <bob@brasko.net>
5702
5703 * data/push.c (yypstate_init): Rename to...
5704 (yypstate_new): ... this and use b4_c_function_def.
5705 (yypstate_delete): New.
5706 (yypush_parse): Change parameters yynval and yynlloc to be const.
5707 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
5708 yypstate_delete functions.
5709
5710 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
5711
5712 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
5713 strange test case titles. Reported by Bob Rossi.
5714
5715 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
5716
5717 * TODO: Add pointer to Sylvain Schmitz's work on static detection
5718 of potential ambiguities in GLR grammers.
5719
5720 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
5721
5722 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
5723 `bison ', use m4_index instead of m4_substr since chopping up a string
5724 containing M4-special characters causes problems here.
5725
5726 Fix a couple of bugs related to special characters in user-specified
5727 file names, and make it easier for skeletons to compute output file
5728 names with the same file name prefix as Bison-computed output file
5729 names.
5730 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
5731 b4_parser_file_name and b4_spec_defines_file instead of
5732 @output_parser_name@ and @output_header_name@, which are now redundant.
5733 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
5734 b4_parser_file_name, b4_spec_defines_file, and the new
5735 @basename(FILENAME@) instead of @output_parser_name@ and
5736 @output_header_name@, which inappropriately escaped the file names as
5737 C string literals.
5738 * src/files.c (all_but_ext): Remove static qualifier.
5739 (compute_output_file_names): Move `free (all_but_ext)' to...
5740 (output_file_names_free): ... here since all_but_ext is needed later.
5741 * src/files.h (all_but_ext): Extern.
5742 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
5743 exactly what MUSCLE_INSERT_STRING used to do.
5744 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
5745 characters are escaped properly.
5746 * src/output.c (prepare): Define muscle file_name_all_but_ext as
5747 all_but_ext.
5748 For pkgdatadir muscle, maintain previous functionality by using
5749 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
5750 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
5751 digraphs would never be expanded. Hopefully no one has M4-special
5752 characters in his Bison installation path.
5753 * src/scan-skel.l: Don't parse @output_header_name@ and
5754 @output_parser_name@ anymore since they're now redundant.
5755 In @output, use decode_at_digraphs.
5756 Parse a new @basename command that invokes last_component.
5757 (decode_at_digraphs): New.
5758 (BASE_QPUTS): Remove unused.
5759 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
5760 (Output file name): New tests.
5761
5762 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
5763
5764 Warn about output files that are generated by the skeletons and that
5765 conflict with other output files.
5766 * data/glr.c: Don't generate the header file here when glr.cc does.
5767 * src/files.c (file_names, file_names_count): New static globals.
5768 (compute_output_file_names): Invoke output_file_name_check for files
5769 not generated by the skeletons and remove existing checks.
5770 (output_file_name_check): New function that warns about conflicting
5771 output file names.
5772 (output_file_names_free): Free file_names.
5773 * src/files.h (output_file_name_check): Declare.
5774 * src/scan-skel.l: Invoke output_file_name_check for files generated by
5775 the skeletons.
5776 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
5777 (Conflicting output files): New tests.
5778
5779 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5780
5781 * doc/bison.texinfo: Fix a couple of typos.
5782
5783 2006-12-08 Bob Rossi <bob@brasko.net>
5784
5785 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
5786 Rename to...
5787 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
5788 update all uses.
5789 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
5790 (yypush_parse): Rename yypvars argument to yyps and remove redundant
5791 local pv.
5792 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
5793 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
5794
5795 2006-12-07 Bob Rossi <bob@brasko.net>
5796 and Joel Denny <jdenny@ces.clemson.edu>
5797
5798 * data/push.c (yypvarsinit): Change return type from void* to struct
5799 yypvars*. No longer cast to void* on return.
5800 (struct yypvars): Remove yylen since it need not be remembered between
5801 yypushparse invocations.
5802 (yypushparse): Don't copy between yylen and pv->yylen.
5803
5804 2006-12-05 Bob Rossi <bob@brasko.net>
5805
5806 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
5807 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
5808 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
5809 (struct yypvars): Remove b4_declare_parser_variables.
5810 (yypvarsinit): Remove init code for removed variables.
5811 (global scope): Do not declare b4_declare_parser_variables if
5812 push or pure mode.
5813 (yypushparse): Add b4_declare_parser_variables.
5814 Init new local variables, and remove init code for removed
5815 yypvars variables.
5816 (yyparse): Delete.
5817 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
5818 and yyparse for other modes.
5819 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
5820 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
5821 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
5822 (AT_PURE_LEX_IF): True if pure or push parser.
5823
5824 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
5825
5826 Document Yacc prologue alternatives and default %destructor's and
5827 %printer's as experimental. Don't mention Java yet. Discussed at
5828 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
5829 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
5830 (2.3a): Annotate this entry to say the old forms of these features were
5831 also experimental.
5832 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
5833 Table of Symbols): Say they're experimental. Comment out any mention
5834 of Java (we'll want this back eventually).
5835
5836 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
5837
5838 Support a file name argument to %defines. Deprecate `=' in
5839 %file-prefix, %name-prefix, and %output. Discussed at
5840 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
5841 * NEWS (2.3a+): Mention.
5842 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
5843 form of %defines, and remove `=' from entries for %file-prefix,
5844 %name-prefix, and %output.
5845 * src/parse-gram.y (prologue_declaration): Implement.
5846 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
5847 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
5848 all but one occurrence of %name-prefix.
5849 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
5850 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
5851 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
5852 occurrence of each of %file-prefix and %output. Add check for %defines
5853 with argument.
5854 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
5855 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
5856 Remove the `=' from %output.
5857
5858 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
5859
5860 Don't escape $ in test case titles since Autoconf 2.61 now does that
5861 correctly.
5862 * tests/actions.at (Default %printer and %destructor are not for error
5863 or $undefined): Here.
5864 (Default %printer and %destructor are not for $accept): Here.
5865 * tests/input.at (Invalid $n and @n): Here.
5866
5867 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
5868
5869 Rename <!> to <>. Discussed starting at
5870 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
5871 * NEWS (2.3a+): Update.
5872 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
5873 Update.
5874 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
5875 * src/scan-gram.l (INITIAL): Implement.
5876 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
5877 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
5878 comment.
5879 * tests/actions.at (Default tagless %printer and %destructor,
5880 Default tagged and per-type %printer and %destructor,
5881 Default %printer and %destructor are not for error or $undefined,
5882 Default %printer and %destructor are not for $accept,
5883 Default %printer and %destructor for mid-rule values): Update.
5884 * tests/input.at (Default %printer and %destructor redeclared,
5885 Unused values with default %destructor): Update.
5886
5887 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
5888
5889 Don't let %prec take a nonterminal.
5890 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
5891 token.
5892 * tests/input.at (%prec takes a token): New test checking that %prec
5893 won't take a nonterminal.
5894
5895 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5896
5897 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
5898 it was double-quoted.
5899 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
5900 grammar is maintained with Bison's highest standards.
5901 * src/getargs.c: Fix some typos in Doxygen comments.
5902
5903 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5904
5905 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
5906 later. Reported by Paul Eggert in
5907 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
5908 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
5909 * src/scan-code.l (translate_action): Don't bother invoking
5910 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
5911 (code_scanner_free): Instead of invoking
5912 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
5913 which frees more.
5914 * src/scan-gram.l (gram_scanner_free): Likewise.
5915 * src/scan-skel.l (scan_skel): Likewise.
5916
5917 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
5918
5919 * src/files.c (tr): Change return type to void.
5920 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
5921 has been called previously for the same key.
5922 (muscle_find): Return storage instead of value so that
5923 --enable-gcc-warnings doesn't produce warnings that the return discards
5924 const. aver that the value and storage are the same since storage
5925 could potentially be NULL when value is not.
5926 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
5927 same as 0.
5928
5929 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
5930
5931 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
5932 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
5933 us a slightly cleaner distribution, and also works.
5934 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
5935 gnulib changes.
5936
5937 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
5938 and Paul Eggert <eggert@cs.ucla.edu>
5939
5940 Don't let Bison leak memory except when it complains.
5941 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
5942 (spec_defines_file, dir_prefix): Now char *, not const char *,
5943 since they are freed.
5944 * src/files.c: Likewise.
5945 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
5946 Likewise.
5947 (tr): Now operates in-place. All uses changed.
5948 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
5949 values.
5950 (compute_file_name_parts, compute_output_file_names): Don't store
5951 read-only data in variables that will be freed.
5952 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
5953 src_extension, and header_extension.
5954 (output_file_names_free): New public function to free
5955 spec_verbose_file, spec_graph_file, spec_defines_file,
5956 parser_file_name, and dir_prefix.
5957 * src/getargs.c (getargs): Don't store read-only data in variables that
5958 will be freed.
5959 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
5960 (which previously existed but was unused), and quotearg_free.
5961 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
5962 * src/muscle_tab.c: Likewise.
5963 (muscle_entry): Make the value char const *,
5964 and add a new storage member that is char * and can be freed.
5965 (muscle_entry_free): New private function.
5966 (muscle_init): Use it instead of free.
5967 (muscle_insert, muscle_grow): Update and use new storage member.
5968 (muscle_code_grow): Free the string passed to muscle_grow
5969 since it's not needed anymore.
5970 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
5971 add a new `char *code' member.
5972 ("{...}"): Declare semantic type as code.
5973 * src/scan-code.h (translate_rule_action):
5974 (translate_symbol_action, translate_code, translate_action): Return
5975 `char const *' rather than `char *' since external code should not free
5976 these strings.
5977 * src/scan-code.l: Likewise.
5978 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
5979 which is "{...}" in the parser.
5980 * tests/Makefile.am (maintainer-check-valgrind): Set
5981 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
5982 Valgrind.
5983 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
5984 complain.
5985 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
5986 expecting a non-zero exit status sets --leak-check=summary and
5987 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
5988 this case, and we don't want to hear about it.
5989
5990 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
5991
5992 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
5993 instead of from the template, to simplify configuration a bit.
5994 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
5995 and m4/wint_t.m4, as they are needed with the latest gnulib.
5996
5997 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5998
5999 Disable unset/unused mid-rule value warnings by default, and recognize
6000 --warnings=midrule-values to enable them. Discussed starting at
6001 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
6002 * NEWS (2.3a+): Mention.
6003 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
6004 warnings): Add entry for midrule-values subargument.
6005 * src/reader.c (symbol_should_be_used): Don't return true just because
6006 the value is a set/used mid-rule value unless
6007 --warnings=midrule-values was specified.
6008 * tests/input.at (Unused values, Unused values before symbol
6009 declarations): Run tests with and without --warnings=midrule-values.
6010
6011 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
6012 than LIST_FREE directly.
6013
6014 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6015
6016 Finish implementing --warnings=error, which should not be implied by
6017 --warnings=all (or by its synonyms -W and --warnings without
6018 subarguments).
6019 * src/complain.c (set_warning_issued): New function to report that
6020 warnings are being treated as errors and to record an error if so.
6021 Invoke...
6022 (warn_at, warn): ... here.
6023 * src/getargs.c (warnings_args, warnings_types): Reorder so that
6024 "error - warnings are errors" does not appear above "all - all of the
6025 above".
6026 (getargs): For -W and --warnings without subarguments, don't let
6027 FLAGS_ARGMATCH set warnings_error in warnings_flag.
6028 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
6029
6030 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6031
6032 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
6033 empty subargument list. For example: `bison --warnings= parser.y'.
6034
6035 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6036
6037 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
6038 the parser header file so that gcc doesn't warn.
6039
6040 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6041
6042 Split the default %destructor/%printer into two kinds: <*> and <!>.
6043 Discussed starting at
6044 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
6045 * NEWS (2.3a+): Mention.
6046 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
6047 previous change today related to mid-rules.
6048 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
6049 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
6050 (TYPE_TAG_ANY): Add as <*>.
6051 (TYPE_TAG_NONE): Add as <!>.
6052 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
6053 for <*> and <!>.
6054 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
6055 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
6056 * src/symlist.c (symbol_list_default_new): Split into tagged and
6057 tagless versions.
6058 (symbol_list_destructor_set, symbol_list_printer_set): Split
6059 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
6060 SYMLIST_DEFAULT_TAGLESS.
6061 * src/symlist.h: Update symbol_list_default*_new prototypes.
6062 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
6063 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
6064 * src/symtab.c (default_destructor, default_destructor_location,
6065 default_printer, default_printer_location): Split each into tagged and
6066 tagless versions.
6067 (symbol_destructor_get, symbol_destructor_location_get,
6068 symbol_printer_get, symbol_printer_location_get): Implement tagged
6069 default and tagless default cases.
6070 (default_destructor_set, default_printer_set): Split each into tagged
6071 and tagless versions.
6072 * src/symtab.h: Update prototypes.
6073 * tests/actions.at (Default %printer and %destructor): Rename to...
6074 (Default tagless %printer and %destructor): ... this, and extend.
6075 (Per-type %printer and %destructor): Rename to...
6076 (Default tagged and per-type %printer and %destructor): ... this, and
6077 extend.
6078 (Default %printer and %destructor for user-defined end token): Extend.
6079 (Default %printer and %destructor are not for error or $undefined):
6080 Update.
6081 (Default %printer and %destructor are not for $accept): Update.
6082 (Default %printer and %destructor for mid-rule values): Extend.
6083 * tests/input.at (Default %printer and %destructor redeclared): Extend.
6084 (Unused values with default %destructor): Extend.
6085
6086 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6087
6088 Don't apply the default %destructor/%printer to an unreferenced midrule
6089 value. Mentioned at
6090 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
6091 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
6092 like $@n instead of just @n so that the default %destructor/%printer
6093 logic doesn't see them as user-defined symbols.
6094 (symbol_is_dummy): Check for both forms of the name.
6095 * src/reader.c (packgram): Remove the `$' from each midrule symbol
6096 name for which the midrule value is referenced in any action.
6097 * tests/actions.at (Default %printer and %destructor for mid-rule
6098 values): New test.
6099 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
6100 for change to dummy symbol names.
6101
6102 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6103
6104 Warn about unset midrule $$ if the corresponding $n is used.
6105 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
6106 $n usage.
6107 (packgram): Before invoking grammar_rule_check on any rule, make sure
6108 all actions have already been scanned in order to set `used' flags.
6109 Otherwise, checking that a midrule's $$ is set will not always work
6110 properly because the midrule check must forward-reference the midrule's
6111 parent rule.
6112 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
6113 warning.
6114
6115 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6116
6117 More improvements to the documentation of the prologue alternatives:
6118 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
6119 Bison manual.
6120 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
6121 some text to clarify the relative importance of the new directives and
6122 to show how these directives may be viewed as code labels.
6123
6124 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
6125
6126 Similar to the recently removed %before-header, add %code-top as the
6127 alternative to the pre-prologue. Mentioned at
6128 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
6129 Also, let the prologue alternatives appear in the grammar section.
6130 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
6131 (prologue_declaration): Move the existing prologue alternatives to...
6132 (grammar_declaration): ... here and add %code-top.
6133 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
6134
6135 Clean up and extend documentation for the prologue alternatives.
6136 * NEWS (2.3a+): Describe prologue alternatives.
6137 * doc/bison.texinfo (Prologue): Move discussion of prologue
6138 alternatives to...
6139 (Prologue Alternatives): ... this new section, and extend it to discuss
6140 all 4 directives in detail.
6141 (Table of Symbols): Clean up discussion of prologue alternatives and
6142 add %code-top.
6143
6144 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6145
6146 DJGPP specific issues.
6147
6148 * djgpp/config.bat: config.hin has been moved to lib. Adjust
6149 config.bat accordingly.
6150 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
6151 * djgpp/config.site: Likewise.
6152
6153 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
6154
6155 Replace %*-header with %provides, %requires, %code. See discussion at
6156 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
6157
6158 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
6159 (b4_user_start_header): Remove.
6160 * data/glr.c: Use new macros instead of b4_*start_header
6161 and b4_*end_header.
6162 * data/glr.cc: Likewise.
6163 * data/lalr1.cc: Likewise.
6164 * data/push.c: Likewise.
6165 * data/yacc.c: Likewise.
6166
6167 * doc/bison.texinfo: Remove %before-header, rename
6168 %{start,end,after}-header to %requires, %provides, %code.
6169
6170 * src/parse-gram.y: Likewise (also rename token names accordingly).
6171 * src/scan-gram.l: Likewise.
6172 * tests/actions.at: Likewise.
6173
6174 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
6175
6176 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
6177 Problem reported by Joel E. Denny.
6178
6179 2006-10-14 Jim Meyering <jim@meyering.net>
6180
6181 (Sync from coreutils.)
6182 Work also when the working directory (with e.g. coreutils sources)
6183 is version controlled with git, rather than CVS.
6184 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
6185 rather than CVS.
6186 In messages and comments, say e.g., "checked-out sources",
6187 rather than "CVS sources".
6188 (version_controlled_file): New function. Work for git as well as
6189 for CVS. Don't use grep's -q option.
6190 (slurp): Call it here, in place of CVS-specific code.
6191
6192 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
6193
6194 Fix testsuite for ./configure --enable-gcc-warnings:
6195 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
6196 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
6197 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
6198 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
6199 * test/regression.at (Diagnostic that expects two alternatives):
6200 Likewise.
6201
6202 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6203
6204 * bootstrap.conf (gnulib_modules): Add config-h.
6205 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
6206 worry about HAVE_CONFIG_H.
6207 * lib/abitset.c: Likewise.
6208 * lib/bitset.c: Likewise.
6209 * lib/bitset_stats.c: Likewise.
6210 * lib/bitsetv-print.c: Likewise.
6211 * lib/bitsetv.c: Likewise.
6212 * lib/ebitset.c: Likewise.
6213 * lib/get-errno.c: Likewise.
6214 * lib/lbitset.c: Likewise.
6215 * lib/subpipe.c: Likewise.
6216 * lib/timevar.c: Likewise.
6217 * lib/vbitset.c: Likewise.
6218 * lib/bitset.c: Include "bitset.h" first, to test interface.
6219 * lib/bitset_stats.c: Include "bitset_stats.h" first.
6220 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
6221 * lib/bitsetv.c: Include "bitsetv.h" first.
6222 * lib/get-errno.c: Include "get-errno.h" first.
6223 * m4/.cvsignore: Add config-h.m4.
6224 * tests/actions.at (Default %printer and %destructor for ...):
6225 Adjust expected line numbers in output to reflect removal of #if
6226 HAVE_CONFIG_H lines.
6227 * tests/glr-regression.at (Missed %merge type warnings when ...):
6228 Likewise.
6229 * tests/regression.at (Braced code in declaration in rules section):
6230 Likewise.
6231 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
6232 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
6233 Include <config.h> unconditionally.
6234
6235 * bootstrap: Sync from coreutils, as follows:
6236
6237 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6238
6239 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
6240 variable was sometimes used without being initialized. This
6241 messed up the installation of the INSTALL file in some cases.
6242
6243 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6244
6245 * bootstrap (usage, main program, symlink_to_gnulib): Add option
6246 --copy. Inspired by a suggestion from Bruno Haible.
6247
6248 2006-10-03 Jim Meyering <jim@meyering.net>
6249
6250 * bootstrap: Undo last change to this file, since now gnulib-tool
6251 sticks with the automake default in generating dependencies.
6252
6253 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6254
6255 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
6256 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
6257
6258 * doc/bison.1: Add copyright notice.
6259
6260 * data/glr.c: Don't include <stdarg.h>; not used.
6261
6262 * NEWS: The -g and --graph options now output graphs in Graphviz
6263 DOT format, not VCG format.
6264 * doc/bison.1: Likewise.
6265 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
6266 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
6267 of this change in
6268 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
6269 * TODO: Remove Graphviz entry.
6270 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
6271 remove vcg.c, vcg.h, vcg_defaults.h.
6272 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
6273 * src/graphviz.c, src/graphviz.h: New files.
6274 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
6275 * src/files.h: Make comment more generic.
6276 * src/main.c (main): Likewise.
6277 * src/print_graph.h: Likewise.
6278 * src/getargs.c (usage): Make usage description more generic.
6279 * src/print_graph.c: Include graphviz.h rather than vcg.h.
6280 (static_graph, fgraph): Remove. All uses changed to pass
6281 arguments instead of sharing a static var.
6282 (print_core, print_actions, print_state, print_graph):
6283 Output graphviz format rather than VCG format.
6284 * tests/.cvsignore: Remove *.vcg; add *.dot.
6285 * tests/output.at: Expect *.dot files, not *.vcg files.
6286
6287 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
6288 accommodates the 2006-10-08 change.
6289
6290 2006-10-11 Bob Rossi <bob@brasko.net>
6291
6292 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
6293 (b4_yyssa, b4_yyerror_range): New macros.
6294 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
6295 (yypvarsinit): Remove init of removed fields.
6296 (yypushparse): Remove use of removed fields; use new macros instead.
6297
6298 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6299
6300 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
6301 in a push parser. Reindent slightly to match yacc.c better.
6302
6303 2006-10-11 Bob Rossi <bob@brasko.net>
6304
6305 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
6306 yymsg_alloc fields.
6307 (yypvarsinit, yypushparse): Remove init of removed fields.
6308 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
6309
6310 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6311
6312 * THANKS: Add Paolo Bonzini and Bob Rossi.
6313
6314 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
6315
6316 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
6317 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
6318 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
6319 b4_define_user_cde and uses): Remove.
6320 (b4_comment, b4_prefix, b4_sync_start): New.
6321 * data/bison.m4: New file, with most of the content removed from c.m4.
6322 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
6323 * src/output.c (output_skeleton): Pass bison.m4.
6324 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
6325 only if specified.
6326
6327 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
6328
6329 Fix test failure reported by Tom Lane in
6330 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
6331 and try to make such failures easier to catch in the future.
6332 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
6333 that's now the caller's responsibility.
6334 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
6335 Set yychar = YYEOF if it's negative.
6336 * tests/actions.at (yylex): Abort if asked to read past EOF.
6337 * tests/conflicts.at (yylex): Likewise.
6338 * tests/cxx-type.at (yylex): Likewise.
6339 * tests/glr-regression.at (yylex): Likewise.
6340 * tests/input.at (yylex): Likewise.
6341 * tests/regression.at (yylex): Likewise.
6342 * tests/torture.at (yylex): Likewise.
6343
6344 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
6345
6346 Fix problems with translating English-language diagnostics.
6347 * bootstrap: Fix bug introduced in recent bootstrap changes, with
6348 respect to bison-runtime pot generation. The YY_ stuff
6349 wasn't being captured.
6350 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
6351 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
6352 * runtime-po/POTFILES.in: Add data/push.c.
6353
6354 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
6355
6356 Merge bootstrap changes from coreutils.
6357
6358 2006-09-28 Jim Meyering <jim@meyering.net>
6359
6360 Automatically generated dependencies are important even
6361 when all of the sources in a directory come from gnulib.
6362 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
6363 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
6364
6365 2006-09-23 Jim Meyering <jim@meyering.net>
6366
6367 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
6368
6369 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6370
6371 * bootstrap: Add support for --force.
6372 (usage): New function. Describe usage less tersely.
6373 (CVS_only_file): New var.
6374
6375 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
6376
6377 * data/push.c (YYPUSH_MORE): Make it an enum instead.
6378 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
6379 Adjust white space and comments to match GNU style better.
6380
6381 2006-09-20 Bob Rossi <bob@brasko.net>
6382
6383 * data/push.c (yyresult_get): Remove function.
6384 (YYPUSH_MORE): Add #define.
6385 (yypushparse): Modify return value.
6386
6387 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6388
6389 * stamp-h.in: Remove; no longer needed.
6390 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
6391 Remove config.h, config.hin, intl (no longer created).
6392 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
6393 stamp-h1.
6394
6395 Sync bootstrap from coreutils, as follows:
6396
6397 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
6398
6399 * bootstrap (symlink_to_gnulib): New function.
6400 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
6401 to copies-of-gnulib.
6402 (cp_mark_as_generated, slurp, gnulib_files):
6403 Avoid making a copy if it's the same as the old version.
6404 (gnulib_files): Add support for this variable (used by Bison).
6405
6406 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6407
6408 * src/getargs.c (usage): Rework to use conventions similar to
6409 coreutils, to make translation a bit easier and the code a bit
6410 smaller. Problem reported by Tim Van Holder.
6411
6412 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
6413
6414 Use some of gnulib's new modules, taken from coreutils.
6415
6416 * bootstrap: Sync from coreutils, except add support for gnulib_files.
6417 * bootstrap.conf: New file.
6418 (gnulib_modules): Add configmake, inttypes, unistd.
6419 (XGETTEXT_OPTIONS): Add complain, complain_at,
6420 fatal, fatal_at, warn, warn_at, unexpected_end.
6421 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
6422 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
6423 (gl_EARLY): Add.
6424 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
6425 (gl_INIT): Add
6426 (GNULIB_AUTOCONF_SNIPPET): Remove.
6427 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
6428 the pickiest.
6429 * lib/.cvsignore: Add inttypes_.h.
6430 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
6431 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
6432 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
6433 no-longer-necessary initializations.
6434 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
6435 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
6436 use the unistd module.
6437 * src/system.h: Likewise.
6438 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
6439 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
6440 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
6441 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
6442 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
6443 * src/system.h: Include inttypes.h unconditionally, now that we
6444 use the inttypes module. Don't bother to include stdint.h, since
6445 inttypes.h now does that for us.
6446 (LOCALEDIR): Remove, now that we use the configmake module.
6447 * src/getargs.c: Include configmake.h.
6448 * src/main.c: Likewise.
6449 * src/output.c: Likewise.
6450 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
6451 not from $abs_top_builddir, since config.h moved.
6452
6453
6454 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
6455 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
6456
6457 * src/parse-gram.y (symbol_declaration): Don't put statements
6458 before declarations; it's not portable to C89.
6459 * src/scan-code.l (handle_action_at): Likewise.
6460
6461 * src/scan-code.l: Always initialize braces_level; the old code
6462 left it uninitialized and therefore had undefined behavior.
6463
6464 Don't attempt to redefine 'assert', since it runs afoul of
6465 systems where standard headers (mistakenly) include <assert.h>.
6466 Instead, define and use our own alternative, called 'aver'.
6467 * src/reader.c: Don't include assert.h, since we no longer
6468 use assert.
6469 * src/scan-code.l: Likewise.
6470 * src/system.h (assert): Remove, replacing with....
6471 (aver): New function, taking a bool arg. All uses changed.
6472 * src/tables.c (pack_vector): Ensure that aver arg is bool,
6473 not merely an integer.
6474
6475 2006-09-15 Bob Rossi <bob@brasko.net>
6476
6477 Add support for push parsing. Based on the original work of
6478 Odd Arild Olsen <oao@fibula.no>.
6479 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
6480 * data/c.m4 (YYPUSH): New.
6481 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
6482 * data/push.c: New file.
6483 * src/getargs.c (push_parser): New var.
6484 * src/getargs.h (push_parser): New declaration.
6485 * src/output.c (prepare): Add macro insertion of `push_flag'.
6486 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
6487 (prologue_declaration): Parse %push-parser.
6488 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
6489 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
6490 list of removed lines from the traces observed.
6491 (AT_CHECK_CALC_LALR): Added push parser tests.
6492
6493 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
6494
6495 * NEWS: Version 2.3a.
6496 * configure.ac (AC_INIT): Likewise.
6497
6498 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
6499 "#define YYSTYPE int" that caused "make maintainer-check" to fail
6500 due to header ordering dependencies. I don't know why the #define
6501 was there.
6502
6503 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
6504 runtime cost when YYDEBUG is not defined, and so that some tests
6505 that used to fail now work. Problem and initial suggestion by
6506 Paolo Bonzini.
6507 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
6508 * data/glr.cc (b4_parser_class_name):
6509 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
6510 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
6511 (yydebug_) [YYDEBUG]: New member.
6512 (yycdebug_): Now defined only if YYDEBUG.
6513 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
6514 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
6515 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
6516 if YYYDEBUG.
6517 (debug_stream, set_debug_stream, debug_level, set_debug_level):
6518 Define only if YYDEBUG.
6519 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
6520 set_debug_level.
6521 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
6522 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
6523 AT_CHECK_CALC_GLR_CC that are working now.
6524
6525 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
6526
6527 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
6528 We don't need them in glr.cc, and glr.c defines them.
6529 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
6530 assumes that defining it to anything is the same as defining
6531 it to 1. Problem reported by Paolo Bonzini.
6532
6533 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
6534
6535 * data/c.m4 (b4_null, b4_case): Define.
6536 * src/output.c (prepare_symbols): Use b4_null.
6537 (user_actions_output): Use b4_case.
6538
6539 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
6540
6541 * data/glr.c (b4_shared_declarations): Put start-header first,
6542 before any #includes that we generate, so that feature-test
6543 macros work. Problem reported by Michael Deutschmann in
6544 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
6545 * data/lalr1.cc: Likewise.
6546 * doc/bison.texinfo (Prologue): Document that feature-test macros
6547 should be defined before any Bison declarations.
6548 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
6549 that depend on location.hh after, not before, Bison decls, since
6550 we now include location.hh after the first user prologue.
6551
6552 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
6553 Sander Brandenburg in
6554 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
6555 Also, fix minor white space and comment issues.
6556 (Prologue): Mention that it's better to define feature-test macros
6557 before Bison declarations. Problem reported by Michael Deutschmann.
6558
6559 * README-cvs: Fix typo: "&" should be "&&". Problem reported
6560 by Jim Meyering.
6561 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
6562 This adjusts to recent gnulib changes.
6563
6564 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
6565
6566 Finish implementation of per-type %destructor/%printer. Discussed
6567 starting at
6568 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
6569 and
6570 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
6571 * NEWS (2.3+): Add a description of this feature to the default
6572 %destructor/%printer description.
6573 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
6574 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6575 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
6576 list node contains a semantic type.
6577 * src/symtab.c, src/symtab.h: Extend with a table that associates
6578 semantic types with their %destructor's and %printer's.
6579 (semantic_type_from_uniqstr, semantic_type_get,
6580 semantic_type_destructor_set, semantic_type_printer_set): New functions
6581 composing the public interface of that table.
6582 (symbol_destructor_get, symbol_destructor_location_get,
6583 symbol_printer_get, symbol_printer_location_get): If there's no
6584 per-symbol %destructor/%printer, look up the per-type before trying
6585 the default.
6586 * tests/actions.at (Per-type %printer and %destructor): New test case.
6587 * tests/input.at (Default %printer and %destructor redeclared):
6588 Extend to check that multiple occurrences of %symbol-default in a
6589 single %destructor/%printer declaration is an error.
6590 (Per-type %printer and %destructor redeclared, Unused values with
6591 per-type %destructor): New test cases.
6592
6593 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
6594
6595 Require default %destructor/%printer to be declared using
6596 %symbol-default instead of an empty symbol list, and start working on
6597 new per-type %destructor/%printer. Discussed at
6598 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
6599 * NEWS (2.3+): Add %symbol-default to example.
6600 * bison.texinfo (Freeing Discarded Symbols): Likewise.
6601 (Table of Symbols): Add entry for %symbol-default.
6602 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
6603 (generic_symlist, generic_symlist_item): New nonterminals for creating
6604 a list in which each item is a symbol, semantic type, or
6605 %symbol-default.
6606 (grammar_declaration): Use generic_symlist in %destructor and %printer
6607 declarations instead of symbols.1 or an empty list.
6608 (symbol_declaration, precedence_declaration, symbols.1): Update actions
6609 for changes to symbol_list.
6610 * src/reader.c: Update for changes to symbol_list.
6611 * src/scan-code.l: Likewise.
6612 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
6613 * src/symlist.c, src/symlist.h: Extend such that a list node may
6614 represent a semantic type or a %symbol-default in addition to just an
6615 ordinary symbol. Add switched functions for setting %destructor's and
6616 %printer's.
6617 * tests/actions.at, tests/input.at: Add %symbol-default to all default
6618 %destructor/%printer declarations.
6619
6620 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
6621
6622 Whether the default %destructor/%printer applies to a particular symbol
6623 isn't a question of whether the user *declares* that symbol (in %token,
6624 for example). It's a question of whether the user by any means
6625 *defines* the symbol at all (by simply using a char token, for
6626 example). $end is defined by Bison whereas any other token with token
6627 number 0 is defined by the user. The error token is always defined by
6628 Bison regardless of whether the user declares it with %token, but we
6629 may one day let the user define error as a nonterminal instead.
6630 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
6631 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
6632 the meaning of "user-defined".
6633 * tests/actions.at (Default %printer and %destructor for user-declared
6634 end token): Rename to...
6635 (Default %printer and %destructor for user-defined end token): ...
6636 this.
6637
6638 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
6639 computation of whether to apply the default, don't maintain a list of
6640 every Bison-defined symbol. Instead, just check for a first character
6641 of '$', which a user symbol cannot have, and check for the error token.
6642
6643 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
6644
6645 Don't apply the default %destructor or %printer to the error token,
6646 $undefined, or $accept. This change fits the general rule that the
6647 default %destructor and %printer are only for user-declared symbols,
6648 and it solves several difficulties that are described in the new test
6649 cases listed below.
6650 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
6651 * tests/actions.at (Default %printer and %destructor are not for error
6652 or $undefined, Default %printer and %destructor are not for $accept):
6653 New test cases.
6654
6655 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
6656
6657 Allow %start after the first rule.
6658 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
6659 when parsing the first rule.
6660 (check_and_convert_grammar): Search for it here after all grammar
6661 declarations have been parsed. Skip midrules, which have dummy LHS
6662 nonterminals.
6663 * src/symtab.c (symbol_is_dummy): New function.
6664 * src/symtab.h (symbol_is_dummy): Declare it.
6665 * tests/input.at (%start after first rule): New test.
6666
6667 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
6668
6669 Redo some of the previous commit: add back the ability to use
6670 non-aliased/undeclared string literals since it might be useful to
6671 those declaring %token-table.
6672 * src/reader.c (check_and_convert_grammar): Undo changes in previous
6673 commit: don't worry about complaints from symbols_pack.
6674 * src/symtab.c (symbol_new, symbol_class_set,
6675 symbol_check_alias_consistency): Undo changes in previous commit: count
6676 each string literal as a new symbol and token, assign it a symbol
6677 number, and don't complain about non-aliased string literals.
6678 (symbols_pack): Since symbol_make_alias still does not decrement symbol
6679 and token counts but does still set aliased tokens to the same number,
6680 symbol_pack_processor now leaves empty slots in the symbols array.
6681 Remove those slots.
6682 * tests/regression.at (Undeclared string literal): Remove test case
6683 added in previous commit since non-aliased string literals are allowed
6684 again.
6685 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
6686 remove unnecessary string literal declarations.
6687 * tests/sets.at (Firsts): Likewise.
6688
6689 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
6690
6691 Don't allow an undeclared string literal, but allow a string literal to
6692 be used before its declaration.
6693 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
6694 symbols_pack complained.
6695 * src/symtab.c (symbol_new): Don't count a string literal as a new
6696 symbol.
6697 (symbol_class_set): Don't count a string literal as a new token, and
6698 don't assign it a symbol number since symbol_make_alias does that.
6699 (symbol_make_alias): It's not necessary to decrement the symbol and
6700 token counts anymore. Don't assume that an alias declaration occurs
6701 before any uses of the identifier or string, and thus don't assert that
6702 one of them has the highest symbol number so far.
6703 (symbol_check_alias_consistency): Complain if there's a string literal
6704 that wasn't declared as an alias.
6705 (symbols_pack): Bail if symbol_check_alias_consistency failed since
6706 symbol_pack asserts that every token has been assigned a symbol number
6707 although undeclared string literals have not.
6708 * tests/regression.at (String alias declared after use, Undeclared
6709 string literal): New test cases.
6710 (Characters Escapes, Web2c Actions): Declare string literals as
6711 aliases.
6712 * tests/sets.at (Firsts): Likewise.
6713
6714 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
6715
6716 In the grammar scanner, STRING_FINISH unclosed constructs and return
6717 them to the parser in order to improve error messages.
6718 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
6719 SC_BRACED_CODE, SC_PROLOGUE): Implement.
6720 * tests/input.at (Unclosed constructs): New test case.
6721 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
6722 seen.
6723
6724 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
6725 unused global.
6726
6727 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
6728
6729 Handle string aliases for character tokens correctly.
6730 * src/symtab.c (symbol_user_token_number_set): If the token has an
6731 alias, check and set its alias's user token number instead of its own,
6732 which is set to indicate the alias. Previously, every occurrence of
6733 the character token in the grammar overwrote that alias indicator with
6734 the character code.
6735 * tests/input.at (String aliases for character tokens): New test.
6736
6737 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
6738
6739 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
6740
6741 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
6742
6743 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
6744 to prevent failures when building on older platforms.
6745 Check for autopoint failure.
6746 Set XGETTEXT_OPTIONS to values that check for C format strings,
6747 so that translators are warned about them (this also helps
6748 prevent core dumps).
6749
6750 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
6751 function, since it simplifies our code a bit.
6752
6753 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
6754 rather than -W, so we don't get bogus warnings about sign comparisons.
6755 Add -Wpointer-arith, since that warning is useful (it reports code
6756 that does not conform to C89 and that some compilers reject).
6757 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
6758 since it's no longer needed.
6759
6760 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
6761
6762 Clean up scanners a bit.
6763 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
6764 definitions so gcc won't warn when obstack_for_string is unused.
6765 * src/scan-code.l: config.h and system.h are already #include'd by
6766 scan-code-c.c, so get rid of them here.
6767 * src/scan-gram.l: Likewise.
6768 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
6769 definitions rather than duplicating the rest of it.
6770 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
6771
6772 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
6773
6774 Suppress signed/unsigned comparison warnings for yycheck.
6775 * data/c.m4 (b4_safest_int_type): New macro.
6776 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
6777 a signed int type, cast it to b4_safest_int_type first.
6778 * data/yacc.c: Likewise.
6779 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
6780 also overwritten.
6781
6782 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
6783
6784 * doc/bison.texinfo: Fix some typos.
6785
6786 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
6787
6788 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
6789 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
6790
6791 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
6792 the latest gnulib does this a different way.
6793 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
6794 translation was patched, so stop omitting it.
6795
6796 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
6797
6798 Enable declaration of default %printer/%destructor. Make the parser
6799 use these for all user-declared grammar symbols for which the user does
6800 not declare a specific %printer/%destructor. Thus, the parser uses it
6801 for token 0 if the user declares it but not if Bison generates it as
6802 $end. Discussed starting at
6803 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
6804 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
6805 and
6806 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
6807 * NEWS (2.3+): Mention.
6808 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
6809 declare a %destructor for a mid-rule's semantic value. It's just
6810 impossible to declare one specific to it.
6811 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
6812 code. Describe default %destructor form.
6813 * src/parse-gram.y (grammar_declaration): Parse default
6814 %printer/%destructor declarations.
6815 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
6816 and symbol_destructor_location_get rather than accessing the destructor
6817 and destructor_location members of struct symbol.
6818 (symbol_printers_output): Likewise but for %printer's.
6819 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
6820 again.
6821 * src/symtab.c (default_destructor, default_destructor_location,
6822 default_printer, default_printer_location): New static global
6823 variables to record the default %destructor and %printer.
6824 (symbol_destructor_get, symbol_destructor_location_get,
6825 symbol_printer_get, symbol_printer_location_get): New functions to
6826 compute the appropriate %destructor and %printer for a symbol.
6827 (default_destructor_set, default_printer_set): New functions to set the
6828 default %destructor and %printer.
6829 * src/symtab.h: Prototype all those new functions.
6830 * tests/actions.at (Default %printer and %destructor): New test to
6831 check that the right %printer and %destructor are called, that they're
6832 not called for $end, and that $$ and @$ work correctly.
6833 (Default %printer and %destructor for user-declared end token): New
6834 test to check that the default %printer and %destructor are called for
6835 a user-declared end token.
6836 * tests/input.at (Default %printer and %destructor redeclared, Unused
6837 values with default %destructor): New tests to check related grammar
6838 warnings and errors.
6839
6840 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
6841
6842 Clean up handling of %destructor for the end token (token 0).
6843 Discussed starting at
6844 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
6845 and
6846 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
6847
6848 Make the skeletons consistent in how they pop the end token and invoke
6849 its %destructor.
6850 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
6851 state, which has token number 0, since this would invoke the
6852 %destructor for the end token.
6853 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
6854 until after shifting the end token, or else it won't be popped.
6855 * data/yacc.c (yyparse): Likewise.
6856
6857 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
6858 it's the end token. Upon termination, destroy an unshifted lookahead
6859 even when it's the end token.
6860 * data/lalr1.cc (yy::parser::parse): Likewise.
6861 * data/yacc.c (yyparse): Likewise.
6862
6863 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
6864 value warnings for the end token when the user gives the end token a
6865 %destructor.
6866
6867 * tests/actions.at (Printers and Destructors): Test all the above.
6868
6869 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
6870
6871 Update to latest gnulib and gettext versions.
6872 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
6873 Add fopen-safer.
6874 (gnulib_files): Add m4/warning.m4. Don't worry about files
6875 overwritten by autopoint.
6876 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
6877 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
6878 rejects them.
6879 Don't use autoreconf; instead, invoke autopoint etc. by hand,
6880 so that we can remove the intl files at a better time.
6881 (intl_files_to_remove): Remove aclocal.m4, since it gets
6882 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
6883 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
6884 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
6885 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
6886 Remove datarootdir hack; no longer needed.
6887 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
6888 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
6889 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
6890 strdup.h.
6891 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
6892 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
6893
6894 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
6895
6896 * bootstrap: Adjust to today's change to gnulib-tool by invoking
6897 it with --assume-autoconf='latest-stable'.
6898
6899 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
6900
6901 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
6902 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
6903 YYSTYPE' and `{'.
6904 * src/muscle_tab.h (muscle_grow): Replace the header comments with
6905 those from muscle_tab.c since the old ones are misleading.
6906
6907 2006-07-13 Akim Demaille <akim@epita.fr>
6908
6909 Support %define "KEY" {VALUE}.
6910 * src/scan-code.h, src/scan-code.l (translate_action)
6911 (translate_rule_action, translate_symbol_action, translate_code):
6912 Return char *, not const char *.
6913 * src/parse-gram.y (declaration): Rename as...
6914 (prologue_declaration): this.
6915 (string_content): Remove this nonterminal, use STRING.
6916 (braceless, content, content.opt): New nonterminal.
6917 Use them.
6918 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
6919 as value.
6920 * src/scan-gram.l (getargs.h): Don't include it.
6921
6922 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
6923
6924 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
6925 rather than a for-loop that declares a local bool variable. This
6926 should work around a compatibility problem with a Cray x1e C++
6927 compiler reported by Hung Nguyen in
6928 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
6929 The for-loop was introduced in the 2004-11-17 change but I don't
6930 know why it was needed.
6931
6932 2006-07-12 Akim Demaille <akim@epita.fr>
6933
6934 * data/c.m4: Comment changes.
6935
6936 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
6937
6938 * src/complain.c (error_message, ERROR_MESSAGE): New.
6939 To factor...
6940 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
6941 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
6942
6943 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
6944
6945 * NEWS: Instead of %union, you can define and use your own union type
6946 YYSTYPE if your grammar contains at least one <type> tag.
6947 Your YYSTYPE need not be a macro; it can be a typedef.
6948 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
6949 (Union Decl, Decl Summary): Document this.
6950 * data/glr.c (YYSTYPE): Implement this.
6951 * data/glr.cc (YYSTYPE): Likewise.
6952 * data/lalr1.cc (YYSTYPE): Likewise.
6953 * data/yacc.c (YYSTYPE): Likewise.
6954 * src/output.c (prepare): Output tag_seen_flag.
6955 * src/parse-gram.y (declaration, grammar_declaration):
6956 Use 'union_seen' rather than 'typed' to determine whether
6957 %union has been seen, since grammars can now be typed without
6958 %union.
6959 (symbol_declaration, type.opt, symbol_def):
6960 Keep track of whether a tag has been seen.
6961 * src/reader.c (union_seen, tag_seen): New vars.
6962 (typed): remove.
6963 * src/reader.h (union_seen, tag_seen, typed): Likewise.
6964 * src/scan-code.l (untyped_var_seen): New variable.
6965 (handle_action_dollar): Adjust to above changes.
6966 (handle_action_dollar, handle_action_at):
6967 Improve overflow checking for outlandish numbers.
6968 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
6969 avoid new diagnostics generated by above changes.
6970 * tests/regression.at (YYSTYPE typedef): Add test to check
6971 for type tags without %union.
6972
6973 * src/symlist.c (symbol_list_length): Return int, not unsigned
6974 int, since callers expect int. This may need to get revisited
6975 once we have proper integer overflow checking.
6976
6977 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
6978 object is now static.
6979
6980 * src/getargs.c (flags_argmatch): Return void, not int,
6981 to pacify ./configure --enable-gcc-warnings.
6982
6983 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
6984 since last_string is already defined to FLEX_PREFIX (last_string).
6985
6986 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
6987
6988 Implement --warnings/-W.
6989 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
6990 replaced by...
6991 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
6992 Adjust callers.
6993 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
6994 (warnings_args, warnings_types): New.
6995 (getargs, short_options, long_options): Accept -W/--warnings.
6996 Sort the options by alphabetical order, upper case letter right
6997 before its lower case.
6998
6999 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
7000
7001 Change %merge result type clash warnings to errors. Discussed at
7002 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
7003 * src/reader.c (record_merge_function_type): Use complain_at.
7004 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7005 declared later): Update test case results.
7006
7007 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
7008
7009 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
7010 to be in alphabetical order.
7011 (trace_args): Spelling fixes.
7012
7013 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7014
7015 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
7016 so they don't collide with user-defined macros.
7017 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
7018 this was never guaranteed, and now that we're using gnulib stdint,
7019 which defines int_fast16_t to long int, the problem is exposed.
7020
7021 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
7022
7023 * data/c.m4 (b4_basename): Simplify a bit, since we don't
7024 need the full POSIX semantics (and weren't implementing them
7025 anyway).
7026
7027 Adjust to Autoconf 2.60 and today's gnulib.
7028 * bootstrap (gnulib_modules): Add stdint.
7029 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
7030 no longer copies it.
7031 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
7032 since stdint needs the former and wcwidth (which is now required
7033 by mbswidth) needs the latter.
7034 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
7035 work around a compatibility glitch between gettext 0.14.6 and
7036 Autoconf 2.60.
7037 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
7038 Do not check for uintptr_t, since new stdint module does the right
7039 thing.
7040 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
7041 Add stdint.h, stdint_.h, wcwidth.h.
7042 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
7043 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
7044 stdint.m4, wchar_t.m4, wcwidth.m4.
7045 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
7046 usual order for ../lib/*.h files.
7047 (file_name_split): Use last_component, not base_name, to adjust
7048 to gnulib changes.
7049 * src/parse-gram.h: Include <strverscmp.h> in the usual order
7050 for ../lib/*.h files.
7051 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
7052 Define unconditionally, since we now assume the stdint module.
7053 * src/scan-skel.l: Include <dirname.h>.
7054 (BASE_QPUTS): Use last_component, not base_name.
7055 * src/system.h: Include <unlocked-io.h> in the usual order
7056 for ../lib/*.h files. Include <stdint.h> unconditionally,
7057 since we now use the stdint module.
7058 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
7059 HAVE_UINTPTR_T, since we now use the stdint module.
7060 (base_name): Remove decl, since files now include <dirname.h>
7061 to get the decl.
7062
7063 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
7064
7065 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
7066 New, default to 1.
7067 * data/yacc.c, data/glr.c, data/location.cc: Use them.
7068 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
7069 default.
7070 * tests/calc.at: Adjust.
7071
7072 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
7073
7074 * data/c.m4 (b4_basename): New.
7075 (b4_syncline): Also output the location of its invocation (from
7076 the skeleton).
7077 (b4_user_action, b4_define_user_action, b4_user_actions)
7078 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
7079 (b4_user_stype): New.
7080 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
7081
7082 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7083
7084 In the grammar file, the first column is 1 not 0 on the first line as
7085 on every other line.
7086 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
7087 * tests/input.at (Torturing the Scanner): Update output.
7088
7089 * src/scan-gram.l (scanner_cursor): Declare it static.
7090
7091 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7092
7093 In warnings, say "previous declaration" rather than "first
7094 declaration".
7095 * src/symtab.c (redeclaration): Do that here.
7096 * src/reader.c (record_merge_function_type): In the case of a result
7097 type clash, report the previous declaration rather than the very first
7098 one in the grammar file.
7099 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7100 declared later): Add a third declaration to check this behavior.
7101 * tests/input.at (Incompatible Aliases): Update output.
7102
7103 2006-06-27 Akim Demaille <akim@epita.fr>
7104
7105 * doc/Doxyfile.in: New.
7106 * doc/Makefile.am: Use it.
7107 * src/lalr.h, src/symtab.h: Initial doxygenation.
7108
7109 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7110
7111 Don't miss %merge result type warnings just because the LHS types are
7112 declared after the %merge. This continues the effort of the previous
7113 patch.
7114 * src/reader.c (get_merge_function): Don't set the merger type yet.
7115 (record_merge_function_type): New function for setting the merger type
7116 and checking for clashes.
7117 (grammar_current_rule_merge_set): Set the location of the %merge for
7118 the current rule.
7119 (packgram): Invoke record_merge_function_type for each rule now that
7120 all symbol type declarations have been parsed.
7121 * src/reader.h (merger_list.type_declaration_location): New member
7122 storing the location of the first %merge from which the type for this
7123 merging function was derived.
7124 * src/symlist.h (symbol_list.merger_declaration_location): New member
7125 storing the location of a rule's %merge, if any.
7126 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7127 declared later): New test to catch the error fixed by the above patch.
7128
7129 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7130
7131 Get action warnings (grammar_rule_check) right even when symbol
7132 declarations appear after the rules. Discussed at
7133 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
7134 and
7135 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
7136 Don't mistake the type of $$ in a midrule to be that of its parent
7137 rule's $$.
7138 * src/reader.c (grammar_current_rule_end): Don't invoke
7139 grammar_rule_check yet since not all symbol declarations may have been
7140 parsed yet.
7141 (grammar_midrule_action): Likewise.
7142 Don't record whether the midrule's $$ has been used yet since actions
7143 haven't been translated yet.
7144 Record the midrule's parent rule and its RHS index within the parent
7145 rule.
7146 (grammar_current_rule_action_append): Don't translate the action yet
7147 since not all symbol declarations may have been parsed yet and, thus,
7148 warnings about types for $$, $n, @$, and @n can't be reported yet.
7149 (packgram): Translate the action and invoke grammar_rule_check now that
7150 all symbol declarations have been parsed.
7151 * src/scan-code.l (handle_action_dollar): Now that this is invoked
7152 after parsing the entire grammar file, the symbol list here in the case
7153 of a midrule is actually the midrule's empty RHS, so reference its
7154 parent rule's RHS where necessary.
7155 On the other hand, now that you can already know it's a midrule, you
7156 aren't forced to think $$ has the same type as its parent rule's $$.
7157 (handle_action_at): In the case of a midrule, reference the parent rule
7158 where necessary.
7159 * src/symlist.c (symbol_list_new): Initialize new midrule-related
7160 members.
7161 (symbol_list_length): Now that this is invoked after all rules have
7162 been parsed, a NULL symbol (rather than a NULL symbol list node)
7163 terminates a rule. symbol_list_print already does this correctly.
7164 * src/symlist.h (symbol_list.midrule_parent_rule,
7165 symbol_list.midrule_parent_rhs_index): New members so that midrules can
7166 remember their relationships with their parents.
7167 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
7168 fixed by the above patch.
7169 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
7170 implementing...
7171 (Unused values): ... this old test case and...
7172 (Unused values before symbol declarations): ... this new test case.
7173 This one is the same as `Unused values' except that all symbol
7174 declarations appear after the rules in order to catch the rest of the
7175 errors fixed by the above patch.
7176
7177 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7178
7179 More cleanup.
7180 * src/reader.c (current_rule): Declare it static since it's no longer
7181 used outside this file.
7182 (grammar_current_rule_action_append): Remove redundant arguments from
7183 translate_rule_action invocation.
7184 * src/reader.h (current_rule): Remove this unused extern.
7185 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
7186 * src/scan-code.l (translate_rule_action): Likewise.
7187
7188 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
7189
7190 Clean up yesterday's patch.
7191 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
7192 to...
7193 * src/reader.c (grammar_current_rule_action_append): ... here for
7194 consistency with grammar_current_rule_symbol_append.
7195 * tests/regression.at (Braced code in declaration in rules section):
7196 Make yyerror and yylex static as usual.
7197
7198 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
7199
7200 Fix bug that mistakes braced code in a declaration in the rules section
7201 to be a rule action. Mentioned at
7202 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
7203 * src/scan-gram.l: Move midrule action detection from the start of the
7204 scanning of any braced code to...
7205 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
7206 action. For readability, use $2 and @2 rather than the equivalent
7207 global variables.
7208 * tests/regression.at (Braced code in declaration in rules section):
7209 New test to catch the error fixed by the above patch.
7210
7211 Work on code readability some.
7212 * src/scan-code.l (current_rule): Get rid of this misleading and
7213 redundant declaration: it's actually extern'ed in reader.h.
7214 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
7215 translate_action): Add a rule argument and use it instead of the global
7216 current_rule.
7217 (translate_rule_action): This already receives current_rule through an
7218 argument, so pass it on to translate_action instead of assigning
7219 current_rule to current_rule.
7220 (translate_symbol_action, translate_code): Pass rule = NULL to
7221 translate_action.
7222
7223 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
7224
7225 Rename %before-definitions to %start-header and %after-definitions to
7226 %end-header. Don't use these declarations to separate pre-prologue
7227 blocks from post-prologue blocks. Add new order-independent
7228 declarations %before-header and %after-header as alternatives to the
7229 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
7230 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
7231 * NEWS (2.3+): Update for these changes.
7232 * data/glr.c (b4_before_definitions): Update to...
7233 (b4_start_header): ... this.
7234 (b4_after_definitions): Update to...
7235 (b4_end_header): ... this.
7236 * data/glr.cc: Likewise.
7237 * data/lalr1.cc: Likewise.
7238 * data/yacc.c: Likewise.
7239 * doc/bison.texinfo (The prologue): Update names, and replace remaining
7240 prologue blocks with %*-header declarations.
7241 (Calc++ Parser): Likewise.
7242 (Decl Summary): Update names.
7243 (Table of Symbols): Update description.
7244 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
7245 (PERCENT_END_HEADER): ... this.
7246 (PERCENT_BEFORE_DEFINITIONS): Update to...
7247 (PERCENT_START_HEADER): ... this.
7248 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7249 (declaration): Update token names and m4 macro names.
7250 When parsing %end-header and %start-header, invoke translate_code
7251 before muscle_code_grow, and no longer set global booleans to remember
7252 whether these declarations have been seen.
7253 Parse new %after-header and %before-header.
7254 * src/reader.c (before_definitions, after_definitions): Remove.
7255 (prologue_augment): Accept a new bool argument to specify whether to
7256 augment the pre-prologue or post-prologue.
7257 * src/reader.h (before_definitions, after_definitions): Remove these
7258 extern's.
7259 (prologue_augment): Add new bool argument.
7260 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
7261 (PERCENT_END_HEADER): ... this.
7262 (PERCENT_BEFORE_DEFINITIONS): Update to...
7263 (PERCENT_START_HEADER): ... this.
7264 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7265 * tests/actions.at (Printers and Destructors): Update names.
7266
7267 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
7268
7269 Add comparison operators for C++ location classes. Discussed at
7270 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
7271 * data/c++.m4 (b4_define_location_comparison): New boolean %define
7272 declaration indicating whether filename_type has an operator==. If
7273 filename_type is `std::string', it defaults to `1', `0' otherwise.
7274 * data/location.cc: Iff b4_define_location_comparison is `1', add
7275 operator== and operator!= for class position and for class location.
7276
7277 Some minor fixes.
7278 * src/scan-action.l: Remove unused file.
7279 * src/symtab.c (symbol_printer_set): Use printer_location not
7280 destructor_location.
7281 * src/symtab.h (struct symbol): Replace incorrect source comment for
7282 printer members.
7283 * tests/input.at (Incompatible Aliases): Update output with correct
7284 printer location.
7285
7286 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
7287
7288 Don't put the pre-prologue in the header file. For the yacc.c code
7289 file and the glr.c header and code files, move the pre-prologue before
7290 the token definitions. Add new %before-definitions and
7291 %after-definitions to declare code that will go in both the header file
7292 and code file. Discussed at
7293 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
7294 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
7295 and
7296 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
7297 * NEWS (2.3+): Describe these changes.
7298 * data/glr.c (b4_pre_prologue): Move from within to before...
7299 (b4_shared_declarations): ... this.
7300 Add new b4_before_definitions before b4_token_enums.
7301 Add new b4_after_definitions at the end.
7302 * data/glr.cc (b4_pre_prologue): Replace with...
7303 (b4_before_definitions): ... this in the header file.
7304 (b4_after_definitions): New near the end of the header file.
7305 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
7306 code file right before including the header file.
7307 (b4_before_definitions): New in the previous position of
7308 b4_pre_prologue in the header file.
7309 (b4_after_definitions): New near the end of the header file.
7310 * data/yacc.c: Clean up some m4 quoting especially in the header file.
7311 (b4_token_enums_defines): In the code file, move to right before
7312 YYSTYPE for consistency with the header file.
7313 (b4_before_definitions): New right before b4_token_enums_defines in
7314 both the header and code file.
7315 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
7316 header and code file.
7317 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
7318 of prologues for %union dependencies.
7319 (Decl Summary): In %defines description, mention the effect of
7320 %before-definitions and %after-definitions on the header file.
7321 (Calc++ Parser): Forward declare driver in a %before-definitions rather
7322 than in the pre-prologue so that make check succeeds.
7323 (Table of Symbols): Add entries for %before-definitions and
7324 %after-definitions.
7325 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
7326 %before-definitions.
7327 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
7328 (declaration): Parse those declarations and append to
7329 b4_before_definitions and b4_after_definitions, respectively.
7330 * src/reader.c (before_definitions, after_definitions): New bools to
7331 track whether those declarations have been seen.
7332 (prologue_augment): Add to the post-prologue if %union,
7333 %before-definitions, or %after-definitions has been seen.
7334 * src/reader.h (before_definitions, after_definitions): New extern's.
7335 * src/scan-gram.l: Scan the new declarations.
7336 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
7337 prologue block in a %before-definitions or a %after-definitions based
7338 on whether the %union is declared.
7339 * tests/regression.at (Early token definitions with --yacc, Early token
7340 definitions without --yacc): Move tests for token definitions into the
7341 post-prologue since token names are no longer defined in the
7342 pre-prologue.
7343
7344 2006-06-20 Akim Demaille <akim@epita.fr>
7345
7346 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
7347 (symbol_get): Use it.
7348 * src/parse-gram.y: Use it.
7349
7350 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
7351
7352 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
7353 build succeeds when configured with --enable-gcc-warnings.
7354
7355 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
7356
7357 * src/parse-gram.y (char_name): New function.
7358 (CHAR, STRING, string_content): For %printer, properly escape.
7359 (ID): Prefer fputs to fprintf.
7360 (id): Reindent to be consistent with other rules.
7361 Properly quote char.
7362
7363 The Translation Project changed its way of publishing translations
7364 to maintainers. I haven't received any responses to my request
7365 for supporting the old way, or for documenting the new way. I
7366 have modified 'bootstrap' to use screen scraping
7367 (in this case, HTML scraping). This is unreliable and inelegant,
7368 but I don't see any better way. Yuck.
7369 * bootstrap (TP_URL, WGET_COMMAND): New vars.
7370 (get_translations): New function, which uses HTML scraping to
7371 deduce locations of latest translations.
7372 Use this function to grab both bison and bison-runtime .po files.
7373 Don't bother priming the pump for the runtime-po domain any more,
7374 as it's now translated better than bison is.
7375
7376 2006-06-19 Akim Demaille <akim@epita.fr>
7377
7378 * src/scan-gram.l: No longer "parse" things after `%union' until
7379 `{'. Rather, return a single "%union" token.
7380 No longer make symbols: return strings, and leave the conversion
7381 to symbols to the parser.
7382 (SC_PRE_CODE, token_type): Remove.
7383 * src/parse-gram.y (%union): New field `character'.
7384 Sort tokens.
7385 (CHAR): New token.
7386 (ID, ID_COLON): Now that the scanner no longer makes them
7387 identifiers, adjust all uses to invoke symbol_get.
7388 (id_colon): New, wraps the conversion from string to symbol.
7389 (%union): Accept a possible union_name.
7390 (symbol): Now can be a char.
7391 * data/c.m4 (b4_union_name): Leave a default value.
7392 * data/glr.c, data/yacc.c: Use it.
7393
7394 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
7395
7396 For associating token numbers with token names for "yacc.c", don't use
7397 #define statements unless `--yacc' is specified; always use enum
7398 yytokentype. Most important discussions start at:
7399 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
7400 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
7401 and
7402 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
7403 * NEWS (2.3+): Mention.
7404 * data/c.m4 (b4_yacc_if): New.
7405 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
7406 token #define's.
7407 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
7408 on token name definitions.
7409 * src/getargs.c (usage): Capitalize `Yacc' in English.
7410 * src/output.c (prepare): Define b4_yacc_flag.
7411 * tests/regression.at (Early token definitions): Test that tokens names
7412 are defined before the pre-prologue not just before the post-prologue.
7413 Remove this test case and copy to...
7414 (Early token definitions with --yacc): ... this to test #define's.
7415 (Early token definitions without --yacc): ... and this to test enums.
7416
7417 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
7418
7419 * NEWS: Reword the post-2.3 change to not be so optimistic about
7420 removing the old "look-ahead" spelling.
7421 Update previous look-ahead/lookahead change reports.
7422 * REFERENCES: look-ahead -> lookahead (since that's
7423 what he actually wrote).
7424 * doc/refcard.tex: look ahead -> lookahead,
7425 look-ahead -> lookahead
7426
7427 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
7428
7429 For consistency, use `lookahead' instead of `look-ahead' or
7430 `look_ahead'. Discussed starting at
7431 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
7432 and then at
7433 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
7434 * NEWS: For the next release, note the change to `--report'.
7435 * TODO, doc/bison.1: Update English.
7436 * doc/bison.texinfo: Update English.
7437 (Understanding Your Parser, Bison Options): Document as
7438 `--report=lookahead' rather than `--report=look-ahead'.
7439 * src/conflicts.c: Update English in comments.
7440 (lookahead_set): Rename from look_ahead_set.
7441 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
7442 (resolve_sr_conflict): Rename local look_ahead_tokens to
7443 lookahead_tokens, and update other uses.
7444 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
7445 count_rr_conflicts, conflicts_free): Update uses.
7446 * src/getargs.c (report_args): Move "lookahead" before alternate
7447 spellings.
7448 (report_types): Update uses.
7449 (usage): For `--report' usage description, state `lookahead' spelling
7450 rather than `look-ahead'.
7451 * src/getargs.h (report.report_lookahead_tokens): Rename from
7452 report_look_ahead_tokens.
7453 * src/lalr.c: Update English in comments.
7454 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
7455 (state_lookahead_tokens_count): Rename from
7456 state_look_ahead_tokens_count.
7457 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7458 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
7459 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7460 Update other uses.
7461 Update English in output.
7462 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
7463 * src/print.c: Update English in comments.
7464 (lookahead_set): Rename from look_ahead_set.
7465 (print_reduction): Rename argument lookahead_token from
7466 look_ahead_token.
7467 (print_core, state_default_rule, print_reductions, print_results):
7468 Update uses.
7469 * src/print_graph.c: Update English in comments.
7470 (print_core): Update uses.
7471 * src/state.c: Update English in comments.
7472 (reductions_new): Update uses.
7473 (state_rule_lookahead_tokens_print): Rename from
7474 state_rule_look_ahead_tokens_print, and update other uses.
7475 * src/state.h: Update English in comments.
7476 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
7477 (state_rule_lookahead_tokens_print): Rename from
7478 state_rule_look_ahead_tokens_print.
7479 * src/tables.c: Update English in comments.
7480 (conflict_row, action_row): Update uses.
7481 * tests/glr-regression.at
7482 (Incorrect lookahead during deterministic GLR,
7483 Incorrect lookahead during nondeterministic GLR): Rename
7484 print_look_ahead to print_lookahead.
7485 * tests/torture.at: Update English in comments.
7486 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
7487 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
7488 (Many lookahead tokens): Update uses.
7489 * data/glr.c: Update English in comments.
7490 * lalr1.cc: Likewise.
7491 * yacc.c: Likewise.
7492 * src/conflicts.h: Likewise.
7493 * src/lalr.h: Likewise.
7494 * src/main.c: Likewise.
7495 * src/output.c: Likewise.
7496 * src/parse-gram.c: Likewise.
7497 * src/tables.h: Likewise.
7498 * tests/calc.at: Likewise.
7499
7500 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
7501
7502 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
7503
7504 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
7505
7506 * TODO: Add request from Nelson H. F. Beebe to be able to install
7507 Bison without installing the yacc script.
7508
7509 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7510
7511 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
7512 and yytext if they're already #define'd.
7513 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
7514 * src/scan-code-c.c: ... here.
7515 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
7516 <config.h>.
7517
7518 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7519
7520 Get Bison to build again when configured with --enable-gcc-warnings.
7521 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
7522 missing #include's.
7523 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
7524 loc argument as it shadows a global.
7525 * src/scan-gram.l: Remove stray comma that prevents boundary_set
7526 invocation.
7527
7528 * src/.cvsignore: Add scan-code.c.
7529
7530 2006-06-07 Akim Demaille <akim@epita.fr>
7531
7532 * src/scan-gram.l: Move the "add a trailing ; to actions" code
7533 to...
7534 * src/scan-code.l: here.
7535 * tests/input.at (Torturing the Scanner): Fix another location
7536 error.
7537
7538 2006-06-07 Akim Demaille <akim@epita.fr>
7539
7540 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
7541
7542 2006-06-06 Akim Demaille <akim@epita.fr>
7543
7544 Extract the parsing of user actions from the grammar scanner.
7545 As a consequence, the relation between the grammar scanner and
7546 parser is much simpler. We can also split "composite tokens" back
7547 into simple tokens.
7548 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
7549 * src/scan-gram.l (add_column_width, adjust_location): Move to and
7550 rename as...
7551 * src/location.h, src/location.c (add_column_width)
7552 (location_compute): these.
7553 Fix the column count: the initial column is 0.
7554 (location_print): Be robust to ending column being 0.
7555 * src/location.h (boundary_set): New.
7556 * src/main.c: Adjust to scanner_free being renamed as
7557 gram_scanner_free.
7558 * src/output.c: Include scan-code.h.
7559 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
7560 Use boundary_set.
7561 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
7562 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
7563 which is now, again, a separate token.
7564 Adjust all dependencies.
7565 Whereever actions with $ and @ are used, use translate_code.
7566 (action): Remove this nonterminal which is now useless.
7567 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
7568 (grammar_current_rule_action_append): Use translate_code.
7569 (packgram): Bound check ruleno, itemno, and rule_length.
7570 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
7571 (last_string, last_braced_code_loc, max_left_semantic_context)
7572 (scanner_initialize, scanner_free, scanner_last_string_free)
7573 (gram_out, gram_lineno, YY_DECL_): Move to...
7574 * src/scan-gram.h: this new file.
7575 (YY_DECL): Rename as...
7576 (GRAM_DECL): this.
7577 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
7578 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
7579 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
7580 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
7581 Move these declarations, and...
7582 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
7583 these to...
7584 * src/flex-scanner.h: this new file.
7585 * src/scan-gram.l (rule_length, rule_length_overflow)
7586 (increment_rule_length): Remove.
7587 (last_braced_code_loc): Rename as...
7588 (gram_last_braced_code_loc): this.
7589 Adjust to the changes of the parser.
7590 Move all the handling of $ and @ into...
7591 * src/scan-code.l: here.
7592 * src/scan-gram.l (handle_dollar, handle_at): Remove.
7593 (handle_action_dollar, handle_action_at): Move to...
7594 * src/scan-code.l: here.
7595 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
7596 scan-code.h, scan-code-c.c, scan-gram.h.
7597 (EXTRA_bison_SOURCES): Add scan-code.l.
7598 (BUILT_SOURCES): Add scan-code.c.
7599 (yacc): Be robust to white spaces.
7600
7601 * tests/conflicts.at, tests/input.at, tests/reduce.at,
7602 * tests/regression.at: Adjust the column numbers.
7603 * tests/regression.at: Adjust the error message.
7604
7605 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
7606
7607 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
7608 Use Akim's wording from
7609 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
7610
7611 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
7612
7613 Between Bison releases, manually append `+' to the previous Bison
7614 release number, and use that as a signal to automatically print the
7615 ChangeLog's CVS Id keyword from --version. Discussed starting at
7616 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
7617 * ChangeLog: Add Id header.
7618 * configure.ac (AC_INIT): Append `+' to `2.3'.
7619 * src/.cvsignore: Add revision.c.
7620 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
7621 (BUILT_SOURCES): Add revision.c.
7622 (revision.c): New target rule. This file defines a new global variable
7623 named revision. It initializes it with either the Id from ChangeLog
7624 or, if VERSION doesn't contain `+', with the empty string.
7625 * src/getargs.c (version): Print the value of revision.
7626 * src/revision.h: Extern revision.
7627
7628 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
7629
7630 * NEWS: Version 2.3.
7631 * configure.ac (AC_INIT): Likewise.
7632
7633 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
7634
7635 * data/glr.c (YYRECOVERING): Define to be a function-like macro
7636 with no arguments, not as an object-like macro. This is for
7637 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
7638 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
7639 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
7640 Document this.
7641
7642 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
7643
7644 * src/getargs.c (usage): Back out yesterday's modification of the
7645 --help output so that we don't have to wait for translation before
7646 releasing 2.3.
7647
7648 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
7649
7650 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
7651 Problem reported by Akim Demaille.
7652
7653 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
7654
7655 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
7656
7657 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
7658
7659 * data/yacc.c (yy_reduce_print): Omit trailing white space in
7660 generated source code. Problem reported by Frans Englich in
7661 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
7662
7663 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
7664
7665 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
7666 shell, not within 'make', so that 'make' by an ordinary builder
7667 (using GNU make) does not worry about configuring gzip. This also
7668 works around a bug reported independently by Keith Thompson and by
7669 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
7670 stderr rather than stdout, messing up the build logs.
7671
7672 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
7673
7674 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
7675 to make sure that YYID will never be unused. This fixes a 'make
7676 maintainer-check' failure caused by the recent changes to the 'Trivial
7677 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
7678 not used.
7679 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
7680
7681 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
7682
7683 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
7684 state before an empty RHS is always resolved here. Only the location
7685 of that state is guaranteed to be resolved, and that's enough. This
7686 fixes the remaining bug reported by Derek M. Jones in
7687 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
7688 * tests/glr-regression.at (Uninitialized location when reporting
7689 ambiguity): Test the above case.
7690 Also, the embedded comments in this test case claim it checks the case
7691 of an empty RHS that has inherited the initial location. However, the
7692 corresponding LHS was already resolved, so yyresolveLocations didn't
7693 actually have reason to modify it. Fix this by forcing
7694 nondeterministic operation at the beginning of the parse.
7695
7696 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
7697
7698 * data/c.m4 (b4_yy_symbol_print_generate):
7699 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
7700 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
7701 of the bugs reported today by Derek M Jones in
7702 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
7703 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
7704 defined to be a type name without parens or brackets.
7705 (Location Type): Similarly for YYLTYPE.
7706 * tests/regression.at (Trivial grammars): Put in a test for this
7707 bug that will be caught by 'make maintainer-check' (though not,
7708 alas, by 'make check' unless your compiler is picky).
7709
7710 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
7711
7712 * NEWS: Version 2.2.
7713 * configure.ac (AC_INIT): Likewise.
7714
7715 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
7716
7717 * data/glr.c (yyreportTree): Make room in yystates for the state
7718 preceding the RHS. This fixes the segmentation fault reported by Derek
7719 M. Jones in
7720 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
7721 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
7722 to the user. Reported for yyreportTree by Derek M. Jones later in the
7723 same thread.
7724 * THANKS: Add Derek M. Jones.
7725 Update my email address.
7726 Fix typo in Steve Murphy's name.
7727
7728 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
7729
7730 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
7731 checking against YYLAST that caused the parser to miss a potential
7732 alternative in its diagnostic.
7733 Problem reported by Maria Jose Moron Fernandez in
7734 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
7735 * data/lalr1.cc (yysyntax_error_): Likewise.
7736 * data/yacc.c (yysyntax_error): Likewise.
7737 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
7738 tokens, in case we run into an older C compiler.
7739 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
7740 Use them to check for the off-by-one error fixed above.
7741
7742 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
7743 YYSIZE_T, not size_t.
7744 * tests/regression.at (Trivial grammars): New test, to catch
7745 the error fixed by the above patch.
7746
7747 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7748
7749 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
7750 scheme.
7751 Reported by Steve Murphy.
7752
7753 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7754
7755 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
7756 * data/glr.cc: b4_location_flag is now b4_locations_flag.
7757
7758 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7759
7760 Implement --trace=m4.
7761 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
7762 * src/output.c (output_skeleton): When set, pass -dV to m4.
7763
7764 Factor the handling of flags in m4.
7765 * src/output.c (prepare): Rename the muscle names debug, defines,
7766 error_verbose to debug_flag, defines_flag, error_verbose_flag.
7767 * data/c.m4: Adjust.
7768 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
7769 Use b4_define_flag_if to define other b4_FLAG_if macros.
7770 (b4_location_if): As a consequence, rename as...
7771 (b4_locations_if): this, for consistency.
7772 Adjust all the skeletons.
7773
7774 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7775
7776 * etc/bench.pm: Shorten bench names.
7777
7778 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7779
7780 * src/output.h, src/output.c (error_verbose): Move to...
7781 * src/getargs.h, src/getargs.c: here.
7782 Sort the flags.
7783 Adjust dependencies.
7784
7785 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
7786
7787 * data/c.m4 (b4_copyright): Put the special exception for Bison
7788 skeletons here, so we don't have to put it in each skeleton. All
7789 uses changed. Suggested by Akim Demaille. Also, wrap the
7790 copyright notice, in case it is longer than 80 columns. Replace
7791 comma by newline after title.
7792
7793 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
7794
7795 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
7796 incompatibility, not a bug. Mention that it wasn't fixed as of
7797 flex 2.5.33.
7798
7799 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
7800
7801 * examples/extexi: Enforce the precedence of concatenation over
7802 >>.
7803 Reported by Tommy Nordgren.
7804
7805 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
7806
7807 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
7808 with the member "token".
7809 Reported by Martin Nylin.
7810
7811 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
7812
7813 * data/glr.c: Switch to Bison 2.2 special-exception language in
7814 the copyright notice. Use more-regular format for titles and
7815 copyright notices.
7816 * data/glr.cc: Likewise.
7817 * data/location.cc: Likewise.
7818 * data/yacc.cc: Likewise.
7819 * doc/bison.texinfo (Conditions): Document this.
7820 * NEWS: likewise. Upgrade version to 2.2.
7821
7822 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
7823
7824 * data/glr.cc: Remove dead code.
7825
7826 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
7827
7828 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
7829 that variable and the line breaks the bootstrap. Problem reported
7830 by Juan M. Guerrero.
7831
7832 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
7833
7834 * doc/bison.texinfo (Multiple start-symbols): New.
7835
7836 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
7837
7838 * etc/README, etc/bench.pl: New.
7839
7840 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
7841
7842 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
7843 rule.
7844 Reported by Mickael Labau.
7845 * tests/input.at (Torturing the Scanner): Test it.
7846
7847 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
7848
7849 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
7850 Problem reported by Bob Rossi.
7851
7852 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
7853
7854 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
7855 and didn't really work.
7856 For the index, use @ifnotinfo, not @iftex.
7857 Minor cleanups of spacing and terminology.
7858
7859 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
7860
7861 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
7862 of AT_NAME_PREFIX when %name-prefix is not used.
7863
7864 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
7865
7866 Apply --prefix to C++ skeletons too: they change the namespace.
7867 The test suite already exercize these cases.
7868 * data/c++.m4 (b4_namespace): New.
7869 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
7870 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
7871 * data/yacc.c, data/glr.c: Remove a useless `[]'.
7872 * doc/bison.texinfo: Document it.
7873 (Option Cross Key): Use @multitable in all formats. It looks
7874 nicer, even in TeX outputs.
7875 (Rules): Use the same code whatever the output type is.
7876 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
7877 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
7878 * tests/calc.at: Use it, instead of hard coding `yy'.
7879
7880 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7881
7882 * TODO: Remove dead items.
7883
7884 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7885
7886 * doc/FAQ: Remove, merged into...
7887 * doc/bison.texinfo (FAQ): this.
7888 * doc/Makefile.am (EXTRA_DIST): Adjust.
7889
7890 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7891
7892 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
7893 even if empty.
7894 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
7895 * doc/bison.texinfo (Calc++ Scanner): Use it.
7896
7897 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
7898
7899 Fix two nits reported by twlevo, plus one more that I discovered.
7900
7901 * src/assoc.h (assoc_to_string): Give a name to the arg, as
7902 this is the usual Bison style.
7903 * src/location.h (location_print): Likewise.
7904
7905 * src/reader.h (token_name): Likewise.
7906
7907 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
7908
7909 Fix some nits reported by twlevo.
7910 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
7911 and "POSIX". Use more-modern syntax for URLs. Mention C++
7912 and ask for Java. Don't hardwire OS version numbers. Add
7913 copyright notice.
7914 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
7915 * src/conflicts.c (solved_conflicts_obstack): Now static.
7916
7917 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
7918
7919 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
7920 page. Say "you can use it" not "you may use it" as on the web page;
7921 we're describing capabilities not granting permission.
7922
7923 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
7924
7925 * data/glr.c (yyresolveLocations): Rename local variables to avoid
7926 shadowing warnings. Use usual patter for iterating through RHS.
7927 * tests/glr-regression.at
7928 (Uninitialized location when reporting ambiguity):
7929 Modify yylex so that it uses its argument, rather than trying
7930 to rely on ARGSUSED (which doesn't work for gcc with warnings).
7931 const char -> char const.
7932
7933 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
7934 Don't use tabs inside commands; it messes up 'ps'.
7935 Problem reported by twlevo.
7936
7937 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
7938
7939 * tests/glr-regression.at (Uninitialized location when reporting
7940 ambiguity): New test case.
7941 * data/glr.c (yyresolveLocations): New function, which uses
7942 YYLLOC_DEFAULT.
7943 (yyresolveValue): Invoke yyresolveLocations before reporting an
7944 ambiguity.
7945 * doc/bison.texinfo (Default Action for Locations): Note
7946 YYLLOC_DEFAULT's usage for ambiguity locations.
7947 (GLR Semantic Actions): Cross-reference those notes.
7948
7949 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
7950
7951 * tests/glr-regression.at (Leaked semantic values when reporting
7952 ambiguity): Remove unnecessary union and type declarations.
7953 (Leaked lookahead after nondeterministic parse syntax error): New test
7954 case.
7955 * data/glr.c (yyparse): Check for zero stacks remaining before
7956 attempting to shift the lookahead so that you don't lose it.
7957
7958 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
7959
7960 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
7961 * tests/glr-regression.at (Leaked semantic values when reporting
7962 ambiguity): New test case.
7963 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
7964 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
7965 now unnecessary yystackp parameter.
7966 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
7967 destructors can be called.
7968
7969 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
7970 in existing testcases.
7971
7972 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
7973
7974 Don't leak semantic values for parent RHS when a user action cuts the
7975 parser, and clean up related code a bit.
7976 * tests/glr-regression.at (Leaked merged semantic value if user action
7977 cuts parse): Rename to...
7978 (Leaked semantic values if user action cuts parse): ... this. Add check
7979 for leaked parent RHS values.
7980 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
7981 between an unresolved state (non-empty chain of semantic options) and
7982 an incomplete one (signaled by an empty chain).
7983 (yyresolveStates): Document the interface. Move all manipulation of a
7984 successfully or unsuccessfully resolved yyGLRState to...
7985 (yyresolveValue): ... here so that yyresolveValue always leaves a
7986 yyGLRState with consistent data and thus is easier to understand.
7987 Remove the yyvalp and yylocp parameters since they are always just
7988 taken from the yys parameter. When reporting a discarded merged value
7989 in debugging output, note that it is incompletely merged. Document the
7990 interface.
7991 (yyresolveAction): If resolving any of the RHS states fails, destroy
7992 them all rather than leaking them. Thus, as long as user actions are
7993 written to clean up the RHS correctly, yyresolveAction always cleans up
7994 the RHS of a semantic option. Document the interface.
7995
7996 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
7997
7998 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
7999 led to a segmentation fault in GNU Pascal. Problem reported
8000 by Waldek Hebisch.
8001
8002 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
8003
8004 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
8005 mid-rule action inside a nonterminal symbol in order to declare a
8006 destructor for its semantic value.
8007
8008 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
8009
8010 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
8011 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
8012 __cplusplus && ! defined _STDLIB_H && !
8013 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
8014 defined free))]: Include <stdlib.h> rather than rolling our own
8015 declarations of malloc and free, to avoid problems with
8016 incompatible declarations (using 'throw') C++'s stdlib.h. This
8017 should fix Debian bug 340012
8018 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
8019 reported by Guillaume Melquiond.
8020
8021 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8022
8023 * NEWS: Clarify symbols versus types in unused-value warnings.
8024
8025 * configure.ac (AC_INIT): Bump version number.
8026
8027 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8028
8029 * NEWS: Version 2.1a.
8030 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
8031 since C99 requires this.
8032
8033 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
8034
8035 * m4/c-working.m4: New file.
8036 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
8037
8038 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
8039
8040 * Makefile.maint: Merge from coreutils.
8041
8042 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
8043
8044 More portability fixes for problems summarized by Nelson H. F. Beebe.
8045
8046 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
8047 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
8048 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
8049 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
8050 messes up because C++ code is compiled in 32-bit mode but linked
8051 in 64-bit mode.
8052
8053 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
8054
8055 More portability fixes for problems summarized by Nelson H. F. Beebe.
8056
8057 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
8058 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
8059
8060 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
8061 nodist_PROGRAMS, since we don't need to actually compile the
8062 example if we're just doing a plain 'make'. This avoids bothering
8063 the installer unnecessarily about problems due to weird C++
8064 compilers.
8065
8066 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
8067
8068 More portability fixes for problems summarized by Nelson H. F. Beebe.
8069
8070 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
8071 than #include "...", and compile with -I'.'. The old method was
8072 not portable, according to Posix and the C standard, and it does
8073 not work with Sun C 5.7, where previous #line directives affect
8074 the working directory used in later #include "..." directives.
8075
8076 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8077
8078 Various DJGGP specific issues in /djgpp
8079
8080 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
8081
8082 More portability fixes for problems summarized by Nelson H. F. Beebe.
8083
8084 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
8085 '#include <map>' works and that you can apply ++ to iterators.
8086
8087 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
8088
8089 Work around portability problems summarized by Nelson H. F. Beebe in
8090 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
8091
8092 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8093 that '#include <string>' works.
8094
8095 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
8096 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
8097 "warning: sorry: semantics of inline function static data `const
8098 unsigned char translate_table[262]' are wrong (you'll wind up with
8099 multiple copies)".
8100
8101 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
8102 or, xor to not_, and_, or_, and xor_, respectively. This works
8103 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
8104 random system header somewhere that includes the equivalent of
8105 <iso646.h>.
8106
8107 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
8108 -E" works; it apparently doesn't work with PathScale EKO Compiler
8109 Suite Version 2.0.
8110
8111 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
8112
8113 During deterministic GLR operation, user actions should be able to
8114 influence the parse by changing yychar. To make this easier to fix and
8115 to make glr.c easier to evolve in general, don't maintain yytoken in
8116 parallel with yychar; just compute yytoken when needed.
8117 * tests/glr-regression.at (Incorrect lookahead during deterministic
8118 GLR): Check that setting yychar in a user action has the intended
8119 effect.
8120 * data/glr.c (yyGLRStack): Remove yytokenp member.
8121 (yyclearin): Don't set *yytokenp.
8122 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
8123 yychar rather than *yytokenp to determine the current lookahead.
8124 Compute yytoken locally when needed.
8125 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
8126 point to.
8127
8128 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
8129 after `--report' documentation.
8130
8131 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
8132
8133 * src/parse-gram.y (grammar_declaration): Location of printer
8134 symbol is @1, not list->location. Bug reported by twlevo.
8135 * tests/input.at (Incompatible Aliases): Adjust to above change.
8136
8137 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
8138
8139 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
8140 all the test at once. This makes the output easier to read in the
8141 normal case.
8142
8143 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
8144 got from <http://bro-ids.org/download.html>. The bug is that
8145 when two actions appeared in succession, the second one was
8146 scanned before the first one was added to the grammar rule
8147 as a midrule action. Bison then output the incorrect warning
8148 "parse.y:905.17-906.36: warning: unused value: $3".
8149 * src/parse-gram.y (BRACED_CODE, action): These are no longer
8150 associated with a value.
8151 (rhs): Don't invoke grammar_current_rule_action_append.
8152 (action): Invoke it here instead.
8153 * src/reader.c (grammar_midrule_action): Now extern.
8154 (grammar_current_rule_action_append): Don't invoke
8155 grammar_midrule_action; that is now the scanner's job.
8156 * src/reader.h (last_string, last_braced_code_loc):
8157 (grammar_midrule_action): New decls.
8158 * src/scan-gram.l (last_string): Now extern, sigh.
8159 (last_braced_code_loc): New extern variable.
8160 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
8161 rule already has an action.
8162 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
8163 * tests/input.at (AT_CHECK_UNUSED_VALUES):
8164 Add some tests to check that the above changes fixed the bug.
8165
8166 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
8167
8168 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
8169 All used changed. Check whether the symbol has a destructor,
8170 not whether it is typed.
8171 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
8172 that the values are still reported as unused. All line numbers
8173 adjusted.
8174
8175 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
8176
8177 Work around a bug in bro 0.8, which underparenthesizes its
8178 definition of YYLLOC_DEFAULT.
8179 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
8180 their arguments.
8181 * data/lalr1.cc: Likewise.
8182 * data/yacc.cc: Likewise.
8183
8184 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
8185
8186 Work around a bug in Pike 7.0, and give the Pike folks a
8187 better way to override the usual int widths.
8188 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
8189 user can override the types.
8190 (short): #undef, to work around a bug in Pike 7.0.
8191 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
8192 (union yyalloc.yyss): Use yytype_int16 rather than short.
8193 All uses changed.
8194 (yysigned_char): Remove.
8195 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
8196 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
8197 * tests/regression.at (Web2c Actions): Adjust to above changes.
8198
8199 * src/reader.c (check_and_convert_grammar): New function.
8200 (reader): Close the input file even if something went wrong during
8201 parsing. Minor file descriptor leak reported by twlevo.
8202
8203 * src/assoc.c (assoc_to_string): Use a default: abort (); case
8204 to pacify gcc -Wswitch-default.
8205 * src/scan-gram.l (adjust_location): Use a default: break; case
8206 to pacify gcc -Wswitch-default.
8207 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
8208 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8209 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8210 Move these decls to scan-skel.l, since they don't need to be
8211 visible elsewhere.
8212 * src/scan-skel.l: Accept the above decls.
8213 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
8214 is used.
8215
8216 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
8217
8218 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
8219 since we don't want to insist on a version number at the start
8220 of the changelog every time.
8221 * Makefile.maint: Sync from coreutils a bit better.
8222 (sc_trailing_blank): Renamed from sc_trailing_space.
8223 All uses changed.
8224 (sc_no_if_have_config_h, sc_require_config_h):
8225 (sc_prohibit_assert_without_use): New rules.
8226 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
8227 (sc_dd_max_sym_length): Fix leading spaces in rule.
8228 (sc_system_h_headers): Prefix with @.
8229 (sc_useless_cpp_parens, m4-check): Output line numbers.
8230 (changelog-check): Allow version only in head.
8231 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
8232 satisfy new Makefile.maint rule.
8233 * data/glr.c: Likewise.
8234 * data/glr.cc: Likewise.
8235 * data/lalr1.cc: Likewise.
8236 * data/yacc.c: Likewise.
8237 * lib/ebitsetv.c: Likewise.
8238 * lib/lbitset.c: Likewise.
8239 * lib/subpipe.c: Likewise.
8240 * lib/timevar.c: Likewise.
8241 * src/system.h: Likewise.
8242 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
8243 * djgpp/Makefile.maint: Add copyright notice.
8244 * djgpp/README.in: Likewise.
8245 * djgpp/config.bat: Likewise.
8246 * djgpp/config.site: Likewise.
8247 * djgpp/config_h.sed: Likewise.
8248 * djgpp/djunpack.bat: Likewise.
8249 * djgpp/config.sed: Fix copyright notice to match standard format.
8250 * djgpp/subpipe.h: Likewise.
8251 * lib/bitsetv-print.c: Likewise.
8252 * lib/bitsetv.c: Likewise.
8253 * lib/subpipe.h: Likewise.
8254 * lib/timevar.c: Likewise.
8255 * lib/timevar.h: Likewise.
8256 * djgpp/subpipe.c: Use standard recipe for config.h.
8257 * lib/abitset.c: Likewise.
8258 * lib/bitset.c: Likewise.
8259 * lib/bitset_stats.c: Likewise.
8260 * lib/bitsetv-print.c: Likewise.
8261 * lib/bitsetv.c: Likewise.
8262 * lib/ebitsetv.c: Likewise.
8263 * lib/get-errno.c: Likewise.
8264 * lib/lbitset.c: Likewise.
8265 * lib/subpipe.c: Likewise.
8266 * lib/timevar.c: Likewise.
8267 * lib/vbitset.c: Likewise.
8268 * tests/local.at: Likewise.
8269 * src/scan-gram.l: Don't include verify.h, since system.h does
8270 that for us.
8271 * .x-sc_require_config_h: New file.
8272 * .x-sc_unmarked_diagnostics: New file.
8273
8274 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
8275
8276 Be a bit more systematic about using 'abort'.
8277 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
8278 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
8279 Put 'default: abort ();' before some other case, to satisfy older
8280 pedantic compilers.
8281 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8282 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
8283 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
8284 * src/conflicts.c (resolve_sr_conflict): Likewise.
8285 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
8286 (get_decision_str, get_orientation_str, get_node_alignment_str):
8287 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
8288 (get_linestyle_str, get_arrowstyle_str): Likewise.
8289 * src/conflicts.c (resolve_sr_conflict):
8290 Use a default case rather than one for the one remaining enum
8291 value, to catch invalid enum values as well.
8292 * src/lalr.c (set_goto_map, map_goto):
8293 Prefer "assert (FOO);" to "if (!FOO) abort ();".
8294 * src/nullable.c (nullable_compute, token_definitions_output):
8295 Likewise.
8296 * src/reader.c (packgram, reader): Likewise.
8297 * src/state.c (transitions_to, state_new, state_reduction_find):
8298 Likewise.
8299 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
8300 (symbol_pack): Likewise.
8301 * src/tables.c (conflict_row, pack_vector): Likewise.
8302 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
8303 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
8304 * src/system.h: Don't include <assert.h>.
8305 (assert): New macro.
8306
8307 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
8308 (Destructor Decl, Parser Function, Pure Calling):
8309 Describe rules for braces inside C code more carefully.
8310
8311 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
8312
8313 Fix some porting glitches found by Nelson H. F. Beebe.
8314 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
8315 compilers that don't understand that abort () does not return.
8316 * src/state.c (transitions_to): Likewise.
8317 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8318 that '#include <cstdlib>' works.
8319 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
8320 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
8321 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
8322 for the benefit of some pre-C99 compilers.
8323
8324 * bootstrap: Undo changes to gnulib files that autoreconf made.
8325
8326 Minor fixups to get 'make maintainer-check' to work.
8327 * configure.ac: Don't use -Wnested-externs, as it's incompatible
8328 with the new verify.h implementation.
8329 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
8330 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
8331 * data/yacc.c (YYUSE): Likewise.
8332 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
8333 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
8334 * src/parse-gram.y (declaration): Don't pass a string constant
8335 to a function that expects char *, since GCC might complain
8336 about the constant value.
8337 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
8338 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
8339 before #defining them.
8340 * tests/glr-regression.at
8341 (Incorrectly initialized location for empty right-hand side in GLR):
8342 In yyerror, use the msg arg.
8343 (Corrupted semantic options if user action cuts parse):
8344 (Incorrect lookahead during deterministic GLR):
8345 (Incorrect lookahead during nondeterministic GLR):
8346 Don't name a local var 'index'; it shadows string.h's 'index'.
8347
8348 2006-01-19 Akim Demaille <akim@epita.fr>
8349
8350 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
8351 location, not just parts of it.
8352
8353 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
8354
8355 * NEWS: Document the fact that multiple %unions are now allowed.
8356 * doc/bison.texinfo (Union Decl): Likewise.
8357 * TODO: This feature is now implemented, so remove it from
8358 the wishlist.
8359
8360 * Makefile.maint: Merge with coreutils Makefile.maint.
8361 (CVS_LIST): Use build-aux version if available.
8362 (VERSION_REGEXP): New macro.
8363 (syntax-check-rules): Add sc_no_if_have_config_h,
8364 sc_prohibit_assert_without_use, sc_require_config_h,
8365 sc_useless_cpp_parens.
8366 (sc_obsolete_symbols): Check for O_NDELAY.
8367 (sc_dd_max_sym_length): Track coreutils.
8368 (sc_unmarked_diagnostics): Look in all files, not just *.c.
8369 (sc_useless_cpp_parens): New rule.
8370 (news-date-check): Look for version or today's date.
8371 (changelog-check): Don't require version number near head.
8372 (copyright-check): Use current year instead of hardwiring 2005.
8373 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
8374 (announcement): Add --gpg-key-ID.
8375
8376 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
8377 with "file system".
8378
8379 Avoid undefined behavior that addressed just before the start of an
8380 array. Problem reported by twlevo.
8381 * src/reader.c (packgram): Prepend a new sentinel before ritem.
8382 * src/lalr.c (build_relations): Rely on new sentinel.
8383 * src/gram.c (gram_free): Adjust to new sentinel.
8384
8385 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
8386
8387 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
8388 yylookaheadNeeds. All uses updated.
8389 (yysplitStack): Rename local yynewLookaheadStatuses to
8390 yynewLookaheadNeeds.
8391 * data/glr-regression.at (Incorrect lookahead during nondeterministic
8392 GLR): In comments, change `lookahead status' to `lookahead need'.
8393
8394 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8395
8396 * data/glr.c (yysplitStack): A little stylistic rewrite.
8397
8398 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8399
8400 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
8401
8402 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
8403
8404 * doc/bison.texinfo: Fix some typos.
8405 (GLR Semantic Actions): New subsection discussing special
8406 considerations because GLR semantic actions might be deferred.
8407 (Actions): Mention look-ahead usage of yylval.
8408 (Actions and Locations): Mention look-ahead usage of yylloc.
8409 (Special Features for Use in Actions): Add YYEOF entry and mention it
8410 in the yychar entry.
8411 In the yychar entry, remove mention of the local yychar case (pure
8412 parser) since this is irrelevant information when writing semantic
8413 actions and since it's already discussed in `Table of Symbols' where
8414 yychar is otherwise described as an external variable.
8415 In the yychar entry, don't call it the `current' look-ahead since it
8416 isn't when semantic actions are deferred.
8417 In the yychar and yyclearin entries, add note about deferred semantic
8418 actions.
8419 Add yylloc and yylval entries discussing look-ahead usage.
8420 (Look-Ahead Tokens): When discussing yychar, don't call it the
8421 `current' look-ahead, and do mention yylval and yylloc.
8422 (Error Recovery): Cross-reference `Action Features' when mentioning
8423 yyclearin.
8424 (Table of Symbols): In the yychar entry, don't call it the `current'
8425 look-ahead.
8426 In the yylloc and yylval entries, mention look-ahead usage.
8427
8428 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
8429
8430 * tests/glr-regression.at: Update copyright year to 2006.
8431
8432 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8433
8434 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
8435 use during nondeterministic operation to track which stacks have
8436 actually needed the current lookahead.
8437 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
8438 Allocate, deallocate, resize, and otherwise shuffle space for
8439 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
8440 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
8441 appropriately during nondeterministic operation.
8442 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
8443 members to store the current lookahead to be used by the deferred
8444 user action.
8445 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
8446 from which the RHS is taken. Set the lookahead members of the new
8447 yySemanticOption according to the lookahead status for stack yyk.
8448 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
8449 yyaddDeferredAction.
8450 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
8451 members of yySemanticOption before invoking yyuserAction, and then set
8452 them back to their current values afterward.
8453 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
8454 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
8455 * tests/glr-regression.at: Remove `.' from the ends of recent test case
8456 titles for consistency.
8457 (Leaked merged semantic value if user action cuts parse): In order to
8458 suppress lint warnings, use arguments in merge function, and assign
8459 char value < 128 in main.
8460 (Incorrect lookahead during deterministic GLR): New test case.
8461 (Incorrect lookahead during nondeterministic GLR): New test case.
8462
8463 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8464
8465 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
8466 !yyvaluep as signal that no semantic value is available to print.
8467 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
8468 to print a semantic value.
8469
8470 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8471
8472 * tests/glr-regression.at: For consistency with my newer test cases,
8473 don't thank myself.
8474
8475 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
8476
8477 * data/glr.c (yyresolveValue): When merging semantic options, if at
8478 least one user action succeeds but a later one cuts the parse, then
8479 destroy the semantic value before returning rather than leaking it.
8480 (yyresolveStates): If a user action cuts the parse and thus
8481 yyresolveValue fails, ignore the (unset) semantic value rather than
8482 corrupting the yyGLRState, and empty the semantic options list since
8483 the user actions should have called all necessary destructors.
8484 Simplify code with YYCHK.
8485 * tests/glr-regression.at (Corrupted semantic options if user action
8486 cuts parse): New test case.
8487 (Undesirable destructors if user action cuts parse): New test case.
8488 Before applying any of this patch, this test case never actually failed
8489 for me... but only because the corrupted semantic options usually
8490 masked this bug.
8491 (Leaked merged semantic value if user action cuts parse): New test
8492 case.
8493
8494 2006-01-05 Akim Demaille <akim@epita.fr>
8495
8496 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
8497
8498 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
8499
8500 * data/c.m4 (b4_c_modern): New macro, with a new provision for
8501 _MSC_VER. Problem reported by Cenzato Marco.
8502 (b4_c_function_def): Use it.
8503 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
8504 b4_c_modern.
8505 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
8506 than rolling our own.
8507
8508 2006-01-04 Akim Demaille <akim@epita.fr>
8509
8510 Also warn about non-used mid-rule values.
8511 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
8512 member.
8513 (symbol_list_new): Adjust.
8514 * src/reader.c (symbol_typed_p): New.
8515 (grammar_rule_check): Use it.
8516 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
8517 Check its rule.
8518 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
8519 Use it.
8520 * tests/actions.at (Exotic Dollars): Adjust.
8521
8522 2006-01-04 Akim Demaille <akim@epita.fr>
8523
8524 * src/reader.c (grammar_midrule_action): If $$ is set in a
8525 mid-rule, move the `used' bit to its lhs.
8526 * tests/input.at (Unused values): New.
8527 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
8528
8529 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
8530
8531 * doc/bison.texinfo (Bison Options): Say more accurately what
8532 --yacc does.
8533 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
8534 about declarations in the grammar when in Yacc mode, as POSIX does
8535 not require a diagnostic when the grammar uses extensions.
8536
8537 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
8538
8539 Warn about dubious constructions like "%token T T".
8540 Reported by twlevo.
8541 * src/symtab.h (struct symbol.declared): New member.
8542 * src/symtab.c (symbol_new): Initialize it to false.
8543 (symbol_class_set): New arg DECLARING, specifying whether
8544 this is a declaration that we want to warn about, if there
8545 is more than one of them. All uses changed.
8546
8547 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
8548 Allow multiple %union directives, whose contents concatenate.
8549 * src/parse-gram.y (grammar_declaration): Likewise.
8550 Use muscle_code_grow, so that we don't need stype_line any more.
8551 All uses changed.
8552
8553 * src/muscle_tab.c (muscle_grow): Fix comment.
8554
8555 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
8556 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
8557 Update copyright year to 2006.
8558
8559 2006-01-03 Akim Demaille <akim@epita.fr>
8560
8561 Have glr.cc pass (some of) the calc.at tests.
8562 * data/glr.cc (b4_parse_param_orig): New.
8563 (b4_parse_param): Improve its definition, and bound it more
8564 clearly in the skeleton.
8565 (b4_epilogue): Append, instead of prepending, in order to keep
8566 #line consistency.
8567 Simplify the generation of auxiliary functions: locations and
8568 purity are mandated.
8569 (b4_global_tokens_and_yystype): Honor it.
8570 * data/location.cc (c++.m4): Don't include it.
8571 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
8572 and AT_SKEL_CC_IF.
8573 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
8574 AT_LALR1_CC_IF.
8575 Be sure to initialize the first position's filename.
8576 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
8577 mandated anyway.
8578 (AT_CHECK_CALC_GLR_CC): New.
8579 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
8580
8581 2006-01-02 Akim Demaille <akim@epita.fr>
8582
8583 * src/output.c (output_skeleton): Don't hard wire the inclusion of
8584 c.m4.
8585 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
8586 * data/glr.cc: Do not include stack.hh.
8587
8588 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
8589
8590 * data/glr.c: Reformat whitespace with tabs.
8591 (b4_lpure_formals): Remove this unused m4 macro.
8592 * tests/cxx-type.at: Reformat whitespace with tabs.
8593 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
8594 since it's a member. Rename type to isNterm for clarity.
8595
8596 2005-12-29 Akim <akim@sulaco.local>
8597
8598 Let glr.cc catch up with symbol_value_print.
8599 * data/glr.cc (b4_yysymprint_generate): Replace by...
8600 (b4_yy_symbol_print_generate): this.
8601 (yy_symbol_print, yy_symbol_value_print): Declare them.
8602
8603 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
8604
8605 * src/location.h (boundary): Note that a line or column equal
8606 to INT_MAX indicates an overflow.
8607 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
8608 (rule_length_overflow, increment_rule_length, add_column_width):
8609 New functions.
8610 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
8611 (<SC_BRACED_CODE>"}"):
8612 Use increment_rule_length rather than incrementing it by hand.
8613 (adjust_location, handle_syncline): Diagnose overflow.
8614 (handle_action_dollar, handle_action_at):
8615 Fix bug with monstrosities like $-2147483648.
8616 Remove now-unnecessary checks.
8617 (scan_integer): Verify assumptions and remove now-unnecessary checks.
8618 (convert_ucn_to_byte): Verify assumptions.
8619 (handle_syncline): New arg LOC. All callers changed.
8620 Don't store through a value derived from char const * pointer.
8621
8622 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
8623 GCC warnings.
8624
8625 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
8626
8627 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
8628 Remove unnecessary forward static decls.
8629
8630 2005-12-27 Akim Demaille <akim@epita.fr>
8631
8632 * src/reader.c (grammar_current_rule_check): Also check that $$
8633 is used.
8634 Take the rule to check as argument, hence rename as...
8635 (grammar_rule_check): this.
8636 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
8637 Rename as...
8638 (grammar_rule_begin, grammar_rule_end): these, for consistency.
8639 (grammar_midrule_action, grammar_symbol_append): Now static.
8640 * tests/torture.at (input): Don't rely on the default action
8641 being always performed.
8642 * tests/calc.at: "Set" $$ even when the action is "cut" with
8643 YYERROR or other.
8644 * tests/actions.at (Exotic Dollars): Instead of using unused
8645 values, check that the warning is issued.
8646
8647 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
8648
8649 * NEWS: Improve wording for unused-value warnings.
8650
8651 2005-12-22 Akim Demaille <akim@epita.fr>
8652
8653 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
8654 (b4_yysymprint_generate): Rename as...
8655 (b4_yy_symbol_print_generate): this.
8656 Generate yy_symbol_print instead of yysymprint.
8657 Generate also yy_symbol_value_print, and use it.
8658
8659 2005-12-22 Akim Demaille <akim@epita.fr>
8660
8661 * NEWS: Warn about unused values.
8662 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
8663 a `used' member.
8664 (symbol_list_n_get, symbol_list_n_used_set): New.
8665 (symbol_list_n_type_name_get): Use symbol_list_n_get.
8666 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
8667 * src/reader.c (grammar_current_rule_check): Check that values are
8668 used.
8669 * src/symtab.c (symbol_print): Accept 0.
8670 * tests/existing.at: Remove the type information.
8671 Empty the actions.
8672 Remove useless actions (beware of mid-rule actions: perl -000
8673 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
8674 * tests/actions.at (Exotic Dollars): Use unused values.
8675 * tests/calc.at: Likewise.
8676 * tests/glr-regression.at (No users destructors if stack 0 deleted):
8677 Likewise.
8678
8679 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
8680 rule_useful_p.
8681
8682 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
8683
8684 Undo 2005-12-01 tentative license wording change. The wording is
8685 still being reviewed by the lawyers, and we don't want to wait for
8686 them before publishing a test release. For now, revert to the
8687 previous wording.
8688 * NEWS: Undo 2005-12-01 change.
8689 * data/glr.c: Revert to previous license wording.
8690 * data/glr.cc: Likewise.
8691 * data/lalr1.cc: Likewise.
8692 * data/location.cc: Likewise.
8693 * data/yacc.c: Likewise.
8694
8695 * NEWS: Reword %destructor vs YYABORT etc.
8696 * data/glr.c: Use American spacing, for consistency.
8697 * data/glr.cc: Likewise.
8698 * data/lalr1.cc: Likewise.
8699 * data/yacc.c: Likewise.
8700 * data/yacc.c: Reformat comments slightly.
8701 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
8702 for consistency. Fix some spelling errors and reword recently-included
8703 text slightly.
8704 * tests/cxx-type.at: Cast results of malloc, for C++.
8705
8706 2005-12-21 Joel E. Denny <address@hidden>
8707
8708 * tests/cxx-type.at: Construct a tree, count the parents of shared
8709 nodes, and free each node once and only once. Previously, the memory
8710 for semantic values was leaked instead.
8711
8712 2005-12-21 Joel E. Denny <address@hidden>
8713
8714 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
8715 (yylval, yylloc): If pure, #define to yystackp->yyval and
8716 yystackp->yyloc similar to yychar and yynerrs.
8717 (yyparse): If pure, remove local yylval and yylloc. Add local
8718 yystackp to accommodate pure definitions of yylval and yylloc.
8719 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
8720 yylvalp and yyllocp to &yylval and &yylloc.
8721 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
8722 namespace. Previously, nerrs and char were missing, but lval and lloc
8723 weren't necessary.
8724 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
8725 yylvalp and yyllocp parameters since, if pure, these are now always
8726 accessible through yystackp. If not pure, they are still accessible
8727 globally.
8728 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
8729 `if (YYID (N))' to pacify lint.
8730
8731 2005-12-21 Akim Demaille <akim@epita.fr>
8732
8733 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
8734 destroy the RHS symbols of a rule.
8735 * data/yacc.c (yylen): Initialize to 0.
8736 Keep its value to the number of items to possibly shift.
8737 In particular, a regular successful parse that ends on YYFINAL by
8738 a (internal) YYACCEPT must not have yylen != 0.
8739 (yyerrorlab, yyreturn): Pop the RHS.
8740 Reorder a bit to emphasize the `shifting' bits of code.
8741 (YYPOPSTACK): Now accept a number of items to pop.
8742 * data/lalr1.cc: Likewise.
8743 * data/glr.c: Formatting changes.
8744 Use goto instead of fall through.
8745 * doc/bison.texinfo (Destructor Decl): Complete.
8746
8747 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8748
8749 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
8750 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
8751 * djgpp/config.bat: Replace every occurence of the file name
8752 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
8753 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
8754 * djgpp/config.sed: Replace every occurence of the file name
8755 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
8756 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
8757 * djgpp/djunpack.bat: DJGPP specific file.
8758 * djgpp/fnchange.lst: DJGPP specific file.
8759 * djgpp/README.in: Add new information about how to unpack the bison
8760 source on MSDOS and other systems which have 8.3 file name restrictions
8761 using djunpack.bat and fnchange.lst.
8762
8763 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
8764
8765 * bootstrap (build_cvs_prefix): Remove; unused.
8766 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
8767 when getting gnulib.
8768
8769 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
8770
8771 * data/glr.c: Reorder typedef declarations for structs to match order
8772 of struct declarations.
8773 Rename yystack everywhere to yystackp except in yyparse where it's not
8774 a pointer.
8775 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
8776 consistency.
8777 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
8778 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
8779 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
8780 lint.
8781
8782 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
8783
8784 * tests/sets.at (Accept): Fix typos in regular expression used to
8785 sed out the final state number.
8786
8787 Work around portability problem on Solaris 10: flex-generated
8788 files include <stdio.h> before <config.h>, which messes up
8789 because the latter defines __EXTENSIONS__. Address the problem
8790 by creating two new little files that include <config.h> first,
8791 then include the flex-generated files. Rewrite everyone else
8792 to include <config.h> first, as well.
8793 * lib/timevar.c: Always include "config.h".
8794 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
8795 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
8796 (EXTRA_bison_SOURCES): New macro.
8797 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
8798 * src/system.h: Don't include config.h.
8799 * src/LR0.c: Include <config.h> first.
8800 * src/assoc.c: Likewise.
8801 * src/closure.c: Likewise.
8802 * src/complain.c: Likewise.
8803 * src/conflicts.c: Likewise.
8804 * src/derives.c: Likewise.
8805 * src/files.c: Likewise.
8806 * src/getargs.c: Likewise.
8807 * src/gram.c: Likewise.
8808 * src/lalr.c: Likewise.
8809 * src/location.c: Likewise.
8810 * src/main.c: Likewise.
8811 * src/muscle_tab.c: Likewise.
8812 * src/nullable.c: Likewise.
8813 * src/output.c: Likewise.
8814 * src/parse-gram.y: Likewise.
8815 * src/print.c: Likewise.
8816 * src/print_graph.c: Likewise.
8817 * src/reader.c: Likewise.
8818 * src/reduce.c: Likewise.
8819 * src/relation.c: Likewise.
8820 * src/state.c: Likewise.
8821 * src/symlist.c: Likewise.
8822 * src/symtab.c: Likewise.
8823 * src/tables.c: Likewise.
8824 * src/uniqstr.c: Likewise.
8825 * src/vcg.c: Likewise.
8826
8827 * src/parse-gram.y: Fix minor problems uncovered by lint.
8828 (current_lhs, current_lhs_location): Now static.
8829 (current_assoc): Remove unused variable.
8830
8831 Cleanups so that Bison-generated parsers have less lint.
8832 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
8833 Prepend /*ARGSUSED*/, for lint's sake.
8834 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
8835 definition if 'lint' is defined.
8836 (YYID): New macro (or function, if lint).
8837 All uses of /*CONSTCOND*/0 replaced by YYID(0).
8838 * data/yacc.c: Likewise.
8839 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
8840 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
8841 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
8842 is C++ only.
8843 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
8844 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
8845 Use YYID(0) rather than 0, for lint.
8846 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
8847 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
8848
8849 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
8850
8851 * tests/glr-regression.at
8852 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8853 Close memory leak reported by twlevo.
8854
8855 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
8856
8857 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
8858 all stacks.
8859 (yyparse): Iterate another stack in order to call user destructors.
8860 * tests/glr-regression.at (No users destructors if stack 0 deleted):
8861 New test case.
8862 (Duplicated user destructor for lookahead): This test now is expected
8863 to succeed.
8864
8865 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
8866
8867 * NEWS: Document the following change.
8868 * data/yacc.c: Say "parser skeleton" rather than "file", since
8869 it's no longer just a file.
8870 * data/glr.c: Grant a special exception for C GLR parsers, that
8871 reads like the already-existing exception for C LALR(1) parsers.
8872 * data/glr.cc: Likewise.
8873 * data/lalr1.cc: Likewise.
8874 * data/location.cc: Likewise.
8875 * data/yacc.c: Reword the "written by" statement to clarify that
8876 it was the parser skeleton, not the entire output file.
8877 * data/glr.c: Written by Paul Hilfinger.
8878 * data/glr.cc: Written by Akim Demaille.
8879 * data/lalr1.cc: Likewise.
8880
8881 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
8882
8883 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
8884 Fix typos in previous change that broke 'make check'.
8885 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
8886 supported in C.
8887 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
8888 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
8889 We can revert this once things settle down.
8890
8891 * src/conflicts.c (conflicts_print): Don't print file name twice
8892 when %expect fails because there were no conflicts.
8893 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
8894 change.
8895 * tests/conflicts.at (%expect not enough, %expect too much):
8896 (%expect with reduce conflicts): Adjust to new behavior.
8897
8898 2005-11-18 Akim Demaille <akim@epita.fr>
8899
8900 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
8901 errors.
8902 * NEWS: Document this.
8903 * doc/bison.texinfo (Expect Decl): Likewise.
8904
8905 2005-11-16 Akim Demaille <akim@epita.fr>
8906
8907 Generalize the display of semantic values and locations in traces.
8908 * data/glr.c (yy_reduce_print): Fix indices (again).
8909 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
8910 literal integers.
8911 * data/lalr1.cc (yyreduce_print): Rename as...
8912 (yy_reduce_print): this.
8913 Display values and locations.
8914 * data/yacc.c (yy_reduce_print): Likewise.
8915 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
8916 (yysymprint): Move higher to be visible from yy_reduce_print).
8917 (yyparse): Adjust.
8918 * tests/calc.at: Adjust the expected length of the traces.
8919
8920 2005-11-14 Akim Demaille <akim@epita.fr>
8921
8922 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
8923 from 1 to N, while values and location start at 0.
8924 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
8925
8926 2005-11-14 Akim Demaille <akim@epita.fr>
8927
8928 * data/glr.c (yy_reduce_print): Fix the $ number.
8929
8930 2005-11-14 Akim Demaille <akim@epita.fr>
8931
8932 "Use" parse parameters.
8933 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
8934 * data/glr.c, data/glr.cc: Use them.
8935 * data/glr.c (YYUSE): Have a C++ definition that supports
8936 non-pointer types.
8937
8938 2005-11-14 Akim Demaille <akim@epita.fr>
8939
8940 * data/glr.c (yyexpandGLRStack): Declare only if defined.
8941
8942 2005-11-14 Akim Demaille <akim@epita.fr>
8943
8944 * data/glr.cc: New.
8945 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
8946
8947 2005-11-12 Akim Demaille <akim@epita.fr>
8948
8949 Let position and location be PODs.
8950 * data/location.cc (position::initialize, location::initialize): New.
8951 (position::position, location::location): Define only if
8952 b4_location_constructors is defined.
8953 * data/lalr1.cc (b4_location_constructors): Define it for backward
8954 compatibility.
8955 * doc/bison.texinfo (Initial Action Decl): Use initialize.
8956
8957 2005-11-12 Akim Demaille <akim@epita.fr>
8958
8959 * data/lalr1.cc: Move the body of the ctor and dtor into the
8960 parser file (instead of the header).
8961 Wrap the implementations in a "namespace yy".
8962
8963 2005-11-12 Akim Demaille <akim@epita.fr>
8964
8965 Have glr.c include its header file when created.
8966 * data/glr.c (b4_shared_declarations): New.
8967 Output them verbatim in the parser if !%defines, otherwise
8968 output then in the header file, and include it instead.
8969
8970 2005-11-11 Akim Demaille <akim@epita.fr>
8971
8972 * data/glr.c: Comment changes.
8973
8974 2005-11-11 Akim Demaille <akim@epita.fr>
8975
8976 When yydebug, report semantic and location values for reductions.
8977 * data/glr.c (yy_reduce_print): Report the semantic values and the
8978 locations.
8979 (YY_REDUCE_PRINT): Adjust.
8980 (yyglrReduce): Use them.
8981 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
8982 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
8983 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
8984 traces.
8985
8986 2005-11-10 Akim Demaille <akim@epita.fr>
8987
8988 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
8989 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
8990 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
8991
8992 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
8993
8994 * m4/cxx.m4, examples/Makefile.am: Don't build
8995 examples/calc++ if no C++ compiler is available. (trivial change)
8996
8997 2005-11-09 Akim Demaille <akim@epita.fr>
8998
8999 * src/scan-skel.l: Use a couple of asserts.
9000
9001 2005-11-03 Akim Demaille <akim@epita.fr>
9002
9003 In some (weird) cases, the final state number is incorrect.
9004 Reported by Alexandre Duret-Lutz.
9005 * src/LR0.c (state_list_append): Remove the computation of
9006 final_state.
9007 (save_reductions): Do it here.
9008 (get_state): Alpha conversion.
9009 (generate_states): Use a for loop.
9010 * src/gram.h (item_number_is_rule_number)
9011 (item_number_is_symbol_number): New.
9012 * src/state.c: Use assert.
9013 * src/system.h: Include assert.h.
9014 * tests/sets.at (Accept): New.
9015
9016 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9017
9018 * data/glr.c (yyfill): Adjust comment.
9019 (yyresolveAction): Initialize default location properly
9020 for empty right-hand sides.
9021 (yydoAction): Ditto.
9022 Add comment explaining apparently dead code.
9023 * tests/glr-regression.at
9024 (Incorrectly initialized location for empty right-hand side in GLR):
9025 New test.
9026
9027 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
9028
9029 * bootstrap (cleanup_gnulib): New function. Use it to clean up
9030 gnulib when interrupted. This fixes some race conditions and
9031 works around some portability problems (one noted by Paul
9032 Hilfinger).
9033
9034 2005-10-22 Akim <akim@epita.fr>
9035
9036 * Makefile.cfg: Adjust to config -> build-aux.
9037 Reported by twledo.
9038
9039 2005-10-21 Akim Demaille <akim@epita.fr>
9040
9041 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
9042 the %parse-params.
9043 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
9044 * data/yacc.c (b4_Pure_if): Rename as...
9045 (b4_yacc_pure_if): this.
9046 (YY_SYMBOL_PRINT, yyparse): Adjust.
9047 * doc/bison.texinfo: Formatting changes.
9048
9049 2005-10-21 Akim Demaille <akim@epita.fr>
9050
9051 Finish the transition config -> build-aux.
9052 * configure.ac, Makefile.am: Use build-aux.
9053 * config/prev-version, config/announce-gen, config/Makefile.am:
9054 Move to...
9055 * build-aux/prev-version, build-aux/announce-gen,
9056 * build-aux/Makefile.am: here.
9057
9058 2005-10-14 Akim Demaille <akim@epita.fr>
9059
9060 * examples/calc++/test: Use set -x only when VERBOSE.
9061
9062 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
9063
9064 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
9065 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
9066
9067 2005-10-13 Akim Demaille <akim@epita.fr>
9068
9069 * src/scan-skel.l: Output the base name parts of the parser and
9070 header file names.
9071 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
9072 additional checks.
9073 Use this to exercise C++ outputs in subdirs.
9074 Reported by Oleg Smolsky.
9075
9076 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
9077
9078 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
9079 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
9080 Problem reported by John P. Hartmann.
9081 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
9082 already defined it.
9083
9084 2005-10-12 Akim Demaille <akim@epita.fr>
9085
9086 * src/parse-gram.y (version_check): Exit 63 to please missing
9087 (stands for "version mismatch).
9088 * tests/input.at, doc/bison.texinfo: Adjust.
9089
9090 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
9091
9092 Work around portability problems with Visual Age C compiler
9093 (xlc and xlC_r) reported by John P. Hartmann.
9094 * data/location.cc (initial_column, initial_line): Remove.
9095 All uses replaced by 0 and 1.
9096 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
9097 that xlc complains about.
9098 * src/scan-skel.l (skel_wrap): Likewise.
9099 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
9100 as __STDC__.
9101 * data/yacc.c (YYMODERN_C): New macro, which also looks at
9102 __STDC_VERSION__. Use it everywhere instead of looking at
9103 __STDC__ and __cplusplus.
9104
9105 2005-10-10 Akim Demaille <akim@epita.fr>
9106
9107 * examples/calc++/test: Be quiet unless VERBOSE.
9108
9109 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
9110
9111 * data/c.m4 (yydestruct, yysymprint):
9112 Use YYUSE instead of casting to void.
9113 * data/glr.c (YYUSE): New macro.
9114 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9115 Use it instead of rolling our own.
9116 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9117 (YYCHK1):
9118 Use /*CONSTCOND*/ to suppress lint warnings.
9119 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9120 (YY_STACK_PRINT): Use 'false' not '0'.
9121 (YYUSE): New macro.
9122 (yysymprint_, yydestruct_): Use it instead of rolling our own.
9123 * data/yacc.c (YYUSE): New macro.
9124 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
9125 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
9126 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
9127
9128
9129 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
9130 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
9131
9132 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
9133
9134 Undo the parts of the unlocked-I/O change that substituted
9135 putc or puts for printf. This might hurt performance a bit,
9136 but some people prefer the printf style.
9137 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
9138 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
9139 All uses replaced by YYFPRINTF and YYDPRINTF.
9140 * data/yacc.c: Likewise.
9141 * lib/bitset.c (bitset_print): Likewise.
9142 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
9143 putc and puts.
9144 * lib/lbitset.c (debug_lbitset): Likewise.
9145 * src/closure.c (print_firsts, print_fderives): Likewise.
9146 * src/gram.c (grammar_dump): Likewise.
9147 * src/lalr.c (look_ahead_tokens_print): Likewise.
9148 * src/output.c (escaped_output): Likewise.
9149 (user_actions_output): Break apart two printfs.
9150 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
9151 * src/reduce.c (reduce_print): Likewise.
9152 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
9153 * src/system.h: Include unlocked-io.h rathe than stdio.h.
9154
9155 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9156 Use assignments rather than casts-to-void to suppress
9157 unused-variable warnings. This pacifies 'lint'.
9158 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
9159 unused-variable warnings.
9160
9161 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9162
9163 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9164
9165 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
9166
9167 Use unlocked I/O for a minor performance improvement on hosts like
9168 GNU/Linux and Solaris that support unlocked I/O. The basic idea
9169 is to use the gnlib unlocked-io module, and to prefer putc and
9170 puts to printf when either will work (since the latter doesn't
9171 come in an unlocked flavor).
9172 * bootstrap (gnulib_modules): Add unlocked-io.
9173 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
9174 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
9175 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
9176 and similarly for puts and putc and printf.
9177 * data/yacc.c: Likewise.
9178 * lib/bitset.c (bitset_print): Likewise.
9179 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
9180 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
9181 to printf.
9182 * lib/lbitset.c (debug_lbitset): Likewise.
9183 * src/closure.c (print_firsts, print_fderives): Likewise.
9184 * src/gram.c (grammar_dump): Likewise.
9185 * src/lalr.c (look_ahead_tokens_print): Likewise.
9186 * src/output.c (escaped_output): Likewise.
9187 (user_actions_output): Coalesce two printfs.
9188 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
9189 * src/reduce.c (reduce_print): Likewise.
9190 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
9191 * src/system.h: Include unlocked-io.h rather than stdio.h.
9192
9193 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
9194 this confuses xgettext.
9195
9196 2005-10-02 Akim Demaille <akim@epita.fr>
9197
9198 * bootstrap (gnulib_modules): Add strverscmp.
9199 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
9200 * m4/.cvsignore: Add strverscmp.m4.
9201 * src/parse-gram.y (%require): New token, new rule.
9202 (version_check): New.
9203 * src/scan-gram.l (%require): Adjust.
9204 * tests/input.at (AT_REQUIRE): New.
9205 Use it.
9206 * doc/bison.texinfo (Require Decl): New.
9207 (Calc++ Parser): Use %require.
9208
9209 2005-10-02 Akim Demaille <akim@epita.fr>
9210
9211 * data/location.cc: New.
9212
9213 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
9214 Akim Demaille <akim@epita.fr>
9215
9216 Make sure -odir/foo.cc creates dir/location.hh etc.
9217 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
9218 (spec_file_prefix, spec_verbose_file, spec_graph_file)
9219 (spec_defines_file): Now const.
9220 (dir_prefix): New.
9221 (short_base_name): Remove.
9222 * src/files.c: Adjust.
9223 (dirname.h): Include.
9224 (base_name): Don't prototype it.
9225 (finput): Remove, duplicates gram_in.
9226 (full_base_name, short_base_name): Replace by...
9227 (all_but_ext, all_but_tab_ext): these.
9228 (compute_base_names): Rename as...
9229 (compute_file_name_parts): this.
9230 Update to compute the new variables, including dir_prefix.
9231 Adjust dependencies.
9232 * src/output.c (prepare): Output them.
9233 * src/reader.c: Adjust to use gram_in, not finput.
9234 * src/scan-skel.l (@dir_prefix@): New.
9235
9236 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9237
9238 * lib/subpipe.c: New function end_of_output_subpipe() added
9239 to allow support for non-posix systems. This is a no-op function
9240 for posix systems.
9241
9242 * lib/subpipe.h: New function end_of_output_subpipe() added
9243 to allow support for non-posix systems. This is a no-op function
9244 for posix systems.
9245
9246 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
9247 handle the lack of pipe/fork functionality on non-posix systems.
9248
9249 * djgpp/Makefile.maint: DJGPP specific file.
9250
9251 * djgpp/README.in: DJGPP specific file.
9252
9253 * djgpp/config.bat: DJGPP specific configuration file.
9254
9255 * djgpp/config.sed: DJGPP specific configuration file.
9256
9257 * djgpp/config.site: DJGPP specific configuration file.
9258
9259 * djgpp/config_h.sed: DJGPP specific configuration file.
9260
9261 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
9262
9263 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
9264
9265 2005-10-02 Akim Demaille <akim@epita.fr>
9266
9267 * data/location.cc: New, extract from...
9268 * data/lalr1.cc: here.
9269 (location.hh): Include it after the user prologue, in case the
9270 filename type is defined by the user.
9271 Forward declation location and position before the pre-prologue.
9272 (yyresult_): Rename as...
9273 (yyresult): this, it's a local variable, not an attribute.
9274 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
9275
9276 2005-10-01 Akim Demaille <akim@epita.fr>
9277
9278 * examples/extexi: Restore the #line generation.
9279
9280 2005-09-30 Akim Demaille <akim@epita.fr>,
9281 Alexandre Duret-Lutz <adl@gnu.org>
9282
9283 Move the token type and YYSTYPE in the parser class.
9284 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
9285 (parser::token): New, from the moved free definition of tokens.
9286 (parser::semantic_value): Now a full definition instead of an
9287 indirection to YYSTYPE.
9288 (b4_post_prologue): No longer included in the header file, but
9289 in the implementation file.
9290 * doc/bison.texi (C+ Language Interface): Update.
9291 * src/parse-gram.y: Support unary %define.
9292 * tests/actions.at: Define global_tokens_and_yystype for backward
9293 compatibility until we update the tests.
9294 * tests/calc.at: Idem.
9295 (first_line, first_column, last_line, last_column): Define for lalr1.cc
9296 to simplify the code.
9297
9298 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
9299
9300 Port to SunOS 4.1.4, which lacks strtoul and strerror.
9301 Ah, the good old days! Problem reported by Peter Klein.
9302 * bootstrap (gnulib_modules): Add strerror, strtoul.
9303 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
9304 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
9305
9306 2005-09-29 Akim Demaille <akim@epita.fr>
9307
9308 * data/c.m4 (b4_error_verbose_if): New.
9309 * data/lalr1.cc: Use it.
9310 (YYERROR_VERBOSE_IF): Remove.
9311 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
9312 parser members, replaced by...
9313 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
9314 local variables.
9315 (yysyntax_error_): Takes the state number as argument.
9316 (yyreduce_print_): Use the argument yyrule, not the former
9317 attribute yyn_.
9318
9319 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
9320
9321 * bootstrap (gnulib_modules): Add verify.
9322 * lib/.cvsignore: Add verify.h.
9323 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
9324 * src/system.h (verify): Remove.
9325 Include verify.h instead.
9326 * src/tables.c (tables_generate): Use new API for 'verify'.
9327
9328 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
9329
9330 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
9331 local variables whose names begin with 'yy'.
9332 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
9333 Trivial changes from Joel E. Denny.
9334
9335 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
9336 it itself.
9337 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
9338 don't use alloca any more.
9339
9340 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
9341 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
9342 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
9343 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
9344 to match yacc.c, to test more hosts.
9345
9346 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
9347
9348 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
9349 doesn't affect behavior.
9350 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
9351 Solaris, AIX, MSC.
9352 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
9353 This works a bit better with glibc, if user code has already included
9354 stdlib.h.
9355 * doc/bison.texinfo (Bison Parser): Document that users can't
9356 arbitrarily use malloc and free for other purposes. Document
9357 that <alloca.h> and <malloc.h> might be included.
9358 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
9359 user must declare alloca.
9360
9361 * HACKING (release): Forwarn the Translation Project about
9362 stable releses.
9363
9364 2005-09-20 Akim Demaille <akim@epita.fr>
9365
9366 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
9367
9368 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
9369
9370 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
9371 (YYSTACK_ALLOC_MAXIMUM): Use it.
9372 (yysyntax_error): New function.
9373 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
9374 multiple syntax errors are reported, and alloca is being used.
9375 Instead, reallocate buffers twice as big each time, so that
9376 we waste at most half the allocated memory. Start with a small
9377 (128-byte) buffer that will suffice in most cases anyway.
9378 Use yysyntax_error to do most of the work.
9379
9380 * doc/bison.texinfo (Error Reporting, Table of Symbols):
9381 yynerrs is the number of errors reported, not the number of
9382 errors encountered.
9383
9384 * tests/glr-regression.at (Duplicated user destructor for lookahead):
9385 Mark it as expected to fail.
9386 Cast result of malloc; problem reported by twlevo@xs4all.nl.
9387 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
9388 Don't start user-code symbols with "yy", to avoid name space problems.
9389
9390 2005-09-19 Akim Demaille <akim@epita.fr>
9391
9392 Remove the traits, failed experiment.
9393 It never proved useful, and anyway because of the current
9394 definition, it was not possible to have several specialization of
9395 this traits, making it useless.
9396 * data/lalr1.cc (yy:traits): Remove.
9397 Inline its definitions in the parser class.
9398
9399 2005-09-19 Akim Demaille <akim@epita.fr>
9400
9401 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
9402 least Mac OSX with a /usr/local install of gettext.
9403
9404 2005-09-19 Akim Demaille <akim@epita.fr>
9405
9406 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
9407 and yytoken for similarity with the other skeletons.
9408
9409 2005-09-19 Akim Demaille <akim@epita.fr>
9410
9411 * NEWS, configure.ac: update version number to 2.1a.
9412
9413 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
9414
9415 * NEWS: Version 2.1.
9416
9417 * NEWS: Remove notice of yytname change, since it was never in an
9418 official release.
9419 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
9420 diagnostic.
9421 * src/output.c (prepare): Likewise.
9422 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
9423 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
9424 is not defined. This is an awful hack, but it's enough for now.
9425 All callers changed.
9426 * tests/glr-regression-at (make_value): Args are const pointers now,
9427 to avoid GCC warning.
9428 (Duplicated user destructor for lookahead): New test. Currently
9429 skipped. It fails on my host but I'm not sure it'll always fail.
9430
9431 2005-09-16 Akim Demaille <akim@epita.fr>
9432
9433 * src/symtab.h (struct symbol): Declare the printer and destructor
9434 as const, to avoid accidental calls to free.
9435 (symbol_destructor_set, symbol_printer_set): Adjust.
9436 * src/symtab.c: Adjust.
9437
9438 2005-09-16 Akim Demaille <akim@epita.fr>
9439
9440 * data/c.m4 (b4_token_enums): New.
9441 (b4_token_defines): Rename as...
9442 (b4_token_enums_defines): this.
9443 (b4_token_defines): New, output only the #defines.
9444 * data/yacc.c, data/glr.c: Adjust.
9445 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
9446 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
9447 as default values.
9448
9449 2005-09-16 Akim Demaille <akim@epita.fr>
9450
9451 * data/lalr1.cc (yylex_): Remove, inline its code.
9452 (yyreport_syntax_error_): Remove, replaced by...
9453 (yysyntax_error_): this which returns a string and leaves to the
9454 caller the call to the users' error function.
9455 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
9456 Move from members of the parser object...
9457 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
9458 to local variables of the parse function.
9459
9460 2005-09-16 Akim Demaille <akim@epita.fr>
9461
9462 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
9463 since it's in Bison's name space.
9464
9465 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
9466
9467 * data/glr.c (yyresolveValue): Add default case to pacify
9468 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
9469
9470 * NEWS: Document when yyparse started to return 2.
9471 * doc/bison.texinfo (Parser Function): Document when yyparse
9472 returns 2.
9473
9474 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
9475 (b4_filename_type): Renamed back from b4_file_name_type. All uses
9476 changed.
9477 (class position): file_name -> filename (reverting). All uses changed.
9478
9479 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
9480
9481 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
9482 do anything if $@ exists. This reverts part of the 2005-07-07
9483 patch.
9484
9485 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
9486
9487 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
9488 contains obsolete information and isn't worth distributing as a
9489 separate file anyway.
9490 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
9491 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
9492 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
9493 (yyparse): Abort if user code uses longjmp to throw an unexpected
9494 value.
9495
9496 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
9497
9498 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
9499 Suggested by twlevo@xs4all.nl.
9500
9501 * data/glr.c (YYCHK1): Do not assume YYE is in range.
9502 This avoids a diagnostic from gcc -Wswitch-enum.
9503 Problem reported by twlevo@xs4all.nl.
9504
9505 * doc/bison.texinfo: Don't use "filename", as per GNU coding
9506 standards. Use "file name" or "file" or "name", depending on
9507 the context.
9508 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
9509 not to hack/foo.tab.c.
9510 (Calc++ Top Level): 2nd arg of main is not const.
9511 * data/glr.c: b4_filename -> b4_file_name.
9512 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
9513 All uses changed.
9514 (class position): filename -> file_name. All uses changed.
9515 * data/yacc.c: b4_filename -> b4_file_name.
9516 * lib/bitset.h: filename -> file_name in local vars.
9517 * lib/bitset_stats.c: Likewise.
9518 * src/files.c: Likewise.
9519 * src/scan-skel.l ("@output ".*\n): Likewise.
9520 * src/files.c (file_name_split): Renamed from filename_split.
9521 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
9522
9523 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
9524
9525 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
9526 to accommodate latest gnulib.
9527
9528 * tests/glr-regression.at (Duplicate representation of merged trees):
9529 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
9530
9531 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
9532 needed.
9533
9534 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
9535
9536 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
9537 All uses changed. Invoke user destructor after an error during a
9538 split parse (trivial change from Joel E. Denny).
9539
9540 * tests/glr-regression.at
9541 (User destructor after an error during a split parse): New test case.
9542 Problem reported by Joel E. Denny in:
9543 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
9544
9545 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
9546
9547 * README-cvs: Give URLs for recommended tools.
9548 Mention Gzip version problem, and bootstrapping issues.
9549 Remove troubleshooting section, as it's somewhat obsolete.
9550
9551 * bootstrap (no_cache): New var, to accommodate different wget
9552 variants. Use it instead of '-C off'. Problem reported by
9553 twlevo@xs4all.nl.
9554
9555 * data/glr.c (yydestroyStackItem): New function.
9556 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
9557 debugging information. Problem reported by Joel E. Denny.
9558
9559 2005-08-25 Akim Demaille <akim@epita.fr>
9560
9561 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
9562
9563 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
9564
9565 * data/glr.c (yyrecoverSyntaxError, yyreturn):
9566 Don't invoke destructor on unresolved entries.
9567 * tests/glr-regression.at
9568 (User destructor for unresolved GLR semantic value): New test case.
9569 Problem reported by Joel E. Denny in:
9570 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
9571
9572 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
9573
9574 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
9575 Add strnlen.c.
9576 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
9577 lib-prefix.m4, po.m4.
9578
9579 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
9580 in yydestruct diagnostic, since it might not be an error.
9581 Problem reported by Joel Denny near end of
9582 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
9583 * data/lalr1.cc (yyerturn): Likewise.
9584 * data/yacc.c (yyreturn): Likewise.
9585 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
9586
9587 * src/files.c: Remove obsolete FIXME comment.
9588
9589 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
9590 with the other templates, and to fix bogus run-on messages such
9591 as the one reported at the end of
9592 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
9593 All callers changed to avoid the newline.
9594 (yyprocessOneStack): Output two lines rather than one, to accommodate
9595 the above change. This changes the debug output format slightly.
9596
9597 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
9598 reported by Joel E. Denny in
9599 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
9600 (trivial change).
9601 * tests/glr-regression.at (Duplicate representation of merged trees):
9602 New test, from Joel E. Denny in:
9603 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
9604 * THANKS: Add Joel E. Denny.
9605
9606 * configure.ac (AC_INIT): Bump to 2.0c.
9607
9608 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
9609
9610 * NEWS: Version 2.0b.
9611
9612 * Makefile.am (SUBDIRS): Put examples before tests, so that
9613 "make check" doesn't finish with "All 1 tests passed".
9614
9615 * tests/regression.at (Token definitions): Don't rely on
9616 AT_PARSER_CHECK for data that contains backslashes. It currently
9617 uses 'echo', and 'echo' isn't portable if its argument contains
9618 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
9619 that the byte '\0xff' is not printable in the C locale; it is,
9620 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
9621 not printable, so use '\0x81' to test.
9622
9623 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
9624 version of GCC, since the macro is used with non-GCC compilers.
9625
9626 Fix core dump reported by Pablo De Napoli in
9627 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
9628 * tests/regression.at (Invalid inputs with {}): New test.
9629 * src/parse-gram.y (token_name): Translate type before using
9630 it as an index.
9631
9632 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
9633 the user's name space. All uses changed to __attribute__
9634 ((__unused__)).
9635 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
9636 Add __attribute__ ((__noreturn__)).
9637
9638 * etc/clcommit: Remove. We weren't using it, and it failed
9639 "make maintainer-distcheck".
9640 * Makefile.maint: Merge from coreutils.
9641 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
9642 (syntax-check-rules): Change list of rules as described below.
9643 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
9644 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
9645 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
9646 (sc_trailing_space): New rules.
9647 (sc_xalloc_h_in_src): Remove.
9648 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
9649 (sc_space_tab, sc_error_exit_success, sc_changelog):
9650 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
9651 (makefile-check, po-check, author_mark_check):
9652 (makefile_path_separator_check, copyright-check):
9653 Use grep -n, to make it easier to find violations.
9654 Use CVS_LIST and CVS_LIST_EXCEPT.
9655 (header_regexp, h_re): Remove.
9656 (dd_c): New macro.
9657 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
9658 (my-distcheck): Use more-modern GCC flags.
9659 (signatures, %.asc): Remove.
9660 (rel-files, announcement): Remove signatures.
9661 Restore old updating code, even though we don't use it, so
9662 that we're the same as coreutils.
9663 (alpha, beta, major): Depend on news-date-check.
9664 Make the upload commands.
9665
9666 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
9667 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
9668 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
9669 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
9670 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
9671 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
9672 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
9673 * tests/sets.at: Likewise.
9674
9675 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
9676 we comment out the Autoconf version number.
9677 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
9678 it's error-prone and "make maintainer-distcheck" rejects it.
9679
9680 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
9681 Indent calls to "error" to pacify "make maintainer-distcheck",
9682 when the calls are not intended to be translated.
9683 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
9684
9685 * src/Makefile.am (DEFS): Use +=, to pacify
9686 "make maintainer-distcheck".
9687 (bison_SOURCES): Add scan-skel.h.
9688 (sc_tight_scope): New rule, from coreutils.
9689
9690 * src/files.c (src_extension, header_extension):
9691 Now static, not extern.
9692 * src/getargs.c (short_options): Likewise.
9693 * src/muscle_tab.c (muscle_table): Likewise.
9694 * src/parse-gram.y (current_class, current_type, current_prec):
9695 Likewise.
9696 * src/reader.c (grammar_end, previous_rule_end): Likewise.
9697 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
9698 * src/main.c (main): Cast bindtextdomain and textdomain calls to
9699 void, to avoid warning when NLS is disabled.
9700 * src/output.c: Include scan-skel.h.
9701 (scan_skel): Remove decl, since scan-skel.h does this.
9702 (output_skeleton):
9703 Indent calls to "error" to pacify "make maintainer-distcheck".
9704 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
9705 * src/reader.h (gram_end, gram_lineno): New decls to pacify
9706 "make maintainer-distcheck".
9707 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
9708 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
9709 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
9710 (skel_lex_destroy, scan_skel): Move these decls to...
9711 * src/scan-skel.h: New file.
9712 * src/uniqstr.c (uniqstr_assert):
9713 Indent calls to "error" to pacify "make maintainer-distcheck".
9714
9715 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
9716 not @VAR@.
9717
9718 * tests/torture.at: Revamp to avoid misuse of atoi that
9719 "make maintainer-distcheck" complained about.
9720
9721 * examples/extexi (message): Don't print a message more than once,
9722 and omit line-number decoration that makes Emacs compile think
9723 that informative messages are worth worrying about.
9724
9725 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
9726
9727 * configure.ac: Update version number.
9728
9729 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
9730 accidentally.
9731 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
9732 autogenerated by the maintainer.
9733 * examples/calc++/.cvsignore: Add *.yy.
9734
9735 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
9736 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9737 * lib/bitsetv.c (bitsetv_alloc): Likewise.
9738
9739 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
9740
9741 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
9742 from maintainer-distcheck about casting the argument of 'free'.
9743
9744 * NEWS: Mention recent yytname changes.
9745 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
9746
9747 * bootstrap: For translations that have not yet been upgraded to
9748 the new runtime-po domain, prime the pump by extracting the
9749 relevant strings from the obsolete translations. This code can be
9750 removed once the bison-runtime domain has been translated by each
9751 team.
9752
9753 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
9754 now that token names are already quoted.
9755
9756 Fix problem reported by Anthony Heading.
9757 * data/glr.c (YYTOKEN_TABLE): New macro.
9758 (yytname): Define if YYTOKEN_TABLE.
9759 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
9760 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
9761 (YYERROR_VERBOSE): Define the same way the other skeletons do.
9762 * src/output.c (prepare_symbols): Output token_table_flag.
9763
9764 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
9765
9766 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
9767 again if the first call fails.
9768
9769 * data/glr.c (yytnamerr): New function.
9770 (yyreportSyntaxError): Use it to dequote most string literals.
9771 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
9772 with other skeletons. All uses changed.
9773 (yytnameerr_): New function.
9774 (yyreport_syntax_error): Use it to dequote most string literals.
9775 * data/yacc.c (yytnamerr): New function.
9776 (yyerrlab): Use it to decode most string literals.
9777 * doc/bison.texinfo (Decl Summary, Calling Convention):
9778 Clarify quoting convention of yytname.
9779 * src/output.c (prepare_symbols): Quote all names. This undoes
9780 the 2005-04-17 change, which is now accomplished (mostly) via
9781 changes in the parsers as described above.
9782 * tests/regression.at (Token definitions, Web2c Actions):
9783 Undo most 2005-04-17 change here, too.
9784
9785 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
9786
9787 Fix more problems reported by twlevo@xs4all.nl.
9788 * tests/cxx-type.at: Don't pipe output of ./types through sed to
9789 remove trailing spaces. This loses the exit status of ./types,
9790 and isn't needed since ./types shouldn't be emitting trailing
9791 spaces.
9792 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
9793 as the stack isn't valid in that case.
9794
9795 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
9796 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
9797 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
9798 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
9799 is used.
9800 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
9801 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9802 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9803 Likewise.
9804
9805 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
9806 overly-picky compilers that reject 'char *foo = "bar";'.
9807
9808 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
9809 to FILE * parameter, not to stderr. This fixes a typo introduced
9810 in the 2005-07-12 change.
9811
9812 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
9813 warnings from GCC 4.
9814
9815 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
9816 (yyglrShiftDefer, yysplitStack):
9817 Remove unused parameters b4_pure_formals. All uses changed.
9818 (yyglrShift): Remove unused parameters b4_user_formals.
9819 All uses changed.
9820 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
9821
9822 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
9823
9824 Destructor cleanups and regularization among the three skeletons.
9825 * NEWS: Document the behavior changes.
9826 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
9827 stack before failing, as the cleanup code will do it for us now.
9828 * data/lalr1.cc (yyerrlab): Likewise.
9829 * data/glr.c (yyparse): Pop everything off the stack before
9830 freeing it, so that destructors get called properly.
9831 * data/lalr1.cc (yyreturn): Likewise.
9832 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
9833 This is more consistent.
9834 * doc/bison.texinfo (Destructor Decl): Mention more reasons
9835 why destructors might be called. 1.875 -> 2.1.
9836 (Destructor Decl, Decl Summary, Table of Symbols):
9837 Some English-language cleanups for %destructor.
9838 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
9839 Add output line for destructor of start symbol.
9840 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
9841 because of that same extra output line.
9842
9843 * NEWS: Document minor wording changes in diagnostics of
9844 Bison-generated parsers.
9845 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
9846 Remove unused formals. All uses changed.
9847 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
9848 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
9849 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
9850 Rename yyoverflowab to yyexhaustedlab.
9851 When memory exhaustion occurs during syntax-error reporting,
9852 report it separately rather than in a single diagnostic; this
9853 eases translation.
9854 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
9855 (Memory Exhausted): Renamed from Parser Stack Overflow.
9856 Revamp wording slightly to prefer "memory exhaustion".
9857 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
9858
9859 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
9860
9861 Add i18n support to the GLR skeleton. Partially fix the C++
9862 skeleton; a C++ expert needs to finish this. Remove debugging
9863 msgids; there's little point to having them translated, since they
9864 can be understood only by someone who can read the
9865 (English-language) source code.
9866
9867 Generate runtime-po/bison-runtime.pot automatically, so that we
9868 don't have to worry about garbage getting in that file. We'll
9869 make sure after the next official release that old msgids don't
9870 get lost. See
9871 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
9872
9873 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
9874 Now auto-generated.
9875 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
9876 Fix typos in explanations of the runtime file.
9877 * bootstrap: Change gettext keyword from YYI18N to YY_.
9878 Use standard Makefile.in.in in runtime-po, since we'll arrange
9879 for backward-compatible bison-runtime.po files in a different way.
9880 * data/glr.c (YY_): New macro, from yacc.c.
9881 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
9882 Translate messages intended for users.
9883 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
9884 the wording in the other skeletons. We don't know that the memory
9885 is virtual.
9886 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
9887 Use same method that yacc.c uses.
9888 Don't translate debugging messages.
9889 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
9890 it doesn't work (yet), and requires C++ expertise to fix.
9891 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
9892 Move defn to a more logical place, to be consistent with other
9893 skeletons.
9894 Don't translate debugging messages.
9895 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
9896 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
9897 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
9898 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
9899
9900 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
9901 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
9902 void, not int.
9903 * tests/glr-regression.at (Badly Collapsed GLR States):
9904 Likewise.
9905 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9906 yylex should return 0 at EOF rather than aborting.
9907
9908 Improve tests for stack overflow in GLR parser.
9909 Problem reported by twlevo@xs4all.nl.
9910 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
9911 All uses removed.
9912 (yyStackOverflow): Just longjmp, but with value 2 so that caller
9913 can handle the problem.
9914 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
9915 (yyparse): New local variable yyresult to record the result.
9916 Use result of setjmp to set it, rather than storing itinto
9917 struct.
9918 (yyDone): Remove label.
9919 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
9920 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
9921 if YYABORT is used).
9922 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
9923 yyparse status; put status > 1 into diagnostic.
9924 Check that status==2 works.
9925 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
9926 Use exit status 3 for failure to open (which shouldn't happen).
9927
9928 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
9929
9930 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
9931 1 on syntax error; just let yyparse do its thing.
9932 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
9933 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
9934 (Exploding the Stack Size with Alloca):
9935 (Exploding the Stack Size with Malloc):
9936 Expect exit status 2, not 1, since the parser is supposed to blow
9937 its stack. Problem reported by twlevo@xs4all.nl.
9938
9939 * data/glr.c (yyparse): Don't assume that the initial calls
9940 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
9941 Print a stack-overflow message and fail instead.
9942 Initialize the line-number information before creating the stack,
9943 so that the stack-overflow message can report line zero safely.
9944
9945 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
9946
9947 Fix problems reported by twlevo@xs4all.nl.
9948 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
9949 (yyuserMerge): Provide a default case if b4_mergers is empty.
9950 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
9951 * tests/glr-regression.at
9952 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9953 Add casts to pacify C++ compilers.
9954 * tests/glr-regression.at (Improper merging of GLR delayed action
9955 sets): Declare yylex before using it.
9956 * tests/Makefile.am (maintainer-check-g++): Fix a stray
9957 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
9958 test for valgrind; valgrind is independent of g++.
9959 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
9960 for compatibility with POSIX 1003.1-2001 (if running coreutils).
9961 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
9962 Use a destructor, so that we can expand the stack. Change
9963 YYSTYPE to char * so that we can free it. Cast result of malloc.
9964
9965 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9966
9967 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
9968 a valgrind failure. Problem reported by twlevo@xs4all.nl.
9969
9970 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
9971
9972 * PACKAGING: New file, suggested by Bruno Haible and taken from
9973 similar wording in gettext's PACKAGING file.
9974 * NEWS: Mention PACKAGING.
9975 * Makefile.am (EXTRA_DIST): Add PACKAGING.
9976
9977 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
9978
9979 * NEWS: Document recent i18n improvements.
9980 * bootstrap: Get runtime translations into runtime-po.
9981 Create runtime-po files automatically, if possible.
9982 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
9983 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
9984 does not infringe on the user's name space.
9985 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
9986 * doc/bison.texinfo (Internationalization): Revamp the English
9987 and Texinfo syntax a bit, to try to make it clearer.
9988 (Bison Options, Option Cross Key): Mention --print-localedir.
9989 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
9990 YYENABLE_NLS. Quote a bit more.
9991 * runtime-po/.cvsignore: New file.
9992 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
9993 * runtime-po/Rules-quot: Remove; now created by bootstrap.
9994 * runtime-po/quot.sed: Likewise.
9995 * runtime-po/boldquot.sed: Likewise.
9996 * runtime-po/en@quot.header: Likewise.
9997 * runtime-po/en@boldquot.header: Likewise.
9998 * runtime-po/insert-header.sin: Likewise.
9999 * runtime-po/remove-potcdate.sin: Likewise.
10000 * runtime-po/Makevars: Likewise.
10001 * runtime-po/LINGUAS: Likewise.
10002 * runtime-po/de.po: Likewise; we will rely on the translation project
10003 to maintain this, so "bootstrap" should get it.
10004 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
10005 its value.
10006 * src/main.c (main): Bind the bison-runtime domain, too.
10007
10008 2005-07-12 Bruno Haible <bruno@clisp.org>
10009
10010 * data/yacc.c: Include <libintl.h> when NLS is enabled.
10011 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
10012 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
10013 * runtime-po: New directory.
10014 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
10015 $(DOMAIN).pot-update rule, so that old messages are never dropped.
10016 * runtime-po/Rules-quot: New file, copied from po/.
10017 * runtime-po/quot.sed: Likewise.
10018 * runtime-po/boldquot.sed: Likewise.
10019 * runtime-po/en@quot.header: Likewise.
10020 * runtime-po/en@boldquot.header: Likewise.
10021 * runtime-po/insert-header.sin: Likewise.
10022 * runtime-po/remove-potcdate.sin: Likewise.
10023 * runtime-po/Makevars: New file.
10024 * runtime-po/POTFILES.in: New file.
10025 * runtime-po/LINGUAS: New file.
10026 * runtime-po/bison-runtime.pot: New file.
10027 * runtime-po/de.po: New file.
10028 * m4/bison.m4: New file.
10029 * Makefile.am (SUBDIRS): Add runtime-po.
10030 (aclocaldir, aclocal_DATA): New variables.
10031 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
10032 Define aclocaldir.
10033 * src/getargs.c (usage): Document --print-localedir option.
10034 (PRINT_LOCALEDIR_OPTION): New enum item.
10035 (long_options): Add --print-localedir option.
10036 (getargs): Handle --print-localedir option.
10037 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
10038 (Internationalization): New section.
10039
10040 2005-07-12 Akim Demaille <akim@epita.fr>
10041
10042 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
10043 for consistency with the rest of the code.
10044 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
10045 Add separators.
10046
10047 2005-07-12 Akim Demaille <akim@epita.fr>
10048
10049 * src/parse-gram.y: Use %printer instead of YYPRINT.
10050
10051 2005-07-12 Akim Demaille <akim@epita.fr>
10052
10053 * src/symtab.h, src/symtab.c (symbol_print): New.
10054 * src/symlist.h, src/symlist.c (symbol_list_print): New.
10055 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
10056
10057 2005-07-12 Akim Demaille <akim@epita.fr>
10058
10059 * data/glr.c (b4_syncline): Fix (swap) the definitions of
10060 b4_at_dollar and b4_dollar_dollar.
10061
10062 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
10063
10064 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
10065 and Pennello's paper.
10066
10067 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
10068
10069 * data/yacc.c (yyparse): Undo previous patch. Instead,
10070 set yylsp[0] and yyvsp[0] only if the initial action
10071 sets yylloc and yylval, respectively.
10072
10073 * data/yacc.c (yyparse): In the initial action, set
10074 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
10075 This avoids the use of undefined variables if the initial
10076 action does not set yylloc and/or yylval.
10077
10078 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
10079
10080 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
10081 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
10082 Remove from CVS. These files are automatically generated.
10083 * examples/extexi: Clarify that this file is now part of Bison,
10084 not GNU M4, and that it works with any POSIX-compatible Awk.
10085 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
10086 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
10087 so that we also get calc++-parser.yy. Geneate it.
10088 Use $(AWK), not gawk, since any conforming Awk will do.
10089 Put comment before action, since older 'make' can't handle comment
10090 in action.
10091 $(BUILT_SOURCES): List all built sources, not just some of them.
10092 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
10093 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
10094 $($(calc_sources_generated)): Remove unnecessary test for existence
10095 of target. (This had a shell syntax error anyway; a stray "x".)
10096 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
10097 calc++-parser.yy.
10098 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
10099
10100 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
10101 implied by the other modules.
10102
10103 2005-07-06 Akim Demaille <akim@epita.fr>
10104
10105 Bind examples/calc++ to the package.
10106 * examples/calc++/Makefile: Remove, replaced by...
10107 * examples/calc++/Makefile.am: ... this new file.
10108 * examples/calc++/test: Remove input.
10109 * examples/calc++/compile: Remove.
10110 * examples/Makefile.am: New.
10111 * configure.ac, Makefile.am: Adjust.
10112 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
10113
10114 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
10115
10116 * data/glr.c (yyFail): Drastically simplify; since the format argument
10117 never had any % directives, we can simply pass it to yyerror.
10118 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
10119 be modified later, as that is the usual style in glr.c.
10120 Problems reported by Paul Hilfinger.
10121
10122 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
10123 and size overflow errors.
10124 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
10125 in case the user prolog sets feature-test macros like _GNU_SOURCE.
10126 (YYSIZEMAX): New macro.
10127 (yystpcpy): New function, taken from yacc.c.
10128 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
10129 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
10130 so that we don't have to maintain their signatures.
10131 (yyFail): Check for buffer overflow, by using vsnprintf rather
10132 than vsprintf. Allocate a bigger buffer if possible.
10133 Report an error if buffer allocation fails.
10134 (yyStackOverflow): New function.
10135 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
10136 the initialization was successful. It might fail if storage was
10137 exhausted.
10138 (yyexpandGLRStack): Add more checks for storage allocation failure.
10139 Use yyStackOverflow to report failures.
10140 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
10141 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
10142 Don't assume stack number fits in int.
10143 (yysplitStack): Check for storage allocation failure.
10144 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
10145 can print diagnostics on storage allocation failure. All callers
10146 changed.
10147 (yyresolveValue): Use yybool for boolean.
10148 (yyreportSyntaxError): Check for size-calculation overflow.
10149 This code is taken from yacc.c.
10150 (yyparse): Check for storage allocation errors when allocating
10151 the initial stack.
10152
10153 2005-07-05 Akim Demaille <akim@epita.fr>
10154
10155 Extract calc++ from the documentation.
10156 * doc/bison.texinfo (Calc++): Add the extraction marks.
10157 * examples/extexi: New, from the aborted GNU Programming 2E.
10158 Separate the different paragraph of a file with empty lines.
10159 * examples/Makefile: Use it to extract the whole calc++ example.
10160
10161 2005-06-24 Akim Demaille <akim@epita.fr>
10162
10163 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
10164 class typedefs.
10165
10166 2005-06-22 Akim Demaille <akim@epita.fr>
10167
10168 * doc/bison.texinfo (C++ Language Interface): First stab.
10169 (C++ Parsers): Remove.
10170
10171 2005-06-22 Akim Demaille <akim@epita.fr>
10172
10173 * data/lalr1.cc (yylex_): Honor %lex-param.
10174
10175 2005-06-22 Akim Demaille <akim@epita.fr>
10176
10177 Start a set of simple examples.
10178 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
10179 * examples/calc++/calc++-driver.hh,
10180 * examples/calc++/calc++-parser.yy,
10181 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
10182 * examples/calc++/compile, examples/calc++/test: New.
10183
10184 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
10185
10186 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
10187 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
10188 which stems from the 2005-05-27 patch.
10189
10190 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10191
10192 * data/glr.c: Modify treatment of unused parameters to permit use
10193 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
10194
10195 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
10196
10197 Fix infringement on user name space reported by Janos Zoltan Szabo.
10198 * data/yacc.c (yyparse): strlen -> yystrlen.
10199
10200 2005-05-30 Akim Demaille <akim@epita.fr>
10201
10202 * data/lalr1.cc (_): New.
10203 Translate the various messages.
10204
10205 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
10206
10207 Fix infringement on user name space reported by Bruno Haible.
10208 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
10209 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
10210 the user's name space.
10211 (alloca): Include <stdlib.h> to get it, if it's not built in.
10212 (YYMALLOC, YYFREE): Define only if needed.
10213 (malloc, free): Declare, but only if needed, as this infringes on
10214 the user name space.
10215
10216 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
10217
10218 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
10219 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
10220 with %d format.
10221 * lib/ebitset.c (min, max): Undef before defining.
10222 * lib/vbitset.c (min, max): Likewise.
10223 * lib/subpipe.c (create_subpipe): Save local variables in case
10224 vfork clobbers them.
10225
10226 2005-05-24 Bruno Haible <bruno@clisp.org>
10227
10228 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
10229 error message syntax used by gcc-4.0.
10230
10231 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
10232
10233 * README: Mention m4 1.4.3. Remove obsolete advice about
10234 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
10235
10236 * bootstrap: Remove workaround for problem I encountered with
10237 gettext 0.14.1; it seems to be fixed now.
10238
10239 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
10240
10241 * NEWS: Version 2.0a.
10242
10243 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
10244 the previous change.
10245
10246 Various maintainer cleanups.
10247 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
10248 conftest*, for benefit of CVS commands run at the same time as
10249 "configure". Add build-aux, since "bootstrap" now creates it and
10250 its subfiles.
10251 * Makefile.cfg (move_if_change): Remove.
10252 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
10253 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
10254 (po_repo, do-po-update, po-update, wget_files, get-targets):
10255 (config.guess-url_prefix, config.sub-url_prefix):
10256 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
10257 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
10258 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
10259 Remove.
10260 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
10261 this is now the recommended name.
10262 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
10263 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
10264 ylwrap. These files now go into build-aux.
10265 * config/move-if-change: Remove.
10266 * config/prev-version.txt: Bump from 1.75 to 2.0.
10267
10268 * bootstrap: Add stdio-safer, unistd-safer modules.
10269 Remove m4/glibc2.m4 (introduced by latest gnulib, but
10270 we don't need it).
10271 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
10272 fopen-safer.c, stdio-safer.h, unistd-safer.h.
10273 * lib/subpipe.c: Include "unistd-safer.h".
10274 (create_subpipe): Make sure all the newly-created
10275 file descriptors are > 2, so that diagnostics don't
10276 get sent down them (which might cause Bison to hang, in theory).
10277 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
10278 * src/files.c (xfopen): Use fopen_safer, not fopen.
10279
10280 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
10281 yesterday's yacc.c fix.
10282
10283 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
10284
10285 * data/glr.c, data/lalr1.cc: Update copyright date.
10286
10287 Fix a destructor bug reported by Wolfgang Spraul in
10288 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
10289 * data/yacc.c (yyabortlab): Don't call destructor, and
10290 don't set yychar to EMPTY.
10291 (yyoverflowlab): Don't call destructor.
10292 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
10293 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
10294 since we no longer output the message "discarding lookahead token
10295 end of input ()".
10296
10297 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10298
10299 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
10300 fix a small glitch in debugging output.
10301 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
10302 after YY_SYMBOL_PRINT where needed.
10303
10304 (struct yyGLRState): Add some comments.
10305 (struct yySemanticOption): Add some comments.
10306 (union yyGLRStackItem): Add comment.
10307
10308 (yymergeOptionSets): Correct this to properly perform the union,
10309 avoiding infinite reported by Michael Rosien.
10310 Update comment.
10311
10312 * tests/glr-regression.at: Add test for GLR merging error reported
10313 by M. Rosien.
10314
10315 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
10316
10317 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
10318 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
10319 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
10320 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
10321 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
10322 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
10323 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
10324 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
10325 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
10326 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
10327 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
10328 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
10329 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
10330 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
10331 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
10332 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
10333 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
10334 src/derives.h, src/files.c, src/files.h, src/getargs.c,
10335 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
10336 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
10337 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
10338 src/output.h, src/parse-gram.c, src/parse-gram.h,
10339 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
10340 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
10341 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
10342 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
10343 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
10344 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
10345 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
10346 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
10347 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
10348 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
10349 tests/reduce.at, tests/regression.at, tests/sets.at,
10350 tests/synclines.at, tests/testsuite.at, tests/torture.at:
10351 Update FSF postal mail address.
10352
10353 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
10354
10355 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
10356 Problem reported by Ralf Menzel.
10357
10358 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
10359
10360 * tests/actions.at: Test that stack overflow invokes destructors.
10361 From Marcus Holland-Moritz.
10362 * data/yacc.c (yyerrlab): Move the code that destroys the stack
10363 from here....
10364 (yyreturn): to here. That way, destructors are called properly
10365 even if the stack overflows, or the user calls YYACCEPT or
10366 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
10367 (yyoverflowlab): Destroy the lookahead.
10368
10369 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
10370
10371 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
10372
10373 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
10374
10375 * NEWS: Bison-generated C parsers no longer quote literal strings
10376 associated with tokens.
10377 * src/output.c (prepare_symbols): Don't escape strings,
10378 since users don't want to see C escapes.
10379 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
10380 in diagnostics.
10381 * tests/input.at (Torturing the Scanner): Likewise.
10382 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
10383
10384 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
10385
10386 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
10387 the data size is known to be too small and we can't increase it.
10388 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
10389
10390 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
10391
10392 * src/parse-gram.y: Include quotearg.h.
10393 (string_as_id): Quote $1 before using it as a key, since the
10394 lexer no longer quotes it for us.
10395 (string_content): Don't strip quotes, since lexer no longer
10396 quotes it for us.
10397 * src/scan-gram.l: Include quotearg.h.
10398 ("\""): Omit quote.
10399 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
10400 a key, since the rest of the lexer doesn't quote it.
10401 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
10402 * tests/regression.at (Token definitions): Check for backslashes
10403 in token strings.
10404
10405 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
10406 (YYSIZE_T): Define to unsigned long int when using an older compiler.
10407 (yyparse): Revamp code to generate long syntax error message, to
10408 make it easier to translate, and to avoid problems with arithmetic
10409 overflow. Change "virtual memory" to "memory" in diagnostic, since
10410 we don't know whether the memory is virtual.
10411
10412 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
10413
10414 * NEWS: Bison-generated C parsers now use the _ macro to
10415 translate strings.
10416 * data/yacc.c (_) [!defined _]: New macro.
10417 All English strings wrapped inside this macro.
10418 * doc/bison.texinfo (Bison Parser): Document _.
10419 * po/POTFILES.in: Include src/parse-gram.c, since it now
10420 includes translateable strings that parse-gram.y doesn't.
10421
10422 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
10423
10424 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
10425 reverting the 2004-10-11 change to this function.
10426 (symbol_check_alias_consistency): Don't call symbol_type_set
10427 if the type name is already correct.
10428 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
10429
10430 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
10431
10432 * tests/regression.at (Token definitions): Don't use a token named
10433 c, as that generates a "#define c ..." that runs afoul of buggy
10434 stdlib.h that uses the identifier c as a member of struct
10435 drand48_data. Problem reported by Horst Wente.
10436
10437 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
10438
10439 * bootstrap: Change translation URL from
10440 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
10441 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
10442 redirection glitches. Problem reported by twlevo@xs4all.nl.
10443
10444 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
10445
10446 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
10447 after operands; POSIX says this isn't portable for the c99 command.
10448
10449 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
10450
10451 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
10452 immediately if a data overrun has occurred; this may help us track
10453 down what may be a spurious failure on MacOS.
10454
10455 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
10456
10457 Respond to problems reported by twlevo@xs4all.nl.
10458
10459 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
10460
10461 * src/vcg.h: Comment fix.
10462 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
10463 (G_CMAX): Change to -1 instead of INT_MAX.
10464
10465 * data/yacc.c (yyparse): Omit spaces before #line.
10466
10467 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
10468
10469 * src/tables.c (state_number_to_vector_number): Put it inside an
10470 "#if 0", since it's not currently used. Problem reported by
10471 Roland McGrath.
10472
10473 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
10474
10475 * src/output.c (escaped_output): Renamed from
10476 escaped_file_name_output, since we now use it for symbol tags as
10477 well. All uses changed.
10478 (symbol_destructors_output, symbol_printers_output):
10479 Escape symbol tags too.
10480 Problem reported by Matyas Forstner in
10481 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
10482
10483 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
10484 not needed.
10485 * src/output.c (user_actions_output, token_definitions_output,
10486 symbol_destructors_output, symbol_printers_output): Likewise.
10487 * src/reader.c (prologue_augment): Likewise.
10488 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
10489
10490 * src/vcg.c (output_edge): Don't quote linestyle arg.
10491 Problem reported by twlevo@xs4all.nl.
10492
10493 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
10494
10495 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
10496 example, reported by Derek M Jones. Also, make the example even
10497 more outrageous, to better illustrate how bad the problem is.
10498
10499 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
10500
10501 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
10502 putsym. Typo reported by Sebastian Piping.
10503
10504 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
10505
10506 * doc/bison.texinfo (Language and Grammar): some -> same
10507 (Epilogue): int he -> in the
10508 Typos reported by Sebastian Piping via Justin Pence.
10509
10510 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
10511
10512 * tests/glr-regression.at (Improper handling of embedded actions
10513 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
10514 embedded actions and $-N in GLR parsers", work around an Autoconf bug
10515 with dollar signs in test names.
10516 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
10517 for a similar reason.
10518
10519 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
10520
10521 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
10522 wants to redefine G_VIEW.
10523
10524 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
10525
10526 * src/vcg.c (get_view_str): Remove case for normal_view.
10527 Problem reported by twlevo@xs4all.nl.
10528
10529 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
10530
10531 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
10532 Problem reported by twlevo@xs4all.nl.
10533
10534 * doc/bison.texinfo: Change @dircategory from "GNU programming
10535 tools" to "Software development". Requested by Richard Stallman
10536 via Karl Berry.
10537
10538 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
10539
10540 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
10541 Problem reported by twlevo@xs4all.nl.
10542
10543 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
10544
10545 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
10546 keyword; it's not needed with modern compilers, and it doesn't
10547 affect correctness with older compilers. Suggested by
10548 twlevo@xs4all.nl.
10549
10550 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
10551
10552 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
10553 gcc -Wswitch-default.
10554 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
10555 * data/yacc.c (yyparse): Likewise.
10556
10557 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
10558
10559 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
10560 already. Let config.h define any nonstandard values.
10561
10562 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
10563
10564 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
10565 for the benefit of slower hosts. Problem reported by
10566 Nelson H. F. Beebe.
10567
10568 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
10569
10570 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
10571 being defined and not used.
10572 * data/lalr1.cc (yyparse): Likewise.
10573 Use "if (false)" rather than "if (0)".
10574
10575 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
10576
10577 * TODO: Mention that we should allow NUL bytes in tokens.
10578
10579 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
10580
10581 * src/scan-skel.l (<<EOF>>): Don't close standard output.
10582 Problem reported by Hans Aberg.
10583
10584 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
10585
10586 * src/getargs.c (version): Happy new year; update overall
10587 program copyright date from 2004 to 2005.
10588
10589 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
10590 Problem reported by Hans Aberg.
10591 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
10592 (Output file names.): Add a test for the case when standard output
10593 is closed.
10594
10595 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
10596
10597 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
10598 to fix an oversight in the Bison 2.0 manual.
10599
10600 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
10601
10602 * NEWS: Version 2.0. Reformat the existing news items since
10603 1.875, so that related items are grouped together.
10604 * configure.ac (AC_INIT): Bump version to 2.0.
10605 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
10606
10607 * tests/torture.at (Exploding the Stack Size with Alloca): Set
10608 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
10609 otherwise, we're not testing alloca. Unfortunately there's no
10610 simple way to consult HAVE_ALLOCA here.
10611
10612 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
10613 for yymsg, too.
10614
10615 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
10616 hand. This avoids a warning about comparing int to size_t when
10617 GCC warnings are enabled.
10618
10619 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
10620
10621 * NEWS: Bison-generated parsers no longer default to using the
10622 alloca function (when available) to extend the parser stack, due
10623 to widespread problems in unchecked stack-overflow detection.
10624 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
10625 responsibility to set it to a positive value. This lets the user
10626 specify a value that is not a preprocessor constant.
10627 * data/yacc.c (YYMAXDEPTH): Likewise.
10628 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
10629 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
10630 to be a compile-time constant. However, explain the constraints on it.
10631 Also, explain the constraints on YYINITDEPTH.
10632 (Table of Symbols): Explain that alloca is no longer the default.
10633 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
10634 to 1.
10635
10636 * doc/bison.texinfo (Location Default Action): Mention that n must
10637 be zero when k is zero. Suggested by Frank Heckenbach.
10638
10639 2004-12-22 Akim Demaille <akim@epita.fr>
10640
10641 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
10642 (parser::state_type, parser::semantic_type, parser::location_type):
10643 Private, not public.
10644 (parser::parse): Return ints, not bool.
10645 Returning a bool introduces a problem: 0 corresponds to false, and
10646 it seems weird to return false on success. Returning true changes
10647 the conventions for yyparse.
10648 Alternatively we could return void and send an exception.
10649 There is no clear consensus (yet?).
10650 (state_stack, semantic_stack, location_stack): Rename as...
10651 (state_stack_type, semantic_stack_type, location_stack_type): these.
10652 Private, not public.
10653 * tests/c++.at: New.
10654 * tests/testsuite.at, tests/Makefile.am: Adjust.
10655
10656 2004-12-21 Akim Demaille <akim@epita.fr>
10657
10658 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
10659
10660 2004-12-21 Akim Demaille <akim@epita.fr>
10661
10662 Don't impose std::string for filenames.
10663
10664 * data/lalr1.cc (b4_filename_type): New.
10665 (position::filename): Use it.
10666 (parser.hh): Move the inclusion of stack.hh and location.hh below
10667 the user code, so that needed headers for the filename type can be
10668 included first.
10669 Forward declare them before the user code.
10670 * tests/Makefile.am (check-local, installcheck-local): Pass
10671 TESTSUITEFLAGS to the TESTSUITE.
10672
10673 2004-12-20 Akim Demaille <akim@epita.fr>
10674
10675 Use more STL like names: my_class instead of MyClass.
10676
10677 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
10678 (SemanticStack, SemanticType, StateStack, StateType)
10679 (TokenNumberType, Stack, Slice, Traits, Parser::location)
10680 (Parser::value): Rename as...
10681 (location_stack, location_type, rhs_number_type, semantic_stack)
10682 (semantic_type, state_stack, state_type, token_number_type, stack)
10683 (slice, traits, parser::yylloc, parser::yylval): these.
10684
10685 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
10686
10687 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
10688
10689 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
10690 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10691
10692 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
10693
10694 Remove uses of 'short int' and 'unsigned short int'. This raises
10695 some arbitrary limits. It uses more memory but nowadays that's
10696 not much of an issue.
10697
10698 This change does not affect the generated parsers; that's a different
10699 task, as some users will want to conserve memory there.
10700
10701 Ideally we should use size_t to represent all object counts, and
10702 something like ptrdiff_t to represent signed differences of object
10703 counts; but that will require more code-cleanup than I have the
10704 time to do right now.
10705
10706 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
10707 Use size_t, not int or short int, to count objects.
10708 * src/closure.c (nritemset, closure): Likewise.
10709 * src/closure.h (nritemset, closure): Likewise.
10710 * src/nullable.c (nullable_compute): Likewise.
10711 * src/print.c (print_core): Likewise.
10712 * src/print_graph.c (print_core): Likewise.
10713 * src/state.c (state_compare, state_hash): Likewise.
10714 * src/state.h (struct state): Likewise.
10715 * src/tables.c (default_goto, goto_actions): Likewise.
10716
10717 * src/gram.h (rule_number, rule): Use int, not short int.
10718 * src/output.c (prepare_rules): Likewise.
10719 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
10720 errs, reductions): Likewise.
10721 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
10722 Likewise.
10723 * src/tables.c (vector_number, tally, action_number,
10724 ACTION_NUMBER_MINIMUM): Likewise.
10725 * src/output.c (muscle_insert_short_int_table): Remove.
10726
10727 2004-12-17 Akim Demaille <akim@epita.fr>
10728
10729 * data/lalr1.cc: Extensive Doxygenation.
10730 (error_): Rename as...
10731 (error): this, since it is visible to the user.
10732 Adjust callers.
10733 (Parser::message): Now an automatic variable from...
10734 (Parser::yyreport_syntax_error_): here.
10735 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
10736 Parser::error.
10737 * tests/input.at: Escape $.
10738
10739 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
10740
10741 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
10742 Parenthesize rhs to avoid obscure problems with mistakes like
10743 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
10744 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
10745 b4_rhs_location): Likewise.
10746 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
10747 b4_rhs_location): Likewise.
10748
10749 2004-12-16 Akim Demaille <akim@epita.fr>
10750
10751 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
10752 yacc.c: be sure to stay within yycheck_.
10753 * tests/actions.at: Re-enable C++ tests.
10754
10755 2004-12-16 Akim Demaille <akim@epita.fr>
10756
10757 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
10758 real.
10759
10760 2004-12-16 Akim Demaille <akim@epita.fr>
10761
10762 Use #define to handle the %name-prefix.
10763
10764 * data/glr.c, data/yacc.c: Comment changes.
10765 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
10766 so that one can refer to yylex in the parser file, and have it
10767 renamed, as is the case with other skeletons.
10768
10769 2004-12-16 Akim Demaille <akim@epita.fr>
10770
10771 Move lalr1.cc internals into yy*.
10772
10773 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
10774 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
10775 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
10776 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
10777 (empty_, final_, terror_, errcode_, ntokens_)
10778 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
10779 (looka_, ilooka_, error_range_, nerrs_):
10780 Rename as...
10781 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
10782 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
10783 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
10784 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
10785 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
10786 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
10787 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
10788 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
10789 these.
10790
10791 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
10792
10793 Fix some problems reported by twlevo at xs4all.
10794 * src/symtab.c (symbol_new): Report an error if the input grammar
10795 contains too many symbols. This is better than calling abort() later.
10796 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
10797 (struct node, struct graph):
10798 Rename member expand to stretch. All uses changed.
10799 (struct graph): Remove member layoutalgorithm. All uses removed.
10800 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
10801 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
10802 All uses changed.
10803 (N_STRETCH): Rename from N_EXPAND. All uses changed.
10804
10805 2004-12-15 Akim Demaille <akim@epita.fr>
10806
10807 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
10808 Add more Doxygen comments.
10809 (symprint_, stack_print_, reduce_print_, destruct_, pop)
10810 (report_syntax_error_, translate_): Rename as...
10811 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
10812 (yypop_, yyreport_syntax_error_, yytranslate_): this.
10813
10814 2004-12-15 Akim Demaille <akim@epita.fr>
10815
10816 * data/lalr1.cc (lex_): Rename as...
10817 (yylex_): this.
10818 Move the trace here.
10819 Take the %name-prefix into account.
10820 Reported by Alexandre Duret-Lutz.
10821
10822 2004-12-15 Akim Demaille <akim@epita.fr>
10823
10824 Simplify the C++ parser constructor.
10825
10826 * data/lalr1.cc (debug_): Rename as...
10827 (yydebug_): so that the parser's internals are always in the yy*
10828 pseudo namespace.
10829 Adjust uses.
10830 (b4_parse_param_decl): Remove the leading comma as it is now only
10831 called as unique argument list.
10832 (Parser::Parser): Remove the constructor accepting a location and
10833 an initial debugging level.
10834 Remove from the other ctor the argument for the debugging level.
10835 (debug_level_type, debug_level, set_debug_level): New.
10836
10837 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
10838 constructor calls.
10839
10840 2004-12-15 Akim Demaille <akim@epita.fr>
10841
10842 Remove b4_root related material: failure experiment
10843 (which goal was to allow to derive from a class).
10844
10845 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
10846 definitions and uses.
10847
10848 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
10849
10850 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
10851 not 2, since it's not portable to subtract 1 from the start of an
10852 array. The new item 0 is never set or used. All uses changed.
10853
10854 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
10855 the default definition of YYLLOC_DEFAULT. Problem reported
10856 by Frank Heckenbach.
10857
10858 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
10859
10860 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
10861 the normal case and one for the error case. Just use the
10862 first one uniformly. Problem reported by Frank Heckenbach.
10863 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
10864 use exactly the same macro in both places.
10865 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
10866 so that the normal-case YYRHSLOC works for the error case too.
10867 All uses changed.
10868 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
10869 (YYLLOC_DEFAULT): Use the same macro as glr.c.
10870 * doc/bison.texinfo (Location Default Action): Don't claim that
10871 we have an array of locations. Use the same macro for both glr
10872 and lalr parsers. Mention YYRHSLOC. Mention what happens when
10873 the index is 0.
10874
10875 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
10876
10877 * HACKING: Update email addresses to send announcements to.
10878
10879 * configure.ac (AC_INIT): Bump version to 1.875f.
10880
10881 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
10882
10883 * NEWS: Version 1.875e.
10884 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
10885
10886 * src/scan-skel.l: Include "complain.h", for "fatal".
10887
10888 * src/relation.h (relation_print, relation_digraph):
10889 Relation sizes are of type relation_node, not size_t (this is
10890 merely a doc fix, since the two types are equivalent).
10891 (relation_transpose): Relation sizes are of type relation_node,
10892 not int.
10893 * src/relation.c: Likewise.
10894 (top, infinity): Now of type relation_node, not int.
10895 (traverse, relation_transpose): Use relation_node, not int.
10896
10897 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
10898 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
10899 (yyparse): Remove unused local introduced in 2004-10-25 patch.
10900
10901 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
10902 specifying whether the test should be skipped. Use it tp
10903 specify that the [%defines %skeleton "lalr1.cc"] tests currently
10904 fail on some hosts, and should be skipped.
10905
10906 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
10907
10908 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
10909 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
10910 unless otherwise specified below.
10911
10912 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
10913 to allocate kernel_base, kernel_items, kernel_size, since
10914 they needn't be initialized to 0.
10915 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
10916 * src/closure.c (new_closure): Likewise, for itemset.
10917 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
10918 * src/lalr.c (set_goto_map): Likewise, for temp_map.
10919 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
10920 (build_relations): Likewise for edge, states1, includes.
10921 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
10922 * src/reader.c (packgram): Likewise, for ritem, rules.
10923 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
10924 * src/relation.c (relation_digraph): Likewise for VERTICES.
10925 (relation_transpose): Likewise for new_R, end_R.
10926 * src/symtab.c (symbols_token_translations_init): Likewise for
10927 token_translations.
10928 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
10929 (token_actions): Likewise for yydefact, actrow, conflrow,
10930 conflict_list.
10931 (save_column): Likewise for froms[symno], tos[symno].
10932 (goto_actions): Likewise for state_count.
10933 (pack_table): Likewise for base, pos, check.
10934 (tables_generate): Likewise for width.
10935
10936 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
10937 for initial core. Just have a separate core, so we needn't worry
10938 about whether kernel_size and kernel_base are initialized.
10939
10940 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
10941 kernel_size, kernel_items): Remove unnecessary initialization.
10942 * src/conflicts.c (conflicts): Likewise.
10943 * src/derives.c (derives): Likewise.
10944 * src/muscle_tablc (muscle_insert): Likewise.
10945 * src/relation.c (relation_digraph): Likewise.
10946 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
10947 conflrow, conflict_table, conflict_list, table, check):
10948 Likewise.
10949
10950 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
10951 This is because all callers pass unsigned int.
10952 * src/closure.h (new_closure): Likewise.
10953
10954 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
10955 (build_relations): Initialize includes[i] in all cases.
10956 * src/reader.c (packgram): Always initialize rules[ruleno].prec
10957 and rules[ruleno].precsym. Initialize members in order.
10958 * src/relation.c (relation_transpose): Always initialize new_R[i]
10959 and end_R[i].
10960 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
10961
10962 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
10963 conflict_list[0] was always 0, but now it isn't initialized.
10964
10965 * src/table.c (table_grow): When conflict_table grew, the grown
10966 area wasn't cleared. Fix this.
10967
10968 * lib/.cvsignore: Add strdup.c, strdup.h.
10969 * m4/.cvsignore: Add strdup.m4.
10970
10971 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
10972
10973 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
10974 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
10975 GOTO_NUMBER_MAXIMUM, since we occasionally compute
10976 ngotos + 1 without checking for overflow.
10977 (build_relations): Use END_NODE, not -1, to denote end of edges.
10978 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
10979 build_relations): Use goto_number, not int, for goto numbers.
10980 * src/tables.c (save_column, default_goto): Likewise.
10981
10982 2004-11-23 Akim Demaille <akim@epita.fr>
10983
10984 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
10985 of #defining from yystype.
10986 Don't typedef yystype, C++ does not need it.
10987 This lets it possible to forward declare it as union.
10988
10989 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
10990
10991 * bootstrap (gnulib_modules): Add extensions.
10992 Problem reported by Jim Meyering.
10993
10994 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
10995
10996 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
10997 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
10998 src/system.h, src/tables.c: XFREE -> free, to accommodate
10999 recent change to gnulib xalloc.h.
11000 Problem reported by Jim Meyering.
11001
11002 2004-11-17 Akim Demaille <akim@epita.fr>
11003
11004 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
11005
11006 2004-11-17 Akim Demaille <akim@epita.fr>,
11007 Alexandre Duret-Lutz <adl@gnu.org>
11008
11009 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
11010 changes.
11011 (YYCDEBUG): Adjust.
11012 Use it instead of cdebug_.
11013 (Parser::debug_stream, Parser::set_debug_stream): New.
11014 (Parser::symprint_): Define cdebug_ for temporary backward
11015 compatibility.
11016 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
11017 debug_stream ().
11018
11019 2004-11-17 Akim Demaille <akim@epita.fr>
11020
11021 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
11022 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
11023 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
11024 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11025
11026 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
11027
11028 * data/glr.c (yyloc_default): Remove; not used.
11029 Problem reported by Frank Heckenbach.
11030
11031 2004-10-25 Akim Demaille <akim@epita.fr>
11032
11033 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
11034 Introduce another definition to address simple location arrays.
11035 (yyGLRStack): New member: yyerror_range.
11036 (yyrecoverSyntaxError, yyparse): Update it.
11037 (yyrecoverSyntaxError): Use it when shifting the error token to
11038 have an accurate range, equivalent to the one computed by both
11039 yacc.c and lalr1.cc.
11040 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
11041 that column numbers start at column 0, as per GNU Coding
11042 Standards, the others tests, and the doc.
11043 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
11044 Adjust to the above change (first column is 0).
11045 And adjust the location of the "<error>", now covering the whole
11046 line.
11047
11048 2004-10-22 Akim Demaille <akim@epita.fr>
11049 and Paul Eggert <eggert@cs.ucla.edu>
11050
11051 Remove some arbitrary limits on goto numbers and relations.
11052 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
11053 initial values, since they're never used.
11054 (set_goto_map): ngotos is now unsigned, so test for overflow
11055 by seeing whether it wraps around to zero.
11056 * src/lalr.h (goto_number): Now size_t, not short int.
11057 (GOTO_NUMBER_MAXIMUM): Remove.
11058 * src/relation.c (relation_print, traverse, relation_transpose):
11059 Check for END_NODE rather than looking at sign.
11060 * src/relation.h (END_NODE): New macro.
11061 (relation_node): Now size_t, not short int.
11062
11063 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
11064
11065 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
11066 keyword, not an identifier. Problem reported by Baron Schwartz in
11067 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
11068
11069 2004-10-11 Akim Demaille <akim@epita.fr>
11070
11071 * src/symtab.c (symbol_check_alias_consistency): Also check
11072 type names, destructors, and printers.
11073 Reported by Alexandre Duret-Lutz.
11074 Recode the handling of associativity and precedence in terms
11075 of symbol_precedence_set.
11076 Accept no redeclaration at all, not even equal to the previous
11077 value.
11078 (redeclaration): New.
11079 Use it to factor redeclaration complaints.
11080 (symbol_make_alias): Don't set the type of the alias, let
11081 symbol_check_alias_consistency do it as for other features.
11082 * src/symtab.h (symbol): Add new member prec_location, and
11083 type_location.
11084 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
11085 * tests/input.at (Incompatible Aliases): New.
11086
11087 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
11088
11089 .cvsignore fixes to accommodate gnulib changes,
11090 and the practice of naming build directories "_build".
11091 * .cvsignore: Add "_*". Sort.
11092 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
11093 * m4/.cvsignore: Add "*_gl.m4".
11094
11095 2004-10-06 Akim Demaille <akim@epita.fr>
11096
11097 * src/parse-gram.y (add_param): Fix the truncation of trailing
11098 spaces.
11099
11100 2004-10-05 Akim Demaille <akim@epita.fr>
11101
11102 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
11103 whether the reducion was empty or not. This leaves room to
11104 improve the use of YYLLOC_DEFAULT in such a case.
11105 lalr1.cc is still experimental, so changing this is acceptable.
11106 And finally, there are probably not many users who changed the
11107 handling of locations in GLR, so changing is admissible too.
11108
11109 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
11110 empty reduction, set @$ to an empty location ending the previously
11111 stacked symbol.
11112 Adjust uses to make sure the code is triggered on empty
11113 reductions.
11114 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
11115 expected output: empty reductions have empty locations.
11116
11117 2004-09-29 Akim Demaille <akim@epita.fr>
11118
11119 * data/lalr1.cc: Move towards a more standard C++ coding style
11120 for templates: Class < T > -> Class<T>.
11121
11122 2004-09-29 Akim Demaille <akim@epita.fr>
11123
11124 * data/lalr1.cc: Reinstall the former ctor, for sake of
11125 compatibility, but warn it will be removed.
11126 Move towards a more standard C++ coding style (i.e., type *var ->
11127 type* var).
11128
11129 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
11130
11131 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
11132 since it's less likely to work if NULs are involved in the future.
11133
11134 2004-09-27 Akim Demaille <akim@epita.fr>
11135
11136 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
11137
11138 2004-09-27 Akim Demaille <akim@epita.fr>
11139
11140 * data/lalr1.cc (b4_parse_param_decl_1): New.
11141 (b4_parse_param_decl): Use it to have different names between attribute
11142 and argument names.
11143 (b4_cc_constructor_call): Likewise.
11144
11145 2004-09-24 Akim Demaille <akim@epita.fr>
11146
11147 * src/parse-gram.y (add_param): Strip the leading and trailing
11148 blanks from a formal argument declaration.
11149 (YY_LOCATION_PRINT): New.
11150
11151 2004-09-24 Akim Demaille <akim@epita.fr>
11152
11153 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
11154 after the location.
11155
11156 2004-09-24 Akim Demaille <akim@epita.fr>
11157
11158 * doc/bison.texinfo (Table of Symbols): Sort.
11159
11160 2004-09-21 Akim Demaille <akim@epita.fr>
11161
11162 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
11163 the useless parentheses.
11164 Suggested by Paul Eggert.
11165
11166 2004-09-20 Akim Demaille <akim@epita.fr>
11167
11168 Let the initial-action act on the look-ahead, and use it for the
11169 "initial push" (corresponding to an hypothetical beginning-of-file).
11170 And let lalr1.cc honor %initial-action.
11171
11172 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
11173 example.
11174 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
11175 (Parser::Parser): Remove the ctor that used to initialize it.
11176 (Parser::parse): Like in the other skeletons, issue the "starting
11177 parse" message before any action.
11178 Honor %initial-action.
11179 Initialize the stacks with the lookahead.
11180 * data/yacc.c: Let $$ and @$ in %initial-action designate the
11181 look-ahead.
11182 Push them in the stacks.
11183 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
11184
11185 2004-09-20 Akim Demaille <akim@epita.fr>
11186
11187 * doc/bison.texinfo (Initial Action Decl): New.
11188
11189 2004-09-20 Akim Demaille <akim@epita.fr>
11190
11191 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
11192 clearer criterion to define it.
11193 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
11194 When reducing on an empty RHS, use the latest stacked location as
11195 location.
11196 yylloc is not always available.
11197 * data/glr.c: Likewise.
11198 Also, honor initial-actions.
11199
11200 2004-09-20 Akim Demaille <akim@epita.fr>
11201
11202 * data/yacc.c (YY_LOCATION_PRINT): New.
11203 Define when we know YYLTYPE's structure, i.e., when the default
11204 YYLLOC_DEFAULT is used.
11205 * data/c.m4 (b4_yysymprint_generate): Use it.
11206 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
11207 value of the result.
11208 (error_start_): Replace with...
11209 (error_range_): this location array.
11210 This allows to replace code relying on the implementation of
11211 locations by portable code.
11212 * data/yacc.c (yylerrsp): Replace with...
11213 (yyerror_range): this.
11214 Every time a token is popped, update yyerror_range[0], to have an
11215 accurate location for the error token.
11216 * data/glr.c (YY_LOCATION_PRINT): New.
11217 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
11218 deference a pointer.
11219 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
11220 report the location in %printers.
11221
11222 * src/scan-skel.l: Instead of abort, report error messages to ease
11223 understanding skeleton scanning failures.
11224
11225 2004-09-16 Akim Demaille <akim@epita.fr>
11226
11227 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
11228 (iterator, const_iterator): these, to be more in the C++ spirit.
11229 Also, return reverse iterators so that when displaying the stack
11230 we display its bottom first.
11231 (Parser::stack_print_, Parser::reduce_print_): Match the messages
11232 from yacc.c.
11233 We should probably use vector here though.
11234
11235 2004-09-16 Akim Demaille <akim@epita.fr>
11236
11237 Have more complete shift traces.
11238
11239 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
11240 to report Shifts instead of ad hoc YYDPRINTF invocations,
11241 including for the error token.
11242 * data/lalr1.cc (symprint_): Output the location.
11243 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
11244 output the location within the %printer.
11245 Activate GLR tests, at least to make sure they compile properly.
11246 They still don't pass though.
11247 * tests/calc.at: Adjust expect verbose output, since now "Entering
11248 state..." is on a different line than the "Shifting" message.
11249
11250 2004-09-08 Akim Demaille <akim@epita.fr>
11251
11252 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
11253 Bison directive from the Bison file to the invocation of this
11254 macro, so that these directives are passed to
11255 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
11256 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
11257 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
11258 the extra Bison directives instead of the whole series.
11259 Change the grammar so that there are recoverable errors, and
11260 unrecoverable errors. Now we can have the parser give up before
11261 consuming the whole input. As a result we now can observe that
11262 the lookahead is freed when needed.
11263 Change the parser source to parse argv[1] instead of a hard coded
11264 string.
11265 Simplify yylex, and give a value and location to EOF.
11266 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
11267 passed directives already coded in the file.
11268 Add some tests to check the location of "error".
11269 For some tests, the C++ parser is correct, and not yacc.c.
11270 For other tests, they provide different, but unsatisfying, values,
11271 so keep the C++ value so that at least one parser is "correct"
11272 according to the test suite.
11273 (Actions after errors): Remove, this is subsumed by the
11274 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
11275
11276 2004-09-06 Akim Demaille <akim@epita.fr>
11277
11278 * data/lalr1.cc: Adjust the indentation of the labels.
11279 (Parser::pop): New.
11280 Use it.
11281
11282 2004-09-06 Akim Demaille <akim@epita.fr>
11283
11284 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
11285 argument, an informative message.
11286 Call YY_SYMBOL_PRINT.
11287 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
11288 * data/lalr1.cc (destruct_): Likewise.
11289 In addition, no longer depend on b4_yysymprint_generate and
11290 b4_yydestruct_generate to generate these functions, do it "by
11291 hand".
11292
11293 2004-09-03 Akim Demaille <akim@epita.fr>
11294
11295 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
11296 invoked, yydestruct the lookahead.
11297 * tests/calc.at (Calculator $1): Update the expected lengths of
11298 traces: there is an added line for the discarded lookahead.
11299 * doc/bison.texinfo (Destructor Decl): Some rewording.
11300 Define "discarded" symbols.
11301
11302 2004-09-02 Akim Demaille <akim@epita.fr>
11303
11304 * data/lalr1.cc (translate_, destruct_): No reason to be static.
11305
11306 2004-09-02 Akim Demaille <akim@epita.fr>
11307
11308 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
11309 (YYDSYMPRINTF): Rename as...
11310 (YY_SYMBOL_PRINT): this.
11311 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
11312 two.
11313 Use it instead of direct symprint_ calls.
11314 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
11315 one.
11316
11317 2004-09-02 Akim Demaille <akim@epita.fr>
11318
11319 * data/lalr1.cc (b4_yysymprint_generate): New.
11320 (symprint_): New member function, defined when YYDEBUG.
11321 Use it consistently instead of token/nterm debugging output by
11322 hand.
11323 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
11324 %printer calls to use cdebug_ when using lalr1.cc.
11325
11326 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
11327
11328 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
11329 with #ifdef YYDEBUG.
11330
11331 2004-08-26 Akim Demaille <akim@epita.fr>
11332
11333 * doc/bison.texinfo (Implementing Loops): Rename as...
11334 (Implementing Gotos/Loops): this.
11335
11336 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
11337
11338 Adjust to latest gnulib.
11339 * bootstrap (gnulib_modules): Add xalloc-die.
11340 Set LC_ALL=C so that file names sort consistently.
11341 Prefer the gnulib copies of gettext.m4, glibc21.m4,
11342 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
11343 uintmax_t.m4, ulonglong.m4.
11344 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
11345 po.m4 since we are now using _gl.m4 instead.
11346
11347 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
11348
11349 * src/scan-action.l: Remove. Scanning of semantic actions is
11350 handled in scan-gram.l.
11351
11352 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
11353
11354 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
11355
11356 * src/location.h (struct): The file member is a uniqstr.
11357 (equal_boundaries): Use UNIQSTR_EQ for comparison.
11358
11359 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
11360
11361 Fix bug with non-%union parsers that have printers or destructors,
11362 which led to a Bison core dump. Reported by Peter Fales in
11363 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
11364
11365 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
11366 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
11367 not to our own type.
11368 * src/output.c (symbol_destructors_output, symbol_printers_output):
11369 Don't assume %union.
11370 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
11371 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
11372 UNION-FLAG. All callers changed.
11373 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
11374 Use type char, not unsigned int, when declaring an array of char;
11375 this lets us remove a cast.
11376 (Printers and Destructors): Add non-%union test cases.
11377
11378 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11379
11380 * doc/bison.texinfo: Minor editorial changes, mostly to the new
11381 GLR writeups. E.g., avoid frenchspacing and the future tense,
11382 change "lookahead" to "look-ahead", and change "wrt" to "with
11383 respect to".
11384
11385 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11386
11387 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
11388 New sections, split off from the GLR Parsers section. Put the new
11389 Simple GLR Parser near the start of the GLR section, for clarity.
11390 Rewrite connective text.
11391
11392 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
11393
11394 * doc/bison.texinfo (Simple GLR Parsers): New section.
11395
11396 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11397
11398 * NEWS, TODO, doc/bison.texinfo:
11399 Use "look-ahead" instead of "lookahead", to be consistent.
11400 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
11401 while we're fixing "look-ahead".
11402 * src/conflicts.c (shift_set): Renamed from shiftset.
11403 (look_ahead_set): Renamed from lookaheadset.
11404 * src/print.c: Likewise.
11405 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
11406 name for "lookahead".
11407 (report_types, usage): Likewise.
11408 * src/getargs.h (report_look_ahead_tokens): Renamed from
11409 report_lookaheads.
11410 * src/lalr.c (compute_look_ahead_tokens): Renamed from
11411 compute_lookaheads.
11412 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
11413 (look_ahead_tokens_print): Renamed from lookaheads_print.
11414 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
11415 state_rule_lookaheads_print.
11416 * src/state.h: Likewise.
11417 (reductions.look_ahead_tokens): Renamed from lookaheads.
11418 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
11419 AT_DATA_LOOKAHEADS_GRAMMAR.
11420
11421 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
11422
11423 * README: Update location of patched M4 distribution.
11424
11425 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
11426
11427 Don't assume the C++ compiler takes the same arguments as the C compiler
11428 (trivial change).
11429 * configure.ac (O0CXXFLAGS): New var.
11430 * tests/atlocal.in (CXXFLAGS): Use it.
11431
11432 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
11433
11434 Fix some "make check" problems with C++ reported by
11435 Albert Chin-A-Young for Tru64 C++ in this thread:
11436 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
11437
11438 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
11439 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11440 Output to a .cc file for C++, not to a .c file.
11441 * tests/calc.at (AT_CHECK_CALC): Likewise.
11442 * tests/regression.at (AT_CHECK_DANCER): Likewise.
11443 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
11444
11445 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
11446
11447 * tests/calc.at, tests/actions.at: Workaround for SGI
11448 C++ compiler. (trivial change)
11449
11450 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
11451
11452 Spent a few hours checking out which prerequisite versions the
11453 current sources actually require. I went all the way back to
11454 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
11455 a seemingly endless set of combinations of versions more recent
11456 than that. The bottom line is that the current sources require
11457 fairly recent versions of the build tools, and it'll be some work
11458 to change this.
11459 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
11460 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
11461 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
11462 Add comments explaining why those particular versions are
11463 currently needed.
11464
11465 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
11466 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
11467 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
11468
11469 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
11470 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
11471
11472 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
11473
11474 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
11475 0.11.5. Suggested by Bruno Haible.
11476 * bootstrap: Remove gettext version checking.
11477
11478 * doc/bison.texinfo (Decl Summary): Also mention that %union
11479 can depend on prerequisite types. Problem reported by Tim
11480 Van Holder.
11481
11482 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
11483
11484 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
11485 * README-alpha: Don't tell people not to package this.
11486
11487 * bootstrap: Don't assume $(...) works; use `...` instead.
11488 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
11489 gettext better.
11490
11491 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
11492 put into the -d output file, and mention what to do if YYSTYPE is
11493 defined as a macro.
11494
11495 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
11496
11497 Undo change made earlier today: it caused autopoint to not bring
11498 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
11499 autopoint's.
11500
11501 * bootstrap: Check that gettext version matches what's in
11502 configure.ac. Warn users to ignore robots.txt ERROR 404.
11503 * bootstrap: Undo today's earlier change (logged below).
11504 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
11505
11506 The gettext version checking is causing more trouble than it's
11507 curing; remove it. Problem reported by Paul Hilfinger.
11508
11509 * bootstrap: Issue a warning that one can expect a message
11510 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
11511 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
11512
11513 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
11514
11515 Ensure that the C++ compiler used for testing actually works on a
11516 simple test program; if not, skip the C++-related tests. Problem
11517 reported by Vin Shelton in:
11518 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
11519
11520 * m4/cxx.m4: New file.
11521 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
11522 * tests/atlocal.in (BISON_CXX_WORKS): Add.
11523 * tests/local.at (AT_COMPILE_CXX): Use it.
11524
11525 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11526
11527 * data/glr.c (yylloc): Output this macro even if locations are not
11528 being generated, as the GLR parser needs it even in that case.
11529 Problem reported by Troy A. Johnson
11530 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
11531
11532 * configure.ac (AC_INIT): Update to 1.875e.
11533
11534 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11535
11536 * NEWS: Version 1.875d.
11537 * configure.ac (AC_INIT): Likewise.
11538 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
11539
11540 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
11541 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
11542 lalr1.cc runs afoul of the first, and the last two are no longer
11543 supported by GCC 3.4.0.
11544 * README: Mention GNU m4 1.4 or later; mention m4 patches.
11545 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
11546
11547 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
11548
11549 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
11550 unsigned int, for compatibility with latest gnulib hash module.
11551 * src/state.c (state_hash, state_hasher): Likewise.
11552 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
11553 * src/uniqstr.c (hash_uniqstr): Likewise.
11554
11555 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
11556
11557 * NEWS: Unescaped newlines are no longer allowed in char & strings.
11558
11559 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
11560 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
11561 character and string literals.
11562 (unexpected_end): New function.
11563 (unexpected_eof): Use it.
11564 (unexpected_newline): New function.
11565 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
11566 actions.
11567
11568 * NEWS: Document %expect-rr.
11569
11570 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
11571 Fix typo by replacing $1 with $option.
11572 Remove more 'intl'-related files.
11573 Don't DEFUN AM_INTL_SUBDIR twice.
11574
11575 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
11576 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
11577 strtoul.c.
11578 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
11579 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
11580 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
11581 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
11582 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
11583 * src/.cvsignore: Add *.output.
11584
11585 * src/parse-gram.y: Put copyright notice inside %{ %} so it
11586 gets copied to the output file.
11587
11588 2004-04-28 Paul Eggert <eggert@twinsun.com>
11589
11590 Get files from the gnulib and po repositories, instead of relying
11591 on them being in our CVS. Upgrade to latest versions of gnulib
11592 and Automake.
11593
11594 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
11595 * bootstrap: Bootstrap from gnulib and po repositories.
11596 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
11597 * README-cvs: Document these changes. Remove version numbers from
11598 mentions of build tools, since they change so often. Mention Flex.
11599
11600 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
11601 (gl_USE_SYSTEM_EXTENSIONS): Add.
11602 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
11603 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
11604 does this for us.
11605 (AC_ISC_POSIX): Remove; we no longer support this
11606 ancient OS, as it gets in the way of latest Autoconf & gnulib.
11607 (AC_HEADER_STDC): Remove: we now assume C89 or better.
11608 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
11609 Do not check for C89 headers, except for locale.h which is used
11610 by the Yacc library and must port to K&R hosts.
11611 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
11612 Do not check for C89 functions, except for setlocale which is
11613 used by the Yacc library.
11614 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
11615 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
11616 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
11617 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
11618 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
11619 AM_GNU_GETTEXT): Remove; now done by:
11620 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
11621 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
11622 for us.
11623
11624 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
11625 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
11626 Define to empty, as gnulib.mk will do the rest for us.
11627 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
11628 for us.
11629 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
11630 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
11631
11632 * src/files.c: Include gnulib's xstrndup.h.
11633
11634 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
11635 (REALLOC): Use xnrealloc, for likewise.
11636 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
11637 (strnlen, memrchr): Remove decls; functions no longer used.
11638 Include <stpcpy.h>.
11639
11640 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
11641 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
11642 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
11643 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
11644 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
11645 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
11646 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
11647 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
11648 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
11649 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
11650 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
11651 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11652 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
11653 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
11654 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
11655 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
11656 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
11657 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
11658 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
11659 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
11660 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
11661 Remove, as these files are now generated automatically
11662 by bootstrap or automake.
11663
11664 * po/ChangeLog: Remove: all but one entry was a duplicate
11665 of this file, and I moved that 2000-11-02 entry here.
11666
11667 * config/.cvsignore: Add Makefile, depcomp, install-sh.
11668 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
11669 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
11670 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
11671 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
11672 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
11673 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
11674 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
11675 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
11676 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
11677 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
11678 xstrndup.h.
11679 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
11680 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
11681 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
11682 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
11683 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
11684 * src/.cvsignore: Remove *_.c.
11685
11686
11687 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
11688 support it. (The latest stable gzip doesn't.)
11689
11690 2004-04-27 Paul Eggert <eggert@twinsun.com>
11691
11692 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
11693 case, as stos_ is now used by destructors due to the 2004-02-09
11694 change.
11695
11696 Remove more K&R C support.
11697 * lib/libiberty.y (PARAMS): Remove. All uses removed.
11698 * lib/subpipe.c (errno): Remove decl.
11699 Include <stdlib.h> unconditionally.
11700 (EXIT_FAILURE): Remove macro.
11701 * src/complain.c (vfprintf, strerror): Remove.
11702 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
11703 unconditionally.
11704 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
11705 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
11706 (strchr, strspn, memchr): Remove decls.
11707 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
11708 unconditionally. Do not declare perror.
11709 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
11710 unconditionally.
11711
11712 * src/complain.c (_): Remove useless defn, as system.h defines this.
11713
11714 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
11715 with latest obstack.h.
11716 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
11717 to procedure types, as obstack.h now does that for us.
11718 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
11719
11720 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
11721 so that this include file can stand alone.
11722 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
11723 does this now. Include subpipe.h first after config.h, to
11724 test whether it can stand alone.
11725
11726 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
11727 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
11728 unused declaration.
11729
11730 * tests/synclines.at (%union synch line): Put a dummy member in
11731 the union, because empty unions aren't allowed in C. Caught
11732 by GCC 3.4.0.
11733
11734 2004-04-13 Jim Meyering <jim@meyering.net>
11735
11736 * src/conflicts.c (conflicts_print): Correct format string typo:
11737 use `%%' to produce literal `%'. (trivial change)
11738
11739 2004-03-30 Paul Eggert <eggert@twinsun.com>
11740
11741 * src/getargs.c (version): Update copyright year to 2004.
11742
11743 * data/c.m4 (b4_int_type): Use 'short int' rather than
11744 'short', and similarly for 'long', 'unsigned', etc.
11745 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
11746 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
11747 yy_yypstack, yydumpstack): Likewise.
11748 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
11749 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
11750 Likewise.
11751 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
11752 yy_stack_print, yyparse): Likewise.
11753 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
11754 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
11755 * lib/bitset.c (bitset_print): Likewise.
11756 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
11757 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
11758 * lib/bitsetv.c (bitsetv_dump): Likewise.
11759 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
11760 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
11761 Likewise.
11762 * src/LR0.c (allocate_itemsets): Likewise.
11763 * src/gram.h (rule_number, rule): Likewise.
11764 * src/lalr.h (goto_number): Likewise.
11765 * src/nullable.c (nullable_compute): Likewise.
11766 * src/output.c (prepare_rules): Likewise.
11767 * src/relation.c (relation_print, relation_digraph): Likewise.
11768 * src/relation.h (relation_node): Likewise.
11769 * src/state.h (state_number, transitions, errs, reductions,
11770 struct state): Likewise.
11771 * src/symtab.h (symbol_number, struct symbol): Likewise.
11772 * src/tables.c (vector_number, tally, action_number,
11773 default_goto, goto_actions): Likewise.
11774 * tests/existing.at (GNU Cim Grammar): Likewise.
11775 * tests/regression.at (Web2c Actions): Likewise.
11776
11777 * src/output.c (muscle_insert_short_int_table): Renamed from
11778 muscle_insert_short_table. All uses changed.
11779
11780 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11781
11782 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
11783 (declaration): Replace expected_conflicts with expected_sr_conflicts.
11784 Add %expect-rr rule.
11785
11786 * src/scan-gram.l: Recognize %expect-rr.
11787
11788 * src/conflicts.h (expected_sr_conflicts): Rename from
11789 expected_conflicts.
11790 (expected_rr_conflicts): Declare.
11791
11792 * src/conflicts.c (expected_sr_conflicts): Rename from
11793 expected_conflicts.
11794 (expected_rr_conflicts): Define.
11795 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
11796 for GLR parsers.
11797 Use expected_sr_conflicts in place of expected_conflicts.
11798 Warn if expected_rr_conflicts used in non-GLR parser.
11799
11800 * doc/bison.texinfo: Add documentation for %expect-rr.
11801
11802 2004-03-08 Paul Eggert <eggert@gnu.org>
11803
11804 Add support for hex token numbers. Suggested by Odd Arild Olsen in
11805 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
11806
11807 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
11808 in lalr1.cc.
11809 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
11810 * src/scan-gram.l (scan_integer): New function.
11811 ({int}): Use it.
11812 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
11813 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
11814 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
11815 Say "long int", not "long", for uniformity with GNU style.
11816
11817 2004-02-25 Paul Eggert <eggert@twinsun.com>
11818
11819 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
11820 compilers. This fixes a problem with Intel's C++ compiler being
11821 chatty, reported by Guido Trentalancia in
11822 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
11823
11824 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
11825
11826 Support %destructor and merge error locations in lalr1.cc.
11827
11828 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
11829 (Parser::stos_): Define unconditionally.
11830 (Parser::destruct_): New method. Generate its body with
11831 b4_yydestruct_generate.
11832 (Parser::error_start_): New attribute.
11833 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
11834 token which are discarded.
11835 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
11836 error_start_ when erroneous token are discarded.
11837 (Parser::parse) <yyerrlab1>: Compute the location of the error
11838 token so that it covers all the discarded tokens.
11839 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
11840 it can be called with `%skeleton "lalr1.cc"', and do that.
11841
11842 2004-02-02 Paul Eggert <eggert@twinsun.com>
11843
11844 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
11845 $(top_srcdir)/lib and ../lib. This fixes a bug reported
11846 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
11847 There's no need to mention top_builddir since Automake does that
11848 for us.
11849 (INCLUDES): Remove, as Automake says it's obsolescent.
11850 Contents migrated into AM_CPPFLAGS as described above.
11851 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
11852
11853 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11854
11855 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
11856 (yyreportSyntaxError): Handle case where lookahead token is
11857 YYEMPTY.
11858
11859 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11860
11861 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
11862 resulting parsers are compilable with C++.
11863
11864 2003-12-23 Paul Eggert <eggert@twinsun.com>
11865
11866 * config/depcomp, config/install-sh: Sync with Automake 1.8.
11867 * src/output.c (output_skeleton): Rename local var.
11868 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
11869 Bison tokens, as this runs afoul of the 2003-10-07 change that
11870 disallowed NUL bytes in character constants or string literals.
11871
11872 * tests/local.at: Require Autoconf 2.59's Autotest.
11873 * tests/testsuite.at: Don't include local.at, since we now assume
11874 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
11875 including it.
11876 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
11877 multiple inclusion warnings.
11878
11879 2003-12-02 Akim Demaille <akim@epita.fr>
11880
11881 * doc/bison.texinfo (How Can I Reset the Parser): More about start
11882 conditions.
11883 From Bruno Haible.
11884
11885 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
11886
11887 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
11888
11889 2003-10-07 Paul Eggert <eggert@twinsun.com>
11890
11891 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
11892 if testsuite doesn't exist.
11893
11894 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
11895 literals, unfortunately.
11896 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
11897 Complain about NUL bytes in character constants or string literals.
11898
11899 2003-10-05 Paul Eggert <eggert@twinsun.com>
11900
11901 * NEWS: Don't document %no-default-prec, as it's still
11902 too experimental.
11903 * doc/bison.texinfo: Document %no-default-prec only if
11904 the defaultprec flag is set. Normally it's not.
11905
11906 2003-10-04 Paul Eggert <eggert@twinsun.com>
11907
11908 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
11909 non-modifiable lvalue, instead of a modifiable one.
11910 * doc/bison.texinfo (Actions): Document that $$ can
11911 be assigned to. Do not claim that $$ and $N are
11912 array element references: user code should not rely on this.
11913
11914 2003-10-01 Paul Eggert <eggert@twinsun.com>
11915
11916 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
11917 (grammar_declaration): Use it.
11918 * src/scan-gram.l: New token %no-default-prec.
11919 * tests/conflicts.at: Revamp tests to use %no-default-prec.
11920 * NEWS, doc/bison.texinfo: Document the above.
11921
11922 2003-10-01 Akim Demaille <akim@epita.fr>
11923
11924 VCG no longer supports long_straight_phase.
11925
11926 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
11927 * src/print_graph.c (print_graph): Adjust.
11928
11929 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
11930 and Paul Eggert <eggert@twinsun.com>
11931
11932 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
11933 Table of Symbols): Document %default-prec.
11934 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
11935 (grammar_declaration): Set default_prec on %default-prec.
11936 * src/scan-gram.l (%default-prec): New token.
11937 * src/reader.h (default_prec): New flag.
11938 * src/reader.c: Likewise.
11939 (packgram): Handle it.
11940 * tests/conflicts.at (%default-prec without %prec,
11941 %default-prec with %prec, %default-prec 1): New tests.
11942
11943 2003-09-30 Paul Eggert <eggert@twinsun.com>
11944
11945 * tests/testsuite.at: Include local.at, not input.at, fixing
11946 a typo in the 2003-08-25 patch.
11947
11948 2003-08-27 Akim Demaille <akim@epita.fr>
11949
11950 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
11951 GCC warnings.
11952
11953 2003-08-26 Akim Demaille <akim@epita.fr>
11954
11955 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
11956 "<\#" to avoid magic from Gnus when posting parts of this script.
11957
11958 2003-08-26 Akim Demaille <akim@epita.fr>
11959
11960 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
11961 (Parser::parse): here.
11962 Adjust: nerrs and errstatus is now replaced by...
11963 (Parser::nerrs_, Parser::errstatus_): New.
11964
11965 2003-08-25 Akim Demaille <akim@epita.fr>
11966
11967 * config/announce-gen, Makefile.cfg: New.
11968 * Makefile.am: Adjust.
11969 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
11970 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
11971
11972 2003-08-25 Akim Demaille <akim@epita.fr>
11973
11974 When reducing initial empty rules, Bison parser read an initial
11975 location that is not defined. This results in garbage, and that
11976 affects Bison's own parser. Therefore we need (i) to extend Bison
11977 to support a means to initialize this location, and (ii) to use
11978 this CVS Bison to fix CVS Bison's parser.
11979
11980 * src/reader.h, reader.c (epilogue_augment): Remove, replace
11981 with...
11982 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
11983 * src/parse-gram.y: Adjust.
11984 (%initial-action): New.
11985 (%error-verbose): Since we require CVS Bison, there is no reason
11986 not to use it.
11987 * src/scan-gram.l: Adjust.
11988 * src/Makefile.am (YACC): New, to make sure we use our own parser.
11989 * data/yacc.c (yyparse): Use b4_initial_action.
11990
11991 2003-08-25 Akim Demaille <akim@epita.fr>
11992
11993 * doc/bison.texinfo: Don't promote stdout for error messages.
11994
11995 2003-08-25 Akim Demaille <akim@epita.fr>
11996
11997 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
11998 From Alexandre Duret-Lutz.
11999
12000 2003-08-25 Akim Demaille <akim@epita.fr>
12001
12002 Version 1.875c.
12003
12004 2003-08-25 Akim Demaille <akim@epita.fr>
12005
12006 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
12007 Use them.
12008
12009 2003-08-25 Akim Demaille <akim@epita.fr>
12010
12011 * data/lalr1.cc (Parser::reduce_print_): New.
12012 Use it.
12013
12014 2003-08-25 Akim Demaille <akim@epita.fr>
12015
12016 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
12017 error recovery loops. This patch is based on
12018 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
12019 Also, augment the similarity between lalr1.cc and yacc.c.
12020 Note: the locations of error recovery rules are not correct yet.
12021
12022 * data/lalr1.cc: Comment changes to augment the similarity between
12023 lalr1.cc and yacc.c.
12024 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
12025 (yyerrlab1): Remove, but where it used to be (now the bottom part of
12026 yyerrlab), when hitting EOF, pop the whole stack here instead of
12027 merely falling thru the default error handling mechanism.
12028 (yyerrorlab): New label, with the old contents of YYERROR,
12029 plus the following change: pop the stack of rhs corresponding
12030 to the production that invoked YYERROR. That is how Yacc
12031 behaves (required by POSIX).
12032 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
12033 fail.
12034
12035 2003-08-25 Akim Demaille <akim@epita.fr>
12036
12037 Tune local.at so that people can "autom4te -l autotest calc.at -o
12038 calc" for instance, to extract a sub test suite.
12039
12040 * tests/testsuite.at: Move the initialization, Autotest version
12041 requirement, and AT_TESTED invocation into...
12042 * tests/local.at: here.
12043 * tests/testsuite.at: Include it for compatibility with Autoconf
12044 2.57.
12045 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
12046 be ignore.
12047
12048 2003-08-04 Paul Eggert <eggert@twinsun.com>
12049
12050 Rework code slightly to avoid gcc -Wtraditional warnings.
12051 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
12052 The returned value is now stored in *YY0. All callers changed.
12053 * src/output.c (merge_output): Adjust to the above change.
12054
12055 2003-07-26 Paul Eggert <eggert@twinsun.com>
12056
12057 * data/glr.c (YYASSERT): New macro.
12058 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
12059 yyresolveStates, yyprocessOneStack):
12060 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
12061 Derived from a suggestion by Frank Heckenbach.
12062
12063 2003-07-25 Paul Eggert <eggert@twinsun.com>
12064
12065 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
12066 for portability to K&R C (after ansi2knr, presumably). See
12067 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
12068 by Frank Heckenbach, though I have omitted the structure-initialization
12069 part of his glr-knr.diff patch since I recall that the Portable
12070 C Compiler didn't require that change.
12071
12072 Let the user specify how to allocate and free memory.
12073 Derived from a suggestion by Frank Heckenbach in
12074 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
12075 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
12076 All uses of free, malloc, realloc changed to use these macros,
12077 and unnecessary casts removed.
12078 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
12079
12080 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
12081
12082 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
12083 use s.empty() rather than s == "" to test for empty string; see
12084 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
12085 (trivial change)
12086
12087 2003-06-25 Akim Demaille <akim@epita.fr>
12088
12089 * config/depcomp, config/install-sh: Update from masters.
12090
12091 2003-06-20 Paul Eggert <eggert@twinsun.com>
12092
12093 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
12094 and return properly parenthesized result.
12095 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
12096 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12097 Remove unnecessary parentheses from uses.
12098 * doc/bison.texinfo (Location Default Action): Describe the
12099 conventions for parentheses.
12100
12101 2003-06-19 Paul Eggert <eggert@twinsun.com>
12102
12103 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
12104 yyreportTree): Do not assume that size_t is the same width as int,
12105 when printing sizes. Print sizes using an unsigned format.
12106 Problem reported by Frank Heckenbach in
12107 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
12108
12109 Port to Forte Developer 7 C compiler.
12110 * data/glr.c (struct YYLTYPE): If locations are not being used,
12111 declare a single dummy member, as empty structs do not conform
12112 to the C standard.
12113 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
12114 the Forte Developer 7 C compiler complains that end-of-loop
12115 code is not reached.
12116
12117 2003-06-17 Paul Eggert <eggert@twinsun.com>
12118
12119 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
12120 avoid warnings from picky compilers about redefinition of PARAMS.
12121
12122 2003-06-17 Paul Eggert <eggert@twinsun.com>
12123
12124 Version 1.875b.
12125
12126 * NEWS: Document 1.875b.
12127
12128 * lib/bbitset.h: Do not include config.h; that's the includer's job.
12129 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
12130 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
12131 Don't use 'index' in comments, as it's a builtin fn on some hosts.
12132 * lib/bitset_stats.c: Include gettext.h unconditionally, as
12133 per recent gettext manual's suggestion.
12134 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
12135 Use prototypes, not old-style definitions.
12136 * lib/lbitset.c (lbitset_unused_clear): Likewise.
12137 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
12138 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
12139 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
12140 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
12141 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
12142 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
12143 vbitset_or_and_cmp, vbitset_copy): Likewise.
12144
12145 * lib/libiberty.h: Do not include config.h; that's the includer's job.
12146 Do not include <stdlib.h>.
12147 (PARAMS): Define unconditionally for C89.
12148 (ATTRIBUTE_NORETURN): Remove.
12149 (ATTRIBUTE_UNUSED): Define unconditionally.
12150
12151 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
12152 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
12153 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
12154 * lib/vbitset.c, lib/vbitset.h: New files.
12155 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
12156 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
12157 from libbitset.
12158
12159 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
12160 `How Can I Reset @code{yyparse}', since texinfo does not allow
12161 arbitrary @ in node names.
12162
12163 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
12164 shouldn't be needed according to the gettext 0.12.1 documentation
12165 but which seem to be needed anyway: codeset.m4 glibc21.m4
12166 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
12167 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
12168 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
12169
12170 * lib/.cvsignore: Add stdbool.h.
12171 * m4/.cvsignore: Add nls.m4, po.m4.
12172
12173 Upgrade to CVS gnulib.
12174 * stdbool_.h: File renamed from stdbool.h.in.
12175 * configure.ac (AM_STDBOOL_H): Invoke this instead of
12176 AC_HEADER_STDBOOL.
12177 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
12178 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
12179 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
12180 (MOSTLYCLEANFILES): New var.
12181 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
12182 (stdbool.h): New rule.
12183 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
12184 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
12185 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
12186 m4/quote.m4: Upgrade to today's gnulib.
12187
12188 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
12189 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
12190 the tests right now.
12191 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
12192 yyerror are declared before use; C99 requires this.
12193
12194 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12195
12196 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
12197 first.
12198 (yyrecoverSyntaxError): Correct the logic for setting and testing
12199 yyerrState.
12200 Correct comment on handling EOF.
12201 Allow states with only a default reduction, rather than failing
12202 (I can't quite reconstruct why these were not allowed before).
12203
12204 Fixes to avoid problem that $-N rules in GLR parsers can cause
12205 buffer overruns, corrupting state.
12206
12207 * src/output.c (prepare_rules): Output max_left_semantic_context
12208 definition.
12209 * src/reader.h (max_left_semantic_context): New variable declaration.
12210 * src/scan-gram.l (max_left_semantic_context): Define.
12211 (handle_action_dollar): Update max_left_semantic_context.
12212 * data/glr.c (YYMAXLEFT): New definition.
12213 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
12214 (yyresolveAction): Ditto.
12215
12216 Fixes to problems with location handling in GLR parsers reported by
12217 Frank Heckenbach (2003/06/05).
12218
12219 * data/glr.c (YYLTYPE): Make trivial if locations not used.
12220 (YYRHSLOC): Add parentheses, and define only if locations used.
12221 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
12222 locations not used.
12223 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
12224 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
12225
12226 * tests/cxx-type.at: Exercise location information; update tests
12227 to differentiate output with and without locations.
12228 Remove forward declarations of yylex and yyerror---caused errors
12229 because default YYLTYPE not yet defined.
12230 Change semantic actions to compute strings, rather than printing
12231 them directly (to test proper passing of semantics values). Change
12232 output to prefix notation and update test data and expected results.
12233 (yylex): Track locations.
12234 (stmtMerge): Return value rather than printing, and include arguments
12235 in value.
12236
12237 2003-06-03 Paul Eggert <eggert@twinsun.com>
12238
12239 Avoid warnings generated by GCC 2.95.4 when Bison is
12240 configured with --enable-gcc-warnings.
12241 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
12242 yy::]b4_parser_class_name[::translate_,
12243 yy::Stack::operator[] (unsigned),
12244 yy::Stack::operator[] (unsigned) const,
12245 yy::Slice::operator[] (unsigned),
12246 yy::Slice::operator[] (unsigned) const):
12247 Rename local vars to avoid warnings.
12248 * tests/glr-regression.at (Improper handling of embedded actions
12249 and $-N in GLR parsers): Remove unused local variable from yylex.
12250 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
12251 (void) as arg when not pure, since we now assume C89 when building
12252 Bison. Pacify GCC by using parameter.
12253
12254 2003-06-02 Paul Eggert <eggert@twinsun.com>
12255
12256 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
12257 yy::Location::lines, yy::Location::columns): Rename arguments
12258 to avoid shadowing; this removes a warning generated by GCC 3.3.
12259
12260 2003-06-01 Paul Eggert <eggert@twinsun.com>
12261
12262 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
12263 to g++, as GCC 3.3 complains if you do it.
12264 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
12265 everything that WARNING_CFLAGS has, except omit warnings
12266 not suitable for C++.
12267 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
12268 * tests/atlocal.in (CXXFLAGS): New var.
12269 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
12270
12271 Fix a GLR parser bug I reported in February; see
12272 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
12273 The problem was that GLR parsers did not conform to the C standard,
12274 because actions like { $1 = $2 + $3; } expanded to expressions
12275 that invoked YYFILL in separate subexpressions, and YYFILL assigned
12276 to a local variable. The C standard says that expressions
12277 like (var = f ()) + (var = f ()) have undefined behavior.
12278 Another problem was that GCC sometimes issues warnings that
12279 yyfill and its parameters are unused.
12280
12281 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
12282 as possibly unused.
12283 (yyfill): New function.
12284 (YYFILL): Use it.
12285 (yyuserAction): Change type of yynormal to bool, so that it matches
12286 the new yyfill signature. Mark it as possibly unused.
12287
12288
12289 Follow up on a bug I reported in February, where a Bison-generated
12290 parser can loop. Provide a test case and a fix for yacc.c. I
12291 don't have a fix for lalr1.cc or for glr.c, unfortunately.
12292 The original bug report is in:
12293 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
12294
12295 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
12296 macro's size was becoming unwieldy.
12297 (yyerrlab): Do not discard an empty lookahead symbol, as this
12298 might destroy garbage.
12299 (yyerrorlab): New label, with the old contents of YYERROR,
12300 plus the following change: pop the stack of rhs corresponding
12301 to the production that invoked YYERROR. That is how Yacc
12302 behaves, and POSIX requires this behavior.
12303 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
12304 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
12305 Define 'alarm' to do nothing if unistd.h is not available.
12306 Add a new rule "exp: '-' error;" to test the above change to
12307 data/yacc.c. Use 'alarm' to abort any test taking longer than
12308 10 seconds, as it's probably looping.
12309 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
12310 Also, the new yacc.c generates two fewer diagnostics for an
12311 existing test.
12312
12313 2003-05-24 Paul Eggert <eggert@twinsun.com>
12314
12315 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
12316 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
12317 This fixes a problem reported by John Bowman when the Compaq/HP
12318 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
12319 -ansi -Wall -gall).
12320 * data/yacc.c (union yyalloc): Likewise.
12321 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
12322
12323 Switch from 'int' to 'bool' where that makes sense.
12324
12325 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
12326 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
12327 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
12328 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
12329 Return or accept bool, not int. All callers changed.
12330 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
12331 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
12332 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
12333 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
12334 bitset_or_and_cmp_): Likewise.
12335 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
12336 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
12337 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
12338 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
12339 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
12340 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
12341 bitset_stats_or_and_cmp): Likewise.
12342 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
12343 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
12344 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
12345 ebitset_xor_cmp): Likewise.
12346 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
12347 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
12348 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
12349 lbitset_xor_cmp): Likewise.
12350 * lib/bbitset.h: Include <stdbool.h>.
12351 (struct bitset_vtable): The following members now return bool, not
12352 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
12353 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
12354 or_and_cmp).
12355 * src/conflicts.c (count_rr_conflicts): Likewise.
12356 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
12357 All uses changed.
12358 * lib/ebitset.c (ebitset_obstack_init): Likewise.
12359 * lib/lbitset.c (lbitset_obstack_init): Likewise.
12360 * src/getargs.c (debug_flag, defines_flag, locations_flag,
12361 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12362 graph_flag): Likewise.
12363 * src/getargs.h (debug_flag, defines_flag, locations_flag,
12364 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12365 graph_flag): Likewise.
12366 * src/output.c (error_verbose): Likewise.
12367 * src/output.h (error_verbose): Likewise.
12368 * src/reader.c (start_flag, typed): Likewise.
12369 * src/reader.h (typed): Likewise.
12370 * src/getargs.c (LOCATIONS_OPTION): New constant.
12371 (long_options, getargs): Use it.
12372 * src/lalr.c (build_relations): Use bool, not int.
12373 * src/nullable.c (nullable_compute): Likewise.
12374 * src/print.c (print_reductions): Likewise.
12375 * src/tables.c (action_row, pack_vector): Likewise.
12376 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
12377 * src/output.c (prepare): Use it.
12378 * src/output.c (token_definitions_output,
12379 symbol_destructors_output, symbol_destructors_output): Use string,
12380 not boolean integer, to keep track of whether to output separator.
12381 * src/print_graph.c (print_core): Likewise.
12382 * src/state.c (state_rule_lookaheads_print): Likewise.
12383
12384 * config/install-sh: Sync from automake 1.7.5.
12385
12386 2003-05-14 Paul Eggert <eggert@twinsun.com>
12387
12388 * src/parse-gram.y (rules_or_grammar_declaration): Require a
12389 semicolon after a grammar declaration, in the interest of possible
12390 future changes to the Bison input language.
12391 Do not allow a stray semicolon at the start of the grammar.
12392 (rhses.1): Allow one or more semicolons after any rule, including
12393 just before "|" as required by POSIX.
12394 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
12395 grammar.
12396
12397 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
12398
12399 %parse-param support for lalr1.cc.
12400
12401 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
12402 b4_cc_constructor_calls, b4_cc_constructor_call,
12403 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
12404 definitions.
12405 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
12406 parse-param arguments.
12407 (yy::b4_parser_class_name): Declare instance variables to
12408 hold parse-param arguments.
12409 * tests/calc.at: s/value/semantic_value/ because value clashes
12410 with a member of yy::b4_parser_class_name. Adjust C++ code
12411 to handle %parse-param. Enable %parse-param test in C++.
12412
12413 2003-05-12 Paul Eggert <eggert@twinsun.com>
12414
12415 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
12416 English a bit. Fix fclose typo. Change "const char" to "char
12417 const", and use ANSI C rather than K&R for "main". Suggest
12418 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
12419 and suggest yy_switch_to_buffer.
12420
12421 2003-05-05 Paul Eggert <eggert@twinsun.com>
12422
12423 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
12424 C89. This avoids a diagnostic on compilers that define __STDC__
12425 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
12426 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
12427
12428 2003-05-03 Paul Eggert <eggert@twinsun.com>
12429
12430 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
12431 Do not overrun array bounds.
12432 This should fix a bug reported today by Olatunji Oluwabukunmi in
12433 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
12434
12435 2003-04-29 Akim Demaille <akim@epita.fr>
12436
12437 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
12438 * src/getargs.c, src/getargs.h: here, as bool, not int.
12439 (nondeterministic_parser): New.
12440 * src/parse-gram.y, src/scan-gram.l: Support
12441 %nondeterministic-parser.
12442 * src/output.c (prepare): Use nondeterministic_parser instead
12443 of glr_parser where appropriate.
12444 * src/tables.c (conflict_row, action_row, save_row)
12445 (token_actions, token_actions, pack_vector): Ditto.
12446
12447 2003-04-29 Akim Demaille <akim@epita.fr>
12448
12449 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
12450
12451 2003-04-29 Akim Demaille <akim@epita.fr>
12452
12453 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
12454 with %pure-parser and %locations to exercise the patch from Yakov
12455 Markovitch below.
12456
12457 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
12458
12459 * data/yacc.c: (b4_lex_param): Corrected for the case where
12460 %lex-param is provided and %pure-parser isn't.
12461
12462 2003-04-27 Paul Eggert <eggert@twinsun.com>
12463
12464 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
12465 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
12466 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
12467 if it is not defined.
12468 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
12469
12470 2003-04-26 Paul Eggert <eggert@twinsun.com>
12471
12472 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
12473 Declare to be of type suitable for the ninf value itself, not of
12474 type suitable for the corresponding table, since the latter might
12475 be unsigned but the ninf value might be negative. This fixes a
12476 bug reported by Alexandre Duret-Lutz in
12477 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
12478
12479 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
12480 invokes it. We shouldn't invoke it twice because it will attempt
12481 to put error.o in the archive twice. This fixes a glitch reported
12482 by Martin Mokrejs in
12483 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
12484
12485 2003-04-21 Paul Eggert <eggert@twinsun.com>
12486
12487 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
12488 to gnulib.
12489
12490 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
12491
12492 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
12493 Fix obvious typo that results in uncompilable GLR parsers
12494 when both %pure-parser and %locations are used. (trivial change)
12495
12496 2003-04-17 Paul Eggert <eggert@twinsun.com>
12497
12498 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
12499 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
12500 Do not insert the expected token via unput, as this runs afoul
12501 of a POSIX-compatibility bug in flex 2.5.31.
12502 All uses changed to BEGIN the parent state,
12503 since we no longer insert the expected token via unput.
12504 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
12505 that is no longer emitted after the above change.
12506
12507 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
12508 the first one. This change is from Paul Hilfinger, and it fixes
12509 regression reported by Werner Lemberg in
12510 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
12511
12512 (resolve_sr_conflict): Don't invoke state_errs_set
12513 unless one or more tokens have been explicitly made errors.
12514 Otherwise, the above change causes Bison to abort.
12515
12516 * tests/existing.at (GNU pic Grammar): New test case, taken from
12517 Lemberg's email.
12518
12519 2003-03-31 Akim Demaille <akim@epita.fr>
12520
12521 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
12522
12523 2003-03-31 Akim Demaille <akim@epita.fr>
12524
12525 * src/output.c (prepare_symbols): Avoid trailing spaces in the
12526 output.
12527
12528 2003-03-31 Akim Demaille <akim@epita.fr>
12529
12530 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
12531 From Paul Hilfinger.
12532
12533 2003-03-29 Akim Demaille <akim@epita.fr>
12534
12535 * m4/error.m4: Do not put under dynamic conditions some code which
12536 expansion is under static control.
12537
12538 2003-03-29 Akim Demaille <akim@epita.fr>
12539
12540 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
12541
12542 2003-03-29 Akim Demaille <akim@epita.fr>
12543
12544 * doc/bison.texinfo (Strings are Destroyed): New.
12545
12546 2003-03-13 Paul Eggert <eggert@twinsun.com>
12547
12548 * .cvsignore: Add configure.lineno.
12549 * src/.cvsignore: Add yacc.
12550 * tests/.cvsignore: Add testsuite.log.
12551 * doc/fdl.texi: Sync with latest FSF version.
12552
12553 2003-03-12 Paul Eggert <eggert@twinsun.com>
12554
12555 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
12556 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
12557 cursor, instead of leaving it undefined. This fixes a bug
12558 reported by Tim Van Holder in
12559 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
12560 * tests/input.at (Torturing the Scanner): Test the scanner on
12561 an empty input file, which was Tim Van Holder's test case.
12562
12563 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
12564 <sys/resource.h> can be included, include sys/time.h and
12565 sys/times.h first, if available. This works around the SunOS
12566 4.1.4 porting bug reported by Bruce Becker in
12567 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
12568
12569 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
12570 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
12571 AC_HEADER_SYS_WAIT.
12572
12573 Merge changes from gnulib. This was prompted because the CVS
12574 snapshot didn't build on Solaris 7 due to strnlen problems.
12575
12576 These changes need to be merged back into gnulib:
12577 * lib/hash.c: Include <stdbool.h> unconditionally.
12578 * m4/onceonly.m4 (m4_quote): New macro.
12579 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
12580 Quote AC_FOREACH variable-expansions properly.
12581 The 2003-01-03 obstack.h change also needs merging.
12582 {end of changes requiring merging}
12583
12584 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
12585 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
12586 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
12587 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
12588 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
12589 New files, imported from gnulib.
12590 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
12591 above.
12592
12593 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
12594 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
12595 gnulib sources.
12596
12597 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
12598 Add.
12599 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
12600 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
12601 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
12602 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
12603 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
12604 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
12605 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
12606 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
12607 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
12608 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
12609 (jm_PREREQ_ARGMATCH): Remove.
12610 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
12611 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
12612
12613 * src/system.h: Include <stdbool.h> unconditionally.
12614
12615 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
12616 assuming at least C89 in the bitset code for some time now.
12617
12618 2003-03-03 Akim Demaille <akim@epita.fr>
12619
12620 * ro.po: New.
12621
12622 2003-03-02 Akim Demaille <akim@epita.fr>
12623
12624 * doc/bison.texinfo (Table of Symbols): Reactivate the
12625 documentation for %lex-param, and %parse-param.
12626
12627 2003-03-02 Akim Demaille <akim@epita.fr>
12628
12629 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
12630 generate verbose error messages.
12631 Use the number of tokens as an upper bound in yytname, as it
12632 cannot be a non terminal.
12633
12634 2003-03-02 Akim Demaille <akim@epita.fr>
12635
12636 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
12637 message.
12638
12639 2003-03-02 Akim Demaille <akim@epita.fr>
12640
12641 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
12642 Use them to exercise yycheck overrun.
12643 Based on Andrew Suffield's grammar.
12644
12645 2003-03-02 Akim Demaille <akim@epita.fr>
12646
12647 Create tests/local.at for Bison generic testing macros.
12648
12649 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
12650 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
12651 This new file.
12652 * tests/calc.at (AT_CHECK_CALC): Adjust.
12653 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
12654 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
12655 * tests/local.at: here.
12656 (AT_COMPILE_CXX): Tags the tests using it as c++.
12657 Ignore the test if CXX is not functional.
12658
12659 2003-03-01 Paul Eggert <eggert@twinsun.com>
12660
12661 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
12662 not loc->end, since loc->end might contain garbage and this leads
12663 to undefined behavior on some platforms.
12664 (id_loc, token_start): Use (IF_LINTed) initial values that do not
12665 depend on *loc, so that the reader doesn't give the the false
12666 impression that *loc is initialized.
12667 (<INITIAL>"%%"): Do not bother setting code_start, since its value
12668 does not survive the return.
12669
12670 2003-03-01 Akim Demaille <akim@epita.fr>
12671
12672 * src/scan-gram.l (code_start): Always initialize it when entering
12673 into yylex, as SC_EPILOGUE is activated *before* the corresponding
12674 yylex invocation. An alternative would be making it static, but
12675 then it starts with the second %%'s beginning, instead of its end.
12676
12677 2003-02-28 Paul Eggert <eggert@twinsun.com>
12678
12679 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
12680 around a UnixWare 7.1.1 porting bug reported by John Hughes in
12681 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
12682
12683 2003-02-26 Paul Eggert <eggert@twinsun.com>
12684
12685 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
12686 Remove Sequent/Pyramid discussion (nobody uses them any more).
12687 Merge VMS and MS-DOS discussion; these ports may well be dead
12688 but let's keep mentioning them for now. Put <> around email
12689 addresses. Add copyright notice.
12690
12691 2003-02-24 Paul Eggert <eggert@twinsun.com>
12692
12693 * data/glr.c (yy_reduce_print): yylineno -> yylno,
12694 to avoid collision with flex use of yylineno.
12695 Problem reported by Bruce Lilly in
12696 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
12697 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
12698 * data/yacc.c (yy_reduce_print): Likewise.
12699
12700 * config/depcomp: Sync with Automake 1.7.3.
12701
12702 2003-02-21 Akim Demaille <akim@epita.fr>
12703
12704 * data/lalr1.cc: Use temporary variables instead of casts to
12705 change integer types.
12706 Suggested by Paul Eggert.
12707
12708 2003-02-21 Akim Demaille <akim@epita.fr>
12709
12710 * doc/bison.texinfo: Use "location" consistently to refer to @n,
12711 to avoid confusions with lalr1.cc's notion of Position.
12712 Suggested by Paul Eggert.
12713
12714 2003-02-20 Akim Demaille <akim@epita.fr>
12715
12716 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
12717 before initial_columns.
12718 (location.hh): Use consistent variable names when defining the
12719 operator<<.
12720 Use "last" so that we subtract from Positions, not from unsigned.
12721
12722 2003-02-20 Akim Demaille <akim@epita.fr>
12723
12724 * data/lalr1.cc (position.hh): New subfile, including the extended
12725 and Doxygen'ed documentation of class Position.
12726 (location.hh): Use it.
12727 Document a` la Doxygen.
12728 With the help of Benoit Perrot.
12729
12730 2003-02-20 Akim Demaille <akim@epita.fr>
12731
12732 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
12733 AT_YACC_IF.
12734 Redefine AT_YYERROR_SEES_LOC_IF using it.
12735 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
12736 not defined.
12737 Don't use the location in yy::Parser::error_ and
12738 yy::Parser::print_ when not %locations.
12739 Activate more lalr1.cc tests.
12740
12741 2003-02-19 Akim Demaille <akim@epita.fr>
12742
12743 * data/lalr1.cc: When displaying a line number, be sure to make it
12744 an int.
12745
12746 2003-02-19 Akim Demaille <akim@epita.fr>
12747
12748 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
12749 Remove, useless.
12750 (YYABORT, YYACCEPT, YYERROR): New.
12751 * tests/calc.at: Renable the lalr1.cc test.
12752
12753 2003-02-19 Akim Demaille <akim@epita.fr>
12754
12755 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
12756 error recovery, mixing with/without pops and discarding of the
12757 lookahead.
12758 Exercise YYERROR.
12759 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
12760
12761 2003-02-17 Paul Eggert <eggert@twinsun.com>
12762
12763 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
12764 * tests/testsuite.at (AT_COMPILE): Use them.
12765 This fixes the testsuite problem reported by Robert Lentz in
12766 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
12767
12768 2003-02-12 Paul Eggert <eggert@twinsun.com>
12769
12770 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
12771 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
12772 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
12773 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
12774 Check for malloc failure, for consistency with yacc.c.
12775 (yytname_size): Remove, for consistency with yacc.c.
12776
12777 The bug still remains in data/lalr1.cc, as I didn't have time
12778 to fix it there.
12779
12780 2003-02-06 Akim Demaille <akim@epita.fr>
12781
12782 * configure.ac (GXX): Rename as...
12783 (CXX): this, to keep the original Autoconf semantics.
12784 Require 2.57.
12785 * data/lalr1.cc: Fix b4_copyright invocations.
12786 If YYDEBUG is not defined, don't depend upon name_ being defined.
12787 (location.hh): Include string and iostream.
12788 (Position::filename): New member.
12789 (Position::Position ()): New.
12790 (operator<< (Position)): New.
12791 (operator- (Position, int)): New.
12792 (Location::first, Location::last): Rename as...
12793 (Location::begin, Location::end): these, to mock the conventional
12794 iterator names.
12795 (operator<< (Location)): New.
12796 * tests/atlocal.in (CXX): New.
12797 * tests/testsuite.at (AT_COMPILE_CXX): New.
12798 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
12799 locations in a more synthetic way.
12800 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
12801 lalr1.cc is used.
12802 Adjust the C locations to match those from Emacs: first column is
12803 column 0.
12804 Change all the expected results.
12805 Conform to the GCS: simplify the locations when applicable.
12806 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
12807 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
12808 these CPP macros with the m4 macros new defined by...
12809 (AT_CHECK_PUSHDEFS): this, i.e.:
12810 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
12811 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
12812 New macros.
12813 (AT_CHECK_POPDEFS): Undefine them.
12814 (AT_CHECK_CALC_LALR1_CC): New.
12815 Use it for the first lalr1.cc test.
12816
12817 2003-02-04 Akim Demaille <akim@epita.fr>
12818
12819 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
12820 Location as is defined.
12821
12822 2003-02-04 Akim Demaille <akim@epita.fr>
12823
12824 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
12825 name_ being defined.
12826
12827 2003-02-03 Paul Eggert <eggert@twinsun.com>
12828
12829 * src/gram.h (start_symbol): Remove unused decl.
12830
12831 Use more-consistent naming conventions for local vars.
12832
12833 * src/derives.c (derives_compute): Change type of local var from
12834 int to rule_number.
12835 * src/gram.c (grammar_rules_partial_print): Likewise.
12836 * src/print.c (print_core): Likewise.
12837 * src/reduce.c (reduce_grammar_tables): Likewise.
12838
12839 * src/gram.c (grammar_dump): Change name of item_number *
12840 local var from r to rp.
12841 * src/nullable.c (nullable_compute): Likewise.
12842
12843 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
12844
12845 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
12846 for symbol or symbol_number var.
12847 * src/reader.c (grammar_start_symbol_set): Likewise.
12848 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
12849 Likewise.
12850 * src/state.c (transitions_to): Likewise.
12851 * src/state.h: Likewise.
12852 * src/tables.c (symbol_number_to_vector_number): Likewise.
12853
12854 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
12855 char * var.
12856
12857 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
12858 var.
12859
12860 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
12861 var.
12862
12863 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
12864 Use str, not s, for char * var. Use ch, not c, for character var.
12865 Use size for size var.
12866
12867 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
12868 char * var.
12869 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
12870 uniqstr var.
12871 * src/uniqstr.h: Likewise.
12872
12873 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12874 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12875 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
12876 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
12877 param to have same name as that of enum, so that we don't use
12878 "s" to stand for a non-state.
12879
12880 2003-02-02 Akim Demaille <akim@epita.fr>
12881
12882 * src/scan-skel.l: Scan more than one inert character per yylex
12883 invocation.
12884
12885 2003-02-01 Paul Eggert <eggert@twinsun.com>
12886
12887 Version 1.875a.
12888
12889 * po/LINGUAS: Add ms.
12890
12891 2003-01-30 Akim Demaille <akim@epita.fr>
12892
12893 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
12894
12895 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12896
12897 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
12898 of $1.
12899
12900 Changes in response to error report by S. Eken: GLR mode does not
12901 handle negative $ indices or $ indices in embedded rules correctly.
12902 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
12903
12904 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
12905 (b4_rhs_location): Ditto.
12906 (yyfill): New function to copy from stack tree into array
12907 incrementally.
12908 (yyuserAction): Modify to allow incremental move of semantic values
12909 to rhs array when in GLR mode.
12910 Define YYFILL to use in user-defined actions to fill semantic array
12911 as needed.
12912 Remove dummy use of yystack, as there is now a guaranteed use.
12913 (yydoAction): Modify to allow incremental move of semantic values
12914 to rhs array when in GLR mode.
12915 (yyresolveAction): Ditto.
12916 (yyglrShiftDefer): Update comment.
12917 (yyresolveStates): Use X == NULL for pointers, not !X.
12918 (yyglrReduce): Ditto.
12919 (yydoAction): Ditto
12920
12921 * tests/glr-regr1.at: Rename to ...
12922 * tests/glr-regression.at: Add new regression test for the problems
12923 described above (adapted from S. Eken).
12924 Update copyright notice.
12925 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
12926 * tests/Makefile.am: Ditto.
12927
12928 2003-01-28 Paul Eggert <eggert@twinsun.com>
12929
12930 * data/lalr1.cc: Do not use @output_header_name@ unless
12931 b4_defines_flag is set. This fixes two bugs reported by
12932 Tim Van Holder in
12933 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
12934 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
12935
12936 2003-01-21 Paul Eggert <eggert@twinsun.com>
12937
12938 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
12939 we don't need to worry about yyerrlab1 being reported as an
12940 "unused label" by non-GCC C compilers. The downside is that if
12941 locations are used then a couple of statements are duplicated each
12942 time YYERROR is invoked, but the upside is that the warnings
12943 should vanish.
12944 (yyerrlab1): Move code to YERROR.
12945 (yyerrlab2): Remove. Change uses back to yyerrlab1.
12946 This reverts some of the 2002-12-27 change.
12947
12948 2003-01-17 Paul Eggert <eggert@twinsun.com>
12949
12950 * src/output.c (symbol_printers_output): Fix typo that led
12951 to core dump. Problem reported by Antonio Rus in
12952 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
12953
12954 2003-01-13 Akim Demaille <akim@epita.fr>,
12955 Quoc Peyrot <chojin@lrde.epita.fr>,
12956 Robert Anisko <anisko_r@lrde.epita.fr>
12957
12958 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
12959 when the stacks contain one element, as the loop would otherwise
12960 free the last state, and then use the top state (the one we just
12961 popped). This means that the initial elements will not be freed
12962 explicitly, as is the case in yacc.c; it is not a problem, as
12963 these elements have fake values.
12964
12965 2003-01-11 Paul Eggert <eggert@twinsun.com>
12966
12967 * NEWS: %expect-violations are now just warnings, reverting
12968 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
12969 bootstrapping problem reported by Matthias Klose; see
12970 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
12971 * src/conflicts.c (conflicts_print): Likewise.
12972 * tests/conflicts.at (%expect not enough, %expect too much,
12973 %expect with reduce conflicts): Likewise.
12974 * doc/bison.texinfo (Expect Decl): Document this. Also mention
12975 that the warning is enabled if the number of conflicts changes
12976 (not necessarily increases).
12977
12978 * src/getargs.c (version): Update copyright year.
12979
12980 2003-01-09 Akim Demaille <akim@epita.fr>
12981
12982 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
12983
12984 2003-01-08 Paul Eggert <eggert@twinsun.com>
12985
12986 * Makefile.maint (WGETFLAGS):
12987 New macro, containing "-C off" to disable proxy caches.
12988 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
12989 (rel-check): Use $(WGET) instead of wget.
12990
12991 2003-01-06 Paul Eggert <eggert@twinsun.com>
12992
12993 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
12994 the GLR paper of Scott, Johnstone and Hussain.
12995
12996 2003-01-04 Paul Eggert <eggert@twinsun.com>
12997
12998 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
12999 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
13000 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
13001 (EXTRA_LIBRARIES): New var, for liby.a.
13002 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
13003 (EXTRA_SCRIPTS): New var, for yacc.
13004
13005 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
13006 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
13007 Problem reported by Nelson H. F. Beebe.
13008
13009 2003-01-03 Paul Eggert <eggert@twinsun.com>
13010
13011 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
13012 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
13013 when compiling Bison 1.875's `bitset bset = obstack_alloc
13014 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
13015
13016 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
13017 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
13018 grow to a huge size with typical invocation.
13019
13020 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
13021 Use the pattern recommended by Autoconf 2.57, except also protect
13022 against double-definition.
13023 * src/system.h: Likewise.
13024 Portability issues reported by Nelson H. F. Beebe.
13025
13026 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
13027 All uses changed. Provide a definition in both C and C++.
13028 (yytrue, yyfalse): Define even if defined (__cplusplus).
13029
13030 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
13031 Reported by Nelson H. F. Beebe.
13032
13033 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
13034
13035 2003-01-02 Paul Eggert <eggert@twinsun.com>
13036
13037 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
13038 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
13039 Bug reported by Nelson H. F. Beebe.
13040
13041 2003-01-01 Paul Eggert <eggert@twinsun.com>
13042
13043 * Version 1.875.
13044
13045 2002-12-30 Paul Eggert <eggert@twinsun.com>
13046
13047 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
13048 Moved here from...
13049 (<INITIAL>","): Here. This causes stray "," to be treated
13050 more uniformly.
13051
13052 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
13053 last brace in braced code when not in Yacc mode, for compatibility
13054 with Bison 1.35. This resurrects the 2001-12-15 patch to
13055 src/reader.c.
13056
13057 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
13058 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
13059
13060 2002-12-28 Paul Eggert <eggert@twinsun.com>
13061
13062 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
13063 that of SYM's type. This fixes Debian bug 168069, reported by
13064 Thomas Olsson.
13065
13066 2002-12-28 Paul Eggert <eggert@twinsun.com>
13067
13068 Version 1.75f.
13069
13070 Switch back to the Yacc style of conflict reports, undoing some
13071 of the 2002-07-30 change.
13072 * doc/bison.texinfo (Understanding): Use Yacc style for
13073 conflict reports. Also, use new way of locating rules.
13074 * src/conflicts.c (conflict_report):
13075 Renamed from conflict_report_yacc, removing the old
13076 'conflict_report'. Translate the entire conflict report at once,
13077 so that we don't assume that "," has the same interpretation in
13078 all languages.
13079 (conflicts_output): Use Yacc-style conflict report for each state,
13080 instead of our more-complicated style.
13081 (conflicts_print): Use Yacc-style conflict report, except print
13082 the input file name when not emulating Yacc.
13083 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
13084 Conflicted Reduction, %expect not enough, %expect too much,
13085 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
13086 * tests/existing.at (GNU Cim Grammar): Likewise.
13087 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
13088
13089 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
13090 fatal): Don't invoke fflush; it's not needed and it might even be
13091 harmful for stdout, as stdout might not be open.
13092 * src/reduce.c (reduce_print): Likewise.
13093
13094 2002-12-27 Paul Eggert <eggert@twinsun.com>
13095
13096 Fix a bug where error locations were not being recorded correctly.
13097 This problem was originally reported by Paul Hilfinger in
13098 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
13099
13100 * data/yacc.c (yyparse): New local var yylerrsp, to record the
13101 top of the location stack's error locations.
13102 (yyerrlab): Set it. When discarding a token, push its location
13103 onto yylerrsp so that we don't lose track of the error's end.
13104 (yyerrlab1): Now is only the target of YYERROR, so that we can
13105 properly record the location of the action that failed. For GCC
13106 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
13107 GCC warning about yyerrlab1 being unused if YYERROR is unused.
13108 (yyerrlab2): New label, which yyerrlab now falls through to.
13109 Compute the error's location by applying YYLLOC_DEFAULT to
13110 the locations of all the symbols that went into the error.
13111 * doc/bison.texinfo (Location Default Action): Mention that
13112 YYLLOC_DEFAULT is also invoked for syntax errors.
13113 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13114 Error locations include the locations of all the tokens that were
13115 discarded, not just the last token.
13116
13117 2002-12-26 Paul Eggert <eggert@twinsun.com>
13118
13119 * src/files.c: Include quote.h.
13120 (compute_output_file_names): Warn if we detect conflicting
13121 outputs to the same file. This should catch the misunderstanding
13122 exemplified by Debian Bug 165349, reported by Bruce Stephens..
13123
13124 * src/conflicts.c (conflicts_print): If the user specifies
13125 "%expect N", report an error if there are any reduce/reduce
13126 conflicts. This is what the manual says should happen.
13127 This fixes Debian bug 130890, reported by Anthony DeRobertis.
13128 * tests/conflicts.at (%expect with reduce conflicts): New test.
13129
13130 Don't use m4_include on relative file names, as it doesn't work as
13131 desired if there happens to be a file with that name under ".".
13132
13133 * m4sugar/version.m4: Remove; it was included but it wasn't used.
13134 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
13135 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
13136 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
13137 * src/output.c (output_skeleton): Use full path names when
13138 specifying a file to include; don't rely on include path, as
13139 it's unreliable when the working file contains a file with
13140 that name.
13141
13142 2002-12-25 Paul Eggert <eggert@twinsun.com>
13143
13144 Remove obsolete references to bison.simple and bison.hairy.
13145 Problem mentioned by Aubin Mahe in
13146 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
13147 * data/glr.c: Comment fix.
13148 * doc/bison.1: Remove references. Also, mention "yacc".
13149
13150 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
13151 with -g option.
13152
13153 * src/parse-gram.y (declaration): Use enum "report_states" rather
13154 than its numeric value 1.
13155
13156 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
13157 opening a new one. This fixes Debian bug 165349, reported by
13158 Bruce Stephens.
13159
13160 2002-12-24 Paul Eggert <eggert@twinsun.com>
13161
13162 Version 1.75e.
13163
13164 * Makefile.maint (cvs-update): Don't assume that the shell
13165 supports $(...), as Solaris sh doesn't.
13166
13167 * src/parse-gram.y (lloc_default): Remove test for empty
13168 nonterminals at the end, since it didn't change the result.
13169
13170 2002-12-24 Paul Eggert <eggert@twinsun.com>
13171
13172 If the user does not define YYSTYPE as a macro, Bison now declares it
13173 using typedef instead of defining it as a macro. POSIX requires this.
13174 For consistency, YYLTYPE is also declared instead of defined.
13175
13176 %union directives can now have a tag before the `{', e.g., the
13177 directive `%union foo {...}' now generates the C code
13178 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
13179 The default union tag is `YYSTYPE', for compatibility with Solaris 9
13180 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
13181 instead of `yyltype'.
13182
13183 `yystype' and `yyltype' are now obsolescent macros instead of being
13184 typedefs or tags; they are no longer documented and will be
13185 withdrawn in a future release.
13186
13187 * data/glr.c (b4_location_type): Remove.
13188 (YYSTYPE): Renamed from yystype.
13189 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
13190 (struct YYLTYPE): Renamed from struct yyltype.
13191 (YYLTYPE): Renamed from yyltype.
13192 (yyltype, yystype): New (and obsolescent) macros,
13193 for backward compatibility.
13194 * data/yacc.c: Likewise.
13195
13196 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
13197 does not specify a union tag. This is for compatibility with
13198 Solaris 9 yacc.
13199
13200 * src/parse-gram.y (add_param): 2nd arg is now char * not char
13201 const *, since it is now modified by stripping surrounding { }.
13202 (current_braced_code): Remove.
13203 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
13204 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
13205 trailing " {...}". Now of type <chars>.
13206 (grammar_declaration): Adjust to bundled tokens.
13207 (code_content): Remove; stripping is now done by add_param.
13208 (print_token_value): Print contents of bundled tokens.
13209 (token_name): New function.
13210
13211 * src/reader.h (braced_code, current_braced_code): Remove.
13212 (token_name): New decl.
13213
13214 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
13215 token_type, not braced_code code_kind. All uses changed.
13216 (SC_PRE_CODE): New state, for scanning after a keyword that
13217 has (or usually has) an immediately-following braced code.
13218 (token_type): New local var, to keep track of which token type
13219 to return when scanning braced code.
13220 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
13221 <INITIAL>"%parse-param", <INITIAL>"%printer",
13222 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
13223 instead of returning a token type immediately.
13224 (<INITIAL>"{"): Set token type.
13225 (<SC_BRACED_CODE>"}"): Use it.
13226 (handle_action_dollar, handle_action_at): Now returns bool
13227 indicating success. Fail if ! current_rule; this prevents a core dump.
13228 (handle_symbol_code_dollar, handle_symbol_code_at):
13229 Remove; merge body into caller.
13230 (handle_dollar, handle_at): Complain in invalid contexts.
13231
13232 * NEWS, doc/bison.texinfo: Document the above.
13233 * NEWS: Fix years and program names in copyright notice.
13234
13235 2002-12-17 Paul Eggert <eggert@twinsun.com>
13236
13237 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
13238 Reporting, Table of Symbols): Omit mentions of %lex-param and
13239 %parse-param from the documentation for now.
13240
13241 2002-12-15 Paul Eggert <eggert@twinsun.com>
13242
13243 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
13244 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
13245 lookahead symbol, and which sets yychar in parser actions) and it
13246 disagreed with the Bison documentation. Bug
13247 reported by Andrew Walrond.
13248
13249 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
13250 as the caller now does that.
13251 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
13252 (YYEMPTY): Parenthesize right hand side, since others use it.
13253 (yyparse): Don't assume that our generated code is the only code
13254 that sets yychar.
13255
13256 2002-12-13 Paul Eggert <eggert@twinsun.com>
13257
13258 Version 1.75d.
13259
13260 POSIX requires a "yacc" command.
13261 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
13262 (MOSTLYCLEANFILES): Add yacc.
13263 (yacc): New rule.
13264 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
13265 as an alias for bison y.
13266
13267 * po/LINGUAS: Add da.
13268
13269 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
13270 problem with latest <getopt.h>.
13271 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
13272
13273 * doc/fdl.texi: Upgrade to 1.2.
13274 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
13275 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
13276 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
13277 gnulib.
13278 * config/install-sh: Sync with autotools.
13279
13280 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
13281 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
13282 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
13283 locations are requested.
13284 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
13285 locations are requested.
13286
13287 2002-12-12 Paul Eggert <eggert@twinsun.com>
13288
13289 Remove unportable casts and storage allocation tricks.
13290 While we're at it, remove almost all casts, since they
13291 usually aren't needed and are a sign of trouble.
13292
13293 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
13294
13295 * src/derives.c (derives_compute): Do not subtract NTOKENS from
13296 the pointer DSET returned by malloc; this isn't portable.
13297 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
13298 Similarly for DERIVES.
13299 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
13300 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
13301 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
13302
13303 * src/derives.c (derives_compute): Do not bother invoking
13304 int_of_rule_number, since rule numbers are integers.
13305
13306 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
13307 rather than XMALLOC (char, N).
13308
13309 * src/files.c (filename_split): Rewrite to avoid cast.
13310
13311 * src/gram.h (symbol_number_as_item_number,
13312 item_number_as_symbol_number, rule_number_as_item_number,
13313 item_number_as_rule_number):
13314 Now inline functions rather than macros, to avoid casts.
13315 * src/state.h (state_number_as_int): Likewise.
13316 * src/tables.c (state_number_to_vector_number,
13317 symbol_number_to_vector_number): Likewise.
13318
13319 * src/gram.h (int_of_rule_number): Remove; no longer used.
13320
13321 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
13322 since the resulting storage is always stored into.
13323
13324 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
13325 where it's needed.
13326
13327 * src/muscle_tab.c (muscle_m4_output):
13328 Now inline. Return bool, not int.
13329 * src/state.c (state_compare): Likewise.
13330 * src/symtab.c (symbol_check_defined,
13331 symbol_check_alias_consistency, symbol_pack, symbol_translation,
13332 hash_compare_symbol, hash_symbol):
13333 Likewise.
13334 * src/uniqstr.c (uniqstr_print): Likewise.
13335 * src/muscle_tab.c (muscle_m4_output_processor):
13336 New function, to avoid casts.
13337 * src/state.c (state_comparator, stage_hasher): Likewise.
13338 * src/symtab.c (symbol_check_defined_processor,
13339 symbol_check_alias_consistency_processor, symbol_pack_processor,
13340 symbol_translation_processor, hash_symbol_comparator,
13341 hash_symbol_hasher): Likewise.
13342 * src/uniqstr.c (uniqstr_print_processor): Likewise.
13343 * src/muscle_tab.c (muscles_m4_output):
13344 Use new functions instead of casting old functions unportably.
13345 * src/state.c (state_hash_new): Likewise.
13346 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
13347 symbols_token_translations_init):
13348 Likewise.
13349 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
13350
13351 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
13352 var instead of casting to long, to avoid casts.
13353 (prepare_states): Use MALLOC rather than alloca, so that we don't
13354 have to worry about alloca.
13355 * src/state.c (state_hash_lookup): Likewise.
13356
13357 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
13358 local var instead of casting to unsigned char, to avoid casts.
13359
13360 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
13361 STATE_ALLOC): Remove.
13362 (transitions_new, errs_new, reductions_new, state_new): Use malloc
13363 rather than calloc, and use offsetof to avoid allocating slightly
13364 too much storage.
13365 (state_new): Initialize all members.
13366
13367 * src/state.c (state_hash): Use unsigned accumulator, not signed.
13368
13369 * src/symtab.c (symbol_free): Remove; unused.
13370 (symbol_get): Remove cast in lhs of assignment.
13371 (symbols_do): Now static. Accept generic arguments, not
13372 hashing-related ones.
13373
13374 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
13375 (symbol_processor): Remove.
13376 (symbols_do): Remove decl; now static.
13377
13378 * src/system.h (alloca): Remove; decl no longer needed.
13379 (<stddef.h>): Include, for offsetof.
13380 (<inttypes.>, <stdint.h>): Include if available.
13381 (uintptr_t): New type, if system lacks it.
13382 (CALLOC, MALLOC, REALLOC): New macros.
13383 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
13384 new macros.
13385
13386 * src/tables.c (table_size): Now int, to pacify GCC.
13387 (table_grow, table_ninf_remap): Use signed table size.
13388 (save_row): Don't bother initializing locals when not needed.
13389 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
13390 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
13391
13392 * src/vcg.h: Correct misspellings.
13393
13394 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
13395
13396
13397 * src/getargs.c (getargs): Don't assume EOF == -1.
13398
13399 2002-12-09 Paul Eggert <eggert@twinsun.com>
13400
13401 Change identifier spellings to avoid collisions with names
13402 that are reserved by POSIX.
13403
13404 Don't use names ending in _t, since POSIX reserves them.
13405 For consistency, remove _e and _s endings -- they're weren't
13406 needed to remove ambiguity. All uses changed.
13407 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
13408 turn was just renamed from struniq_t.
13409 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
13410 which in turn was just renamed from struniq_processor_t.
13411 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
13412 in turn was renamed from hash_compare_struniq_t.
13413 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
13414 (state_list): Renamed from state_list_t.
13415 * src/assoc.h (assoc): Renamed from assoc_t.
13416 * src/conflicts.c (enum conflict_resolution): Renamed from
13417 enum conflict_resolution_e.
13418 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
13419 (rule_list): Renamed from rule_list_t.
13420 * src/getargs.h (enum trace): Renamed from enum trace_e.
13421 (enum report): Renamed from enum report_e.
13422 * src/gram.h (item_number): Renamed from item_number_t.
13423 (rule_number): Renamed from rule_number_t.
13424 (struct rule_s): Remove the "rule_s" part; not used.
13425 (rule): Renamed from rule_t.
13426 (rule_filter): Renamed from rule_filter_t.
13427 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
13428 (goto_list): Renamed from goto_list_t.
13429 * src/lalr.h (goto_number): Renamed from goto_number_t.
13430 * src/location.h (location): Renamed from location_t.
13431 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
13432 and moved here from:
13433 * src/muscle_tab.h (muscle_entry_t): here.
13434 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
13435 (rule_list): Renamed from rule_list_t.
13436 * src/print_graph.c (static_graph): Renamed from graph.
13437 * src/reader.h (braced_code): Renamed from braced_code_t.
13438 Remove brace_code_e tag.
13439 * src/relation.h (relation_node): Renamed from relation_node_t.
13440 (relation_nodes): Renamed from relation_nodes_t.
13441 (relation): Renamed from relation_t.
13442 * src/state.h (state_number): Renamed from state_number_t.
13443 (struct state): Renamed from struct state_s.
13444 (state): Renamed from state_t.
13445 (transitions): Renamed from transitions_t. Unused (and
13446 misspelled) transtion_s tag removed.
13447 (errs): Renamed from errs_t. Unused errs_s tag removed.
13448 (reductions): Renamed from reductions_t. Unused tag
13449 reductions_s removed.
13450 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
13451 (struct symbol_list): Renamed from struct symbol_list_s.
13452 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
13453 (struct symbol): Renamed from struct symbol_s.
13454 (symbol): Renamed from symbol_t.
13455 * src/tables.c (vector_number): Renamed from vector_number_t.
13456 (action_number): Renamed from action_t.
13457 * src/tables.h (base_number): Renamed from base_t.
13458 * src/vcg.h (enum color): Renamed from enum color_e.
13459 (enum textmode): Renamed from enum textmode_e.
13460 (enum shape): Renamed from enum shape_e.
13461 (struct colorentry): Renamed from struct colorentry_s.
13462 (struct classname): Renamed from struct classname_s.
13463 (struct infoname): Renamed from struct infoname_s.
13464 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
13465 (enum decision): Renamed from enum decision_e.
13466 (enum orientation): Renamed from enum orientation_e.
13467 (enum alignment): Renamed from enum alignment_e.
13468 (enum arrow_mode): Renamed from enum arrow_mode_e.
13469 (enum crossing_type): Renamed from enum crossing_type_e.
13470 (enum view): Renamed from enum view_e.
13471 (struct node): Renamed from struct node_s.
13472 (node): Renamed from node_t.
13473 (enum linestyle): Renamed from enum linestyle_e.
13474 (enum arrowstyle): Renamed from enum arrowstyle_e.
13475 (struct edge): Renamed from struct edge.
13476 (edge): Renamed from edge_t.
13477 (struct graph): Renamed from struct graph_s.
13478 (graph): Renamed from graph_t.
13479 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
13480 Rename value_t -> value.
13481 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
13482 value_t_as_yystype -> value_as_yystype.
13483
13484 Don't include <errno.h> in the mainstream code, since it
13485 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
13486 * lib/get-errno.c, lib/get-errno.h: New files.
13487 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
13488 get-errno.c.
13489 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
13490 * src/output.c (output_skeleton): Likewise.
13491 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
13492 instead of errno.
13493 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
13494 Likewise.
13495 (handle_action_dollar, handle_action_at): Likewise.
13496 * src/system.h: Do not include <errno.h>.
13497 (TAB_EXT): Renamed from EXT_TAB.
13498 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
13499
13500 Avoid str[a-z]*, since <string.h> reserves that name space.
13501 Change all instances of "struniq" in names to "uniqstr", and
13502 likewise for "STRUNIQ" and "UNIQSTR".
13503 * src/uniqstr.c: Renamed from src/struniq.c.
13504 * src/uniqstr.h: Renamed from src/struniq.h.
13505 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
13506 * src/files.c (strsuffix): Remove; unused.
13507 (concat2): Renamed from stringappend. Now static.
13508 * src/files.h (strsuffix, stringappend): Remove; unused.
13509 * src/parse-gram.y (<chars>): Renamed from <string>.
13510 (<uniqstr>): Renamed from <struniq>.
13511 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
13512 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
13513 (struct graph_s.expand): Renamed from struct graph_s.stretch.
13514 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
13515 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
13516 (N_EXPAND): Renamed from N_STRETCH.
13517
13518 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
13519 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
13520 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
13521 Remove; unused.
13522 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
13523 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
13524 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
13525 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
13526 (BASE_MAXIMUM): Renamed from BASE_MAX.
13527 (BASE_MINIMUM): Renamed from BASE_MIN.
13528 (ACTION_MAX): Remove; unused.
13529 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
13530 Unnecessary casts removed from above defines.
13531
13532
13533 Fix misspelling in names.
13534 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
13535 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
13536 G_NODE_ALIGNEMENT.
13537
13538
13539 * lib/timevar.c (timevar_report): Renamed from time_report,
13540 for consistency with other names.
13541 * lib/timevar.h (timevar_report): New decl.
13542 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
13543
13544
13545 Sort include-file uses.
13546
13547 Reorder all include files under src to be in the order "system.h".
13548 then the ../lib include files in angle brackets (alphabetized),
13549 then the . include files in double-quotes (alphabetized). Fix
13550 dependency breakages encountered in this process, as follows:
13551 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
13552 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
13553 * src/state.h: Include "symtab.h".
13554
13555 2002-12-08 Paul Eggert <eggert@twinsun.com>
13556
13557 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
13558 since this causes problems when __file__ contains character
13559 sequences like "@" that are treated specially by src/scan-skel.l.
13560 Instead, just use the file's basename. This fixes the bug
13561 reported by Martin Mokrejs in
13562 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
13563
13564 2002-12-06 Paul Eggert <eggert@twinsun.com>
13565
13566 Add support for rules that do not have trailing semicolons, as
13567 POSIX requires. Improve the quality of locations in Bison
13568 diagnostics.
13569
13570 * src/location.c: Include <quotearg.h>.
13571 (empty_location): Now const.
13572 (location_print): New function. Follow the recommendation of the
13573 GNU Coding Standards for locations that span file boundaries.
13574 * src/location.h: Do not include <quotearg.h>; no longer needed.
13575 (boundary): New type.
13576 (location_t): Use it. This allows locations to span file boundaries.
13577 All member uses changed: file -> start.file or end.file (as needed),
13578 first_line -> start.line, first_column -> start.column,
13579 last_line -> end.line, last_column -> end.column.
13580 (equal_boundaries): New function.
13581 (LOCATION_RESET, LOCATION_STEP): Remove.
13582 (LOCATION_PRINT): Remove. All callers changed to use location_print.
13583 (empty_location): Now const.
13584 (location_print): New decl.
13585 * src/parse-gram.y (lloc_default): New function, which handles
13586 empty locations more accurately.
13587 (YYLLOC_DEFAULT): Use it.
13588 (%token COLON): Remove.
13589 (%token ID_COLON): New token.
13590 (rules): Use it.
13591 (declarations, rules): Remove trailing semicolon.
13592 (declaration, rules_or_grammar_declaration):
13593 Allow empty (";") declaration.
13594 (symbol_def): Remove empty actions; no longer needed.
13595 (rules_or_grammar_declaration): Remove trailing semicolon.
13596 (semi_colon.opt): Remove.
13597 * src/reader.h: Include location.h.
13598 (scanner_cursor): New decl.
13599 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
13600 rolling our own.
13601 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
13602 of *loc.
13603 (STEP): Remove. No longer needed, now that adjust_location does
13604 the work. All uses removed.
13605 (scanner_cursor): New var.
13606 (adjust_location): Renamed from extend_location. It now sets
13607 *loc and adjusts the scanner cursor. All uses changed.
13608 Don't bother testing for CR.
13609 (handle_syncline): Remove location arg; now updates scanner cursor.
13610 All callers changed.
13611 (unexpected_end_of_file): Now accepts start boundary of token or
13612 comment, not location. All callers changed. Update scanner cursor,
13613 not the location.
13614 (SC_AFTER_IDENTIFIER): New state.
13615 (context_state): Renamed from c_context. All uses changed.
13616 (id_loc, code_start, token_start): New local vars.
13617 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
13618 processing of Yacc white space and equivalents here.
13619 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
13620 instead of returning ID immediately, since we need to search for
13621 a subsequent colon.
13622 (<INITIAL>"'", "\""): Save token_start.
13623 (<INITIAL>"%{", "{", "%%"): Save code_start.
13624 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
13625 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
13626 BEGIN context_state at end, not INITIAL.
13627 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
13628 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
13629 Return correct token start.
13630 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
13631 the start of a character, string or multiline comment is found.
13632 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
13633 Reduction): Adjust reported locations to match the more-precise
13634 results now expected.
13635 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
13636 * tests/reduce.at (Useless Rules, Reduced Automaton,
13637 Underivable Rules): Likewise.
13638 * tests/regression.at (Invalid inputs): No longer `expecting ";"
13639 or "|"' now that so many other tokens are allowed by the new grammar.
13640
13641 * src/complain.h (current_file): Remove duplicate decl;
13642 current_file is now owned by files.h.
13643 * src/complain.c, src/scan-gram.l: Include files.h.
13644
13645 2002-12-06 Paul Eggert <eggert@twinsun.com>
13646
13647 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
13648 promotes to int; it might be unsigned int.
13649 * data/yacc.c (yy_reduce_print): Likewise.
13650
13651 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
13652 be #defined in the prologue, not in the Bison declarations.
13653 This fixes Debian Bug 102878, reported by Shaul Karl.
13654
13655 2002-12-02 Paul Eggert <eggert@twinsun.com>
13656
13657 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
13658 * lib/strtoul.c: New file, from gnulib.
13659 This fixes a porting bug reported by Peter Klein in
13660 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
13661
13662 2002-11-30 Paul Eggert <eggert@twinsun.com>
13663
13664 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
13665 and put only a forward declaration in the prologue. This is for
13666 consistency with the other scanner helper functions.
13667
13668 Type clashes now generate warnings, not errors, since it
13669 appears that POSIX may allow some grammars with type clashes.
13670 * src/reader.c (grammar_current_rule_check): Warn about
13671 type clashes instead of complaining.
13672 * tests/input.at (Type Clashes): Expect warnings, not complaints.
13673
13674 Add Yacc library, since POSIX requires it.
13675 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
13676 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
13677 * lib/main.c, lib/yyerror.c: New files.
13678
13679 gram_error can be static; it need not be extern.
13680 * src/reader.h (gram_error): Remove decl.
13681 * src/parse-gram.y (gram_error): Now static. Add static decl.
13682 (print_token_value): Omit parameter names from forward decl,
13683 for consistency.
13684
13685 2002-11-29 Paul Eggert <eggert@twinsun.com>
13686
13687 * doc/bison.texinfo: Emphasize that yylex and yyerror must
13688 be declared before being used. E.g., one should typically
13689 declare them in the prologue. Use GNU coding style in examples.
13690 Put "const" consistently after the type it modifies. Mention
13691 that C99 supports "inline". Mention that yyerror traditionally
13692 returns "int".
13693
13694 %parse-param and %lex-param now take just one argument, the
13695 declaration; the argument name is deduced from the declaration.
13696
13697 * doc/bison.texinfo (Parser Function, Pure Calling, Error
13698 Reporting, Table of Symbols): Document this.
13699 * src/parse-gram.y (add_param): New function.
13700 (COMMA): Remove.
13701 (declaration): Implement new rule for %parse-param and %lex-param.
13702 * src/scan-gram.l: "," now elicits a warning, rather than being
13703 a token; this is more compatible with byacc.
13704 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
13705
13706 2002-11-27 Paul Eggert <eggert@twinsun.com>
13707
13708 Rename identifiers to avoid real and potential collisions.
13709
13710 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
13711 to avoid collision with lex macro described by Bruce Lilly in
13712 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
13713 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
13714 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
13715 * src/parse-gram.y (print_token_value): Renamed from yyprint.
13716 All uses changed.
13717 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
13718 The name "yycontrol" violates the name space rules, and this stuff
13719 wasn't being used anyway.
13720 (input): Remove action; this stuff wasn't being used.
13721 (gram_error): Rename local variable yylloc -> loc.
13722 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
13723 (YY_DECL): Don't use "yy" at start of local variables.
13724 All uses changed, e.g., yylloc -> loc.
13725 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
13726 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
13727 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
13728 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
13729
13730 * src/parse-gram.y (gram_error): loc is now const *.
13731 * src/reader.h (gram_error): Likewise.
13732
13733 2002-11-24 Paul Eggert <eggert@twinsun.com>
13734
13735 Version 1.75c.
13736
13737 * tests/actions.at (Actions after errors): Use an output format
13738 more similar to that of the Printers and Destructors test.
13739 Test the position of the ';' token too.
13740 (Printers and Destructors): Likewise.
13741 (Printers and Destructors: %glr-parser): Remove for now, to avoid
13742 unnecessarily alarming people when the test fails.
13743
13744 * data/yacc.c (yyerrlab1): Move this label down, so that the
13745 parser does not discard the lookahead token if the user code
13746 invokes YYERROR. This change is required for POSIX conformance.
13747
13748 * lib/error.c: Sync with gnulib.
13749
13750 2002-11-22 Paul Eggert <eggert@twinsun.com>
13751
13752 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
13753 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
13754 * lib/xmalloc.c: Likewise.
13755
13756 2002-11-20 Paul Eggert <eggert@twinsun.com>
13757
13758 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
13759
13760 2002-11-20 Paul Eggert <eggert@twinsun.com>
13761
13762 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
13763 should use `if (! x) abort ();' rather than `assert (x);', and
13764 anyway it's one less thing to worry about configuring.
13765
13766 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
13767 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
13768 and replace all instances of assert with abort.
13769 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
13770 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
13771
13772 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
13773 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
13774 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
13775 hash_find_entry, hash_rehash, hash_insert): Likewise.
13776 * src/conflicts.c (resolve_sr_conflict): Likewise.
13777 * src/lalr.c (set_goto_map, map_goto): Likewise.
13778 * src/nullable.c (nullable_compute): Likewise.
13779 * src/output.c (prepare_rules, token_definitions_output): Likewise.
13780 * src/reader.c (packgram, reader): Likewise.
13781 * src/state.c (state_new, state_free, state_transitions_set,
13782 state_reduction_find): Likewise.
13783 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
13784 symbol_pack): Likewise.
13785 * src/tables.c (conflict_row, pack_vector): Likewise.
13786 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
13787 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
13788 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
13789 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
13790
13791 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
13792 (ARGMATCH_CONSTRAINT): New macro.
13793 (ARGMATCH_ASSERT): Use it.
13794
13795 * src/system.h (verify): New macro.
13796 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
13797 rather than assert.
13798 * src/tables.c (tables_generate): Likewise.
13799
13800 * src/struniq.c (struniq_assert): Now returns void, and aborts
13801 if the assertion is false.
13802 (struniq_assert_p): Remove.
13803 * src/struniq.h: Likewise.
13804
13805 2002-11-18 Paul Eggert <eggert@twinsun.com>
13806
13807 * data/glr.c (yygetLRActions): Replace `yyindex' with
13808 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
13809 This fixes the regression with Sun ONE Studio 7 cc that I reported in
13810 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
13811
13812 2002-11-18 Akim Demaille <akim@epita.fr>
13813
13814 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
13815 space.
13816 From Tim Van Holder.
13817
13818 2002-11-17 Paul Eggert <eggert@twinsun.com>
13819
13820 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
13821 to "SyntaxError" for consistency with my 2002-11-15 change.
13822
13823 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
13824 not define to {}, since this breaks the common use of `YYDPRINTF
13825 ((...));' if a single statement is desired (e.g. before `else').
13826 Work around GCC warnings by surrounding corresponding calls with
13827 {} if needed.
13828 (yyhasResolvedValue): Remove unused function.
13829 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
13830 loop body.
13831 (yyreportSyntaxError): Renamed from yyreportParseError.
13832 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
13833 All uses changed.
13834 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
13835 extern when possible. Remove unused initializations.
13836
13837 2002-11-16 Akim Demaille <akim@epita.fr>
13838
13839 Augment the similarity between GLR and LALR traces.
13840
13841 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
13842 (YY_REDUCE_PRINT): New.
13843 (yyparse): Use them.
13844 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
13845 YYDPRINT here.
13846 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
13847 state reached after the reduction/recovery, since...
13848 (yyparse, yyprocessOneStack): Report the state we are entering in.
13849
13850 2002-11-16 Akim Demaille <akim@epita.fr>
13851
13852 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
13853 Add support for --trace=skeleton.
13854 * src/scan-skel.l: %option debug.
13855 Scan strings of non-@ or \n instead of character by character.
13856 (scan_skel): Handle trace_skeleton.
13857 (QPUTS): New.
13858 (@output_parser_name@, @output_header_name@): ``Restore'' their
13859 support (used to be M4 macros).
13860 * data/yacc.c: Quote larger chunks, a la glr.c.
13861 * data/lalr1.cc: Likewise.
13862 The header guards are no longer available, so use some other
13863 string than `YYLSP_NEEDED'.
13864
13865 2002-11-16 Akim Demaille <akim@epita.fr>
13866
13867 Make the ``Printers and Destructors'' test more verbose, taking
13868 `yacc.c''s behavior as (possibly wrong) reference.
13869
13870 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
13871 instead of fprint on stdout.
13872 Set and report the last_line of the symbols.
13873 Consistently display values and locations.
13874
13875 2002-11-16 Paul Eggert <eggert@twinsun.com>
13876
13877 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
13878
13879 2002-11-15 Paul Eggert <eggert@twinsun.com>
13880
13881 * tests/actions.at (Actions after errors): New test case.
13882
13883 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
13884 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
13885 tests/action.at, tests/calc.at, tests/conflicts.at,
13886 tests/cxx-type.at, tests/regression.at:
13887 "parse error" -> "syntax error" for POSIX compatibility.
13888 "parsing stack overflow..." -> "parser stack overflow" so
13889 that code matches Bison documentation.
13890
13891 2002-11-15 Akim Demaille <akim@epita.fr>
13892
13893 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
13894 take two BRACED_CODE, not two string_content.
13895 Free the scanner's obstack when we are done.
13896 (code_content): New.
13897 * tests/calc.at: Adjust.
13898 * doc/bison.texinfo: Adjust.
13899 Also, make sure to include the `,' for these declarations.
13900
13901 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
13902
13903 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
13904 definition; avoids potential autoreconf problems.
13905
13906 2002-11-15 Akim Demaille <akim@epita.fr>
13907
13908 Always check the value returned by yyparse.
13909
13910 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
13911 returned by yyparse.
13912 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
13913 Adjust calls.
13914 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
13915 returned by yyparse.
13916
13917 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13918
13919 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
13920 on input.at test.
13921
13922 2002-11-14 Paul Eggert <eggert@twinsun.com>
13923
13924 * src/output.c (output_skeleton): Call xfopen instead of
13925 duplicating xfopen's body.
13926
13927 Fix bugs reported by Nelson H. F. Beebe in
13928 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
13929
13930 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
13931 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
13932 Group compiler. Instead, use "$CC -E bar.c". Include the .h
13933 file twice in the grammar, as an extra check.
13934
13935 * tests/input.at (Torturing the Scanner): Surround the
13936 backslash-newline tests with "#if 0", to make it less likely that
13937 we'll run into compiler bugs. Bring back solitary \ inside
13938 comment, but add a closing comment to work around HP C bug. Don't
13939 test backslash-newline in C character constant.
13940
13941 2002-11-14 Akim Demaille <akim@epita.fr>
13942
13943 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
13944 status of the compiler.
13945 Calling `exit 1' is no longer needed.
13946 Reported by Nelson H. F. Beebe.
13947
13948 2002-11-14 Akim Demaille <akim@epita.fr>
13949
13950 * tests/atlocal.in (CPPFLAGS): We have config.h.
13951 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
13952 New.
13953 * tests/actions.at, tests/calc.at, tests/conflicts.at,
13954 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
13955 * tests/regression.at, tests/torture.at: Use them for all the
13956 grammars that are to be compiled.
13957 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
13958 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
13959 * doc/bison.texinfo (GLR Parsers): Document `inline'.
13960
13961 2002-11-14 Akim Demaille <akim@epita.fr>
13962
13963 * doc/bison.texinfo: Various formatting changes (alignments in
13964 samples, additional @group/@end group, GCS in samples.
13965 Use @deffn instead of simple @table to define the directives,
13966 macros, variables etc.
13967
13968 2002-11-13 Paul Eggert <eggert@twinsun.com>
13969
13970 Fix some bugs reported by Albert Chin-A-Young in
13971 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
13972
13973 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
13974 -o c"; the HP C compiler chatters during compilation.
13975 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
13976 * tests/headers.at (export YYLTYPE): Likewise.
13977
13978 * tests/input.at (Torturing the Scanner): Remove lines containing
13979 solitary backslashes, as they tickle a bug in the HP C compiler.
13980
13981 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
13982 comments, since they're not portable. Use GNU coding style.
13983
13984 2002-11-13 Akim Demaille <akim@epita.fr>
13985
13986 * data/yacc.c: Leave bigger chunks of quoted text.
13987 (YYDSYMPRINTF): New.
13988 Use it to report symbol activities.
13989 * data/glr.c (YYDSYMPRINTF): New.
13990 Use it.
13991
13992 2002-11-12 Paul Eggert <eggert@twinsun.com>
13993
13994 Version 1.75b.
13995
13996 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
13997 (yyglrReduce): Return yyok, not 0.
13998 This should avoid the enumerated-type warnings reported
13999 by Nelson H. F. Beebe in
14000 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
14001
14002 * lib/bbitset.h (BITSET_INLINE): Remove.
14003 * lib/bitset.h [! BITSET_INLINE]: Remove.
14004 (bitset_set, bitset_reset, bitset_test): Rename local vars
14005 to avoid shadowing warnings by GCC.
14006
14007 * data/glr.c (inline): Remove #define. It's the user's
14008 responsibility to #define it away, just like 'const'.
14009 This fixes one of the bugs reported by Nelson H. F. Beebe in
14010 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
14011
14012 * Makefile.maint (po-check): Scan .l and .y files instead of the
14013 .c and the .h files that they generate. This fixes the bug
14014 reported by Tim Van Holder in:
14015 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
14016 Look for N_ as well as for _. Try to avoid matching #define for
14017 N_ and _.
14018 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
14019 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
14020 * src/scan-gram.l: Revamp regular expressions so that " and '
14021 do not confuse xgettext.
14022
14023 * src/struniq.h (struniq_new): Do not declare the return type
14024 to be 'const'; this violates the C standard.
14025 * src/struniq.c (struniq_new): Likewise.
14026
14027 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
14028
14029 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
14030 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
14031 linker.
14032
14033 2002-11-12 Akim Demaille <akim@epita.fr>
14034
14035 * Makefile.maint: Sync with Autoconf:
14036 (local_updates): New.
14037
14038 2002-11-12 Akim Demaille <akim@epita.fr>
14039
14040 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
14041
14042 2002-11-12 Akim Demaille <akim@epita.fr>
14043
14044 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
14045 locations.
14046
14047 2002-11-12 Akim Demaille <akim@epita.fr>
14048
14049 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
14050 not yyvalue.
14051
14052 2002-11-12 Akim Demaille <akim@epita.fr>
14053
14054 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
14055 Use it to test the GLR parser.
14056
14057 2002-11-12 Akim Demaille <akim@epita.fr>
14058
14059 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
14060 defines it.
14061 * data/glr.c (yystos): New.
14062 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
14063 (YYDSYMPRINT): New.
14064 (yyval): Don't define it, it is handled via M4.
14065 (yyrecoverParseError): Free verbosely the discarded symbols.
14066 * data/yacc.c (yysymprint): Remove, rather...
14067 (b4_yysymprint_generate): invoke.
14068 * data/c.m4 (b4_yysymprint_generate): New.
14069 Accept pointers as arguments, as opposed to the version from
14070 yacc.c.
14071 (b4_yydestruct_generate): Likewise.
14072 * tests/cations.at (Printers and Destructors): Use Bison directives
14073 instead of CPP macros.
14074 Don't rely on internal details.
14075
14076 2002-11-12 Akim Demaille <akim@epita.fr>
14077
14078 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
14079 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
14080 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
14081 it against YYEMPTY and so forth), work on yytoken (i.e., set
14082 it to YYEMPTY etc.).
14083 (yydestruct): Replace with a b4_yydestruct_generate invocation.
14084 (b4_symbol_actions): Remove.
14085 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
14086 for 0, end-of-input.
14087
14088 2002-11-12 Akim Demaille <akim@epita.fr>
14089
14090 * doc/bison.texinfo (Destructor Decl): New.
14091
14092 2002-11-12 Akim Demaille <akim@epita.fr>
14093
14094 * src/tables.c (tables_generate): Use free for pointers that
14095 cannot be NULL, not XFREE.
14096 (pack_vector): Use assert, not fatal, for bound violations.
14097 * src/state.c (state_new): Likewise.
14098 * src/reader.c (reader): Likewise.
14099 * src/lalr.c (set_goto_map): Likewise.
14100 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
14101 the file name.
14102
14103 2002-11-12 Akim Demaille <akim@epita.fr>
14104
14105 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
14106 Restore.
14107 * src/scan-gram.l (last_string): Is global to the file, not to
14108 yylex.
14109 * src/parse-gram.y (input): Don't append the epilogue here,
14110 (epilogue.opt): do it here, and free the scanner's obstack.
14111 * src/reader.c (epilogue_set): Rename as...
14112 (epilogue_augment): this.
14113 * data/c.m4 (b4_epilogue): Defaults to empty.
14114
14115 2002-11-12 Akim Demaille <akim@epita.fr>
14116
14117 * src/getargs.c (long_options): Remove duplicates.
14118 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
14119 Remove.
14120 * doc/bison.rnh: Remove.
14121 * doc/bison.texinfo (VMS Invocation): Remove.
14122
14123 2002-11-12 Akim Demaille <akim@epita.fr>
14124
14125 * src/struniq.h, src/struniq.c (struniq_t): Is const.
14126 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
14127
14128 Use struniq for symbols.
14129
14130 * src/symtab.h (symbol_t): The tag member is a struniq.
14131 (symbol_type_set): Adjust.
14132 * src/symtab.c (symbol_new): Takes a struniq.
14133 (symbol_free): Don't free the tag member.
14134 (hash_compare_symbol_t, hash_symbol_t): Rename as...
14135 (hash_compare_symbol, hash_symbol): these.
14136 Use the fact that tags as struniqs.
14137 (symbol_get): Use struniq_new.
14138 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
14139 Returns a strniq.
14140 * src/reader.h (merger_list, grammar_currentmerge_set): The name
14141 and type members are struniqs.
14142 * src/reader.c (get_merge_function)
14143 (grammar_current_rule_merge_set): Adjust.
14144 (TYPE, current_type): Are struniq.
14145
14146 Use struniq for file names.
14147
14148 * src/files.h, src/files.c (infile): Split into...
14149 (grammar_file, current_file): these.
14150 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
14151 * src/reduce.c (reduce_print): Likewise.
14152 * src/getargs.c (getargs): Likewise.
14153 * src/complain.h, src/complain.c: Likewise.
14154 * src/main.c (main): Call struniqs_new early enough to use it for
14155 file names.
14156 Don't free the input file name.
14157
14158 2002-11-12 Akim Demaille <akim@epita.fr>
14159
14160 * src/symtab.c (symbol_free): Remove dead deactivated code:
14161 type_name are properly removed.
14162 Don't use XFREE to free items that cannot be NULL.
14163 * src/struniq.h, src/struniq.c: New.
14164 * src/main.c (main): Initialize/free struniqs.
14165 * src/parse-gram.y (%union): Add astruniq member.
14166 (yyprint): Adjust.
14167 * src/scan-gram.l (<{tag}>): Return a struniq.
14168 Free the obstack bit that used to store it.
14169 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
14170
14171 2002-11-11 Paul Eggert <eggert@twinsun.com>
14172
14173 Revamp to fix many (but not all) of the C- and M4-related quoting
14174 problems. Among other things, this fixes the Bison bug reported
14175 by Jan Hubicka when processing the Bash grammar; see:
14176 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
14177
14178 Use new @ escapes consistently. Represent brackets with @{ and @}
14179 rather than @<:@ and @:>@, since this works a bit better with dumb
14180 editors like vi. Represent @ with @@, since @ is now consistently
14181 an escape. Use @oline@ and @ofile@ rather than __oline__ and
14182 __ofile__, to avoid unexpected expansions. Similarly, use @output
14183 rather than #output.
14184
14185 * data/c.m4 (b4_copyright): Omit file name from comment, since
14186 the file name could contain "*/".
14187 (b4_synclines_flag): Don't quote the 2nd argument; it should already
14188 be quoted. All uses changed.
14189
14190 * data/glr.c: Use new @ escapes consistently.
14191 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
14192 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
14193 Remove, since they couldn't handle arbitrary characters in file
14194 names.
14195 * data/lalr1.cc: Likewise.
14196 * data/yacc.c: Likewise.
14197
14198 * src/files.c (output_infix): Remove; all uses removed.
14199 * src/files.h: Likewise.
14200
14201 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
14202 mishandled funny characters in file names, and anyway it isn't
14203 needed any more.
14204 * data/yacc.c: Likewise.
14205 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
14206
14207 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
14208 * data/yacc.c: Likewise.
14209
14210 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
14211 strings now.
14212 (muscle_init): Quote filename as a C string.
14213 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
14214 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
14215 * src/output.c (escaped_file_name_output): New function.
14216 (prepare_symbols): Quote tokens for M4.
14217 (prepare): Don't insert output_infix, output_prefix,
14218 output_parser_name, output_header_name; this is now down by scan-skel.
14219 Insert skeleton as a C string.
14220
14221 * src/output.c (user_actions_output, symbol_destructors_output,
14222 symbol_printers_output): Quote filenames for C and M4.
14223 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14224
14225 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
14226 escapes other than \\ and \'; this simplifies the code.
14227 (<SC_STRING>): Likewise, for \\ and \".
14228 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
14229 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
14230 Use new escapes @{ and @} for [ and ].
14231
14232 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
14233 them with auto vars.
14234 Switch to new escape scheme, where @ is the escape character uniformly.
14235 Abort if a stray escape character is found. Avoid unbounded input
14236 buffer when parsing non-escaped text.
14237
14238 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
14239 __oline__, #output, $@, and @{ do not have unintended meanings.
14240
14241 2002-11-09 Paul Eggert <eggert@twinsun.com>
14242
14243 Fix the test failure due to GCC warnings described in
14244 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
14245 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
14246 evaluate to 0 if it's impossible for NINF to be in the respective
14247 table.
14248 (yygetLRActions, yyrecoverParseError): Use them.
14249
14250 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
14251 counted in the token inserted at end of file. Now takes
14252 location_t *, not location_t, so that the location can be
14253 adjusted. All uses changed.
14254
14255 * tests/regression.at (Invalid inputs): Adjust wording in
14256 diagnostic to match the new behavior.
14257
14258 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
14259 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
14260 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
14261 abort ();'. This reduces the runtime of the "Many lookaheads"
14262 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
14263 GCC 3.2.
14264
14265 2002-11-07 Paul Eggert <eggert@twinsun.com>
14266
14267 * src/parse-gram.y (CHARACTER): Remove unused token.
14268 All uses removed.
14269
14270 * src/scan-gram.l: Remove stack option. We no longer use the
14271 stack, since the stack was never deeper than 1; instead, use the
14272 new auto var c_context to record the stacked value.
14273
14274 Remove nounput option. At an unexpected end of file, we now unput
14275 the minimal input necessary to end cleanly; this simplifies the
14276 code.
14277
14278 Avoid unbounded token sizes where this is easy.
14279
14280 (unexpected_end_of_file): New function.
14281 Use it to systematize the error message on unexpected EOF.
14282 (last-string): Now auto, not static.
14283 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
14284 (scanner_last_string_free): Remove; not used.
14285 (percent_percent_count): Move decl to just before use.
14286 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
14287 not the (never otherwised-used) CHARACTER.
14288
14289 2002-11-07 Akim Demaille <akim@epita.fr>
14290
14291 Let yyerror always receive the msg as last argument, so that
14292 yyerror can be variadic.
14293
14294 * data/yacc.c (b4_yyerror_args): New.
14295 Use it when calling yyerror.
14296 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
14297 Use it when calling yyerror.
14298 * doc/bison.texinfo (Error Reporting): Adjust.
14299 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
14300 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
14301
14302 2002-11-06 Akim Demaille <akim@epita.fr>
14303
14304 #line should have quoted strings.
14305 Ideally, this should be done by m4_quotearg.
14306
14307 * src/scan-skel.l: Include quotearg.h.
14308 Quote __ofile__.
14309 * src/output.c (symbol_printers_output)
14310 (symbol_destructors_output): Quote the file name.
14311
14312 2002-11-06 Akim Demaille <akim@epita.fr>
14313
14314 * tests/regression.at (Invalid inputs): Adjust to the recent
14315 messages.
14316
14317 2002-11-06 Akim Demaille <akim@epita.fr>
14318
14319 Restore --no-lines.
14320 Reported by Jim Kent.
14321
14322 * data/c.m4 (b4_syncline): New.
14323 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
14324 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
14325 * src/output.c (user_actions_output): Likewise.
14326 (prepare): Define 'b4_synclines_flag'.
14327 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
14328
14329 2002-11-06 Akim Demaille <akim@epita.fr>
14330
14331 * src/main.c (main): Free `infile'.
14332 * src/scan-gram.l (handle_syncline): New.
14333 Recognize `#line'.
14334 * src/output.c (user_actions_output, symbol_destructors_output)
14335 (symbol_printers_output): Use the location's file name, not
14336 infile.
14337 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14338
14339 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14340
14341 * src/tables.c (matching_state): Don't allow states to match if
14342 either has GLR conflict entries.
14343
14344 2002-11-05 Paul Eggert <eggert@twinsun.com>
14345
14346 * src/scan-gram.l: Use more accurate diagnostics, e.g.
14347 "integer out of range" rather than "invalid value".
14348 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
14349 accordingly.
14350
14351 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
14352 Also, remove one static variable in the scanner.
14353
14354 * src/scan-gram.l (braces_level): Now auto, not static.
14355 Initialize to zero if the compiler is being picky.
14356 (INITIAL): Clear braces_level instead of incrementing it.
14357 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
14358 as POSIX 1003.1-2001 requires.
14359 * src/system.h (IF_LINT): New macro, taken from coreutils.
14360 * configure.ac: Define "lint" if --enable-gcc-warnings.
14361
14362 2002-11-05 Akim Demaille <akim@epita.fr>
14363
14364 * src/scan-gram.l: When it starts with `%', complain about the
14365 whole directive, not just that `invalid character: %'.
14366
14367 2002-11-04 Akim Demaille <akim@epita.fr>
14368
14369 * Makefile.maint: Update from Autoconf.
14370 (update, cvs-update, po-update, do-po-update): New.
14371
14372 2002-11-04 Akim Demaille <akim@epita.fr>
14373
14374 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
14375 and yyerror.
14376 Have yyerror `use' its arguments.
14377 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
14378 returns true when location & yacc & pure & parse-param.
14379 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
14380
14381 2002-11-04 Akim Demaille <akim@epita.fr>
14382
14383 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
14384 clashes.
14385 * src/scan-gram.l: Use [\'] instead of ['] to pacify
14386 font-lock-mode.
14387 Use complain_at.
14388 Use quote, not quote_n since LOCATION_PRINT no longer uses the
14389 slot 0.
14390
14391 2002-11-03 Paul Eggert <eggert@twinsun.com>
14392
14393 * src/reader.c (get_merge_function, grammar_current_rule_check):
14394 Use consistent diagnostics for reporting type name clashes.
14395 Quote the types with <>, for consistency with Yacc.
14396 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
14397
14398 2002-11-03 Akim Demaille <akim@epita.fr>
14399
14400 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
14401 New.
14402 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
14403 (b4_parse_param): Remove.
14404 Use b4_identification.
14405 Propagate b4_pure_args where needed to pass them to yyerror.
14406 * data/glr.m4 (b4_parse_param): Remove.
14407 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
14408 (b4_lpure_formals): New.
14409 Use b4_identification.
14410 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
14411 b4_user_formals and b4_user_args.
14412 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
14413 (yyreportAmbiguity): When using a pure parser, also need
14414 the location, and the parse-params.
14415 Adjust callers.
14416 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
14417 When using a pure parser, also need the parse-params.
14418 Adjust callers.
14419 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
14420 (%pure-parser + %parse-param) LALR and GLR parsers.
14421 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
14422 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
14423 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
14424 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
14425 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
14426 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
14427 * doc/bison.texinfo: Untabify the whole file.
14428 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
14429 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
14430 (Error Reporting): Adjust to these new directives.
14431 Document %error-verbose, deprecate YYERROR_VERBOSE.
14432
14433 2002-11-03 Akim Demaille <akim@epita.fr>
14434
14435 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
14436 AT_CHECK_CALC_GLR invocations to use % directives, instead of
14437 command line options.
14438 * tests/cxx-type.at: Formatting changes.
14439
14440 2002-11-03 Paul Eggert <eggert@twinsun.com>
14441
14442 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
14443 to count columns correctly, and to check for invalid inputs.
14444
14445 Use mbsnwidth to count columns correctly. Account for tabs, too.
14446 Include mbswidth.h.
14447 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
14448 (extend_location): New function.
14449 (YY_LINES): Remove.
14450
14451 Handle CRLF in C code rather than in Lex code.
14452 (YY_INPUT): New macro.
14453 (no_cr_read): New function.
14454
14455 Scan UCNs, even though we don't fully handle them yet.
14456 (convert_ucn_to_byte): New function.
14457
14458 Handle backslash-newline correctly in C code.
14459 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
14460 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
14461 all uses changed.
14462 (tag, splice): New EREs. Do not allow NUL or newline in tags.
14463 Use {splice} wherever C allows backslash-newline.
14464 YY_STEP after space, newline, vertical-tab.
14465 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
14466
14467 (letter, id): Don't assume ASCII; e.g., spell out a-z.
14468
14469 ({int}, handle_action_dollar, handle_action_at): Check for integer
14470 overflow.
14471
14472 (YY_STEP): Omit trailing semicolon, so that it's more like C.
14473
14474 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
14475 as well as \000. Check for UCHAR_MAX, not 255.
14476 Allow \x with an arbitrary positive number of digits, as in C.
14477 Check for overflow here.
14478 Allow \? and UCNs, for compatibility with C.
14479
14480 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
14481 with quote slot used by complain_at.
14482
14483 * tests/input.at: Add tests for backslash-newline, m4 quotes
14484 in symbols, long literals, and funny escapes in strings.
14485
14486 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
14487 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
14488 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
14489 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
14490 * m4/mbswidth.m4: New file, from GNU coreutils.
14491
14492 * doc/bison.texinfo (Grammar Outline): Document // comments.
14493 (Symbols): Document that trigraphs have no special meaning in Bison,
14494 nor is backslash-newline allowed.
14495 (Actions): Document that trigraphs have no special meaning.
14496
14497 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
14498 no longer used.
14499
14500 2002-11-02 Paul Eggert <eggert@twinsun.com>
14501
14502 * src/reader.c: Don't include quote.h; not needed.
14503 (get_merge_function): Reword warning to be consistent with
14504 type clash diagnostic in grammar_current_rule_check.
14505
14506 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
14507 bug in trigraph handling.
14508
14509 * src/output.c (prepare_symbols): When printing token names,
14510 escape "[" as "@<:@" and likewise for "]".
14511
14512 * src/system.h (errno): Remove declaration, as we are now
14513 assuming C89 or better, and C89 guarantees errno.
14514
14515 2002-10-30 Paul Eggert <eggert@twinsun.com>
14516
14517 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
14518 Check for close failures.
14519 * src/files.h (xfclose): Return void, not int, since it always
14520 returned zero.
14521 * src/files.c (xfclose): Likewise. Report I/O error if ferror
14522 indicates one.
14523 * src/output.c (output_skeleton): Use xfclose rather than fclose
14524 and ferror. xfclose now checks ferror.
14525
14526 * data/glr.c (YYLEFTMOST_STATE): Remove.
14527 (yyreportTree): Use a stack-based leftmost state. This avoids
14528 our continuing battles with bogus warnings about initializers.
14529
14530 2002-10-30 Akim Demaille <akim@epita.fr>
14531
14532 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
14533 #if.
14534
14535 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14536
14537 * tests/glr-regr1.at: New test for reported regressions.
14538 * tests/testsuite.at: Add glr-regr1.at test.
14539 * tests/Makefile.am: Add glr-regr1.at test.
14540
14541 2002-10-24 Paul Eggert <eggert@twinsun.com>
14542
14543 Version 1.75a.
14544
14545 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
14546 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
14547 we use malloc. Don't assume 'A' through 'Z' are contiguous.
14548 Don't assume strdup exists; POSIX says its an XSI extension.
14549 Check for buffer overflow on input.
14550
14551 2002-10-24 Akim Demaille <akim@epita.fr>
14552
14553 * src/output.c (output_skeleton): Don't disable M4sugar comments
14554 too soon: it results in comments being expanded.
14555 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
14556 first output.
14557
14558 2002-10-24 Akim Demaille <akim@epita.fr>
14559
14560 * data/yacc.c (m4_int_type): New.
14561 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
14562 char' as only yacc.c wants K&R portability.
14563 * data/glr.c (yysigned_char): Remove.
14564 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
14565 Reported by Quoc Peyrot.
14566
14567 2002-10-23 Paul Eggert <eggert@twinsun.com>
14568
14569 * src/main.c (main): With --trace=time, report times even if a
14570 non-fatal error occurs. Formerly, the times were reported in some
14571 such cases but not in others.
14572 * src/reader.c (reader): Just return if a complaint has been issued,
14573 instead of exiting, so that 'main' can report times.
14574
14575 2002-10-22 Akim Demaille <akim@epita.fr>
14576
14577 * src/system.h: Include sys/types.
14578 Reported by Bert Deknuydt.
14579
14580 2002-10-23 Paul Eggert <eggert@twinsun.com>
14581
14582 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
14583 Suggested by Art Haas.
14584
14585 2002-10-22 Paul Eggert <eggert@twinsun.com>
14586
14587 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
14588 decl; not needed any more.
14589 * src/main.c (main): Use return to exit, undoing yesterday's change.
14590 The last OS that we could find where this wouldn't work is
14591 SunOS 3.5, and that's too old to worry about now.
14592
14593 * data/glr.c (struct yyltype): Define members even when not
14594 doing locations. This is more consistent with yacc.c, and it
14595 works around the following bug reports:
14596 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
14597 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
14598
14599 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
14600 @acronym consistently. Standardize on "Yacc" instead of "YACC",
14601 "Algol" instead of "ALGOL". Give a bit more history about BNF.
14602
14603 2002-10-22 Akim Demaille <akim@epita.fr>
14604
14605 * data/README: New.
14606
14607 2002-10-21 Paul Eggert <eggert@twinsun.com>
14608
14609 Be consistent about 'bool'; the old code used an enum in one
14610 module and an int in another, and this violates the C standard.
14611 * m4/stdbool.m4: New file, from coreutils 4.5.3.
14612 * configure.ac (AC_HEADER_STDBOOL): Add.
14613 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
14614 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
14615 * src/symtab.c (hash_compare_symbol_t): Likewise.
14616 * src/system.h (bool, false, true): Use a definition consistent
14617 with ../lib/hash.c. All uses changed.
14618
14619 * src/complain.c (warning_issued): Renamed from warn_message_count,
14620 so that we needn't worry about integer overflow (!).
14621 Now of type bool. All uses changed.
14622 (complaint_issued): Renamed from complain_message_count; likewise.
14623
14624 * src/main.c (main): Use exit to exit with failure.
14625
14626 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
14627 rather than 1 and 0.
14628 * src/main.c (main): Likewise.
14629 * src/getargs.c (getargs): Likewise.
14630 * src/reader.c (reader): Likewise.
14631
14632 * src/getarg.c (getargs): Remove duplicate code for
14633 "Try `bison --help'".
14634
14635 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
14636 What was that "2" for?
14637
14638 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
14639 * src/getargs.c (usage): Likewise.
14640
14641 * src/getargs.c (getargs): When there are too few operands, report
14642 the last one. When there are too many, report the first extra
14643 one. This is how diffutils does it.
14644
14645 2002-10-20 Paul Eggert <eggert@twinsun.com>
14646
14647 Remove K&R vestiges.
14648 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
14649 * src/complain.c (VA_START): Remove. Assume prototypes.
14650 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
14651 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
14652 fatal): Assume prototypes.
14653 * src/complain.h: Assume prototypes.
14654 * src/system.h (PARAMS): Remove.
14655 Include <limits.h> unconditionally, since it's guaranteeed even
14656 for a freestanding C89 compiler.
14657 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
14658 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
14659
14660 2002-10-20 Akim Demaille <akim@epita.fr>
14661
14662 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
14663 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
14664 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
14665 (yyresolveStates, yyresolveAction, yyresolveStack)
14666 (yyprocessOneStack): Use them.
14667 (yy_reduce_print): New.
14668 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
14669
14670 2002-10-20 Akim Demaille <akim@epita.fr>
14671
14672 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
14673 arguments and output `void'.
14674 (b4_c_function): Rename as...
14675 (b4_c_function_def): this.
14676 (b4_c_function_decl, b4_c_ansi_function_def)
14677 (b4_c_ansi_function_decl): New.
14678 Change the interpretation of the arguments: before `int, foo', now
14679 `int foo, foo'.
14680 * data/yacc.c (yyparse): Prototype and define thanks to these.
14681 Adjust b4_c_function_def uses.
14682 * data/glr.c (yyparse): Likewise, but ANSI only.
14683
14684 2002-10-20 Akim Demaille <akim@epita.fr>
14685
14686 * src/output.c (prepare): Move the definition of `tokens_number',
14687 `nterms_number', `undef_token_number', `user_token_number_max'
14688 to...
14689 (prepare_tokens): Here.
14690 (prepare_tokens): Rename as...
14691 (prepare_symbols): this.
14692 (prepare): Move the definition of `rules_number' to...
14693 (prepare_rules): here.
14694 (prepare): Move the definition of `last', `final_state_number',
14695 `states_number' to...
14696 (prepare_states): here.
14697 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
14698
14699 2002-10-20 Akim Demaille <akim@epita.fr>
14700
14701 * src/tables.h, src/tables.c, src/output.c: Comment changes.
14702
14703 2002-10-20 Akim Demaille <akim@epita.fr>
14704
14705 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
14706 * data/c.m4: here.
14707
14708 2002-10-20 Akim Demaille <akim@epita.fr>
14709
14710 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
14711 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
14712 `pair'.
14713 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
14714 `name' to...
14715 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
14716 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
14717 These.
14718
14719 2002-10-19 Paul Eggert <eggert@twinsun.com>
14720
14721 Do not create a temporary file, as that involves security and
14722 cleanup headaches. Instead, use a pair of pipes.
14723 Derived from a suggestion by Florian Krohm.
14724 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
14725 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
14726 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
14727 (BISON_PREREQ_SUBPIPE): Add.
14728 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
14729 Add subpipe.h, subpipe.c.
14730 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
14731 * po/POTFILES.in: Add lib/subpipe.c.
14732 * src/output.c: Include "subpipe.h".
14733 (m4_invoke): Remove decl.
14734 (scan_skel): New decl.
14735 (output_skeleton): Use pipe rather than temporary file for m4 input.
14736 Check that m4sugar.m4 is readable, to avoid deadlock.
14737 Check for pipe I/O error.
14738 * src/scan-skel.l (readpipe): Remove decl.
14739 (scan_skel): New function, to be used in place of m4_invoke.
14740 Read from stream rather than file.
14741
14742 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
14743 float, as this generates a warning on Solaris 8 + GCC 3.2 with
14744 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
14745 this generates a more-accurate value anyway.
14746
14747 * lib/timevar.c (timervar_accumulate): Rename locals to
14748 avoid confusion with similarly-named more-global.
14749 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
14750
14751 * src/output.c (prepare): Use xstrdup to convert char const *
14752 to char *, to avoid GCC warning.
14753
14754 2002-10-19 Akim Demaille <akim@epita.fr>
14755
14756 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
14757 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
14758 Use them to have `calc.y' ready for %pure-parser.
14759 * data/yacc.c (YYLEX): Pass a yylex return type to
14760 b4_c_function_call.
14761
14762 2002-10-19 Akim Demaille <akim@epita.fr>
14763
14764 Prototype support of %lex-param and %parse-param.
14765
14766 * src/parse-gram.y: Add the definition of the %lex-param and
14767 %parse-param tokens, plus their rules.
14768 Drop the `_' version of %glr-parser.
14769 Add the "," token.
14770 * src/scan-gram.l (INITIAL): Scan them.
14771 * src/muscle_tab.c: Comment changes.
14772 (muscle_insert, muscle_find): Rename `pair' as `probe'.
14773 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
14774 (muscle_entry_s): The `value' member is no longer const.
14775 Adjust all dependencies.
14776 * src/muscle_tab.c (muscle_init): Adjust: use
14777 MUSCLE_INSERT_STRING.
14778 Initialize the obstack earlier.
14779 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
14780 (muscle_pair_list_grow): New.
14781 * data/c.m4 (b4_c_function_call, b4_c_args): New.
14782 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
14783 * tests/calc.at: Use %locations, not --locations.
14784 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
14785
14786 2002-10-19 Akim Demaille <akim@epita.fr>
14787
14788 * src/getargs.c (usage): Take status as argument and exit
14789 accordingly.
14790 Report the traditional `Try ... --help' message when status != 0.
14791 (usage, version): Don't take a FILE * as arg, it is pointless.
14792 (getargs): When there is an incorrect number of arguments, make it
14793 an error, and report it GNUlically thanks to `usage ()'.
14794
14795 2002-10-18 Paul Eggert <eggert@twinsun.com>
14796
14797 * data/glr.c (yyreportParseError): Don't assume that sprintf
14798 yields the length of the printed string, as this is not true
14799 on SunOS 4.1.4. Reported by Peter Klein.
14800
14801 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
14802 * tests/conflicts.at (%nonassoc and eof): Likewise.
14803 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
14804
14805 2002-10-17 Akim Demaille <akim@epita.fr>
14806
14807 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
14808 * src/getargs.c (trace_types, trace_args): Adjust.
14809 * src/reader.c (grammar_current_rule_prec_set)
14810 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
14811 Standardize error messages.
14812 And s/@prec/%prec/!
14813 (reader): Use trace_flag to enable scanner/parser debugging,
14814 instead of an adhoc scheme.
14815 * src/scan-gram.l: Remove trailing debugging code.
14816
14817 2002-10-16 Paul Eggert <eggert@twinsun.com>
14818
14819 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
14820 MUSCLE_TAB_H.
14821
14822 * NEWS: Officially drop support for building Bison with K&R C,
14823 since it didn't work anyway and it's not worth worrying about.
14824 * Makefile.maint (wget_files): Remove ansi2knr.c.
14825 (ansi2knr.c-url_prefix): Remove.
14826 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
14827 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
14828 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
14829
14830 2002-10-15 Paul Eggert <eggert@twinsun.com>
14831
14832 Stop using the "enum_" trick for K&R-style function definitions;
14833 it confused me, and I was the author! Instead, assume that people
14834 who want to use K&R C compilers (when using these modules in GCC,
14835 perhaps?) will run ansi2knr.
14836
14837 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
14838 All uses of "enum_" changed to "enum ".
14839 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
14840 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
14841
14842 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
14843 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
14844 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
14845 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
14846 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
14847 abitset_not, abitset_ones, abitset_or, abitset_or_and,
14848 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
14849 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
14850 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
14851 Use function prototypes; this removes the need for declaring
14852 static functions simply to provide their prototypes.
14853 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
14854 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
14855 bitset_count_, bitset_create, bitset_dump, bitset_first,
14856 bitset_free, bitset_init, bitset_last, bitset_next,
14857 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
14858 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
14859 bitset_print, bitset_release_memory, bitset_toggle_,
14860 bitset_type_choose, bitset_type_get, bitset_type_name_get,
14861 debug_bitset): Likewise.
14862 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
14863 * lib/bitset_stats.c (bitset_log_histogram_print,
14864 bitset_percent_histogram_print, bitset_stats_and,
14865 bitset_stats_and_cmp, bitset_stats_and_or,
14866 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
14867 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
14868 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
14869 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
14870 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
14871 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
14872 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
14873 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
14874 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
14875 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
14876 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
14877 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
14878 bitset_stats_zero): Likewise.
14879 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
14880 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
14881 bitsetv_dump, debug_bitsetv): Likewise.
14882 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
14883 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
14884 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
14885 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
14886 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
14887 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
14888 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
14889 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
14890 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
14891 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
14892 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
14893 Likewise.
14894 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
14895 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
14896 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
14897 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
14898 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
14899 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
14900 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
14901 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
14902 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
14903 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
14904 lbitset_xor_cmp, lbitset_zero): Likewise.
14905
14906 2002-10-14 Akim Demaille <akim@epita.fr>
14907
14908 Version 1.75.
14909
14910 2002-10-14 Akim Demaille <akim@epita.fr>
14911
14912 * tests/Makefile.am (maintainer-check-posix): New.
14913
14914 2002-10-14 Akim Demaille <akim@epita.fr>
14915
14916 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
14917 member.
14918
14919 2002-10-14 Akim Demaille <akim@epita.fr>
14920
14921 * src/tables.c (table_ninf_remap): base -> tab.
14922 Reported by Matt Rosing.
14923
14924 2002-10-14 Paul Eggert <eggert@twinsun.com>
14925
14926 * tests/action.at, tests/calc.at, tests/conflicts.at,
14927 tests/cxx-type.at, tests/headers.at, tests/input.at,
14928 tests/regression.at, tests/synclines.at, tests/torture.at:
14929 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
14930 so that the tests still work even if POSIXLY_CORRECT is set.
14931 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
14932
14933 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
14934 for portability to K&R hosts. Fix typo: signed char is guaranteed
14935 only to 127, not to 128.
14936 * data/glr.c (yysigned_char): New type.
14937 * data/yacc.c (yysigned_char): Likewise.
14938 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
14939
14940 2002-10-13 Paul Eggert <eggert@twinsun.com>
14941
14942 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
14943 true due to limited range of data type" warning from GCC.
14944
14945 * data/c.m4 (b4_token_defines): Protect against double-inclusion
14946 by wrapping enum yytokentype's definition inside #ifndef
14947 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
14948
14949 2002-10-13 Akim Demaille <akim@epita.fr>
14950
14951 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
14952 Un yy- yyrhs to avoid the name clash with the global YYRHS.
14953
14954 2002-10-13 Akim Demaille <akim@epita.fr>
14955
14956 * Makefile.maint: Update from Autoconf 2.54.
14957 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
14958
14959 2002-10-13 Akim Demaille <akim@epita.fr>
14960
14961 * src/print.c (print_state): Separate the list of solved conflicts
14962 from the other items.
14963 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
14964
14965 2002-10-13 Akim Demaille <akim@epita.fr>
14966
14967 Let nondeterministic skeletons be usable with deterministic
14968 tables.
14969
14970 With the patch, GAWK compiled by GCC without -O2 passes its test
14971 suite using a GLR parser driven by LALR tables. It fails with -O2
14972 because `struct stat' gives two different answers on my machine:
14973 88 (definition of an auto var) and later 96 (memset on this var).
14974 Hence the stack is badly corrumpted. The headers inclusion is to
14975 blame: if I move the awk.h inclusion before GLR's system header
14976 inclusion, the two struct stat have the same size.
14977
14978 * src/tables.c (pack_table): Always create conflict_table.
14979 (token_actions): Always create conflict_list.
14980 * data/glr.c (YYFLAG): Remove, unused.
14981
14982 2002-10-13 Akim Demaille <akim@epita.fr>
14983
14984 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
14985 (O0FLAGS): New.
14986 (VALGRIND, GXX): New.
14987 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
14988 * tests/bison.in: Run $PREBISON a pre-command.
14989 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
14990 (maintainer-check-g++): New.
14991 * Makefile.am (maintainer-check): New.
14992
14993 2002-10-13 Akim Demaille <akim@epita.fr>
14994
14995 * data/glr.c: Formatting changes.
14996 Tweak some trace messages to match yacc.c's.
14997
14998 2002-10-13 Akim Demaille <akim@epita.fr>
14999
15000 GLR parsers sometimes raise parse errors instead of performing the
15001 default reduction.
15002 Reported by Charles-Henry de Boysson.
15003
15004 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
15005 check the length of the traces when %glr.
15006 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
15007 GLR's traces.
15008 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
15009 Test GLR parsers.
15010 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
15011 (yyltype): Remove the yy prefix from the member names.
15012 (yytable): Complete its comment.
15013 (yygetLRActions): Map error action number from YYTABLE from
15014 YYTABLE_NINF to 0.
15015 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
15016 (which was a bug: it should have been YYTABEL_NINF, and yet it was
15017 not satisfying as we could compare an YYACTION computed from
15018 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
15019 only value for error actions.
15020 (yyreportParseError): In verbose parse error messages, don't issue
15021 `error' in the list of expected tokens.
15022 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
15023 next action to perform to match glr.c's decoding.
15024 (yytable): Complete its comment.
15025
15026 2002-10-13 Paul Eggert <eggert@twinsun.com>
15027
15028 Fix problem reported by Henrik Grubbstroem in
15029 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
15030 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
15031 because the Bison parser reads the second action before reducing
15032 the first one.
15033 * src/scan-gram.l (rule_length): New static var.
15034 Use it to keep track of the rule length in the scanner, since
15035 we can't expect the parser to be in lock-step sync with the scanner.
15036 (handle_action_dollar, handle_action_at): Use this var.
15037 * tests/actions.at (Exotic Dollars): Test for the problem.
15038
15039 2002-10-12 Paul Eggert <eggert@twinsun.com>
15040
15041 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
15042 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
15043 Include <sys/time.h> when checking for clock_t and struct tms.
15044 Use same include order as source.
15045 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
15046 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
15047
15048 * lib/timevar.c: Update copyright date and clarify comments.
15049 (get_time) [IN_GCC]: Keep the GCC version for reference.
15050
15051 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
15052 GCC version as of today, then merge Bison's changes.
15053 Change "GCC" to "Bison" in copyright notice. timevar.def's
15054 author is Akim, so change that too.
15055
15056 * src/reader.c (grammar_current_rule_check):
15057 Don't worry about the default action if $$ is untyped.
15058 Prevents bogus warnings reported by Jim Gifford in
15059 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
15060
15061 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
15062 * data/glr.c, data/lalr1.cc, data/yacc.c:
15063 Output token definitions before the first part of user declarations.
15064 Fixes compatibility problem reported by Jim Gifford for kbd in
15065 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
15066
15067 2002-10-11 Paul Eggert <eggert@twinsun.com>
15068
15069 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
15070 (yyparse): here. This undoes some of the 2002-07-25 change.
15071 Compatibility problem reported by Ralf S. Engelschall with
15072 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
15073
15074 2002-10-11 Akim Demaille <akim@epita.fr>
15075
15076 * tests/regression.at Characters Escapes): New.
15077 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
15078 characters.
15079 Reported by Jan Nieuwenhuizen.
15080
15081 2002-10-11 Akim Demaille <akim@epita.fr>
15082
15083 * po/id.po: New.
15084
15085 2002-10-10 Paul Eggert <eggert@twinsun.com>
15086
15087 Portability fixes for bitsets; this also avoids several GCC
15088 warnings.
15089
15090 * lib/abitset.c: Include <stddef.h>, for offsetof.
15091 * lib/lbitset.c: Likewise.
15092
15093 * lib/abitset.c (abitset_bytes): Return a size that is aligned
15094 properly for vectors of objects. Do not assume that adding a
15095 header size to a multiple of a word size yields a value that is
15096 properly aligned for the whole union.
15097 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15098
15099 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
15100 unique names for structures.
15101 * lib/ebitset.c (ebitset_bytes): Likewise.
15102 * lib/lbitset.c (lbitset_bytes): Likewise.
15103
15104 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
15105 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
15106 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
15107 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
15108 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
15109 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
15110 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
15111 to improve the type-checking that GCC can do.
15112 * lib/bitset.c (bitset_op4_cmp): Likewise.
15113 * lib/bitset_stats.c (bitset_stats_count,
15114 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
15115 bitset_stats_copy, bitset_stats_disjoint_p,
15116 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
15117 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
15118 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
15119 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
15120 bitset_stats_and_or_cmp, bitset_stats_andn_or,
15121 bitset_stats_andn_or_cmp, bitset_stats_or_and,
15122 bitset_stats_or_and_cmp): Likewise.
15123 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
15124 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
15125 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
15126 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
15127
15128 * lib/abitset.h: Include bitset.h, not bbitset.h.
15129 * lib/ebitset.h: Likewise.
15130 * lib/lbitset.h: Likewise.
15131
15132 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
15133 All instances of parameters of type enum bitset_opts are now of
15134 type enum_bitset_opts, to conform to the C Standard, and similarly
15135 for enum_bitset_type.
15136 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15137 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
15138
15139 Do not use "struct bitset_struct" to mean different things in
15140 different modules. Not only is this confusing, it violates
15141 the C Standard, which requires that structure types in different
15142 modules must be compatible if one is to be passed to the other.
15143 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
15144 All instances of "struct bitset_struct *" replaced with "bitset".
15145 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
15146 (union bitset_union, struct abitset_struct, struct ebitset_struct,
15147 struct lbitset_struct, struct bitset_stats_struct): New types.
15148 All uses of struct bitset_struct changed to union bitset_union,
15149 etc.
15150 * lib/abitset.c (struct abitset_struct, abitset,
15151 struct bitset_struct): Remove.
15152 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
15153 struct bitset_struct): Remove.
15154 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
15155 bitset_struct): Remove.
15156 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
15157 Likewise.
15158
15159 Do not call a function of type T using a call that assumes the
15160 function is of a different type U. Standard C requires that a
15161 function must be called with a type that is compatible with its
15162 definition.
15163 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15164 New decls.
15165 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15166 New functions.
15167 * lib/ebitset.c (PFV): Remove.
15168 * lib/lbitset.c (PFV): Likewise.
15169 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
15170 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
15171 decls.
15172 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
15173 (ebitset_vtable): Use them.
15174 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
15175 lbitset_xor): New functions.
15176 (lbitset_vtable): Use them.
15177
15178 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
15179 Declare.
15180
15181 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
15182 GCC warning.
15183 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
15184 Use offsetof, for simplicity.
15185
15186 2002-10-06 Paul Eggert <eggert@twinsun.com>
15187
15188 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
15189 the same width as int. This reapplies a hunk of the 2002-08-12 patch
15190 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
15191 which was inadvertently undone by the 2002-09-30 patch.
15192 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
15193 the same width as int.
15194
15195 2002-10-04 Paul Eggert <eggert@twinsun.com>
15196
15197 Version 1.50.
15198
15199 * configure.ac (AC_INIT), NEWS: Increment version number.
15200
15201 * doc/bison.texinfo: Minor spelling, grammar, and white space
15202 fixes.
15203 (Symbols): Mention that any negative value returned from yylex
15204 signifies end-of-input. Warn about negative chars. Mention
15205 the portable Standard C character set.
15206
15207 The GNU coding standard says CFLAGS and YFLAGS are reserved
15208 for the installer to set.
15209 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
15210 * src/Makefile.am (AM_CFLAGS): Likewise.
15211 (AM_YFLAGS): Renamed from YFLAGS.
15212
15213 Fix some MAX and MIN problems.
15214 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
15215 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
15216 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
15217 * src/reader.c (reader): Use it.
15218
15219 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
15220 POSIX 1003.1-2001 has removed fgrep.
15221
15222 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15223
15224 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
15225 interpreted as signed.
15226 * lib/ebitset.c (ebitset_list): Fix bug.
15227
15228 2002-10-01 Paul Eggert <eggert@twinsun.com>
15229
15230 More fixes for 64-bit hosts and large bitsets.
15231
15232 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
15233 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
15234 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
15235 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
15236 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
15237 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
15238 bitset_count_): Likewise.
15239 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
15240 bitset_first, bitset_last): Likewise.
15241 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
15242 bitset_stats_list_reverse, bitset_stats_size,
15243 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
15244 Likewise.
15245 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15246 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15247 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15248 bitsetv_reflexive_transitive_closure): Likewise.
15249 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
15250 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
15251 Likewise.
15252 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
15253 Likewise.
15254
15255 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
15256 Use size_t, not unsigned int, to count bytes.
15257 * lib/abitset.h (abitset_bytes): Likewise.
15258 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
15259 Likewise.
15260 * lib/bitset.h (bitset_bytes): Likewise.
15261 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
15262 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
15263 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15264 * lib/ebitset.c (ebitset_bytes): Likewise.
15265 * lib/ebitset.h (ebitset_bytes): Likewise.
15266 * lib/lbitset.c (lbitset_bytes): Likewise.
15267 * lib/lbitset.h (lbitset_bytes): Likewise.
15268
15269 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
15270 abitset_subset_p, abitset_disjoint_p, abitset_and,
15271 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
15272 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
15273 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
15274 abitset_or_and, abitset_or_and_cmp):
15275 Use bitset_windex instead of unsigned int.
15276 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15277 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
15278 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
15279 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
15280 Likewise.
15281 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
15282
15283 * lib/bitset.c (bitset_print):
15284 Use proper printf formats for widths of integer types.
15285 * lib/bitset_stats.c (bitset_percent_histogram_print,
15286 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
15287 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15288 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15289 * lib/lbitset.c (lbitset_bytes): Likewise.
15290
15291 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
15292 BITSET_SIZE_MAX): New macros.
15293 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
15294 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
15295 to BITSET_WINDEX_MAX.
15296
15297 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
15298 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
15299 since we now return the bitset_bindex type (not int).
15300
15301 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
15302 when computing sizes.
15303 * lib/ebitset.c (ebitset_elts_grow): Likewise.
15304
15305 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
15306 and avoid cast to unsigned.
15307
15308 2002-09-30 Akim Demaille <akim@epita.fr>
15309
15310 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
15311 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
15312 Updates from Michael Hayes.
15313
15314 2002-09-30 Art Haas <ahaas@neosoft.com>
15315
15316 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
15317 invocations.
15318 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
15319 defined.
15320
15321 2002-09-27 Akim Demaille <akim@epita.fr>
15322
15323 Version 1.49c.
15324
15325 2002-09-27 Akim Demaille <akim@epita.fr>
15326
15327 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
15328 (Because of AC_LIBSOURCE).
15329
15330 2002-09-27 Akim Demaille <akim@epita.fr>
15331
15332 Playing with Autoscan.
15333
15334 * configure.ac: Remove the old LIBOBJ tweaks.
15335 (AC_REPLACE_FUNCS): Add strrchr and strtol.
15336 * lib/strrchr.c: New.
15337 * lib/strtol.c: New, from the Coreutils 4.5.1.
15338
15339 2002-09-27 Akim Demaille <akim@epita.fr>
15340
15341 Playing with Autoscan.
15342
15343 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
15344 * lib/Makefile.am (libbison_a_SOURCES): No longer include
15345 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
15346 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
15347 Coreutils 4.5.1.
15348
15349 2002-09-24 Akim Demaille <akim@epita.fr>
15350
15351 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
15352 (Frequently Asked Questions, Parser Stack Overflow): New.
15353
15354 2002-09-13 Akim Demaille <akim@epita.fr>
15355
15356 Playing with autoscan.
15357
15358 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
15359 * src/files.c (skeleton_find): Remove, unused.
15360 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
15361 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
15362
15363 2002-09-13 Akim Demaille <akim@epita.fr>
15364
15365 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
15366 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
15367
15368 2002-09-13 Akim Demaille <akim@epita.fr>
15369
15370 * configure.ac: Require 2.54.
15371 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
15372 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
15373 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
15374 Remove, provided by Autoconf macros.
15375
15376 2002-09-12 Akim Demaille <akim@epita.fr>
15377
15378 * m4/prereq.m4: Update, from Coreutils 4.5.1.
15379
15380 2002-09-12 Akim Demaille <akim@epita.fr>
15381
15382 * m4/prereq.m4: Update, from Fileutils 4.1.5.
15383 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
15384 Reported by Martin Mokrejs.
15385
15386 2002-09-10 Akim Demaille <akim@epita.fr>
15387
15388 * src/parse-gram.y: Associate a human readable string to each
15389 token type.
15390 * tests/regression.at (Invalid inputs): Adjust.
15391
15392 2002-09-10 Gary V. Vaughan <gary@gnu.org>
15393
15394 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
15395 with an Autoconf-2.5x style configure.ac.
15396
15397 2002-09-06 Paul Eggert <eggert@twinsun.com>
15398
15399 * doc/bison.texinfo (Conditions): Make explicit that the GPL
15400 exception applies only to yacc.c. This is a modification of a
15401 patch originally suggested by Akim Demaille.
15402
15403 2002-09-06 Akim Demaille <akim@epita.fr>
15404
15405 * data/c.m4 (b4_copyright): Move the GPL exception comment from
15406 here to...
15407 * data/yacc.c: here.
15408
15409 * data/lalr1.cc (struct yyltype): Don't define it, since we use
15410 LocationType.
15411 (b4_ltype): Default to yy::Location from location.hh.
15412
15413 2002-09-04 Jim Meyering <jim@meyering.net>
15414
15415 * data/yacc.c: Guard the declaration of yytoknum also with
15416 `#ifdef YYPRINT', so it is declared only when used.
15417
15418 2002-09-04 Akim Demaille <akim@epita.fr>
15419
15420 * configure.in: Rename as...
15421 * configure.ac: this.
15422 Bump to 1.49c.
15423
15424 2002-09-04 Akim Demaille <akim@epita.fr>
15425
15426 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
15427 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
15428 translate maintainer only messages.
15429
15430 2002-08-12 Paul Eggert <eggert@twinsun.com>
15431
15432 Version 1.49b.
15433
15434 * Makefile.am (SUBDIRS): Remove intl.
15435 (DISTCLEANFILES): Remove.
15436 * NEWS: Mention that GNU M4 is now required. Clarify what is
15437 meant by "larger grammars". Mention the pt_BR translation.
15438 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
15439 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
15440 Bump version from 0.11.2 to 0.11.5.
15441 (BISON_PREREQ_STAGE): Remove.
15442 (AM_GNU_GETTEXT): Use external gettext.
15443 (AC_OUTPUT): Remove intl/Makefile.
15444
15445 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
15446
15447 * data/glr.c: Include string.h, for strlen.
15448 (yyreportParseError): Use size_t for yysize.
15449 (yy_yypstack): No longer nested inside yypstates, as nested
15450 functions are not portable. Do not assume size_t is the
15451 same width as int.
15452 (yypstates): Do not assume that ptrdiff_t is the same width
15453 as int, and similarly for yyposn and YYINDEX.
15454
15455 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
15456
15457 * lib/Makefile.am (INCLUDES): Do not include from the intl
15458 directory, which has been removed.
15459 * src/Makefile.am (INCLUDES): Likewise.
15460
15461 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
15462 (bitsets_sources, additional_bitsets_sources, timevars_sources):
15463 New vars.
15464
15465 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
15466 * tests/Makefile.am (EXTRA_DIST): Likewise.
15467
15468 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
15469 Do not assume that bitset_windex is the same width as unsigned.
15470
15471 * lib/abitset.c (abitset_unused_clear): Do not assume that
15472 bitset_word is the same width as int.
15473 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
15474 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
15475 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
15476 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
15477 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
15478
15479 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
15480 portability to one's complement hosts!).
15481 * lib/ebitset.c (ebitset_op1): Likewise.
15482 * lib/lbitset.c (lbitset_op1): Likewise.
15483
15484 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
15485 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
15486 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
15487 Sync with fileutils.
15488 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
15489 lib/gettext.h: Sync with diffutils.
15490
15491 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
15492 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
15493
15494 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
15495 PROTOTYPES to check for prototypes, and "defined __STDC__" to
15496 check for void *.
15497
15498 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
15499 size_t; the old version tried to do this but casted improperly.
15500 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
15501 (bitset_test): Now returns int, not unsigned long.
15502
15503 * lib/bitset_stats.c: Include "gettext.h".
15504 (_): New macro.
15505 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
15506 name locals "index", as it generates unnecessary warnings on some
15507 hosts that have an "index" function.
15508
15509 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
15510 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
15511 they need translation.
15512 * src/LR0.c (state_list_append, new_itemsets, get_state,
15513 append_states, generate_states): Likewise.
15514 * src/assoc.c (assoc_to_string): Likewise.
15515 * src/closure.c (print_closure, set_firsts, closure): Likewise.
15516 * src/gram.c (grammar_dump): Likewise.
15517 * src/injections.c (injections_compute): Likewise.
15518 * src/lalr.c (lookaheads_print): Likewise.
15519 * src/relation.c (relation_transpose): Likewise.
15520 * src/scan-gram.l: Likewise.
15521 * src/tables.c (table_grow, pack_vector): Likewise.
15522
15523 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
15524 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
15525 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
15526 * m4/mbstate_t.m4: Sync with fileutils.
15527 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
15528
15529 * po/LINGUAS: Add pt_BR.
15530 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
15531 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
15532 lib/timevar.c.
15533 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
15534 manual recommends.
15535 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
15536
15537 * src/complain.c (strerror_r): Remove decl; not needed.
15538 (strerror): Use same pattern as ../lib/error.c.
15539
15540 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
15541
15542 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
15543
15544 * src/main.c (main): Cast result of bindtextdomain and textdomain
15545 to void, to avoid a GCC warning when --disable-nls is in effect.
15546
15547 * src/scan-gram.l: Use strings rather than escapes when possible,
15548 to minimize the number of warnings from xgettext.
15549 (handle_action_dollar, handle_action_at): Don't use isdigit,
15550 as it mishandles negative chars and it may not work as expected
15551 outside the C locale.
15552
15553 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
15554 this is a GCC extension and is not portable to other compilers.
15555
15556 * src/system.h (alloca): Use same pattern as ../lib/error.c.
15557 Do not include <ctype.h>; no longer needed.
15558 Do not include <malloc.h>; no longer needed (and generates
15559 warnings on OpenBSD 3.0).
15560
15561 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
15562 it's not portable.
15563
15564 * tests/regression.at: Do not use 'cc -c input.c -o input';
15565 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
15566
15567 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
15568 exit status as failure, not just exit status 1. Sun C exits
15569 with status 2 sometimes.
15570
15571 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
15572 Use it for the two large tests.
15573
15574 2002-08-02 Akim Demaille <akim@epita.fr>
15575
15576 * src/conflicts.c (conflicts_output): Don't output rules never
15577 reduced here, since anyway that computation doesn't work.
15578 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
15579 (rule_useless_p, rule_never_reduced_p): New.
15580 (grammar_rules_partial_print): Use a filter instead of a range.
15581 Display the title only if needed.
15582 (grammar_rules_print): Adjust.
15583 (grammar_rules_never_reduced_report): New.
15584 * src/tables.c (action_row): Move the computation of rules never
15585 reduced to...
15586 (token_actions): here.
15587 * src/main.c (main): Make the parser before making the report, so
15588 that rules never reduced are computed.
15589 Call grammar_rules_never_reduced_report.
15590 * src/print.c (print_results): Report rules never reduced.
15591 * tests/conflicts.at, tests/reduce.at: Adjust.
15592
15593 2002-08-01 Akim Demaille <akim@epita.fr>
15594
15595 Instead of attaching lookaheads and duplicating the rules being
15596 reduced by a state, attach the lookaheads to the reductions.
15597
15598 * src/state.h (state_t): Remove the `lookaheads',
15599 `lookaheads_rule' member.
15600 (reductions_t): Add a `lookaheads' member.
15601 Use a regular array for the `rules'.
15602 * src/state.c (reductions_new): Initialize the lookaheads member
15603 to 0.
15604 (state_rule_lookaheads_print): Adjust.
15605 * src/state.h, src/state.c (state_reductions_find): New.
15606 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
15607 (count_rr_conflicts): Adjust.
15608 * src/lalr.c (LArule): Remove.
15609 (add_lookback_edge): Adjust.
15610 (state_lookaheads_count): New.
15611 (states_lookaheads_initialize): Merge into...
15612 (initialize_LA): this.
15613 (lalr_free): Adjust.
15614 * src/main.c (main): Don't free nullable and derives too early: it
15615 is used by --verbose.
15616 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
15617
15618 2002-08-01 Akim Demaille <akim@epita.fr>
15619
15620 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
15621 `rule_number_t**'.
15622 (set_derives, free_derives): Rename as...
15623 (derives_compute, derives_free): this.
15624 Adjust all dependencies.
15625 * src/nullable.c (set_nullable, free_nullable): Rename as...
15626 (nullable_compute, nullable_free): these.
15627 (rule_list_t): Store rule_t *, not rule_number_t.
15628 * src/state.c (state_rule_lookaheads_print): Directly compare rule
15629 pointers, instead of their numbers.
15630 * src/main.c (main): Call nullable_free, and derives_free earlier,
15631 as they were lo longer used.
15632
15633 2002-08-01 Akim Demaille <akim@epita.fr>
15634
15635 * lib/timevar.c (get_time): Include children time.
15636 * src/lalr.h (LA, LArule): Don't export them: used with the
15637 state_t.
15638 * src/lalr.c (LA, LArule): Static.
15639 * src/lalr.h, src/lalr.c (lalr_free): New.
15640 * src/main.c (main): Call it.
15641 * src/tables.c (pack_vector): Check whether loc is >= to the
15642 table_size, not >.
15643 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
15644 (tables_generate): do it, since that's also it which allocates
15645 them.
15646 Don't free LA and LArule, main does.
15647
15648 2002-07-31 Akim Demaille <akim@epita.fr>
15649
15650 Separate parser tables computation and output.
15651
15652 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
15653 (conflict_list, conflict_list_cnt, table, check, table_ninf)
15654 (yydefgoto, yydefact, high): Move to...
15655 * src/tables.h, src/tables.c: here.
15656 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
15657 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
15658 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
15659 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
15660 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
15661 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
15662 (action_row, save_row, token_actions, save_column, default_goto)
15663 (goto_actions, sort_actions, matching_state, pack_vector)
15664 (table_ninf_remap, pack_table, prepare_actions): Move to...
15665 * src/tables.c: here.
15666 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
15667 * src/output.c (token_actions, output_base, output_conflicts)
15668 (output_check): Merge into...
15669 (prepare_actions): this.
15670 (actions_output): Rename as...
15671 (user_actions_output): this.
15672 * src/main.c (main): Call tables_generate and tables_free.
15673
15674 2002-07-31 Akim Demaille <akim@epita.fr>
15675
15676 Steal GCC's --time-report support.
15677
15678 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
15679 stolen/adjusted from GCC.
15680 * m4/stage.m4: Remove time related checks.
15681 * m4/timevar.m4: New.
15682 * configure.in: Adjust.
15683 * src/system.h: Adjust to using timevar.h.
15684 * src/getargs.h, src/getargs.c: Support trace_time for
15685 --trace=time.
15686 * src/main.c (stage): Remove.
15687 (main): Replace `stage' invocations with timevar calls.
15688 * src/output.c: Insert pertinent timevar calls.
15689
15690 2002-07-31 Akim Demaille <akim@epita.fr>
15691
15692 Let --trace have arguments.
15693
15694 * src/getargs.h (enum trace_e): New.
15695 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
15696 (long_options, short_options): --trace/-T takes an optional
15697 argument.
15698 Change all the uses of trace_flag to reflect the new flags.
15699 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
15700
15701 Strengthen `stage' portability.
15702
15703 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
15704 * configure.in: Use it.
15705 Don't check for malloc.h and sys/times.h.
15706 * src/system.h: Include them when appropriate.
15707 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
15708 times and struct tms are available.
15709
15710 2002-07-30 Akim Demaille <akim@epita.fr>
15711
15712 In verbose parse error message, don't report `error' as an
15713 expected token.
15714 * tests/actions.at (Printers and Destructors): Adjust.
15715 * tests/calc.at (Calculator $1): Adjust.
15716 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
15717 error message, do not report the parser accepts the error token in
15718 that state.
15719
15720 2002-07-30 Akim Demaille <akim@epita.fr>
15721
15722 Normalize conflict related messages.
15723
15724 * src/complain.h, src/complain.c (warn, complain): New.
15725 * src/conflicts.c (conflicts_print): Use them.
15726 (conflict_report_yacc): New, extracted from...
15727 (conflicts_print): here.
15728 * tests/conflicts.at, tests/existing.at: Adjust.
15729
15730 2002-07-30 Akim Demaille <akim@epita.fr>
15731
15732 Report rules which are never reduced by the parser: those hidden
15733 by conflicts.
15734
15735 * src/LR0.c (save_reductions): Don't make the final state too
15736 different: save its reduction (accept) instead of having a state
15737 without any action (no shift or goto, no reduce).
15738 Note: the final state is now a ``regular'' state, i.e., the
15739 parsers now contain `reduce 0' as default reduction.
15740 Nevertheless, since they decide to `accept' when yystate =
15741 final_state, they still will not reduce rule 0.
15742 * src/print.c (print_actions, print_reduction): Adjust.
15743 * src/output.c (action_row): Track reduced rules.
15744 (token_actions): Report rules never reduced.
15745 * tests/conflicts.at, tests/regression.at: Adjust.
15746
15747 2002-07-30 Akim Demaille <akim@epita.fr>
15748
15749 `stage' was accidently included in a previous patch.
15750 Initiate its autoconfiscation.
15751
15752 * configure.in: Look for malloc.h and sys/times.h.
15753 * src/main.c (stage): Adjust.
15754 Report only when trace_flag.
15755
15756 2002-07-29 Akim Demaille <akim@epita.fr>
15757
15758 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
15759 state_number_t.
15760 (errs_t): symbol_t*, not symbol_number_t.
15761 (reductions_t): rule_t*, not rule_number_t.
15762 (FOR_EACH_SHIFT): New.
15763 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
15764 * src/print.c, src/print_graph.c: Adjust.
15765
15766 2002-07-29 Akim Demaille <akim@epita.fr>
15767
15768 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
15769
15770 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
15771 (endtoken, accept): these.
15772 * src/reader.c (reader): Set endtoken's default tag to "$end".
15773 Set undeftoken's tag to "$undefined" instead of "$undefined.".
15774 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
15775 Adjust.
15776
15777 2002-07-29 Akim Demaille <akim@epita.fr>
15778
15779 * src/reduce.c (reduce_grammar): When the language is empty,
15780 complain about the start symbol, not the axiom.
15781 Use its location.
15782 * tests/reduce.at (Empty Language): New.
15783
15784 2002-07-26 Akim Demaille <akim@epita.fr>
15785
15786 * src/reader.h, src/reader.c (gram_error): ... can't get
15787 yycontrol without making too strong assumptions on the parser
15788 itself.
15789 * src/output.c (prepare_tokens): Use the real 0th value of
15790 token_translations instead of `0'.
15791 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
15792 visible here.
15793 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
15794 for the time being: %locations ought to provide it to yyerror.
15795
15796 2002-07-25 Akim Demaille <akim@epita.fr>
15797
15798 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
15799 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
15800 * tests/regression.at (Web2c Actions): Adjust.
15801
15802 2002-07-25 Akim Demaille <akim@epita.fr>
15803
15804 Stop storing rules from 1 to nrules + 1.
15805
15806 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
15807 * src/nullable.c, src/output.c, src/print.c, src/reader.c
15808 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
15809 Iterate from 0 to nrules.
15810 Use rule_number_as_item_number and item_number_as_rule_number.
15811 Adjust to `derive' now containing possibly 0.
15812 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
15813 Handle the `- 1' part in rule numbers from/to item numbers.
15814 * src/conflicts.c (log_resolution): Fix the message which reversed
15815 shift and reduce.
15816 * src/output.c (action_row): Initialize default_rule to -1.
15817 (token_actions): Adjust.
15818 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
15819 expected output.
15820 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
15821
15822 2002-07-25 Akim Demaille <akim@epita.fr>
15823
15824 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
15825 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
15826 (b4_c_knr_arg_decl): New.
15827 * data/yacc.c: Use it to define yysymprint, yydestruct, and
15828 yyreport_parse_error.
15829
15830 2002-07-25 Akim Demaille <akim@epita.fr>
15831
15832 * data/yacc.c (yyreport_parse_error): New, extracted from...
15833 (yyparse): here.
15834 (yydestruct, yysymprint): Move above yyparse.
15835 Be K&R compliant.
15836
15837 2002-07-25 Akim Demaille <akim@epita.fr>
15838
15839 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
15840 replace...
15841 (b4_sint_type, b4_uint_type): these.
15842 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
15843 * tests/regression.at (Web2c Actions): Adjust.
15844
15845 2002-07-25 Akim Demaille <akim@epita.fr>
15846
15847 * src/gram.h (TIEM_NUMBER_MAX): New.
15848 (item_number_of_rule_number, rule_number_of_item_number): Rename
15849 as...
15850 (rule_number_as_item_number, item_number_as_rule_number): these.
15851 Adjust dependencies.
15852 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
15853 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
15854 (symbol_number_to_vector_number): New.
15855 (order): Of vector_number_t* type.
15856 (base_t, BASE_MAX, BASE_MIN): New.
15857 (froms, tos, width, pos, check): Of base_t type.
15858 (action_number_t, ACTION_MIN, ACTION_MAX): New.
15859 (actrow): Of action_number_t type.
15860 (conflrow): Of unsigned int type.
15861 (table_ninf, base_ninf): New.
15862 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
15863 (muscle_insert_int_table, muscle_insert_base_table)
15864 (muscle_insert_rule_number_table): New.
15865 (prepare_tokens): Output `toknum' as int_table.
15866 (action_row): Returns a rule_number_t.
15867 Use ACTION_MIN, not SHRT_MIN.
15868 (token_actions): yydefact is rule_number_t*.
15869 (table_ninf_remap): New.
15870 (pack_table): Use it for `base' and `table'.
15871 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
15872 replaced with...
15873 (YYPACT_NINF, YYTABLE_NINF): these.
15874 (yypact, yytable): Compute their types instead of hard-coded
15875 `short'.
15876 * tests/regression.at (Web2c Actions): Adjust.
15877
15878 2002-07-19 Akim Demaille <akim@epita.fr>
15879
15880 * src/scan-gram.l (id): Can start with an underscore.
15881
15882 2002-07-16 Akim Demaille <akim@epita.fr>
15883
15884 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
15885 Adjust all former `associativity' dependencies.
15886 * src/symtab.c (symbol_new): Default associativity is `undef', not
15887 `right'.
15888 (symbol_check_alias_consistence): Adjust.
15889
15890 2002-07-09 Akim Demaille <akim@epita.fr>
15891
15892 * doc/bison.texinfo: Properly set the ``header'' part.
15893 Use @dircategory ``GNU programming tools'' as per Texinfo's
15894 documentation.
15895 Use @copying.
15896
15897 2002-07-09 Akim Demaille <akim@epita.fr>
15898
15899 * lib/quotearg.h: Protect against multiple inclusions.
15900 * src/location.h (location_t): Add a `file' member.
15901 (LOCATION_RESET, LOCATION_PRINT): Adjust.
15902 * src/complain.c (warn_at, complain_at, fatal_at): Drop
15903 `error_one_per_line' support.
15904
15905 2002-07-09 Akim Demaille <akim@epita.fr>
15906
15907 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
15908 * src/reader.c (lineno): Remove.
15909 Adjust all dependencies.
15910 (get_merge_function): Take a location and use complain_at.
15911 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
15912 * tests/regression.at (Invalid inputs, Mixing %token styles):
15913 Adjust.
15914
15915 2002-07-09 Akim Demaille <akim@epita.fr>
15916
15917 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
15918 recovery rule, and forbid extensions when --yacc.
15919 (gram_error): Use complain_at.
15920 * src/reader.c (reader): Exit if there were parse errors.
15921
15922 2002-07-09 Akim Demaille <akim@epita.fr>
15923
15924 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
15925 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
15926 Reported by R Blake <blakers@mac.com>.
15927
15928 2002-07-09 Akim Demaille <akim@epita.fr>
15929
15930 * data/yacc.c: Output the copyright notive in the header.
15931
15932 2002-07-03 Akim Demaille <akim@epita.fr>
15933
15934 * src/output.c (froms, tos): Are state_number_t.
15935 (save_column): sp, sp1, and sp2 are state_number_t.
15936 (prepare): Rename `final' as `final_state_number', `nnts' as
15937 `nterms_number', `nrules' as `rules_number', `nstates' as
15938 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
15939 unused.
15940 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
15941 * data/lalr1.cc (nsym_): Remove, unused.
15942
15943 2002-07-03 Akim Demaille <akim@epita.fr>
15944
15945 * src/lalr.h, src/lalr.c (goto_number_t): New.
15946 * src/lalr.c (goto_list_t): New.
15947 Propagate them.
15948 * src/nullable.c (rule_list_t): New.
15949 Propagate.
15950 * src/types.h: Remove.
15951
15952 2002-07-03 Akim Demaille <akim@epita.fr>
15953
15954 * src/closure.c (print_fderives): Use rule_rhs_print.
15955 * src/derives.c (print_derives): Use rule_rhs_print.
15956 (rule_list_t): New, replaces `shorts'.
15957 (set_derives): Add comments.
15958 * tests/sets.at (Nullable, Firsts): Adjust.
15959
15960 2002-07-03 Akim Demaille <akim@epita.fr>
15961
15962 * src/output.c (prepare_actions): Free `tally' and `width'.
15963 (prepare_actions): Allocate and free `order'.
15964 * src/symtab.c (symbols_free): Free `symbols'.
15965 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
15966 * src/output.c (m4_invoke): Move to...
15967 * src/scan-skel.l: here.
15968 (<<EOF>>): Close yyout, and free its name.
15969
15970 2002-07-03 Akim Demaille <akim@epita.fr>
15971
15972 Fix some memory leaks, and fix a bug: state 0 was examined twice.
15973
15974 * src/LR0.c (new_state): Merge into...
15975 (state_list_append): this.
15976 (new_states): Merge into...
15977 (generate_states): here.
15978 (set_states): Don't ensure a proper `errs' state member here, do it...
15979 * src/conflicts.c (conflicts_solve): here.
15980 * src/state.h, src/state.c: Comment changes.
15981 (state_t): Rename member `shifts' as `transitions'.
15982 Adjust all dependencies.
15983 (errs_new): For consistency, also take the values as argument.
15984 (errs_dup): Remove.
15985 (state_errs_set): New.
15986 (state_reductions_set, state_transitions_set): Assert that no
15987 previous value was assigned.
15988 (state_free): New.
15989 (states_free): Use it.
15990 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
15991 temporary storage: use `errs' and `nerrs' as elsewhere.
15992 (set_conflicts): Allocate and free this `errs'.
15993
15994 2002-07-02 Akim Demaille <akim@epita.fr>
15995
15996 * lib/libiberty.h: New.
15997 * lib: Update the bitset implementation from upstream.
15998 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
15999 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
16000 * src/main.c: Adjust bitset stats calls.
16001
16002 2002-07-01 Paul Eggert <eggert@twinsun.com>
16003
16004 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
16005 char, so that negative chars don't collide with $.
16006
16007 2002-06-30 Akim Demaille <akim@epita.fr>
16008
16009 Have the GLR tests be `warning' checked, and fix the warnings.
16010
16011 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
16012 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
16013 (yyremoveDeletes): `yyi' and `yyj' are size_t.
16014 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
16015 (yyaddDeferredAction): static.
16016 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
16017 (yyreportParseError): yyprefix is const.
16018 yytokenp is used only when verbose.
16019 (yy__GNUC__): Replace with __GNUC__.
16020 (yypdumpstack): yyi is size_t.
16021 (yypreference): Un-yy local variables and arguments, to avoid
16022 clashes with `yyr1'. Anyway, we are not in the user name space.
16023 (yytname_size): be an int, as is compared with ints.
16024 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
16025 Use them.
16026 * tests/cxx-gram.at: Use quotation to protect $1.
16027 Use AT_COMPILE to enable warnings hunts.
16028 Prototype yylex and yyerror.
16029 `Use' argc.
16030 Include `string.h', not `strings.h'.
16031 Produce and prototype stmtMerge only when used.
16032 yylex takes a location.
16033
16034 2002-06-30 Akim Demaille <akim@epita.fr>
16035
16036 We spend a lot of time in quotearg, in particular when --verbose.
16037
16038 * src/symtab.c (symbol_get): Store a quoted version of the key.
16039 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
16040 Adjust all callers.
16041
16042 2002-06-30 Akim Demaille <akim@epita.fr>
16043
16044 * src/state.h (reductions_t): Rename member `nreds' as num.
16045 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
16046 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
16047
16048 2002-06-30 Akim Demaille <akim@epita.fr>
16049
16050 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
16051 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
16052 (shifts_to): Rename as...
16053 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
16054 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
16055 (TRANSITION_IS_DISABLED, transitions_to): these.
16056
16057 2002-06-30 Akim Demaille <akim@epita.fr>
16058
16059 * src/print.c (print_shifts, print_gotos): Merge into...
16060 (print_transitions): this.
16061 (print_transitions, print_errs, print_reductions): Align the
16062 lookaheads columns.
16063 (print_core, print_transitions, print_errs, print_state,
16064 print_grammar): Output empty lines separator before, not after.
16065 (state_default_rule_compute): Rename as...
16066 (state_default_rule): this.
16067 * tests/conflicts.at (Defaulted Conflicted Reduction),
16068 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
16069 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
16070
16071 2002-06-30 Akim Demaille <akim@epita.fr>
16072
16073 Display items as we display rules.
16074
16075 * src/gram.h, src/gram.c (rule_lhs_print): New.
16076 * src/gram.c (grammar_rules_partial_print): Use it.
16077 * src/print.c (print_core): Likewise.
16078 * tests/conflicts.at (Defaulted Conflicted Reduction),
16079 (Unresolved SR Conflicts): Adjust.
16080 (Unresolved SR Conflicts): Adjust and rename as...
16081 (Resolved SR Conflicts): this, as was meant.
16082 * tests/regression.at (Web2c Report): Adjust.
16083
16084 2002-06-30 Akim Demaille <akim@epita.fr>
16085
16086 * src/print.c (state_default_rule_compute): New, extracted from...
16087 (print_reductions): here.
16088 Pessimize, but clarify the code.
16089 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
16090
16091 2002-06-30 Akim Demaille <akim@epita.fr>
16092
16093 * src/output.c (action_row): Let default_rule be always a rule
16094 number.
16095
16096 2002-06-30 Akim Demaille <akim@epita.fr>
16097
16098 * src/closure.c (print_firsts, print_fderives, closure):
16099 Use BITSET_EXECUTE.
16100 * src/lalr.c (lookaheads_print): Likewise.
16101 * src/state.c (state_rule_lookaheads_print): Likewise.
16102 * src/print_graph.c (print_core): Likewise.
16103 * src/print.c (print_reductions): Likewise.
16104 * src/output.c (action_row): Likewise.
16105 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
16106
16107 2002-06-30 Akim Demaille <akim@epita.fr>
16108
16109 * src/print_graph.c: Use report_flag.
16110
16111 2002-06-30 Akim Demaille <akim@epita.fr>
16112
16113 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
16114 to...
16115 * src/relation.h, src/relation.c (traverse, relation_digraph)
16116 (relation_print, relation_transpose): New.
16117
16118 2002-06-30 Akim Demaille <akim@epita.fr>
16119
16120 * src/state.h, src/state.c (shifts_to): New.
16121 * src/lalr.c (build_relations): Use it.
16122
16123 2002-06-30 Akim Demaille <akim@epita.fr>
16124
16125 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
16126 (item_number_of_rule_number, rule_number_of_item_number): New.
16127 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
16128 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
16129 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
16130 Propagate their use.
16131 Much remains to be done, in particular wrt `shorts' from types.h.
16132
16133 2002-06-30 Akim Demaille <akim@epita.fr>
16134
16135 * src/symtab.c (symbol_new): Initialize the `printer' member.
16136
16137 2002-06-30 Akim Demaille <akim@epita.fr>
16138
16139 * src/LR0.c (save_reductions): Remove, replaced by...
16140 * src/state.h, src/state.c (state_reductions_set): New.
16141 (reductions, errs): Rename as...
16142 (reductions_t, errs_t): these.
16143 Adjust all dependencies.
16144
16145 2002-06-30 Akim Demaille <akim@epita.fr>
16146
16147 * src/LR0.c (state_list_t, state_list_append): New.
16148 (first_state, last_state): Now symbol_list_t.
16149 (this_state): Remove.
16150 (new_itemsets, append_states, save_reductions): Take a state_t as
16151 argument.
16152 (set_states, generate_states): Adjust.
16153 (save_shifts): Remove, replaced by...
16154 * src/state.h, src/state.c (state_shifts_set): New.
16155 (shifts): Rename as...
16156 (shifts_t): this.
16157 Adjust all dependencies.
16158 * src/state.h (state_t): Remove the `next' member.
16159
16160 2002-06-30 Akim Demaille <akim@epita.fr>
16161
16162 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
16163 escaped in slot 0.
16164
16165 2002-06-30 Akim Demaille <akim@epita.fr>
16166
16167 Use hash.h for the state hash table.
16168
16169 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
16170 (allocate_storage): Use state_hash_new.
16171 (free_storage): Use state_hash_free.
16172 (new_state, get_state): Adjust.
16173 * src/lalr.h, src/lalr.c (states): Move to...
16174 * src/states.h (state_t): Remove the `link' member, no longer
16175 used.
16176 * src/states.h, src/states.c: here.
16177 (state_hash_new, state_hash_free, state_hash_lookup)
16178 (state_hash_insert, states_free): New.
16179 * src/states.c (state_table, state_compare, state_hash): New.
16180 * src/output.c (output_actions): Do not free states now, since we
16181 still need to know the final_state number in `prepare', called
16182 afterwards. Do it...
16183 * src/main.c (main): here: call states_free after `output'.
16184
16185 2002-06-30 Akim Demaille <akim@epita.fr>
16186
16187 * src/state.h, src/state.c (state_new): New, extracted from...
16188 * src/LR0.c (new_state): here.
16189 * src/state.h (STATE_ALLOC): Move to...
16190 * src/state.c: here.
16191 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
16192 * src/state.h, src/state.c: here.
16193
16194 2002-06-30 Akim Demaille <akim@epita.fr>
16195
16196 * src/reader.c (gensym): Rename as...
16197 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
16198 (getsym): Rename as...
16199 (symbol_get): this.
16200
16201 2002-06-30 Akim Demaille <akim@epita.fr>
16202
16203 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
16204 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
16205 * src/output.c, src/print.c, src/print_graph.c: Propagate.
16206 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
16207
16208 2002-06-30 Akim Demaille <akim@epita.fr>
16209
16210 Make the test suite pass with warnings checked.
16211
16212 * tests/actions.at (Printers and Destructors): Improve.
16213 Avoid unsigned vs. signed issues.
16214 * tests/calc.at: Don't exercise the scanner here, do it...
16215 * tests/input.at (Torturing the Scanner): here.
16216
16217 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16218
16219 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
16220 reorganize first lines parallel to yacc.c.
16221
16222 2002-06-28 Akim Demaille <akim@epita.fr>
16223
16224 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
16225 (b4_token_enum, b4_token_defines): New, factored from...
16226 * data/lalr1.cc, data/yacc.c, glr.c: here.
16227
16228 2002-06-28 Akim Demaille <akim@epita.fr>
16229
16230 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
16231 unused variables.
16232 * src/output.c (merger_output): static.
16233
16234 2002-06-28 Akim Demaille <akim@epita.fr>
16235
16236 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
16237 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
16238 pacify GCC.
16239 * src/output.c (save_row): Initialize all the variables to pacify GCC.
16240
16241 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16242
16243 Accumulated changelog for new GLR parsing features.
16244
16245 * src/conflicts.c (count_total_conflicts): Change name to
16246 conflicts_total_count.
16247 * src/conflicts.h: Ditto.
16248 * src/output.c (token_actions): Use the new name.
16249 (output_conflicts): Change conflp => conflict_list_heads, and
16250 confl => conflict_list for better readability.
16251 * data/glr.c: Use the new names.
16252 * NEWS: Add self to GLR announcement.
16253
16254 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
16255
16256 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
16257 Akim Demaille.
16258
16259 * data/bison.glr: Change name to glr.c
16260 * data/glr.c: Renamed from bison.glr.
16261 * data/Makefile.am: Add glr.c
16262
16263 * src/getargs.c:
16264
16265 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
16266 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
16267
16268 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16269
16270 * data/bison.glr: Be sure to restore the
16271 current #line when returning to the skeleton contents after having
16272 exposed the input file's #line.
16273
16274 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16275
16276 * data/bison.glr: Bring up to date with changes to bison.simple.
16277
16278 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16279
16280 * data/bison.glr: Correct definitions that use b4_prefix.
16281 Various reformatting.
16282 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
16283 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
16284 yytokenp argument; now part of stack.
16285 (yychar): Define to behave as documented.
16286 (yyclearin): Ditto.
16287
16288 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16289
16290 * src/reader.h: Add declaration for free_merger_functions.
16291
16292 * src/reader.c (merge_functions): New variable.
16293 (get_merge_function): New function.
16294 (free_merger_functions): New function.
16295 (readgram): Check for %prec that is not followed by a symbol.
16296 Handle %dprec and %merge declarations.
16297 (packgram): Initialize dprec and merger fields in rules array.
16298
16299 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
16300 conflict_list_cnt, conflict_list_free): New variables.
16301 (table_grow): Also grow conflict_table.
16302 (prepare_rules): Output dprec and merger tables.
16303 (conflict_row): New function.
16304 (action_row): Output conflict lists for GLR parser. Don't use
16305 default reduction in conflicted states for GLR parser so that there
16306 are spaces for the conflict lists.
16307 (save_row): Also save conflict information.
16308 (token_actions): Allocate conflict list.
16309 (merger_output): New function.
16310 (pack_vector): Pack conflict table, too.
16311 (output_conflicts): New function to output yyconflp and yyconfl.
16312 (output_check): Allocate conflict_tos.
16313 (output_actions): Output conflict tables, also.
16314 (output_skeleton): Output b4_mergers definition.
16315 (prepare): Output b4_max_rhs_length definition.
16316 Use 'bison.glr' as default skeleton for GLR parsers.
16317
16318 * src/gram.c (glr_parser): New flag.
16319 (grammar_free): Call free_merger_functions.
16320
16321 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
16322 all pairs of conflicting reductions, rather than just all tokens
16323 causing conflicts. Needed to size conflict tables.
16324 (conflicts_output): Modify call to count_rr_conflicts for new
16325 interface.
16326 (conflicts_print): Ditto.
16327 (count_total_conflicts): New function.
16328
16329 * src/reader.h (merger_list): New type.
16330 (merge_functions): New variable.
16331
16332 * src/lex.h (tok_dprec, tok_merge): New token types.
16333
16334 * src/gram.h (rule_s): Add dprec and merger fields.
16335 (glr_parser): New flag.
16336
16337 * src/conflicts.h (count_total_conflicts): New function.
16338
16339 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
16340
16341 * doc/bison.texinfo (Generalized LR Parsing): New section.
16342 (GLR Parsers): New section.
16343 (Language and Grammar): Mention GLR parsing.
16344 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
16345 Correct typo ("tge" -> "the").
16346
16347 * data/bison.glr: New skeleton for GLR parsing.
16348
16349 * tests/cxx-gram.at: New tests for GLR parsing.
16350
16351 * tests/testsuite.at: Include cxx-gram.at.
16352
16353 * tests/Makefile.am: Add cxx-gram.at.
16354
16355 * src/parse-gram.y:
16356
16357 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
16358
16359 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
16360
16361 2002-06-27 Akim Demaille <akim@epita.fr>
16362
16363 * src/options.h, src/options.c: Remove.
16364 * src/getargs.c (short_options, long_options): New.
16365
16366 2002-06-27 Akim Demaille <akim@epita.fr>
16367
16368 * data/bison.simple, data/bison.c++: Rename as...
16369 * data/yacc.c, data/lalr1.cc: these.
16370 * doc/bison.texinfo (Environment Variables): Remove.
16371
16372 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
16373
16374 * src/getargs.c (report_argmatch): Initialize strtok().
16375
16376 2002-06-20 Akim Demaille <akim@epita.fr>
16377
16378 * data/bison.simple (b4_symbol_actions): New, replaces...
16379 (b4_symbol_destructor, b4_symbol_printer): these.
16380 (yysymprint): Be sure to call YYPRINT only for tokens, and using
16381 user token numbers.
16382
16383 2002-06-20 Akim Demaille <akim@epita.fr>
16384
16385 * data/bison.simple (yydestructor): Rename as...
16386 (yydestruct): this.
16387
16388 2002-06-20 Akim Demaille <akim@epita.fr>
16389
16390 * src/symtab.h, src/symtab.c (symbol_type_set)
16391 (symbol_destructor_set, symbol_precedence_set): The location is
16392 the last argument.
16393 Adjust all callers.
16394
16395 2002-06-20 Akim Demaille <akim@epita.fr>
16396
16397 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
16398 internals.
16399 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
16400 Takes a location.
16401 * src/symtab.h, src/symtab.c (symbol_class_set)
16402 (symbol_user_token_number_set): Likewise.
16403 Adjust all callers.
16404 Promote complain_at.
16405 * tests/input.at (Type Clashes): Adjust.
16406
16407 2002-06-20 Akim Demaille <akim@epita.fr>
16408
16409 * data/bison.simple (YYLEX): Fix the declaration when
16410 %pure-parser.
16411
16412 2002-06-20 Akim Demaille <akim@epita.fr>
16413
16414 * data/bison.simple (yysymprint): Don't print the token number,
16415 just its name.
16416 * tests/actions.at (Destructors): Rename as...
16417 (Printers and Destructors): this.
16418 Also exercise %printer.
16419
16420 2002-06-20 Akim Demaille <akim@epita.fr>
16421
16422 * data/bison.simple (YYDSYMPRINT): New.
16423 Use it to remove many of the #if YYDEBUG/if (yydebug).
16424
16425 2002-06-20 Akim Demaille <akim@epita.fr>
16426
16427 * src/symtab.h, src/symtab.c (symbol_t): printer and
16428 printer_location are new members.
16429 (symbol_printer_set): New.
16430 * src/parse-gram.y (PERCENT_PRINTER): New token.
16431 Handle its associated rule.
16432 * src/scan-gram.l: Adjust.
16433 (handle_destructor_at, handle_destructor_dollar): Rename as...
16434 (handle_symbol_code_at, handle_symbol_code_dollar): these.
16435 * src/output.c (symbol_printers_output): New.
16436 (output_skeleton): Call it.
16437 * data/bison.simple (yysymprint): New. Cannot be named yyprint
16438 since there are already many grammar files with a user `yyprint'.
16439 Replace the calls to YYPRINT to calls to yysymprint.
16440 * tests/calc.at: Adjust.
16441 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
16442 taking advantage of parser very internal details (stack size!).
16443
16444 2002-06-20 Akim Demaille <akim@epita.fr>
16445
16446 * src/scan-gram.l: Complete the scanner with the missing patterns
16447 to pacify Flex.
16448 Use `quote' and `symbol_tag_get' where appropriate.
16449
16450 2002-06-19 Akim Demaille <akim@epita.fr>
16451
16452 * tests/actions.at (Destructors): Augment to test locations.
16453 * data/bison.simple (yydestructor): Pass it the current location
16454 if locations are enabled.
16455 Prototype only when __STDC__ or C++.
16456 Change the argument names to move into the yy name space: there is
16457 user code here.
16458
16459 2002-06-19 Akim Demaille <akim@epita.fr>
16460
16461 * data/bison.simple (b4_pure_if): New.
16462 Use it instead of #ifdef YYPURE.
16463
16464 2002-06-19 Akim Demaille <akim@epita.fr>
16465
16466 * data/bison.simple (b4_location_if): New.
16467 Use it instead of #ifdef YYLSP_NEEDED.
16468
16469 2002-06-19 Akim Demaille <akim@epita.fr>
16470
16471 Prepare @$ in %destructor, but currently don't bind it in the
16472 skeleton, as %location use is not cleaned up yet.
16473
16474 * src/scan-gram.l (handle_dollar, handle_destructor_at)
16475 (handle_action_at): New.
16476 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
16477 a braced_code_t and a location as additional arguments.
16478 (handle_destructor_dollar): Instead of requiring `b4_eval', just
16479 unquote one when outputting `b4_dollar_dollar'.
16480 Adjust callers.
16481 * data/bison.simple (b4_eval): Remove.
16482 (b4_symbol_destructor): Adjust.
16483 * tests/input.at (Invalid @n): Adjust.
16484
16485 2002-06-19 Zack Weinberg <zack@codesourcery.com>
16486
16487 * doc/bison.texinfo: Document ability to have multiple
16488 prologue sections.
16489
16490 2002-06-18 Akim Demaille <akim@epita.fr>
16491
16492 * src/files.c (compute_base_names): When computing the output file
16493 names from the input file name, strip the directory part.
16494
16495 2002-06-18 Akim Demaille <akim@epita.fr>
16496
16497 * data/bison.simple.new: Comment changes.
16498 Reported by Andreas Schwab.
16499
16500 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
16501
16502 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
16503 there are no `label `yyoverflowlab' defined but not used' warnings
16504 when yyoverflow is defined.
16505
16506 2002-06-18 Akim Demaille <akim@epita.fr>
16507
16508 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
16509 new member.
16510 (symbol_destructor_set): Adjust.
16511 * src/output.c (symbol_destructors_output): Output the destructor
16512 locations.
16513 Output the symbol name.
16514 * data/bison.simple (b4_symbol_destructor): Adjust.
16515
16516 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
16517 and Akim Demaille <akim@epita.fr>
16518
16519 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
16520 what's left on the stack when the error recovery hits EOF.
16521 * tests/actions.at (Destructors): Complete to exercise this case.
16522
16523 2002-06-17 Akim Demaille <akim@epita.fr>
16524
16525 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
16526 arguments is really empty, not only equal to `[]'.
16527 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
16528 member.
16529 (symbol_destructor_set): New.
16530 * src/output.c (symbol_destructors_output): New.
16531 * src/reader.h (brace_code_t, current_braced_code): New.
16532 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
16533 (handle_dollar): Rename as...
16534 (handle_action_dollar): this.
16535 (handle_destructor_dollar): New.
16536 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
16537 (grammar_declaration): Use it.
16538 * data/bison.simple (yystos): Is always defined.
16539 (yydestructor): New.
16540 * tests/actions.at (Destructors): New.
16541 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
16542
16543 2002-06-17 Akim Demaille <akim@epita.fr>
16544
16545 * src/symlist.h, src/symlist.c (symbol_list_length): New.
16546 * src/scan-gram.l (handle_dollar, handle_at): Compute the
16547 rule_length only when needed.
16548 * src/output.c (actions_output, token_definitions_output): Output
16549 the full M4 block.
16550 * src/symtab.c: Don't access directly to the symbol tag, use
16551 symbol_tag_get.
16552 * src/parse-gram.y: Use symbol_list_free.
16553
16554 2002-06-17 Akim Demaille <akim@epita.fr>
16555
16556 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
16557 (symbol_list_prepend, get_type_name): Move to...
16558 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
16559 (symbol_list_prepend, symbol_list_n_type_name_get): here.
16560 Adjust all callers.
16561 (symbol_list_free): New.
16562 * src/scan-gram.l (handle_dollar): Takes a location.
16563 * tests/input.at (Invalid $n): Adjust.
16564
16565 2002-06-17 Akim Demaille <akim@epita.fr>
16566
16567 * src/reader.h, src/reader.c (symbol_list_new): Export it.
16568 (symbol_list_prepend): New.
16569 * src/parse-gram.y (%union): `list' is a new member.
16570 (symbols.1): New, replaces...
16571 (terms_to_prec.1, nterms_to_type.1): these.
16572 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
16573 Take a location as additional argument.
16574 Adjust all callers.
16575
16576 2002-06-15 Akim Demaille <akim@epita.fr>
16577
16578 * src/parse-gram.y: Move %token in the declaration section so that
16579 we don't depend upon CVS Bison.
16580
16581 2002-06-15 Akim Demaille <akim@epita.fr>
16582
16583 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
16584 * src/print.c (print_core): Use it.
16585
16586 2002-06-15 Akim Demaille <akim@epita.fr>
16587
16588 * src/conflicts.c (log_resolution): Accept the rule involved in
16589 the sr conflicts instead of the lookahead number that points to
16590 that rule.
16591 (flush_reduce): Accept the current lookahead vector as argument,
16592 instead of the index in LA.
16593 (resolve_sr_conflict): Accept the current number of lookahead
16594 bitset to consider for the STATE, instead of the index in LA.
16595 (set_conflicts): Adjust.
16596 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
16597
16598 2002-06-15 Akim Demaille <akim@epita.fr>
16599
16600 * src/state.h (state_t): Replace the `lookaheadsp' member, a
16601 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
16602 Adjust all dependencies.
16603 * src/lalr.c (initialize_lookaheads): Split into...
16604 (states_lookaheads_count, states_lookaheads_initialize): these.
16605 (lalr): Adjust.
16606
16607 2002-06-15 Akim Demaille <akim@epita.fr>
16608
16609 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
16610 out of...
16611 (grammar_rules_print): here.
16612 * src/reduce.c (reduce_output): Use it.
16613 * tests/reduce.at (Useless Rules, Reduced Automaton)
16614 (Underivable Rules): Adjust.
16615
16616 2002-06-15 Akim Demaille <akim@epita.fr>
16617
16618 Copy BYacc's nice way to report the grammar.
16619
16620 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
16621 New.
16622 Don't print the rules' location, it is confusing and useless.
16623 (rule_print): Use grammar_rhs_print.
16624 * src/print.c (print_grammar): Use grammar_rules_print.
16625
16626 2002-06-15 Akim Demaille <akim@epita.fr>
16627
16628 Complete and rationalize `useless thing' warnings.
16629
16630 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
16631 (symbol_tag_print): New.
16632 Use them everywhere in place of accessing directly the tag member.
16633 * src/gram.h, src/gram.c (rule_print): New.
16634 Use it where a rule used to be printed `by hand'.
16635 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
16636 (reduce_grammar_tables): Report the useless rules.
16637 (reduce_print): Useless things are a warning, not an error.
16638 Report it as such.
16639 * tests/reduce.at (Useless Nonterminals, Useless Rules):
16640 (Reduced Automaton, Underivable Rules): Adjust.
16641 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
16642 * tests/conflicts.at (Unresolved SR Conflicts)
16643 (Solved SR Conflicts): Adjust.
16644
16645 2002-06-15 Akim Demaille <akim@epita.fr>
16646
16647 Let symbols have a location.
16648
16649 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
16650 (getsym): Adjust.
16651 Adjust all callers.
16652 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
16653 Use location_t, not int.
16654 * src/symtab.c (symbol_check_defined): Take advantage of the
16655 location.
16656 * tests/regression.at (Invalid inputs): Adjust.
16657
16658 2002-06-15 Akim Demaille <akim@epita.fr>
16659
16660 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
16661 (input): Don't try to initialize yylloc here, do it in the
16662 scanner.
16663 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
16664 * src/gram.h (rule_t): Change line and action_line into location
16665 and action_location, of location_t type.
16666 Adjust all dependencies.
16667 * src/location.h, src/location.c (empty_location): New.
16668 * src/reader.h, src/reader.c (grammar_start_symbol_set)
16669 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
16670 (grammar_current_rule_symbol_append)
16671 (grammar_current_rule_action_append): Expect a location as argument.
16672 * src/reader.c (grammar_midrule_action): Adjust to attach an
16673 action's location as dummy symbol location.
16674 * src/symtab.h, src/symtab.c (startsymbol_location): New.
16675 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
16676 the line numbers.
16677
16678 2002-06-14 Akim Demaille <akim@epita.fr>
16679
16680 Grammar declarations may be found in the grammar section.
16681
16682 * src/parse-gram.y (rules_or_grammar_declaration): New.
16683 (declarations): Each declaration may end with a semicolon, not
16684 just...
16685 (grammar_declaration): `"%union"'.
16686 (grammar): Branch to rules_or_grammar_declaration.
16687
16688 2002-06-14 Akim Demaille <akim@epita.fr>
16689
16690 * src/main.c (main): Invoke scanner_free.
16691
16692 2002-06-14 Akim Demaille <akim@epita.fr>
16693
16694 * src/output.c (m4_invoke): Extracted from...
16695 (output_skeleton): here.
16696 Free tempfile.
16697
16698 2002-06-14 Akim Demaille <akim@epita.fr>
16699
16700 * src/parse-gram.y (directives, directive, gram)
16701 (grammar_directives, precedence_directives, precedence_directive):
16702 Rename as...
16703 (declarations, declaration, grammar, grammar_declaration)
16704 (precedence_declaration, precedence_declarator): these.
16705 (symbol_declaration): New.
16706
16707 2002-06-14 Akim Demaille <akim@epita.fr>
16708
16709 * src/files.c (action_obstack): Remove, unused.
16710 (output_obstack): Remove it, and all its dependencies, as it is no
16711 longer needed.
16712 * src/reader.c (epilogue_set): Build the epilogue in the
16713 muscle_obstack.
16714 * src/output.h, src/output.c (muscle_obstack): Move to...
16715 * src/muscle_tab.h, src/muscle_tab.h: here.
16716 (muscle_init): Initialize muscle_obstack.
16717 (muscle_free): New.
16718 * src/main.c (main): Call it.
16719
16720 2002-06-14 Akim Demaille <akim@epita.fr>
16721
16722 * src/location.h: New, extracted from...
16723 * src/reader.h: here.
16724 * src/Makefile.am (noinst_HEADERS): Merge into
16725 (bison_SOURCES): this.
16726 Add location.h.
16727 * src/parse-gram.y: Use location_t instead of Bison's.
16728 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
16729 Use location_t instead of ints.
16730
16731 2002-06-14 Akim Demaille <akim@epita.fr>
16732
16733 * data/bison.simple, data/bison.c++: Be sure to restore the
16734 current #line when returning to the skeleton contents after having
16735 exposed the input file's #line.
16736
16737 2002-06-12 Akim Demaille <akim@epita.fr>
16738
16739 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
16740 eager.
16741 * tests/actions.at (Exotic Dollars): New.
16742
16743 2002-06-12 Akim Demaille <akim@epita.fr>
16744
16745 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
16746 ['"/] too eagerly.
16747 * tests/input.at (Torturing the Scanner): New.
16748
16749 2002-06-11 Akim Demaille <akim@epita.fr>
16750
16751 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
16752 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
16753 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
16754 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
16755 * src/reader.c (reader): Use it.
16756
16757 2002-06-11 Akim Demaille <akim@epita.fr>
16758
16759 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
16760 Adjust all callers.
16761 (scanner_last_string_free): New.
16762
16763 2002-06-11 Akim Demaille <akim@epita.fr>
16764
16765 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
16766 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
16767 (last_string, YY_OBS_FREE): New.
16768 Use them when returning an ID.
16769
16770 2002-06-11 Akim Demaille <akim@epita.fr>
16771
16772 Have Bison grammars parsed by a Bison grammar.
16773
16774 * src/reader.c, src/reader.h (prologue_augment): New.
16775 * src/reader.c (copy_definition): Remove.
16776
16777 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
16778 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
16779 (grammar_current_rule_prec_set, grammar_current_rule_check)
16780 (grammar_current_rule_symbol_append)
16781 (grammar_current_rule_action_append): Export.
16782 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
16783 (symbol_list_action_append): Remove.
16784 Hook the routines from reader.
16785 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
16786 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
16787
16788 * src/reader.c (read_declarations): Remove, unused.
16789
16790 * src/parse-gram.y: Handle the epilogue.
16791 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
16792 (grammar_start_symbol_set): this.
16793 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
16794 * src/reader.c (readgram): Remove, unused.
16795 (reader): Adjust to insert eoftoken and axiom where appropriate.
16796
16797 * src/reader.c (copy_dollar): Replace with...
16798 * src/scan-gram.h (handle_dollar): this.
16799 * src/parse-gram.y: Remove `%thong'.
16800
16801 * src/reader.c (copy_at): Replace with...
16802 * src/scan-gram.h (handle_at): this.
16803
16804 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
16805 New.
16806
16807 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
16808 time being.
16809
16810 * src/reader.h, src/reader.c (grammar_rule_end): New.
16811
16812 * src/parse.y (current_type, current_class): New.
16813 Implement `%nterm', `%token' support.
16814 Merge `%term' into `%token'.
16815 (string_as_id): New.
16816 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
16817 type name.
16818
16819 * src/parse-gram.y: Be sure to handle properly the beginning of
16820 rules.
16821
16822 * src/parse-gram.y: Handle %type.
16823 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
16824
16825 * src/parse-gram.y: More directives support.
16826 * src/options.c: No longer handle source directives.
16827
16828 * src/parse-gram.y: Fix %output.
16829
16830 * src/parse-gram.y: Handle %union.
16831 Use the prologue locations.
16832 * src/reader.c (parse_union_decl): Remove.
16833
16834 * src/reader.h, src/reader.c (epilogue_set): New.
16835 * src/parse-gram.y: Use it.
16836
16837 * data/bison.simple, data/bison.c++: b4_stype is now either not
16838 defined, then default to int, or to the contents of %union,
16839 without `union' itself.
16840 Adjust.
16841 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
16842
16843 * src/output.c (actions_output): Don't output braces, as they are
16844 already handled by the scanner.
16845
16846 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
16847 characters to themselves.
16848
16849 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
16850 that the epilogue has a proper #line.
16851
16852 * src/parse-gram.y: Handle precedence/associativity.
16853
16854 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
16855 a terminal.
16856 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
16857 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
16858 at all to define terminals that cannot be emitted.
16859
16860 * src/scan-gram.l: Escape M4 characters.
16861
16862 * src/scan-gram.l: Working properly with escapes in user
16863 strings/characters.
16864
16865 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
16866 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
16867 grammar.
16868 Use more modest sizes, as for the time being the parser does not
16869 release memory, and therefore the process swallows a huge amount
16870 of memory.
16871
16872 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
16873 stricter %token grammar.
16874
16875 * src/symtab.h (associativity): Add `undef_assoc'.
16876 (symbol_precedence_set): Do nothing when passed an undef_assoc.
16877 * src/symtab.c (symbol_check_alias_consistence): Adjust.
16878
16879 * tests/regression.at (Invalid %directive): Remove, as it is now
16880 meaningless.
16881 (Invalid inputs): Adjust to the new error messages.
16882 (Token definitions): The new grammar doesn't allow too many
16883 eccentricities.
16884
16885 * src/lex.h, src/lex.c: Remove.
16886 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
16887 (copy_character, copy_string2, copy_string, copy_identifier)
16888 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
16889 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
16890 (parse_action): Remove.
16891 * po/POTFILES.in: Adjust.
16892
16893 2002-06-11 Akim Demaille <akim@epita.fr>
16894
16895 * src/reader.c (parse_action): Don't store directly into the
16896 rule's action member: return the action as a string.
16897 Don't require `rule_length' as an argument: compute it.
16898 (grammar_current_rule_symbol_append)
16899 (grammar_current_rule_action_append): New, eved out from
16900 (readgram): here.
16901 Remove `action_flag', `rulelength', unused now.
16902
16903 2002-06-11 Akim Demaille <akim@epita.fr>
16904
16905 * src/reader.c (grammar_current_rule_prec_set).
16906 (grammar_current_rule_check): New, eved out from...
16907 (readgram): here.
16908 Remove `xaction', `first_rhs': useless.
16909 * tests/input.at (Type clashes): New.
16910 * tests/existing.at (GNU Cim Grammar): Adjust.
16911
16912 2002-06-11 Akim Demaille <akim@epita.fr>
16913
16914 * src/reader.c (grammar_midrule_action): New, Eved out from
16915 (readgram): here.
16916
16917 2002-06-11 Akim Demaille <akim@epita.fr>
16918
16919 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
16920 New.
16921 (readgram): Use them as replacement of inlined code, crule and
16922 crule1.
16923
16924 2002-06-11 Akim Demaille <akim@epita.fr>
16925
16926 * src/reader.c (grammar_end, grammar_symbol_append): New.
16927 (readgram): Use them.
16928 Make the use of `p' as local as possible.
16929
16930 2002-06-10 Akim Demaille <akim@epita.fr>
16931
16932 GCJ's parser requires the tokens to be defined before the prologue.
16933
16934 * data/bison.simple: Output the token definition before the user's
16935 prologue.
16936 * tests/regression.at (Braces parsing, Duplicate string)
16937 (Mixing %token styles): Check the output from bison.
16938 (Early token definitions): New.
16939
16940 2002-06-10 Akim Demaille <akim@epita.fr>
16941
16942 * src/symtab.c (symbol_user_token_number_set): Don't complain when
16943 assigning twice the same user number to a token, so that we can
16944 use it in...
16945 * src/lex.c (lex): here.
16946 Also use `symbol_class_set' instead of hand written code.
16947 * src/reader.c (parse_assoc_decl): Likewise.
16948
16949 2002-06-10 Akim Demaille <akim@epita.fr>
16950
16951 * src/symtab.c, src/symtab.c (symbol_class_set)
16952 (symbol_user_token_number_set): New.
16953 * src/reader.c (parse_token_decl): Use them.
16954 Use a switch instead of ifs.
16955 Use a single argument.
16956
16957 2002-06-10 Akim Demaille <akim@epita.fr>
16958
16959 Remove `%thong' support as it is undocumented, unused, duplicates
16960 `%token's job, and creates useless e-mail traffic with people who
16961 want to know what it is, why it is undocumented, unused, and
16962 duplicates `%token's job.
16963
16964 * src/reader.c (parse_thong_decl): Remove.
16965 * src/options.c (option_table): Remove "thong".
16966 * src/lex.h (tok_thong): Remove.
16967
16968 2002-06-10 Akim Demaille <akim@epita.fr>
16969
16970 * src/symtab.c, src/symtab.c (symbol_type_set)
16971 (symbol_precedence_set): New.
16972 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
16973 (value_components_used): Remove, unused.
16974
16975 2002-06-09 Akim Demaille <akim@epita.fr>
16976
16977 Move symbols handling code out of the reader.
16978
16979 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
16980 (axiom): Move to...
16981 * src/symtab.h, src/symtab.c: here.
16982
16983 * src/gram.c (start_symbol): Remove: use startsymbol->number.
16984 * src/reader.c (startval): Rename as...
16985 * src/symtab.h, src/symtab.c (startsymbol): this.
16986 * src/reader.c: Adjust.
16987
16988 * src/reader.c (symbol_check_defined, symbol_make_alias)
16989 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16990 (token_translations_init)
16991 Move to...
16992 * src/symtab.c: here.
16993 * src/reader.c (packsymbols): Move to...
16994 * src/symtab.h, src/symtab.c (symbols_pack): here.
16995 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
16996 argument.
16997
16998 2002-06-03 Akim Demaille <akim@epita.fr>
16999
17000 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
17001 then statements.
17002
17003 2002-06-03 Akim Demaille <akim@epita.fr>
17004
17005 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
17006 structs with non literals.
17007 * src/scan-skel.l: never-interactive.
17008 * src/conflicts.c (enum conflict_resolution_e): No trailing
17009 comma.
17010 * src/getargs.c (usage): Split long literal strings.
17011 Reported by Hans Aberg.
17012
17013 2002-05-28 Akim Demaille <akim@epita.fr>
17014
17015 * data/bison.c++: Use C++ ostreams.
17016 (cdebug_): New member.
17017
17018 2002-05-28 Akim Demaille <akim@epita.fr>
17019
17020 * src/output.c (output_skeleton): Be sure to allocate enough room
17021 for `/' _and_ for `\0' in full_skeleton.
17022
17023 2002-05-28 Akim Demaille <akim@epita.fr>
17024
17025 * data/bison.c++: Catch up with bison.simple:
17026 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17027 and Paul Eggert <eggert@twinsun.com>: `error' handing.
17028 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
17029 and popping traces.
17030
17031 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17032
17033 * src/output.c (output_skeleton): Put an explicit path in front of
17034 the skeleton file name, rather than relying on the -I directory,
17035 to partially alleviate effects of having a skeleton file lying around
17036 in the current directory.
17037
17038 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17039
17040 * src/conflicts.c (log_resolution): Correct typo:
17041 obstack_printf should be obstack_fgrow1.
17042
17043 2002-05-26 Akim Demaille <akim@epita.fr>
17044
17045 * src/state.h (state_t): `solved_conflicts' is a new member.
17046 * src/LR0.c (new_state): Set it to 0.
17047 * src/conflicts.h, src/conflicts.c (print_conflicts)
17048 (free_conflicts, solve_conflicts): Rename as...
17049 (conflicts_print, conflicts_free, conflicts_solve): these.
17050 Adjust callers.
17051 * src/conflicts.c (enum conflict_resolution_e)
17052 (solved_conflicts_obstack): New, used by...
17053 (log_resolution): this.
17054 Adjust to attach the conflict resolution to each state.
17055 Complete the description with the precedence/associativity
17056 information.
17057 (resolve_sr_conflict): Adjust.
17058 * src/print.c (print_state): Output its solved_conflicts.
17059 * tests/conflicts.at (Unresolved SR Conflicts)
17060 (Solved SR Conflicts): Exercise --report=all.
17061
17062 2002-05-26 Akim Demaille <akim@epita.fr>
17063
17064 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17065 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17066 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
17067 (token_number_t, item_number_as_token_number)
17068 (token_number_as_item_number, muscle_insert_token_number_table):
17069 Rename as...
17070 (symbol_number_t, item_number_as_symbol_number)
17071 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
17072 these, since it is more appropriate.
17073
17074 2002-05-26 Akim Demaille <akim@epita.fr>
17075
17076 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
17077 `Error:' lines.
17078 * data/bison.simple (yystos) [YYDEBUG]: New.
17079 (yyparse) [YYDEBUG]: Display the symbols which are popped during
17080 error recovery.
17081 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
17082
17083 2002-05-25 Akim Demaille <akim@epita.fr>
17084
17085 * doc/bison.texinfo (Debugging): Split into...
17086 (Tracing): this new section, its former contents, and...
17087 (Understanding): this new section.
17088 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
17089 by...
17090 (report_flag): this.
17091 Adjust all dependencies.
17092 (report_args, report_types, report_argmatch): New.
17093 (usage, getargs): Report/support -r, --report.
17094 * src/options.h
17095 (struct option_table_struct): Rename as..,
17096 (struct option_table_s): this.
17097 Rename the `set_flag' member to `flag' to match with getopt_long's
17098 struct.
17099 * src/options.c (option_table): Split verbose into an entry for
17100 %verbose, and another for --verbose.
17101 Support --report/-r, so remove -r from the obsolete --raw.
17102 * src/print.c: Attach full item sets and lookaheads reports to
17103 report_flag instead of trace_flag.
17104 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
17105
17106 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17107 and Paul Eggert <eggert@twinsun.com>
17108
17109 * data/bison.simple (yyparse): Correct error handling to conform to
17110 POSIX and yacc. Specifically, after syntax error is discovered,
17111 do not reduce further before shifting the error token.
17112 Clean up the code a bit by removing the labels yyerrdefault,
17113 yyerrhandle, yyerrpop.
17114 * NEWS: Document the above.
17115
17116 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17117
17118 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
17119 type; it isn't always big enough, since it doesn't necessarily
17120 include non-terminals.
17121 (yytranslate): Expand definition of yy_token_number_type, so that
17122 the latter can be removed.
17123 (yy_token_number_type): Remove, only one use.
17124 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
17125 don't use TokenNumberType as element type.
17126
17127 * tests/regression.at: Modify expected output to agree with change
17128 to yyr1 and yytranslate.
17129
17130 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
17131
17132 * src/reader.c (parse_action): Use copy_character instead of
17133 obstack_1grow.
17134
17135 2002-05-13 Akim Demaille <akim@epita.fr>
17136
17137 * tests/regression.at (Token definitions): Prototype yylex and
17138 yyerror.
17139
17140 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17141
17142 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
17143 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
17144 32-bit arithmetic.
17145 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
17146
17147 2002-05-07 Akim Demaille <akim@epita.fr>
17148
17149 * tests/synclines.at: Be sure to prototype yylex and yyerror to
17150 avoid GCC warnings.
17151
17152 2002-05-07 Akim Demaille <akim@epita.fr>
17153
17154 Kill GCC warnings.
17155
17156 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
17157 over the RHS of each rule.
17158 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
17159 * src/state.h (state_t): Member `nitems' is unsigned short.
17160 * src/LR0.c (get_state): Adjust.
17161 * src/reader.c (packgram): Likewise.
17162 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
17163 `Type'.
17164 (muscle_insert_int_table): Remove, unused.
17165 (prepare_rules): Remove `max'.
17166
17167 2002-05-06 Akim Demaille <akim@epita.fr>
17168
17169 * src/closure.c (print_firsts): Display of the symbol tags.
17170 (bitmatrix_print): Move to...
17171 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
17172 here.
17173 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
17174
17175 2002-05-06 Akim Demaille <akim@epita.fr>
17176
17177 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
17178 hash_do_for_each.
17179
17180 2002-05-06 Akim Demaille <akim@epita.fr>
17181
17182 * src/LR0.c (new_state, get_state): Instead of using the global
17183 `kernel_size' and `kernel_base', have two new arguments:
17184 `core_size' and `core'.
17185 Adjust callers.
17186
17187 2002-05-06 Akim Demaille <akim@epita.fr>
17188
17189 * src/reader.c (packgram): No longer end `ritem' with a 0
17190 sentinel: it is not used.
17191
17192 2002-05-05 Akim Demaille <akim@epita.fr>
17193
17194 New experimental feature: display the lookaheads in the report and
17195 graph.
17196
17197 * src/print (print_core): When --trace-flag, display the rules
17198 lookaheads.
17199 * src/print_graph.c (print_core): Likewise.
17200 Swap the arguments.
17201 Adjust caller.
17202
17203 2002-05-05 Akim Demaille <akim@epita.fr>
17204
17205 * tests/torture.at (Many lookaheads): New test.
17206
17207 2002-05-05 Akim Demaille <akim@epita.fr>
17208
17209 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
17210 (GENERATE_MUSCLE_INSERT_TABLE): this.
17211 (output_int_table, output_unsigned_int_table, output_short_table)
17212 (output_token_number_table, output_item_number_table): Replace with...
17213 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
17214 (muscle_insert_short_table, muscle_insert_token_number_table)
17215 (muscle_insert_item_number_table): these.
17216 Adjust all callers.
17217 (prepare_tokens): Don't free `translations', since...
17218 * src/reader.h, src/reader.c (grammar_free): do it.
17219 Move to...
17220 * src/gram.h, src/gram.c (grammar_free): here.
17221 * data/bison.simple, data/bison.c++: b4_token_number_max is now
17222 b4_translate_max.
17223
17224 2002-05-05 Akim Demaille <akim@epita.fr>
17225
17226 * src/output.c (output_unsigned_int_table): New.
17227 (prepare_rules): `i' is unsigned.
17228 `prhs', `rline', `r2' are unsigned int.
17229 Rename muscle `rhs_number_max' as `rhs_max'.
17230 Output muscles `prhs_max', `rline_max', and `r2_max'.
17231 Free rline and r1.
17232 * data/bison.simple, data/bison.c++: Adjust to use these muscles
17233 to compute types instead of constant types.
17234 * tests/regression.at (Web2c Actions): Adjust.
17235
17236 2002-05-04 Akim Demaille <akim@epita.fr>
17237
17238 * src/symtab.h (SALIAS, SUNDEF): Rename as...
17239 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
17240 Adjust dependencies.
17241 * src/output.c (token_definitions_output): Be sure not to output a
17242 `#define 'a'' when fed with `%token 'a' "a"'.
17243 * tests/regression.at (Token definitions): New.
17244
17245 2002-05-03 Paul Eggert <eggert@twinsun.com>
17246
17247 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
17248 for K&R C.
17249
17250 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
17251
17252 * Makefile.am (SUBDIRS): Remove intl.
17253 (EXTRA_DIST): Add config/config.rpath.
17254
17255 2002-05-03 Akim Demaille <akim@epita.fr>
17256
17257 * data/bison.simple (m4_if): Don't output empty enums.
17258 And actually, output valid enum definitions :(.
17259
17260 2002-05-03 Akim Demaille <akim@epita.fr>
17261
17262 * configure.bat: Remove, completely obsolete.
17263 * Makefile.am (EXTRA_DIST): Adjust.
17264 Don't distribute config.rpath...
17265 * config/Makefile.am (EXTRA_DIST): Do it.
17266
17267 2002-05-03 Akim Demaille <akim@epita.fr>
17268
17269 * configure.in (GETTEXT_VERSION): New.
17270 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
17271
17272 2002-05-03 Akim Demaille <akim@epita.fr>
17273
17274 * data/bison.simple (b4_token_enum): New.
17275 (b4_token_defines): Use it to output tokens both as #define and
17276 enums.
17277 Suggested by Paul Eggert.
17278 * src/output.c (token_definitions_output): Don't output spurious
17279 white spaces.
17280
17281 2002-05-03 Akim Demaille <akim@epita.fr>
17282
17283 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
17284
17285 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
17286
17287 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
17288 Update the stack class, give a try to deque as the default container.
17289
17290 2002-05-02 Akim Demaille <akim@epita.fr>
17291
17292 * data/bison.simple (yyparse): Do not implement @$ = @1.
17293 (YYLLOC_DEFAULT): Adjust to do it.
17294 * doc/bison.texinfo (Location Default Action): Fix.
17295
17296 2002-05-02 Akim Demaille <akim@epita.fr>
17297
17298 * src/reader.c (parse_braces): Merge into...
17299 (parse_action): this.
17300
17301 2002-05-02 Akim Demaille <akim@epita.fr>
17302
17303 * configure.in (ALL_LINGUAS): Remove.
17304 * po/LINGUAS, hr.po: New.
17305
17306 2002-05-02 Akim Demaille <akim@epita.fr>
17307
17308 Remove the so called hairy (semantic) parsers.
17309
17310 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
17311 * src/gram.h, src/gram.c (semantic_parser): Remove.
17312 (rule_t): Remove the guard and guard_line members.
17313 * src/lex.h (token_t): remove tok_guard.
17314 * src/options.c (option_table): Remove %guard and %semantic_parser
17315 support.
17316 * src/output.c, src/output.h (guards_output): Remove.
17317 (prepare): Adjust.
17318 (token_definitions_output): Don't output the `T'
17319 tokens (???).
17320 (output_skeleton): Don't output the guards.
17321 * src/files.c, src/files.c (attrsfile): Remove.
17322 * src/reader.c (symbol_list): Remove the guard and guard_line
17323 members.
17324 Adjust dependencies.
17325 (parse_guard): Remove.
17326 * data/bison.hairy: Remove.
17327 * doc/bison.texinfo (Environment Variables): Remove occurrences of
17328 BISON_HAIRY.
17329
17330 2002-05-02 Akim Demaille <akim@epita.fr>
17331
17332 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
17333 (parse_guard): Rename the formal argument `stack_offset' as
17334 `rule_length', which is more readable.
17335 Adjust callers.
17336 (copy_at, copy_dollar): Instead of outputting the hard coded
17337 values of $$, $n and so forth, output invocation to b4_lhs_value,
17338 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
17339 Note: this patch partially drops `semantic-parser' support: it
17340 always does `rule_length - n', where semantic parsers ought to
17341 always use `-n'.
17342 * data/bison.simple, data/bison.c++ (b4_lhs_value)
17343 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
17344
17345 2002-05-02 Akim Demaille <akim@epita.fr>
17346
17347 * configure.in (AC_INIT): Bump to 1.49b.
17348 (AM_INIT_AUTOMAKE): Short invocation.
17349
17350 2002-05-02 Akim Demaille <akim@epita.fr>
17351
17352 Version 1.49a.
17353
17354 2002-05-01 Akim Demaille <akim@epita.fr>
17355
17356 * src/skeleton.h: Remove.
17357
17358 2002-05-01 Akim Demaille <akim@epita.fr>
17359
17360 * src/skeleton.h: Fix the #endif.
17361 Reported by Magnus Fromreide.
17362
17363 2002-04-26 Paul Eggert <eggert@twinsun.com>
17364
17365 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
17366 Define if we define YYSTYPE and YYLTYPE, respectively.
17367 (YYCOPY): Fix [] quoting problem in the non-GCC case.
17368
17369 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
17370
17371 * src/scan-skel.l: Postprocess quadrigraphs.
17372
17373 * src/reader.c (copy_character): New function, used to output
17374 single characters while replacing `[' and `]' with quadrigraphs, to
17375 avoid troubles with M4 quotes.
17376 (copy_comment): Output characters with copy_character.
17377 (read_additionnal_code): Likewise.
17378 (copy_string2): Likewise.
17379 (copy_definition): Likewise.
17380
17381 * tests/calc.at: Exercise M4 quoting.
17382
17383 2002-04-25 Akim Demaille <akim@epita.fr>
17384
17385 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
17386 between `!' and the command.
17387 Reported by Paul Eggert.
17388
17389 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
17390
17391 * tests/calc.at: Exercise prologue splitting.
17392
17393 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
17394 `b4_post_prologue' instead of `b4_prologue'.
17395
17396 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
17397 muscles.
17398 (output): Free pre_prologue_obstack and post_prologue_obstack.
17399 * src/files.h, src/files.c (attrs_obstack): Remove.
17400 (pre_prologue_obstack, post_prologue_obstack): New.
17401 * src/reader.c (copy_definition): Add a parameter to specify the
17402 obstack to fill, instead of using attrs_obstack unconditionally.
17403 (read_declarations): Pass pre_prologue_obstack to copy_definition if
17404 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
17405
17406 2002-04-23 Paul Eggert <eggert@twinsun.com>
17407
17408 * data/bison.simple: Remove unnecessary commentary and white
17409 space differences from 1_29-branch.
17410 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
17411
17412 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
17413 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
17414 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
17415 constructors or destructors.
17416
17417 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
17418
17419 2002-04-23 Akim Demaille <akim@epita.fr>
17420
17421 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
17422 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
17423 location with columns.
17424 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
17425 All reported by Paul Eggert.
17426
17427 2002-04-22 Akim Demaille <akim@epita.fr>
17428
17429 * src/reduce.c (dump_grammar): Move to...
17430 * src/gram.h, src/gram.c (grammar_dump): here.
17431 Be sure to separate long item numbers.
17432 Don't read the members of a rule's prec if its nil.
17433
17434 2002-04-22 Akim Demaille <akim@epita.fr>
17435
17436 * src/output.c (table_size, table_grow): New.
17437 (MAXTABLE): Remove, replace uses with table_size.
17438 (pack_vector): Instead of dying when the table is too big, grow it.
17439
17440 2002-04-22 Akim Demaille <akim@epita.fr>
17441
17442 * data/bison.simple (yyr1): Its type is that of a token number.
17443 * data/bison.c++ (r1_): Likewise.
17444 * tests/regression.at (Web2c Actions): Adjust.
17445
17446 2002-04-22 Akim Demaille <akim@epita.fr>
17447
17448 * src/reader.c (token_translations_init): 256 is now the default
17449 value for the error token, i.e., it will be assigned another
17450 number if the user assigned 256 to one of her tokens.
17451 (reader): Don't force 256 to error.
17452 * doc/bison.texinfo (Symbols): Adjust.
17453 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
17454 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
17455 etc. instead of 10, 20, 30 (which was used to `jump' over error
17456 (256) and undefined (2)).
17457
17458 2002-04-22 Akim Demaille <akim@epita.fr>
17459
17460 Propagate more token_number_t.
17461
17462 * src/gram.h (token_number_as_item_number)
17463 (item_number_as_token_number): New.
17464 * src/output.c (GENERATE_OUTPUT_TABLE): New.
17465 Use it to create output_item_number_table and
17466 output_token_number_table.
17467 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17468 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
17469 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
17470 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
17471
17472 2002-04-22 Akim Demaille <akim@epita.fr>
17473
17474 * src/output.h, src/output.c (get_lines_number): Remove.
17475
17476 2002-04-19 Akim Demaille <akim@epita.fr>
17477
17478 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
17479 as Lex/Flex'.
17480 (Debugging): More details about enabling the debugging features.
17481 (Table of Symbols): Describe $$, $n, @$, and @n.
17482 Suggested by Tim Josling.
17483
17484 2002-04-19 Akim Demaille <akim@epita.fr>
17485
17486 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
17487
17488 2002-04-10 Akim Demaille <akim@epita.fr>
17489
17490 * src/system.h: Rely on HAVE_LIMITS_H.
17491 Suggested by Paul Eggert.
17492
17493 2002-04-09 Akim Demaille <akim@epita.fr>
17494
17495 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
17496 full stderr, and strip it according to the bison options, instead
17497 of composing the error message from different bits.
17498 This makes it easier to check for several error messages.
17499 Adjust all the invocations.
17500 Add an invocation exercising the error token.
17501 Add an invocation demonstrating a stupid error message.
17502 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
17503 Adjust the tests.
17504 Error message are for stderr, not stdout.
17505
17506 2002-04-09 Akim Demaille <akim@epita.fr>
17507
17508 * src/gram.h, src/gram.c (error_token_number): Remove, use
17509 errtoken->number.
17510 * src/reader.c (reader): Don't specify the user token number (2)
17511 for $undefined, as it uselessly prevents using it.
17512 * src/gram.h (token_number_t): Move to...
17513 * src/symtab.h: here.
17514 (state_t.number): Is a token_number_t.
17515 * src/print.c, src/reader.c: Use undeftoken->number instead of
17516 hard coded 2.
17517 (Even though this 2 is not the same as above: the number of the
17518 undeftoken remains being 2, it is its user token number which
17519 might not be 2).
17520 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
17521 `user_token_number_max'.
17522 Output `undef_token_number'.
17523 * data/bison.simple, data/bison.c++: Use them.
17524 Be sure to map invalid yylex return values to
17525 `undef_token_number'. This saves us from gratuitous SEGV.
17526
17527 * tests/conflicts.at (Solved SR Conflicts)
17528 (Unresolved SR Conflicts): Adjust.
17529 * tests/regression.at (Web2c Actions): Adjust.
17530
17531 2002-04-08 Akim Demaille <akim@epita.fr>
17532
17533 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
17534 Adding #line.
17535 Remove the duplicate `typedefs'.
17536 (RhsNumberType): Fix the declaration and various other typos.
17537 Use __ofile__.
17538 * data/bison.simple: Use __ofile__.
17539 * src/scan-skel.l: Handle __ofile__.
17540
17541 2002-04-08 Akim Demaille <akim@epita.fr>
17542
17543 * src/gram.h (item_number_t): New, the type of item numbers in
17544 RITEM. Note that it must be able to code symbol numbers as
17545 positive number, and the negation of rule numbers as negative
17546 numbers.
17547 Adjust all dependencies (pretty many).
17548 * src/reduce.c (rule): Remove this `short *' pointer: use
17549 item_number_t.
17550 * src/system.h (MINSHORT, MAXSHORT): Remove.
17551 Include `limits.h'.
17552 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
17553 (shortcpy): Remove.
17554 (MAXTABLE): Move to...
17555 * src/output.c (MAXTABLE): here.
17556 (prepare_rules): Use output_int_table to output rhs.
17557 * data/bison.simple, data/bison.c++: Adjust.
17558 * tests/torture.at (Big triangle): Move the limit from 254 to
17559 500.
17560 * tests/regression.at (Web2c Actions): Ajust.
17561
17562 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
17563 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
17564 passes, but produces negative #line number, once fixed, GCC is
17565 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
17566 C), it passes.
17567 * src/state.h (state_h): Code input lines on ints, not shorts.
17568
17569 2002-04-08 Akim Demaille <akim@epita.fr>
17570
17571 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
17572 and then the grammar.
17573
17574 2002-04-08 Akim Demaille <akim@epita.fr>
17575
17576 * src/system.h: No longer using strndup.
17577
17578 2002-04-07 Akim Demaille <akim@epita.fr>
17579
17580 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
17581 * src/output.c (output_table_data): Return the longest number.
17582 (prepare_tokens): Output `token_number_max').
17583 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
17584 New.
17585 Use them to define yy_token_number_type/TokenNumberType.
17586 Use this type for yytranslate.
17587 * tests/torture.at (Big triangle): Push the limit from 124 to
17588 253.
17589 * tests/regression.at (Web2c Actions): Adjust.
17590
17591 2002-04-07 Akim Demaille <akim@epita.fr>
17592
17593 * tests/torture.at (Big triangle): New.
17594 (GNU AWK Grammar, GNU Cim Grammar): Move to...
17595 * tests/existing.at: here.
17596
17597 2002-04-07 Akim Demaille <akim@epita.fr>
17598
17599 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
17600 nritems.
17601 Adjust dependencies.
17602
17603 2002-04-07 Akim Demaille <akim@epita.fr>
17604
17605 * src/reader.c: Normalize increments to prefix form.
17606
17607 2002-04-07 Akim Demaille <akim@epita.fr>
17608
17609 * src/reader.c, symtab.c: Remove debugging code.
17610
17611 2002-04-07 Akim Demaille <akim@epita.fr>
17612
17613 Rename all the `bucket's as `symbol_t'.
17614
17615 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
17616 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
17617 * src/symtab.c, src/symtab.h (bucket): Rename as...
17618 (symbol_t): this.
17619 (symbol_list_new, bucket_check_defined, bucket_make_alias)
17620 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
17621 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
17622 (buckets_new, buckets_free, buckets_do): Rename as...
17623 (symbol_list_new, symbol_check_defined, symbol_make_alias)
17624 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17625 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
17626 (symbols_new, symbols_free, symbols_do): these.
17627
17628 2002-04-07 Akim Demaille <akim@epita.fr>
17629
17630 Use lib/hash for the symbol table.
17631
17632 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
17633 EOF.
17634 * src/lex.c (lex): Set the `number' member of new terminals.
17635 * src/reader.c (bucket_check_defined, bucket_make_alias)
17636 (bucket_check_alias_consistence, bucket_translation): New.
17637 (reader, grammar_free, readgram, token_translations_init)
17638 (packsymbols): Adjust.
17639 (reader): Number the predefined tokens.
17640 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
17641 for predefined tokens.
17642 * src/symtab.h (bucket): Remove all the hash table related
17643 members.
17644 * src/symtab.c (symtab): Replace by...
17645 (bucket_table): this.
17646 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
17647 (buckets_new, buckets_do): New.
17648
17649 2002-04-07 Akim Demaille <akim@epita.fr>
17650
17651 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
17652 (start_symbol, max_user_token_number, semantic_parser)
17653 (error_token_number): Initialize.
17654 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
17655 Initialize.
17656 (reader): Don't.
17657 (errtoken, eoftoken, undeftoken, axiom): Extern.
17658
17659 2002-04-07 Akim Demaille <akim@epita.fr>
17660
17661 * src/gram.h (rule_s): prec and precsym are now pointers
17662 to the bucket giving the priority/associativity.
17663 Member `associativity' removed: useless.
17664 * src/reduce.c, src/conflicts.c: Adjust.
17665
17666 2002-04-07 Akim Demaille <akim@epita.fr>
17667
17668 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
17669 Properly escape the symbols' TAG when outputting them.
17670
17671 2002-04-07 Akim Demaille <akim@epita.fr>
17672
17673 * src/lalr.h (LA): Is a bitsetv, not bitset*.
17674
17675 2002-04-07 Akim Demaille <akim@epita.fr>
17676
17677 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
17678 (LArule): this, which is an array to rule_t*.
17679 * src/print.c, src/conflicts.c: Adjust.
17680
17681 2002-04-07 Akim Demaille <akim@epita.fr>
17682
17683 * src/gram.h (rule_t): Rename `number' as `user_number'.
17684 `number' is a new member.
17685 Adjust dependencies.
17686 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
17687
17688 2002-04-07 Akim Demaille <akim@epita.fr>
17689
17690 As a result of the previous patch, it is no longer needed
17691 to reorder ritem itself.
17692
17693 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
17694
17695 2002-04-07 Akim Demaille <akim@epita.fr>
17696
17697 Be sure never to walk through RITEMS, but use only data related to
17698 the rules themselves. RITEMS should be banished.
17699
17700 * src/output.c (output_token_translations): Rename as...
17701 (prepare_tokens): this.
17702 In addition to `translate', prepare the muscles `tname' and
17703 `toknum', which were handled by...
17704 (output_rule_data): this.
17705 Remove, and move the remainder of its outputs into...
17706 (prepare_rules): this new routines, which also merges content from
17707 (output_gram): this.
17708 (prepare_rules): Be sure never to walk through RITEMS.
17709 (output_stos): Rename as...
17710 (prepare_stos): this.
17711 (output): Always invoke prepare_states, after all, just don't use it
17712 in the output if you don't need it.
17713
17714 2002-04-07 Akim Demaille <akim@epita.fr>
17715
17716 * src/LR0.c (new_state): Display `nstates' as the name of the
17717 newly created state.
17718 Adjust to initialize first_state and last_state if needed.
17719 Be sure to distinguish the initial from the final state.
17720 (new_states): Create the itemset of the initial state, and use
17721 new_state.
17722 * src/closure.c (closure): Now that the initial state has its
17723 items properly set, there is no need for a special case when
17724 creating `ruleset'.
17725
17726 As a result, now the rule 0, reducing to $axiom, is visible in the
17727 outputs. Adjust the test suite.
17728
17729 * tests/conflicts.at (Solved SR Conflicts)
17730 (Unresolved SR Conflicts): Adjust.
17731 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
17732 * tests/conflicts.at (S/R in initial): New.
17733
17734 2002-04-07 Akim Demaille <akim@epita.fr>
17735
17736 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
17737 the RHS of the rules.
17738 * src/output.c (output_gram): Likewise.
17739
17740 2002-04-07 Akim Demaille <akim@epita.fr>
17741
17742 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
17743 bucket.
17744 Adjust all dependencies.
17745 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
17746 `number' of the buckets too.
17747 * src/gram.h: Include `symtab.h'.
17748 (associativity): Move to...
17749 * src/symtab.h: here.
17750 No longer include `gram.h'.
17751
17752 2002-04-07 Akim Demaille <akim@epita.fr>
17753
17754 * src/gram.h, src/gram.c (rules_rhs_length): New.
17755 (ritem_longest_rhs): Use it.
17756 * src/gram.h (rule_t): `number' is a new member.
17757 * src/reader.c (packgram): Set it.
17758 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
17759 the end of `rules', and count them out of `nrules'.
17760 (reduce_output, dump_grammar): Adjust.
17761 * src/print.c (print_grammar): It is no longer needed to check for
17762 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
17763 * tests/reduce.at (Reduced Automaton): New test.
17764
17765 2002-04-07 Akim Demaille <akim@epita.fr>
17766
17767 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
17768 lacking `+ 1' to nrules, Bison reported as useless a token if it
17769 was used solely to set the precedence of the last rule...
17770
17771 2002-04-07 Akim Demaille <akim@epita.fr>
17772
17773 * data/bison.c++, data/bison.simple: Don't output the current file
17774 name in #line, to avoid useless diffs between two identical
17775 outputs under different names.
17776
17777 2002-04-07 Akim Demaille <akim@epita.fr>
17778
17779 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
17780 Normalize loops to using `< nrules + 1', not `<= nrules'.
17781
17782 2002-04-07 Akim Demaille <akim@epita.fr>
17783
17784 * TODO: Update.
17785
17786 2002-04-07 Akim Demaille <akim@epita.fr>
17787
17788 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
17789 bucket.value as bucket.number.
17790
17791 2002-04-07 Akim Demaille <akim@epita.fr>
17792
17793 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
17794 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17795 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
17796 RHS, instead of being an index in RITEMS.
17797
17798 2002-04-04 Paul Eggert <eggert@twinsun.com>
17799
17800 * doc/bison.texinfo: Update copyright date.
17801 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
17802 (Symbols): Warn about running Bison in one character set,
17803 but compiling and/or running in an incompatible one.
17804 Warn about character code 256, too.
17805
17806 2002-04-03 Paul Eggert <eggert@twinsun.com>
17807
17808 * src/bison.data (YYSTACK_ALLOC): Depend on whether
17809 YYERROR_VERBOSE is nonzero, not whether it is defined.
17810
17811 Merge changes from bison-1_29-branch.
17812
17813 2002-03-20 Paul Eggert <eggert@twinsun.com>
17814
17815 Merge fixes from Debian bison_1.34-1.diff.
17816
17817 * configure.in (AC_PREREQ): 2.53.
17818
17819 2002-03-20 Akim Demaille <akim@epita.fr>
17820
17821 * src/conflicts.c (log_resolution): Argument `resolution' is const.
17822
17823 2002-03-19 Paul Eggert <eggert@twinsun.com>
17824
17825 * src/bison.simple (YYCOPY): New macro.
17826 (YYSTACK_RELOCATE): Use it.
17827 Remove Type arg; no longer needed. All callers changed.
17828 (yymemcpy): Remove; no longer needed.
17829
17830 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
17831 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
17832
17833 2002-03-19 Akim Demaille <akim@epita.fr>
17834
17835 Test and fix the #line outputs.
17836
17837 * tests/atlocal.at (GCC): New.
17838 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
17839 (Prologue synch line, %union synch line, Postprologue synch line)
17840 (Action synch line, Epilogue synch line): New tests.
17841 * src/reader.c (parse_union_decl): Define the muscle stype_line.
17842 * data/bison.simple, data/bison.c++: Use it.
17843
17844 2002-03-19 Akim Demaille <akim@epita.fr>
17845
17846 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
17847 (Solved SR Conflicts, %expect not enough, %expect right)
17848 (%expect too much): Move to...
17849 * tests/conflicts.at: this new file.
17850
17851 2002-03-19 Akim Demaille <akim@epita.fr>
17852
17853 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
17854 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
17855 that we can move to enums for instance.
17856 * src/output.c (token_definitions_output): Output a list of
17857 `token-name, token-number' instead of the #define.
17858 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
17859
17860 2002-03-14 Akim Demaille <akim@epita.fr>
17861
17862 Use Gettext 0.11.1.
17863
17864 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
17865
17866 * data/bison.c++: Make the user able to add members to the generated
17867 parser by subclassing.
17868
17869 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
17870
17871 * src/reader.c (read_additionnal_code): `c' should be an integer, not
17872 a character.
17873 Reported by Nicolas Tisserand and Nicolas Burrus.
17874
17875 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17876
17877 * src/reader.c: Warn about lacking semi-colons, do not complain.
17878
17879 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17880
17881 * data/bison.c++: Remove a debug line.
17882
17883 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17884
17885 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
17886 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
17887 provide a default implementation.
17888
17889 2002-03-04 Akim Demaille <akim@epita.fr>
17890
17891 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
17892 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
17893 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
17894 * tests/semantic.at (Parsing Guards): Similarly.
17895 * src/reader.at (readgram): Complain if the last rule is not ended
17896 with a semi-colon.
17897
17898 2002-03-04 Akim Demaille <akim@epita.fr>
17899
17900 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
17901 * src/closure.c: here.
17902 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
17903 RTC.
17904 * src/warshall.h, src/warshall.c: Remove.
17905 * tests/sets.at (Broken Closure): Adjust.
17906
17907 2002-03-04 Akim Demaille <akim@epita.fr>
17908
17909 * src/output.c (output_skeleton): tempdir is const.
17910 bytes_read is unused.
17911
17912 2002-03-04 Akim Demaille <akim@epita.fr>
17913
17914 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
17915 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
17916 Update.
17917 From Michael Hayes.
17918
17919 2002-03-04 Akim Demaille <akim@epita.fr>
17920
17921 * src/closure.c (closure): `r' is unused.
17922
17923 2002-03-04 Akim Demaille <akim@epita.fr>
17924
17925 * tests/sets.at (Broken Closure): Add the ending `;'.
17926 * src/reader.at (readgram): Complain if a rule is not ended with a
17927 semi-colon.
17928
17929 2002-03-04 Akim Demaille <akim@epita.fr>
17930
17931 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
17932 (count_sr_conflicts): Use bitset_count.
17933 * src/reduce.c (inaccessable_symbols): Ditto.
17934 (bits_size): Remove.
17935 * src/warshall.h, src/warshall.c: Convert to bitsetv.
17936
17937 2002-03-04 Akim Demaille <akim@epita.fr>
17938
17939 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
17940 * src/reduce.c: Remove the `bitset_zero's following the
17941 `bitset_create's, as now it is performed by the latter.
17942
17943 2002-03-04 Akim Demaille <akim@epita.fr>
17944
17945 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
17946 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
17947 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
17948 latest sources from Michael.
17949
17950 2002-03-04 Akim Demaille <akim@epita.fr>
17951
17952 * src/output.c (output): Don't free the grammar.
17953 * src/reader.c (grammar_free): New.
17954 * src/main.c (main): Call it and don't free symtab here.
17955
17956 2002-03-04 Akim Demaille <akim@epita.fr>
17957
17958 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
17959 before returning.
17960 Reported by Benoit Perrot.
17961
17962 2002-03-04 Akim Demaille <akim@epita.fr>
17963
17964 Use bitset operations when possible, not loops over bits.
17965
17966 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
17967 bitset_or.
17968 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
17969 * src/reduce.c (useless_nonterminals): Formatting changes.
17970 * src/warshall.c (TC): Use bitset_or.
17971
17972 2002-03-04 Akim Demaille <akim@epita.fr>
17973
17974 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
17975 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
17976 Ditto.
17977
17978 2002-03-04 Akim Demaille <akim@epita.fr>
17979
17980 * src/lalr.c (F): Now a bitset*.
17981 Adjust all dependencies.
17982
17983 2002-03-04 Akim Demaille <akim@epita.fr>
17984
17985 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
17986 Adjust all dependencies.
17987
17988 2002-03-04 Akim Demaille <akim@epita.fr>
17989
17990 * src/L0.c, src/LR0.h (nstates): Be size_t.
17991 Adjust comparisons (signed vs unsigned).
17992 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
17993 bitset*.
17994 Adjust all dependencies.
17995
17996 2002-03-04 Akim Demaille <akim@epita.fr>
17997
17998 * src/closure.c (firsts): Now, also a bitset.
17999 Adjust all dependencies.
18000 (varsetsize): Remove, now unused.
18001 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
18002
18003 2002-03-04 Akim Demaille <akim@epita.fr>
18004
18005 * src/print.c: Convert to use bitset.h, not hand coded iterations
18006 over ints.
18007
18008 2002-03-04 Akim Demaille <akim@epita.fr>
18009
18010 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
18011
18012 2002-03-04 Akim Demaille <akim@epita.fr>
18013
18014 * src/closure.c (ruleset): Be a bitset.
18015 (rulesetsize): Remove.
18016
18017 2002-03-04 Akim Demaille <akim@epita.fr>
18018
18019 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18020 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
18021 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
18022 * src/closure.c (fderives): Be an array of bitsets.
18023
18024 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
18025
18026 * data/bison.c++: Merge the two generated headers. Insert a copyright
18027 notice in each output file.
18028
18029 2002-02-28 Akim Demaille <akim@epita.fr>
18030
18031 * data/bison.c++: Copy the prologue of bison.simple to fetch
18032 useful M4 definitions, such as b4_header_guard.
18033
18034 2002-02-25 Akim Demaille <akim@epita.fr>
18035
18036 * src/getargs.c (version): Give the name of the authors, and use a
18037 translator friendly scheme for the bgr
18038 copyright notice.
18039
18040 2002-02-25 Akim Demaille <akim@epita.fr>
18041
18042 * src/output.c (header_output): Remove, now handled completely via
18043 M4.
18044
18045 2002-02-25 Akim Demaille <akim@epita.fr>
18046
18047 * m4/m4.m4: New, from CVS Autoconf.
18048 * configure.in: Invoke it.
18049 * src/output.c (output_skeleton): Use its result instead of the
18050 hard coded name.
18051
18052 2002-02-25 Akim Demaille <akim@epita.fr>
18053
18054 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
18055 Fileutils 4.1.5.
18056 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
18057 * src/output.c (output_skeleton): Use mkstemp to create a real
18058 temporary file.
18059 Move the filling of `skeleton' and its muscle to...
18060 (prepare): here.
18061 (output): Move the definition of the prologue muscle to...
18062 (prepare): here.
18063 * src/system.h (DEFAULT_TMPDIR): New.
18064
18065 2002-02-14 Paul Eggert <eggert@twinsun.com>
18066
18067 Remove the support for C++ namespace cleanliness; it was
18068 causing more problems than it was curing, since it didn't work
18069 properly on some nonstandard C++ compilers. This can wait
18070 for a proper C++ parser.
18071
18072 * NEWS: Document this.
18073 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
18074 of C++, as it's treated like C now.
18075 * src/bison.simple (YYSTD): Remove.
18076 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
18077 Treat C++ just like Standard C instead of trying to support
18078 namespace cleanliness.
18079
18080 2002-02-14 Akim Demaille <akim@epita.fr>
18081
18082 * tests/regression.at (else): Adjust to Andreas' change.
18083
18084 2002-02-14 Akim Demaille <akim@epita.fr>
18085
18086 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
18087
18088 2002-02-13 Andreas Schwab <schwab@suse.de>
18089
18090 * src/output.c (output_rule_data): Don't output NULL, it might
18091 not be defined yet.
18092
18093 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
18094
18095 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
18096 (Copyright notice): Update.
18097
18098 2002-02-11 Akim Demaille <akim@epita.fr>
18099
18100 * tests/regression.at (%nonassoc and eof): Don't include
18101 nonportable headers.
18102
18103 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
18104
18105 * data/bison.c++: Correct error recovery. Make the user able to
18106 initialize the starting location.
18107
18108 2002-02-07 Akim Demaille <akim@epita.fr>
18109
18110 * tests/input.at: New.
18111
18112 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18113
18114 * data/bison.c++: Replace some direct m4 expansions by constants. Be
18115 more consistent when naming methods and variables. Put preprocessor
18116 directives around tables only needed for debugging.
18117
18118 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18119
18120 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
18121 C++ parsers.
18122 (yy::b4_name::parse): Use print_.
18123
18124 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18125
18126 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
18127
18128 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18129
18130 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
18131 C++ parsers.
18132 (yy::b4_name::parse): Build verbose error messages, and use error_.
18133
18134 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
18135
18136 * data/bison.c++: Fix m4 quoting in comments.
18137
18138 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
18139
18140 * data/bison.c++: Adjust the parser code. Fix some muscles that were
18141 not expanded by m4.
18142
18143 2002-02-05 Akim Demaille <akim@epita.fr>
18144
18145 * data/bison.c++: Adjust to the M4 back end.
18146 More is certainly needed.
18147
18148 2002-02-05 Akim Demaille <akim@epita.fr>
18149
18150 Give a try to M4 as a back end.
18151
18152 * lib/readpipe.c: New, from wdiff.
18153 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
18154 BISON_HAIRY.
18155 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
18156 specific values. Now it is m4 that performs the lookup.
18157 * src/parse-skel.y: Remove.
18158 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
18159 * src/output.c (actions_output, guards_output)
18160 (token_definitions_output): No longer keeps track of the output
18161 line number, hence remove the second argument.
18162 (guards_output): Check against the guard member of a rule, not the
18163 action member.
18164 Adjust callers.
18165 (output_skeleton): Don't look for the skeleton location, let m4 do
18166 that.
18167 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
18168 file will be used.
18169 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
18170 (prepare): Given that for the time being changesyntax is not
18171 usable in M4, rename the muscles using `-' to `_'.
18172 Define `defines_flag', `output_parser_name' and `output_header_name'.
18173 * src/output.h (actions_output, guards_output)
18174 (token_definitions_output): Adjust prototypes.
18175 * src/scan-skel.l: Instead of scanning the skeletons, it now
18176 processes the output of m4: `__oline__' and `#output'.
18177 * data/bison.simple: Adjust to be used by M4(sugar).
18178 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
18179 to date.
18180 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
18181 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
18182 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
18183 shamelessly stolen from CVS Autoconf.
18184
18185 2002-02-05 Akim Demaille <akim@epita.fr>
18186
18187 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
18188 * configure.in: Check for the declarations of free and malloc.
18189 * src/muscle_tab.c: Adjust.
18190
18191 2002-02-05 Akim Demaille <akim@epita.fr>
18192
18193 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
18194 which have no values.
18195
18196 2002-02-05 Akim Demaille <akim@epita.fr>
18197
18198 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
18199 * data/: here.
18200
18201 2002-01-29 Paul Eggert <eggert@twinsun.com>
18202
18203 * src/bison.simple (YYSIZE_T): Do not define merely because
18204 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
18205 On some platforms, <alloca.h> does not declare YYSTD (size_t).
18206
18207 2002-01-27 Akim Demaille <akim@epita.fr>
18208
18209 Fix `%nonassoc and eof'.
18210
18211 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
18212 which were not properly copied! Replace
18213 memcpy (res->errs, src->errs, src->nerrs);
18214 with
18215 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
18216 !!!
18217 * tests/regression.at (%nonassoc and eof): Adjust to newest
18218 Autotest: `.' is not in the PATH.
18219
18220 2002-01-27 Akim Demaille <akim@epita.fr>
18221
18222 * tests/sets.at (AT_EXTRACT_SETS): New.
18223 (Nullable): Use it.
18224 (Firsts): New.
18225
18226 2002-01-26 Akim Demaille <akim@epita.fr>
18227
18228 * tests/actions.at, tests/calc.at, tests/headers.at,
18229 * tests/torture.at: Adjust to the newest Autotest which no longer
18230 forces `.' in the PATH.
18231
18232 2002-01-25 Akim Demaille <akim@epita.fr>
18233
18234 * tests/regression.at (%nonassoc and eof): New.
18235 Suggested by Robert Anisko.
18236
18237 2002-01-24 Akim Demaille <akim@epita.fr>
18238
18239 Bison dumps core when trying to complain about broken input files.
18240 Reported by Cris van Pelt.
18241
18242 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
18243 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
18244 into...
18245 (Invalid inputs): Strengthen: exercise parse_percent_token.
18246
18247 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
18248
18249 * src/Makefile.am: Add bison.c++.
18250 * src/bison.c++: New skeleton.
18251
18252 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
18253
18254 * po/it.po: New.
18255
18256 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
18257
18258 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
18259
18260 2002-01-20 Marc Autret <marc@gnu.org>
18261
18262 * src/files.c (compute_output_file_names): Fix
18263
18264 2002-01-20 Marc Autret <marc@gnu.org>
18265
18266 * tests/output.at: New test.
18267 * src/files.c (compute_base_names): Don't map extensions when
18268 the YACC flag is set, use defaults.
18269 Reported by Evgeny Stambulchik.
18270
18271 2002-01-20 Marc Autret <marc@gnu.org>
18272
18273 * src/system.h: Need to define __attribute__ away for non-GCC
18274 compilers as well (i.e., the vendor C compiler).
18275 Suggested by Albert Chin-A-Young.
18276
18277 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
18278
18279 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
18280 canonical definition.
18281 * src/system.h: Use the canonical definition for PARAMS (avoids
18282 a conflict with the macro from lib/hash.h).
18283
18284 2002-01-11 Akim Demaille <akim@epita.fr>
18285
18286 * configure.in: Use AC_FUNC_STRNLEN.
18287 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
18288
18289 2002-01-09 Akim Demaille <akim@epita.fr>
18290
18291 * src/files.c, src/files.h (output_infix): New.
18292 (tab_extension): Remove.
18293 (compute_base_names): Compute the former, drop the latter.
18294 * src/output.c (prepare): Insert the muscles `output-infix', and
18295 `output-suffix'.
18296 * src/parse-skel.y (string, string.1): New.
18297 (section.header): Use it.
18298 (section.yacc): Remove.
18299 (prefix): Remove too.
18300 * src/scan-skel.l: Adjust.
18301 * src/bison.simple, src/bison.hairy: Adjust.
18302
18303 2002-01-09 Akim Demaille <akim@epita.fr>
18304
18305 * configure.in (WERROR_CFLAGS): Compute it.
18306 * src/Makefile.am (CFLAGS): Pass it.
18307 * tests/atlocal.in (CFLAGS): Idem.
18308 * src/files.c: Fix a few warnings.
18309 (get_extension_index): Remove, unused.
18310
18311 2002-01-08 Akim Demaille <akim@epita.fr>
18312
18313 * src/getargs.c (AS_FILE_NAME): New.
18314 (getargs): Use it to convert DOSish file names.
18315 * src/files.c (base_name): Rename as full_base_name to avoid
18316 clashes with `base_name ()'.
18317 (filename_split): New.
18318 (compute_base_names): N-th rewrite, using filename_split.
18319
18320 2002-01-08 Akim Demaille <akim@epita.fr>
18321
18322 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
18323 New, stolen from the Fileutils 4.1.
18324 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18325 * configure.in: Check for the presence of memrchr, and of its
18326 prototype.
18327
18328 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
18329
18330 * lib/hash.h (__P): Added definition for this macro.
18331 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
18332 BUILT_SOURCES, to ensure they are generated first.
18333 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
18334 %error-verbose to allow bootstrapping with bison 1.30x.
18335
18336 2002-01-06 Akim Demaille <akim@epita.fr>
18337
18338 * src/reader.c (parse_braces): Don't fetch the next char, the
18339 convention is to fetch on entry.
18340 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
18341 'switch' without a following semicolon.
18342 * tests/regression.at (braces parsing): New.
18343
18344 2002-01-06 Akim Demaille <akim@epita.fr>
18345
18346 Bison is dead wrong in its RR conflict reports.
18347
18348 * tests/torture.at (GNU Cim Grammar): New.
18349 * src/conflicts.c (count_rr_conflicts): Fix.
18350
18351 2002-01-06 Akim Demaille <akim@epita.fr>
18352
18353 Creating package.m4 from configure.ac causes too many problems.
18354
18355 * tests/Makefile.am (package.m4): Create it by hand,
18356 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
18357
18358 2002-01-06 Akim Demaille <akim@epita.fr>
18359
18360 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
18361 skeleton.h.
18362
18363 2002-01-04 Paul Eggert <eggert@twinsun.com>
18364
18365 * doc/bison.texinfo (Debugging):
18366 Remove YYSTDERR; it's no longer defined or used.
18367 Also, s/cstdio.h/cstdio/.
18368
18369 2002-01-03 Akim Demaille <akim@epita.fr>
18370
18371 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
18372
18373 2002-01-03 Akim Demaille <akim@epita.fr>
18374
18375 * src/parse-skel.y (process_skeleton): Don't bind the parser's
18376 tracing code to --trace, wait for a better --trace option, with
18377 args.
18378
18379 2002-01-03 Akim Demaille <akim@epita.fr>
18380
18381 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
18382 The ISO C++ standard is extremely clear about it: stderr is
18383 considered a macro, not a regular symbol (see table 94 `Header
18384 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
18385 Therefore std:: does not apply to it. It still does with fprintf.
18386 Also, s/cstdio.h/cstdio/.
18387
18388 2002-01-03 Akim Demaille <akim@epita.fr>
18389
18390 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
18391 for non system headers.
18392
18393 2002-01-02 Akim Demaille <akim@epita.fr>
18394
18395 Equip the skeleton chain with location tracking, runtime trace,
18396 pure parser and scanner.
18397
18398 * src/parse-skel.y: Request a pure parser, locations, and prefix
18399 renaming.
18400 (%union): Having several members with the same type does not help
18401 type mismatches, simplify.
18402 (YYPRINT, yyprint): New.
18403 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
18404 (skel_error): this.
18405 Handle locations.
18406 * src/scan-skel.l: Adjust to these changes.
18407 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
18408 (LOCATION_PRINT, skel_control_t): New.
18409
18410 2001-12-30 Akim Demaille <akim@epita.fr>
18411
18412 * src/parse-skel.y: Get rid of the shift/reduce conflict:
18413 replace `gb' with BLANKS.
18414 * src/scan-skel.l: Adjust.
18415
18416 2001-12-30 Akim Demaille <akim@epita.fr>
18417
18418 * src/system.h: We don't need nor want bcopy.
18419 Throw away MS-DOS crap: we don't need getpid.
18420 * configure.in: We don't need strndup. It was even causing
18421 problems: because Flex includes the headers *before* us,
18422 _GNU_SOURCE is not defined by config.h, and therefore strndup was
18423 not visible.
18424 * lib/xstrndup.c: New.
18425 * src/scan-skel.l: Use it.
18426 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
18427 * src/parse-skel.y: Use %directives instead of #defines.
18428
18429 2001-12-30 Akim Demaille <akim@epita.fr>
18430
18431 * src/skeleton.h: New.
18432 * src/output.c (output_parser, output_master_parser): Remove, dead
18433 code.
18434 * src/output.h (get_lines_number, actions_output, guards_output)
18435 (token_definitions_output): Prototype them.
18436 * src/parse-skel.y: Add the license notice.
18437 Include output.h and skeleton.h.
18438 (process_skeleton): Returns void, and takes a single parameter.
18439 * src/scan-skel.l: Add the license notice.
18440 Include skeleton.h.
18441 Don't use %option yylineno: it seems that then Flex imagines
18442 REJECT has been used, and therefore it won't reallocate its
18443 buffers (which makes no other sense to me than a bug). It results
18444 in warnings for `unused: yy_flex_realloc'.
18445
18446 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
18447
18448 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18449 (MUSCLE_INSERT_PREFIX): ...to there.
18450 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18451 (MUSCLE_INSERT_PREFIX): Move from here...
18452
18453 * src/bison.hairy: Add a section directive. Put braces around muscle
18454 names. This parser skeleton is still broken, but Bison should not
18455 choke on a bad muscle 'syntax'.
18456 * src/bison.simple: Add a section directive. Put braces around muscle
18457 names.
18458
18459 * src/files.h (strsuffix, stringappend): Add declarations.
18460 (tab_extension): Add declaration.
18461 (short_base_name): Add declaration.
18462
18463 * src/files.c (strsuffix, stringappend): No longer static. These
18464 functions are used in the skeleton parser.
18465 (tab_extension): New.
18466 (compute_base_names): Use the computations done in this function
18467 to guess if the generated parsers should have '.tab' in their
18468 names.
18469 (short_base_name): No longer static.
18470
18471 * src/output.c (output_skeleton): New.
18472 (output): Disable call to output_master_parser, and give a try to
18473 a new skeleton handling system.
18474 (guards_output, actions_output): No longer static.
18475 (token_definitions_output, get_lines_number): No longer static.
18476
18477 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
18478
18479 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
18480 parse-skel.y.
18481
18482 * src/parse-skel.y: New file.
18483 * src/scan-skel.l: New file.
18484
18485 2001-12-29 Akim Demaille <akim@epita.fr>
18486
18487 %name-prefix is broken.
18488
18489 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
18490 Adjust all dependencies.
18491 * tests/headers.at (export YYLTYPE): Strengthen this test: use
18492 %name-prefix.
18493
18494 Renaming yylval but not yylloc is not consistent. Now we do.
18495
18496 * src/bison.simple: Prefix yylloc if used.
18497 * doc/bison.texinfo (Decl Summary): Document that.
18498
18499 2001-12-29 Akim Demaille <akim@epita.fr>
18500
18501 * doc/bison.texinfo: Promote `%long-directive' over
18502 `%long_directive'.
18503 Remove all references to fixed-output-files, yacc is enough.
18504
18505 2001-12-29 Akim Demaille <akim@epita.fr>
18506
18507 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
18508 user prologue. These are defaults.
18509 * tests/actions.at (Mid-rule actions): Make sure the user can
18510 define YYDEBUG and YYERROR_VERBOSE.
18511
18512 2001-12-29 Akim Demaille <akim@epita.fr>
18513
18514 * src/output.c (header_output): Don't forget to export YYLTYPE and
18515 yylloc.
18516 * tests/headers.at (export YYLTYPE): New, make sure it does.
18517 * tests/regression.at (%union and --defines, Invalid CPP headers):
18518 Move to...
18519 * tests/headers.at: here.
18520
18521 2001-12-29 Akim Demaille <akim@epita.fr>
18522
18523 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
18524
18525 2001-12-29 Akim Demaille <akim@epita.fr>
18526
18527 * tests/actions.at (Mid-rule actions): Output on a single line
18528 instead of several.
18529
18530 2001-12-29 Akim Demaille <akim@epita.fr>
18531
18532 * doc/bison.texinfo: Formatting changes.
18533
18534 2001-12-29 Akim Demaille <akim@epita.fr>
18535
18536 Don't store the token defs in a muscle, just be ready to output it
18537 on command. Now possible via `symbols'. Fixes a memory leak.
18538
18539 * src/output.c (token_definitions_output): New.
18540 (output_parser, header_output): Use it.
18541 * src/reader.c (symbols_save): Remove.
18542
18543 2001-12-29 Akim Demaille <akim@epita.fr>
18544
18545 * src/bison.simple: Do not provide a default for YYSTYPE and
18546 YYLTYPE before the user's prologue. Otherwise it's hardly... a
18547 default.
18548
18549 2001-12-29 Akim Demaille <akim@epita.fr>
18550
18551 Mid-rule actions are simply... ignored!
18552
18553 * src/reader.c (readgram): Be sure to attach mid-rule actions to
18554 the empty-rule associated to the dummy symbol, not to the host
18555 rule.
18556 * tests/actions.at (Mid-rule actions): New.
18557
18558 2001-12-29 Akim Demaille <akim@epita.fr>
18559
18560 Memory leak.
18561
18562 * src/reader.c (reader): Free grammar.
18563
18564 2001-12-29 Akim Demaille <akim@epita.fr>
18565
18566 Memory leak.
18567
18568 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
18569 since it allocates it for each state, although only one is needed.
18570 (allocate_storage): Do it here.
18571
18572 2001-12-29 Akim Demaille <akim@epita.fr>
18573
18574 * src/options.h, src/options.c (create_long_option_table): Rename
18575 as...
18576 (long_option_table_new): this, with a clearer prototype.
18577 (percent_table): Remove, unused,
18578 * src/getargs.c (getargs): Adjust.
18579
18580 2001-12-29 Akim Demaille <akim@epita.fr>
18581
18582 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
18583 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
18584 as states.
18585
18586 2001-12-29 Akim Demaille <akim@epita.fr>
18587
18588 * src/lalr.c (build_relations): Rename `states' as `states1'.
18589 Sorry, I don't understand exactly what it is, no better name...
18590
18591 2001-12-29 Akim Demaille <akim@epita.fr>
18592
18593 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
18594 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
18595 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
18596 as rules.
18597
18598 2001-12-29 Akim Demaille <akim@epita.fr>
18599
18600 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
18601 ago.
18602
18603 2001-12-29 Akim Demaille <akim@epita.fr>
18604
18605 * src/reader.c, src/reader.h (user_toknums): Remove.
18606 Adjust all users to use symbols[i]->user_token_number.
18607
18608 2001-12-29 Akim Demaille <akim@epita.fr>
18609
18610 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
18611 Adjust all users to use symbols[i]->prec or ->assoc.
18612
18613 2001-12-29 Akim Demaille <akim@epita.fr>
18614
18615 * src/reader.c, src/reader.h (tags): Remove.
18616 Adjust all users to use symbols[i]->tag.
18617
18618 2001-12-29 Akim Demaille <akim@epita.fr>
18619
18620 * src/gram.h, src/gram.c (symbols): New, similar to state_table
18621 and rule_table.
18622 * src/reader.c (packsymbols): Fill this table.
18623 Drop sprec.
18624 * src/conflicts.c (resolve_sr_conflict): Adjust.
18625 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
18626 single table.
18627 Use symbols[i]->tag instead of tags[i].
18628
18629 2001-12-29 Akim Demaille <akim@epita.fr>
18630
18631 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
18632 In addition, put a comment in there, to replace...
18633 * tests/regression.at (%union and C comments): Remove.
18634
18635 2001-12-29 Akim Demaille <akim@epita.fr>
18636
18637 * tests/regression.at (Web2c Actions): Blindly move the actual
18638 output as expected output. The contents *seem* right to me, but I
18639 can't pretend reading perfectly parser tables... Nonetheless, all
18640 the other tests pass correctly, the table look OK, even though the
18641 presence of `$axiom' is to be noted: AFAICS it is useless (but
18642 harmless).
18643
18644 2001-12-29 Akim Demaille <akim@epita.fr>
18645
18646 * src/reader.c (readgram): Don't add the rule 0 if there were no
18647 rules read. In other words, add it _after_ having performed
18648 grammar sanity checks.
18649 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
18650
18651 2001-12-29 Akim Demaille <akim@epita.fr>
18652
18653 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
18654 visible, and some states have now a different number.
18655
18656 2001-12-29 Akim Demaille <akim@epita.fr>
18657
18658 * src/reader.c (readgram): Bind the initial rule's lineno to that
18659 of the first rule.
18660 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
18661 (Solved SR Conflicts): Adjust rule 0's line number.
18662
18663 2001-12-29 Akim Demaille <akim@epita.fr>
18664
18665 Fix the `GAWK Grammar' failure.
18666
18667 * src/LR0.c (final_state): Initialize to -1 so that we do compute
18668 the reductions of the first state which was mistakenly confused
18669 with the final state because precisely final_state was initialized
18670 to 0.
18671 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
18672 now noticed by Bison.
18673 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
18674 have a reduction on $default.
18675
18676 2001-12-29 Akim Demaille <akim@epita.fr>
18677
18678 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
18679 rule line numbers.
18680 * src/closure.c (print_closure): Likewise.
18681 * src/derives.c (print_derives): Likewise.
18682 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
18683 now.
18684
18685 2001-12-29 Akim Demaille <akim@epita.fr>
18686
18687 * src/lalr.c (lookaheads_print): New.
18688 (lalr): Call it when --trace-flag.
18689 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
18690 are dumped.
18691
18692 2001-12-29 Akim Demaille <akim@epita.fr>
18693
18694 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
18695 when walking through ritem, even via rule->rhs.
18696 * src/reduce.c (dump_grammar, useful_production, reduce_output)
18697 (useful_production, useless_nonterminals): Likewise.
18698 (reduce_grammar_tables): Likewise, plus update nritems.
18699 * src/nullable.c (set_nullable): Likewise.
18700 * src/lalr.c (build_relations): Likewise.
18701 * tests/sets.at (Nullable): Adjust.
18702 Fortunately, now, the $axiom is no longer nullable.
18703
18704 2001-12-29 Akim Demaille <akim@epita.fr>
18705
18706 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
18707 the 0-sentinel.
18708 * src/gram.c (ritem_longest_rhs): Likewise.
18709 * src/reduce.c (nonterminals_reduce): Likewise.
18710 * src/print_graph.c (print_graph): Likewise.
18711 * src/output.c (output_rule_data): Likewise.
18712 * src/nullable.c (set_nullable): Likewise.
18713
18714 2001-12-29 Akim Demaille <akim@epita.fr>
18715
18716 * src/output.c: Comment changes.
18717
18718 2001-12-27 Paul Eggert <eggert@twinsun.com>
18719
18720 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
18721 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
18722 Sparc, as they were causing more porting problems than the
18723 (minor) performance improvement was worth.
18724
18725 Also, catch up with 1.31's YYSTD.
18726
18727 2001-12-27 Akim Demaille <akim@epita.fr>
18728
18729 * src/output.c (output_gram): Rely on nritems, not the
18730 0-sentinel. See below.
18731 Use -1 as separator, not 0.
18732 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
18733 Rely on -1 as separator in yyrhs, instead of 0.
18734 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
18735 twice `Now at end of input', therefore there are two lines less to
18736 expect.
18737
18738 2001-12-27 Akim Demaille <akim@epita.fr>
18739
18740 * tests/regression.at (Unresolved SR Conflicts):
18741 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
18742 below.
18743
18744 2001-12-27 Akim Demaille <akim@epita.fr>
18745
18746 * src/LR0.c (new_state): Recognize the final state by the fact it
18747 is reached by eoftoken.
18748 (insert_start_shifting_state, insert_eof_shifting_state)
18749 (insert_accepting_state, augment_automaton): Remove, since now
18750 these states are automatically computed from the initial state.
18751 (generate_states): Adjust.
18752 * src/print.c: When reporting a rule number to the user, substract
18753 1, so that the axiom rule is rule 0, and the first user rule is 1.
18754 * src/reduce.c: Likewise.
18755 * src/print_graph.c (print_core): For the time being, just as for
18756 the report, depend upon --trace-flags to dump the full set of
18757 items.
18758 * src/reader.c (readgram): Once the grammar read, insert the rule
18759 0: `$axiom: START-SYMBOL $'.
18760 * tests/set.at: Adjust: rule 0 is now displayed, and since the
18761 number of the states has changed (the final state is no longer
18762 necessarily the last), catch up.
18763
18764 2001-12-27 Akim Demaille <akim@epita.fr>
18765
18766 Try to make the use of the eoftoken valid. Given that its value
18767 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
18768 is used instead of > 0 where appropriate, (ii), depend upon nritems
18769 instead of the 0-sentinel.
18770
18771 * src/gram.h, src/gram.c (nritems): New.
18772 Expected to be duplication of nitems, but for the time being...
18773 * src/reader.c (packgram): Assert nritems and nitems are equal.
18774 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
18775 * src/closure.c (print_closure, print_fderives): Likewise.
18776 * src/gram.c (ritem_print): Likewise.
18777 * src/print.c (print_core, print_grammar): Likewise.
18778 * src/print_graph.c: Likewise.
18779
18780 2001-12-27 Akim Demaille <akim@epita.fr>
18781
18782 * src/main.c (main): If there are complains after grammar
18783 reductions, then output the report anyway if requested, then die.
18784 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
18785 * src/reader.c (eoftoken): New.
18786 (parse_token_decl): If the token being defined has value `0', it
18787 is the eoftoken.
18788 (packsymbols): No longer hack `tags' to insert `$' by hand.
18789 Be sure to preserve the value of the eoftoken.
18790 (reader): Make sure eoftoken is defined.
18791 Initialize nsyms to 0: now eoftoken is created just like the others.
18792 * src/print.c (print_grammar): Don't special case the eof token.
18793 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
18794 lie anyway, albeit pleasant.
18795 * tests/calc.at: Exercise error messages with eoftoken.
18796 Change the grammar so that empty input is invalid.
18797 Adjust expectations.
18798 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
18799
18800 2001-12-27 Akim Demaille <akim@epita.fr>
18801
18802 * configure.in: Check the protos of strchr ans strspn.
18803 Replace strchr if needed.
18804 * src/system.h: Provide the protos of strchr, strspn and memchr if
18805 missing.
18806 * lib/strchr.c: New.
18807 * src/reader.c (symbols_save): Use strchr.
18808
18809 2001-12-27 Akim Demaille <akim@epita.fr>
18810
18811 * src/print.c, src/print_graph.c (escape): New.
18812 Use it to quote the TAGS outputs.
18813 * src/print_graph.c (print_state): Now errors are in red, and
18814 reductions in green.
18815 Prefer high to wide: output the state number on a line of its own.
18816
18817 2001-12-27 Akim Demaille <akim@epita.fr>
18818
18819 * src/state.h, src/state.c (reductions_new): New.
18820 * src/LR0.c (set_state_table): Let all the states have a
18821 `reductions', even if reduced to 0.
18822 (save_reductions): Adjust.
18823 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
18824 * src/print.c (print_reductions, print_actions): Adjust.
18825 * src/output.c (action_row): Adjust.
18826
18827 2001-12-27 Akim Demaille <akim@epita.fr>
18828
18829 * src/state.h, src/state.c (errs_new, errs_dup): New.
18830 * src/LR0.c (set_state_table): Let all the states have an errs,
18831 even if reduced to 0.
18832 * src/print.c (print_errs, print_reductions): Adjust.
18833 * src/output.c (output_actions, action_row): Adjust.
18834 * src/conflicts.c (resolve_sr_conflict): Adjust.
18835
18836 2001-12-27 Akim Demaille <akim@epita.fr>
18837
18838 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
18839
18840 2001-12-27 Akim Demaille <akim@epita.fr>
18841
18842 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
18843 * src/print.c: here.
18844 (lookaheadset, shiftset): New, used as additional storage by
18845 print_reductions.
18846 (print_results): Adjust.
18847 (print_shifts, print_gotos, print_errs): New, extracted from...
18848 (print_actions): here.
18849 * src/print_graph.c (print_actions): Remove dead code.
18850
18851 2001-12-27 Akim Demaille <akim@epita.fr>
18852
18853 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
18854 `$n' and `@n'.
18855
18856 2001-12-27 Akim Demaille <akim@epita.fr>
18857
18858 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
18859 (build_relations): Adjust.
18860
18861 2001-12-27 Akim Demaille <akim@epita.fr>
18862
18863 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
18864 duplication.
18865
18866 2001-12-27 Akim Demaille <akim@epita.fr>
18867
18868 * src/reader.c (packgram): Catch nitems overflows.
18869
18870 2001-12-27 Akim Demaille <akim@epita.fr>
18871
18872 * src/files.c, src/files.h (guard_obstack): Remove.
18873 * src/output.c (output): Adjust.
18874 * src/reader.c (parse_braces): New, factoring...
18875 (copy_action, copy_guard): these two which are renamed as...
18876 (parse_action, parse_guard): these.
18877 As a voluntary consequence, using braces around guards is now
18878 mandatory.
18879
18880 2001-12-27 Akim Demaille <akim@epita.fr>
18881
18882 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
18883 * src/reader.c (symbol_list): `guard' and `guard_line' are new
18884 members.
18885 (symbol_list_new): Adjust.
18886 (copy_action): action_line is the first line, not the last.
18887 (copy_guard): Just as for actions, store the `action' only, not
18888 the switch/case/break flesh.
18889 Don't parse the user action that might follow the guard, let...
18890 (readgram): do it, i.e., now, there can be an action after a
18891 guard.
18892 In other words the guard is just explicitly optional.
18893 (packgram): Adjust.
18894 * src/output.c (guards_output): New.
18895 (output_parser): Call it when needed.
18896 (output): Also free the guard and attrs obstacks.
18897 * src/files.c, src/files.h (obstack_save): Remove.
18898 (output_files): Remove.
18899 As a result, if one needs the former `.act' file, using an
18900 appropriate skeleton which requires actions and guards is now
18901 required.
18902 * src/main.c (main): Adjust.
18903 * tests/semantic.at: New.
18904 * tests/regression.at: Use `input.y' as input file name.
18905 Avoid 8+3 problems by requiring input.c when the test needs the
18906 parser.
18907
18908 2001-12-27 Akim Demaille <akim@epita.fr>
18909
18910 * src/reader.c (symbol_list_new): Be sure to initialize all the
18911 fields.
18912
18913 2001-12-27 Akim Demaille <akim@epita.fr>
18914
18915 All the hacks using a final pseudo state are now useless.
18916
18917 * src/LR0.c (set_state_table): state_table holds exactly nstates.
18918 * src/lalr.c (nLA): New.
18919 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
18920 instead of lookaheadsp from the pseudo state (nstate + 1).
18921
18922 2001-12-27 Akim Demaille <akim@epita.fr>
18923
18924 * src/output.c (action_row, token_actions): Use a state_t instead
18925 of a integer, and nlookaheads instead of the following state's
18926 lookaheadsp.
18927
18928 2001-12-27 Akim Demaille <akim@epita.fr>
18929
18930 * src/conflicts.c (log_resolution, flush_shift)
18931 (resolve_sr_conflict, set_conflicts, solve_conflicts)
18932 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
18933 (conflicts_print, print_reductions): Use a state_t instead of an
18934 integer when referring to a state.
18935 As much as possible, depend upon nlookaheads, instead of the
18936 `lookaheadsp' member of the following state (since lookaheads of
18937 successive states are successive, the difference between state n + 1
18938 and n served as the number of lookaheads for state n).
18939 * src/lalr.c (add_lookback_edge): Likewise.
18940 * src/print.c (print_core, print_actions, print_state)
18941 (print_results): Likewise.
18942 * src/print_graph.c (print_core, print_actions, print_state)
18943 (print_graph): Likewise.
18944 * src/conflicts.h: Adjust.
18945
18946 2001-12-27 Akim Demaille <akim@epita.fr>
18947
18948 * src/bison.hairy: Formatting/comment changes.
18949 ANSIfy.
18950 Remove `register' indications.
18951 Add plenty of `static'.
18952
18953 2001-12-27 Akim Demaille <akim@epita.fr>
18954
18955 * src/output.c (prepare): Drop the muscle `ntbase' which
18956 duplicates ntokens.
18957 * src/bison.simple: Formatting/comment changes.
18958 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
18959 is an undocumented synonym.
18960
18961 2001-12-22 Akim Demaille <akim@epita.fr>
18962
18963 * src/output.c (output_table_data): Change the prototype to use
18964 `int' for array ranges: some invocations do pass an int, not a
18965 short.
18966 Reported by Wayne Green.
18967
18968 2001-12-22 Akim Demaille <akim@epita.fr>
18969
18970 Some actions of web2c.y are improperly triggered.
18971 Reported by Mike Castle.
18972
18973 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
18974 * tests/regression.at (Web2c): Rename as...
18975 (Web2c Report): this.
18976 (Web2c Actions): New.
18977
18978 2001-12-22 Akim Demaille <akim@epita.fr>
18979
18980 Reductions in web2c.y are improperly reported.
18981 Reported by Mike Castle.
18982
18983 * src/conflicts.c (print_reductions): Fix.
18984 * tests/regression.at (Web2c): New.
18985
18986 2001-12-18 Akim Demaille <akim@epita.fr>
18987
18988 Some host fail on `assert (!"foo")', which expands to
18989 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
18990 Reported by Nelson Beebee.
18991
18992 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
18993 `#define it_succeeded 0' and `assert (it_succeeded)'.
18994
18995 2001-12-17 Marc Autret <autret_m@epita.fr>
18996
18997 * src/bison.simple: Don't hard code the skeleton line and filename.
18998 * src/output.c (output_parser): Rename 'line' as 'output_line'.
18999 New line counter 'skeleton_line' (skeleton-line muscle).
19000
19001 2001-12-17 Paul Eggert <eggert@twinsun.com>
19002
19003 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
19004 YYDEBUG must be defined to a nonzero value.
19005
19006 * src/bison.simple (yytname): Do not assume that the user defines
19007 YYDEBUG to a properly parenthesized expression.
19008
19009 2001-12-17 Akim Demaille <akim@epita.fr>
19010
19011 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
19012 nlookaheads is a new member.
19013 Adjust all users.
19014 * src/lalr.h (nlookaheads): Remove this orphan declaration.
19015 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
19016 state.
19017
19018 2001-12-17 Akim Demaille <akim@epita.fr>
19019
19020 * src/files.h, src/files.c (open_files, close_files): Remove.
19021 * src/main.c (main): Don't open/close files, nor invoke lex_free,
19022 let...
19023 * src/reader.c (reader): Do it.
19024
19025 2001-12-17 Akim Demaille <akim@epita.fr>
19026
19027 * src/conflicts.c (print_reductions): Formatting changes.
19028
19029 2001-12-17 Akim Demaille <akim@epita.fr>
19030
19031 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
19032 (flush_reduce): New.
19033 (resolve_sr_conflict): Adjust.
19034
19035 2001-12-17 Akim Demaille <akim@epita.fr>
19036
19037 * src/output.c (output_obstack): Be static and rename as...
19038 (format_obstack): this, to avoid any confusion with files.c's
19039 output_obstack.
19040 * src/reader.h (muscle_obstack): Move to...
19041 * src/output.h: here, since it's defined in output.c.
19042
19043 2001-12-17 Akim Demaille <akim@epita.fr>
19044
19045 * src/output.c (action_row, save_column, default_goto)
19046 (sort_actions, matching_state, pack_vector): Better variable
19047 locality.
19048
19049 2001-12-17 Akim Demaille <akim@epita.fr>
19050
19051 * src/output.c: Various formatting changes.
19052
19053 2001-12-17 Akim Demaille <akim@epita.fr>
19054
19055 * src/files.c (output_files): Free the output_obstack.
19056 * src/main.c (main): Call print and print_graph conditionally.
19057 * src/print.c (print): Work unconditionally.
19058 * src/print_graph.c (print_graph): Work unconditionally.
19059 * src/conflicts.c (log_resolution): Output only if verbose_flag.
19060
19061 2001-12-16 Marc Autret <autret_m@epita.fr>
19062
19063 * src/output.c (actions_output): Fix. When we use %no-lines,
19064 there is one less line per action.
19065
19066 2001-12-16 Marc Autret <autret_m@epita.fr>
19067
19068 * src/bison.simple: Remove a useless #line directive.
19069 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
19070 * src/output.c (get_lines_number): New.
19071 (output_parser): Adjust, now takes care about the lines of a
19072 output muscles.
19073 Fix line numbering.
19074 (actions_output): Computes the number of lines taken by actions.
19075 (output_master_parser): Insert new skeleton which is the name of
19076 the output parser file name.
19077
19078 2001-12-15 Marc Autret <autret_m@epita.fr>
19079
19080 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
19081
19082 2001-12-15 Marc Autret <autret_m@epita.fr>
19083
19084 * src/output.c (output_gram): Keep track of the hairy one.
19085
19086 2001-12-15 Akim Demaille <akim@epita.fr>
19087
19088 Make `make distcheck' work.
19089
19090 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
19091 system.h which uses libgettext.h.
19092
19093 2001-12-15 Akim Demaille <akim@epita.fr>
19094
19095 * src/nullable.c (set_nullable): Useless rules must be skipped,
19096 otherwise, since we range over their symbols, we might look at a
19097 nonterminal which no longer ``exists'', i.e., it is not counted in
19098 `nvars', hence we overflow our arrays.
19099
19100 2001-12-15 Akim Demaille <akim@epita.fr>
19101
19102 The header can also be produced directly, without any obstack!
19103 Yahoo!
19104
19105 * src/files.c, src/files.h (defines_obstack): Remove.
19106 (compute_header_macro): Global.
19107 (defines_obstack_save): Remove.
19108 * src/reader.c (parse_union_decl): No longer output to
19109 defines_obstack: its content can be found in the `stype' muscle
19110 anyway.
19111 (output_token_translations): Merge into...
19112 (symbols_output): this.
19113 Rename as...
19114 (symbols_save): this.
19115 (reader): Adjust.
19116 * src/output.c (header_output): New.
19117 (output): Call it.
19118
19119 2001-12-15 Akim Demaille <akim@epita.fr>
19120
19121 * src/reader.c (parse_union_decl): Instead of handling two obstack
19122 simultaneously, use one to define the `stype' muscle, and use the
19123 value of the latter to fill defines_obstack.
19124 (copy_comment): Remove.
19125 (copy_comment2): Work for a single obstack.
19126 Rename as...
19127 (copy_comment): this.
19128
19129 2001-12-15 Akim Demaille <akim@epita.fr>
19130
19131 * src/lex.c, src/lex.h (xgetc): No longer static.
19132 * src/reader.c (parse_union_decl): Revamp.
19133
19134 2001-12-15 Akim Demaille <akim@epita.fr>
19135
19136 Still making progress in separating Bison into (i) input, (ii)
19137 process, (iii) output: now we can directly output the parser file
19138 without using table_obstack at all.
19139
19140 * src/files.c, src/files.h (table_obstack): Bye bye.
19141 (parser_file_name): New.
19142 * src/files.c (compute_output_file_names): Compute it.
19143 * src/output.c (actions_output, output_parser)
19144 (output_master_parser): To a file instead of an obstack.
19145
19146 2001-12-15 Akim Demaille <akim@epita.fr>
19147
19148 Attach actions to rules, instead of pre-outputting them to
19149 actions_obstack.
19150
19151 * src/gram.h (rule_t): action and action_line are new members.
19152 * src/reader.c (symbol_list): Likewise.
19153 (copy_action): Save the actions within the rule.
19154 (packgram): Save them in rule_table.
19155 * src/output.c (actions_output): New.
19156 (output_parser): Use it on `%%actions'.
19157 (output_rule_data): Don't free rule_table.
19158 (output): Do it.
19159 (prepare): Don't save the `action' muscle.
19160 * src/bison.simple: s/%%action/%%actions/.
19161
19162 2001-12-15 Akim Demaille <akim@epita.fr>
19163
19164 * src/reader.c (copy_action): When --yacc, don't append a `;'
19165 to the user action: let it fail if lacking.
19166 Suggested by Arnold Robbins and Tom Tromey.
19167
19168 2001-12-14 Akim Demaille <akim@epita.fr>
19169
19170 * src/lex.c (literalchar): Simply return the char you decoded, non
19171 longer mess around with obstacks and int pointers.
19172 Adjust all callers.
19173
19174 2001-12-14 Akim Demaille <akim@epita.fr>
19175
19176 * src/lex.c (literalchar): Don't escape the special characters,
19177 just decode them, and keep them as char (before, eol was output as
19178 the 2 char string `\n' etc.).
19179 * src/output.c (output_rule_data): Use quotearg to output the
19180 token strings.
19181
19182 2001-12-13 Paul Eggert <eggert@twinsun.com>
19183
19184 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
19185 Do not infringe on the global user namespace when using C++.
19186 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
19187 All uses of `fprintf' and `stderr' changed.
19188
19189 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
19190
19191 2001-12-13 Akim Demaille <akim@epita.fr>
19192
19193 The computation of nullable is broken: it doesn't handle empty
19194 RHS's properly.
19195
19196 * tests/torture.at (GNU AWK Grammar): New.
19197 * tests/sets.at (Nullable): New.
19198 * src/nullable.c (set_nullable): Instead of blindly looping over
19199 `ritems', loop over the rules, and then over their rhs's.
19200
19201 Work around Autotest bugs.
19202
19203 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
19204 frame, because Autotest understand lines starting with a `+' as
19205 traces from the shell. Then, they are not processed properly.
19206 Admittedly an Autotest bug, but we don't have time to wait for
19207 Autotest to catch up.
19208 * tests/regression.at (Broken Closure): Adjust to the new table
19209 frames.
19210 Move to...
19211 * tests/sets.at: here.
19212
19213 2001-12-13 Akim Demaille <akim@epita.fr>
19214
19215 * src/closure.c (closure): Use nrules instead of playing tricks
19216 with BITS_PER_WORD.
19217
19218 2001-12-13 Akim Demaille <akim@epita.fr>
19219
19220 * src/print.c (print_actions): Output the handling of `$' as the
19221 traces do: shifting the token EOF. Before EOF was treated as a
19222 nonterminal.
19223 * tests/regression.at: Adjust some tests.
19224 * src/print_graph.c (print_core): Complete the set of items via
19225 closure. The next-to-final and final states are still unsatisfying,
19226 but that's to be addressed elsewhere.
19227 No longer output the rule numbers, but do output the state number.
19228 A single loop for the shifts + gotos is enough, but picked a
19229 distinct color for each.
19230 (print_graph): Initialize and finalize closure.
19231
19232 2001-12-13 Akim Demaille <akim@epita.fr>
19233
19234 * src/reader.c (readgram): Remove dead code, an strip useless
19235 braces.
19236 (get_type): Remove, unused.
19237
19238 2001-12-12 Akim Demaille <akim@epita.fr>
19239
19240 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
19241 on that of lib/error.c.
19242
19243 2001-12-12 Akim Demaille <akim@epita.fr>
19244
19245 Some hosts don't like `/' in includes.
19246
19247 * src/system.h: Include libgettext.h without qualifying the path.
19248 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
19249 $(top_srcdir).
19250
19251 2001-12-11 Marc Autret <autret_m@epita.fr>
19252
19253 * src/output.c (output_parser): Remove useless muscle.
19254
19255 2001-12-11 Marc Autret <autret_m@epita.fr>
19256
19257 * src/bison.simple: Remove #line just before %%epilogue. It
19258 is now handled in ...
19259 * src/reader.c (read_additionnal_code): Add the output of a
19260 #line for the epilogue.
19261
19262 2001-12-10 Marc Autret <autret_m@epita.fr>
19263
19264 * src/reader.c (copy_definition): Re-use CPP-outed code which
19265 replace precedent remove.
19266 * src/bison.simple: Remove #line before %%prologue because
19267 %%input-line is wrong at this time.
19268
19269 2001-12-10 Marc Autret <autret_m@epita.fr>
19270
19271 * src/reader.c (symbols_output): Clean up.
19272 * src/output.c (output_gram, output): Clean up.
19273
19274 2001-12-10 Akim Demaille <akim@epita.fr>
19275
19276 * src/lalr.c (initialize_lookaheads): New. Extracted from...
19277 * src/LR0.c (set_state_table): here.
19278 * src/lalr.c (lalr): Call it.
19279
19280 2001-12-10 Akim Demaille <akim@epita.fr>
19281
19282 * src/state.h (shifts): Remove the `number' member: shifts are
19283 attached to state, hence no longer need to be labelled with a
19284 state number.
19285
19286 2001-12-10 Akim Demaille <akim@epita.fr>
19287
19288 Now that states have a complete set of members, the linked list of
19289 shifts is useless: just fill directly the state's shifts member.
19290
19291 * src/state.h (shifts): Remove the `next' member.
19292 * src/LR0.c (first_state, last_state): Remove.
19293 Adjust the callers.
19294 (augment_automaton): Don't look for the shifts that must be added
19295 a shift on EOF: it is those of the state we looked for! But now,
19296 since shifts are attached, it is no longer needed to looking
19297 merely by its id: its number.
19298
19299 2001-12-10 Akim Demaille <akim@epita.fr>
19300
19301 * src/LR0.c (augment_automaton): Better variable locality.
19302 Remove an impossible branch: if there is a state corresponding to
19303 the start symbol being shifted, then there is shift for the start
19304 symbol from the initial state.
19305
19306 2001-12-10 Akim Demaille <akim@epita.fr>
19307
19308 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
19309 only when appropriate: when insert_start_shifting_state' is not
19310 invoked.
19311 * tests/regression.at (Rule Line Numbers): Adjust.
19312
19313 2001-12-10 Akim Demaille <akim@epita.fr>
19314
19315 * src/LR0.c (augment_automaton): Now that all states have shifts,
19316 merge the two cases addition shifts to the initial state.
19317
19318 2001-12-10 Akim Demaille <akim@epita.fr>
19319
19320 * src/lalr.c (set_state_table): Move to...
19321 * src/LR0.c: here.
19322 * src/lalr.c (lalr): Don't call it...
19323 * src/LR0.c (generate_states): do it.
19324 * src/LR0.h (first_state): Remove, only the table is used.
19325
19326 2001-12-10 Akim Demaille <akim@epita.fr>
19327
19328 * src/LR0.h (first_shift, first_reduction): Remove.
19329 * src/lalr.c: Don't use first_shift: find shifts through the
19330 states.
19331
19332 2001-12-10 Akim Demaille <akim@epita.fr>
19333
19334 * src/LR0.c: Attach shifts to states as soon as they are
19335 computed.
19336 * src/lalr.c (set_state_table): Instead of assigning shifts to
19337 state, just assert that the mapping was properly done.
19338
19339 2001-12-10 Akim Demaille <akim@epita.fr>
19340
19341 * src/LR0.c (insert_start_shift): Rename as...
19342 (insert_start_shifting_state): this.
19343 (insert_eof_shifting_state, insert_accepting_state): New.
19344 (augment_automaton): Adjust.
19345 Better locality of the variables.
19346 When looking if the start_symbol is shifted from the initial
19347 state, using `while (... symbol != start_symbol ...)' sounds
19348 better than `while (... symbol < start_symbol ...)': If fail
19349 to see how the order between symbols could be relevant!
19350
19351 2001-12-10 Akim Demaille <akim@epita.fr>
19352
19353 * src/getargs.h: Don't declare `spec_name_prefix' and
19354 `spec_file_prefix', declared by src/files.h.
19355 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
19356 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
19357 * src/output.c (prepare): Adjust.
19358 * src/reader.c (symbols_output): Likewise.
19359 * src/vmsgetargs.c: Vaguely adjust, but who cares?
19360
19361 2001-12-10 Akim Demaille <akim@epita.fr>
19362
19363 * src/muscle_tab.c (muscle_init): NULL is a better default than
19364 `"0"'.
19365
19366 2001-12-10 Akim Demaille <akim@epita.fr>
19367
19368 * src/reader.c (reader): Calling symbols_output once is enough.
19369
19370 2001-12-10 Akim Demaille <akim@epita.fr>
19371
19372 Now that states have a complete set of members, the linked list of
19373 reductions is useless: just fill directly the state's reductions
19374 member.
19375
19376 * src/state.h (struct reductions): Remove member `number' and
19377 `next'.
19378 * src/LR0.c (first_reduction, last_reduction): Remove.
19379 (save_reductions): Don't link the new reductions, store them in
19380 this_state.
19381 * src/lalr.c (set_state_table): No need to attach reductions to
19382 states, it's already done.
19383 * src/output.c (output_actions): No longer free the shifts, then
19384 the reductions, then the states: free all the states and their
19385 members.
19386
19387 2001-12-10 Akim Demaille <akim@epita.fr>
19388
19389 * src/options.c (OPTN, DRTV, BOTH): New.
19390 (option_table): Use them.
19391
19392 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
19393 the job of system.h.
19394 * src/options.c: Don't include stdio.h and xalloc.h for the same
19395 reasons.
19396
19397 2001-12-10 Akim Demaille <akim@epita.fr>
19398
19399 * src/output.c (output, prepare): Make sure the values of the
19400 muscles `action' and `prologue' are 0-terminated.
19401
19402 2001-12-10 Akim Demaille <akim@epita.fr>
19403
19404 Clean up GCC warnings.
19405
19406 * src/reader.c (copy_action): `buf' is not used.
19407 (parse_skel_decl): Be static.
19408 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
19409 * src/options.h (create_long_option_table): Have a real prototype.
19410 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
19411 (hash_delete_at): Return const void *.
19412 Adjust casts to preserve the const.
19413
19414 2001-12-10 Akim Demaille <akim@epita.fr>
19415
19416 * configure.in: Require 2.52g.
19417 M4 is not needed, but AUTOM4TE is.
19418 * m4/m4.m4: Remove.
19419 * tests/Makefile.am: Adjust.
19420
19421 2001-12-10 Akim Demaille <akim@epita.fr>
19422
19423 One structure for states is enough, even though theoretically
19424 there are LR(0) states and LALR(1) states.
19425
19426 * src/lalr.h (state_t): Remove.
19427 (state_table): Be state_t **, not state_t *.
19428 * src/state.h (core, CORE_ALLOC): Rename as...
19429 (state_t, STATE_ALLOC): this.
19430 Add the LALR(1) members: shifts, reductions, errs.
19431 * src/LR0.c (state_table): Rename as...
19432 (state_hash): this, to avoid name clashes with the global
19433 `state_table'.
19434 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
19435 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
19436
19437 2001-12-10 Akim Demaille <akim@epita.fr>
19438
19439 Bison dumps core on bash.y.
19440 Reported by Pascal Bart.
19441
19442 * src/warshall.c (bitmatrix_print): New.
19443 (TC): Use it.
19444 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
19445 j must be the outer loop.
19446 * tests/regression.at (Broken Closure): New.
19447
19448 2001-12-05 Akim Demaille <akim@epita.fr>
19449
19450 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
19451 its argument.
19452 Reported by Peter Hamorsky.
19453
19454 2001-12-05 Akim Demaille <akim@epita.fr>
19455
19456 * src/conflicts.c (err_table): Remove.
19457 (resolve_sr_conflict): Adjust.
19458 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
19459 Rename as...
19460 (state_t.reductions, state_t.shifts): this.
19461
19462 2001-12-05 Akim Demaille <akim@epita.fr>
19463
19464 * src/reduce.c (reduce_grammar_tables): No longer disable the
19465 removal of useless rules via CPP but via `if (0)', so that the
19466 compiler still check the code is valid.
19467 For instance, it should have noticed `rline' no longer exists: use
19468 the `line' member of rule_t.
19469 * src/gram.c (dummy, rline): Remove, unused.
19470
19471 2001-12-05 Akim Demaille <akim@epita.fr>
19472
19473 * src/output.c (pack_vector): Use assert, not berror.
19474 * src/main.c (berror): Remove, unused.
19475
19476 2001-12-05 Akim Demaille <akim@epita.fr>
19477
19478 New experimental feature: if --verbose --trace output all the
19479 items of a state, not only its kernel.
19480
19481 * src/print.c (print_core): If `trace_flag', then invoke closure
19482 before outputting the items of the state (print_core is no longer
19483 a correct name them).
19484 (print_results): Invoke new_closure/free_closure if needed.
19485
19486 2001-12-05 Akim Demaille <akim@epita.fr>
19487
19488 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
19489 * src/closure.c, src/closure.h (itemsetsize): Rename as...
19490 (nitemset): for consistency with the rest of the project.
19491
19492 2001-12-05 Akim Demaille <akim@epita.fr>
19493
19494 * src/closure.c (print_closure): Improve.
19495 (closure): Use it for printing input and output.
19496
19497 2001-12-05 Akim Demaille <akim@epita.fr>
19498
19499 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
19500 indexed by nonterminals.
19501
19502 2001-12-05 Akim Demaille <akim@epita.fr>
19503
19504 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
19505 what it was!).
19506 * src/warshall.h: Remove accidental duplication of the content.
19507
19508 2001-12-05 Akim Demaille <akim@epita.fr>
19509
19510 * src/closure.c (set_fderives): De-obfuscate.
19511
19512 2001-12-05 Akim Demaille <akim@epita.fr>
19513
19514 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
19515
19516 2001-12-05 Akim Demaille <akim@epita.fr>
19517
19518 * src/closure.c (set_firsts): De-obfuscate.
19519
19520 2001-12-05 Akim Demaille <akim@epita.fr>
19521
19522 * src/output.c (action_row): De-obfuscate
19523 using the good o' techniques: arrays not pointers, variable
19524 locality, BITISSET, RESETBIT etc.
19525
19526 2001-12-05 Akim Demaille <akim@epita.fr>
19527
19528 Pessimize the code to simplify it: from now on, all the states
19529 have a valid SHIFTS, which NSHIFTS is possibly 0.
19530
19531 * src/LR0.c (shifts_new): Be global and move to..
19532 * src/state.c, src/state.h: here.
19533 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
19534 * src/print_graph: Adjust.
19535
19536 2001-12-05 Akim Demaille <akim@epita.fr>
19537
19538 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
19539 * src/conflicts.c: Use it.
19540 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
19541 incorrectly ``simplified''.
19542
19543 2001-12-05 Akim Demaille <akim@epita.fr>
19544
19545 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
19546 using the good o' techniques: arrays not pointers, variable
19547 locality, BITISSET, RESETBIT etc.
19548
19549 2001-12-05 Akim Demaille <akim@epita.fr>
19550
19551 * src/state.h (SHIFT_SYMBOL): New.
19552 * src/conflicts.c: Use it to deobfuscate.
19553
19554 2001-12-05 Akim Demaille <akim@epita.fr>
19555
19556 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
19557 (print_reductions): De-obfuscate using the good o' techniques:
19558 arrays not pointers, variable locality, BITISSET.
19559
19560 2001-12-05 Akim Demaille <akim@epita.fr>
19561
19562 * src/conflicts.c (print_reductions): Arrays, not pointers.
19563 Use BITISSET.
19564
19565 2001-12-05 Akim Demaille <akim@epita.fr>
19566
19567 * src/conflicts.c (print_reductions): Pessimize, but clarify.
19568
19569 2001-12-05 Akim Demaille <akim@epita.fr>
19570
19571 * src/conflicts.c (print_reductions): Improve variable locality.
19572
19573 2001-12-05 Akim Demaille <akim@epita.fr>
19574
19575 * src/conflicts.c (print_reductions): Pessimize, but clarify.
19576
19577 2001-12-05 Akim Demaille <akim@epita.fr>
19578
19579 * src/conflicts.c (print_reductions): Improve variable locality.
19580
19581 2001-12-05 Akim Demaille <akim@epita.fr>
19582
19583 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
19584 * src/lalr.c: Use them.
19585
19586 2001-12-05 Akim Demaille <akim@epita.fr>
19587
19588 * src/LR0.c (augment_automaton): Formatting changes.
19589 Better variable locality.
19590
19591 2001-12-05 Akim Demaille <akim@epita.fr>
19592
19593 * src/lalr.c (matrix_print): New.
19594 (transpose): Use it.
19595 Use arrays instead of pointers.
19596
19597 2001-12-05 Akim Demaille <akim@epita.fr>
19598
19599 * src/lalr.c (maxrhs): Move to...
19600 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
19601 * src/lalr.c (build_relations): Adjust.
19602
19603 2001-12-05 Akim Demaille <akim@epita.fr>
19604
19605 * src/lalr.c (transpose): Free the memory allocated to the
19606 argument, as it is replaced by the results by the unique caller.
19607 (build_relations): Merely invoke transpose: it handles the memory
19608 deallocation.
19609 Improve variable locality.
19610 Avoid variables used as mere abbreviations.
19611 (compute_lookaheads): Use arrays instead of pointers.
19612
19613 2001-12-05 Akim Demaille <akim@epita.fr>
19614
19615 * src/lalr.c (initialize_F): Improve variable locality.
19616 Avoid variables used as mere abbreviations.
19617
19618 2001-12-05 Akim Demaille <akim@epita.fr>
19619
19620 * src/derives.c (print_derives): Display the ruleno.
19621 * src/lalr.c (initialize_F, transpose): Better variable locality
19622 to improve readability.
19623 Avoid variables used as mere abbreviations.
19624
19625 2001-12-05 Akim Demaille <akim@epita.fr>
19626
19627 * src/lalr.c (traverse): Use arrays instead of pointers.
19628
19629 2001-12-05 Akim Demaille <akim@epita.fr>
19630
19631 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
19632 the handling of squeue.
19633 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
19634
19635 2001-12-05 Akim Demaille <akim@epita.fr>
19636
19637 Because useless nonterminals are now kept alive (instead of being
19638 `destroyed'), we now sometimes examine them, and store information
19639 related to them. Hence we need to know their number, and adjust
19640 memory allocations.
19641
19642 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
19643 static.
19644 * src/LR0.c (allocate_itemsets): The memory allocated to
19645 `symbol_count' was used for two different purpose: once to count
19646 the number of occurrences of each symbol, and later reassigned to
19647 `shift_symbol', containing the symbol that can be shifted from a
19648 given state.
19649 Deobfuscate, i.e., allocate, use and free `symbol_count' here
19650 only, and...
19651 (new_itemsets): Allocate `shift_symbol' here.
19652 (allocate_itemsets): symbol_count includes useless nonterminals.
19653 Make room for them.
19654 (free_storage): Use `free', not `XFREE', for pointers that cannot
19655 be null.
19656
19657 2001-12-05 Akim Demaille <akim@epita.fr>
19658
19659 * src/nullable.c (set_nullable): Deobfuscate the handling of
19660 ritem.
19661 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
19662
19663 2001-12-05 Akim Demaille <akim@epita.fr>
19664
19665 * src/gram.c, src/gram.h (ritem_print): New.
19666 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
19667 (This useless function was defined only to work around VMS linkers
19668 that can't handle compilation units with variables only).
19669 * src/reduce.c (dump_grammar): Use it to trace the construction of
19670 ritem.
19671
19672 2001-12-04 Paul Eggert <eggert@twinsun.com>
19673
19674 * src/bison.simple (union yyalloc): Change member names
19675 to be the same as the stack names.
19676 (yyparse): yyptr is now union yyalloc *, not char *.
19677 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
19678 and may generate better code on some machines.
19679 (yystpcpy): Use prototype if __STDC__ is defined, not just
19680 if __cplusplus is defined.
19681
19682 2001-11-30 Akim Demaille <akim@epita.fr>
19683
19684 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
19685 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
19686 Gettext doesn't compile cleanly, and dies with -Werror.
19687 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
19688 Include WARNING_CFLAGS here.
19689 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
19690 before being defined.
19691
19692 2001-11-27 Paul Eggert <eggert@twinsun.com>
19693
19694 * lib/quotearg.h (quotearg_n, quotearg_n_style):
19695 First arg is int, not unsigned.
19696 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
19697 (SIZE_MAX, UINT_MAX): New macros.
19698 (quotearg_n_options): Abort if N is negative.
19699 Avoid overflow check on hosts where size_t is 64 bits and int
19700 is 32 bits, as overflow is impossible there.
19701 Fix off-by-one typo that caused unnecessary reallocation.
19702
19703 2001-11-29 Paul Eggert <eggert@twinsun.com>
19704
19705 Name space cleanup in generated parser.
19706
19707 * doc/bison.texinfo (Bison Parser): Discuss system headers
19708 and their effect on the user name space.
19709
19710 * src/bison.simple:
19711 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
19712 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
19713 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
19714
19715 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
19716 on user names when possible.
19717
19718 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
19719 Simplify test for whather <alloca.h> exists.
19720
19721 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
19722
19723 (<stdio.h>): Include if YYDEBUG.
19724
19725 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
19726 ! defined (yyoverflow) && ! defined (yymemcpy).
19727
19728 (yymemcpy, yyparse): Rename local variables as needed so that
19729 they all begin with 'yy'.
19730
19731 (yystrlen, yystpcpy): New functions.
19732
19733 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
19734 All uses changed.
19735
19736 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
19737 instead of relying on string.h functions. Use YYSTACK_ALLOC
19738 and YYSTACK_FREE instead of malloc and free.
19739
19740 2001-11-30 Akim Demaille <akim@epita.fr>
19741
19742 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
19743 before their first uses.
19744 (YYBISON, YYPURE): Move to the top of the output.
19745
19746 2001-11-30 Akim Demaille <akim@epita.fr>
19747
19748 * tests/reduce.at (Useless Nonterminals): Fix.
19749
19750 2001-11-30 Akim Demaille <akim@epita.fr>
19751
19752 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
19753 if body instead of `;' to pacify GCC's warnings.
19754
19755 2001-11-30 Akim Demaille <akim@epita.fr>
19756
19757 Instead of mapping the LHS of unused rules to -1, keep the LHS
19758 valid, but flag the rules as invalid.
19759
19760 * src/gram.h (rule_t): `useful' is a new member.
19761 * src/print.c (print_grammar): Adjust.
19762 * src/derives.c (set_derives): Likewise.
19763 * src/reader.c (packgram, reduce_output): Likewise.
19764 * src/reduce.c (reduce_grammar_tables): Likewise.
19765 * tests/reduce.at (Underivable Rules, Useless Rules): New.
19766
19767 2001-11-30 Akim Demaille <akim@epita.fr>
19768
19769 * src/reduce.c (reduce_output): Formatting changes.
19770 * src/print.c (print_results, print_grammar): Likewise.
19771 * tests/regression.at (Rule Line Numbers)
19772 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
19773
19774 2001-11-30 Akim Demaille <akim@epita.fr>
19775
19776 * src/reduce.c (nonterminals_reduce): Instead of throwing away
19777 useless nonterminals, move them at the end of the symbol arrays.
19778 (reduce_output): Adjust.
19779 * tests/reduce.at (Useless Nonterminals): Adjust.
19780
19781 2001-11-30 Akim Demaille <akim@epita.fr>
19782
19783 * src/reduce.c: Various comment/formatting changes.
19784 (nonterminals_reduce): New, extracted from...
19785 (reduce_grammar_tables): here.
19786 (reduce_grammar): Call nonterminals_reduce.
19787
19788 2001-11-29 Paul Eggert <eggert@twinsun.com>
19789
19790 * src/bison.simple (YYSTACK_REALLOC): Remove.
19791 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
19792 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
19793 New macros.
19794 (union yyalloc): New type.
19795 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
19796 an arbitrary restriction on hosts where size_t is wider than int.
19797
19798 (yyparse): Don't dump core if alloca or malloc fails; instead, report
19799 a parser stack overflow. Allocate just one block of memory for all
19800 three stacks, instead of allocating three blocks; this typically is
19801 faster and reduces fragmentation.
19802
19803 Do not limit the number of items in the stack to a value that fits
19804 in 'int', as this is an arbitrary limit on hosts with 64-bit
19805 size_t and 32-bit int.
19806
19807 2001-11-29 Marc Autret <autret_m@epita.fr>
19808
19809 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
19810 of defining YYERROR_VERBOSE.
19811 [AT_DATA]: $4 is now out of C declarations in the prologue.
19812
19813 2001-11-28 Marc Autret <autret_m@epita.fr>
19814
19815 * src/reader.c (parse_dquoted_param): New.
19816 (parse_skel_decl): Use it.
19817 * src/lex.h: Add its prototype.
19818 * src/lex.c (literalchar): Become not static.
19819
19820 2001-11-28 Marc Autret <autret_m@epita.fr>
19821
19822 * src/output.h: And put its extern declaration here.
19823 * src/output.c (error_verbose): Define here.
19824 (prepare): Echo name modification.
19825 * src/getargs.h: Clean its extern declaration.
19826 * src/getargs.c (error_verbose_flag): Remove.
19827 (getargs): Remove case 'e'.
19828 * src/options.c (option_table): 'error-verbose' is now seen as simple
19829 percent option.
19830 Include output.h.
19831
19832 * src/reader.c (read_declarations): Remove case tok_include.
19833 (parse_include_decl): Remove.
19834 * src/lex.h (token_t): Remove tok_include.
19835 * src/options.c (option_table): 'include' is now a simple command line
19836 option.
19837
19838 2001-11-28 Marc Autret <autret_m@epita.fr>
19839
19840 * src/bison.simple: Adjust muscle names.
19841 * src/muscle_tab.c (muscle_init): Also rename the muscles.
19842 * src/output.c (prepare): s/_/-/ for the muscles names.
19843 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
19844
19845 2001-11-28 Marc Autret <autret_m@epita.fr>
19846
19847 * src/bison.simple: Fix debug.
19848 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
19849
19850 2001-11-28 Akim Demaille <akim@epita.fr>
19851
19852 * src/LR0.c (shifts_new): New.
19853 (save_shifts, insert_start_shift, augment_automaton): Use it.
19854
19855 2001-11-28 Akim Demaille <akim@epita.fr>
19856
19857 * src/closure.c (closure): `b' and `ruleno' denote the same value:
19858 keep ruleno only.
19859
19860 2001-11-28 Akim Demaille <akim@epita.fr>
19861
19862 * src/closure.c (closure): Instead of looping over word in array
19863 then bits in words, loop over bits in array.
19864
19865 2001-11-28 Akim Demaille <akim@epita.fr>
19866
19867 * src/closure.c (closure): No longer optimize the special case
19868 where all the bits of `ruleset[r]' are set to 0, to make the code
19869 clearer.
19870
19871 2001-11-28 Akim Demaille <akim@epita.fr>
19872
19873 * src/closure.c (closure): `r' and `c' are new variables, used to
19874 de-obfuscate accesses to RULESET and CORE.
19875
19876 2001-11-28 Akim Demaille <akim@epita.fr>
19877
19878 * src/reduce.c (reduce_print): Use ngettext.
19879 (dump_grammar): Improve the trace accuracy.
19880
19881 2001-11-28 Akim Demaille <akim@epita.fr>
19882
19883 * src/reduce.c (dump_grammar): Don't translate trace messages.
19884
19885 2001-11-28 Akim Demaille <akim@epita.fr>
19886
19887 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
19888 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
19889 as all tags are free'ed afterwards.
19890 From Enrico Scholz.
19891
19892 2001-11-27 Paul Eggert <eggert@twinsun.com>
19893
19894 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
19895 use alloca when we didn't want to, and vice versa.
19896
19897 2001-11-27 Marc Autret <autret_m@epita.fr>
19898
19899 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
19900 initialization.
19901 * src/output.c (prepare): Remove its update.
19902
19903 2001-11-27 Marc Autret <autret_m@epita.fr>
19904
19905 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
19906 Use %error-verbose.
19907
19908 2001-11-27 Marc Autret <autret_m@epita.fr>
19909
19910 * src/bison.simple: Remove YYERROR_VERBOSE using.
19911 Use %%error_verbose.
19912 (yyparse): Likewise.
19913 * src/output.c (prepare): Give its final value.
19914 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
19915 * src/getargs.h: Add its extern declaration.
19916 * src/getargs.c (error_verbose_flag): New int.
19917 (getargs): Update to catch new case.
19918 * src/options.c (option_table): 'error-verbose' is a new option.
19919 (shortopts): Update.
19920
19921 2001-11-27 Akim Demaille <akim@epita.fr>
19922
19923 * src/system.h: Use intl/libgettext.h.
19924 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
19925
19926 2001-11-27 Akim Demaille <akim@epita.fr>
19927
19928 * tests/torture.at (Exploding the Stack Size with Malloc):
19929 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
19930
19931 2001-11-27 Akim Demaille <akim@epita.fr>
19932
19933 * src/files.c: Include error.h.
19934 Reported by Hans Aberg.
19935
19936 2001-11-26 Marc Autret <autret_m@epita.fr>
19937
19938 * src/reader.c (parse_include_decl): New, not yet implemented.
19939 (read_declarations): Add case tok_include.
19940 * src/getargs.h (include): Add its extern definition.
19941 * src/getargs.c (include): New const char *.
19942 (getargs): Add case '-I'.
19943 * src/options.c (option_table): Add include as command line and
19944 percent option.
19945 * src/lex.h (token_t): Add tok_include.
19946
19947 2001-11-26 Akim Demaille <akim@epita.fr>
19948
19949 * src/reader.c (readgram): Make sure rules for mid-rule actions
19950 have a lineno equal to that of their host rule.
19951 Reported by Hans Aberg.
19952 * tests/regression.at (Rule Line Numbers): New.
19953
19954 2001-11-26 Akim Demaille <akim@epita.fr>
19955
19956 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
19957 size_ts.
19958
19959 2001-11-26 Akim Demaille <akim@epita.fr>
19960
19961 * src/complain.c, src/complain.h (error): Remove, provided by
19962 lib/error.[ch].
19963
19964 2001-11-26 Akim Demaille <akim@epita.fr>
19965
19966 * src/reader.c (read_declarations): Don't abort on tok_illegal,
19967 issue an error message.
19968 * tests/regression.at (Invalid %directive): New.
19969 Reported by Hans Aberg.
19970
19971 2001-11-26 Akim Demaille <akim@epita.fr>
19972
19973 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
19974 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19975
19976 2001-11-26 Akim Demaille <akim@epita.fr>
19977
19978 * src/conflicts.c (conflicts_print): Don't complain at all when
19979 there are no reduce/reduce conflicts, and as many shift/reduce
19980 conflicts as expected.
19981 * tests/regression.at (%expect right): Adjust.
19982
19983 2001-11-23 Akim Demaille <akim@epita.fr>
19984
19985 * lib/alloca.c: Update, from fileutils.
19986
19987 2001-11-23 Akim Demaille <akim@epita.fr>
19988
19989 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
19990
19991 2001-11-23 Akim Demaille <akim@epita.fr>
19992
19993 * src/system.h: Include alloca.h.
19994 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
19995
19996 2001-11-23 Akim Demaille <akim@epita.fr>
19997
19998 * src/print_graph.c (print_actions): Remove `rule', unused.
19999 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
20000 pacify GCC's signed < unsigned warnings.
20001 * src/closure.c (itemsetsize): Likewise.
20002 * src/reader.c (symbol_list_new): Static.
20003
20004 2001-11-23 Akim Demaille <akim@epita.fr>
20005
20006 Attaching lineno to buckets is stupid, since only one copy of each
20007 symbol is kept, only the line of the first occurrence is kept too.
20008
20009 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
20010 * src/reader.c (rline_allocated): Remove, unused.
20011 (symbol_list): Have a `line' member.
20012 (symbol_list_new): New.
20013 (readgram): Use it.
20014 * src/print.c (print_grammar): Output the rule line numbers.
20015 * tests/regression.at (Solved SR Conflicts)
20016 (Unresolved SR Conflicts): Adjust.
20017 Reported by Hans Aberg.
20018
20019 2001-11-22 Marc Autret <autret_m@epita.fr>
20020
20021 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
20022
20023 2001-11-22 Marc Autret <autret_m@epita.fr>
20024
20025 * src/muscle_tab.c (muscle_init): Remove initialization of
20026 skeleton muscle.
20027 * src/output.c (output_master_parser): Do it here.
20028
20029 2001-11-20 Akim Demaille <akim@epita.fr>
20030
20031 * po/sv.po: New.
20032 * configure.in (ALL_LINGUAS): Adjust.
20033 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
20034 longer contains strings to translate.
20035
20036 2001-11-19 Akim Demaille <akim@epita.fr>
20037
20038 * src/conflicts.c (conflicts_print): Add a missing \n.
20039
20040 2001-11-19 Akim Demaille <akim@epita.fr>
20041
20042 * src/nullable.c (nullable_print): New.
20043 (set_nullable): Call it when tracing.
20044 Better locality of variables.
20045
20046 2001-11-19 Akim Demaille <akim@epita.fr>
20047
20048 * src/print.c (print_actions): Better locality of variables.
20049
20050 2001-11-19 Akim Demaille <akim@epita.fr>
20051
20052 * src/derives.c (print_derives): Fix and enrich.
20053 * src/closure.c (print_fderives): Likewise.
20054
20055 2001-11-19 Akim Demaille <akim@epita.fr>
20056
20057 * src/closure.c (itemsetend): Remove, replaced with...
20058 (itemsetsize): new.
20059
20060 2001-11-19 Akim Demaille <akim@epita.fr>
20061
20062 * src/LR0.c (kernel_end): Remove, replaced with...
20063 (kernel_size): new.
20064
20065 2001-11-19 Akim Demaille <akim@epita.fr>
20066
20067 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
20068 to clarify.
20069
20070 2001-11-19 Akim Demaille <akim@epita.fr>
20071
20072 * src/closure.c (closure): Use arrays instead of pointers to clarify.
20073
20074 2001-11-19 Akim Demaille <akim@epita.fr>
20075
20076 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
20077 trace messages.
20078 * src/LR0.c: Likewise.
20079 (allocate_itemsets): Use arrays instead of pointers to clarify.
20080
20081 2001-11-19 Akim Demaille <akim@epita.fr>
20082
20083 * src/getargs.c (statistics_flag): Replace with...
20084 (trace_flag): New.
20085 (longopts): Accept --trace instead of --statistics.
20086 * src/getargs.h, src/options.c: Adjust.
20087 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
20088 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
20089
20090 2001-11-19 Akim Demaille <akim@epita.fr>
20091
20092 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
20093 pointers to clarify the code.
20094 (save_reductions, save_shifts): Factor common parts of alternatives.
20095
20096 2001-11-19 Akim Demaille <akim@epita.fr>
20097
20098 * src/LR0.c (new_state, get_state): Complete TRACE code.
20099 * src/closure.c: Include `reader.h' to get `tags', needed by the
20100 trace code.
20101 Rename the conditional DEBUG as TRACE.
20102 Output consistently TRACEs to stderr, not stdout.
20103 * src/derives.c: Likewise.
20104 * src/reduce.c: (inaccessable_symbols): Using if is better style
20105 than goto.
20106 Use `#if TRACE' instead of `#if 0' for tracing code.
20107
20108 2001-11-19 Akim Demaille <akim@epita.fr>
20109
20110 * src/system.h (LIST_FREE, shortcpy): New.
20111 * src/LR0.c: Use them.
20112 * src/output.c (free_itemsets, free_reductions, free_shifts):
20113 Remove, replaced by LIST_FREE.
20114
20115 2001-11-19 Akim Demaille <akim@epita.fr>
20116
20117 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
20118 (REDUCTIONS_ALLOC): New.
20119 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
20120 allocation.
20121
20122 2001-11-19 Akim Demaille <akim@epita.fr>
20123
20124 * src/LR0.c (new_state): Complete trace code.
20125 * src/nullable.c (set_nullable): Don't translate traces.
20126
20127 2001-11-19 Akim Demaille <akim@epita.fr>
20128
20129 * src/print_graph.c (print_core): Better locality of variables.
20130 * src/print.c (print_core): Likewise.
20131
20132 2001-11-19 Akim Demaille <akim@epita.fr>
20133
20134 * src/vcg.c: You do the output, so you are responsible of the
20135 handling of VCG syntax, in particular: use quotearg.
20136 * src/print_graph.c: Don't.
20137 (print_actions): Don't output the actions as part of the nodes,
20138 since that's the job of the edges.
20139 (print_state): Don't output by hand: fill the node description,
20140 and ask for its output.
20141
20142 2001-11-19 Akim Demaille <akim@epita.fr>
20143
20144 * src/bison.simple (yyparse): When verbosely reporting an error,
20145 no longer put additional quotes around token names.
20146 * tests/calc.at: Adjust.
20147
20148 2001-11-19 Akim Demaille <akim@epita.fr>
20149
20150 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
20151 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
20152 * src/output.c: Adjust.
20153
20154 2001-11-19 Akim Demaille <akim@epita.fr>
20155
20156 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
20157 (rule_t): this.
20158 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
20159
20160 2001-11-19 Akim Demaille <akim@epita.fr>
20161
20162 * src/gram.h (rule_t): New.
20163 (rule_table): New.
20164 (rrhs, rlhs): Remove, part of state_t.
20165 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
20166 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
20167 * src/reader.c, src/reduce.c: Adjust.
20168
20169 2001-11-19 Akim Demaille <akim@epita.fr>
20170
20171 * src/reader.c (symbols_output): New, extracted from...
20172 (packsymbols): Here.
20173 (reader): Call it.
20174
20175 2001-11-19 Akim Demaille <akim@epita.fr>
20176
20177 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
20178 (maxrhs): this new function.
20179
20180 2001-11-19 Akim Demaille <akim@epita.fr>
20181
20182 * src/lalr.c (F): New macro to access the variable F.
20183 Adjust.
20184
20185 2001-11-19 Akim Demaille <akim@epita.fr>
20186
20187 * src/lalr.h (LA): New macro to access the variable LA.
20188 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20189 * src/lalr.c: Adjust.
20190
20191 2001-11-19 Akim Demaille <akim@epita.fr>
20192
20193 * src/lalr.c (initialize_LA): Only initialize LA. Let...
20194 (set_state_table): handle the `lookaheads' members.
20195
20196 2001-11-19 Akim Demaille <akim@epita.fr>
20197
20198 * src/lalr.h (lookaheads): Removed array, whose contents is now
20199 a member of...
20200 (state_t): this structure.
20201 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20202 Adjust.
20203
20204 2001-11-19 Akim Demaille <akim@epita.fr>
20205
20206 * src/lalr.h (consistent): Removed array, whose contents is now
20207 a member of...
20208 (state_t): this structure.
20209 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20210 Adjust.
20211
20212 2001-11-19 Akim Demaille <akim@epita.fr>
20213
20214 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
20215 contents are now members of...
20216 (state_t): this structure.
20217 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20218 Adjust.
20219
20220 2001-11-19 Akim Demaille <akim@epita.fr>
20221
20222 * src/lalr.h (state_t): New.
20223 (state_table): Be a state_t * instead of a core **.
20224 (accessing_symbol): Remove, part of state_t.
20225 * src/lalr.c: Adjust.
20226 (set_accessing_symbol): Merge into...
20227 (set_state_table): this.
20228 * src/print_graph.c, src/conflicts.c: Adjust.
20229
20230 2001-11-14 Akim Demaille <akim@epita.fr>
20231
20232 * tests/calc.at, tests/output.at, tests/regression.at,
20233 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
20234 now the tests are run in private dirs, therefore AC_CLEANUP and
20235 family can be simplified to 0-ary.
20236 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
20237 use abs. path to find config.h.
20238 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
20239 stderr, there can be way too much random noise.
20240 Instead pass -Werror to GCC and rely on the exit status.
20241 Reported by Wolfram Wagner.
20242
20243 2001-11-14 Akim Demaille <akim@epita.fr>
20244
20245 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
20246 defined only if yyoverflow is defined, to avoid `warning: unused
20247 variable `yyvs1''.
20248 Reported by The Test Suite.
20249
20250 2001-11-14 Akim Demaille <akim@epita.fr>
20251
20252 * src/print.c: Include reduce.h.
20253 Reported by Hans Aberg.
20254
20255 2001-11-14 Akim Demaille <akim@epita.fr>
20256
20257 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
20258 Revert a previous patch: these are really const.
20259 * src/conflicts.c (conflict_report): Additional useless pair of
20260 braces to pacify GCC's warnings for `if () if () {} else {}'.
20261 * src/lex.c (parse_percent_token): Replace equal_offset with
20262 arg_offset.
20263 arg is const.
20264 Be sure to strdup `arg' when used, since there is no reason for
20265 token_buffer not to change.
20266
20267 2001-11-14 Akim Demaille <akim@epita.fr>
20268
20269 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
20270 definition.
20271 * src/main.c (main): Use them.
20272 Suggested by Hans Aberg.
20273
20274 2001-11-12 Akim Demaille <akim@epita.fr>
20275
20276 * src/system.h (ngettext): Now that we use ngettext, be sure to
20277 provide a default definition when NLS are not used.
20278
20279 2001-11-12 Akim Demaille <akim@epita.fr>
20280
20281 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
20282 Use @kbd to denote user input.
20283 (Language and Grammar): ANSIfy the example.
20284 Adjust its layout for info/notinfo.
20285 (Location Tracking Calc): Output error messages to stderr.
20286 Output locations in a more GNUtically correct way.
20287 Fix a couple of Englishos.
20288 Adjust @group/@end group pairs.
20289
20290 2001-11-12 Akim Demaille <akim@epita.fr>
20291
20292 %expect was not functioning at all.
20293
20294 * src/conflicts.c (expected_conflicts): Set to -1.
20295 (conflict_report): Use ngettext.
20296 (conflicts_print): Check %expect and make its violation an error.
20297 * doc/bison.texinfo (Expect Decl): Adjust.
20298 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
20299 * tests/regression.at (%expect not enough, %expect right)
20300 (%expect too much): New.
20301
20302 2001-11-12 Akim Demaille <akim@epita.fr>
20303
20304 * tests/regression.at (Conflicts): Rename as...
20305 (Unresolved SR Conflicts): this.
20306 (Solved SR Conflicts): New.
20307
20308 2001-11-12 Akim Demaille <akim@epita.fr>
20309
20310 * src/reduce.c (print_results): Rename as...
20311 (reduce_output): This.
20312 Output to OUT, passed as argument, instead of output_obstack.
20313 (dump_grammar): Likewise.
20314 (reduce_free): New.
20315 Also free V1.
20316 (reduce_grammar): No longer call reduce_output, since...
20317 * src/print.c (print_results): do it.
20318 * src/main.c (main): Call reduce_free;
20319
20320 2001-11-12 Akim Demaille <akim@epita.fr>
20321
20322 * src/conflicts.c (print_reductions): Accept OUT as argument.
20323 Output to it, not to output_obstack.
20324 * src/print.c (print_actions): Adjust.
20325
20326 2001-11-12 Akim Demaille <akim@epita.fr>
20327
20328 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
20329 the result instead of using...
20330 (src_total, rrc_total, src_count, rrc_count): Remove.
20331 (any_conflicts): Remove.
20332 (print_conflicts): Split into...
20333 (conflicts_print, conflicts_output): New.
20334 * src/conflicts.h: Adjust.
20335 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
20336 * src/print.c (print_grammar): Issue `\n' between two rules.
20337 * tests/regression.at (Conflicts): New.
20338 Reported by Tom Lane.
20339
20340 2001-11-12 Akim Demaille <akim@epita.fr>
20341
20342 * tests/regression.at (Invalid input): Remove, duplicate with
20343 ``Invalid input: 1''.
20344
20345 2001-11-12 Akim Demaille <akim@epita.fr>
20346
20347 * tests/torture.at (AT_DATA_STACK_TORTURE)
20348 (Exploding the Stack Size with Alloca)
20349 (Exploding the Stack Size with Malloc): New.
20350
20351 2001-11-12 Akim Demaille <akim@epita.fr>
20352
20353 * src/bison.simple (YYSTACK_REALLOC): New.
20354 (yyparse) [!yyoverflow]: Use it and free the old stack.
20355 Reported by Per Allansson.
20356
20357 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
20358
20359 * src/bison.simple: Define type yystype instead of YYSTYPE, and
20360 define CPP macro, which substitute YYSTYPE by yystype.
20361 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
20362 with yyltype/YYLTYPE. This allows inclusion of the generated
20363 header within the parser if the compiler, such as GGC, accepts
20364 multiple equivalent #defines.
20365 From Akim.
20366
20367 2001-11-05 Akim Demaille <akim@epita.fr>
20368
20369 * src/reader.c (symbols_output): New, extracted from...
20370 (packsymbols): here.
20371 (reader): Adjust.
20372
20373 2001-11-05 Akim Demaille <akim@epita.fr>
20374
20375 * src/lex.c (parse_percent_token): s/quotearg/quote/.
20376
20377 2001-11-05 Akim Demaille <akim@epita.fr>
20378
20379 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
20380 pattern.
20381
20382 2001-11-05 Akim Demaille <akim@epita.fr>
20383
20384 * src/options.h (struct option_table_struct): set_flags is void*.
20385 * src/options.c (longopts): Support `--output' and `%output'.
20386 (usage): Adjust.
20387 * src/lex.h (tok_setopt): Remove, replaced with...
20388 (tok_intopt, tok_stropt): these new guys.
20389 * src/lex.c (getopt.h): Not needed.
20390 (token_buffer, unlexed_token_buffer): Not const.
20391 (percent_table): Promote `-' over `_' in directive names.
20392 Active `%name-prefix', `file-prefix', and `output'.
20393 (parse_percent_token): Accept possible arguments to directives.
20394 Promote `-' over `_' in directive names.
20395
20396 2001-11-04 Akim Demaille <akim@epita.fr>
20397
20398 * doc/bison.texinfo (Decl Summary): Split the list into
20399 `directives for grammars' and `directives for bison'.
20400 Sort'em.
20401 Add description of `%name-prefix', `file-prefix', and `output'.
20402 Promote `-' over `_' in directive names.
20403 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
20404 Simplify the description of `--name-prefix'.
20405 Promote `-' over `_' in directive names.
20406 Promote `--output' over `--output-file'.
20407 Fix the description of `--defines'.
20408 * tests/output.at: Exercise %file-prefix and %output.
20409
20410 2001-11-02 Akim Demaille <akim@epita.fr>
20411
20412 * doc/refcard.tex: Update.
20413
20414 2001-11-02 Akim Demaille <akim@epita.fr>
20415
20416 * src/symtab.h (SUNDEF): New.
20417 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
20418 stand for `uninitialized', instead of 0.
20419 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
20420 * src/lex.c (lex): Adjust.
20421
20422 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
20423 Number it 0.
20424 Let yylex return it instead of a plain 0.
20425 Reported by Dick Streefland.
20426
20427 2001-11-02 Akim Demaille <akim@epita.fr>
20428
20429 * tests/regression.at (Mixing %token styles): New test.
20430
20431 2001-11-02 Akim Demaille <akim@epita.fr>
20432
20433 * src/reader.c (parse_thong_decl): Formatting changes.
20434 (token_translations_init): New, extracted from...
20435 (packsymbols): Here.
20436 Adjust.
20437
20438 2001-11-01 Akim Demaille <akim@epita.fr>
20439
20440 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
20441 Check that `9foo.y' produces correct cpp guards.
20442 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
20443 guards.
20444 Reported by Wwp.
20445
20446 2001-11-01 Akim Demaille <akim@epita.fr>
20447
20448 * tests/regression.at (Invalid input: 2): New.
20449 * src/lex.c (unlexed_token_buffer): New.
20450 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
20451 too.
20452 Reported by Wwp.
20453
20454 2001-11-01 Akim Demaille <akim@epita.fr>
20455
20456 * tests/calc.at: Catch up with 1.30.
20457 * configure.in: Bump to 1.49a.
20458 Adjust to newer Autotest.
20459
20460 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
20461
20462 * src/conflicts.c: Move global variables rrc_total and src_total ...
20463 (print_conflicts): here.
20464 * src/output.c (output): Free global variable user_toknums.
20465 * src/lex.c (token_obstack): Become static.
20466
20467 2001-10-18 Akim Demaille <akim@epita.fr>
20468
20469 * tests/atlocal.in (GCC): Add.
20470 * tests/calc.at: s/m4_match/m4_bmatch/.
20471 s/m4_patsubst/m4_bpatsubst/.
20472 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
20473 * configure.in: AC_SUBST(GCC).
20474
20475 2001-10-14 Marc Autret <autret_m@epita.fr>
20476
20477 * src/options.c (create_long_option_table): Fix.
20478
20479 2001-10-10 Akim Demaille <akim@epita.fr>
20480
20481 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
20482
20483 2001-10-04 Akim Demaille <akim@epita.fr>
20484
20485 * src/reader.c (parse_union_decl): Push the caracters in
20486 union_obstack, not attrs_obstack.
20487
20488 2001-10-04 Akim Demaille <akim@epita.fr>
20489
20490 Merge in the branch 1.29.
20491
20492 * src/reader.c (packsymbols): Use a temporary obstack for
20493 `%%tokendef', since output_stack is already used elsewhere.
20494
20495 2001-10-02 Akim Demaille <akim@epita.fr>
20496
20497 Bump 1.29d.
20498
20499 2001-10-02 Akim Demaille <akim@epita.fr>
20500
20501 Version 1.29c.
20502
20503 2001-10-02 Akim Demaille <akim@epita.fr>
20504
20505 * tests/regression.at (Invalid CPP headers): New.
20506 From Alexander Belopolsky.
20507 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
20508
20509 2001-10-02 Akim Demaille <akim@epita.fr>
20510
20511 * tests/regression.at (Invalid input): New.
20512 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
20513 Reported by Shura.
20514
20515 2001-10-02 Akim Demaille <akim@epita.fr>
20516
20517 * tests/calc.at: Now that --debug works, the tests must be adjusted.
20518
20519 2001-10-02 Akim Demaille <akim@epita.fr>
20520
20521 * src/output.c (output_parser): Assert `skeleton'.
20522 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
20523 systems.
20524 From Shura.
20525
20526 2001-10-01 Marc Autret <autret_m@epita.fr>
20527
20528 * src/lex.h: Echo modifications.
20529 * src/lex.c (unlex): Parameter is now token_t.
20530 From Hans Aberg.
20531
20532 2001-10-01 Marc Autret <autret_m@epita.fr>
20533
20534 * src/main.c: Include lex.h.
20535 From Hans Aberg.
20536
20537 2001-09-29 Akim Demaille <akim@epita.fr>
20538
20539 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
20540
20541 2001-09-28 Akim Demaille <akim@epita.fr>
20542
20543 * tests/testsuite.at: Update to newer Autotest.
20544 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
20545
20546 2001-09-27 Akim Demaille <akim@epita.fr>
20547
20548 Position independent wrapper.
20549
20550 * tests/bison: Remove.
20551 * tests/bison.in: New.
20552 * configure.in: Adjust.
20553
20554 2001-09-27 Paul Eggert <eggert@twinsun.com>
20555
20556 Port quotearg fixes from tar 1.13.24.
20557
20558 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
20559 tm to be declared.
20560 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
20561 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
20562
20563 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
20564 * m4/mbrtowc.m4: New file.
20565 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
20566 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
20567
20568 2001-09-27 Akim Demaille <akim@epita.fr>
20569
20570 Bump to 1.29c.
20571
20572 2001-09-27 Akim Demaille <akim@epita.fr>
20573
20574 Version 1.29b.
20575
20576 2001-09-25 Akim Demaille <akim@epita.fr>
20577
20578 * src/system.h: Include `xalloc.h'.
20579 Remove it from the C files.
20580 * src/files.c (output_files): Free the obstacks.
20581 * src/lex.c (init_lex): Rename as...
20582 (lex_init): this.
20583 (lex_free): New.
20584 * src/main.c (main): Use it.
20585
20586 2001-09-24 Marc Autret <autret_m@epita.fr>
20587
20588 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
20589 to output informations in fout (FILE*).
20590 (open_graph, close_graph): Likewise.
20591 (output_graph, output_edge, output_node): Likewise.
20592 * src/vcg.h: Update function prototypes.
20593 * src/print_graph.c (print_graph): Open output graph file.
20594 (print_actions): Adjust.
20595 * src/files.h: Remove extern declaration.
20596 * src/files.c: Remove graph_obstack declaration.
20597 (open_files): Remove graph_obstack initialization.
20598 (output_files): Remove graph_obstack saving.
20599
20600 2001-09-24 Marc Autret <autret_m@epita.fr>
20601
20602 * src/files.c (compute_output_file_names): Fix.
20603
20604 2001-09-24 Marc Autret <autret_m@epita.fr>,
20605 Akim Demaille <akim@epita.fr>
20606
20607 * src/reader.c (reader): Remove call to free_symtab ().
20608 * src/main.c (main): Call it here.
20609 Include symtab.h.
20610 * src/conflicts.c (initialize_conflicts): Rename as...
20611 (solve_conflicts): this.
20612 * src/print.c (print_core, print_actions, print_state)
20613 (print_grammar): Dump to a file instead a `output_obstack'.
20614 (print_results): Dump `output_obstack', and then proceed with the
20615 FILE *.
20616 * src/files.c (compute_output_file_names, close_files): New.
20617 (output_files): Adjust.
20618 * src/main.c (main): Adjust.
20619
20620 2001-09-23 Marc Autret <autret_m@epita.fr>
20621
20622 * src/files.c (compute_header_macro): Computes header macro name
20623 from spec_defines_file when given.
20624
20625 2001-09-23 Marc Autret <autret_m@epita.fr>
20626
20627 * src/files.c (output_files): Add default extensions.
20628
20629 2001-09-22 Akim Demaille <akim@epita.fr>
20630
20631 * src/conflicts.c (finalize_conflicts): Rename as...
20632 (free_conflicts): this.
20633
20634 2001-09-22 Akim Demaille <akim@epita.fr>
20635
20636 * src/gram.c (gram_free): Rename back as...
20637 (dummy): this.
20638 (output_token_translations): Free `token_translations'.
20639 * src/symtab.c (free_symtab): Free the tag field.
20640
20641 2001-09-22 Akim Demaille <akim@epita.fr>
20642
20643 Remove `translations' as it is always set to true.
20644
20645 * src/gram.h: Adjust.
20646 * src/reader.c (packsymbols, parse_token_decl): Adjust
20647 * src/print.c (print_grammar): Adjust.
20648 * src/output.c (output_token_translations): Adjust.
20649 * src/lex.c (lex): Adjust.
20650 * src/gram.c: Be sure the set pointers to NULL.
20651 (dummy): Rename as...
20652 (gram_free): this.
20653
20654 2001-09-22 Akim Demaille <akim@epita.fr>
20655
20656 * configure.in: Invoke AM_LIB_DMALLOC.
20657 * src/system.h: Use dmalloc.
20658 * src/LR0.c: Be sure to have pointers initialized to NULL.
20659 (allocate_itemsets): Allocate kernel_items only if needed.
20660
20661 2001-09-22 Akim Demaille <akim@epita.fr>
20662
20663 * configure.in: Bump to 1.29b.
20664 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
20665 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
20666 need xmalloc.c in calc.y.
20667 From Pascal Bart.
20668
20669 2001-09-21 Akim Demaille <akim@epita.fr>
20670
20671 Version 1.29a.
20672 * Makefile.maint, config/config.guess, config/config.sub,
20673 * config/missing: Update from masters.
20674 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
20675 upon package.m4.
20676 * configure.in (ALL_LINGUAS): Add `tr'.
20677
20678 2001-09-21 Akim Demaille <akim@epita.fr>
20679
20680 * tests/Makefile.am (package.m4): Move to...
20681 ($(srcdir)/$(TESTSUITE)): here.
20682
20683 2001-09-20 Akim Demaille <akim@epita.fr>
20684
20685 * src/complain.c: No longer try to be standalone: use system.h.
20686 Don't assume __STDC__ is defined to 1. Just test if it is defined.
20687 * src/complain.h: Likewise.
20688 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
20689 Remove the unused variable `n'.
20690 From Albert Chin-A-Young.
20691
20692 2001-09-18 Marc Autret <autret_m@epita.fr>
20693
20694 * doc/bison.1: Update.
20695 * doc/bison.texinfo (Bison Options): Update --defines and --graph
20696 descriptions.
20697 (Option Cross Key): Update.
20698 Add --graph.
20699
20700 2001-09-18 Marc Autret <autret_m@epita.fr>
20701
20702 * tests/regression.at: New test (comment in %union).
20703
20704 2001-09-18 Marc Autret <autret_m@epita.fr>
20705
20706 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
20707 do that.
20708 Reported by Keith Browne.
20709
20710 2001-09-18 Marc Autret <autret_m@epita.fr>
20711
20712 * tests/output.at: Add tests for --defines and --graph.
20713
20714 2001-09-18 Marc Autret <autret_m@epita.fr>
20715
20716 * tests/output.at: Removes tests of %{header,src}_extension features.
20717
20718 2001-09-18 Akim Demaille <akim@epita.fr>
20719
20720 * tests/Makefile.am (package.m4): New.
20721 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
20722 (_AT_CHECK_CALC_ERROR): Likewise.
20723 Factor the `, ' part of verbose error messages.
20724
20725 2001-09-18 Marc Autret <autret_m@epita.fr>
20726
20727 * src/getargs.c (longopts): Declare --defines and --graph as options
20728 with optional arguments.
20729 * src/files.h: Add extern declarations.
20730 * src/files.c (spec_graph_file, spec_defines_file): New.
20731 (output_files): Update.
20732 Remove CPP-outed code.
20733
20734 2001-09-18 Marc Autret <autret_m@epita.fr>
20735
20736 Turn off %{source,header}_extension feature.
20737
20738 * src/files.c (compute_exts_from_gf): Update.
20739 (compute_exts_from_src): Update.
20740 (output_files): CPP-out useless code.
20741 * src/files.h: Remove {header,source}_extension extern declarations.
20742 * src/reader.c (parse_dquoted_param): CPP-out.
20743 (parse_header_extension_decl): Remove.
20744 (parse_source_extension_decl): Remove.
20745 (read_declarations): Remove cases tok_{hdrext,srcext}.
20746 * src/lex.c (percent_table): Remove {header,source}_extension entries.
20747 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
20748
20749 2001-09-10 Akim Demaille <akim@epita.fr>
20750
20751 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
20752 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
20753 (AT_CHECK_OUTPUT): this.
20754 Merely check ls' exit status, its output is useless.
20755
20756 2001-09-10 Akim Demaille <akim@epita.fr>
20757
20758 * tests/calc.at: Use m4_match.
20759 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
20760
20761 2001-09-10 Marc Autret <autret_m@epita.fr>,
20762 Akim Demaille <akim@epita.fr>
20763
20764 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
20765 enum color_e.
20766 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
20767 to `normal'.
20768 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
20769 * src/lex.h: Adjust prototype.
20770 (token_t): Add `tok_undef'.
20771 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
20772 (parse_percent_token): Now returns token_t.
20773 Add default statement in switch.
20774 (lex): Separate `c' as an input variable, from the token_t result
20775 part.
20776 (unlexed): Is a token_t.
20777
20778 2001-09-10 Akim Demaille <akim@epita.fr>
20779
20780 * configure.in: Bump to 1.29a.
20781
20782 2001-09-07 Akim Demaille <akim@epita.fr>
20783
20784 Version 1.29.
20785
20786 2001-08-30 Akim Demaille <akim@epita.fr>
20787
20788 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
20789 * m4/atconfig.m4: Remove.
20790 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
20791 * tests/bison: New.
20792 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
20793 m4_if, m4_patsubst, and m4_regexp.
20794 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
20795 `input' file instead of echo.
20796
20797 2001-08-29 Akim Demaille <akim@epita.fr>
20798
20799 Bump to 1.28e.
20800
20801 2001-08-29 Akim Demaille <akim@epita.fr>
20802
20803 Version 1.28d.
20804
20805 2001-08-29 Paul Eggert <eggert@twinsun.com>
20806
20807 * src/bison.simple (yyparse): Don't take the address of an
20808 item before the start of an array, as that doesn't conform to
20809 the C Standard.
20810
20811 2001-08-29 Robert Anisko <anisko_r@epita.fr>
20812
20813 * doc/bison.texinfo (Location Tracking Calc): New node.
20814
20815 2001-08-29 Paul Eggert <eggert@twinsun.com>
20816
20817 * src/output.c (output): Do not define const, as this now
20818 causes more problems than it cures.
20819
20820 2001-08-29 Akim Demaille <akim@epita.fr>
20821
20822 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
20823 the nodes.
20824 Be sure to tag the `detailmenu'.
20825
20826 2001-08-29 Akim Demaille <akim@epita.fr>
20827
20828 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
20829 download in a tmp dir.
20830
20831 2001-08-28 Marc Autret <autret_m@epita.fr>
20832
20833 * config/depcomp: New file.
20834
20835 2001-08-28 Marc Autret <autret_m@epita.fr>
20836
20837 * doc/bison.1 (mandoc): Adjust.
20838 From Juan Manuel Guerrero.
20839
20840 2001-08-28 Marc Autret <autret_m@epita.fr>
20841
20842 * src/print_graph.c (print_state): Fix.
20843
20844 2001-08-27 Marc Autret <autret_m@epita.fr>
20845
20846 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
20847 char * members.
20848 Echo modifications to the functions prototypes.
20849 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
20850
20851 2001-08-27 Marc Autret <autret_m@epita.fr>
20852
20853 * src/vcg.c: Include `xalloc.h'.
20854 (add_colorentry): New.
20855 (add_classname): New.
20856 (add_infoname): New.
20857 * src/vcg.h: Add new prototypes.
20858
20859 2001-08-27 Akim Demaille <akim@epita.fr>
20860
20861 * Makefile.maint: Sync. again with CVS Autoconf.
20862
20863 2001-08-27 Akim Demaille <akim@epita.fr>
20864
20865 * Makefile.maint: Formatting changes.
20866 (po-update, cvs-update, update): New targets.
20867 (AMTAR): Remove.
20868
20869 2001-08-27 Akim Demaille <akim@epita.fr>
20870
20871 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
20872 * Makefile.maint: Sync. with CVS Autoconf.
20873
20874 2001-08-27 Marc Autret <autret_m@epita.fr>
20875
20876 * src/vcg.h (struct infoname_s): New.
20877 (struct colorentry_s): New.
20878 (graph_s): New fields {vertical,horizontal}_order in structure.
20879 Add `infoname' field.
20880 Add `colorentry' field;
20881 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
20882 (G_HORIZONTAL_ORDER): New.
20883 (G_INFONAME): New.
20884 (G_COLORENTRY): New.
20885 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
20886 Add output of `infoname'.
20887 Add output of `colorentry'.
20888
20889 2001-08-27 Marc Autret <autret_m@epita.fr>
20890
20891 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
20892 This one shadowed a global parameter.
20893
20894 2001-08-24 Marc Autret <autret_m@epita.fr>
20895
20896 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
20897 instead of `unsigned'.
20898 (print_state): Do not call obstack_object_size () in obstack_grow ()
20899 to avoid macro variables shadowing.
20900
20901 2001-08-23 Marc Autret <autret_m@epita.fr>
20902
20903 * src/lex.c (percent_table): Typo: s/naem/name/.
20904 Add graph option.
20905 Normalize new options declarations.
20906
20907 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
20908
20909 * tests/suite.at: Exercise %header_extension and %source_extension.
20910
20911 2001-08-16 Marc Autret <autret_m@epita.fr>
20912
20913 * src/reader.c (parse_dquoted_param): New.
20914 (parse_header_extension_decl): Use it.
20915 (parse_source_extension_decl): Likewise.
20916
20917 2001-08-16 Marc Autret <autret_m@epita.fr>
20918
20919 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
20920 (get_xxxx_str): Use assert () instead of complain ().
20921 Remove return invokations in default cases.
20922 (get_decision_str): Modify default behaviour. Remove second argument.
20923 Echo modifications on calls.
20924 (output_graph): Fix.
20925
20926 2001-08-16 Marc Autret <autret_m@epita.fr>
20927
20928 * src/getargs.c (usage): Update with ``-g, --graph''.
20929
20930 2001-08-16 Marc Autret <autret_m@epita.fr>
20931
20932 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
20933 (Option Cross Key): Likewise.
20934 * doc/bison.1: Update.
20935
20936 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
20937
20938 * src/output.c (output_master_parser): Don't finish action_obstack.
20939 (output_parser): Don't care about the muscle action, here.
20940 (prepare): Copy the action_obstack in the action muscle.
20941 (output): Free action_obstack.
20942
20943 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
20944
20945 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
20946 will contain `%union' declaration.
20947 (parse_union_decl): Delete #line directive output.
20948 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
20949 informations about %union.
20950 (parse_union_decl): Copy the union_obstack in the muscle stype.
20951 * src/bison.simple: Add new #line directive.
20952 Add typdef %%stype YYSTYPE.
20953
20954 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
20955
20956 * src/bison.simple: Add new `#line' directive.
20957
20958 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
20959
20960 * src/bison.simple: New `#line' directive.
20961 * src/output.c (output_parser): Support new dynamic muscle input_line.
20962
20963 2001-09-22 Marc Autret <autret_m@epita.fr>
20964
20965 * src/output.c (output_master_parser): New.
20966 (output_parser): Be more re-entrant.
20967
20968 2001-09-21 Marc Autret <autret_m@epita.fr>
20969
20970 * src/reader.c (copy_definition, parse_union_decl): Update and use
20971 `linef' muscle.
20972 (copy_action): Likewise.
20973 Use obstack_1grow ().
20974 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
20975
20976 2001-09-21 Marc Autret <autret_m@epita.fr>
20977
20978 * src/options.c (option_table): Adjust.
20979 * src/lex.c (parse_percent_token): Fix.
20980
20981 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
20982
20983 * src/options.c (symtab.h): Include it, need by lex.h.
20984
20985 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
20986
20987 * src/lex.c (parse_percent_token): Change type of variable `tx', which
20988 is now an option_table_struct*.
20989 (option_strcmp): New function option_strcmp.
20990 (parse_percent_token): Call option_strcmp.
20991 * src/getargs.c (xalloc.h, options.h): Include it.
20992 (getargs): Call create_long_option_table.
20993 (getargs): Free longopts at the end of the function.
20994 (shortopts): Move in options.c.
20995 * src/options.c (create_long_option_table): New function. Convert
20996 information from option_table to option structure.
20997 * src/reader.c (options.h): Include it.
20998
20999 * src/Makefile.am: Adjust.
21000 * src/options.c (option_table): Create from longopts and percent_table.
21001 * src/getargs.c (longopts): Delete.
21002 * src/lex.c (struct percent_table_struct): Delete.
21003 (percent_table): Delete.
21004 (options.h): Include it.
21005 * src/options.c: Create.
21006 * src/options.h: Create.
21007 Declare enum opt_access_e.
21008 Define struct option_table_struct.
21009
21010 2001-09-20 Marc Autret <autret_m@epita.fr>
21011
21012 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
21013 sections of Bison.
21014
21015 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
21016
21017 * src/bison.simple: s/%%filename/%%skeleton.
21018 * src/muscle_tab.c (getargs.h): Include it.
21019 (muscle_init): Insert new muscle skeleton.
21020
21021 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
21022
21023 * src/output.c (output_parser): Delete unused variable actions_dumped.
21024
21025 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
21026
21027 * src/output.c (output): Delete call to reader_output_yylsp.
21028 * src/reader.c (reader): Likewise.
21029 * src/reader.h: Delete declaration of reader_output_yylsp.
21030
21031 2001-09-02 Marc Autret <autret_m@epita.fr>
21032
21033 * src/reader.c: Include muscle_tab.h.
21034 (parse_union_decl): Update.
21035 (parse_macro_decl): Rename parse_muscle_decl.
21036 Update to use renamed functions and variable.
21037 (read_declarations, copy_action, read_additionnal_code, : Updated
21038 with correct variables and functions names.
21039 (packsymbols, reader): Likewise.
21040
21041 * src/reader.h (muscle_obstack): Extern declaration update.
21042
21043 * src/output.c: Include muscle_tab.h
21044 In all functions using macro_insert, change by using muscle_insert ().
21045 (macro_obstack): Rename muscle_obstack.
21046 Echo modifications in the whole file.
21047 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
21048 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
21049 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
21050
21051 * src/muscle_tab.h: Update double inclusion macros.
21052 (macro_entry_s): Rename muscle_entry_s.
21053 Update prototypes.
21054
21055 * src/muscle_tab.c: Include muscle_tab.h.
21056 Rename macro_tabble to muscle_table.
21057 (mhash1, mhash2, mcmp): Use muscle_entry.
21058 (macro_init): Rename muscle_init. Update.
21059 (macro_insert): Rename muscle_insert. Update.
21060 (macro_find): Rename muscle_find. Update.
21061
21062 * src/main.c: Include muscle_tab.h.
21063 (main): Call muscle_init ().
21064 * src/Makefile.am (bison_SOURCES): Echo modifications.
21065
21066 2001-09-02 Marc Autret <autret_m@epita.fr>
21067
21068 Now the files macro_tab.[ch] are named muscle_tab.[ch].
21069
21070 * src/muscle_tab.c, src/muscle_tab.h: Add files.
21071
21072 2001-09-02 Marc Autret <autret_m@epita.fr>
21073
21074 * src/macrotab.c, src/macrotab.h: Remove.
21075
21076 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
21077
21078 * src/reader.c (copy_guard): Use muscle to specify the `#line'
21079 filename.
21080
21081 2001-09-01 Marc Autret <autret_m@epita.fr>
21082
21083 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
21084 to an explicit value to activate the feature. We do it here.
21085
21086 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21087
21088 * src/output.c (prepare): Delete the `filename' muscule insertion.
21089 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
21090 (parse_union_decl): Likewise.
21091 * src/macrotab.c (macro_init): Initialize filename by infile.
21092
21093 2001-08-31 Marc Autret <autret_m@epita.fr>
21094
21095 * src/bison.simple (YYLSP_NEEDED): New definition.
21096 * src/output.c (prepare): Add macro insertion of `locations_flag'
21097
21098 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21099
21100 * src/output.c (prepare): Delete insertion of previous muscles,
21101 and insert the `prefix' muscles.
21102 * src/macrotab.c (macro_init): Likewise.
21103 (macro_init): Initialization prefix directive by `yy'.
21104 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
21105 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
21106 yylval, yydebug, yyerror, yynerrs and yyparse.
21107 New directive `#define' to substitute yydebug, ... with option
21108 name_prefix.
21109
21110 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21111
21112 * src/main.c (main): Standardize.
21113 * src/output.c (output_table_data, output_parser): Likewise.
21114 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
21115
21116 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
21117
21118 * src/reader.c (read_additionnal_code): Rename %%user_code to
21119 %%epilogue.
21120 * src/output.c (output): Rename %%declarations to %%prologue.
21121 * src/bison.simple: Echo modifications.
21122
21123 2001-08-31 Marc Autret <autret_m@epita.fr>
21124
21125 * src/reader.c (readgram): CleanUp.
21126 (output_token_defines): Likewise.
21127 (packsymbols): Likewise.
21128 (reader): Likewise.
21129 * src/output.c (output): CPP-out useless code.
21130
21131 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21132
21133 * src/reader.c (reader): Delete obsolete call to function
21134 output_trailers and output_headers.
21135 * src/output.h: Remove obsolete functions prototypes of output_headers
21136 and output_trailers.
21137
21138 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
21139
21140 * src/main.c: Include macrotab.h.
21141 * src/macrotab.h (macro_entry_s): Constify fields.
21142 Adjust functions prototypes.
21143 * src/macrotab.c (macro_insert): Constify key and value.
21144 (macro_find): Constify key.
21145 (macro_insert): Include 'xalloc.h'
21146 (macro_insert): Use XMALLOC.
21147 (macro_find): Constify return value.
21148 * src/output.c (output_table_data): Rename table to table_data.
21149 (output_parser): Constify macro_key, macro_value.
21150
21151 2001-08-30 Marc Autret <autret_m@epita.fr>
21152
21153 * src/reader.c (parse_skel_decl): New.
21154 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
21155 * src/lex.h (token_t): New token `tok_skel'.
21156 * src/lex.c (percent_table): Add skeleton option entry.
21157 Standardize.
21158
21159 2001-08-29 Marc Autret <autret_m@epita.fr>
21160
21161 * src/bison.simple: Add %%user_code directive at the end.
21162 * src/reader.c (read_additionnal_code): New.
21163 (reader): Use it.
21164 * src/output.c (output_program): Remove.
21165 (output): Update.
21166
21167 2001-08-28 Marc Autret <autret_m@epita.fr>
21168
21169 * src/output.c (output_actions): Clean up.
21170 (output_gram): CPP-out useless code.
21171 * src/reader.c (reader): Clean up, CPP-out useless code.
21172
21173 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
21174
21175 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
21176 directive.
21177 * src/bison.simple: Add `%%definitions'.
21178
21179 2001-08-28 Marc Autret <autret_m@epita.fr>
21180
21181 * config/depcomp: New file.
21182
21183 2001-08-27 Paul Eggert <eggert@twinsun.com>
21184
21185 * src/bison.simple (yyparse): Don't take the address of an
21186 item before the start of an array, as that doesn't conform to
21187 the C Standard.
21188
21189 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
21190
21191 * src/output.c (output): Remove the initialization of the macro
21192 obstack. It was done too late here.
21193
21194 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
21195 completely wrong.
21196 (reader): Initialize the macro obstack here, since we need it to grow
21197 '%define' directives.
21198
21199 * src/reader.h: Declare the macro obstack as extern.
21200
21201 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
21202
21203 * src/output.c (output_parser): Fix. Store single '%' characters in
21204 the output obstack instead of throwing them away.
21205
21206 2001-08-27 Akim Demaille <akim@epita.fr>
21207
21208 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21209
21210 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21211
21212 * lib/Makefile.am: Adjust.
21213
21214 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21215
21216 * src/bison.simple: Update and add '%%' directives.
21217
21218 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21219
21220 * src/reader.c (reader): Remove calls to 'output_headers' and
21221 'output_trailers'. Remove some C output.
21222 (readgram): Disable a piece of code that was writing a default
21223 definition for 'YYSTYPE'.
21224 (reader_output_yylsp): Remove.
21225 (packsymbols): Output token defintions to a macro.
21226 (copy_definition): Disable C output.
21227
21228 * src/reader.c (parse_macro_decl): New function used to parse macro
21229 declarations.
21230 (copy_string2): Put the body of copy_string into this new function.
21231 Add a parameter to let the caller choose whether he wants to copy the
21232 string delimiters or not.
21233 (copy_string): Be a simple call to copy_string2 with the last argument
21234 bound to true.
21235 (read_declarations): Add case for macro definition.
21236 (copy_identifier): New.
21237 (parse_macro_decl): Read macro identifiers using copy_identifier
21238 rather than lex.
21239
21240 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21241
21242 * src/output.c (prepare): Add prefixed names.
21243 (output_parser): Output semantic actions.
21244 (output_parser): Fix bug on '%%line' directives.
21245
21246 * src/output.c (output_headers): Remove. The C code printed by this
21247 function should now be in the skeletons.
21248 (output_trailers): Remove.
21249 (output): Disable call to 'reader_output_yylsp'.
21250 (output_rule_data): Do not output tables to the table obstack.
21251
21252 * src/output.c: Remove some C dedicated output.
21253 Improve the use of macro and output obstacks.
21254 (output_defines): Remove.
21255
21256 * src/output.c (output_token_translations): Associate 'translate'
21257 table with a macro. No output to the table obstack.
21258 (output_gram): Same for 'rhs' and 'prhs'.
21259 (output_stos): Same for 'stos'.
21260 (output_rule_data): Same for 'r1' and 'r2'.
21261 (token_actions): Same for 'defact'.
21262 (goto_actions): Same for 'defgoto'.
21263 (output_base): Same for 'pact' and 'pgoto'.
21264 (output_table): Same for 'table'.
21265 (output_check): Same for 'check'.
21266
21267 * src/output.c (output_table_data): New function.
21268 (output_short_table): Remove.
21269 (output_short_or_char_table): Remove.
21270
21271 * src/output.c (output_parser): Replace most of the skeleton copy code
21272 with something new. Skeletons are now processed character by character
21273 rather than line by line, and Bison looks for '%%' macros. This is the
21274 first step in making Bison's output process (a lot) more flexible.
21275 (output_parser): Use the macro table.
21276
21277 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21278
21279 * src/main.c (main): Initialize the macro table.
21280
21281 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21282
21283 * src/lex.c (percent_table): Add tok_define.
21284 * src/lex.h: Add tok_define.
21285
21286 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21287
21288 * src/macrotab.c: New file.
21289 * src/macrotab.h: New file.
21290 * src/Makefile.am: Update.
21291
21292 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21293
21294 * lib/hash.c: New file.
21295 * lib/hash.h: New file.
21296 * lib/Makefile.am: Update.
21297
21298 2001-08-15 Akim Demaille <akim@epita.fr>
21299
21300 Version 1.28c.
21301
21302 2001-08-15 Marc Autret <autret_m@epita.fr>
21303
21304 * src/reader.c (readgram): Indent output macro YYSTYPE.
21305 (packsymbols): Likewise.
21306 (output_token_defines): Likewise.
21307 * src/files.c: Standardize.
21308 (compute_header_macro): New.
21309 (defines_obstack_save): New. Use compute_header_macro.
21310 (output_files): Update. Use defines_obstack_save.
21311
21312 2001-08-15 Akim Demaille <akim@epita.fr>
21313
21314 * doc/bison.texinfo (Table of Symbols): Document
21315 YYSTACK_USE_ALLOCA.
21316
21317 2001-08-15 Akim Demaille <akim@epita.fr>
21318
21319 * missing: Update from CVS Automake.
21320 * config/config.guess, config/config.sub, config/texinfo.tex:
21321 Update from gnu.org.
21322
21323 2001-08-15 Akim Demaille <akim@epita.fr>
21324
21325 * Makefile.maint: Sync with CVS Autoconf.
21326
21327 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
21328
21329 * doc/bison.texinfo: Include GNU Free Documentation License from
21330 `fdl.texi'.
21331 * doc/fdl.texi: Add to package.
21332
21333 2001-08-14 Marc Autret <autret_m@epita.fr>
21334
21335 Turn on %{source,header}_extension features.
21336
21337 * src/lex.c (percent_table): Un-CPP out header_extension and
21338 source_extension.
21339 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
21340 (compute_exts_from_src): Remove conditions. It restores priorities
21341 between options.
21342
21343 2001-08-14 Marc Autret <autret_m@epita.fr>
21344
21345 * src/files.c (compute_base_names): Add extensions computing when
21346 `--file-prefix' used.
21347 Standardize function calls.
21348
21349 2001-08-13 Marc Autret <autret_m@epita.fr>
21350
21351 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
21352 defining it (defined but null disables alloca).
21353
21354 2001-08-13 Marc Autret <autret_m@epita.fr>
21355
21356 * src/bison.simple (_yy_memcpy): CPP reformat.
21357
21358 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
21359
21360 * tests/atconfig.in (CPPFLAGS): Fix.
21361
21362 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
21363
21364 * doc/bison.texinfo: Include GNU General Public License from
21365 `gpl.texi'.
21366 * doc/gpl.texi: Add to package.
21367
21368 2001-08-10 Marc Autret <autret_m@epita.fr>
21369
21370 * src/print_graph.h: Fix.
21371 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
21372
21373 2001-08-10 Akim Demaille <akim@epita.fr>
21374
21375 * src/system.h: Provide default declarations for stpcpy, strndup,
21376 and strnlen.
21377
21378 2001-08-10 Robert Anisko <anisko_r@epita.fr>
21379
21380 * doc/bison.texinfo (Locations): Update @$ stuff.
21381
21382 2001-08-09 Robert Anisko <anisko_r@epita.fr>
21383
21384 * src/bison.simple (YYLLOC_DEFAULT): Update.
21385 (yyparse): Adjust.
21386
21387 2001-08-08 Marc Autret <autret_m@epita.fr>
21388
21389 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
21390 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
21391 Reported by Fabrice Bauzac.
21392
21393 2001-08-08 Marc Autret <autret_m@epita.fr>
21394
21395 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
21396 * src/vcg.c (output_node): Fix.
21397 * src/vcg.h: Cleanup.
21398 * src/print_graph.c: Add comments.
21399 (node_output_size): New global variable. Simplify the formatting of
21400 the VCG graph output.
21401 (print_actions): Unused code is now used. It notifies the final state
21402 and no action states in the VCG graph. It also give the reduce actions.
21403 The `shift and goto' edges are red and the `go to state' edges are
21404 blue.
21405 Get the current node name and node_obstack by argument.
21406 (node_obstack): New variable.
21407 (print_state): Manage node_obstack.
21408 (print_core): Use node_obstack given by argument.
21409 A node is not only computed here but in print_actions also.
21410 (print_graph): CPP out useless code instead of commenting it.
21411
21412 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
21413
21414 * tests/atconfig.in (CPPFLAGS): Fix.
21415
21416 2001-08-07 Akim Demaille <akim@epita.fr>
21417
21418 * src/print_graph.c (quote): New.
21419 (print_core): Use it.
21420
21421 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
21422
21423 * src/vcg.c (complain.h): Include it.
21424 Unepitaize `return' invocations.
21425 [NDEBUG] (main): Remove.
21426 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
21427 * src/files.c (open_files): Initialize graph_obstack.
21428 * src/print_graph.c (print_actions): CPP out useless code.
21429 (print_core): Don't output the last `\n' in labels.
21430 Use `quote'.
21431 * src/files.c (output_files): Output the VCG file.
21432 * src/main.c (main): Invoke print_graph ();
21433
21434 2001-08-06 Marc Autret <autret_m@epita.fr>
21435
21436 Automaton VCG graph output.
21437 Using option ``-g'' or long option ``--graph'', you can generate
21438 a gram_filename.vcg file containing a VCG description of the LALR (1)
21439 automaton of your grammar.
21440
21441 * src/main.c: Call to print_graph() function.
21442 * src/getargs.h: Update.
21443 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
21444 (graph_flag): New flag.
21445 (longopts): Update.
21446 (getargs): Add case `g'.
21447 * src/files.c (graph_obstack): New obstack struct.
21448 (open_files): Initialize new obstack.
21449 (output_files): Saves graph_obstack if required.
21450 * src/files.h (graph_obstack): New extern declaration.
21451 * src/Makefile.am: Add new source files.
21452
21453 2001-08-06 Marc Autret <autret_m@epita.fr>
21454
21455 * src/print_graph.c, src/print_graph.h (graph): New.
21456 * src/vcg.h: New file.
21457 * src/vcg.c: New file, VCG graph handling.
21458
21459 2001-08-06 Marc Autret <autret_m@epita.fr>
21460
21461 Add of %source_extension and %header_extension which specify
21462 the source or/and the header output file extension.
21463
21464 * src/files.c (compute_base_names): Remove initialisation of
21465 src_extension and header_extension.
21466 (compute_exts_from_gf): Update.
21467 (compute_exts_from_src): Update.
21468 (output_files): Update.
21469 * src/reader.c (parse_header_extension_decl): New.
21470 (parse_source_extension_decl): New.
21471 (read_declarations): New case statements for the new tokens.
21472 * src/lex.c (percent_table): Add entries for %source_extension
21473 and %header_extension.
21474 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
21475
21476 2001-08-06 Marc Autret <autret_m@epita.fr>
21477
21478 * configure.in: Bump to 1.28c.
21479 * doc/bison.texinfo: Texinfo thingies.
21480
21481 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
21482
21483 * tests/atconfig.in (CPPFLAGS): Add.
21484 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
21485
21486 2001-08-03 Akim Demaille <akim@epita.fr>
21487
21488 Version 1.28b.
21489
21490 2001-08-03 Akim Demaille <akim@epita.fr>
21491
21492 * tests/Makefile.am (check-local): Ship testsuite.
21493 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
21494 Include `string.h'.
21495
21496 2001-08-03 Akim Demaille <akim@epita.fr>
21497
21498 * configure.in: Try using -Wformat when compiling.
21499
21500 2001-08-03 Akim Demaille <akim@epita.fr>
21501
21502 * configure.in: Bump to 1.28b.
21503
21504 2001-08-03 Akim Demaille <akim@epita.fr>
21505
21506 * src/complain.c: Adjust strerror_r portability issues.
21507
21508 2001-08-03 Akim Demaille <akim@epita.fr>
21509
21510 Version 1.28a.
21511
21512 2001-08-03 Akim Demaille <akim@epita.fr>
21513
21514 * src/getargs.c, src/getarg.h (skeleton)): Constify.
21515 * src/lex.c (literalchar): Avoid name clashes on `buf'.
21516 * src/getargs.c: Include complain.h.
21517 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
21518 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
21519
21520 2001-08-03 Akim Demaille <akim@epita.fr>
21521
21522 * src/reader.c (readgram): Display hidden chars in error messages.
21523
21524 2001-08-03 Akim Demaille <akim@epita.fr>
21525
21526 Update to gettext 0.10.39.
21527
21528 2001-08-03 Akim Demaille <akim@epita.fr>
21529
21530 * lib/strspn.c: New.
21531
21532 2001-08-01 Marc Autret <autret_m@epita.fr>
21533
21534 * doc/bison.texinfo: Update.
21535 * doc/bison.1 (mandoc): Update.
21536 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
21537 * src/files.c: Support output files extensions computing.
21538 (src_extension): New static variable.
21539 (header_extension): New static variable.
21540 (tr): New function.
21541 (get_extension_index): New function, gets the index of an extension
21542 filename in a string.
21543 (compute_exts_from_gf): New function, computes extensions from the
21544 grammar file extension.
21545 (compute_exts_from_src): New functions, computes extensions from the
21546 C source file extension, file given by ``-o'' option.
21547 (compute_base_names): Update.
21548 (output_files): Update.
21549
21550 2001-08-01 Robert Anisko <anisko_r@epita.fr>
21551
21552 * doc/bison.texi: Document @$.
21553 (Locations): New section.
21554
21555 2001-07-18 Akim Demaille <akim@epita.fr>
21556
21557 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
21558 * config/prev-version.txt, config/move-if-change: New.
21559 * Makefile.am: Adjust.
21560
21561 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
21562
21563 * src/bison.simple (yyparse): Suppress warning `comparaison
21564 between signed and unsigned'.
21565
21566 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
21567
21568 * src/getargs.h (raw_flag): Remove.
21569 * src/getargs.c: Die on `-r'/`--raw'.
21570 * src/lex.c (parse_percent_token): Die on `%raw'.
21571 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
21572 * tests/calc.at: Suppress test with option `--raw'.
21573
21574 2001-07-14 Akim Demaille <akim@epita.fr>
21575
21576 * config/: New.
21577 * configure.in: Require Autoconf 2.50.
21578 Update to gettext 0.10.38.
21579
21580 2001-03-16 Akim Demaille <akim@epita.fr>
21581
21582 * doc/bison.texinfo: ANSIfy the examples.
21583
21584 2001-03-16 Akim Demaille <akim@epita.fr>
21585
21586 * getargs.c (skeleton): New variable.
21587 (longopts): --skeleton is a new option.
21588 (shortopts, getargs): -S is a new option.
21589 * getargs.h: Declare skeleton.
21590 * output.c (output_parser): Use it.
21591
21592 2001-03-16 Akim Demaille <akim@epita.fr>
21593
21594 * m4/strerror_r.m4: New.
21595 * m4/error.m4: Run AC_FUNC_STRERROR_R.
21596 * lib/error.h, lib/error.c: Update.
21597
21598 2001-03-16 Akim Demaille <akim@epita.fr>
21599
21600 * src/getargs.c (longopts): Clean up.
21601
21602 2001-02-21 Akim Demaille <akim@epita.fr>
21603
21604 * src/reader.c (gensym): `gensym_count' is your own.
21605 Use a static buf to create the symbol name, as token_buffer is no
21606 longer a buffer.
21607
21608 2001-02-08 Akim Demaille <akim@epita.fr>
21609
21610 * src/conflicts.c (conflict_report): Be sure not to append to res
21611 between two calls, which could happen if both first sprintf were
21612 skipped, but not the first cp += strlen.
21613
21614 2001-02-08 Akim Demaille <akim@epita.fr>
21615
21616 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
21617 New, from fileutils 4.0.37.
21618 * configure.in: Require Autoconf 2.49c. I took some time before
21619 making this decision. This is the only way out for portability
21620 issues in Bison, it would mean way too much duplicate effort to
21621 import in Bison features implemented in 2.49c since 2.13.
21622 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
21623
21624 2001-02-02 Akim Demaille <akim@epita.fr>
21625
21626 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
21627 * lib/xalloc.h, lib/xmalloc.c: Update.
21628
21629 2001-01-19 Akim Demaille <akim@epita.fr>
21630
21631 Get rid of the ad hoc handling of token_buffer in the scanner: use
21632 the obstacks.
21633
21634 * src/lex.c (token_obstack): New.
21635 (init_lex): Initialize it. No longer call...
21636 (grow_token_buffer): this. Remove it.
21637 Adjust all the places which used it to use the obstack.
21638
21639 2001-01-19 Akim Demaille <akim@epita.fr>
21640
21641 * src/lex.h: Rename all the tokens:
21642 s/\bENDFILE\b/tok_eof/g;
21643 s/\bIDENTIFIER\b/tok_identifier/g;
21644 etc.
21645 Let them be enums, not #define, to ease debugging.
21646 Adjust all the code.
21647
21648 2001-01-18 Akim Demaille <akim@epita.fr>
21649
21650 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
21651 * src/lex.c (maxtoken, grow_token_buffer): Static.
21652
21653 2001-01-18 Akim Demaille <akim@epita.fr>
21654
21655 Since we now use obstacks, more % directives can be enabled.
21656
21657 * src/lex.c (percent_table): Also accept `%yacc',
21658 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
21659 `%debug'.
21660 Handle the actions for `%semantic_parser' and `%pure_parser' here,
21661 instead of returning a token.
21662 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
21663 * src/reader.c (read_declarations): Adjust.
21664 * src/files.c (open_files): Don't call `compute_base_names', don't
21665 compute `attrsfile' since they depend upon data which might be
21666 *in* the input file now.
21667 (output_files): Do it here.
21668 * src/output.c (output_headers): Document the fact that this patch
21669 introduces a guaranteed SEGV for semantic parsers.
21670 * doc/bison.texinfo: Document them.
21671 * tests/suite.at: Exercise these %options.
21672
21673 2000-12-20 Akim Demaille <akim@epita.fr>
21674
21675 Also handle the output file (--verbose) with obstacks.
21676
21677 * files.c (foutput): Remove.
21678 (output_obstack): New.
21679 Adjust all dependencies.
21680 * src/conflicts.c: Return a string.
21681 * src/system.h (obstack_grow_string): Rename as...
21682 (obstack_sgrow): this. Be ready to work with non literals.
21683 (obstack_fgrow4): New.
21684
21685 2000-12-20 Akim Demaille <akim@epita.fr>
21686
21687 * src/files.c (open_files): Fix the computation of short_base_name
21688 in the case of `-o foo.tab.c'.
21689
21690 2000-12-20 Akim Demaille <akim@epita.fr>
21691
21692 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
21693 (copy_dollar): Now that everything uses obstacks, get rid of the
21694 FILE * parameters.
21695
21696 2000-12-20 Akim Demaille <akim@epita.fr>
21697
21698 * src/files.c (open_files): Actually the `.output' file is based
21699 on the short_base_name, not base_name.
21700 * tests/suite.at (Checking output file names): Adjust.
21701
21702 2000-12-20 Akim Demaille <akim@epita.fr>
21703
21704 * src/bison.s1: Remove, we now use directly...
21705 * src/bison.simple: this.
21706 * src/Makefile.am: Use pkgdata instead of data.
21707
21708 2000-12-20 Akim Demaille <akim@epita.fr>
21709
21710 * src/files.c (guard_obstack): New.
21711 (open_files): Initialize it.
21712 (output_files): Dump it...
21713 * src/files.h: Export it.
21714 * src/reader.c (copy_guard): Use it.
21715
21716 2000-12-19 Akim Demaille <akim@epita.fr>
21717
21718 * src/files.c (outfile, defsfile, actfile): Removed as global
21719 vars.
21720 (open_files): Don't compute them.
21721 (output_files): Adjust.
21722 (base_name, short_base_name): Be global.
21723 Adjust dependencies.
21724
21725 2000-12-19 Akim Demaille <akim@epita.fr>
21726
21727 * src/files.c (strsuffix): New.
21728 (stringappend): Be just like strcat but allocate.
21729 (base_names): Eve out from open_files.
21730 Try to simplify the rather hairy computation of base_name and
21731 short_base_name.
21732 (open_files): Use it.
21733 * tests/suite.at (Checking output file names): New test.
21734
21735 2000-12-19 Akim Demaille <akim@epita.fr>
21736
21737 * src/system.h (obstack_grow_literal_string): Rename as...
21738 (obstack_grow_string): this.
21739 * src/output.c (output_parser): Recognize `%% actions' instead of
21740 `$'.
21741 * src/bison.s1: s/$/%% actions/.
21742 * src/bison.hairy: Likewise.
21743
21744 2000-12-19 Akim Demaille <akim@epita.fr>
21745
21746 * src/output.c (output_parser): Compute the `#line' lines when
21747 there are.
21748 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
21749 Suggested by Hans Aberg.
21750
21751 2000-12-19 Akim Demaille <akim@epita.fr>
21752
21753 Let the handling of the skeleton files be local to the procedures
21754 that use it.
21755
21756 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
21757 longer static.
21758 (fparser, open_extra_files): Remove.
21759 (open_files, output_files): Don't take care of fparser.
21760 * src/files.h: Adjust.
21761 * src/output.c (output_parser): Open and close the file to the
21762 skeleton.
21763 * src/reader.c (read_declarations): When %semantic_parser, open
21764 fguard.
21765
21766 2000-12-19 Akim Demaille <akim@epita.fr>
21767
21768 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
21769 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
21770
21771 2000-12-19 Akim Demaille <akim@epita.fr>
21772
21773 * src/files.c (open_files): Yipee! We no longer need all the code
21774 looking for `/tmp' since we have no tmp file.
21775
21776 2000-12-19 Akim Demaille <akim@epita.fr>
21777
21778 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
21779 New macros.
21780 * src/files.c (open_files): Less dependency on MSDOS etc.
21781
21782 2000-12-14 Akim Demaille <akim@epita.fr>
21783
21784 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
21785 Provide a default definition.
21786 Use it when executing the default @ action.
21787 * src/reader.c (reader_output_yylsp): No longer include
21788 `timestamp' and `text' in the default YYLTYPE.
21789
21790 2000-12-12 Akim Demaille <akim@epita.fr>
21791
21792 * src/reader.c (copy_definition, parse_union_decl, copy_action)
21793 (copy_guard): Quote the file names.
21794 Reported by Laurent Mascherpa.
21795
21796 2000-12-12 Akim Demaille <akim@epita.fr>
21797
21798 * src/output.c (output_headers, output_program, output): Be sure
21799 to escape special characters when outputting filenames.
21800 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
21801 (output_headers): Don't depend on them, Use ACTSTR.
21802
21803 2000-11-17 Akim Demaille <akim@epita.fr>
21804
21805 * lib/obstack.h: Formatting changes.
21806 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
21807 prevents type checking.
21808 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
21809 cast the value to (void *): assigning a `foo *' to a `void *'
21810 variable is valid.
21811 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
21812 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
21813 append characters.
21814
21815 2000-11-17 Akim Demaille <akim@epita.fr>
21816
21817 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
21818 as...
21819 (suite.m4, regression.m4, calc.m4): these.
21820 * tests/atgeneral.m4: Update from CVS Autoconf.
21821
21822 2000-11-17 Akim Demaille <akim@epita.fr>
21823
21824 * tests/regression.m4 (%union and --defines): New test,
21825 demonstrating a current bug in the obstack implementation.
21826
21827 2000-11-17 Akim Demaille <akim@epita.fr>
21828
21829 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
21830 macros.
21831 Use them to declare the variables which are global or local to
21832 `yyparse'.
21833
21834 2000-11-17 Akim Demaille <akim@epita.fr>
21835
21836 * acconfig.h: Remove, no longer used.
21837
21838 2000-11-07 Akim Demaille <akim@epita.fr>
21839
21840 * src: s/Copyright (C)/Copyright/g.
21841
21842 2000-11-07 Akim Demaille <akim@epita.fr>
21843
21844 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
21845 defining.
21846 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
21847
21848 2000-11-07 Akim Demaille <akim@epita.fr>
21849
21850 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
21851 Merge in a single CPP if/else.
21852
21853 2000-11-07 Akim Demaille <akim@epita.fr>
21854
21855 * src/output.c (output): Remove useless variables.
21856 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
21857 argument `data' for consistency with the prototypes.
21858 Qualify it `const'.
21859 (obstack_copy, obstack_copy0): Rename the second argument as
21860 `address' for consistency. Qualify it `const'.
21861 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
21862 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
21863 `const' their input argument (`data' or `address').
21864 Adjust the corresponding macros to include `const' in casts.
21865
21866 2000-11-03 Akim Demaille <akim@epita.fr>
21867
21868 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
21869 s/PFILE1/BISON_HAIRY/.
21870 Adjust dependencies.
21871
21872 2000-11-03 Akim Demaille <akim@epita.fr>
21873
21874 For some reason, this was not applied.
21875
21876 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
21877 `unlink': it's no longer used.
21878
21879 2000-11-03 Akim Demaille <akim@epita.fr>
21880
21881 * src/files.c (skeleton_find): New function, eved out of...
21882 (open_files, open_extra_files): here.
21883
21884 2000-11-03 Akim Demaille <akim@epita.fr>
21885
21886 Don't use `atexit'.
21887
21888 * src/files.c (obstack_save): New function.
21889 (done): Rename as...
21890 (output_files): this.
21891 Use `obstack_save'.
21892 * src/main.c (main): Don't use `atexit' to register `done', since
21893 it no longer has to remove tmp files, just call `output_files'
21894 when there are no errors.
21895
21896 2000-11-02 Akim Demaille <akim@epita.fr>
21897
21898 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
21899 `unlink': it's no longer used.
21900 * src/files.h: Formatting changes.
21901
21902 2000-11-02 Akim Demaille <akim@epita.fr>
21903
21904 Remove the last uses of mktemp and unlink/delete.
21905
21906 * src/files.c (fdefines, ftable): Removed.
21907 (defines_ostack, table_obstack): New.
21908 Adjust dependencies of the former into uses of the latter.
21909 * src/output.c (output_short_or_char_table, output_short_table):
21910 Convert to using obstacks.
21911 * src/reader.c (copy_comment2): Accept one FILE * and two
21912 obstacks.
21913 (output_token_defines, reader_output_yylsp): Use obstacks.
21914 * src/system.h (obstack_fgrow3): New.
21915 * po/POTFILES.in: Adjust.
21916
21917 2000-11-01 Akim Demaille <akim@epita.fr>
21918
21919 Change each use of `fattrs' into a use of `attrs_obstack'.
21920
21921 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
21922 * src/files.c (fattrs): Remove.
21923 (attrs_obstack): New.
21924 Adjust all dependencies.
21925 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
21926
21927 2000-11-01 Akim Demaille <akim@epita.fr>
21928
21929 Introduce obstacks.
21930 Change each use of `faction' into a use of `action_obstack'.
21931
21932 * lib/obstack.h, lib/obstack.c: New files.
21933 * src/files.c (faction): Remove.
21934 (action_obstack): New.
21935 Adjust all dependencies.
21936
21937 2000-10-20 Akim Demaille <akim@epita.fr>
21938
21939 * lib/quote.h (PARAMS): New macro. Use it.
21940
21941 2000-10-16 Akim Demaille <akim@epita.fr>
21942
21943 * src/output.c (output_short_or_char_table): New function.
21944 (output_short_table, output_token_translations): Use it.
21945 (goto_actions): Use output_short_table.
21946
21947 2000-10-16 Akim Demaille <akim@epita.fr>
21948
21949 * src/symtab.c (bucket_new): New function.
21950 (getsym): Use it.
21951
21952 * src/output.c (output_short_table): New argument to display the
21953 comment associated with the table.
21954 Adjust dependencies.
21955 (output_gram): Use it.
21956 (output_rule_data): Nicer output layout for YYTNAME.
21957
21958 2000-10-16 Akim Demaille <akim@epita.fr>
21959
21960 * src/lex.c (read_typename): New function.
21961 (lex): Use it.
21962 * src/reader.c (copy_dollar): Likewise.
21963
21964 2000-10-16 Akim Demaille <akim@epita.fr>
21965
21966 * src/reader.c (copy_comment2): Expect the input stream to be on
21967 the `/' which is suspected to open a comment, instead of being
21968 called after `//' or `/*' was read.
21969 (copy_comment, copy_definition, parse_union_decl, copy_action)
21970 (copy_guard): Adjust.
21971
21972 2000-10-16 Akim Demaille <akim@epita.fr>
21973
21974 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
21975 `read_signed_integer'.
21976
21977 2000-10-16 Akim Demaille <akim@epita.fr>
21978
21979 * src/reader.c (copy_dollar): New function.
21980 (copy_guard, copy_action): Use it.
21981
21982 2000-10-16 Akim Demaille <akim@epita.fr>
21983
21984 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
21985 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
21986 New files, from Fileutils 4.0.27.
21987 * src/main.c (printable_version): Remove.
21988 * src/lex.c, src/reader.c: Use `quote'.
21989
21990 2000-10-04 Akim Demaille <akim@epita.fr>
21991
21992 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
21993
21994 2000-10-04 Akim Demaille <akim@epita.fr>
21995
21996 * doc/bison.texinfo: Various typos spotted by Neil Booth.
21997
21998 2000-10-04 Akim Demaille <akim@epita.fr>
21999
22000 When a literal string is used to define two different tokens,
22001 `bison -v' segfaults.
22002 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
22003
22004 * tests/regression.m4: New file.
22005 Include the core of the sample provided by Piotr Gackiewicz.
22006 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
22007 properly.
22008
22009 2000-10-04 Akim Demaille <akim@epita.fr>
22010
22011 * src/reader.c (parse_expect_decl): Keep `count' within the size
22012 of `buffer'.
22013 From Neil Booth.
22014
22015 2000-10-02 Paul Eggert <eggert@twinsun.com>
22016
22017 * bison.s1 (yyparse): Assign the default value
22018 unconditionally, to avoid a GCC warning and make the parser a
22019 tad smaller.
22020
22021 2000-10-02 Akim Demaille <akim@epita.fr>
22022
22023 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
22024 options.
22025
22026 2000-10-02 Akim Demaille <akim@epita.fr>
22027
22028 * src/derives.c, src/print.c, src/reduce.c: To ease the
22029 translation, move some `\n' out of the translated strings.
22030
22031 2000-10-02 Akim Demaille <akim@epita.fr>
22032
22033 The location tracking mechanism is precious for parse error
22034 messages. Nevertheless, it is enabled only when `@n' is used in
22035 the grammar, which is a different issue (you can use it in error
22036 message, but not in the grammar per se). Therefore, there should
22037 be another means to enable it.
22038
22039 * src/getargs.c (getargs): Support `--locations'.
22040 (usage): Report it.
22041 * src/getargs.h (locationsflag): Export it.
22042 * src/lex.c (percent_table): Support `%locations'.
22043 * src/reader.c (yylsp_needed): Remove this variable, now replaced
22044 with `locationsflag'.
22045 * doc/bison.texinfo: Document `--locations' and `%locations'.
22046 Sort the options.
22047 * tests/calc.m4: Test it.
22048
22049 For regularity of the names, replace each
22050 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
22051 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
22052 In addition replace each `flag' with `_flag'.
22053
22054 2000-10-02 Akim Demaille <akim@epita.fr>
22055
22056 Also test parse error messages, including with YYERROR_VERBOSE.
22057
22058 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
22059 associative).
22060 Use it to check the computations.
22061 Use it to check `nonassoc' is honored.
22062 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
22063 `--yyerror-verbose'.
22064 (_AT_CHECK_CALC): Adjust to this option.
22065 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
22066
22067 2000-10-02 Akim Demaille <akim@epita.fr>
22068
22069 Test also `--verbose', `--defines' and `--name-prefix'. Testing
22070 the latter demonstrates a flaw in the handling of non debugging
22071 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
22072 was used in order to simplify:
22073
22074 #if YYDEBUG
22075 if (yydebug)
22076 {
22077 ...
22078 }
22079 #endif
22080
22081 into
22082
22083 if (yydebug)
22084 {
22085 ...
22086 }
22087
22088 unfortunately this leads to a CPP conflict when
22089 `--name-prefix=foo' is used since it produces `#define yydebug
22090 foodebug'.
22091
22092 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
22093 (YYDPRINTF): New macro.
22094 Spread its use.
22095 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
22096 the bison options.
22097 Also test `--verbose', `--defines' and `--name-prefix'.
22098
22099 2000-10-02 Akim Demaille <akim@epita.fr>
22100
22101 Improve the readability of the produced parsers.
22102
22103 * src/bison.s1: Formatting changes.
22104 Improve the comment related to the `$' mark.
22105 (yydefault): Don't fall through to `yyresume': `goto' there.
22106 * src/output.c (output_parser): When the `$' is met, skip the end
22107 of its line.
22108 New variable, `number_of_dollar_signs', to check there's exactly
22109 one `$' in the parser skeleton.
22110
22111 2000-10-02 Akim Demaille <akim@epita.fr>
22112
22113 * lib/xstrdup.c: New file, from the fileutils.
22114 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
22115 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
22116 instead of strlen + xmalloc + strcpy.
22117 * src/symtab.c (copys): Remove, use xstrdup instead.
22118
22119 2000-10-02 Akim Demaille <akim@epita.fr>
22120
22121 * src/gram.h (associativity): New enum type which replaces the
22122 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
22123 `right_assoc', `left_assoc' and `non_assoc'.
22124 Adjust all dependencies.
22125 * src/reader.c: Formatting changes.
22126 (LTYPESTR): Don't define it, use it as a literal in
22127 `reader_output_yylsp'.
22128 * src/symtab.h (symbol_class): New enum type which replaces the
22129 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
22130 `sunknown', `stoken and `snterm'.
22131
22132 2000-10-02 Akim Demaille <akim@epita.fr>
22133
22134 * src/getargs.c (fixed_outfiles): Rename as...
22135 (yaccflag): for consistency and accuracy.
22136 Adjust dependencies.
22137
22138 2000-10-02 Akim Demaille <akim@epita.fr>
22139
22140 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
22141 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
22142 difficult and introduced a lot of core dump. It turns out that
22143 Bison used an implementation of `xmalloc' based on `calloc', and
22144 at various places it does depend upon the initialization to 0. I
22145 have not tried to isolate the pertinent places, and all the former
22146 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
22147 someone should address this issue.
22148
22149 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
22150 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
22151 files.
22152 Adjust dependencies.
22153 * src/warshall.h: New file.
22154 Propagate.
22155
22156 2000-10-02 Akim Demaille <akim@epita.fr>
22157
22158 Various anti-`extern in *.c' changes.
22159
22160 * src/system.h: Include `assert.h'.
22161
22162 2000-10-02 Akim Demaille <akim@epita.fr>
22163
22164 * src/state.h (nstates, final_state, first_state, first_shift)
22165 (first_reduction): Move their exportation from here...
22166 * src/LR0.h: to here.
22167 Adjust dependencies.
22168 * src/getargs.c (statisticsflag): New variable.
22169 Add support for `--statistics'.
22170 Adjust dependencies.
22171
22172 Remove a lot of now useless `extern' statements in most files.
22173
22174 2000-10-02 Akim Demaille <akim@epita.fr>
22175
22176 * src/LR0.h: New file.
22177 Propagate its use.
22178
22179 2000-10-02 Akim Demaille <akim@epita.fr>
22180
22181 * src/print.h: New file.
22182 Propagate its use.
22183 * src/print.c: Formatting and ordering changes.
22184 (verbose, terse): Replace with...
22185 (print_results): this new function.
22186 Adjust dependencies.
22187
22188 2000-10-02 Akim Demaille <akim@epita.fr>
22189
22190 * src/conflicts.c (conflict_report): New function.
22191 (conflict_log, verbose_conflict_log): Replace with...
22192 (print_conflicts): this function.
22193 Adjust dependencies.
22194 * src/conflicts.h: New file.
22195 Propagate its inclusion.
22196
22197 2000-10-02 Akim Demaille <akim@epita.fr>
22198
22199 * src/nullable.h: New file.
22200 Propagate its inclusion.
22201 * src/nullable.c: Formatting changes.
22202
22203 2000-10-02 Akim Demaille <akim@epita.fr>
22204
22205 * src/reduce.h: New file.
22206 Propagate its inclusion.
22207 * src/reduce.c: Topological sort and other formatting changes.
22208 (bool, TRUE, FALSE): Move their definition to...
22209 * src/system.h: here.
22210
22211 2000-10-02 Akim Demaille <akim@epita.fr>
22212
22213 * src/files.c: Formatting changes.
22214 (tryopen, tryclose, openfiles): Rename as...
22215 (xfopen, xfclose, open_files): this.
22216 (stringappend): static.
22217 * src/files.h: Complete the list of exported symbols.
22218 Propagate its use.
22219
22220 2000-10-02 Akim Demaille <akim@epita.fr>
22221
22222 * src/reader.h: New file.
22223 Propagate its use instead of tedious list of `extern' and
22224 prototypes.
22225 * src/reader.c: Formatting changes, topological sort,
22226 s/register//.
22227
22228 2000-10-02 Akim Demaille <akim@epita.fr>
22229
22230 * src/lex.h: Prototype `lex.c' exported functions.
22231 * src/reader.c: Adjust.
22232 * src/lex.c: Formatting changes.
22233 (safegetc): Rename as...
22234 (xgetc): this.
22235
22236 2000-10-02 Akim Demaille <akim@epita.fr>
22237
22238 * src/lalr.h: New file.
22239 Propagate its inclusion instead of prototypes and `extern'.
22240 * src/lalr.c: Formatting changes, topological sorting etc.
22241
22242 2000-10-02 Akim Demaille <akim@epita.fr>
22243
22244 * src/output.c (token_actions): Introduce a temporary array,
22245 YYDEFACT, that makes it possible for this function to use
22246 output_short_table.
22247
22248 2000-10-02 Akim Demaille <akim@epita.fr>
22249
22250 `user_toknums' is output as a `short[]' in `output.c', while it is
22251 defined as a `int[]' in `reader.c'. For consistency with the
22252 other output tables, `user_toknums' is now defined as a table of
22253 shorts.
22254
22255 * src/reader.c (user_toknums): Be a short table instead of an int
22256 table.
22257 Adjust dependencies.
22258
22259 Factor the short table outputs.
22260
22261 * src/output.c (output_short_table): New function.
22262 * src/output.c (output_gram, output_stos, output_rule_data)
22263 (output_base, output_table, output_check): Use it.
22264
22265 2000-10-02 Akim Demaille <akim@epita.fr>
22266
22267 * src/output.c (output): Topological sort of the functions, in
22268 order to get rid of the `static' prototypes.
22269 No longer use `register'.
22270 * src/output.h: New file.
22271 Propagate its inclusion in files explicitly prototyping functions
22272 from output.c.
22273
22274 2000-09-21 Akim Demaille <akim@epita.fr>
22275
22276 * src/atgeneral.m4: Update from Autoconf.
22277
22278 2000-09-21 Akim Demaille <akim@epita.fr>
22279
22280 * src/closure.h: New file.
22281 * src/closure.c: Formatting changes, topological sort over the
22282 functions, use of closure.h.
22283 (initialize_closure, finalize_closure): Rename as...
22284 (new_closure, free_closure): these. Adjust dependencies.
22285 * src/LR0.c: Formatting changes, topological sort, use of
22286 cloture.h.
22287 (initialize_states): Rename as...
22288 (new_states): this.
22289 * src/Makefile.am (noinst_HEADERS): Adjust.
22290
22291 2000-09-20 Akim Demaille <akim@epita.fr>
22292
22293 * src/acconfig.h: Don't protect config.h against multiple
22294 inclusion.
22295 Don't define PARAMS.
22296 * src/system.h: Define PARAMS.
22297 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
22298 purpose of config.h. system.h must not try to fix wrong
22299 definitions in config.h.
22300
22301 2000-09-20 Akim Demaille <akim@epita.fr>
22302
22303 * src/derives.h: New file.
22304 * src/main.c, src/derives.h: Use it.
22305 Formatting changes.
22306 * src/Makefile.am (noinst_HEADERS): Adjust.
22307
22308 2000-09-20 Akim Demaille <akim@epita.fr>
22309
22310 * tests/atgeneral.m4: Update from Autoconf.
22311 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
22312 (AT_CHECK_CALC): New macros.
22313 Use these macros to test bison with options `', `--raw',
22314 `--debug', `--yacc', `--yacc --debug'.
22315
22316 2000-09-19 Akim Demaille <akim@epita.fr>
22317
22318 * src/output.c: Formatting changes.
22319 * src/machine.h: Remove, leaving its contents in...
22320 * src/system.h: here.
22321 Include stdio.h.
22322 Adjust all dependencies on stdio.h and machine.h.
22323 * src/getargs.h: New file.
22324 Let all `extern' declarations about getargs.c be replaced with
22325 inclusion of `getargs.h'.
22326 * src/Makefile.am (noinst_HEADERS): Adjust.
22327
22328 * tests/calc.m4 (yyin): Be initialized in main, not on the global
22329 scope.
22330 (yyerror): Returns void, not int.
22331 * doc/bison.texinfo: Formatting changes.
22332
22333 2000-09-19 Akim Demaille <akim@epita.fr>
22334
22335 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
22336 portable.
22337
22338 2000-09-18 Akim Demaille <akim@epita.fr>
22339
22340 * configure.in: Append WARNING_CFLAGS to CFLAGS.
22341 * src/Makefile.am (INCLUDES): Don't.
22342 Be ready to fetch headers in lib/.
22343
22344 2000-09-18 Akim Demaille <akim@epita.fr>
22345
22346 * doc/bison.texinfo: Update the copyright.
22347 ANSIfy and GNUify the examples.
22348 Remove the old menu.
22349
22350 2000-09-18 Akim Demaille <akim@epita.fr>
22351
22352 First set of tests: use the `calc' example from the documentation.
22353
22354 * src/bison.s1 (yyparse): Condition the code using `yytname' which
22355 is defined only when YYDEBUG is.
22356 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
22357 * src/files.c (tryopen, tryclose): Formatting changes.
22358 Move to the top and be static.
22359 * src/reader.c (read_signed_integer): Likewise.
22360 * tests/calc.m4: New file.
22361 * Makefile.am, suite.m4: Adjust.
22362 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
22363
22364 2000-09-18 Akim Demaille <akim@epita.fr>
22365
22366 Add support for an Autotest test suite for Bison.
22367
22368 * m4/m4.m4, m4/atconfig.m4: New files.
22369 * m4/Makefile.am (EXTRA_DIST): Adjust.
22370 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
22371 files.
22372 * src/getargs.c: Display a more standard --version message.
22373 * src/reader.c (reader): Formatting changes.
22374 No longer depend upon VERSION_STRING.
22375 * configure.in: No longer use `dnl'.
22376 Set up the test suite and the new directory `tests/.
22377 (VERSION_STRING): Remove.
22378
22379 2000-04-14 Akim Demaille <akim@epita.fr>
22380
22381 * src/reader.c (copy_comment2): New function, same as former
22382 `copy_comment', but outputs into two FILE *.
22383 (copy_comment): Use it.
22384 (parse_union_decl): Use it.
22385 (get_type, parse_start_decl): Use the same `invalid' message.
22386 (parse_start_decl, parse_union_decl): Use the same `multiple'
22387 message.
22388 (parse_union_decl, copy_guard, copy_action): Use the same
22389 `unmatched' message.
22390 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
22391
22392 2000-03-31 Akim Demaille <akim@epita.fr>
22393
22394 * src/files.c (tryopen, tryclose): Move to the top.
22395 Be static.
22396
22397 2000-03-31 Akim Demaille <akim@epita.fr>
22398
22399 * src/main.c (main): Don't call `done', exit does it.
22400
22401 2000-03-31 Akim Demaille <akim@epita.fr>
22402
22403 * allocate.c: s/return (foo)/return foo/.
22404 * lalr.c: Likewise.
22405 * LR0.c: Likewise.
22406 * output.c: Likewise.
22407 * reader.c: Likewise.
22408 * symtab.c: Likewise.
22409 * vmsgetargs.c: Likewise.
22410
22411 2000-03-31 Akim Demaille <akim@epita.fr>
22412
22413 Clean up the error reporting functions.
22414
22415 * src/report.c: New file.
22416 * src/report.h: Likewise.
22417 * src/Makefile.am: Adjust.
22418 * m4/error.m4: New file.
22419 * m4/Makefile.am: Adjust.
22420 * configure.in (jm_PREREQ_ERROR): Call it.
22421 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
22422 Remove.
22423 (fatal, fatals): Remove. All callers use complain.c::fatal.
22424 (warn, warni, warns, warnss, warnss): Remove. All callers use
22425 complain.c::complain.
22426 (toomany): Remove, use fatal instead.
22427 * src/files.c (done): No argument, use complain_message_count.
22428 * src/main.c (main): Register `done' to `atexit'.
22429
22430 * src/getargs.c (usage): More `fputs', less `fprintf'.
22431
22432 2000-03-28 Akim Demaille <akim@epita.fr>
22433
22434 * lib/: New directory.
22435 * Makefile.am (SUBDIRS): Adjust.
22436 * configure.in: Adjust.
22437 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
22438 useless.
22439 * src/alloca.c: Moved to lib/.
22440 * src/getopt.c: Likewise.
22441 * src/getopt1.c: Likewise.
22442 * src/getopt.h: Likewise.
22443 * src/ansi2knr.c: Likewise.
22444 * src/ansi2knr.1: Likewise.
22445 * src/Makefile.am: Adjust.
22446 * lib/Makefile.am: New file.
22447
22448 2000-03-28 Akim Demaille <akim@epita.fr>
22449
22450 * src/getargs.c (usage): Refresh the help message.
22451
22452 2000-03-17 Akim Demaille <akim@epita.fr>
22453
22454 * src/getopt1.c: Updated from textutils 2.0e
22455 * src/getopt.c: Likewise.
22456 * src/getopt.h: Likewise.
22457
22458 2000-03-17 Akim Demaille <akim@epita.fr>
22459
22460 * src/Makefile.am (bison.simple): Fix the awk program: quote only
22461 the file name, not the whole `#line LINE FILE'.
22462
22463 2000-03-17 Akim Demaille <akim@epita.fr>
22464
22465 On syntax errors, report the token on which we choked.
22466
22467 * src/bison.s1 (yyparse): In the label yyerrlab, when
22468 YYERROR_VERBOSE, add yychar in msg.
22469
22470 2000-03-17 Akim Demaille <akim@epita.fr>
22471
22472 * src/reader.c (copy_at): New function.
22473 (copy_guard): Use it.
22474 (copy_action): Use it.
22475
22476 2000-03-17 Akim Demaille <akim@epita.fr>
22477
22478 Be kind to translators, save some useless translations.
22479
22480 * src/main.c (banner): New function.
22481 (fatal_banner): Use it.
22482 (warn_banner): Use it.
22483
22484 2000-03-17 Akim Demaille <akim@epita.fr>
22485
22486 * src/reader.c (copy_definition): Use copy_string and
22487 copy_comment. Removed now unused `match', `ended',
22488 `cplus_comment'.
22489 (copy_comment, copy_string): Moved, to be visible from
22490 copy_definition.
22491
22492 2000-03-17 Akim Demaille <akim@epita.fr>
22493
22494 * src/reader.c (copy_string): Declare `static inline'. No
22495 problems with inline, since it is checked by configure.
22496 (copy_comment): Likewise.
22497
22498 2000-03-17 Akim Demaille <akim@epita.fr>
22499
22500 * src/reader.c (packsymbols): Formatting changes.
22501
22502 2000-03-17 Akim Demaille <akim@epita.fr>
22503
22504 * src/reader.c (copy_comment): New function, factored out from:
22505 (copy_action): Use it. Removed now unused `match', `ended',
22506 `cplus_comment'.
22507 (copy_guard): Likewise.
22508
22509 2000-03-17 Akim Demaille <akim@epita.fr>
22510
22511 * src/reader.c (copy_string): New function, factored out from:
22512 (copy_action): Use it.
22513 (copy_guard): Likewise.
22514
22515 2000-03-17 Akim Demaille <akim@epita.fr>
22516
22517 Change the handling of @s so that they behave exactly like $s.
22518 There is now a pseudo variable @$ (readble and writable), location
22519 of the lhs of the rule (by default ranging from the location of
22520 the first symbol of the rhs, to the location of the last symbol,
22521 or, if the rhs is empty, YYLLOC).
22522
22523 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
22524 yyval.
22525 (yyparse): When providing a default semantic action, provide a
22526 default location action.
22527 (after the $): No longer change `*YYLSP', just stack YYLOC the
22528 same way you stack YYVAL.
22529 * src/reader.c (read_declarations): Use warns.
22530 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
22531 (copy_action, case '@'): Likewise.
22532 Use a standard error message, to save useless work from
22533 translators.
22534
22535 2000-03-17 Akim Demaille <akim@epita.fr>
22536
22537 * src/bison.s1: Formatting and cosmetics changes.
22538 * src/reader.c: Likewise.
22539 Update the Copyright notice.
22540
22541 2000-03-17 Akim Demaille <akim@epita.fr>
22542
22543 * src/bison.s1 (#line): All set to `#line' only, since the
22544 Makefile now handles them.
22545
22546 2000-03-16 Akim Demaille <akim@epita.fr>
22547
22548 * src/output.c (output_rule_data): Output the documentation of
22549 some of the tables.
22550 (Copyright notice): Update.
22551 Formatting changes.
22552
22553 2000-03-16 Akim Demaille <akim@epita.fr>
22554
22555 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
22556 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
22557 One `#if YYDEBUG' remains, since it uses variables which are
22558 defined only if `YYDEBUG != 0'.
22559
22560 2000-03-16 Akim Demaille <akim@epita.fr>
22561
22562 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
22563 and related variables so that the similarities are highlighted.
22564
22565 2000-03-16 Akim Demaille <akim@epita.fr>
22566
22567 * src/bison.s1: Properly indent CPP directives.
22568
22569 2000-03-16 Akim Demaille <akim@epita.fr>
22570
22571 * src/bison.s1: Properly indent the `alloca' CPP section.
22572
22573 2000-03-16 Akim Demaille <akim@epita.fr>
22574
22575 Do not hard code values of directories in `configure.in'.
22576 Update the `configure' tool chain.
22577
22578 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
22579 src/makefile.am.
22580 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
22581 (AC_OUTPUT): Add m4/Makefile.
22582 Bump to bison 1.28a, 1.29 has never been released.
22583 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
22584 handled via src/Makefile.am.
22585 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
22586 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
22587 autoheader.
22588 * Makefile.am (SUBDIRS): Add m4.
22589 (ACLOCAL_AM_FLAGS): New variable.
22590 (AUTOMAKE_OPTIONS): Add check-news.
22591 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
22592 the proper line number and file name.
22593 (DEFS): Propagate the location of bison library files and of the
22594 locale files.
22595 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
22596 builddir.
22597 * acinclude.m4: Remove, replaced by the directory m4.
22598 * m4/Makefile.am (EXTRA_DIST): New variable.
22599 * m4/gettext.m4: New file, from the fileutils.
22600 * m4/lcmessage.m4: Likewise
22601 * m4/progtest.m4: Likewise.
22602 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
22603
22604 2000-03-10 Akim Demaille <akim@epita.fr>
22605
22606 * src/closure.c:
22607 Formatting changes of various comments.
22608 Respect the GNU coding standards at various places.
22609 Don't use `_()' when no translation is needed.
22610
22611 1999-12-13 Jesse Thilo <jthilo@gnu.org>
22612
22613 * src/files.c:
22614 OS/2 honors TMPDIR environment variable.
22615
22616 1999-12-13 Jesse Thilo <jthilo@gnu.org>
22617
22618 * doc/bison.texinfo: Tweaked spelling and grammar.
22619 Updated ISBN.
22620 Removed reference to price of printed copy.
22621 Mention BISON_SIMPLE and BISON_HAIRY.
22622
22623 1999-12-13 Jesse Thilo <jthilo@gnu.org>
22624
22625 * configure.in, NEWS:
22626 Bison 1.29 released.
22627
22628 1999-10-27 Jesse Thilo <jthilo@gnu.org>
22629
22630 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
22631 Added reference card.
22632
22633 1999-07-26 Jesse Thilo <jthilo@gnu.org>
22634
22635 * po/ru.po: Added Russian translation.
22636
22637 1999-07-26 Jesse Thilo <jthilo@gnu.org>
22638
22639 * configure.in: Added Russian translation.
22640
22641 1999-07-06 Jesse Thilo <jthilo@gnu.org>
22642
22643 * configure.in, NEWS, README:
22644 Released version 1.28.
22645
22646 1999-06-14 Jesse Thilo <jthilo@gnu.org>
22647
22648 * src/system.h:
22649 Squashed redefinition warning on some systems.
22650
22651 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
22652 Have configure build version string instead of relying on ANSI string
22653 concatentation.
22654
22655 1999-06-14 Jesse Thilo <jthilo@gnu.org>
22656
22657 * po/POTFILES.in: Got rid of version.c.
22658
22659 1999-06-14 Jesse Thilo <jthilo@gnu.org>
22660
22661 * acconfig.h, configure.in:
22662 Have configure build version string instead of relying on ANSI string
22663 concatentation.
22664
22665 1999-06-08 Jesse Thilo <jthilo@gnu.org>
22666
22667 * doc/bison.1:
22668 Dropped mention of `+' for long-named options.
22669
22670 1999-05-30 Jesse Thilo <jthilo@gnu.org>
22671
22672 * src/files.c: Added <unistd.h> for unlink().
22673
22674 * src/Makefile.am, src/system.h:
22675 I18n fixes.
22676
22677 1999-05-30 Jesse Thilo <jthilo@gnu.org>
22678
22679 * README: Added a FAQ list.
22680
22681 * configure.in, acconfig.h:
22682 I18n fixes.
22683
22684 1999-05-30 Jesse Thilo <jthilo@gnu.org>
22685
22686 * doc/FAQ, doc/Makefile.am:
22687 Added a FAQ list.
22688
22689 1999-05-19 Jesse Thilo <jthilo@gnu.org>
22690
22691 * src/alloc.h, src/symtab.h, src/version.c:
22692 Protected inclusion of "config.h" with HAVE_CONFIG_H.
22693
22694 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22695
22696 * src/.cvsignore, src/Makefile.am:
22697 Reorganized: sources in `src', documentation in `doc'.
22698
22699 * src/lex.c (literalchar):
22700 fixed the code for escaping double quotes (thanks
22701 Jonathan Czisny.)
22702
22703 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22704
22705 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
22706 Adjusted paths to reflect directory reorganization.
22707
22708 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22709
22710 * doc/.cvsignore, doc/Makefile.am:
22711 Reorganized: sources in `src', documentation in `doc'.
22712
22713 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22714
22715 * configure.in:
22716 Updated AC_INIT file to reflect directory reorganization.
22717
22718 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
22719 Reorganized: sources in `src', documentation in `doc'.
22720
22721 1999-04-13 Jesse Thilo <jthilo@gnu.org>
22722
22723 * src/allocate.c:
22724 Don't declare calloc() and realloc() if not necessary.
22725
22726 1999-04-13 Jesse Thilo <jthilo@gnu.org>
22727
22728 * configure.in, acconfig.h, acinclude.m4:
22729 Don't declare calloc() and realloc() if not necessary.
22730
22731 1999-03-23 Jesse Thilo <jthilo@gnu.org>
22732
22733 * po/.cvsignore: Added i18n support.
22734
22735 1999-03-23 Jesse Thilo <jthilo@gnu.org>
22736
22737 * acconfig.h, configure.in, Makefile.am:
22738 Added i18n support.
22739
22740 1999-03-22 Jesse Thilo <jthilo@gnu.org>
22741
22742 * src/bison.s1: Fixed #line numbers.
22743
22744 1999-03-15 Jesse Thilo <jthilo@gnu.org>
22745
22746 * po/es.po, po/fr.po, po/nl.po, po/de.po:
22747 Added PO files from Translation Project.
22748
22749 1999-03-03 Jesse Thilo <jthilo@gnu.org>
22750
22751 * Makefile.am:
22752 Added support for non-ANSI compilers (ansi2knr).
22753
22754 1999-02-16 Jesse Thilo <jthilo@gnu.org>
22755
22756 * configure.in: Bumped version number to 1.27.
22757
22758 * Makefile.am:
22759 Added `bison.simple' to list of files removed by `make distclean'.
22760
22761 1999-02-12 Jesse Thilo <jthilo@gnu.org>
22762
22763 * src/files.c, src/files.h:
22764 Defined locations of parser files in config.h instead of Makefile.
22765
22766 1999-02-12 Jesse Thilo <jthilo@gnu.org>
22767
22768 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
22769 Defined locations of parser files in config.h instead of Makefile.
22770
22771 1999-02-09 Jesse Thilo <jthilo@gnu.org>
22772
22773 * Makefile.am:
22774 Removed inappropriate use of $< macro.
22775
22776 1999-02-05 Jesse Thilo <jthilo@gnu.org>
22777
22778 * po/Makefile.in.in, po/POTFILES.in:
22779 Add `po' directory skeleton.
22780
22781 1999-01-27 Jesse Thilo <jthilo@gnu.org>
22782
22783 * README: Document help-bison list.
22784
22785 * configure.in: Add check for mkstemp().
22786
22787 1999-01-20 Jesse Thilo <jthilo@gnu.org>
22788
22789 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
22790 Hush a few compiler warnings.
22791
22792 * src/files.c:
22793 Add tryclose(), which verifies that fclose was successful.
22794 Hush a couple of compiler warnings.
22795
22796 1999-01-20 Jesse Thilo <jthilo@gnu.org>
22797
22798 * Makefile.am, OChangeLog:
22799 ChangeLog is now automatically generated. Include the old version as
22800 OChangeLog.
22801
22802 1999-01-14 Jesse Thilo <jthilo@gnu.org>
22803
22804 * src/gram.h, src/lalr.c, src/lex.c, src/lex.h, src/machine.h, src/main.c, src/nullable.c, src/output.c, src/print.c, src/reader.c, src/reduce.c, src/state.h, src/symtab.c, src/symtab.h, src/types.h, src/vmsgetargs.c, src/warshall.c, src/allocate.c, src/alloc.h, src/bison.s1, src/closure.c, src/conflicts.c, src/derives.c, src/files.c, src/files.h, src/getargs.c, src/gram.c, src/LR0.c:
22805 Update FSF address.
22806
22807 1999-01-14 Jesse Thilo <jthilo@gnu.org>
22808
22809 * doc/bison.texinfo: Fix formatting glitch.
22810
22811 * doc/bison.texinfo: Update FSF address.
22812
22813 1999-01-14 Jesse Thilo <jthilo@gnu.org>
22814
22815 * acconfig.h: Update FSF address.
22816
22817 1999-01-08 Jesse Thilo <jthilo@gnu.org>
22818
22819 * src/system.h:
22820 Don't define PACKAGE here, since config.h defines it.
22821
22822 1998-12-30 Jesse Thilo <jthilo@gnu.org>
22823
22824 * src/reader.c: Update copyright date.
22825
22826 * src/main.c:
22827 Ditch sprintf to statically-sized buffers in fatal/warn functions in
22828 favor of output directly to stderr (avoids buffer overruns).
22829
22830 * src/reader.c: Some checks for premature EOF.
22831
22832 * src/allocate.c, src/alloc.h, src/closure.c, src/conflicts.c, src/derives.c, src/getargs.c, src/gram.c, src/lalr.c, src/lex.c, src/LR0.c, src/main.c, src/nullable.c, src/output.c, src/print.c, src/reduce.c, src/symtab.c, src/symtab.h, src/warshall.c:
22833 Use prototypes if the compiler understands them.
22834
22835 * src/files.c: Honor TMPDIR on Unix hosts.
22836 Use prototypes if the compiler understands them.
22837
22838 * src/reader.c:
22839 Fix a couple of buffer overrun bugs.
22840 Use prototypes if the compiler understands them.
22841
22842 * src/system.h: Include unistd.h and ctype.h.
22843 Use #ifdef instead of #if for NLS symbols.
22844
22845 1998-12-30 Jesse Thilo <jthilo@gnu.org>
22846
22847 * doc/bison.texinfo:
22848 Delete comment "consider using @set for edition number, etc..." since
22849 we now are doing so.
22850
22851 1998-12-30 Jesse Thilo <jthilo@gnu.org>
22852
22853 * configure.in:
22854 Use prototypes if the compiler understands them.
22855
22856 * NEWS: Document 1.26 highlights.
22857
22858 * Makefile.am: Require Automake 1.3 or later.
22859
22860 * acconfig.h:
22861 Use prototypes if the compiler understands them.
22862
22863 1998-12-29 Jesse Thilo <jthilo@gnu.org>
22864
22865 * src/version.c:
22866 Use VERSION symbol from automake for version number.
22867
22868 1998-12-29 Jesse Thilo <jthilo@gnu.org>
22869
22870 * acconfig.h, configure.in, version.cin:
22871 Use VERSION symbol from automake for version number.
22872
22873 1998-11-28 Jesse Thilo <jthilo@gnu.org>
22874
22875 * Makefile.am:
22876 Distribute original version of simple parser (bison.s1), not built
22877 version (bison.simple).
22878
22879 1998-11-28 Jesse Thilo <jthilo@gnu.org>
22880
22881 * doc/bison.texinfo: Add info dir entry.
22882
22883 * doc/bison.texinfo:
22884 Let automake put version number into documentation.
22885
22886 1998-11-26 Jesse Thilo <jthilo@gnu.org>
22887
22888 * src/bison.cld, src/build.com, src/vmshlp.mar:
22889 Add non-RCS files from /gd/gnu/bison.
22890
22891 1998-11-26 Jesse Thilo <jthilo@gnu.org>
22892
22893 * doc/bison.1:
22894 Document the BISON_HAIRY and BISON_SIMPLE variables.
22895
22896 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22897
22898 * src/version.c: Build version.c automatically.
22899
22900 * src/reader.c:
22901 Fix token numbering (used to start at 258, not 257).
22902
22903 * src/system.h: Include config.h.
22904
22905 * src/getargs.c: Update bug report address.
22906
22907 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
22908 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
22909
22910 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22911
22912 * Makefile.am:
22913 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
22914
22915 * configure.in, version.cin:
22916 Build version.c automatically.
22917
22918 * AUTHORS: Add AUTHORS file.
22919
22920 * README: Update bug report address.
22921
22922 * bison.simple:
22923 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
22924
22925 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
22926 Add automake stuff.
22927
22928 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22929
22930 * doc/bison.texinfo: Clean up some formatting.
22931
22932 1998-05-05 Richard Stallman <rms@gnu.org>
22933
22934 * doc/bison.texinfo:
22935 Explain better why to make a pure parser.
22936
22937 1998-01-05 Richard Stallman <rms@gnu.org>
22938
22939 * src/files.c (openfiles):
22940 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
22941 find a temporary directory, if possible. Do not unlink files while
22942 they are open.
22943
22944 1997-08-25 Richard Stallman <rms@gnu.org>
22945
22946 * src/reader.c (stack_offset;):
22947 Change some warni to warns.
22948
22949 * src/lex.c (literalchar): Use warns, not warni.
22950
22951 1997-06-28 Richard Stallman <rms@gnu.org>
22952
22953 * src/bison.s1: Add a Bison version comment.
22954
22955 * src/main.c (fatal, warn, berror):
22956 Use program_name.
22957
22958 1997-06-28 Richard Stallman <rms@gnu.org>
22959
22960 * Makefile.in (bison_version): New variable.
22961 (dist): Use that variable.
22962 (bison.s1): Substitute the Bison version into bison.simple.
22963
22964 * bison.simple: Add a Bison version comment.
22965
22966 1997-06-18 Richard Stallman <rms@gnu.org>
22967
22968 * src/main.c (fatal, warn, berror):
22969 Make error messages standard.
22970 (toomany): Improve error message text.
22971
22972 * src/LR0.c, src/closure.c, src/conflicts.c, src/derives.c, src/files.c, src/lalr.c, src/lex.c, src/nullable.c, src/output.c, src/print.c, src/reader.c, src/reduce.c, src/symtab.c:
22973 new.h renamed to alloc.h.
22974
22975 1997-06-18 Richard Stallman <rms@gnu.org>
22976
22977 * Makefile.in: new.h renamed to alloc.h.
22978
22979 1997-05-24 Richard Stallman <rms@gnu.org>
22980
22981 * src/lex.c (literalchar):
22982 Fix the code for escaping \, " and '.
22983
22984 (lex): Avoid trouble when there are many chars
22985 to discard in a char literal with just several chars in it.
22986
22987 1997-05-17 Richard Stallman <rms@gnu.org>
22988
22989 * src/bison.s1:
22990 Use malloc, if using alloca is troublesome.
22991 (YYSTACK_USE_ALLOCA): New flag macro.
22992 Define it for some systems and compilers.
22993 (YYSTACK_ALLOC): New macro.
22994 (yyparse): Use YYSTACK_ALLOC to allocate stack.
22995 If it was malloc'd, free it.
22996
22997 1997-05-17 Richard Stallman <rms@gnu.org>
22998
22999 * bison.simple:
23000 Use malloc, if using alloca is troublesome.
23001 (YYSTACK_USE_ALLOCA): New flag macro.
23002 Define it for some systems and compilers.
23003 (YYSTACK_ALLOC): New macro.
23004 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23005 If it was malloc'd, free it.
23006
23007 1997-04-23 Richard Stallman <rms@gnu.org>
23008
23009 * src/bison.s1:
23010 (alloca) [__hpux]: Always define as __builtin_alloca.
23011
23012 1997-04-23 Richard Stallman <rms@gnu.org>
23013
23014 * bison.simple:
23015 (alloca) [__hpux]: Always define as __builtin_alloca.
23016
23017 1997-04-22 Richard Stallman <rms@gnu.org>
23018
23019 * src/bison.s1:
23020 [__hpux]: Include alloca.h (right for HPUX 10)
23021 instead of declaring alloca (right for HPUX 9).
23022
23023 * src/bison.s1 (__yy_memcpy):
23024 Declare arg `count' as unsigned int.
23025 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23026
23027 1997-04-22 Richard Stallman <rms@gnu.org>
23028
23029 * bison.simple:
23030 [__hpux]: Include alloca.h (right for HPUX 10)
23031 instead of declaring alloca (right for HPUX 9).
23032
23033 * bison.simple (__yy_memcpy):
23034 Declare arg `count' as unsigned int.
23035 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23036
23037 1997-01-03 Richard Stallman <rms@gnu.org>
23038
23039 * src/allocate.c: [__STDC__ or _MSC_VER]:
23040 Declare calloc and realloc to return void *.
23041
23042 1997-01-02 Richard Stallman <rms@gnu.org>
23043
23044 * src/system.h:
23045 [_MSC_VER]: Include stdlib.h and process.h.
23046 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
23047
23048 * src/main.c (main): Return FAILURE as a value.
23049 (printable_version): Declare arg as int, not char.
23050
23051 1997-01-02 Richard Stallman <rms@gnu.org>
23052
23053 * Makefile.in (dist):
23054 Explicitly check for symlinks, and copy them.
23055
23056 1996-12-19 Richard Stallman <rms@gnu.org>
23057
23058 * src/files.c:
23059 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
23060
23061 1996-12-18 Paul Eggert <eggert@gnu.org>
23062
23063 * src/bison.s1 (yyparse):
23064 If __GNUC__ and YYPARSE_PARAM are both defined,
23065 declare yyparse to have a void * argument.
23066
23067 1996-12-18 Paul Eggert <eggert@gnu.org>
23068
23069 * bison.simple (yyparse):
23070 If __GNUC__ and YYPARSE_PARAM are both defined,
23071 declare yyparse to have a void * argument.
23072
23073 1996-12-17 Richard Stallman <rms@gnu.org>
23074
23075 * src/reduce.c (nbits): Add some casts.
23076
23077 1996-08-12 Richard Stallman <rms@gnu.org>
23078
23079 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
23080
23081 1996-08-12 Richard Stallman <rms@gnu.org>
23082
23083 * bison.simple: Test _MSDOS as well as _MSDOS_.
23084
23085 1996-07-31 Richard Stallman <rms@gnu.org>
23086
23087 * src/bison.s1:
23088 [__sun && __i386]: Include alloca.h.
23089
23090 1996-07-31 Richard Stallman <rms@gnu.org>
23091
23092 * bison.simple:
23093 [__sun && __i386]: Include alloca.h.
23094
23095 1996-07-30 Richard Stallman <rms@gnu.org>
23096
23097 * src/bison.s1: Comment change.
23098
23099 * src/bison.s1: Test _MSDOS_, not MSDOS.
23100
23101 1996-07-30 Richard Stallman <rms@gnu.org>
23102
23103 * bison.simple: Comment change.
23104
23105 * bison.simple: Test _MSDOS_, not MSDOS.
23106
23107 1996-06-01 Richard Stallman <rms@gnu.org>
23108
23109 * src/reduce.c, src/reader.c, src/print.c, src/output.c, src/nullable.c, src/lex.c, src/lalr.c, src/getargs.c, src/derives.c, src/conflicts.c, src/closure.c, src/allocate.c:
23110 Insert `_' macro around many string constants.
23111
23112 * src/main.c:
23113 Insert `_' macro around many string constants.
23114
23115 (main): Call setlocale, bindtextdomain and textdomain.
23116
23117 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
23118 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
23119 [ENABLE_NLS]: Include libintl.h.
23120 [ENABLE_NLS] (gettext): Define.
23121 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
23122 (N_, PACKAGE, LOCALEDIR): New macros.
23123
23124 1996-06-01 Richard Stallman <rms@gnu.org>
23125
23126 * POTFILES.in: New file.
23127
23128 * Makefile.in (allocate.o):
23129 Define target explicitly.
23130
23131 * Makefile.in (CFLAGS): Set to @CFLAGS@.
23132 (LDFLAGS): Set to @LDFLAGS@.
23133 (configure): Run autoconf only if preceding `cd' succeeds.
23134 (bison.s1): Redirect output to temporary file then move the
23135 temporary to the target, rather than redirecting directly to bison.s1.
23136 (clean): Remove config.status and config.log.
23137 (distclean): Don't remove config.status here.
23138
23139 1996-05-12 Richard Stallman <rms@gnu.org>
23140
23141 * src/bison.s1:
23142 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23143
23144 1996-05-12 Richard Stallman <rms@gnu.org>
23145
23146 * bison.simple:
23147 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23148
23149 1996-05-11 Richard Stallman <rms@gnu.org>
23150
23151 * src/bison.s1 (__yy_memcpy):
23152 Really reorder the args, as was supposedly done on Feb 14 1995.
23153 (yyparse): Calls changed accordingly.
23154
23155 1996-05-11 Richard Stallman <rms@gnu.org>
23156
23157 * Makefile.in (dist): Don't use $(srcdir).
23158
23159 * bison.simple (__yy_memcpy):
23160 Really reorder the args, as was supposedly done on Feb 14 1995.
23161 (yyparse): Calls changed accordingly.
23162
23163 1996-01-27 Richard Stallman <rms@gnu.org>
23164
23165 * src/output.c (output_rule_data):
23166 Test YYERROR_VERBOSE in the conditional
23167 around the definition of ttyname.
23168
23169 1995-12-29 Richard Stallman <rms@gnu.org>
23170
23171 * src/bison.s1:
23172 Fix line numbers in #line commands.
23173
23174 1995-12-29 Richard Stallman <rms@gnu.org>
23175
23176 * bison.simple:
23177 Fix line numbers in #line commands.
23178
23179 1995-12-27 Richard Stallman <rms@gnu.org>
23180
23181 * src/bison.s1 (YYPARSE_PARAM_DECL):
23182 In C++, make it always null.
23183 (YYPARSE_PARAM_ARG): New macro.
23184 (yyparse): Use YYPARSE_PARAM_ARG.
23185
23186 1995-12-27 Richard Stallman <rms@gnu.org>
23187
23188 * bison.simple (YYPARSE_PARAM_DECL):
23189 In C++, make it always null.
23190 (YYPARSE_PARAM_ARG): New macro.
23191 (yyparse): Use YYPARSE_PARAM_ARG.
23192
23193 1995-11-29 Richard Stallman <rms@gnu.org>
23194
23195 * doc/bison.texinfo:
23196 Describe literal string tokens, %raw, %no_lines, %token_table.
23197
23198 1995-11-29 Daniel Hagerty <hag@gnu.org>
23199
23200 * doc/bison.texinfo: Fixed update date
23201
23202 1995-10-16 Richard Stallman <rms@gnu.org>
23203
23204 * src/version.c: Version 1.25.
23205
23206 1995-10-16 Richard Stallman <rms@gnu.org>
23207
23208 * NEWS: *** empty log message ***
23209
23210 1995-10-16 Richard Stallman <rms@gnu.org>
23211
23212 * doc/bison.1, doc/bison.rnh:
23213 Add new options.
23214
23215 1995-10-15 Richard Stallman <rms@gnu.org>
23216
23217 * src/vmsgetargs.c, src/getargs.c:
23218 Added -n, -k, and -raw switches.
23219 (noparserflag, toknumflag, rawtoknumflag): New variables.
23220
23221 * src/symtab.h (SALIAS):
23222 New #define for adding aliases to %token.
23223 (struct bucket): Added `alias' field.
23224
23225 * src/reduce.c (reduce_grammar):
23226 Revise error message.
23227 (print_notices): Remove final `.' from error message.
23228
23229 * src/reader.c (reader_output_yylsp):
23230 New function.
23231 (readgram): Use `#if 0' around code that accepted %command
23232 inside grammar rules: The documentation doesn't allow it,
23233 and it will fail since the %command processors scan for the next %.
23234 (parse_token_decl): Extended the %token
23235 declaration to allow a multi-character symbol as an alias.
23236 (parse_thong_decl): New function.
23237 (read_declarations): Added %thong declarations.
23238 (read_declarations): Handle NOOP to deal with allowing
23239 % declarations as another means to specify the flags.
23240 (readgram): Allow %prec prior to semantics embedded in a rule.
23241 (skip_to_char, read_declarations, copy_definition)
23242 (parse_token_decl, parse_start_decl, parse_type_decl)
23243 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
23244 (get_type_name, copy_guard, copy_action, readgram)
23245 (get_type, packsymbols): Revised most error messages.
23246 Changed `fatal' to `warnxxx' to avoid aborting for error.
23247 Revised and use multiple warnxxx functions to avoid using VARARGS1.
23248 (read_declarations): Improve the error message for
23249 an invalid character. Do not abort.
23250 (read_declarations, copy_guard, copy_action): Use
23251 printable_version to avoid unprintable characters in printed output.
23252 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
23253 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
23254 Allow the type of a non-terminal can be given
23255 more than once, as long as all specifications give the same type.
23256
23257 * src/output.c:
23258 (output_headers, output_trailers, output, output_gram)
23259 (output_rule_data): Implement noparserflag variable.
23260 Implement toknumflag variable.
23261 (output): Call reader_output_yylsp to output LTYPESTR.
23262
23263 * src/main.c (main):
23264 If reader sees an error, don't process the grammar.
23265 (fatals): Updated to not use VARARGS1.
23266 (printable_version, int_to_string, warn, warni, warns, warnss)
23267 (warnsss): New error reporting functions. Avoid abort for error.
23268
23269 * src/lex.h:
23270 Added THONG and NOOP for alias processing.
23271 Added SETOPT for the new code that allows setting options with %flags.
23272
23273 * src/lex.c:
23274 Include getopt.h. Add some extern decls.
23275 (safegetc): New function to deal with EOF gracefully.
23276 (literalchar); new function to deal with reading \ escapes.
23277 (lex): Use literalchar.
23278 (lex): Implemented "..." tokens.
23279 (literalchar, lex, parse_percent_token): Made tokenbuffer
23280 always contain the token. This includes growing the token
23281 buffer while reading an integer.
23282 (parse_percent_token): Replaced if-else statement with percent_table.
23283 (parse_percent_token): Added % declarations as another
23284 way to specify the flags -n, -l, and -r. Also added hooks for
23285 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
23286 major changes to files.c.
23287 (lex) Retain in the incoming stream a character following
23288 an incorrect '/'.
23289 (skip_white_space, lex): Revised most error messages
23290 and changed fatal to warn to avoid aborting.
23291 (percent_table): Added %thong declarations.
23292
23293 * src/gram.h: Comment changes.
23294
23295 * src/files.c (openfiles, open_extra_files, done):
23296 Add faction flag
23297 and actfile file. Handle noparserflag. Both for -n switch.
23298
23299 * src/conflicts.c (resolve_sr_conflict):
23300 Remove use of alloca.
23301
23302 1995-06-01 Jim Meyering <meyering@gnu.org>
23303
23304 * doc/bison.texinfo: *** empty log message ***
23305
23306 1995-05-06 Richard Stallman <rms@gnu.org>
23307
23308 * src/bison.s1: Comment change.
23309
23310 1995-05-06 Richard Stallman <rms@gnu.org>
23311
23312 * bison.simple: Comment change.
23313
23314 1995-05-03 Richard Stallman <rms@gnu.org>
23315
23316 * src/version.c: Version now 1.24.
23317
23318 * src/bison.s1: Change distribution terms.
23319
23320 * src/version.c: Version now 1.23.
23321
23322 1995-05-03 Richard Stallman <rms@gnu.org>
23323
23324 * doc/bison.texinfo:
23325 Rewrite "Conditions for Using Bison".
23326 Update version to 1.24.
23327
23328 1995-05-03 Richard Stallman <rms@gnu.org>
23329
23330 * bison.simple: Change distribution terms.
23331
23332 1995-02-23 Richard Stallman <rms@gnu.org>
23333
23334 * src/files.c: Test __VMS_POSIX as well as VMS.
23335
23336 1995-02-14 Jim Meyering <meyering@gnu.org>
23337
23338 * src/bison.s1 (__yy_memcpy):
23339 Renamed from __yy_bcopy to avoid
23340 confusion. Reverse FROM and TO arguments to be consistent with
23341 those of memcpy.
23342
23343 1995-02-14 Jim Meyering <meyering@gnu.org>
23344
23345 * bison.simple (__yy_memcpy):
23346 Renamed from __yy_bcopy to avoid
23347 confusion. Reverse FROM and TO arguments to be consistent with
23348 those of memcpy.
23349
23350 1994-11-10 David J. MacKenzie <djm@gnu.org>
23351
23352 * NEWS: reformat
23353
23354 * NEWS: New file.
23355
23356 * Makefile.in (DISTFILES): Include NEWS.
23357
23358 * Makefile.in (DISTFILES):
23359 Include install-sh, not install.sh.
23360
23361 * configure.in: Update to Autoconf v2 macro names.
23362
23363 1994-10-05 David J. MacKenzie <djm@gnu.org>
23364
23365 * Makefile.in: fix typo
23366
23367 * Makefile.in (prefix, exec_prefix):
23368 Let configure set them.
23369
23370 1994-09-28 David J. MacKenzie <djm@gnu.org>
23371
23372 * Makefile.in: Set datadir to $(prefix)/share.
23373
23374 1994-09-15 Richard Stallman <rms@gnu.org>
23375
23376 * src/bison.s1:
23377 Update copyright notice and GPL version.
23378
23379 1994-09-15 Richard Stallman <rms@gnu.org>
23380
23381 * bison.simple:
23382 Update copyright notice and GPL version.
23383
23384 1994-07-12 Richard Stallman <rms@gnu.org>
23385
23386 * src/reduce.c, src/reader.c:
23387 entered into RCS
23388
23389 1994-05-05 David J. MacKenzie <djm@gnu.org>
23390
23391 * Makefile.in: entered into RCS
23392
23393 1994-03-26 Richard Stallman <rms@gnu.org>
23394
23395 * src/bison.s1: entered into RCS
23396
23397 1994-03-26 Richard Stallman <rms@gnu.org>
23398
23399 * bison.simple: entered into RCS
23400
23401 1994-03-25 Richard Stallman <rms@gnu.org>
23402
23403 * src/main.c: entered into RCS
23404
23405 1994-03-24 Richard Stallman <rms@gnu.org>
23406
23407 * src/conflicts.c: entered into RCS
23408
23409 1994-01-02 Richard Stallman <rms@gnu.org>
23410
23411 * Makefile.in: *** empty log message ***
23412
23413 1993-11-21 Richard Stallman <rms@gnu.org>
23414
23415 * src/bison.s1: *** empty log message ***
23416
23417 1993-11-21 Richard Stallman <rms@gnu.org>
23418
23419 * doc/bison.texinfo: entered into RCS
23420
23421 * doc/bison.texinfo: *** empty log message ***
23422
23423 1993-11-21 Richard Stallman <rms@gnu.org>
23424
23425 * bison.simple: *** empty log message ***
23426
23427 1993-10-25 David J. MacKenzie <djm@gnu.org>
23428
23429 * doc/bison.texinfo: *** empty log message ***
23430
23431 1993-10-19 Richard Stallman <rms@gnu.org>
23432
23433 * src/bison.s1: *** empty log message ***
23434
23435 1993-10-19 Richard Stallman <rms@gnu.org>
23436
23437 * bison.simple: *** empty log message ***
23438
23439 1993-10-14 Richard Stallman <rms@gnu.org>
23440
23441 * src/bison.s1: *** empty log message ***
23442
23443 1993-10-14 Richard Stallman <rms@gnu.org>
23444
23445 * bison.simple: *** empty log message ***
23446
23447 1993-09-14 David J. MacKenzie <djm@gnu.org>
23448
23449 * doc/bison.texinfo: *** empty log message ***
23450
23451 1993-09-13 Noah Friedman <friedman@gnu.org>
23452
23453 * Makefile.in: *** empty log message ***
23454
23455 1993-09-10 Richard Stallman <rms@gnu.org>
23456
23457 * src/conflicts.c: *** empty log message ***
23458
23459 * src/system.h: entered into RCS
23460
23461 1993-09-10 Richard Stallman <rms@gnu.org>
23462
23463 * doc/bison.1: entered into RCS
23464
23465 1993-09-06 Noah Friedman <friedman@gnu.org>
23466
23467 * src/version.c: entered into RCS
23468
23469 1993-09-06 Noah Friedman <friedman@gnu.org>
23470
23471 * Makefile.in: *** empty log message ***
23472
23473 1993-07-30 David J. MacKenzie <djm@gnu.org>
23474
23475 * Makefile.in: *** empty log message ***
23476
23477 1993-07-24 Richard Stallman <rms@gnu.org>
23478
23479 * src/bison.s1: *** empty log message ***
23480
23481 1993-07-24 Richard Stallman <rms@gnu.org>
23482
23483 * bison.simple: *** empty log message ***
23484
23485 1993-07-08 David J. MacKenzie <djm@gnu.org>
23486
23487 * Makefile.in: *** empty log message ***
23488
23489 1993-07-04 Richard Stallman <rms@gnu.org>
23490
23491 * src/bison.s1: *** empty log message ***
23492
23493 1993-07-04 Richard Stallman <rms@gnu.org>
23494
23495 * bison.simple: *** empty log message ***
23496
23497 1993-06-26 David J. MacKenzie <djm@gnu.org>
23498
23499 * src/getargs.c: entered into RCS
23500
23501 1993-06-26 David J. MacKenzie <djm@gnu.org>
23502
23503 * doc/bison.texinfo: *** empty log message ***
23504
23505 * doc/bison.1: New file.
23506
23507 1993-06-25 Richard Stallman <rms@gnu.org>
23508
23509 * src/getargs.c: New file.
23510
23511 1993-06-16 Richard Stallman <rms@gnu.org>
23512
23513 * src/bison.s1: *** empty log message ***
23514
23515 1993-06-16 Richard Stallman <rms@gnu.org>
23516
23517 * bison.simple: *** empty log message ***
23518
23519 1993-06-03 Richard Stallman <rms@gnu.org>
23520
23521 * src/bison.s1: New file.
23522
23523 1993-06-03 Richard Stallman <rms@gnu.org>
23524
23525 * doc/bison.texinfo: *** empty log message ***
23526
23527 1993-06-03 Richard Stallman <rms@gnu.org>
23528
23529 * bison.simple: New file.
23530
23531 1993-05-19 Richard Stallman <rms@gnu.org>
23532
23533 * doc/bison.texinfo: New file.
23534
23535 1993-05-07 Noah Friedman <friedman@gnu.org>
23536
23537 * Makefile.in: *** empty log message ***
23538
23539 1993-04-28 Noah Friedman <friedman@gnu.org>
23540
23541 * src/reader.c: *** empty log message ***
23542
23543 1993-04-23 Noah Friedman <friedman@gnu.org>
23544
23545 * src/alloc.h: entered into RCS
23546
23547 1993-04-20 David J. MacKenzie <djm@gnu.org>
23548
23549 * src/version.c: *** empty log message ***
23550
23551 * src/files.c, src/allocate.c:
23552 entered into RCS
23553
23554 * src/reader.c: *** empty log message ***
23555
23556 * src/lex.c: entered into RCS
23557
23558 * src/conflicts.c: New file.
23559
23560 * src/symtab.c: entered into RCS
23561
23562 * src/alloc.h: New file.
23563
23564 * src/LR0.c: entered into RCS
23565
23566 1993-04-18 Noah Friedman <friedman@gnu.org>
23567
23568 * src/reader.c: New file.
23569
23570 * src/version.c: *** empty log message ***
23571
23572 1993-04-18 Noah Friedman <friedman@gnu.org>
23573
23574 * Makefile.in: *** empty log message ***
23575
23576 1993-04-17 Noah Friedman <friedman@gnu.org>
23577
23578 * Makefile.in: *** empty log message ***
23579
23580 1993-04-15 Richard Stallman <rms@gnu.org>
23581
23582 * src/main.c, src/files.c:
23583 New file.
23584
23585 1993-04-15 Noah Friedman <friedman@gnu.org>
23586
23587 * configure.in: entered into RCS
23588
23589 * configure.in: *** empty log message ***
23590
23591 * configure.in: New file.
23592
23593 1993-04-14 Richard Stallman <rms@gnu.org>
23594
23595 * Makefile.in: New file.
23596
23597 1993-04-13 Richard Stallman <rms@gnu.org>
23598
23599 * src/version.c: New file.
23600
23601 1993-03-25 Richard Stallman <rms@gnu.org>
23602
23603 * src/output.c: entered into RCS
23604
23605 1992-09-25 Richard Stallman <rms@gnu.org>
23606
23607 * configure.bat: entered into RCS
23608
23609 1992-06-22 Richard Stallman <rms@gnu.org>
23610
23611 * src/vmsgetargs.c: entered into RCS
23612
23613 1992-06-22 Richard Stallman <rms@gnu.org>
23614
23615 * doc/bison.rnh: entered into RCS
23616
23617 1992-04-20 David J. MacKenzie <djm@gnu.org>
23618
23619 * README: entered into RCS
23620
23621 1992-01-22 Richard Stallman <rms@gnu.org>
23622
23623 * src/machine.h: entered into RCS
23624
23625 1991-12-21 Richard Stallman <rms@gnu.org>
23626
23627 * src/lalr.c, src/closure.c:
23628 entered into RCS
23629
23630 1991-12-20 Richard Stallman <rms@gnu.org>
23631
23632 * src/state.h: entered into RCS
23633
23634 1991-12-18 Richard Stallman <rms@gnu.org>
23635
23636 * src/print.c, src/nullable.c, src/derives.c:
23637 entered into RCS
23638
23639 1991-11-03 David J. MacKenzie <djm@gnu.org>
23640
23641 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
23642 entered into RCS
23643
23644 1988-09-09 Richard Stallman <rms@gnu.org>
23645
23646 * src/bison.hairy: entered into RCS
23647
23648 1987-12-16 Richard Stallman <rms@gnu.org>
23649
23650 * REFERENCES: entered into RCS
23651
23652
23653 -----
23654
23655 Copyright (C) 1987-1988, 1991-2011 Free Software Foundation,
23656 Inc.
23657
23658 Copying and distribution of this file, with or without
23659 modification, are permitted provided the copyright notice and this
23660 notice are preserved.