]> git.saurik.com Git - bison.git/blob - ChangeLog
8bd5574e00f3701ef8bf836b001f74fcbf62adbe
[bison.git] / ChangeLog
1 2010-03-31 Joel E. Denny <jdenny@ces.clemson.edu>
2
3 portability: fix test suite for GCC 4.5's new #error message.
4 Reported by Tys Lefering at
5 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00030.html>.
6 * NEWS (2.4.3): Mention.
7 * tests/synclines.at (AT_TEST_SYNCLINE): Implement.
8
9 2010-03-30 Akim Demaille <demaille@gostai.com>
10
11 fix comments.
12 * src/graphviz.h: Add missing license notice.
13 Document.
14
15 2010-03-25 Akim Demaille <demaille@gostai.com>
16
17 tests: fix 250: parse.error=verbose overflow.
18 * tests/regression.at (parse.error=verbose overflow): Avoid the
19 double inclusion of stdlib.h as it triggers hard errors.
20
21 2010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
22
23 portability: fix for BSD make.
24 Reported by Johan van Selst at
25 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00016.html>.
26 * tests/local.mk ($(TESTSUITE)): Qualify package.m4 in
27 this dependency list as in package.m4's target rule.
28
29 2010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
30
31 portability: fix spawning on at least FreeBSD 8 and FreeBSD 9.
32 Reported by Johan van Selst at
33 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00014.html>.
34 * NEWS (2.4.3): New.
35 * THANKS (Johan van Selst): Add.
36 * etc/prefix-gnulib-mk (prefix): Adjust regex for makefile
37 targets so that gnulib's new c++defs.h is matched.
38 * gnulib: Update to latest.
39
40 2010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
41
42 maint: update for changes to gnulib's announce-gen.
43 * HACKING (Announce): RELEASE_TYPE=major must now be written
44 RELEASE_TYPE=stable.
45
46 2010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
47
48 Version 2.4.2.
49 * NEWS (2.4.2): Set version and date. For the recent test suite
50 portability fixes, don't be so optimistic about their success
51 given the lack of feedback on the affected platforms.
52
53 2010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
54
55 tests: fix maintainer-xml-check for recent changes.
56 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
57 AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
58 output file whose name conflicts with a previous output file
59 is now never generated.
60
61 2010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
62
63 portability: fix several issues with M4 subprocess.
64
65 M4's output pipe was not being drained upon fatal errors during
66 scan_skel. As a result, broken-pipe messages from M4 were seen
67 on at least AIX, HP-UX, Solaris, and RHEL4, and this caused a
68 failure in the test suite. The problem was that, on platforms
69 where the default disposition for SIGPIPE is ignore instead of
70 terminate, M4 sometimes saw fwrite fail with errno=EPIPE and
71 then reported it. However, there's some sort of race condition,
72 because the new test group occasionally succeeded.
73 Reported by Albert Chin at
74 <http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00004.html>.
75
76 There were also problems with the test suite livelocking on
77 Tru64 5.1b. Reported by Didier Godefroy at
78 <http://lists.gnu.org/archive/html/bug-bison/2009-05/msg00005.html>.
79 Switching to create_pipe_bidi suggested by Akim Demaille.
80
81 To attempt to solve both of these problems, switch to gnulib's
82 create_pipe_bidi and register M4 process as a slave. Along the
83 way, clean up file name conflict handling, which was affected by
84 the broken-pipe problem before the switch.
85 * NEWS (2.4.2): Document.
86 * THANKS (Didier Godefroy): Add.
87 * bootstrap.conf (gnulib_modules): Add pipe.
88 * gnulib: Update to latest to make sure we have all the latest
89 fixes.
90 * lib/local.mk (lib_libbison_a_SOURCES): Remove subpipe.h and
91 subpipe.c.
92 * po/POTFILES.in (lib/subpipe.c): Remove.
93 * src/files.c (compute_output_file_names): Update invocations
94 of output_file_name_check.
95 (output_file_name_check): In the case that the grammar file
96 would be overwritten, use complain instead of fatal, but replace
97 the output file name with /dev/null. Use the /dev/null solution
98 for the case of two conflicting output files as well because it
99 seems safer in case Bison one day tries to open both files at
100 the same time.
101 * src/files.h (output_file_name_check): Update prototype.
102 * src/output.c (output_skeleton): Use create_pipe_bidi and
103 wait_subprocess. Assert that scan_skel completely drains the
104 pipe.
105 * src/scan-skel.l (at_directive_perform): Update
106 output_file_name_check invocation.
107 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Check that the
108 grammar file actually isn't overwritten.
109 (Conflicting output files: -o foo.y): Update expected output.
110 * tests/skeletons.at (Fatal errors but M4 continues producing
111 output): New test group.
112
113 2010-02-04 Joel E. Denny <jdenny@ces.clemson.edu>
114
115 Update POTFILES.
116 * HACKING (Release Procedure): Add reminder about keeping
117 POTFILES files up-to-date.
118 * po/POTFILES.in (src/muscle-tab.c, src/scan-skel.l): Add.
119
120 2010-02-01 Joel E. Denny <jdenny@clemson.edu>
121
122 Code cleanup.
123 * tests/atlocal.in (abs_top_srcdir): Remove shell variable,
124 which is already defined in atconfig.
125
126 2010-01-22 Joel E. Denny <jdenny@clemson.edu>
127
128 tests: fix missing include caught by g++ 4.4.1.
129 Reported by Tys Lefering.
130 * HACKING (Release checks): Add note about trying a recent GCC.
131 * tests/regression.at (_AT_DATA_DANCER_Y): For C++, include
132 cstdlib for abort.
133 (_AT_DATA_EXPECT2_Y): Likewise.
134
135 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
136
137 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
138
139 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
140
141 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
142 * HACKING (Release Procedure): Update notes on copyright years.
143 * Makefile.am (update-package-copyright-year): New target rule.
144 * build-aux/update-package-copyright-year: New file.
145 * cfg.mk (update-copyright): Add update-package-copyright-year
146 as a dependency.
147
148 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
149
150 * bootstrap: Import improvements from latest gnulib.
151
152 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
153
154 build: require Automake 1.11.1 to avoid a security flaw.
155 * HACKING (Release Procedure): Don't document Automake security
156 flaw here.
157 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
158 why here.
159
160 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
161
162 gnulib: update to latest.
163
164 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
165
166 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
167
168 2010-01-15 Joel E. Denny <jdenny@clemson.edu>
169
170 Thank the developer of the initial push parser implementation.
171 This unfortunate oversight is several years old.
172 * THANKS (Odd Arild Olsen): Add.
173
174 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
175
176 Fix some comments concerning LR(0) versus LALR(1).
177
178 Stop equating LR(0) with nondeterminism and LALR(1) with
179 determinism. That is, if all states are consistent, then LR(0)
180 tables are deterministic. On the other hand, LALR(1) tables
181 might be nondeterministic before conflict resolution, and GLR
182 permits LALR(1) tables to remain nondeterministic.
183 * src/LR0.c, src/LR0.h: Here.
184 * src/lalr.c, src/lalr.h: Here.
185 * src/main.c (main): Here.
186 * src/state.c, src/state.h: Here.
187
188 * src/ielr.h (ielr): In preconditions, expect LR(0) not LALR(1)
189 parser tables.
190
191 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
192
193 maint: run "make update-copyright"
194
195 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
196
197 POSIX: complain if %prec's token was not defined.
198 * NEWS (2.5): Document.
199 * src/reader.c (grammar_rule_check): Convert warning to
200 complaint.
201 * tests/input.at (%prec's token must be defined): Update.
202
203 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
204
205 POSIX: warn if %prec's token was not defined.
206 Reported by Florian Krohm at
207 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
208 * NEWS (2.4.2): Document.
209 * src/reader.c (grammar_rule_check): Implement.
210 (grammar_current_rule_prec_set): Add comments explaining that we
211 here assume a %prec identifier is a token, but we still manage
212 to support POSIX.
213 * tests/input.at (%prec's token must be defined): New test
214 group.
215
216 2009-12-31 Joel E. Denny <jdenny@clemson.edu>
217
218 * HACKING (Release Procedure): Recommend a secure automake.
219
220 2009-12-29 Joel E. Denny <jdenny@clemson.edu>
221
222 portability: `<' and `>' are not always defined on addresses.
223 Specifically, don't sort objects by their memory addresses when
224 they're not allocated in the same array or other object. Though
225 I haven't found a test case where that fails on my platform, C
226 says the behavior is undefined.
227 * src/AnnotationList.c (AnnotationList__insertInto): Remove
228 FIXME. Use new id field of InadequacyList nodes rather than
229 their memory addresses when sorting.
230 (AnnotationList__compute_from_inadequacies): Add
231 inadequacy_list_node_count argument to pass to
232 InadequacyList__new_conflict.
233 * src/AnnotationList.h
234 (AnnotationList__compute_from_inadequacies): Update prototype
235 and documentation for new argument.
236 * src/InadequacyList.c (InadequacyList__new_conflict): Add
237 node_count argument and use it to assign a unique ID.
238 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
239 (InadequacyList): Add id field.
240 (InadequacyList__new_conflict): Update prototype and
241 documentation for new argument.
242 * src/ielr.c (ielr_compute_annotation_lists): Update
243 AnnotationList__compute_from_inadequacies invocation.
244
245 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
246
247 Fix handling of yychar manipulation in user semantic actions.
248 The problem was that yacc.c didn't always update the yychar
249 translation afterwards. However, other skeletons appear to be
250 fine. glr.c appears to already translate yychar before every
251 use. lalr1.cc does not define yychar and does not document its
252 replacement, yyla, for users. It does provide yyclearin, but
253 that does not manipulate yyla and thus requires no translation
254 update. In lalr1.java, yychar is out of scope during semantic
255 actions.
256 * NEWS (2.5): Document.
257 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
258 yytoken here.
259 (yyparse, yypush_parse): Instead, translate before every use of
260 yytoken, and add comments explaining this approach.
261 * tests/actions.at (Destroying lookahead assigned by semantic
262 action): New test group checking that translation happens before
263 lookahead destructor calls at parser return. Previously,
264 incorrect destructors were called.
265 * tests/conflicts.at (parse.error=verbose and consistent
266 errors): New test group checking that translation happens at
267 syntax error detection before the associated verbose error
268 message and the associated lookahead destructor calls. While
269 the destructor call is fixed by this patch, the verbose error
270 message is currently incorrect due to another bug (see
271 comments in test group), so this is an expected failure for now.
272
273 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
274
275 YYFAIL: warn about uses and remove from lalr1.java.
276 * NEWS (2.5): Document.
277 * data/lalr1.java (parser::YYStack::YYFAIL): Rename to YYERRLAB,
278 and make it private. Update all uses.
279 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
280
281 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
282
283 YYFAIL: deprecate.
284 * NEWS (2.4.2): Document deprecation and the phase-out plan.
285 * data/lalr1.java (parser::YYStack::YYFAIL): Add comment about
286 deprecation.
287 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
288 YYFAIL from GCC cpp's -Wunused-macros.
289 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
290 documentation.
291 (LocalWords): Remove YYFAIL.
292
293 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
294
295 tests: cleanup.
296 * tests/c++.at (Syntax error discarding no lookahead): Don't
297 ignore stderr. Instead, eliminate remaining warnings.
298
299 2009-12-18 Joel E. Denny <jdenny@clemson.edu>
300
301 lalr1.cc: don't discard non-existent lookahead on syntax error.
302 * data/lalr1.cc (parser::parse): Check yyempty first.
303 * tests/c++.at (Syntax error discarding no lookahead): New test
304 group.
305
306 2009-12-17 Joel E. Denny <jdenny@clemson.edu>
307
308 Code cleanup.
309 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
310 function, which is no longer used.
311
312 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
313
314 Add gcc's -Wundef to test suite and fix another warning from it.
315 * NEWS (2.4.2): Update description of -Wundef fix.
316 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
317 (WARN_CFLAGS_TEST): New substitution.
318 * data/glr.c: Avoid warning about __STRICT_ANSI__.
319 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
320 WARN_CFLAGS.
321 (NO_WERROR_CFLAGS): Likewise.
322 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
323
324 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
325
326 * data/yacc.c: Reformat m4 a little.
327
328 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
329
330 Document gcc -Wundef fix.
331 * NEWS (2.4.2): Here.
332 * THANKS (Jonathan Nieder): Add.
333
334 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
335
336 Simplify y.tab.c when location tracking is disabled.
337 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
338 tracking is not enabled. Instead, unconditionally define
339 YY_LOCATION_PRINT as a no-op for backward compatibility.
340
341 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
342
343 Avoid warnings from gcc -Wundef y.tab.c.
344 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
345 defined before using them.
346 * data/lalr1.cc: Likewise.
347 * data/yacc.c: Likewise.
348
349 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
350
351 autoconf: update to latest for fix of M4 detection.
352 Reported by Eric Blake.
353 * submodules/autoconf: Update.
354
355 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
356
357 portability: use -DGNULIB_POSIXCHECK.
358 Reported by Eric Blake. See discussions at
359 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
360 and
361 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
362 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
363 * bootstrap.conf (gnulib_modules): Add all the printf modules
364 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
365 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
366 (excluded_files): Remove m4/printf-posix.m4.
367 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
368 lib/libbison.a so gnulib libraries can be linked.
369
370 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
371
372 gnulib: update for fix of fprintf-posix, which we'll use soon.
373 * etc/prefix-gnulib-mk (prefix): Adjust regex for make file
374 targets so that gnulib's new arg-nonnull.h and link-warning.h
375 are matched.
376 * gnulib: Update.
377
378 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
379
380 Enable assertion output and --disable-assert for configure.
381 * bootstrap.conf (gnulib_modules): Add assert module.
382 * src/system.h (aver): Define as assert, and summarize the
383 discussion on this issue.
384
385 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
386
387 Expand GLR acronym in summary of Bison.
388 Based on discussion with Akim Demaille starting at
389 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
390 * doc/bison.texinfo (Introduction): Here.
391 * src/getargs.c (usage): Here.
392
393 2009-10-03 Alex Rozenman <rozenman@gmail.com>
394
395 Document named references.
396 * doc/bison.texinfo (Actions): Add new example and xref to
397 Using Named References node.
398 (Using Named References): New node.
399
400 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
401
402 cleanup.
403 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
404 of char*.
405 (Sbitset__isEmpty): Use Sbitset instead of char*.
406 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
407 instead of char. This helps to avoid casting errors.
408 (Sbitset__or): Use Sbitset instead of char*.
409
410 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
411
412 portability: don't assume 8-bit bytes.
413 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
414 * src/Sbitset.h (Sbitset__nbytes): Here.
415 (Sbitset__byteAddress): Here.
416 (Sbitset__bit_mask): Here.
417 (Sbitset__last_byte_mask): Here.
418 (Sbitset__ones): Here.
419 (SBITSET__FOR_EACH): Here.
420
421 2009-10-11 Joel E. Denny <jdenny@clemson.edu>
422
423 portability: use va_start and va_end in the same function.
424 * src/complain.c (error_message): Move va_end from here...
425 (ERROR_MESSAGE): ... to here.
426
427 2009-10-08 Joel E. Denny <jdenny@clemson.edu>
428
429 * data/bison.m4: Update comments for rename to muscle-tab.h.
430
431 2009-10-07 Joel E. Denny <jdenny@clemson.edu>
432
433 Minor code cleanup.
434 * src/muscle-tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
435 replace all uses with UNIQSTR_CONCAT.
436 * src/uniqstr.c (uniqstr_vsprintf): New function.
437 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
438 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
439 macros.
440
441 2009-10-06 Joel E. Denny <jdenny@clemson.edu>
442
443 * TODO (Complaint submessage indentation): New.
444
445 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
446
447 Minor code cleanup.
448 * src/parse-gram.y: Clean up sorting of declarations.
449 Use types to simplify %printer declarations where possible.
450 Provide %printer for BRACKETED_ID and symbol.prec.
451 * src/symtab.c: Whitespace change.
452
453 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
454
455 tests: skip tests of file names that platform does not support.
456 Reported by Michael Raskin at
457 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
458 * THANKS (Michael Raskin): Add.
459 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
460 to fail at least for file names containing ":" or "\".
461
462 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
463
464 yysyntax_error: avoid duplicate lookahead collection.
465 Except when memory reallocation is required, this change
466 eliminates the need to invoke yysyntax_error twice and thus to
467 repeat the collection of lookaheads. It also prepares for
468 future extensions that will make those repetitions more
469 expensive and that will require additional memory management in
470 yysyntax_error. Finally, it fixes an obscure bug already
471 exercised in the test suite.
472 * data/yacc.c (yysyntax_error): Add arguments for message
473 buffer variables stored in the parser. Instead of size, return
474 status similar to yyparse status but indicating success of
475 message creation. Other than the actual reallocation of the
476 message buffer, import and clean up memory management code
477 from...
478 (yyparse, yypush_parse): ... here.
479 * tests/regression.at (parse.error=verbose overflow): No longer
480 an expected failure.
481
482 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
483
484 yysyntax_error: test memory management more.
485 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
486 * tests/regression.at (parse.error=verbose and
487 YYSTACK_USE_ALLOCA): New test group.
488 (parse.error=verbose overflow): New test group that reveals an
489 obscure bug. Expected fail for now.
490
491 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
492
493 benchmarks: use %debug consistently among grammars.
494 * etc/bench.pl.in (generate_grammar_triangular): Do not activate
495 %debug by default. It can affect the timings even if yydebug=0.
496 (generate_grammar_calc): For consistency with other grammars,
497 use YYDEBUG environment variable to set yydebug.
498
499 2009-10-03 Joel E. Denny <jdenny@clemson.edu>
500
501 Remove dead code.
502 * src/symtab.c (symbol_pack): Here because every symbol's number
503 is always defined by this time.
504
505 2009-10-03 Alex Rozenman <rozenman@gmail.com>
506
507 Add additional space after periods in NEWS.
508 * NEWS (2.5): here.
509
510 2009-09-29 Joel E. Denny <jdenny@clemson.edu>
511
512 Use the correct conversion specifier for size_t.
513 Reported by Jim Meyering.
514 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
515 because Sbitset__Index is size_t.
516 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
517
518 2009-09-27 Joel E. Denny <jdenny@clemson.edu>
519
520 tests: don't abuse AT_BISON_CHECK.
521 * tests/regression.at (parse-gram.y: LALR = IELR): Move
522 additional shell commands outside of AT_BISON_CHECK.
523
524 2009-09-26 Joel E. Denny <jdenny@clemson.edu>
525
526 tests: check that parse-gram.y's IELR and LALR are identical.
527 * tests/atlocal.in (abs_top_srcdir): New shell variable.
528 * tests/regression.at (parse-gram.y: LALR = IELR): New test
529 group.
530
531 2009-09-19 Alex Rozenman <rozenman@gmail.com>
532
533 Keep sub-messages aligned. Fix strings for translation.
534 * src/location.h (location_print): Add return value.
535 * src/location.c (location_print): Return number of printed
536 characters.
537 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
538 new functions.
539 * src/complain.cpp (indent_ptr): New static variable.
540 (error_message, complain_at_indent, warn_at_indent): Implement
541 the alignment mechanism.
542 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
543 for translations. Use new alignment mechanism.
544 * tests/named-ref.at: Adjust test-cases.
545 * NEWS (2.5): Add an announcement about named references.
546
547 2009-09-17 Akim Demaille <demaille@gostai.com>
548
549 doc: fixes.
550 * doc/bison.texinfo: here.
551 Reported by Alex Rozenman.
552
553 2009-09-16 Akim Demaille <demaille@gostai.com>
554
555 doc: lalr1.cc and variants.
556 * doc/bison.texinfo (Decl Summary): Document the "lex_symbol" and
557 "variant" %define variables.
558 (C++ Semantic Values): Split into...
559 (C++ Unions, C++ Variants): these.
560 The latter is new.
561 (C++ Parser Interface): Fix type names.
562 Document parser::syntax_error.
563 Document the fact that locations are not mandatory.
564 (C++ Scanner Interface): Split into...
565 (Split Symbols, Complete Symbols): these.
566 The later is new.
567 (Calc++ Parsing Driver): Use variants.
568 Add more comments.
569 Adjust style.
570 (Calc++ Parser): Declare all the tokens, no
571 longer accept raw characters.
572 Remove %union.
573 Adjust types and printers.
574 Remove destructors.
575 (Calc++ Scanner): Use make_<SYMBOL> functions.
576 Use strerror in error message.
577
578 2009-09-16 Akim Demaille <demaille@gostai.com>
579
580 doc: spell checking.
581 * doc/bison.texinfo: here.
582
583 2009-09-16 Akim Demaille <demaille@gostai.com>
584
585 doc: comment changes.
586 * doc/bison.texinfo: Comment changes.
587
588 2009-09-16 Akim Demaille <demaille@gostai.com>
589
590 lalr1.cc: factor the yytranslate_ invocation in make_SYMBOLS.
591 * data/c++.m4, data/lalr1.cc (parser::symbol_type): Change the
592 constructor to take a token_type instead of the (internal) symbol
593 number.
594 Call yytranslate_.
595 * data/variant.hh (b4_symbol_constructor_define_): Therefore,
596 don't call yytranslate_ here.
597
598 2009-09-16 Akim Demaille <demaille@gostai.com>
599
600 TODO: statistics.
601 * TODO (Figures): New.
602
603 2009-09-13 Joel E. Denny <jdenny@clemson.edu>
604
605 tests: clean up push.at test group titles.
606 * tests/push.at: Remove "Push Parsing: " from test group titles
607 because these are already under the banner "Push Parsing Tests".
608
609 2009-09-12 Alex Rozenman <rozenman@gmail.com>
610
611 Provide an additional sub-message for clarity.
612 Add "symbol not found in production" error message when
613 an "invalid reference" is detected in named references
614 resolution.
615 * src/scan-code.l: Update "invalid reference" case.
616 * tests/named-ref.at: Adjust test-cases.
617
618 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
619
620 Clean up yacc.c a little.
621 * data/yacc.c: Clean up M4 for readability, and make output
622 whitespace more consistent. For the main parse function
623 comment, instead of saying "yyparse or yypush_parse", say either
624 "yyparse" or "yypush_parse" depending on which it actually is.
625
626 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
627
628 Fix --enable-gcc-warnings.
629 * src/parse-gram.y (%printer <param>): Handle param_none.
630
631 2009-09-09 Akim Demaille <demaille@gostai.com>
632
633 lalr1.cc: syntax_error as exceptions.
634 It is common to use sort of factories in the user actions. These
635 factories may check some "syntactic" constraints that are not
636 enforced by the grammar itself. This is possible using YYERROR
637 within the action itself. Provide the user with a means to throw
638 a syntax_error exception.
639
640 * data/c++.m4 (b4_public_types_declare, b4_public_types_define):
641 Declare and define yy::parser::syntax_error.
642 * data/lalr1.cc: Include stdexcept.
643 (yy::parser::parse): Wrap the user action within a try/catch.
644 * data/glr.cc: Include stdexcept.
645
646 2009-09-09 Akim Demaille <demaille@gostai.com>
647
648 lalr1.cc: add missing "inline".
649 * data/c++.m4 (b4_public_types_define): Add missing inline to
650 implementations provided in headers.
651
652 2009-09-09 Akim Demaille <demaille@gostai.com>
653
654 %param: documentation.
655 * NEWS (2.6): Document %param, %lex-param, and %parse-param
656 changes.
657 * doc/bison.texinfo: Document that %lex-param and %parse-param
658 are n-ary.
659 Changes some examples to demonstrate it.
660 (Calc++ Parser): Use %param.
661
662 2009-09-09 Akim Demaille <demaille@gostai.com>
663
664 Regen.
665
666 2009-09-09 Akim Demaille <demaille@gostai.com>
667
668 style changes.
669 * src/parse-gram.y (add_param): Scope changes.
670
671 2009-09-09 Akim Demaille <demaille@gostai.com>
672
673 %parse: support several arguments.
674 * src/parse-gram.y (current_param): New.
675 (param_type): Add param_none.
676 (params): New nonterminal.
677 Use it.
678
679 2009-09-09 Akim Demaille <demaille@gostai.com>
680
681 Regen.
682
683 2009-09-09 Akim Demaille <demaille@gostai.com>
684
685 %param.
686 Provide a means to factor lex-param and parse-param common
687 declarations.
688
689 * src/parse-gram.y (param_type): New.
690 Define a %printer for it.
691 (add_param): Use it.
692 (%parse-param, %lex-param): Merge into...
693 (%parse): this new token.
694 Adjust the grammar to use it.
695 * src/scan-gram.l (RETURN_VALUE): New.
696 (RETURN_PERCENT_FLAG): Use it.
697 (RETURN_PERCENT_PARAM): New.
698 Use it to support %parse-param, %lex-param and %param.
699
700 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
701
702 Use aver not assert.
703 * src/output.c: Don't include assert.h.
704 (output_skeleton): Use aver not assert.
705 * src/system.h (aver): In documentation of why, add links to
706 Paul Eggert's explanations in the mailing lists.
707
708 2009-09-05 Alex Rozenman <rozenman@gmail.com>
709
710 Use "Unresolved reference" error message when no symbols were found
711 in a symbolic reference resolution. Remove .expr and -expr from
712 the shown reference when the reference is unresolved.
713 * src/scan-code.l: Change the error message, adjust location columns,
714 rename variable "exact_mode" to "explicit_bracketing".
715 * tests/named-ref.at: Adjust existing tests and add a new one.
716
717 2009-09-04 Akim Demaille <demaille@gostai.com>
718
719 Adjust synclines in src/parse-gram.[ch].
720 * tests/bison.in: Do some magic (including working around issues
721 with ylwrap) when this wrapper is used to compile
722 src/parse-gram.y.
723
724 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
725
726 Complain about unused %define variables and %code qualifiers.
727 * NEWS (2.5): Document.
728 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
729 * doc/bison.texinfo (Decl Summary): Document complaint, and
730 improve %define documentation a little otherwise.
731 * tests/input.at (Reject unused %code qualifiers): Update.
732 (%define errors): Update.
733 (%define, --define, --force-define): Update.
734 (%define backward compatibility): Update.
735 (Unused %define api.pure): Update.
736 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
737
738 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
739
740 Don't suppress warnings about unused parse.error.
741 * data/bison.m4 (b4_error_verbose_flag): Don't examine value of
742 %define variable parse.error unless b4_error_verbose_flag is
743 actually expanded in a skeleton.
744
745 2009-09-03 Akim Demaille <demaille@gostai.com>
746
747 * NEWS (2.4.2): Add "Internationalization" item.
748
749 2009-09-03 Akim Demaille <demaille@gostai.com>
750
751 bootstrap: fix/improve find_tool.
752 * bootstrap (find_tool): Improve error messages.
753 Fix typo about find_tool_names.
754
755 2009-08-29 Joel E. Denny <jdenny@clemson.edu>
756
757 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
758 See
759 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
760 * src/scan-code.h (code_props_rule_action_init): Rename
761 named_ref arg to name so it doesn't shadow named_ref type. This
762 makes it consistent with the function definition in scan-code.l
763 anyway.
764
765 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
766
767 %define: accept unquoted values.
768 * NEWS (2.5): Group all %define changes together, and document
769 this one. Remove quotes in IELR and canonical LR entry.
770 * doc/bison.texinfo: Remove quotes in most examples throughout.
771 (Decl Summary): Update %define documentation.
772 (Table of Symbols): Likewise.
773 * src/ielr.c (LrType): Update documentation.
774 * src/parse-gram.y (content.opt): Add production for ID.
775 * tests/actions.at: Remove quotes in most tests.
776 * tests/calc.at: Likewise.
777 * tests/existing.at: Likewise.
778 * tests/input.at: Likewise.
779 * tests/local.at: Likewise.
780 * tests/push.at: Likewise.
781 * tests/reduce.at: Likewise.
782 * tests/torture.at: Likewise.
783
784 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
785
786 %define lr.type: make values lowercase IDs.
787 That is, "LALR" => "lalr", "IELR" => "ielr", and
788 "canonical LR" => "canonical-lr".
789 * NEWS (2.5): Update documentation.
790 * doc/bison.texinfo (Decl Summary): Likewise.
791 * src/ielr.c (ielr): Use new values.
792 * src/ielr.h (ielr): Update documentation.
793 * src/reader.c (prepare_percent_define_front_end_variables): Use
794 and validate new values.
795 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
796 grammars.
797 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
798
799 2009-08-27 Eric Blake <ebb9@byu.net>
800
801 scan-gram: avoid portability trap with ctype usage.
802 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
803 Avoid compiler warning.
804
805 2009-08-27 Joel E. Denny <jdenny@clemson.edu>
806
807 tests: use perl for printing special sequences to files.
808 And skip tests if perl is not available. This is better than
809 playing tricks with shell portability. Suggested by Akim
810 Demaille.
811 * tests/input.at (Bad character literals): Use it here for
812 omitting final newlines.
813 (Bad escapes in literals): Use it here for special characters.
814
815 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
816
817 tests: show a use of %define lr.default-reductions "consistent"
818 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
819 prevents the omission of expected tokens for %error-verbose.
820
821 2009-08-26 Akim Demaille <demaille@gostai.com>
822
823 tests: portability fix.
824 * tests/input.at (Bad escapes in literals): Don't expect "echo
825 '\0'" to output \ then 0.
826
827 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
828
829 Actually handle the yytable zero value correctly this time.
830 * data/bison.m4 (b4_integral_parser_tables_map): Don't mention
831 zero values in the YYTABLE comments.
832 * data/glr.c (yytable_value_is_error): Don't check for zero
833 value.
834 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
835 * data/yacc.c (yytable_value_is_error): Likewise.
836 * data/lalr1.java (yy_table_value_is_error_): Likewise.
837 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
838 * src/tables.h: In header comments, explain why it's useless to
839 check for a zero value in yytable.
840
841 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
842
843 More fixes related to last two patches.
844 * data/bison.m4 (b4_integral_parser_tables_map): Fix YYTABLE
845 comments: zero indicates syntax error not default action.
846 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
847 defined.
848 * data/glr.c (yyis_pact_ninf): Rename to...
849 (yypact_value_is_default): ... this.
850 (yyisDefaultedState): Update for rename.
851 (yyis_table_ninf): Rename to...
852 (yytable_value_is_error): ... this, and check for value zero
853 besides just YYTABLE_NINF.
854 (yygetLRActions): Check for default value from yypact. It
855 appears that this check is always performed before this function
856 is invoked, and so adding the check here is probably redundant.
857 However, the code may evolve after this subtlety is forgotten.
858 Also, update for rename to yytable_value_is_error. Because that
859 macro now checks for zero, a different but equivalent branch of
860 the if-then-else here is evaluated.
861 (yyreportSyntaxError): Update for rename to
862 yytable_value_is_error. The zero condition was mishandled
863 before.
864 (yyrecoverSyntaxError): Update for renames. No behavioral
865 changes.
866 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
867 New function.
868 (yy_table_value_is_error_): New function.
869 (parse): Use new functions where possible. No behavioral
870 changes.
871 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
872 The zero condition was mishandled before.
873 * data/yacc.c (yyis_pact_ninf): Rename to...
874 (yypact_value_is_default): ... this.
875 (yyis_table_ninf): Rename to...
876 (yytable_value_is_error): ... this, and check for value zero
877 besides just YYTABLE_NINF.
878 (yysyntax_error): Update for rename to yytable_value_is_error.
879 The zero condition was mishandled before.
880 (yyparse): Update for renames. No behavioral changes.
881 * src/tables.h: Improve comments about yypact, yytable, etc.
882 more. Most importantly, say yytable value of zero means syntax
883 error not default action.
884
885 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
886
887 Fix %error-verbose for conflicts resolved by %nonassoc.
888 * NEWS (2.5): Document.
889 * data/glr.c (yyreportSyntaxError): Fix this by checking
890 yyis_table_ninf.
891 * data/yacc.c (yysyntax_error): Likewise.
892 * data/lalr1.cc (yysyntax_error_): Fix this by checking
893 yytable_ninf_.
894 * data/lalr1.java (yysyntax_error): Likewise.
895 * tests/conflicts.at (%nonassoc and eof): Update expected output
896 and remove FIXME.
897
898 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
899
900 Some code and documentation improvements.
901 * data/c.m4 (b4_table_value_equals): New macro to capture
902 some repeated code.
903 * data/glr.c (yyis_pact_ninf): Use it here.
904 (yyis_table_ninf): Likewise.
905 (yyreportSyntaxError): Improve internal comments.
906 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
907 Use it everywhere possible.
908 (yyis_table_ninf): Likewise.
909 (yysyntax_error): Improve internal comments.
910 * data/lalr1.cc (yysyntax_error_): Likewise.
911 * data/lalr1.java (yysyntax_error): Likewise.
912 * src/tables.h: Improve comments about yypact, yytable, etc.
913
914 2009-08-21 Joel E. Denny <jdenny@clemson.edu>
915
916 Use locale when quoting.
917 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
918 quote rather than implementing quoting here.
919
920 2009-08-20 Eric Blake <ebb9@byu.net>
921
922 Make previous patch more robust.
923 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
924 argmatch.h.
925 (output_skeleton): Use it.
926 Suggested by Akim Demaille.
927
928 Import latest m4/m4.m4.
929 * submodules/autoconf: Update to autoconf 2.64.
930 * configure.ac (M4_GNU_OPTION): New define.
931 * src/output.c (output_skeleton): Use it to resolve FIXME.
932 * NEWS: Mention this.
933
934 2009-08-19 Joel E. Denny <jdenny@clemson.edu>
935
936 Fix complaints about escape sequences.
937 Discussed starting at
938 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
939 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
940 For a \0 and similar escape sequences meaning the null
941 character, report an invalid escape sequence instead of an
942 invalid null character because the latter does not actually
943 appear in the user's input.
944 In all escape sequence complaints, don't escape the initial
945 backslash, and don't quote when the sequence appears at the end
946 of the complaint line unless there's whitespace that quotearg
947 won't escape.
948 Consistently say "invalid" not "unrecognized".
949 Consistently prefer "empty character literal" over "extra
950 characters in character literal" warning for invalid escape
951 sequences; that is, consistently discard those sequences.
952 * tests/input.at (Bad escapes in literals): New.
953
954 2009-08-19 Akim Demaille <demaille@gostai.com>
955
956 doc: fixes.
957 * doc/bison.texinfo: Fix minor Texinfo errors.
958
959 2009-08-19 Akim Demaille <demaille@gostai.com>
960
961 tests: distcc compliance.
962 * tests/synclines.at (AT_SYNCLINES_COMPILE): Discard distcc's
963 error messages from the output.
964
965 2009-08-19 Akim Demaille <demaille@gostai.com>
966
967 variables: simplify the upgrade of namespace into api.namespace.
968
969 This patch simplifies "variables: rename namespace as
970 api.namespace", commit 67501061076ba46355cfd9f9361c7eed861b389c.
971 Suggested by Joel E. Denny in
972 http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00006.html
973
974 * src/muscle-tab.c (muscle_percent_variable_update): New.
975 (muscle_percent_define_insert): Use it in replacement of the
976 previous tr invocation.
977 Remove variable_tr, no longer needed.
978 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
979 Remove.
980 * data/c++.m4: No longer handle namespace -> api.namespace.
981 * tests/input.at (%define backward compatibility): Check that
982 namespace is treated as api.namespace.
983
984 2009-08-19 Akim Demaille <demaille@gostai.com>
985
986 doc: %initial-action to initialize yylloc.
987 Reported by Bill Allombert.
988 * doc/bison.texinfo: Set fill-column to 76.
989 (Location Type): Document the use of %initial-action to initialize
990 yylloc.
991
992 2009-08-19 Akim Demaille <demaille@gostai.com>
993
994 lalr1.cc: use state_type.
995 * data/lalr1.cc (yysyntax_error_): Use state_type.
996 Move argument names into yy*.
997
998 2009-08-19 Akim Demaille <demaille@gostai.com>
999
1000 lalr1.cc: get rid of yyparse's yystate.
1001 yystate and yystack_[0].state are equal, keep only the latter.
1002 The former was also used as a temporary variable to compute the
1003 post-reduction state. Move this computation into an auxiliary
1004 function.
1005
1006 * data/glr.c (yyLRgotoState): Fuse variable definition and first
1007 assignment.
1008 * data/lalr1.cc (yy_lr_goto_state_): New.
1009 (yyparse): Use it.
1010 Replace remaining uses of yystate by yystate_[0].state.
1011 Remove the former.
1012
1013 2009-08-19 Akim Demaille <demaille@gostai.com>
1014
1015 lalr1.cc: destroy $$ when YYERROR is called.
1016 * data/lalr1.cc (yyreduce): Compute the resulting state before
1017 running the user action so that yylhs is a valid symbol.
1018 (yyerrorlab): Since yylhs is complete (it knows its type), we can
1019 simply call yy_destroy_ to destroy $$ on YYERROR invocations.
1020 * tests/c++.at (AT_CHECK_VARIANTS): Test YYERROR with variants.
1021
1022 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
1023
1024 maint: update for gnulib's recent update-copyright changes
1025 * gnulib: Update.
1026 * .x-update-copyright (COPYING): Add as it's no longer implied
1027 when .x-update-copyright is present.
1028 * cfg.mk (update-copyright-local): Remove, now ignored.
1029 (update-copyright): Declare update-b4-copyright as a dependency.
1030
1031 2009-08-17 Akim Demaille <demaille@gostai.com>
1032
1033 build: require gettext 0.17.
1034
1035 Suggested by Bruno Haible.
1036 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
1037 * configure.ac: require gettext 0.17 to ensure compatibility with
1038 gnulib.
1039
1040 2009-08-17 Akim Demaille <demaille@gostai.com>
1041
1042 build: lower gettext requirements.
1043
1044 Bison was uselessly requiring the formatstring macros from
1045 gettext, which resulted in mo files not being installed on systems
1046 that perfectly supported Bison mo files. Lower the requirement.
1047 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
1048
1049 * configure.ac: Require need-ngettext instead of
1050 need-formatstring-macros.
1051 Reported by Martin Jabocs.
1052 Suggested by Bruno Haible.
1053 * INSTALL: Restructure.
1054 (Internationalization): New.
1055
1056 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
1057
1058 maint: fix use of copyright year intervals.
1059 * gnulib: Update.
1060 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
1061 as now recommended in gnulib/NEWS.
1062 * build-aux/update-b4-copyright: Fix.
1063 * cfg.mk (update-copyright-env): Configure update-copyright.
1064
1065 2009-08-13 Joel E. Denny <jdenny@clemson.edu>
1066
1067 Make it easier to write deterministic tests.
1068 Continues Akim's work from his 2009-06-10 commits.
1069 * src/reader.c (check_and_convert_grammar): Don't add any
1070 symbols after the first symbols_do invocation.
1071 * src/symtab.c (symbols_sorted): New static global.
1072 (user_token_number_redeclaration): Update comments.
1073 (symbol_from_uniqstr): If a new symbol is being created, assert
1074 that symbols_sorted hasn't been allocated yet.
1075 (symbols_free): Free symbols_sorted.
1076 (symbols_cmp, symbols_cmp_qsort): New functions.
1077 (symbols_do): Sort symbol_table into symbols_sorted on first
1078 invocation.
1079 * tests/input.at (Numbered tokens): Recombine tests now that the
1080 output should be deterministic across multiple numbers.
1081
1082 2009-08-12 Akim Demaille <demaille@gostai.com>
1083
1084 tests: GCC 4.5 compliance.
1085 * tests/synclines.at (AT_SYNCLINES_COMPILE): Adjust to GCC 4.5's
1086 messages about #error.
1087
1088 2009-08-12 Akim Demaille <demaille@gostai.com>
1089
1090 build: fix the generation of the documentation.
1091 Some of our targets use "bison --help", but they can't depend on
1092 "bison" itself (to avoid additional requirements on the user), so
1093 they used to call "make src/bison" in the commands. Then
1094 concurrent builds may fail: one make might be aiming one of its
1095 jobs at compiling src/bison, and another job at generating the man
1096 page. If the latter is faster than the former, then we have two
1097 makes that concurrently try to compile src/bison.
1098
1099 This might also be a more convincing explanation for the failure
1100 described in the patch "build: fix paths".
1101
1102 * Makefile.am (SUFFIXES): Initialize.
1103 * build-aux/move-if-change: New, symlink to gnulib's.
1104 * build-aux/local.mk: Ship it.
1105 * doc/common.x: Remove, merged into...
1106 * doc/bison.x: here.
1107 * doc/local.mk (doc/bison.help): New.
1108 ($(CROSS_OPTIONS_TEXI)): Depend on it.
1109 Use src/bison.
1110 (.x.1): Replace with...
1111 (doc/bison.1): this explicit, simpler, target.
1112 (common_dep): Remove, inlined where appropriate.
1113 (SUFFIXES, PREPATH): Remove, unused.
1114
1115 2009-08-12 Akim Demaille <demaille@gostai.com>
1116
1117 gnulib: improve prefixing.
1118 * configure.ac (gl_PREFIXED_LIBOBJS): Don't rename it, rather,
1119 change the value of...
1120 (gl_LIBOBJS): this.
1121 Adjust more variables.
1122 * etc/prefix-gnulib-mk (prefix_assignment): Don't rename
1123 gl_LIBOBJS.
1124 (prefix): Also transform rules whose targets have slashes.
1125 Use $prefix liberally.
1126 Map @MKDIR_P@ to $(MKDIR_P).
1127 Prefix directories that are mkdir'd.
1128
1129 2009-08-12 Akim Demaille <demaille@gostai.com>
1130
1131 build: fix paths.
1132 When using $(top_builddir) inconsistently, Make (including GNU
1133 Make) is sometimes confused. As a result it may want to build
1134 lib/libbison.la and $(top_builddir)/lib/libbison.la (the same
1135 file, different names) concurrently, which, amusingly enough,
1136 might end with:
1137
1138 ranlib lib/libbison.a
1139 ranlib lib/libbison.a
1140 make[2]: *** [lib/libbison.a] Segmentation fault
1141
1142 on OS X.
1143
1144 * doc/local.mk, src/local.mk: Do not use $(top_builddir) when not
1145 needed.
1146
1147 2009-08-12 Akim Demaille <demaille@gostai.com>
1148
1149 distcheck: fix.
1150
1151 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
1152
1153 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
1154
1155 * tests/local.mk (TESTSUITE_AT): Add named-refs.at.
1156
1157 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
1158
1159 Miscellaneous code readability improvements.
1160
1161 * src/reader.c (reader): Move %define front-end variable
1162 defaults and checking into...
1163 (prepare_percent_define_front_end_variables): ... this new
1164 function.
1165
1166 * src/scan-gram.l (INITIAL): For consistency with string
1167 literals, don't store open quote on character literal. It's
1168 discarded before returning anyway.
1169 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
1170 Make length test more readable, and make the character stored
1171 for an empty literal more obvious while consistent with the
1172 previous behavior.
1173
1174 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
1175 USER_NUMBER_HAS_STRING_ALIAS throughout.
1176 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
1177 that is repeated in symtab.h. Improve argument names to make it
1178 clear which side of the symbol-string alias pair is which.
1179 (symbol_check_alias_consistency): Improve local variable names
1180 for the same purpose.
1181 * src/symtab.h (struct symbol): Make comments about aliases
1182 clearer.
1183 (symbol_make_alias): Improve comments and argument name.
1184 * src/output.c (token_definitions_output): Update for rename to
1185 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
1186
1187 2009-08-08 Alex Rozenman <rozenman@gmail.com>
1188
1189 Convert "misleading reference" messages to warnings.
1190 * src/scan-code.l: New function 'show_sub_messages', more
1191 factoring.
1192 * tests/named-ref.at: Adjust tests.
1193
1194 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
1195
1196 maint: run "make update-copyright"
1197
1198 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
1199
1200 maint: make update-b4-copyright easier to use
1201 * build-aux/update-b4-copyright: In warnings, report line
1202 numbers rather than character positions.
1203 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
1204 that update-copyright runs it.
1205 * gnulib: Update.
1206
1207 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
1208
1209 maint: clean up update-b4-copyright code
1210 * build-aux/update-b4-copyright: Do not accept 2-digit
1211 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
1212 Don't accept a `[' in a b4_copyright argument.
1213 Format code more consistently.
1214 Don't assume b4*copyright never occurs.
1215
1216 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1217
1218 maint: automate b4_copyright updates.
1219 * Makefile.am (update-b4-copyright): New target rule.
1220 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
1221 * build-aux/update-b4-copyright: New.
1222 * data/yacc.c: Remove stray characters around b4_copyright
1223 invocations.
1224
1225 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1226
1227 maint: automate annual package-wide copyright-year update.
1228 * .x-update-copyright: New.
1229 * Makefile.am (EXTRA_DIST): Remove maint.mk.
1230 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
1231 update-copyright. Remove gnumakefile, which is implied by
1232 maintainer-makefile.
1233 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
1234 * gnulib: Update.
1235 * maint.mk: Remove, now copied from gnulib.
1236 * examples/extexi: Add missing "(C)" in copyright statement so
1237 update-copyright can recognize it.
1238 * src/LR0.h: Likewise.
1239 * src/print.h: Likewise.
1240 * src/print_graph.h: Likewise.
1241 * src/gram.c: Add missing comma in copyright statement.
1242 * src/gram.h: Likewise.
1243
1244 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1245
1246 Fix "make distcheck".
1247 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
1248 of just calc.stamp.
1249
1250 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
1251
1252 Pacify "gcc -Wunused" for the input function from Flex.
1253 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
1254 and later.
1255 * src/scan-code.l: Add "%option noinput", which I cannot find in
1256 the Flex manual, but which Flex has supported since at least as
1257 far back as 2.5.4. However, if any of our developers still use
1258 Flex 2.5.4, they'll need to stop configuring with
1259 --enable-gcc-warnings because "%option noinput" didn't work
1260 correctly until Flex 2.5.6.
1261 * src/scan-gram.l: Likewise.
1262 * src/scan-skel.l: Likewise.
1263
1264 2009-07-31 Alex Rozenman <rozenman@gmail.com>
1265
1266 Fix --enable-gcc-warnings problems.
1267 * src/reader.c: Adjust variable names.
1268 * src/scan-code.l: Fix prototypes and adjust names.
1269 * src/named-ref.c: Remove redundant "if".
1270
1271 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1272
1273 Fix a --enable-gcc-warnings problem.
1274 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
1275 variable.
1276
1277 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1278
1279 Warn about character literals not of length one.
1280 * NEWS (2.5): Document.
1281 * src/scan-gram.l (INITIAL): Remove comment that we don't check
1282 the length.
1283 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
1284 * tests/input.at (Bad character literals): New test group.
1285
1286 2009-07-24 Alex Rozenman <rozenman@gmail.com>
1287
1288 Fix some memory leaks.
1289 * src/named-ref.c: Add a pointer check (named_ref_free).
1290 * src/scan-code.l: New function (variant_table_free). Called in
1291 code_scanner_free.
1292 * src/symlist.c: Call to named_ref_free (symbol_list_free).
1293
1294 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1295
1296 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
1297
1298 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
1299
1300 Some M4 cleanup in the testsuite.
1301 Suggested by Eric Blake at
1302 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
1303 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
1304 complicate the code by distinguishing between a missing value
1305 and an empty string value for an optional argument. This fix is
1306 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
1307 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
1308 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
1309 arguments are not needed because of the following changes.
1310 Fix stale comments.
1311 Bison developers should use GNU M4 and should not use
1312 POSIXLY_CORRECT when building the test suite, so do not
1313 complicate the code by avoiding $10 and above.
1314 Do not quote an empty string value for an optional argument, and
1315 do not distinguish between a missing value and an empty string
1316 value.
1317
1318 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1319
1320 Revert unnecessary column realignment in --help output.
1321 Reported by Akim Demaille at
1322 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
1323 * src/getargs.c (usage): Here.
1324
1325 2009-07-04 Alex Rozenman <rozenman@gmail.com>
1326
1327 Alphabetical order in src/local.mk.
1328 * src/local.mk: Adjust.
1329
1330 2009-07-04 Alex Rozenman <rozenman@gmail.com>
1331
1332 Style changes and factoring.
1333 * src/named-ref.h: Add comments.
1334 * src/parse-gram.y: Readability and style changes.
1335 * src/reader.c: Factoring: assign_named_ref function.
1336 * src/scan-code.l: Factoring and style changes. Rename
1337 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
1338 Use "unsigned" type for variant index. Improve readablity.
1339 * src/scan-gram.l: Change error messages and add comments.
1340 * src/symlist.h: symbol_list_null: New function decl.
1341 * src/symlist.c: symbol_list_null: Implement here.
1342 * tests/named-refs.at: Adjust for new error messages.
1343
1344 2009-06-29 Eric Blake <ebb9@byu.net>
1345
1346 scan-code: avoid compiler warnings
1347 * src/scan-code.l (parse_named_ref): Use correct specifiers.
1348
1349 2009-06-29 Akim Demaille <demaille@gostai.com>
1350
1351 build: avoid concurrent extraction of calc++.
1352 * examples/calc++/Makefile.am (calc.stamp): New.
1353 Depend on it to create the sources of calc++ so that concurrent
1354 builds don't launch several "extexi" in parallel.
1355 Not only this is inefficient, this also builds incorrect sources
1356 with several extractions mixed together.
1357
1358 2009-06-29 Akim Demaille <demaille@gostai.com>
1359
1360 parse.error: fix.
1361 * data/bison.m4: Move code related to specific variables after the
1362 definition of the variable-maintaining macros so that we don't
1363 "invoke" b4_percent_define_check_values before it is defined.
1364
1365 2009-06-29 Akim Demaille <demaille@gostai.com>
1366
1367 variables: parse.error
1368
1369 Implement, document, and test the replacement of %error-verbose
1370 by %define parse.error "verbose".
1371 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
1372 values of the parse.error variable.
1373 Make "simple" its default value.
1374 Check the valid values.
1375 * src/parse-gram.y: Use %define parse.error.
1376 (PERCENT_ERROR_VERBOSE): New token.
1377 Support it.
1378 * src/scan-gram.l: Support %error-verbose.
1379
1380 * doc/bison.texinfo (Decl Summary): Replace the documentation of
1381 %define error-verbose by that of %define parse.error.
1382 * NEWS: Document it.
1383
1384 * tests/actions.at, tests/calc.at: Use parse.error instead of
1385 %error-verbose.
1386
1387 2009-06-27 Alex Rozenman <rozenman@gmail.com>
1388
1389 Implement support for named symbol references.
1390 * src/parse-gram.y: Add new syntax (named_ref.opt).
1391 * src/reader.c: Store named refs in symbol lists.
1392 * src/reader.h: New argument for symbol_append and
1393 action_append functions.
1394 * src/scan-code.h: Add new field (named_ref) into
1395 code_props data structure. Keeps named ref of midrule
1396 actions.
1397 * src/scan-code.l: Support for named refs in semantic
1398 action code. New function 'parse_named_ref'.
1399 * src/scan-gram.l: Support bracketed id.
1400 * src/symlist.c: Store named refs in symbol lists.
1401 * src/symlist.h: New field in symbol list: named_ref.
1402 * src/named-ref.h: New file, a struct for named_ref.
1403 * src/named-ref.cp: New file, named_ref_new function.
1404 * src/local.mk: Add two new files.
1405 * tests/testsuite.at: Include new test group:
1406 * tests/named-refs.at: this new file.
1407
1408 2009-06-25 Akim Demaille <demaille@gostai.com>
1409
1410 hash: check insertion for memory exhaustion.
1411 * src/uniqstr.c (uniqstr_new): New.
1412
1413 2009-06-24 Akim Demaille <demaille@gostai.com>
1414
1415 variables: rename namespace as api.namespace.
1416 Discussed in
1417 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
1418
1419 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
1420 New.
1421 (b4_percent_define_use): New.
1422 Use it where applicable.
1423 * data/c++.m4: Replace uses of the variable "namespace" by
1424 "api.namespace".
1425 Default the latter to the former.
1426 * doc/bison.texinfo (Decl Summary): Document "namespace" as
1427 obsolete.
1428 Document api.namespace.
1429 Use @samp to document %define uses, keep @code for identifiers.
1430 * NEWS: Likewise.
1431 * tests/c++.at, tests/input.at: Test api.namespace instead of
1432 namespace. (The tests passed with namespace.)
1433
1434 2009-06-11 Akim Demaille <demaille@gostai.com>
1435
1436 style changes.
1437 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
1438 * src/print-xml.c: Style changes.
1439 * tests/conflicts.at: Comment changes.
1440
1441 2009-06-11 Akim Demaille <demaille@gostai.com>
1442
1443 xml: beware of user strings used to give a %prec to rules.
1444 * tests/conflicts.at (%prec with user strings): New.
1445 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
1446 XML output.
1447
1448 2009-06-11 Akim Demaille <demaille@gostai.com>
1449
1450 hash: check insertion for memory exhaustion.
1451 * src/muscle-tab.c (muscle_insert, muscle_grow)
1452 * src/state.c (state_hash_insert): Check the return value of
1453 hash_insert.
1454
1455 2009-06-11 Akim Demaille <demaille@gostai.com>
1456
1457 tests: honor TESTSUITEFLAGS in every check target.
1458 * tests/local.mk (RUN_TESTSUITE): New.
1459 (check-local, installcheck-local, maintainer-check-g++)
1460 (maintainer-check-posix, maintainer-check-valgrind): Use it.
1461
1462 2009-06-10 Akim Demaille <demaille@gostai.com>
1463
1464 deterministic test suite.
1465 Some consistency checks on symbols are performed after all the
1466 symbols were read, by an iteration over the symbol table. This
1467 traversal is nondeterministic, which can be a problem for test
1468 cases.
1469 Avoid this.
1470 Addresses another form of nondeterminism reported by Joel E. Denny.
1471 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1472
1473 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
1474 test in two.
1475 Use different file names for the three tests to make the
1476 maintenance easier.
1477
1478 2009-06-10 Akim Demaille <demaille@gostai.com>
1479
1480 gnulib: update.
1481 * gnulib: Update to latest.
1482 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
1483 * m4/.gitignore: Regen.
1484 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
1485 Call xalloc_die on hash_insert failures.
1486 Requested by the new __warn_unused_result__ attribute of
1487 hash_insert.
1488
1489 2009-06-10 Akim Demaille <demaille@gostai.com>
1490
1491 deterministic user-token-number redeclaration errors.
1492 Address nondeterminism reported by Joel E. Denny.
1493 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1494
1495 * src/uniqstr.h: Comment changes.
1496 * src/location.h (boundary_cmp, location_cmp): New.
1497 * src/symtab.c (user_token_number_redeclaration): New.
1498 (symbol_translation): Use it.
1499 * tests/input.at (Numbered tokens): Adjust the expected output.
1500
1501 2009-05-25 Akim Demaille <demaille@gostai.com>
1502
1503 build: avoid ignored errors.
1504 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
1505 errors, they pollute the output.
1506
1507 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1508
1509 Convert multiple variable definition warnings to complaints.
1510 * NEWS (2.5): Add a new entry for that change.
1511 * doc/bison.texinfo (Decl Summary): Update %define entry.
1512 (Bison Options): Update -D/--define/-F/--force-define entry.
1513 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
1514 * src/muscle-tab.h (muscle_percent_define_insert): Update
1515 comments.
1516 * tests/input.at (`%define errors'): Update.
1517 (`%define, --define, --force-define'): Update.
1518
1519 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1520
1521 -F/--force-define and relative %define/-D/--define priorities.
1522 * NEWS (2.5): Add documentation to -D/--define entry.
1523 * build-aux/cross-options.pl: Hard-code association of
1524 --force-define with %define.
1525 * doc/bison.texinfo (Decl Summary): In %define entry,
1526 cross-reference command-line options.
1527 (Bison Options): Add documentation to -D/--define entry.
1528 (Option Cross Key): Widen column for --force-define row.
1529 * src/getargs.c (usage): Document -F/--force-define. Realign
1530 options in output.
1531 (short_options, long_options, getargs): Parse -F/--force-define,
1532 and update muscle_percent_define_insert invocations.
1533 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
1534 (muscle_percent_define_insert): Add argument with that type.
1535 * src/muscle-tab.c (muscle_percent_define_insert): Implement
1536 -F/--force-define behavior and priorities.
1537 (muscle_percent_define_ensure): Update
1538 muscle_percent_define_insert invocation.
1539 * src/parse-gram.y (prologue_declaration): Update
1540 muscle_percent_define_insert invocations.
1541 * tests/input.at (`%define, --define'): Rename to...
1542 (`%define, --define, --force-define'): ... this and extend.
1543
1544 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1545
1546 Update some comments to make sense for -D.
1547 * data/bison.m4 (b4_check_user_names): In header comments, say
1548 "user occurrence" instead of "grammar occurrence".
1549 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
1550 (muscle_percent_code_grow): Likewise just for consistency.
1551
1552 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1553
1554 * data/c++.m4 (b4_namespace_close): Simplify slightly.
1555
1556 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
1557
1558 Handle a trailing `:' in a user-supplied C++ namespace better.
1559 * data/c++.m4 (b4_namespace_close): Don't let it be printed
1560 among the closing braces here. This fix might make the
1561 generated code easier to debug, but otherwise it should be
1562 insignificant because a trailing `:' is a C++ error already.
1563
1564 2009-05-19 Akim Demaille <demaille@gostai.com>
1565
1566 remove useless variable.
1567 * src/getargs.c (skeleton_arg): Remove now useless variable.
1568 Should help the compiler see that this printf-like call is sane.
1569
1570 2009-05-15 Akim Demaille <demaille@gostai.com>
1571
1572 Rename token.prefix as api.tokens.prefix.
1573 Discussed here.
1574 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
1575
1576 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
1577 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
1578 (token.prefix): Rename as...
1579 (api.tokens.prefix): this.
1580
1581 2009-05-11 Akim Demaille <demaille@gostai.com>
1582
1583 doc: use C++ headers.
1584 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
1585 headers.
1586
1587 2009-05-11 Akim Demaille <demaille@gostai.com>
1588
1589 doc: token.prefix
1590 * doc/bison.simple (Decl Summary): Document token.prefix.
1591 (Calc++ Parser): Various fixes.
1592 Formatting changes.
1593 Use token.prefix.
1594 Introduce a macro TOKEN to shorten the code and make it more
1595 readable.
1596 (Calc++ Scanner): Adjust.
1597 * NEWS (Variable token.prefix): New.
1598
1599 2009-05-04 Akim Demaille <demaille@gostai.com>
1600
1601 bison: catch bad symbol names.
1602 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
1603 * tests/input.at: Adjust.
1604
1605 2009-05-04 Akim Demaille <demaille@gostai.com>
1606
1607 identifiers: dashes are letters.
1608 Dashes can now start identifiers (symbols and directives).
1609
1610 * src/scan-gram.l ({letter}): Add dash.
1611 ({id}): Remove it.
1612 * tests/input.at (Symbols): Adjust.
1613 Remove stray comment.
1614 * tests/regression.at (Invalid inputs): Adjust error message.
1615 * doc/bison.texinfo (Symbols): Update.
1616
1617 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
1618
1619 Declare %code to be a permanent feature.
1620 * NEWS (2.4.2): Here.
1621 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
1622 experimental.
1623 (Decl Summary): Likewise.
1624
1625 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1626
1627 Convert underscores to dashes in some %define variable names.
1628 For now, just api.push-pull and lr.keep-unreachable-states.
1629 Maintain old names for backward compatibility.
1630 * NEWS (2.5): Document.
1631 * data/c.m4 (b4_identification): Update comment.
1632 * data/yacc.c: Update access.
1633 * doc/bison.texinfo: Update.
1634 * etc/bench.pl.in (bench_push_parser): Update use.
1635 * src/files.c (tr): Move to...
1636 * src/getargs.c, src/getargs.h (tr): ... here because I can't
1637 think of a better place to expose it. My logic is that, for all
1638 uses of tr so far, command-line arguments can be involved, and
1639 getargs.h is already included.
1640 * src/main.c (main): Update access.
1641 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
1642 variable names to new variable names before assigning value.
1643 * src/reader.c (reader): Update setting default.
1644 * tests/calc.at: Update uses.
1645 * tests/conflicts.at (Unreachable States After Conflict
1646 Resolution): Update use.
1647 * tests/input.at (%define enum variables): Update use.
1648 (%define backward compatibility): New test group.
1649 * tests/push.at: Update uses.
1650 * tests/reduce.at: Update uses.
1651 * tests/torture.at: Update uses.
1652
1653 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1654
1655 Set all front-end %define defaults in one place.
1656 * src/main.c (main): Move lr.keep_unreachable_states default...
1657 * src/reader.c (reader): ... to here.
1658
1659 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1660
1661 Rename lr.default_reductions to lr.default-reductions.
1662 * NEWS (2.5): Here.
1663 * doc/bison.texinfo: Here.
1664 * src/lalr.c (initialize_LA): Here.
1665 * src/print.c (print_reductions): Here.
1666 * src/reader.c (reader): Here.
1667 * src/tables.c (action_row): Here.
1668 * tests/input.at (%define enum variables): Here.
1669 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
1670
1671 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1672
1673 Pacify ./configure --enable-gcc-warnings.
1674 * tests/input.at (Symbols): Prototype yyerror and yylex.
1675
1676 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1677
1678 Document how `%define "var" "value"' is not M4-friendly.
1679 * src/parse-gram.y (variable): In comments here.
1680
1681 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1682
1683 Clean up recent patches a little.
1684 Reported by Akim Demaille.
1685 * doc/bison.texinfo (Understanding): Fix typos.
1686 * src/print.c (print_reductions): Don't use negated variable.
1687
1688 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1689
1690 List accepted values for a %define enum variable with an invalid value.
1691 Suggested by Akim Demaille at
1692 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
1693 * data/bison.m4 (_b4_percent_define_check_values): Implement.
1694 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
1695 * tests/input.at (%define lr.default_reductions invalid values): Merge
1696 into...
1697 (%define enum variables): ... here, and update output.
1698
1699 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
1700
1701 Rename "default rule" to "default reduction".
1702 This includes changing variable names in code, changing
1703 comments, and renaming %define lr.default_rules to %define
1704 lr.default_reductions.
1705 * NEWS (2.5): Update IELR documentation.
1706 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
1707 documentation.
1708 * data/glr.c, data/lalr1.java: Sync copyright dates.
1709 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
1710 and lr.type documentation. Make some other wording
1711 improvements.
1712 (Glossary): Adjust cross-references and Default Reduction
1713 definition.
1714 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
1715 Remove a confusing comment pointed out by Akim Demaille.
1716 (initialize_LA): Adjust code.
1717 * src/print-xml.c (print_reductions): Adjust code.
1718 * src/print.c (print_reductions): Adjust code.
1719 * src/reader.c (reader): Adjust code.
1720 * src/tables.c (action_row): Adjust code.
1721 (token_actions): Adjust code.
1722 * src/tables.h: Adjust YYDEFACT documentation.
1723 * tests/input.at (%define lr.default_rules invalid values):
1724 Rename test group to...
1725 (%define lr.default_reductions invalid values): ... this, and
1726 update grammar file and expected output.
1727 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
1728 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
1729
1730 2009-04-21 Akim Demaille <demaille@gostai.com>
1731
1732 tests: check the use of dashes and periods in symbols.
1733 * tests/input.at (Symbol): New test group.
1734
1735 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1736
1737 Document %define lr.type and lr.default_rules.
1738 * NEWS (2.5): Add an entry.
1739 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
1740 besides just LALR(1) and GLR(1).
1741 * doc/bison.texinfo (Introduction): Likewise.
1742 (Language and Grammar): Bison is no longer limited to LALR(1)
1743 restrictions.
1744 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
1745 when trying to distinguish from GLR. Talk about LR(1) grammars
1746 rather than LALR(1) grammars.
1747 (Decl Summary): In %define api.push_pull entry, say it applies
1748 to deterministic parsers in C rather than LALR(1) parsers in C.
1749 Add lr.default_rules entry.
1750 Add lr.type entry.
1751 (Mystery Conflicts): Bison is no longer limited to LALR(1)
1752 restrictions.
1753 (Generalized LR Parsing): Same changes as for the previous GLR
1754 section.
1755 (Memory Management): Say deterministic rather than LALR(1).
1756 (Understanding): Correct some bison output.
1757 Index discussion of "accepting state".
1758 Say deterministic rather than LALR(1).
1759 (Bison Options): In --yacc entry, say deterministic rather than
1760 LALR(1).
1761 In --report, --graph, and --xml entries, just don't mention
1762 LALR(1).
1763 (C++ Parsers): Say deterministic rather than LALR(1).
1764 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
1765 (Glossary): Add Accepting State, Consistent State, Default Rule,
1766 and IELR(1) definitions.
1767 In Generalized LR (GLR) definition, make same changes as in
1768 previous GLR sections.
1769 In LALR(1) definition, say Bison uses LALR(1) by default rather
1770 than implying Bison is limited to LALR(1).
1771 (LocalWords): Add IELR.
1772
1773 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1774
1775 Finish implementing %define lr.type.
1776 Its value can be "LALR", "IELR", or "canonical LR".
1777 * lib/timevar.def (TV_IELR_PHASE1): New var.
1778 (TV_IELR_PHASE2): New var.
1779 (TV_IELR_PHASE3): New var.
1780 (TV_IELR_PHASE4): New var.
1781 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
1782 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
1783 Sbitset.h, ielr.h, and ielr.c.
1784 * src/getargs.h, src/getargs.c (enum trace, trace_args,
1785 trace_types): Add trace_ielr.
1786 * src/lalr.h, src/lalr.c (ngotos): Export it.
1787 (F): Rename to...
1788 (goto_follows): ... this, update all uses, and export it.
1789 (set_goto_map): Export it.
1790 (map_goto): Export it.
1791 (compute_lookahead_tokens): Don't free goto_follows yet. Now
1792 handled in ielr.
1793 (initialize_LA): Export it. Move lookback allocation to...
1794 (lalr): ... here because, for canonical LR, initialize_LA must
1795 be invoked but lookback and much of the rest of LALR isn't
1796 needed.
1797 * main.c (main): Instead of lalr, invoke ielr, which invokes
1798 lalr.
1799 * src/reader.c (reader): Default lr.type to "LALR".
1800 Default lr.default_rules to "accepting" if lr.type is "canonical
1801 LR". Leave the default as "all" otherwise.
1802 Check for a valid lr.type value.
1803 * src/state.h, src/state.c (struct state_list): Add state_list
1804 member.
1805 (state_new): Initialize state_list member to NULL.
1806 (state_new_isocore): New function, exported.
1807 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
1808 exercises all values of lr.type.
1809 (GNU AWK Grammar): Rename test group to...
1810 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
1811 AT_TEST_EXISTING_GRAMMAR.
1812 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
1813 (GNU pic Grammar): Rename test group to...
1814 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
1815 AT_TEST_EXISTING_GRAMMAR.
1816 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
1817 all values of lr.type.
1818 (Single State Split): New test groups using AT_TEST_LR_TYPE.
1819 (Lane Split): Likewise.
1820 (Complex Lane Split): Likewise.
1821 (Split During Added Lookahead Propagation): Likewise.
1822
1823 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1824
1825 Add new files for IELR and canonical LR implementation.
1826 * src/AnnotationList.c: New.
1827 * src/AnnotationList.h: New.
1828 * src/InadequacyList.c: New.
1829 * src/InadequacyList.h: New.
1830 * src/Sbitset.c: New.
1831 * src/Sbitset.h: New.
1832 * src/ielr.c: New.
1833 * src/ielr.h: New.
1834
1835 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1836
1837 Implement %define lr.default_rules.
1838 Its value describes the states that are permitted to contain
1839 default rules: "all", "consistent", or "accepting".
1840 * src/reader.c (reader): Default lr.default_rules to "all".
1841 Check for a valid lr.default_rules value.
1842 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
1843 is "accepting", then only mark the accepting state as
1844 consistent.
1845 (initialize_LA): Tell state_lookahead_tokens_count whether
1846 lr.default_rules is "accepting".
1847 * src/tables.c (action_row): If lr.default_rules is not "all",
1848 then disable default rules in inconsistent states.
1849 * src/print.c (print_reductions): Use this opportunity to
1850 perform some assertions about whether lr.default_rules was
1851 obeyed correctly.
1852 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
1853 helps with checking the parser tables for a grammar.
1854 * tests/input.at (%define lr.default_rules invalid values): New
1855 test group.
1856 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
1857 AT_TEST_TABLES_AND_PARSE.
1858 (`no %define lr.default_rules'): New test group generated by
1859 AT_TEST_LR_DEFAULT_RULES.
1860 (`%define lr.default_rules "all"'): Likewise.
1861 (`%define lr.default_rules "consistent"'): Likewise.
1862 (`%define lr.default_rules "accepting"'): Likewise.
1863
1864 2009-04-20 Akim Demaille <demaille@gostai.com>
1865
1866 Formatting change.
1867
1868 2009-04-20 Akim Demaille <demaille@gostai.com>
1869
1870 bison: factoring.
1871 * src/output.c (token_definitions_output): Use symbol_id_get
1872 instead of duplicating its logic.
1873 * TODO (YYERRCODE): Extend.
1874
1875 2009-04-20 Akim Demaille <demaille@gostai.com>
1876
1877 variables: prefer error-verbose to error_verbose.
1878 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
1879 instead of error_verbose.
1880 * src/scan-gram.l (%error-verbose): Map to the error-verbose
1881 variable.
1882 * doc/bison.texinfo: Promote %define error-verbose instead of
1883 %error-verbose.
1884 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
1885
1886 2009-04-15 Akim Demaille <demaille@gostai.com>
1887
1888 variables: accept dashes.
1889 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
1890 underscores.
1891 * src/scan-gram.l ({id}): Also accept dashes after the initial
1892 letter.
1893 ({directive}): Use {id}.
1894 * src/parse-gram.y: Comment and formatting changes.
1895 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
1896 symbols.
1897 * src/complain.h, src/complain.c (yacc_at): New.
1898 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
1899 symbol names.
1900 * src/output.c (token_definitions_output): Do not #define token
1901 names with dashes.
1902
1903 2009-04-20 Akim Demaille <demaille@gostai.com>
1904
1905 Consistently refer to Yacc, not YACC.
1906 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
1907
1908 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
1909
1910 Pacify make maintainer-check-posix.
1911 * tests/input.at (%define, --define): Move bison command-line
1912 options before grammar file name.
1913
1914 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1915
1916 Document semicolon warnings.
1917 * NEWS (2.5): Here.
1918
1919 2009-04-14 Akim Demaille <demaille@gostai.com>
1920
1921 variables: use `parse.assert' instead of `assert'.
1922 * TODO (assert): Remove.
1923 * data/bison.m4 (b4_assert_if): Replace with...
1924 (b4_parse_assert_if): this.
1925 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
1926 * doc/bison.texinfo (Decl Summary): Document parse.assert.
1927
1928 2009-04-14 Akim Demaille <demaille@gostai.com>
1929
1930 variables: use `parse.trace' instead of `debug'.
1931 * src/getargs.c (getargs): Map -t to %define trace.parse.
1932 * src/scan-gram.l (%debug): Map to %define trace.parse.
1933 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
1934 names to `_' in macro names.
1935 (b4_debug_if): Replace with...
1936 (b4_parse_trace_if): this.
1937 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1938 * data/yacc.c: Adjust.
1939 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
1940 Use @code to label the variable list.
1941 Document the variable parse.trace.
1942 (Tracing): Promote the parse.trace variable.
1943 * TODO: %printer is not documented.
1944
1945 2009-04-14 Akim Demaille <demaille@gostai.com>
1946
1947 doc: minor fixes.
1948 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
1949 (Table of Symbols): Remove duplicate entry for %debug.
1950
1951 2009-04-10 Eric Blake <ebb9@byu.net>
1952
1953 submodules: update to latest
1954 * submodules/autoconf: Use latest upstream Autoconf.
1955
1956 2009-04-06 Eric Blake <ebb9@byu.net>
1957
1958 Work around autoconf 2.63b bug in testsuite.
1959 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
1960 autoconf bug related to # in test.
1961
1962 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1963
1964 * NEWS (2.5): New section. Describe new -D/--define feature.
1965
1966 2009-04-06 Akim Demaille <demaille@gostai.com>
1967
1968 Regen.
1969 * src/parse-gram.h, src/parse-gram.c: Regen.
1970
1971 2009-04-06 Akim Demaille <demaille@gostai.com>
1972
1973 rename muscle_tab.* as muscle-tab.* for consistency.
1974 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
1975 * src/muscle-tab.h, src/muscle-tab.c: these.
1976 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
1977 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
1978
1979 2009-04-06 Akim Demaille <demaille@gostai.com>
1980
1981 Makefile: introduce $(BISON).
1982 * src/local.mk (BISON): New.
1983 (YACC): Use it.
1984
1985 2009-04-06 Akim Demaille <demaille@gostai.com>
1986
1987 parser: handle %locations as %define locations.
1988 * src/getargs.h, src/getargs.c (locations_flag): Remove.
1989 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
1990 to set "locations" to true.
1991 * src/output.c (prepare): Don't output "locations".
1992 * src/scan-gram.l (%locations): Handle it as a %<flag>.
1993 * src/parse-gram.y: It's no longer a token.
1994 Don't handle it.
1995 * data/bison.m4 (b4_locations_if): Define it with
1996 b4_percent_define_if_define.
1997 * data/c.m4, data/glr.cc: Adjust.
1998
1999 2009-04-06 Akim Demaille <demaille@gostai.com>
2000
2001 Regen.
2002 * src/parse-gram.c: Regen.
2003
2004 2009-04-06 Akim Demaille <demaille@gostai.com>
2005
2006 muscle: factor the handling of obsolete of obsolete directives.
2007 Suggested by Joel E. Denny.
2008
2009 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
2010 New, extracted from...
2011 * src/parse-gram.y (prologue_declaration: pure-parser): here.
2012 Remove it.
2013 (prologue_declaration: "%<flag>"): Use
2014 muscle_percent_define_ensure.
2015 (%error-verbose, %pure-parser): No longer tokens.
2016 * src/scan-gram.l (pure-parser): Return as a %<flag>.
2017
2018 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2019
2020 Fix options documentation.
2021 * build-aux/cross-options.pl: As in --help output, write optional
2022 arguments as [=ARG] not =[ARG].
2023 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
2024
2025 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2026
2027 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
2028 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
2029 requirements for a correct m4 are stricter.
2030 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
2031 * configure.ac: Update to use AC_PROG_GNU_M4.
2032 Reported by Eric Blake.
2033
2034 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2035
2036 Help with updating web manual.
2037 * HACKING: Incorporate instructions from gnulib/doc/README.
2038 * bootstrap.conf (gnulib_modules): Add gendocs.
2039
2040 2009-04-03 Akim Demaille <demaille@gostai.com>
2041
2042 Regen.
2043 * src/parse-gram.h, src/parse-gram.c: Regen.
2044
2045 2009-04-03 Akim Demaille <demaille@gostai.com>
2046
2047 Factor %FLAG at scan level.
2048 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
2049 definitions and associated rules, replaced by....
2050 (PERCENT_FLAG): this new token type, and rule.
2051 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
2052 Use it for %debug and %error-verbose.
2053
2054 2009-04-03 Akim Demaille <demaille@gostai.com>
2055
2056 Regen.
2057 * src/parse-gram.h, src/parse-gram.c: Regen.
2058
2059 2009-04-03 Akim Demaille <demaille@gostai.com>
2060
2061 Treat %debug as %define debug.
2062 * data/bison.m4 (b4_debug_if): New.
2063 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
2064 * data/lalr1.java: Use it instead of b4_debug_flag.
2065 * src/getargs.h, src/getargs.c (debug_flag): Remove.
2066 * src/output.c (prepare): Don't output it.
2067 * src/parse-gram.y: Treat %debug as %define debug.
2068
2069 2009-04-03 Akim Demaille <demaille@gostai.com>
2070
2071 Treat %error-verbose as %define error_verbose.
2072 This allows to pass -Derror_verbose on the command line. Better
2073 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
2074 ERROR_VERBOSE being defined as false or true.
2075 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
2076 on b4_percent_define_ifdef, for does not check the defined value,
2077 but only whether the symbol is defined, rely on
2078 b4_percent_define_flag_if, so that a value of "false" is processed
2079 as a false.
2080 If not defined, define the flag to "false".
2081 (b4_error_verbose_if): New.
2082 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
2083 b4_error_verbose_flag.
2084 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
2085 * src/output.c (prepare): Don't output it.
2086 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
2087
2088 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2089
2090 Fix strange %define locations for default values.
2091 Reported by Akim Demaille at
2092 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
2093 and discussed again starting at
2094 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
2095 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
2096 because location information is bogus.
2097 Use angle brackets to delimit fake file name because square brackets
2098 look like underexpanded m4. Choose a better fake file name.
2099 Use negative line numbers.
2100 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
2101 * src/location.c (location_print): If line for a boundary is negative,
2102 only print that boundary's file name.
2103 * src/location.h: Document that.
2104 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2105 defaults): Update output.
2106
2107 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2108
2109 Pacify ./configure --enable-gcc-warnings.
2110 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
2111 in lib won't compile with it.
2112 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
2113
2114 2009-03-31 Akim Demaille <demaille@gostai.com>
2115
2116 bootstrap: --help to stdout.
2117 * bootstrap (usage): Don't send --help to stderr.
2118 Use a here doc instead of a long string.
2119
2120 2009-03-31 Akim Demaille <demaille@gostai.com>
2121
2122 bootstrap: README-hacking no longer exists
2123 * bootstrap (checkout_only_file): Set to HACKING.
2124
2125 2009-03-26 Akim Demaille <demaille@gostai.com>
2126
2127 doc: merge HACKING and README-hacking.
2128 Two files is confusing.
2129 Reported by Alexandre Duret-Lutz.
2130
2131 * README-hacking: Merge into...
2132 * HACKING (Working from the repository): here.
2133
2134 2009-03-26 Akim Demaille <demaille@gostai.com>
2135
2136 doc: update README-hacking.
2137 * README-hacking: We now use git and git submodules.
2138 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
2139
2140 2009-03-26 Akim Demaille <demaille@gostai.com>
2141
2142 lalr1.cc: avoid GCC 4.3 warnings.
2143 GCC 4.3 now warns about "a || b && c" and asks for explicit
2144 parentheses.
2145 Reported by Alexandre Duret-Lutz.
2146 * data/location.cc: Update copyright years.
2147 (Position::operator==): Use parens to make precedence explicit.
2148 Compare lines and columns first, as they are more likely to be
2149 different, and they are faster to compare.
2150
2151 2009-03-26 Akim Demaille <demaille@gostai.com>
2152
2153 gnulib: update.
2154 * gnulib: Update to latest.
2155 * src/local.mk (AM_CFLAGS): Move to...
2156 * Makefile.am: here.
2157 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
2158 AM_CFLAGS.
2159
2160 2009-03-02 Akim Demaille <demaille@gostai.com>
2161
2162 Comment changes.
2163
2164 2009-03-02 Akim Demaille <demaille@gostai.com>
2165
2166 Share b4_yytranslate_define.
2167 * data/lalr1.cc (b4_yytranslate_define): Move to...
2168 * data/c++.m4: here.
2169
2170 2009-03-02 Akim Demaille <demaille@gostai.com>
2171
2172 Use locations in the variant example.
2173 Yes, this obfuscates the point of this example, variants only.
2174 But glr.cc cannot work (yet?) without locations. This change
2175 makes it easier to use this example with glr.cc.
2176
2177 * examples/variant.yy (assert): %define it.
2178 (locations): Request them.
2179 (yylex): Bind the location to the stage.
2180
2181 2009-03-02 Akim Demaille <demaille@gostai.com>
2182
2183 Dub make_TOKEN as a public type interface.
2184 * data/c++.m4 (b4_symbol_constructor_declare)
2185 (b4_symbol_constructor_define): New empty stubs.
2186 (b4_public_types_declare, b4_public_types_define): Use them.
2187 * data/lalr1.cc (b4_symbol_constructor_declare)
2188 (b4_symbol_constructor_declare_)
2189 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
2190 Move to...
2191 * data/variant.hh: here.
2192 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
2193 needed.
2194 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
2195 b4_symbol_constructor_declare, as it is now done by
2196 b4_public_types_define and b4_public_types_declare.
2197
2198 2009-03-02 Akim Demaille <demaille@gostai.com>
2199
2200 Coding style changes.
2201 * data/lalr1.cc (b4_symbol_constructor_declaration_)
2202 (b4_symbol_constructor_declarations)
2203 (b4_symbol_constructor_definition_)
2204 (b4_symbol_constructor_definitions)
2205 (b4_yytranslate_definition): Rename as...
2206 (b4_symbol_constructor_declare_)
2207 (b4_symbol_constructor_declare)
2208 (b4_symbol_constructor_define_)
2209 (b4_symbol_constructor_define)
2210 (b4_yytranslate_define): these.
2211 * data/variant.hh (b4_variant_definition): Rename as...
2212 (b4_variant_define): this.
2213
2214 2009-03-02 Akim Demaille <demaille@gostai.com>
2215
2216 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
2217 * data/bison.m4 (b4_percent_define_if_define): New.
2218 * data/c++.m4 (b4_variant_if): Move to...
2219 * data/bison.m4: Here, using b4_percent_define_if_define.
2220 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
2221 * data/bison.m4: Here, using b4_percent_define_if_define.
2222
2223 2009-03-02 Akim Demaille <demaille@gostai.com>
2224
2225 Dub symbol_type_base as a public type.
2226 * data/c++.m4 (b4_public_types_declare): Now define
2227 symbol_type_base and symbol_type.
2228 (b4_public_types_define): New.
2229 In both cases, the definitions are taken verbatim from lalr1.cc.
2230 * data/lalr1.cc: Adjust.
2231
2232 2009-03-02 Akim Demaille <demaille@gostai.com>
2233
2234 b4_public_types_declare.
2235 * data/c++.m4 (b4_public_types_declare): New.
2236 * data/glr.cc, data/lalr1.cc: Use it.
2237
2238 2009-03-02 Akim Demaille <demaille@gostai.com>
2239
2240 b4_semantic_type_declare.
2241 * data/c++.m4 (b4_semantic_type_declare): New.
2242 Factors and generalizes what was in glr.cc and lalr1.cc.
2243 * data/variant.hh (b4_semantic_type_declare): Redefine it for
2244 variants.
2245 * data/lalr1.cc, data/glr.cc: Use it.
2246
2247 2009-02-26 Akim Demaille <demaille@gostai.com>
2248
2249 Upgrade gnulib.
2250 * gnulib: Upgrade from master.
2251 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
2252 Regen.
2253
2254 2009-02-25 Akim Demaille <demaille@gostai.com>
2255
2256 Remove useless arguments.
2257 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
2258 relevant.
2259
2260 2009-02-25 Akim Demaille <demaille@gostai.com>
2261
2262 Comment changes.
2263 * data/lalr1.cc: here.
2264
2265 2009-02-25 Akim Demaille <demaille@gostai.com>
2266
2267 Fix glr.cc's debug level handling.
2268 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
2269 glr.c which is used.
2270 (debug_level, set_debug_level): Adjust.
2271
2272 2009-02-25 Akim Demaille <demaille@gostai.com>
2273
2274 Copyright years.
2275 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
2276
2277 2009-02-25 Akim Demaille <demaille@gostai.com>
2278
2279 Style changes.
2280 * etc/bench.pl.in (generate_grammar_list): Consitently use
2281 location_type, not yy::location.
2282
2283 2009-02-25 Akim Demaille <demaille@gostai.com>
2284
2285 Comment change.
2286 * data/lalr1.cc: here.
2287
2288 2009-02-19 Akim Demaille <demaille@gostai.com>
2289
2290 Make yyparser::error public.
2291 * data/lalr1.cc: here.
2292 There is no good reason to keep it private (and it is convenient
2293 to use it from the scanner for instance). It is already public in
2294 glr.cc.
2295
2296 2009-02-19 Akim Demaille <demaille@gostai.com>
2297
2298 Comment changes.
2299 * data/glr.cc: here.
2300
2301 2009-02-19 Akim Demaille <demaille@gostai.com>
2302
2303 Remove trailing blanks.
2304 The epilogue has its own ending \n, no need to add another.
2305
2306 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
2307 epilogue.
2308 * data/glr.cc: dnl when extending the epilogue.
2309 Remove stray "private:".
2310
2311 2009-02-19 Akim Demaille <demaille@gostai.com>
2312
2313 Use b4_c_modern.
2314 * data/c.m4 (b4_c_function_decl): Here.
2315
2316 2009-02-19 Akim Demaille <demaille@gostai.com>
2317
2318 Comment changes.
2319 * data/lalr1.cc: here.
2320
2321 2009-02-19 Akim Demaille <demaille@gostai.com>
2322
2323 Extract variant.hh
2324 * data/variant.hh: New, extracted from...
2325 * data/lalr1.cc: here.
2326 Adjust.
2327 * data/local.mk: Adjust.
2328
2329 2009-02-19 Akim Demaille <demaille@gostai.com>
2330
2331 Extract stack.hh from lalr1.cc.
2332 * data/stack.hh: New.
2333 * data/lalr1.cc: Extract from here.
2334 * data/local.mk: Adjust.
2335
2336 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
2337
2338 Add reminder about uploading public key to keys.gnupg.net.
2339 * HACKING (Release Procedure): Here.
2340
2341 2009-01-28 Akim Demaille <demaille@gostai.com>
2342
2343 * NEWS: Update information about 2.4.1 and 2.4.2.
2344
2345 2008-11-04 Akim Demaille <demaille@gostai.com>
2346
2347 Reformat NEWS.
2348 * NEWS: Use more outline-mode markup.
2349 Suggested by Jim Meyering.
2350
2351 2009-01-08 Akim Demaille <demaille@gostai.com>
2352
2353 Fix grep portability issues.
2354 Grep on Solaris does not support -q.
2355 Reported by Summum Bonum.
2356
2357 * NEWS: Add a stub for 2.4.2.
2358 * THANKS: Add Summum Bonum.
2359 * tests/atlocal.in (EGREP): New.
2360 (CC, CXX, XSLTPROC): Make it possible to override them via
2361 envvars.
2362 * tests/java.at: Use $EGREP instead of egrep.
2363 Use AT_CHECK's ignore instead of grep's -q.
2364
2365 2008-12-11 Akim Demaille <demaille@gostai.com>
2366
2367 Pass the token type to yysyntax_error.
2368 * data/yacc.c (yysyntax_error): Take the transated token instead
2369 of the raw number.
2370 Adjust callers.
2371 * TODO: Update.
2372
2373 2008-12-11 Akim Demaille <demaille@gostai.com>
2374
2375 Formatting changes.
2376 * data/glr.c: Formatting changes.
2377
2378 2008-12-11 Akim Demaille <demaille@gostai.com>
2379
2380 Propagate i18n changes into glr.c.
2381 * TODO: Update.
2382 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
2383 building the error message format dynamically.
2384 * data/lalr1.java: Formatting changes.
2385
2386 2008-12-11 Akim Demaille <demaille@gostai.com>
2387
2388 Use testsuite -C.
2389 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
2390 Solves problems when top_srcdir is an absolute path.
2391 Suggested by Eric Blake.
2392 * configure.ac: Require Autoconf 2.62.
2393
2394 2008-12-11 Akim Demaille <demaille@gostai.com>
2395
2396 Simplify the i18n of the error messages.
2397 * data/lalr1.cc: Comment changes.
2398 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
2399 lalr1.cc instead of building dynamically the format string.
2400
2401 2008-12-08 Akim Demaille <demaille@gostai.com>
2402
2403 Fix portability issue in the test suite.
2404 * tests/local.at (AT_MATCHES_CHECK): New.
2405 Based on Perl instead of Sed. Sed has too many portability
2406 pitfalls, not ever Sed is GNU Sed.
2407 * tests/actions.at (Fix user actions without a trailing semicolon):
2408 Use it.
2409
2410 2008-12-08 Akim Demaille <demaille@gostai.com>
2411
2412 Update data/README.
2413 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
2414
2415 2008-12-08 Akim Demaille <demaille@gostai.com>
2416
2417 Install autoconf as a submodule to get m4sugar.
2418 * .gitmodules: Add submodules/autoconf.
2419 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
2420 submodules/autoconf.
2421
2422 2008-12-08 Akim Demaille <demaille@gostai.com>
2423
2424 Test token.prefix in all the skeletons.
2425 * data/java.m4 (b4_token_enum): Use the token.prefix.
2426 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
2427 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
2428 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
2429 * tests/java.at: Comment changes.
2430 (AT_CHECK_JAVA_MINIMAL): Define the END token.
2431 (Java parser class and package names): Add token.prefix check.
2432
2433 2008-12-08 Akim Demaille <demaille@gostai.com>
2434
2435 Fix regeneration of atconfig.
2436 * tests/local.mk (tests/atconfig): The rule was incorrect, but
2437 remove it: now that there is no tests/Makefile.am, the top-level
2438 Makefile properly updates atconfig when needed.
2439
2440 2008-12-07 Di-an Jan <dianj@freeshell.org>
2441
2442 Implement the FIXME that ends an user action with a semicolon
2443 if it seems necessary.
2444 * src/scan-code.l (flex rules section): Flag cpp directive from
2445 any `#' to the first unescaped end-of-line. Semicolon is not
2446 needed after `;', `{', '}', or cpp directives and is needed after
2447 any other token (whitespaces and comments have no effect).
2448 * tests/actions.at (Fix user actions without a trailing semicolon):
2449 New test.
2450 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
2451 to make user actions complete statements.
2452 Adjust column numbers in error messages.
2453 * tests/regression.at (Fix user actions without a trailing semicolon):
2454 Remove. Covered by new test.
2455
2456 2008-12-07 Akim Demaille <demaille@gostai.com>
2457
2458 Update gnulib.
2459 * gnulib: Update from master.
2460
2461 2008-12-05 Eric Blake <ebb9@byu.net>
2462
2463 Avoid compiler warning.
2464 * src/output.c (muscle_insert_item_number_table): Delete unused
2465 function.
2466
2467 2008-12-02 Eric Blake <ebb9@byu.net>
2468
2469 Build testsuite with newer autoconf.
2470 * tests/output.at (m4_expand): Don't override in newer autoconf,
2471 where the underlying implementation changed.
2472 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
2473 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
2474 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
2475 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
2476 since some of them contain unbalanced ')'.
2477
2478 2008-12-01 Akim Demaille <demaille@gostai.com>
2479
2480 Use b4_symbol for printers and destructors everywhere.
2481 * data/bison.m4 (b4_symbol_action_location): New.
2482 * data/c.m4 (b4_symbol_actions): Remove.
2483 Adjust all callers to use by b4_symbol_foreach and the corresponding
2484 b4_symbol_printer/destructor macro.
2485 * data/glr.cc: Adjust.
2486 * data/lalr1.java: Adjust the %destructor sanity check.
2487 * src/output.c (symbol_code_props_output): Remove, we no longer
2488 need the b4_symbol_printers/destructors tables.
2489
2490 2008-12-01 Akim Demaille <demaille@gostai.com>
2491
2492 Use b4_symbol_case_.
2493 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
2494 b4_symbol_case_.
2495
2496 2008-12-01 Akim Demaille <demaille@gostai.com>
2497
2498 Move b4_symbol based macro to bison.m4.
2499 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
2500 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
2501 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
2502 (b4_type_foreach): Move to...
2503 * data/bison.m4: Here.
2504 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
2505 b4_symbol_value_template instead of b4_symbol_value.
2506
2507 2008-12-01 Akim Demaille <demaille@gostai.com>
2508
2509 b4_symbol/type_foreach.
2510 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
2511 Use them.
2512
2513 2008-12-01 Akim Demaille <demaille@gostai.com>
2514
2515 Use the symbol properties to output the printer/destructor for lalr1.cc.
2516 Instead of defining complex list of tuples to define various
2517 properties of the symbols, we now prefer to define symbols as
2518 "structs" in m4: using the symbol key (its number), and the
2519 property name, b4_symbol gives it value. Use this to handle
2520 destructors and printers.
2521
2522 * src/output.c (CODE_PROP): New.
2523 (prepare_symbol_definitions): Use it to define the printer and
2524 destructor related attributes of the symbols.
2525 * data/lalr1.cc (b4_symbol_actions): Rename as...
2526 (b4_symbol_action): this.
2527 Use b4_symbol instead of 6 arguments.
2528 (b4_symbol_printer, b4_symbol_destructor): New.
2529 Use them instead of b4_symbol_actions.
2530
2531 2008-12-01 Akim Demaille <demaille@gostai.com>
2532
2533 Avoid capturing variables too easily.
2534 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
2535 v__ and p__ instead of v and p.
2536
2537 2008-12-01 Akim Demaille <demaille@gostai.com>
2538
2539 Remove spurious empty line before syncline.
2540 * data/bison.m4 (b4_syncline): Don't output an empty line before
2541 the output.
2542
2543 2008-11-26 Akim Demaille <demaille@gostai.com>
2544
2545 Convert lib/Makefile.am into lib/local.mk.
2546 The real problem is rather gnulib.mk, which itself is extracted
2547 from a Makefile.am that gnulib expects to the "recursive". The
2548 tool prefix-gnulib-mk converts such a gnulib.mk to be
2549 non-recursive. Also, some AC_SUBST variables need to be adjusted.
2550
2551 * etc/prefix-gnulib-mk: New.
2552 * bootstrap (slurp): Use it to convert further gnulib.mk.
2553 No longer try to avoid re-creation of lib/gnulib.mk as the changes
2554 are deeper.
2555 * lib/Makefile.am: Rename as...
2556 * lib/local.mk: this.
2557 Adjust to be prefixed.
2558 * Makefile.am, configure.ac: Adjust.
2559 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
2560
2561 2008-11-26 Akim Demaille <demaille@gostai.com>
2562
2563 s/_FLAGS/FLAGS/.
2564 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
2565 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
2566 Reported by Eric Blake.
2567
2568 2008-11-26 Akim Demaille <demaille@gostai.com>
2569
2570 Use b4_parser_tables_define in glr.cc.
2571 * data/glr.c: Use b4_parser_tables_define instead of defining the
2572 (deterministic integral) tables by hand.
2573
2574 2008-11-26 Akim Demaille <demaille@gostai.com>
2575
2576 Use b4_parser_tables_define in Java.
2577 * data/java.m4 (b4_typed_parser_table): Rename as...
2578 (b4_typed_parser_table_define): this, for consistency.
2579 Accept a comment as $4.
2580 Move $2 into yy*_.
2581 (b4_integral_parser_table): Rename as...
2582 (b4_integral_parser_table_define): this.
2583 * data/lalr1.java: Adjust all uses.
2584 Use b4_parser_tables_define instead of generation by hand.
2585
2586 2008-11-26 Akim Demaille <demaille@gostai.com>
2587
2588 Prepare the convergence bw C style and Java table generation.
2589 * data/bison.m4 (b4_tables_map, b4_tables_declare)
2590 (b4_tables_define): Rename as...
2591 (b4_integral_parser_tables_map, b4_parser_tables_declare)
2592 (b4_parser_tables_define): these.
2593 * data/c.m4 (b4_table_define): Rename as...
2594 (b4_integral_parser_table_define): this.
2595 * data/lalr1.cc: Adjust.
2596 (b4_table_define, b4_table_declare): Rename as...
2597 (b4_integral_parser_table_define)
2598 (b4_integral_parser_table_declare): these.
2599 (yyrline_): Move the comment where it is actually used.
2600 * data/yacc.c: Adjust.
2601 (yyrline): Use b4_integral_parser_table_define.
2602
2603 2008-11-26 Akim Demaille <demaille@gostai.com>
2604
2605 Regen.
2606 * src/parse-gram.h, src/parse-gram.c: Regen.
2607
2608 2008-11-26 Akim Demaille <demaille@gostai.com>
2609
2610 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
2611 * data/lalr1.cc (b4_tables_map): Move to...
2612 * data/bison.m4: here.
2613 Update the comment for yytable during the flight.
2614 (b4_tables_declare, b4_tables_define): New.
2615 * data/lalr1.cc: Use them.
2616 * data/c.m4 (b4_table_define): New.
2617 * data/yacc.c: Use b4_tables_define instead of output the tables
2618 by hand.
2619 * tests/regression.at (Web2c Actions): Adjust the expected output,
2620 the order of the tables changed.
2621
2622 2008-11-26 Akim Demaille <demaille@gostai.com>
2623
2624 Get rid of (yy)rhs and (yy)prhs.
2625 These tables are no longer needed in the parsers, and they don't seem to
2626 be useful. They are not documented either.
2627
2628 * src/output.c (prepare_rules): Get rid of rhs and prhs.
2629 Adjust the computation of (yy)r2.
2630
2631 2008-11-26 Akim Demaille <demaille@gostai.com>
2632
2633 Rule length is unsigned.
2634 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
2635
2636 2008-11-26 Akim Demaille <demaille@gostai.com>
2637
2638 Get rid of lalr1-split.cc.
2639 It was no longer maintainer.
2640
2641 * data/lalr1-split.cc: Remove.
2642 * etc/bench.pl.in (bench_fusion_parser): Remove.
2643 Adjust.
2644
2645 2008-11-26 Akim Demaille <demaille@gostai.com>
2646
2647 Use yy* consistently.
2648 * data/glr.c: Now that yyrhs no longer exists as a global
2649 variable, rename local "rhs" variables into "yyrhs" for
2650 consistency.
2651
2652 2008-11-25 Akim Demaille <demaille@gostai.com>
2653
2654 Get rid of yyrhs and yyprhs in glr.c.
2655 * data/glr.c (yyrhs, yyprhs): Remove.
2656 Instead, use the state stack and yystos.
2657
2658 2008-11-25 Akim Demaille <demaille@gostai.com>
2659
2660 Flag glr tests.
2661 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
2662 as an Autotest keyword.
2663
2664 2008-11-25 Akim Demaille <demaille@gostai.com>
2665
2666 Prefer TESTSUITE_FLAGS.
2667 TESTSUITEFLAGS is barely readable.
2668
2669 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
2670 for backward compatibility.
2671 Use the former instead of the latter.
2672
2673 2008-11-25 Akim Demaille <demaille@gostai.com>
2674
2675 Get rid of yyrhs and yyprhs in larl1.java.
2676 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
2677 (yy_reduce_print): Rather, use yystos_ and the state stack.
2678
2679 2008-11-25 Akim Demaille <demaille@gostai.com>
2680
2681 Formatting changes.
2682
2683 2008-11-25 Akim Demaille <demaille@gostai.com>
2684
2685 Get rid of yyrhs and yyprhs in yacc.c.
2686 They were used to get the symbol types, given a rule number, when
2687 displaying the top of the stack before a reduction. But the
2688 symbol type is available from the state stack. This has two be
2689 benefits: two tables less in the parser (making it smaller), and a
2690 more consistent use of the three stacks which will help to fuse
2691 them.
2692
2693 * data/yacc.c (yyprhs, yyrhs): Remove.
2694 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
2695 (yy_reduce_print): Take yyssp as argument.
2696 Use it, together with yystos, to get the symbol type.
2697 * tests/regression.at (Web2c Report): Remove these tables from the
2698 expected output.
2699
2700 2008-11-25 Akim Demaille <demaille@gostai.com>
2701
2702 b4_tables_map.
2703 The point is to factor the generation of the tables across skeletons.
2704 This is language dependant.
2705
2706 * data/c.m4 (b4_comment_): New.
2707 Should be usable to define how to generate tables independently of
2708 the language.
2709 (b4_c_comment): New.
2710 (b4_comment): Bounce to b4_c_comment.
2711 Now support $2 = [PREFIX] for indentation.
2712 * data/lalr1.cc (b4_table_declare): Don't output a comment if
2713 there is no comment.
2714 Indent it properly when there is one.
2715 Output the ending semicolon.
2716 (b4_table_define): Space changes.
2717 Output the ending semicolon.
2718 (b4_tables_map): New.
2719 Use it twice instead of declaring and defining the (integral)
2720 tables by hand.
2721
2722 2008-11-25 Akim Demaille <demaille@gostai.com>
2723
2724 b4_table_declare.
2725 * data/lalr1.cc (b4_table_declare): New.
2726 Use it to declare the tables defined with b4_table_define.
2727 (b4_table_define): Declare a third arg to match b4_table_declare
2728 signature.
2729 Move all the comments around invocations of b4_table_define into
2730 the invocations itselves.
2731 Move things around to have the order for declarations and
2732 definitions.
2733
2734 2008-11-25 Akim Demaille <demaille@gostai.com>
2735
2736 Formatting changes.
2737 * data/lalr1.java: here.
2738
2739 2008-11-25 Akim Demaille <demaille@gostai.com>
2740
2741 b4_args is more general than only C++.
2742 * data/lalr1.cc (b4_args, _b4_args): Move to...
2743 * data/bison.m4: here.
2744
2745 2008-11-21 Di-an Jan <dianj@freeshell.org>
2746
2747 Implement no-XXX arguments for --warnings, --report, --trace.
2748 * src/getargs.c (flags_argmatch): Handles no-XXX.
2749 Fix typo in doxygen comment.
2750
2751 2008-11-21 Akim Demaille <demaille@gostai.com>
2752
2753 Display the changes in cross-options.texi.
2754 * build-aux/cross-options.pl ($sep): New, to separate items.
2755 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
2756 changes.
2757
2758 2008-11-20 Di-an Jan <dianj@freeshell.org>
2759
2760 Improves options in the manual.
2761 * doc/bison.texinfo (-g, -x): Add space before argument.
2762 (Option Cross Key): Implement FIXME: listing directives also.
2763 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2764 (Short Option): Special case -d. Put arguments inside @option.
2765 (Bison Directive): Add column, automatically extracted from
2766 src/scan-gram.l (actual name passed as the first argument)
2767 with special case for %define.
2768 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
2769 to build-aux/cross-options.pl.
2770 * src/getargs.c (usage): Document limitations of cross-options.pl.
2771 * src/scan-gram.l: Likewise.
2772
2773 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2774
2775 Fix unexpanded macros in GLR defines file.
2776 Reported by Csaba Raduly at
2777 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
2778 * THANKS (Csaba Raduly): Add.
2779 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
2780 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
2781 lexer in a separate module that includes the defines file.
2782 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
2783 source.
2784 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
2785 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
2786 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
2787 (AT_DATA_SOURCE_PROLOGUE): New.
2788 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
2789 (AT_DATA_SOURCE): New.
2790 (AT_FULL_COMPILE): Extend to support an additional source file.
2791
2792 2008-11-18 Akim Demaille <demaille@gostai.com>
2793
2794 More TODO.
2795 * TODO: More short term issues.
2796
2797 2008-11-18 Akim Demaille <demaille@gostai.com>
2798
2799 Regen.
2800 * src/parse-gram.h, src/parse-gram.c: Regen.
2801
2802 2008-11-18 Akim Demaille <demaille@gostai.com>
2803
2804 Use b4_subtract where possible.
2805 * data/lalr1.cc (b4_subtract): Move to...
2806 * data/bison.m4: here.
2807 * data/glr.c (b4_rhs_data): Use it.
2808 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
2809
2810 2008-11-18 Akim Demaille <demaille@gostai.com>
2811
2812 Remove incorrect mode specification.
2813 * data/glr.cc: Don't pretend it's C code.
2814
2815 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2816
2817 Simplify last patch slightly.
2818 * src/getargs.c (getargs): Here.
2819
2820 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2821
2822 Fix last warning from --enable-gcc-warnings.
2823 * src/getargs.c (getargs): Don't assign const address to non-const
2824 pointer.
2825
2826 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2827
2828 Don't let maintainer-*-check targets force a version update.
2829 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
2830 handled.
2831
2832 2008-11-17 Di-an Jan <dianj@freeshell.org>
2833
2834 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
2835 Align menus. Adjust word wrapping. Use node names for menu names.
2836 (Examples): Don't abbreviate node names.
2837 (LocalWords): Remove abbreviations.
2838 (Copying): Make description a sentence.
2839 (Java Action Features): Remove period to match the rest of menu.
2840
2841 2008-11-17 Di-an Jan <dianj@freeshell.org>
2842
2843 Handles several --enable-gcc-warnings.
2844 * src/getargs.c (command_line_location): Set parameters to void.
2845 * src/output.c (symbol_type_name_cmp): Make static.
2846 (symbols_by_type_name): Set parameters to void.
2847 (symbol_definitions_output): Remove unused parameter. Rename as...
2848 (prepare_symbol_definitions): this.
2849 (muscles_output): Move symbol_definitions_output to...
2850 (output): here as prepare_symbol_definitions.
2851 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
2852 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
2853
2854 2008-11-17 Di-an Jan <dianj@freeshell.org>
2855
2856 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
2857 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
2858
2859 2008-11-16 Akim Demaille <demaille@gostai.com>
2860
2861 Add missing $(EXEEXT).
2862 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
2863 "src/bison$(EXEEXT)".
2864 Reported by Di-an Jan.
2865
2866 2008-11-15 Akim Demaille <demaille@gostai.com>
2867
2868 * TODO: Update.
2869
2870 2008-11-15 Akim Demaille <demaille@gostai.com>
2871
2872 Formatting changes.
2873 * tests/input.at: here.
2874
2875 2008-11-15 Akim Demaille <demaille@gostai.com>
2876
2877 Remove duplicate header inclusion.
2878 * src/LR0.c: here.
2879
2880 2008-11-15 Akim Demaille <demaille@gostai.com>
2881
2882 * src/parse-gram.h, src/parse-gram.c: Regen.
2883
2884 2008-11-15 Akim Demaille <demaille@gostai.com>
2885
2886 Support parametric types.
2887
2888 There are two issues to handle: first scanning nested angle
2889 bracket pairs to support types such as std::pair< std::string,
2890 std::list<std::string> > >.
2891
2892 Another issue is to address idiosyncracies of C++: do not glue two
2893 closing angle brackets together (otherwise it's operator>>), and
2894 avoid sticking blindly a TYPE to the opening <, as it can result
2895 in '<:' which is a digraph for '['.
2896
2897 * src/scan-gram.l (brace_level): Rename as...
2898 (nesting): this.
2899 (SC_TAG): New.
2900 Implement support for complex tags.
2901 (tag): Accept
2902 , but not <.
2903 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
2904 (b4_symbol_variant): Leave space around types as parameters.
2905 * examples/variant.yy: Use nested template types and leading ::.
2906 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
2907 Rename as...
2908 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
2909 * tests/c++.at: Test parametric types.
2910
2911 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2912
2913 Test token.prefix.
2914 This is not sufficient, but we test at least that the make_SYMBOL
2915 interface is not affected by token.prefix. A more general test
2916 will be implemented when the support of token.prefix is generalized
2917 to more skeletons.
2918
2919 * tests/c++.at: One more variant test, using token.prefix.
2920
2921 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2922
2923 Test the make_TOKEN interface.
2924 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
2925 Factor the common code in yylex.
2926 Use it to test "%define lex_symbol".
2927
2928 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2929
2930 Formatting change.
2931
2932 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2933
2934 Simplify code for variants bench marks.
2935 * etc/bench.pl.in (&generate_grammar_list): Define and use
2936 location_type.
2937 Factor the common code in yylex.
2938
2939 2008-11-15 Akim Demaille <demaille@gostai.com>
2940
2941 Better error message.
2942 * bootstrap (find_tool): Fix the error message.
2943
2944 2008-11-15 Akim Demaille <demaille@gostai.com>
2945
2946 Update variant.yy to newest interface.
2947 * examples/variant.yy: Define lex_symbol.
2948 Adjust.
2949
2950 2008-11-15 Akim Demaille <demaille@gostai.com>
2951
2952 Don't use locations in variant.yy.
2953 * examples/variant.yy: Adjust to not using locations.
2954
2955 2008-11-15 Akim Demaille <demaille@gostai.com>
2956
2957 Comment changes.
2958 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
2959 comments for the license.
2960
2961 2008-11-15 Akim Demaille <demaille@gostai.com>
2962
2963 Remove tests/Makefile.am.
2964 * tests/Makefile.am: Rename as...
2965 * tests/local.mk: this.
2966 * Makefile.am, configure.ac: Adjust.
2967 * Makefile.am (DISTCLEANFILES): Define.
2968 (maintainer-check, maintainer-xml-check, maintainer-push-check):
2969 Remove, we no longer need to bounce to the real targets.
2970
2971 2008-11-15 Akim Demaille <demaille@gostai.com>
2972
2973 Comment changes.
2974
2975 2008-11-15 Akim Demaille <demaille@gostai.com>
2976
2977 djgpp/local.mk.
2978 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
2979 * djgpp/local.mk: this new file.
2980
2981 2008-11-15 Akim Demaille <demaille@gostai.com>
2982
2983 Remove doc/Makefile.am.
2984 * doc/Makefile.am: Rename as...
2985 * doc/local.mk: this.
2986 Adjust paths
2987 * Makefile.am, configure.ac: Adjust.
2988 * Makefile.am (MOSTLYCLEANFILES): New.
2989 * src/local.mk: Adjust.
2990
2991 2008-11-15 Akim Demaille <demaille@gostai.com>
2992
2993 Move sc_tight_scope into maint.mk.
2994 It does not work, and I don't know how it was supposed to work: it
2995 seems to be looking for sources in the build tree. I just moved
2996 it at a better place, fixing it is still required.
2997
2998 * src/local.mk (echo): Remove.
2999 (sc_tight_scope): Move to...
3000 * maint.mk: here.
3001
3002 2008-11-15 Akim Demaille <demaille@gostai.com>
3003
3004 Regen.
3005 * src/parse-gram.h, src/parse-gram.h: Regen.
3006
3007 2008-11-15 Akim Demaille <demaille@gostai.com>
3008
3009 Remove src/Makefile.am.
3010 * src/Makefile.am: Rename as...
3011 * src/local.mk: this.
3012 Prefix all the paths with src/.
3013 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
3014 (AM_CPPFLAGS): Find find in builddir/src.
3015 (YACC): Move the flags into...
3016 (AM_YFLAGS): here.
3017 * maint.mk (sc_tight_scope): Disable.
3018 It used to bounce to the version in src/Makefile.am which is now
3019 part of this very Makefile.
3020 * Makefile.am, configure.ac: Adjust.
3021 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
3022 include "..." to find files "here": we are no longer in src/, so
3023 qualify the includes with src/.
3024 * doc/Makefile.am (PREPATH): No longer include the top_builddir
3025 prefix.
3026 (.x.1): Adjust to be able to create src/foo from the top level
3027 Makefile, instead of going bounce to src/Makefile the creation of
3028 foo.
3029
3030 2008-11-15 Akim Demaille <demaille@gostai.com>
3031
3032 Remove useless variable.
3033 * doc/Makefile.am (srcsrcdir): Remove.
3034
3035 2008-11-15 Akim Demaille <demaille@gostai.com>
3036
3037 Remove data/Makefile.am.
3038 * data/Makefile.am: Rename as...
3039 * data/local.mk: this.
3040 Adjust paths.
3041 * Makefile.am, configure.ac: Adjust.
3042
3043 2008-11-15 Akim Demaille <demaille@gostai.com>
3044
3045 Remove etc/Makefile.am.
3046 * etc/Makefile.am: Rename as...
3047 * etc/local.mk: this.
3048 Adjust.
3049 * Makefile.am, configure.ac: Adjust.
3050
3051 2008-11-15 Akim Demaille <demaille@gostai.com>
3052
3053 Remove examples/local.mk.
3054 examples/calc++/Makefile.am might be interesting to keep as is, since
3055 it is an example in itself.
3056
3057 * examples/Makefile.am: Rename as...
3058 * examples/local.mk: this.
3059 Adjust.
3060 * Makefile.am, configure.ac: Adjust.
3061
3062 2008-11-15 Akim Demaille <demaille@gostai.com>
3063
3064 Remove build-aux/Makefile.am.
3065 Recursive Makefiles are really way too slow, let's get rid of some of
3066 them.
3067
3068 * build-aux/Makefile.am: Rename as...
3069 * build-aux/local.mk: this.
3070 Adjust paths.
3071 * Makefile.am, configure.ac: Adjust.
3072
3073 2008-11-15 Akim Demaille <demaille@gostai.com>
3074
3075 Provide convenience constructors for locations and positions.
3076 * data/location.cc (position::position): Accept file, line and
3077 column as arguments with default values.
3078 Always qualify initial line and column literals as unsigned.
3079 (location::location): Provide convenience constructors.
3080
3081 2008-11-15 Akim Demaille <demaille@gostai.com>
3082
3083 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
3084 token type.
3085 Using template buys us nothing, and makes it uselessly complex to
3086 construct a symbol. Besides, it could not be generalized to other
3087 languages, while make_FOO would work in C/Java etc.
3088
3089 * data/lalr1.cc (b4_symbol_): New.
3090 (b4_symbol): Use it.
3091 (b4_symbol_constructor_declaration_)
3092 (b4_symbol_constructor_definition_): Instead of generating
3093 specializations of an overloaded template function, just generate
3094 several functions whose names are forged from the token names
3095 without the token.prefix.
3096 (b4_symbol_constructor_declarations): Generate them for all the
3097 symbols, not just by class of symbol type, now that instead of
3098 specializing a function template by the token, we generate a
3099 function named after the token.
3100 (b4_symbol_constructor_specialization_)
3101 (b4_symbol_constructor_specializations): Remove.
3102 * etc/bench.pl.in: Adjust to this new API.
3103
3104 2008-11-13 Akim Demaille <demaille@gostai.com>
3105
3106 %define token.prefix.
3107 Provide a means to add a prefix to the name of the tokens as
3108 output in the generated files. Because of name clashes, it is
3109 good to have such a prefix such as TOK_ that protects from names
3110 such as EOF, FILE etc. But it clutters the grammar itself.
3111
3112 * data/bison.m4 (token.prefix): Empty by default.
3113 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
3114 * data/lalr1.cc (b4_symbol): Ditto.
3115
3116 2008-11-13 Akim Demaille <demaille@gostai.com>
3117
3118 Compute at M4 time some of the subtractions.
3119 * data/lalr1.cc (b4_subtract): New.
3120 (b4_rhs_data): Use it.
3121
3122 2008-11-13 Akim Demaille <demaille@gostai.com>
3123
3124 symbol::token.
3125 This allows the user to get the type of a token returned by yylex.
3126
3127 * data/lalr1.cc (symbol::token): New.
3128 (yytoknum_): Define when %define lex_symbol, independently of
3129 %debug.
3130 (yytoken_number_): Move into...
3131 (symbol::token): here, since that's the only use.
3132 The other one is YYPRINT which was not officially supported
3133 by lalr1.cc, and anyway it did not work since YYPRINT uses this
3134 array under a different name (yytoknum).
3135
3136 2008-11-13 Akim Demaille <demaille@gostai.com>
3137
3138 YYERRCODE.
3139 * TODO (YYERRCODE): Mention the case of $undef.
3140
3141 2008-11-13 Akim Demaille <demaille@gostai.com>
3142
3143 TODO: YYPRINT.
3144 * TODO (YYPRINT): New.
3145
3146 2008-11-13 Akim Demaille <demaille@gostai.com>
3147
3148 Comment changes.
3149 * data/lalr1.cc, data/yacc.c: Fix the description of the
3150 yytranslate and yytoknum tables.
3151
3152 2008-11-13 Akim Demaille <demaille@gostai.com>
3153
3154 Define make_symbol in the header.
3155 To reach good performances these functions should be inlined (yet
3156 this is to measure precisely). To this end they must be available
3157 to the caller.
3158
3159 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
3160 location_type with the class name.
3161 Since will now be output in the header, declare "inline".
3162 No longer use b4_symbol_constructor_specializations, but
3163 b4_symbol_constructor_definitions in the header.
3164 Don't call it in the *.cc file.
3165
3166 2008-11-13 Akim Demaille <demaille@gostai.com>
3167
3168 Define yytranslate in the header for lex_symbol.
3169 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
3170 into the header file when using %define lex_symbol.
3171 (yytranslate_): Declare inline.
3172
3173 2008-11-13 Akim Demaille <demaille@gostai.com>
3174
3175 Define the constructors of symbol_type in
3176 b4_symbol_constructor_definitions.
3177 The constructors are called by the make_symbol functions, which a
3178 forthcoming patch will move elsewhere. Hence the interest of
3179 putting them together.
3180
3181 The stack_symbol_type does not need to be moved, it is used only
3182 by the parser.
3183
3184 * data/lalr1.cc: Move symbol_type and symbol_base_type
3185 constructors into...
3186 (b4_symbol_constructor_definitions): here.
3187 Adjust.
3188
3189 2008-11-13 Akim Demaille <demaille@gostai.com>
3190
3191 Make it easier to move the definition of yytranslate_.
3192 Forthcoming changes will make it possible to use yytranslate_
3193 from outside the parser implementation file.
3194
3195 * data/lalr1.cc (b4_yytranslate_definition): New.
3196 Use it.
3197
3198 2008-11-13 Akim Demaille <demaille@gostai.com>
3199
3200 Remove useless class specification.
3201 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
3202 to refer to the class name to use a type defined by the class for
3203 arguments of member functions.
3204
3205 2008-11-13 Akim Demaille <demaille@gostai.com>
3206
3207 Finer input type for yytranslate.
3208 This patch is debatable: the tradition expects yylex to return an int
3209 which happens to correspond to token_number (which is an enum). This
3210 allows for instance to return characters (such as '*' etc.). But this
3211 goes against the stronger typing I am trying to have with the new
3212 lex interface which return a symbol_type. So in this case, feed
3213 yytranslate_ with a token_type.
3214
3215 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
3216 expect a token_type.
3217
3218 2008-11-13 Akim Demaille <demaille@gostai.com>
3219
3220 Honor lex-params in %define lex_symbol mode.
3221 * data/lalr1.cc: Use b4_lex_param.
3222
3223 2008-11-13 Akim Demaille <demaille@gostai.com>
3224
3225 Simplify names.
3226 * src/output.c (symbol_definitions_output): Rename symbol
3227 attributes type_name and has_type_name as type and has_type.
3228 * data/lalr1.cc: Adjust uses.
3229
3230 2008-11-13 Akim Demaille <demaille@gostai.com>
3231
3232 Use b4_type_names for the union type.
3233 The union used to compute the size of the variant used to iterate
3234 over the type of all the symbols, with a lot of redundancy. Now
3235 iterate over the lists of symbols having the same type-name.
3236
3237 * data/lalr1.cc (b4_char_sizeof_): New.
3238 (b4_char_sizeof): Use it.
3239 Adjust to be called with a list of numbers instead of a single
3240 number.
3241 Adjust its caller for new-line issues.
3242
3243 2008-11-13 Akim Demaille <demaille@gostai.com>
3244
3245 Define the "identifier" of a symbol.
3246 Symbols may have several string representations, for instance if
3247 they have an alias. What I call its "id" is a string that can be
3248 used as an identifier. May not exist.
3249
3250 Currently the symbols which have the "tag_is_id" flag set are
3251 those that don't have an alias. Look harder for the id.
3252
3253 * src/output.c (is_identifier): Move to...
3254 * src/symtab.c (is_identifier): here.
3255 * src/symtab.h, src/symtab.c (symbol_id_get): New.
3256 * src/output.c (symbol_definitions_output): Use it to define "id"
3257 and "has_id".
3258 Remove the definition of "tag_is_id".
3259 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
3260 "tag_is_id" were used to produce code.
3261 We still use "tag" for documentation.
3262
3263 2008-11-11 Akim Demaille <demaille@gostai.com>
3264
3265 Locations are no longer required by lalr1.cc.
3266 * data/lalr1.cc (_b4_args, b4_args): New.
3267 Adjust all uses of locations to make them optional.
3268 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
3269 (AT_CHECK_NAMESPACE): Check the use of locations.
3270 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
3271 without locations with lalr1.cc.
3272 Test these cases.
3273 * tests/output.at: Check lalr1.cc with and without location
3274 support.
3275 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
3276 Don't use locations.
3277
3278 2008-11-11 Akim Demaille <demaille@gostai.com>
3279
3280 AT_FULL_COMPILE.
3281 * tests/local.at (AT_FULL_COMPILE): New.
3282 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
3283
3284 2008-11-11 Akim Demaille <demaille@gostai.com>
3285
3286 Support parens in calc++.
3287 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
3288 * examples/calc++/test (run): Check the expected output.
3289 Adjust callers.
3290 Check parens too.
3291
3292 2008-11-11 Akim Demaille <demaille@gostai.com>
3293
3294 Simplify lalr1.cc since %defines is mandatory.
3295 * data/lalr1.cc: Remove useless calls to b4_defines_if.
3296
3297 2008-11-11 Akim Demaille <demaille@gostai.com>
3298
3299 TODO: yyfmt.
3300 * TODO (yysyntax_error): New item.
3301
3302 2008-11-11 Akim Demaille <demaille@gostai.com>
3303
3304 Prefer M4 to CPP.
3305 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
3306 YYERROR_VERBOSE.
3307
3308 2008-11-11 Akim Demaille <demaille@gostai.com>
3309
3310 Support i18n of the parse error messages.
3311 * TODO (lalr1.cc/I18n): Remove.
3312 * data/lalr1.cc (yysyntax_error_): Support the translation of the
3313 error messages, as done in yacc.c.
3314 Stay within the yy* pseudo namespace.
3315
3316 2008-11-11 Akim Demaille <demaille@gostai.com>
3317
3318 More TODO.
3319 * TODO (single stack, yysyntax_error): New.
3320
3321 2008-11-11 Akim Demaille <demaille@gostai.com>
3322
3323 Make it possible to return a symbol_type from yylex.
3324 * data/lalr1.cc (b4_lex_symbol_if): New.
3325 (parse): When lex_symbol is defined, expected yylex to return the
3326 complete lookahead.
3327 * etc/bench.pl.in (generate_grammar_list): Extend to support this
3328 yylex interface.
3329 (bench_variant_parser): Exercise it.
3330
3331 2008-11-11 Akim Demaille <demaille@gostai.com>
3332
3333 Remove useless bench case.
3334 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
3335 no longer used.
3336
3337 2008-11-11 Akim Demaille <demaille@gostai.com>
3338
3339 Improve display of directives.
3340 * etc/bench.pl.in (parse_term): Don't add useless eol.
3341
3342 2008-11-11 Akim Demaille <demaille@gostai.com>
3343
3344 Use string_cast in the bench.
3345 * etc/bench.pl.in (generate_grammar_list): Define and use
3346 string_cast.
3347
3348 2008-11-11 Akim Demaille <demaille@gostai.com>
3349
3350 Replace yychar with a Boolean.
3351 * data/lalr1.cc (parse::yychar): Replace by...
3352 (parse::yyempty): this.
3353
3354 2008-11-11 Akim Demaille <demaille@gostai.com>
3355
3356 Factor the tables.
3357 * TODO: New item.
3358
3359 2008-11-11 Akim Demaille <demaille@gostai.com>
3360
3361 Let yytranslate handle the eof case.
3362 * data/lalr1.cc (yytranslate_): Handle the EOF case.
3363 Adjust callers.
3364 No longer expect yychar to be equal to yyeof_, rather, test the
3365 lookahead's (translated) kind.
3366
3367 2008-11-11 Akim Demaille <demaille@gostai.com>
3368
3369 yychar cannot be empty in yyerrlab.
3370 * TODO (yychar == yyempty_): New.
3371 * data/lalr1.cc: Remove the handling of this case.
3372 This eases forthcoming changes related to yychar and yytranslate.
3373
3374 2008-11-11 Akim Demaille <demaille@gostai.com>
3375
3376 Bench: syntactic sugar for %define/#define.
3377 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
3378 (&bench_push_parser, bench_variant_parser): Use this feature.
3379 (&eat): New.
3380 Use it.
3381
3382 2008-11-11 Akim Demaille <demaille@gostai.com>
3383
3384 Less memory pressure on the "list" bench.
3385 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
3386 the values, to limit memory pressure.
3387
3388 2008-11-11 Akim Demaille <demaille@gostai.com>
3389
3390 Introduce make_symbol.
3391 make_symbol provides a means to construct a full symbol (kind,
3392 value, location) in a single shot. It is meant to be a Symbol
3393 constructor, parameterized by the symbol kind so that overloading
3394 would prevent incorrect kind/value pairs. Unfortunately
3395 parameterized constructors do not work well in C++ (unless the
3396 parameter also appears as an argument, which is not acceptable),
3397 hence the use of a function instead of a constructor.
3398
3399 * data/lalr1.cc (b4_symbol_constructor_declaration_)
3400 (b4_symbol_constructor_declarations)
3401 (b4_symbol_constructor_specialization_)
3402 (b4_symbol_constructor_specializations)
3403 (b4_symbol_constructor_definition_)
3404 (b4_symbol_constructor_definitions): New.
3405 Use them where appropriate to generate declaration, declaration of
3406 the specializations, and implementations of the templated
3407 overloaded function "make_symbol".
3408 (variant::variant): Always define a default ctor.
3409 Also provide a copy ctor.
3410 (symbol_base_type, symbol_type): New ctor overloads for value-less
3411 symbols.
3412 (symbol_type): Now public, so that functions such as yylex can use
3413 it.
3414
3415 2008-11-11 Akim Demaille <demaille@gostai.com>
3416
3417 Inform m4 whether a tag is a valid id.
3418 * src/output.c (is_identifier): New.
3419 (symbol_definitions_output): Use it to define tag_is_id.
3420 But maybe this should be done at m4 level?
3421
3422 2008-11-11 Akim Demaille <demaille@gostai.com>
3423
3424 Test 214 was failing: it greps with a pattern containing [ ]*
3425 which obviously meant to catch spaces and tabs, but contained only
3426 spaces. Tabulations in sources are a nuisance, so to simplify the
3427 matter, get rid of all the tabulations in the Java sources. The
3428 other skeletons will be treated equally later.
3429
3430 * data/java.m4, data/lalr1.java: Untabify.
3431 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
3432 tabulations are no longer generated.
3433
3434 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
3435
3436 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
3437 * configure.ac: Adjust usage.
3438 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3439 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3440 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
3441
3442 2008-11-10 Di-an Jan <dianj@freeshell.org>
3443
3444 Workaround Java's ``code too large'' problem for parser tables
3445 in most cases, by using one function per initialization.
3446 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
3447 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
3448 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
3449 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
3450 (yytname_): Use b4_typed_parser_table.
3451 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
3452 ``code too large'' error.
3453
3454 2008-11-10 Di-an Jan <dianj@freeshell.org>
3455
3456 * NEWS: Document them.
3457
3458 General Java skeleton improvements.
3459 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
3460 using gcj < 4.3 in the testsuite, according to comments in
3461 gnulib/m4/javacomp.m4.
3462 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
3463 location_type, position_type): Remove extraneous brackets from
3464 b4_percent_define_default.
3465 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
3466 m4_define and m4_define_default.
3467 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
3468 which marks the end of user code with appropriate syncline, like all
3469 the other skeletons.
3470 (b4_user_post_prologue): Add. Don't silently drop.
3471 (yylex): Remove.
3472 (parse): Inline yylex.
3473 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
3474 (%{...%}): Fix typo of %code imports.
3475 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
3476
3477 Support annotations on parser class with %define annotations.
3478 * data/lalr1.java (annotations): Add to parser class modifier.
3479 * doc/bison.texinfo (Java Parser Interface): Document
3480 %define annotations.
3481 (Java Declarations Summary): Document %define annotations.
3482 * tests/java.at (Java parser class modifiers): Test annotations.
3483
3484 Do not generate code for %error-verbose unless requested.
3485 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
3486 Make private. Make conditional on %error-verbose.
3487 (getErrorVerbose, setErrorVerbose): New.
3488 (yytnamerr_): Make conditional on %error-verbose.
3489 (yysyntax_error): Make some code conditional on %error-verbose.
3490 * doc/bison.texinfo (Java Bison Interface): Remove the parts
3491 about %error-verbose having no effect.
3492 (getErrorVerbose, setErrorVerbose): Document.
3493
3494 Move constants for token names to Lexer interface.
3495 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
3496 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
3497 (parse): Qualify EOF to Lexer.EOF.
3498 * doc/bison.texinfo (Java Parser Interface): Move documentation of
3499 EOF and token names to Java Lexer Interface.
3500 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
3501
3502 Make yyerror public.
3503 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
3504 (yyerror): Change to public. Add Javadoc comments. Use longer
3505 parameter names. Make the body rather than the declarator
3506 conditional on %locations.
3507 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
3508
3509 Allow user to add code to the constructor with %code init.
3510 * data/java.m4 (b4_init_throws): New, for %define init_throws.
3511 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
3512 Add %code init to the front of the constructor body.
3513 * doc/bison.texinfo (YYParser.YYParser): Document %code init
3514 and %define init_throws.
3515 (Java Declarations Summary): Document %code init and
3516 %define init_throws.
3517 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
3518 (Java constructor init and init_throws): Add tests.
3519
3520 2008-11-10 Akim Demaille <demaille@gostai.com>
3521
3522 Update TODO.
3523 * TODO (-D): is implemented.
3524 (associativity): Same precedence must have the same associativity.
3525 For instance, how can a * b / c be parsed if * is %left and / is
3526 %right?
3527 (YYERRORCODE, YYFAIL, YYBACKUP): New.
3528
3529 2008-11-10 Akim Demaille <demaille@gostai.com>
3530
3531 Formatting changes.
3532
3533 2008-11-10 Akim Demaille <demaille@gostai.com>
3534
3535 More information about the symbols.
3536 * src/output.c (type_names_output): Document all the symbols,
3537 including those that don't have a type-name.
3538 (symbol_definitions_output): Define "is_token" and
3539 "has_type_name".
3540 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
3541 type-name, now that they are defined too in b4_type_names.
3542
3543 2008-11-10 Akim Demaille <demaille@gostai.com>
3544
3545 Regen.
3546
3547 2008-11-10 Akim Demaille <demaille@gostai.com>
3548
3549 Make parser::yytranslate static.
3550 Small speedup (1%) on the list grammar. And makes yytranslate_
3551 available in non member functions.
3552
3553 * data/lalr1.cc (yytranslate_): Does not need to be a instance
3554 function.
3555
3556 2008-11-10 Akim Demaille <demaille@gostai.com>
3557
3558 Avoid trailing spaces.
3559 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
3560 * data/lalr1.cc: Don't indent before rule and symbol actions, as
3561 they can be empty, and anyway this incorrectly indents the first
3562 action.
3563
3564 2008-11-10 Akim Demaille <demaille@gostai.com>
3565
3566 Comment changes.
3567
3568 2008-11-10 Akim Demaille <demaille@gostai.com>
3569
3570 Use "enum" for integral constants.
3571 This is just nicer to read, I observed no speedup.
3572
3573 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
3574 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
3575 (yyuser_token_number_max_, yyundef_token_): Move into...
3576 (yytranslate_): here.
3577
3578 2008-11-10 Akim Demaille <demaille@gostai.com>
3579
3580 Shortcuts in bench directives.
3581 * etc/bench.pl.in (parse_dirs): New.
3582 Use it.
3583 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
3584 Create the benches in "benches/".
3585
3586 2008-11-10 Akim Demaille <demaille@gostai.com>
3587
3588 Formatting changes.
3589 * data/lalr1.cc: here.
3590
3591 2008-11-10 Akim Demaille <demaille@gostai.com>
3592
3593 Adjust verbose message to using emacs.
3594 * etc/bench.pl.in: Inform compilation-mode when we change the
3595 directory.
3596 (generate_grammar_list): Recognize %define "variant" in addition
3597 to %define variant.
3598
3599 2008-11-10 Akim Demaille <demaille@gostai.com>
3600
3601 Classify symbols by type-name.
3602 * src/uniqstr.h (UNIQSTR_CMP): New.
3603 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
3604 (type_names_output): New.
3605 (muscles_output): Use it.
3606 * data/lalr1.cc (b4_symbol_action_): Remove.
3607 (b4_symbol_case_, b4_type_action_): New.
3608 Adjust uses of b4_symbol_action_ to use b4_type_action_.
3609
3610 2008-11-10 Akim Demaille <demaille@gostai.com>
3611
3612 Change the handling of the symbols in the skeletons.
3613 Before we were using tables which lines were the symbols and which
3614 columns were things like number, tag, type-name etc. It is was
3615 difficult to extend: each time a column was added, all the numbers had
3616 to be updated (you asked for colon $2, not for "tag"). Also, it was
3617 hard to filter these tables when only a subset of the symbols (say the
3618 tokens, or the nterms, or the tokens that have and external number
3619 *and* a type-name) was of interest.
3620
3621 Now instead of monolithic tables, we define one macro per cell. For
3622 instance "b4_symbol(0, tag)" is a macro name which contents is
3623 self-decriptive. The macro "b4_symbol" provides easier access to
3624 these cells.
3625
3626 * src/output.c (type_names_output): Remove.
3627 (symbol_numbers_output, symbol_definitions_output): New.
3628 (muscles_output): Call them.
3629 (prepare_symbols): Define b4_symbols_number.
3630
3631 2008-11-10 Akim Demaille <demaille@gostai.com>
3632
3633 --trace=muscles
3634 * src/getargs.h, src/getargs.c (trace_muscle): New.
3635 (trace_types, trace_args): Support it.
3636 * src/output.c (output_skeleton): Use it.
3637
3638 2008-11-10 Akim Demaille <demaille@gostai.com>
3639
3640 muscles_output.
3641 * src/output.c (muscles_output): New, extracted from...
3642 (output_skeleton): here.
3643 Adjust.
3644
3645 2008-11-10 Akim Demaille <demaille@gostai.com>
3646
3647 Formatting changes.
3648
3649 2008-11-10 Akim Demaille <demaille@gostai.com>
3650
3651 Update the variant example.
3652 * examples/variant.yy: Formatting changes.
3653 One stage build.
3654
3655 2008-11-10 Akim Demaille <demaille@gostai.com>
3656
3657 Support constructor with an argument.
3658 This improves the "list" bench by 2%.
3659
3660 * data/lalr1.cc (variant::build): Add an overloaded version with
3661 an argument.
3662 * tests/c++.at (AT_CHECK_VARIANT): Check it.
3663
3664 2008-11-10 Akim Demaille <demaille@gostai.com>
3665
3666 Test variants.
3667 * tests/c++.at (AT_CHECK_VARIANTS): New.
3668 Use it with and without %define assert.
3669
3670 2008-11-10 Akim Demaille <demaille@gostai.com>
3671
3672 Add %precedence support.
3673 Unfortunately it is not possible to reuse the %prec directive. This
3674 is because to please POSIX, we do not require to end the rules with a
3675 semicolon. As a result,
3676
3677 foo: bar %prec baz
3678
3679 is ambiguous: either a rule which precedence is that of baz, or a rule,
3680 and then a declaration of the precedence of the token baz.
3681
3682 * doc/bison.texinfo: Document %precedence.
3683 (Precedence Only): New.
3684 * src/assoc.h, src/assoc.c (precedence_assoc): New.
3685 * src/conflicts.c (resolve_sr_conflict): Support it.
3686 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
3687 Parse it.
3688 * tests/calc.at: Use %precedence for NEG.
3689 * tests/conflicts.at (%precedence does not suffice)
3690 (%precedence suffices): New tests.
3691
3692 2008-11-09 Akim Demaille <demaille@gostai.com>
3693
3694 Make benches in a sub dirs.
3695 * etc/bench.pl.in ($dir): New.
3696 Use it.
3697 Check the use of constructors with an argument.
3698 (bench_variant_parser): Fix.
3699
3700 2008-11-09 Akim Demaille <demaille@gostai.com>
3701
3702 fix eof condition
3703
3704 2008-11-09 Akim Demaille <demaille@gostai.com>
3705
3706 Fix --help.
3707
3708 2008-11-09 Akim Demaille <demaille@gostai.com>
3709
3710 Require the generation of parse-gram.output.
3711 * src/Makefile.am (YACC): Pass --report=all.
3712
3713 2008-11-09 Akim Demaille <demaille@gostai.com>
3714
3715 Formatting changes.
3716
3717 2008-11-09 Akim Demaille <demaille@gostai.com>
3718
3719 Update TODO.
3720 * TODO: Remove obsolete items.
3721 Update others.
3722
3723 2008-11-09 Akim Demaille <demaille@gostai.com>
3724
3725 Enhance bench.pl.
3726 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
3727 (@token, $grammar, $bench): New.
3728 (generate_grammar_variant): Rename as...
3729 (generate_grammar_list): this.
3730 (generate_grammar): Adjust.
3731 (bench_grammar): Rename as...
3732 (bench): this.
3733 Use it in the various bench-marking routines.
3734 (-b, -g): New options.
3735
3736 2008-11-09 Akim Demaille <demaille@gostai.com>
3737
3738 Use a static hierarchy for symbols in the C++ parser.
3739 * data/lalr1.cc (symbol_base_type, symbol_type)
3740 (stack_symbol_type): Make it a static hierarchy.
3741 Adjust dependencies.
3742
3743 2008-11-09 Akim Demaille <demaille@gostai.com>
3744
3745 bench.pl -d, --directive.
3746 * etc/bench.pl.in (@directive): New.
3747 (&bench_grammar): Use it.
3748 (&bench_list_grammar): New, to provide access to the "variant"
3749 grammar.
3750 Use it.
3751 (getopts): Support -d, --directive.
3752
3753 2008-11-09 Akim Demaille <demaille@gostai.com>
3754
3755 Use inline for small operations.
3756 * data/lalr1.cc (symbol_base_type, symbol_type)
3757 (stack_symbol_type): Declare constructor and other operations as
3758 inline.
3759 (yy_destroy_): Inline.
3760
3761 2008-11-09 Akim Demaille <demaille@gostai.com>
3762
3763 Introduce a hierarchy for symbols.
3764 * data/lalr1.cc (symbol_base_type, symbol_type): New.
3765 (data_type): Rename as...
3766 (stack_symbol_type): this.
3767 Derive from symbol_base_type.
3768 (yy_symbol_value_print_): Merge into...
3769 (yy_symbol_print_): this.
3770 Rename as...
3771 (yy_print_): this.
3772 (yydestruct_): Rename as...
3773 (yy_destroy_): this.
3774 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
3775 (parser::parse): yyla is now of symbol_type.
3776 Use its type member instead of yytoken.
3777
3778 2008-11-09 Akim Demaille <demaille@gostai.com>
3779
3780 Rename data_type and stack_symbol_type.
3781 * data/lalr1.cc (data_type): Rename as...
3782 (stack_symbol_type): this.
3783
3784 2008-11-09 Akim Demaille <demaille@gostai.com>
3785
3786 Handle semantic value and location together.
3787 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
3788 yydata.value and yydata.location.
3789 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
3790 (YY_SYMBOL_PRINT): Now take semantic value and location as a
3791 single arg.
3792 Adjust all callers.
3793 (yydestruct_): New overload for a stack symbol.
3794
3795 2008-11-09 Akim Demaille <demaille@gostai.com>
3796
3797 Push a complete symbol, not connected parts.
3798 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
3799 state, value and location.
3800 Adjust callers.
3801
3802 2008-11-09 Akim Demaille <demaille@gostai.com>
3803
3804 Agregate yylval and yylloc.
3805 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
3806 (parser::yyla): this.
3807
3808 2008-11-09 Akim Demaille <demaille@gostai.com>
3809
3810 Rely on the state stack to display reduction traces.
3811 To display rhs symbols before a reduction, we used information
3812 about the rule reduced, which required the tables yyrhs and
3813 yyprhs. Now use rely only on the state stack to get the same
3814 information.
3815
3816 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
3817 Use them.
3818 (parser::yyrhs_, parser::yyprhs_): Remove.
3819 (parser::yy_reduce_print_): Use the state stack.
3820
3821 2008-11-09 Akim Demaille <demaille@gostai.com>
3822
3823 Fuse yyval and yyloc into yylhs.
3824 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
3825 yylhs.
3826 (parse): Replace yyval and yyloc with yylhs.value and
3827 yylhs.location.
3828 After a user action, compute yylhs.state earlier.
3829 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
3830 fresh error_token.
3831
3832 2008-11-09 Di-an Jan <dianj@freeshell.org>
3833
3834 Remove unused variable.
3835 * src/output.c (type_names_output): Remove unused variable sep.
3836
3837 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
3838
3839 Change tests/output.at quoting.
3840 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
3841 expanding arguments.
3842
3843 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3844
3845 Don't add a semicolon to actions for %skeleton or %language.
3846 It breaks Java test cases as reported by Akim Demaille.
3847 * src/scan-code.l: Implement.
3848
3849 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3850
3851 Clean up %skeleton and %language priority implementation.
3852 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
3853 remove static qualifier because others will soon need to see it.
3854 (language_prio): Likewise.
3855 (getargs): Use command_line_prio rather than 0.
3856 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
3857 enum fields.
3858 (skeleton_prio): Extern it.
3859 (language_prio): Extern it.
3860 * src/parse-gram.y: Use grammar_prio rather than 1.
3861
3862 2008-11-07 Akim Demaille <demaille@gostai.com>
3863
3864 Moving push traces into yypush_.
3865 * data/lalr1.cc (yypush_): Now takes a optional trace message.
3866 Adjust all uses.
3867
3868 2008-11-07 Akim Demaille <demaille@gostai.com>
3869
3870 The single-stack C++ parser is now the standard one.
3871 * data/lalr1.cc: Rename as...
3872 * data/lalr1-split.cc: this.
3873 * data/lalr1-fusion.cc: Rename as...
3874 * data/lalr1.cc: this.
3875 * etc/bench.pl.in: Adjust.
3876
3877 2008-11-07 Akim Demaille <demaille@gostai.com>
3878
3879 Avoid empty-if warnings.
3880 Reported by Quentin Hocquet.
3881
3882 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
3883 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
3884
3885 2008-11-07 Akim Demaille <demaille@gostai.com>
3886
3887 Pass command line location to skeleton_arg and language_argmatch.
3888 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
3889 The location argument is now mandatory.
3890 Adjust all dependencies.
3891 (getargs): Use command_line_location.
3892
3893 2008-11-07 Akim Demaille <demaille@gostai.com>
3894
3895 -D, --define.
3896 * src/getargs.c (usage): Document -D.
3897 Fix help string for --locations.
3898 (command_line_location): New.
3899 (short_options, long_options, getargs): Support -D, --define.
3900 (getargs): Move -d support at the right place.
3901 * doc/bison.texinfo (Bison Options): Update.
3902 * tests/input.at (%define, --define): New.
3903
3904 2008-11-07 Akim Demaille <demaille@gostai.com>
3905
3906 Initialize the muscle table before parsing the command line.
3907 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
3908 (getargs): Define file_name.
3909 * src/main.c (main): Initialize muscle_tab before calling
3910 getargs.
3911 * src/muscle_tab.c (muscle_init): No longer define file_name, as
3912 its value is not available yet.
3913
3914 2008-11-07 Akim Demaille <demaille@gostai.com>
3915
3916 Locations without columns for command line arguments.
3917 * src/location.c (location_print): Don't display negative columns.
3918 * src/location.h: Document this.
3919
3920 2008-11-07 Akim Demaille <demaille@gostai.com>
3921
3922 Fix --help.
3923 * src/getargs.c (usage): Fix help string for -W.
3924
3925 2008-11-07 Akim Demaille <demaille@gostai.com>
3926
3927 Handle more general types of option arguments.
3928 * build-aux/cross-options.pl: The argument ends at the first
3929 space, not the first non-symbol character.
3930 Use @var for each word appearing the argument description.
3931
3932 2008-11-07 Akim Demaille <demaille@gostai.com>
3933
3934 Destroy the variants that remain on the stack in case of error.
3935 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
3936 destructor.
3937 Display the value only if yymsg is nonnull.
3938 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
3939
3940 2008-11-07 Akim Demaille <demaille@gostai.com>
3941
3942 Add "%define assert" to variants.
3943 This is used to help the user catch cases where some value gets
3944 ovewritten by a new one. This should not happen, as this will
3945 probably leak.
3946
3947 Unfortunately this uncovered a bug in the C++ parser itself: the
3948 lookahead value was not destroyed between two calls to yylex. For
3949 instance if the previous lookahead was a std::string, and then an int,
3950 then the value of the std::string was correctly taken (i.e., the
3951 lookahead was now an empty string), but std::string structure itself
3952 was not reclaimed.
3953
3954 This is now done in variant::build(other&) (which is used to take the
3955 value of the lookahead): other is not only stolen from its value, it
3956 is also destroyed. This incurs a new performance penalty of a few
3957 percent, and union becomes faster again.
3958
3959 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
3960 (b4_variant_if): New.
3961 (variant::built): New.
3962 Use it whereever the status of the variant changes.
3963 * etc/bench.pl.in: Check the penalty of %define assert.
3964
3965 2008-11-07 Akim Demaille <demaille@gostai.com>
3966
3967 Use "%define variant" in bench.pl.
3968 * etc/bench.pl.in: No longer use the pseudo directive %variants,
3969 just use %define variants.
3970
3971 2008-11-07 Akim Demaille <demaille@gostai.com>
3972
3973 Regen.
3974 * src/parse-gram.h, src/parse-gram.c: Regen.
3975
3976 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
3977
3978 Fix user actions without a trailing semicolon.
3979 Reported by Sergei Steshenko at
3980 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
3981 * THANKS (Sergei Steshenko): Add.
3982 * src/scan-code.l (SC_RULE_ACTION): Fix it.
3983 * tests/regression.at (Fix user actions without a trailing semicolon):
3984 New test case.
3985
3986 2008-11-04 Akim Demaille <demaille@gostai.com>
3987
3988 Use b4_copyright_years.
3989 * data/yacc.c (b4_copyright_years): New.
3990 Fix its value according to the comments in the file.
3991 Use it and undefine it.
3992
3993 2008-11-04 Akim Demaille <demaille@gostai.com>
3994
3995 Formatting changes.
3996 * data/lalr1-fusion.cc, src/parse-gram.y: here.
3997
3998 2008-11-04 Akim Demaille <demaille@gostai.com>
3999
4000 Formatting changes.
4001 * data/lalr1-fusion.cc: here.
4002
4003 2008-11-04 Akim Demaille <demaille@gostai.com>
4004
4005 Use strict on bench.pl.
4006 * etc/bench.pl.in (&run, &generate_grammar): New.
4007 Rename the grammar generating functions for consistency.
4008 Change the interface so that the list of benches to run is passed
4009 as (optionless) arguments.
4010 (&compile): Use &run.
4011
4012 2008-11-04 Akim Demaille <demaille@gostai.com>
4013
4014 Remove spurious initial empty lines.
4015 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
4016 * data/yacc.c: End the @output lines with an @.
4017
4018 2008-11-04 Akim Demaille <demaille@gostai.com>
4019
4020 Improve the display of sizes.
4021 * etc/bench.p.in: Higher precision.
4022 Sort by decreasing size.
4023
4024 2008-11-04 Akim Demaille <demaille@gostai.com>
4025
4026 Don't memcpy C++ structures.
4027 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
4028 arguments.
4029 (variant::build): New overload for
4030 copy-construction-that-destroys.
4031 (variant::swap): New.
4032 (parser::yypush_): Use it in variant mode.
4033
4034 2008-11-04 Akim Demaille <demaille@gostai.com>
4035
4036 Better defaults for bench.pl.
4037 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
4038 default values.
4039 Adjust &verbose uses.
4040 (-q, --quiet): New.
4041
4042 2008-11-04 Akim Demaille <demaille@gostai.com>
4043
4044 Make variant.yy more complex.
4045 std::list cannot be copied via memcpy, they are more demanding than
4046 std::string. Use one std::list to strengthen the test.
4047
4048 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
4049 Adjust.
4050 Create a list of strings, instead of a single large string.
4051
4052 2008-11-04 Akim Demaille <demaille@gostai.com>
4053
4054 bench.pl --bench.
4055 * etc/bench.pl.in (--bench, $bench): New.
4056
4057 2008-11-04 Akim Demaille <demaille@gostai.com>
4058
4059 Sort methods.
4060 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
4061 Define it after as().
4062
4063 2008-11-04 Akim Demaille <demaille@gostai.com>
4064
4065 Useless parens.
4066 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
4067
4068 2008-11-04 Akim Demaille <demaille@gostai.com>
4069
4070 Issue missing synclines after user actions.
4071 * data/c.m4 (b4_case): Issue synclines on the output file.
4072
4073 2008-11-04 Akim Demaille <demaille@gostai.com>
4074
4075 Remove trailing empty line.
4076 * data/lalr1-fusion.cc: Don't add an empty line after the user's
4077 epilogue.
4078
4079 2008-11-04 Akim Demaille <demaille@gostai.com>
4080
4081 Fix output of copyright years.
4082 * data/bison.m4 (b4_copyright): Fix the indentation of the
4083 copyright year paragraph.
4084 Use b4_copyright_years when no years are given.
4085 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
4086 (b4_copyright_years): New.
4087 Use it.
4088
4089 2008-11-04 Akim Demaille <demaille@gostai.com>
4090
4091 Avoid the spurious initial empty line.
4092 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
4093 the end of @output request to suppress the empty line that
4094 results.
4095
4096 2008-11-04 Akim Demaille <demaille@gostai.com>
4097
4098 Remove parser::rhs_number_type.
4099 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
4100 (yyrhs_): Use b4_table_define.
4101
4102 2008-11-04 Akim Demaille <demaille@gostai.com>
4103
4104 Fix iteration type.
4105 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
4106
4107 2008-11-04 Akim Demaille <demaille@gostai.com>
4108
4109 Factor the declaration of the integer tables.
4110 * data/lalr1-fusion.cc (b4_table_define): New.
4111 Use it.
4112
4113 2008-11-03 Akim Demaille <demaille@gostai.com>
4114
4115 Fix indentation of tables in lalr1.cc
4116 * data/lalr1-fusion.cc: Fix the indentation.
4117
4118 2008-11-03 Akim Demaille <demaille@gostai.com>
4119
4120 Destroy the lhs symbols after reduction.
4121 * data/lalr1-fusion.cc (parse): After the user action, when in
4122 variant mode, destroy the lhs symbols.
4123
4124 2008-11-03 Akim Demaille <demaille@gostai.com>
4125
4126 Simplify yysyntax_error_ use.
4127 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
4128 type, but make it unnamed in the declaration when it is not used.
4129
4130 2008-11-03 Akim Demaille <demaille@gostai.com>
4131
4132 Let yy::variant::build return an lvalue.
4133 * data/lalr1-fusion.cc (variant::build): Return a reference to the
4134 object.
4135
4136 2008-11-03 Akim Demaille <demaille@gostai.com>
4137
4138 Define yy::variant only when needed.
4139 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
4140 used.
4141
4142 2008-11-03 Akim Demaille <demaille@gostai.com>
4143
4144 Bench the three-stack lalr1.cc.
4145 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
4146 one-stack one.
4147
4148 2008-11-03 Akim Demaille <demaille@gostai.com>
4149
4150 Fail on parse error in calc++.
4151 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
4152 status.
4153 * examples/calc++/test ($me, $number, $exit, run): New.
4154 Use them to propagate errors to the exit status.
4155
4156 2008-11-03 Akim Demaille <demaille@gostai.com>
4157
4158 Don't specify the skeleton twice in the example.
4159 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
4160 file does what is needed.
4161
4162 2008-11-03 Akim Demaille <demaille@gostai.com>
4163
4164 bench: Improve output.
4165 * etc/bench.pl.in (bench_grammar): Tune the printf format.
4166
4167 2008-11-03 Akim Demaille <demaille@gostai.com>
4168
4169 bench: check impact of %debug on variants.
4170 * etc/bench.pl.in (variant_grammar): Fix the computation of
4171 $variant.
4172 Generate a grammar file that can work with or without %debug.
4173 Do use the @directive.
4174 (bench_variant_parser): Check impact of %debug.
4175 (@directives): Rename all the occurrences to...
4176 (@directive): this, for consistency.
4177
4178 2008-11-03 Akim Demaille <demaille@gostai.com>
4179
4180 bench: report the size too.
4181 * etc/bench.pl.in ($iterations): Defaults to -3.
4182 (&bench_grammar): Require hireswallclock.
4183 Compute and display the size of the result.
4184 More comments.
4185
4186 2008-11-03 Akim Demaille <demaille@gostai.com>
4187
4188 bench: More use of the verbosity level.
4189 * etc/bench.pl.in ($verbose, &verbose): New.
4190 Use them.
4191 More POD documentation.
4192
4193 2008-11-03 Akim Demaille <demaille@gostai.com>
4194
4195 bench.pl: a command line interface
4196 * etc/bench.pl.in: More doc.
4197 Some fixes in the documentation.
4198 ($cflags, $iterations, &help, &getopt): New.
4199 Use them.
4200 (&variant_grammar): Let the number of stages be 10 times what is
4201 specified.
4202
4203 2008-11-03 Akim Demaille <demaille@gostai.com>
4204
4205 Bench the use of Boost.Variants.
4206 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
4207 New.
4208 (&compile): Be ready to compile C++ parsers.
4209 (&bench_push_parser): Move debug information to the outermost
4210 level.
4211 * THANKS: Add Michiel De Wilde.
4212
4213 2008-11-03 Akim Demaille <demaille@gostai.com>
4214
4215 bench.pl: Pass directives as a list instead of as a string.
4216 * etc/bench.pl.in (&directives): New.
4217 (&triangular_grammar, &calc_grammar): Use it to format the Bison
4218 directives.
4219 (&triangular_grammar): Do use the directives (were ignored).
4220 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
4221 directives.
4222
4223 2008-11-03 Akim Demaille <demaille@gostai.com>
4224
4225 Improve genericity of bench.pl.
4226 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
4227 argument.
4228 (&bench_push_parser): New.
4229 Call it.
4230
4231 2008-11-03 Akim Demaille <demaille@gostai.com>
4232
4233 Add documentation to bench.pl.
4234 * etc/bench.pl.in: Comment changes.
4235
4236 2008-11-03 Akim Demaille <demaille@gostai.com>
4237
4238 Fuse the three stacks into a single one.
4239
4240 In order to make it easy to perform benchmarks to ensure that
4241 there are no performance loss, lalr1.cc is forked into
4242 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
4243 lalr1.cc.
4244
4245 Meanwhile, to make sure that lalr1-fusion.cc is correctly
4246 exercized by the test suite, the user must install a symbolic link
4247 from lalr1.cc to it.
4248
4249 Instead of having three stacks (state, value, location), use a
4250 stack of triples. This considerably simplifies the code (and it
4251 will be easier not to require locations as currently does the C++
4252 parser), and also gives a 10% speedup according to
4253 etc/bench (probably mainly since memory allocation is done once
4254 instead of three times).
4255
4256 Another motivation is to make it easier to destruct properly
4257 semantic values: now that they are bound to their state (hence
4258 symbol type) it will be easier to call the appropriate destructor.
4259
4260 These changes should probably benefit the C parser too.
4261
4262 * data/lalr1.cc: Copy as...
4263 * data/lalr1-fusion.cc: this new file.
4264 (b4_rhs_value, b4_rhs_location): New definitions overriding those
4265 from c++.m4.
4266 (state_stack_type, semantic_stack_type, location_stack_type)
4267 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
4268 (data_type, stack_type, yystack_): New.
4269 (YYLLOC_DEFAULT, yypush_): Adjust.
4270 (yyerror_range): Now based on data_type, not location_type.
4271
4272 2008-11-03 Akim Demaille <demaille@gostai.com>
4273
4274 Push the state, value, and location at the same time.
4275 This is needed to prepare a forthcoming patch that fuses the three
4276 stacks into one.
4277
4278 * data/lalr1.cc (parser::yypush_): New.
4279 (parser::yynewstate): Change the semantics: instead of arriving to
4280 this label when value and location have been pushed, but yystate
4281 is to be pushed on the state stack, now the three of them must
4282 have been pushed before. yystate still must be the new state.
4283 This allows to use yypush_ everywhere instead of individual
4284 handling of the stacks.
4285
4286 2008-11-03 Akim Demaille <demaille@gostai.com>
4287
4288 Prefer references to pointers.
4289 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
4290 definition to use references instead of pointers.
4291 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
4292 Take the value and location as references.
4293 Adjust callers.
4294
4295 2008-11-03 Akim Demaille <demaille@gostai.com>
4296
4297 stack::size instead of stack::height.
4298 * data/lalr1.cc (stack::height): Rename as...
4299 (stack::size): this.
4300 Fix the output type.
4301 Comment changes.
4302
4303 2008-11-03 Akim Demaille <demaille@gostai.com>
4304
4305 Use variants to support objects as semantic values.
4306 This patch was inspired by work by Michiel De Wilde. But he used
4307 Boost variants which (i) requires Boost on the user side, (ii) is
4308 slow, and (iii) has useless overhead (the parser knows the type of
4309 the semantic value there is no reason to duplicate this
4310 information as Boost.Variants do).
4311
4312 This implementation reserves a buffer large enough to store the
4313 largest objects. yy::variant implements this buffer. It was
4314 implemented with Quentin Hocquet.
4315
4316 * src/output.c (type_names_output): New.
4317 (output_skeleton): Invoke it.
4318 * data/c++.m4 (b4_variant_if): New.
4319 (b4_symbol_value): If needed, provide a definition for variants.
4320 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
4321 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
4322 (b4_char_sizeof, yy::variant): New.
4323 (parser::parse): If variants are requested, define
4324 parser::union_type, parser::variant, change the definition of
4325 semantic_type, construct $$ before running the user action instead
4326 of performing a default $$ = $1.
4327 * examples/variant.yy: New.
4328 Based on an example by Michiel De Wilde.
4329
4330 2008-11-03 Akim Demaille <demaille@gostai.com>
4331
4332 Parameterize the extraction of semantic values.
4333 To make future changes easier, no longer rely on ".TYPE" being the
4334 way to get a semantic value.
4335
4336 * data/c.m4 (b4_symbol_value): New.
4337 Use it.
4338 * data/c++.m4, data/yacc.c: Use it.
4339 * data/glr.c: Use b4_symbol_value.
4340 (b4_rhs_data): New.
4341 Use it.
4342
4343 2008-11-03 Akim Demaille <demaille@gostai.com>
4344
4345 Prepare easier M4 changes.
4346 * data/lalr1.cc: Use escaped [] instead of literals to prepare
4347 future changes.
4348
4349 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4350
4351 Initiate further development.
4352 * NEWS: Create an empty section for new entries.
4353 * gnulib: Update submodule to HEAD.
4354
4355 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4356
4357 * NEWS: Version 2.4.
4358
4359 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4360
4361 Prepare for next release.
4362 * NEWS: Briefly mention changes since 2.3b.
4363 * README: Say GNU m4 1.4.6, which we've been requiring in release
4364 announcements already, not 1.4.3, which breaks the build.
4365
4366 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4367
4368 Say %language is experimental.
4369 We're thinking of extending it's effect on output file naming. See the
4370 thread at
4371 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
4372 * NEWS: Say it's experimental.
4373 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
4374 recommend it over %skeleton for now.
4375 (Bison Options): Likewise.
4376 (C++ Bison Interface): Use %skeleton not %language.
4377 (Calc++ Parser): Use %skeleton not %language.
4378 * src/getargs.c (usage): Say it's experimental.
4379
4380 2008-11-01 Di-an Jan <dianj@freeshell.org>
4381 Paolo Bonzini <bonzini@gnu.org>
4382
4383 Support all Java parser class modifiers.
4384 * data/java.m4 (b4_percent_define_get3): New.
4385 (b4_final_if, b4_strictfp_if): New.
4386 * data/lalr1.java (final, strictfp, extends, implements): Support.
4387 * doc/bison.texinfo (final, strictfp, extends, implements): Add
4388 documentation.
4389 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
4390 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
4391 (AT_CHECK_JAVA_GREP): New.
4392 (Java parser class modifiers): New test.
4393 (Java parser class extends and implements): New test.
4394
4395 Model exception propagation better with throws and lex_throws.
4396 * data/java.m4 (b4_list2): New.
4397 (throws): Change default.
4398 * data/lalr1.java (yyaction): Add throws.
4399 (parse): Add lex_throws in addition to throws.
4400 * doc/bison.texinfo (throws, lex_throws): Add documentation.
4401 * tests/java.at (Java throws specifications): New test.
4402
4403 Improve documentation for Java parsers.
4404 * doc/bison.texinfo (Java Parsers): Add subsections.
4405 Don't quote first argument of %define.
4406 (Java Bison Interface): Document output files. Move documentation
4407 of parser class and merge into Java Parser Interface. Document
4408 features that error out. Document directives with no effect.
4409 Move note about Javadoc higher.
4410 (Java Semantic Values): Explicitly mention stype.
4411 Document that generic types cannot be used.
4412 (Java Location Values): Use @deftypeivar. Document constructors.
4413 Correct return value for toString.
4414 (Java Parser Interface): List undocumented constants/fields.
4415 Move documentation of fields added by %parse-param closer to list
4416 of members. Document that token names are added as fields.
4417 Document constructors accurately. Remove error method.
4418 (Java Scanner Interface): Move note on %pure-parser to Java Bison
4419 Interface. Describe %code lexer and yylex accutately.
4420 Remove documentation that does not match the code.
4421 (Java Action Features): New.
4422 (Java Differences): Add reference. Add item on semantic values.
4423 Add note about @{ ... @}. Clarify %% epilogue placement.
4424 (Java Declarations Summary): New.
4425
4426 Fix Java skeleton.
4427 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
4428 (b4_remove_comma): Quote test argument.
4429 (b4_identification): Remove "bison" field.
4430 * tests/java.at (Java parser class and package names): New test.
4431 (Java %parse-param and %lex-param): New test.
4432 (Java stype, position_class and location_class): New test.
4433
4434 2008-10-31 Di-an Jan <dianj@freeshell.org>
4435
4436 * data/lalr1.jave: Update copyright years.
4437 (YYParser): Correct name of "generated from" file in Javadoc:
4438 use b4_file_name instead of @ofile@.
4439 (Location constructor): Correct Javadoc parameter name.
4440 (yylloc): Add missing opening m4 quote after b4_location_if.
4441 This removes a stray [ in the Javadoc of Lexer.getStartPos.
4442 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
4443 (YYParser constructor): Correct Javadoc parameter name.
4444
4445 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
4446
4447 Always put auxiliary code files in the same dir as other output files.
4448 * src/files.c (compute_file_name_parts): When the user specifies
4449 --output but not --file-prefix, extract the directory prefix from the
4450 file prefix not from the grammar file name. This affects the location
4451 of files like location.hh generated by the C++ skeleton. The includes
4452 in the other output files require this fix.
4453 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
4454 for expected output files.
4455 (Output files): Add a test for the above.
4456
4457 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
4458
4459 * gnulib: Update submodule to HEAD.
4460
4461 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4462
4463 Update copyright year.
4464 * src/files.c: Here.
4465
4466 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
4467
4468 Don't overwrite the input file.
4469 * src/files.c (output_file_name_check): Fatal error if using input file
4470 for output.
4471 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
4472 argument.
4473 (Conflicting output files): Add test.
4474
4475 2008-10-28 Akim Demaille <demaille@gostai.com>
4476
4477 Space changes.
4478 * data/lalr1.cc: Formatting changes.
4479
4480 2008-10-28 Akim Demaille <demaille@gostai.com>
4481
4482 Don't define debugging functions when !YYDEBUG.
4483 * data/lalr1.cc (debug_stream, set_debug_stream)
4484 (debug_level_type, debug_level, set_debug_level): Don't
4485 declare them when YYDEBUG is not defined.
4486 The implementation are already YYDEBUG-aware.
4487
4488 2008-10-28 Akim Demaille <demaille@gostai.com>
4489
4490 Prefer "continue" for empty loop bodies.
4491 * etc/bench.pl.in: Use "continue" instead of {}.
4492
4493 2008-10-28 Akim Demaille <demaille@gostai.com>
4494
4495 Space and comments changes.
4496 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
4497 * data/c.m4, data/lalr1.cc: Space changes.
4498
4499 2008-10-28 Akim Demaille <demaille@gostai.com>
4500
4501 Make gnulib a submodule.
4502 * gnulib: New.
4503 * .gitmodules (gnulib): New.
4504
4505 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4506
4507 Fix yyerror_range for user-defined location type in C++. Reported by
4508 Georg Sauthoff at
4509 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
4510 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
4511 * THANKS (Georg Sauthoff): Add.
4512
4513 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4514
4515 Update several administrative files mainly to facilitate releasing.
4516 * HACKING (Administrivia): Make the git-merge-changelog notes more
4517 helpful.
4518 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
4519 (Release Procedure): Update for git and add numerous details that were
4520 previously missing.
4521 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
4522 * maint.mk (announcement): Don't list bison as a bootstrap tool so
4523 that announcements don't claim we bootstrapped with whatever bison
4524 happened to be in PATH. Add flex as a bootstrap tool.
4525 * Makefile.maint: Remove, previously replaced by maint.mk.
4526 * Makefile.cfg: Remove, and migrate settings to...
4527 * cfg.mk: ... here for the sake of `make announcement'.
4528 * bootstrap.conf (gnulib_modules): Add announce-gen.
4529 * README: Say GNU Bison instead of just Bison. Suggested by Karl
4530 Berry.
4531
4532 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
4533
4534 Small but important bugfixes for the Java skeleton.
4535 * data/lalr1.java (yyerror): Change Location to b4_location_type.
4536 (yy_symbol_print): Call toString on yyvaluep.
4537
4538 2008-08-29 Akim Demaille <demaille@gostai.com>
4539
4540 Clarify UPDATED use.
4541 * doc/bison.texinfo: It refers to the last edition of this file,
4542 not to the release date of Bison.
4543 Reported by Joel E. Denny.
4544
4545 2008-08-29 Akim Demaille <demaille@gostai.com>
4546
4547 * README: Update FAQ pointer.
4548 Reported by Joel E. Denny.
4549
4550 2008-08-27 Eric Blake <ebb9@byu.net>
4551
4552 Resync m4sugar from autoconf.
4553 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
4554 (m4_init): Adjust to latest m4.git changes.
4555 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
4556 effects.
4557 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
4558 (_m4_list_cmp): Reduce side effects.
4559
4560 2008-08-27 Akim Demaille <demaille@gostai.com>
4561
4562 Check yyerrok in calc.at.
4563 * tests/calc.at (calc.y): Use yyerrok on "( error )".
4564 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
4565 expected.
4566
4567 2008-08-27 Akim Demaille <demaille@gostai.com>
4568
4569 Support yyerrok in lalr1.cc.
4570 YYBACKUP is still to import back into lalr1.cc.
4571 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
4572
4573 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4574
4575 For maintainer-check*, don't recompile for a $(VERSION) update.
4576 * cfg.mk: New file.
4577 (_is-dist-target): Override the one in GNUmakefile.
4578 * Makefile.am (EXTRA_DIST): Add cfg.mk.
4579
4580 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4581
4582 Update for recent change to gnulib.
4583 * src/parse-gram.y: Don't include strverscmp.h. It comes from
4584 string.h now.
4585
4586 2008-08-15 Eric Blake <ebb9@byu.net>
4587
4588 Remaining m4sugar merge from autoconf.
4589 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
4590 * data/m4sugar/foreach.m4: New file, copied from autoconf.
4591 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
4592 * src/output.c (output_skeleton): Tell m4 how to find it.
4593
4594 Partial m4sugar merge from autoconf: m4_map.
4595 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
4596 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
4597 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
4598 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
4599 for empty list.
4600 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
4601 Likewise.
4602 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
4603 declares it.
4604
4605 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
4606
4607 Keep .version and PACKAGE_VERSION in sync.
4608 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
4609 dependency, and add comments justifying this in more detail. Discussed
4610 starting at
4611 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
4612
4613 2008-08-06 Eric Blake <ebb9@byu.net>
4614
4615 Partial m4sugar merge from autoconf: m4_shiftn.
4616 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
4617 (m4_shift2, m4_shift3): New macros.
4618 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
4619 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
4620 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
4621 * data/java.m4 (b4_remove_comma): Likewise.
4622
4623 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
4624 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
4625 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
4626 (m4_init): Consolidate wrapped text into single m4_wrap.
4627 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
4628 in wrapped text.
4629
4630 2008-08-05 Eric Blake <ebb9@byu.net>
4631
4632 Partial m4sugar merge from autoconf: builtins, version.m4.
4633 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
4634 (m4_prepend): Remove, as it is unused and inherently quadratic,
4635 whereas m4_append is linear in newer m4.
4636 (m4_mkstemp): New builtin.
4637 (m4_symbols): Make rename conditional.
4638 (m4_version_prereq): Ensure fatal error if used in bison, which
4639 intentionally lacks version.m4.
4640
4641 Fix comments in m4sugar.
4642 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
4643
4644 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4645
4646 Update for recent .gitignore fix in Gnulib.
4647 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
4648 anchored .gitignore entries.
4649
4650 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4651
4652 Set gnu or gnits strictness.
4653 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
4654 development and gnits strictness for releases. Based on Eric Blake's
4655 suggestion at
4656 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
4657
4658 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
4659
4660 * NEWS: Clarify documentation of %language.
4661
4662 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
4663
4664 Support usage of git-merge-changelog.
4665 * .gitattributes: New.
4666 * HACKING: Document usage of git-merge-changelog.
4667 * bootstrap: Install git-merge-changelog entries in .git/config
4668 if appropriate.
4669
4670 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4671
4672 Remove remaining dependence on CVS Id keyword.
4673 * ChangeLog: For the sake of people still using CVS, don't use dollars
4674 when mentioning Id.
4675 * data/xslt/bison.xsl: Remove Id from header comments, where it was
4676 unusual anyway.
4677 * data/xslt/xml2dot.xsl: Likewise.
4678 * data/xslt/xml2text.xsl: Likewise.
4679 * data/xslt/xml2xhtml.xsl: Likewise.
4680 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
4681 * doc/Makefile.am (neutralize): Remove, no longer needed.
4682 (.x.1): Don't use neutralize.
4683 (edit): Don't substitute for ID.
4684 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
4685
4686 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4687
4688 Fix dependence on computed configure variables.
4689 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
4690 $(top_srcdir)/configure.ac so that changes to computed variables, such
4691 as PACKAGE_VERSION, are seen.
4692 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
4693
4694 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
4695
4696 Update copyright dates for recent changes.
4697 * Makefile.am: Here.
4698 * src/Makefile.am: Here.
4699 * src/reduce.c: Here.
4700 * tests/reduce.at: Here.
4701
4702 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
4703
4704 Use git-version-gen for version names between releases.
4705 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
4706 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
4707 * .prev-version: New.
4708 * .version.in: Remove.
4709 * ChangeLog: Remove the Id previously used for capturing the CVS
4710 revision.
4711 * GNUmakefile: Remove, now copied from Gnulib.
4712 * Makefile.am: Add code suggested by comments in
4713 build-aux/git-version-gen.
4714 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
4715 .prev-version, and .version.
4716 * NEWS (2.3b+): Rename to...
4717 (?.?): ... this because we're dropping the "+" version naming scheme,
4718 but, in general, we still can't be sure of our next release name.
4719 * bootstrap: Add a quick hack to remove from .gitignore the
4720 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
4721 entry. This should really be fixed in gnulib instead.
4722 * bootstrap.conf (gnulib_modules): Add gnumakefile.
4723 * configure.ac (AC_INIT): Set version name by invoking
4724 build-aux/git-version-gen.
4725 (AC_CONFIG_FILES): Remove .version, now generated by
4726 build-aux/git-version-gen.
4727 * maint.mk: New, copied from coreutils.
4728 * doc/.cvsignore (bison.1): Add.
4729 * doc/.gitignore (/bison.1): Add.
4730 * doc/bison.1: Remove, generated.
4731 * src/.cvsignore (revision.c): Remove.
4732 * src/.gitignore (/revision.c): Remove.
4733 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
4734 (BUILT_SOURCES): Remove revision.c.
4735 (revision.c): Remove.
4736 * src/getargs.c (version): Don't print revision after the VERSION.
4737 * src/revision.h: Remove.
4738
4739 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4740
4741 Fix untranslatable composition of sentences. Reported by Goran
4742 Uddeborg at
4743 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
4744 * THANKS (Goran Uddeborg): Add.
4745 * src/reduce.c (reduce_print): Report the number of nonterminals and
4746 rules useless in the grammar in separate sentences.
4747 * tests/reduce.at (Useless Rules): Update output.
4748 (Reduced Automaton): Likewise.
4749 (Underivable Rules): Likewise.
4750 (Empty Language): Likewise.
4751
4752 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4753
4754 Fix some .gitignore and .cvsignore problems.
4755 * bootstrap (insert_sorted_if_absent): Replace all uses with...
4756 (insert_vc_ignore): ... this new function, which prepends `/' to all
4757 .gitignore entries before passing them to insert_sorted_if_absent.
4758 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
4759 .cvsignore files are maintained even though Bison developers run
4760 bootstrap while using Git.
4761 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
4762 unneeded by Bison.
4763 (gnulib): Add.
4764 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
4765 unneeded. Reported by Eric Blake.
4766 * lib/.gitignore (/*~): Add.
4767 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
4768 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
4769 Blake.
4770 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
4771
4772 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4773
4774 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
4775 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
4776 * bootstrap.conf (gnulib_modules): Add unsetenv.
4777 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
4778 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
4779 (/setenv.m4): Add.
4780 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
4781 the first argument because it may become position-dependent, and unset
4782 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
4783 Add comments explaining these issues in more detail.
4784
4785 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
4786
4787 Add .gitignore everywhere based on .cvsignore.
4788 * .gitignore: New.
4789 * build-aux/.gitignore: New.
4790 * data/.gitignore: New.
4791 * doc/.gitignore: New.
4792 * etc/.gitignore: New.
4793 * examples/.gitignore: New.
4794 * examples/calc++/.gitignore: New.
4795 * lib/.gitignore: New.
4796 * m4/.gitignore: New.
4797 * po/.gitignore: New.
4798 * runtime-po/.gitignore: New.
4799 * src/.gitignore: New.
4800 * tests/.gitignore: New.
4801
4802 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4803
4804 * NEWS (2.3b+): New section, empty for now.
4805 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
4806
4807 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4808
4809 * NEWS (2.3b): Update release date since there has been a delay in
4810 getting the announcements and tarballs out.
4811
4812 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4813
4814 * NEWS: Version 2.3b.
4815 * configure.ac (AC_INIT): Likewise.
4816 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
4817
4818 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4819
4820 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
4821 been doing it for years.
4822 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
4823 (Release Procedure): Add FIXME about make alpha being unmaintained.
4824
4825 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
4826
4827 * data/yacc.c: Reformat m4 a little for readability.
4828 * src/lalr.c (build_relations): Correct comment.
4829
4830 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4831
4832 DJGPP specific issue.
4833 * djgpp/config.sed: Fixes required to run configure scripts generated
4834 by autoconf 2.62.
4835
4836 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4837
4838 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
4839 coordinator@translationproject.org.
4840
4841 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4842
4843 * THANKS: Add Eric Blake.
4844
4845 2008-04-23 Eric Blake <ebb9@byu.net>
4846
4847 Revert prior patch, by working around autoconf regression.
4848 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
4849 ("Output file name: ("): Uncomment test.
4850 ("Output file name: )"): Likewise.
4851 Based on an idea from Noah Misch.
4852
4853 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4854
4855 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
4856 2.61. Reported by Juan Manuel Guerrero at
4857 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
4858 * tests/output.at ("Output file name: ("): Comment out test case for
4859 now.
4860 ("Output file name: )"): Likewise.
4861
4862 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4863
4864 * GNUmakefile: Update git-version-gen invocation so make dist
4865 succeeds.
4866
4867 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4868
4869 Update to the current gnulib CVS repository, and fix trigraph handling
4870 in Bison.
4871 * bootstrap: Update gnulib CVS repository URL.
4872 (symlink_to_dir): Encapsulate the code that guarantees the destination
4873 directory exists into...
4874 (check_dst_dir): ... this new function, and...
4875 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
4876 fail when copying files into lib/uniwidth/.
4877 * src/output.c (prepare_symbols): When writing yytname muscles, where
4878 symbol names will be encoded in C-string literals, tell quotearg to
4879 escape trigraphs. This used to be the default in gnulib.
4880 * tests/regression.at (Token definitions): Because of the change in
4881 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
4882 escapes trigraphs in symbol names. Thus, yytname no longer has
4883 trigraphs unnecessarily doubly escaped. Update test case output.
4884 Extend test case to be sure Bison's own error messages will no longer
4885 have trigraphs in symbol names unnecessarily escaped once.
4886
4887 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
4888
4889 Fix make dist infinite loop reported by Juan Manuel Guerrero at
4890 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
4891 * .cvsignore: Add .version.
4892 * .version.in: New.
4893 * bootstrap.conf (gnulib_modules): Add git-version-gen.
4894 * configure.ac (AC_CONFIG_FILES): Add .version.
4895 * build-aux/.cvsignore: Add git-version-gen.
4896
4897 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
4898
4899 * NEWS (2.3a+): Mention that -g now takes an argument.
4900 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
4901 consistency. Update the -g and -x entries now that they take
4902 arguments. Use brackets to indicate optional arguments.
4903 * src/getargs.c (usage): Explain the relationship between arguments of
4904 long and short options more completely. Document --defines and -d
4905 separately since the former takes an argument but, for POSIX Yacc, the
4906 latter does not.
4907 (short_options): Let -W take an optional argument like --warnings.
4908 (getargs): Sort cases.
4909
4910 2008-02-28 Akim Demaille <demaille@gostai.com>
4911
4912 * doc/bison.texinfo: Fix a few typos.
4913
4914 2008-02-28 Akim Demaille <akim@epita.fr>
4915
4916 * doc/bison.texinfo (Bison Options): Document -W.
4917 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
4918
4919 2008-02-28 Akim Demaille <akim@epita.fr>
4920
4921 * src/getargs.c (short_options): Split and sort for readability.
4922 -g and -x take optional arguments, just like their long options.
4923 * build-aux/cross-options.pl: Use /x to make the regexp easier to
4924 understand.
4925 Fix the handling of $opt which resulted in all the argument to be
4926 considered as optional.
4927
4928 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
4929
4930 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
4931 say its interface is experimental.
4932 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4933 Java.
4934 (Bison Options): In the -L and --language entry, mention Java.
4935 (Java Bison Interface): Say the interface is experimental.
4936 * src/getargs.c (usage): Mention -L and --language.
4937
4938 * NEWS (2.3a+): Say the push parsing interface is experimental.
4939 * doc/bison.texinfo (Push Decl): Likewise.
4940 (Decl Summary): Likewise in the "%define api.push_pull" entry.
4941 (Push Parser Function): Likewise.
4942 (Pull Parser Function): Likewise.
4943 (Parser Create Function): Likewise.
4944 (Parser Delete Function): Likewise.
4945 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
4946 yypull_parse, and yypush_parse entries.
4947
4948 * NEWS (2.3a+): Mention XML support, and say the schema is
4949 experimental.
4950 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
4951 * src/getargs.c (usage): Say the XML schema is experimental.
4952
4953 * NEWS (2.3a+): Say option instead of flag.
4954
4955 2008-02-21 Wojciech Polak <polak@gnu.org>
4956
4957 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
4958 text.
4959
4960 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
4961
4962 Fix impure push parser compile error reported by Bob Rossi at
4963 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
4964 * data/yacc.c: Clean up whitespace in the output a little.
4965 (yypstate_allocated): Define for impure push parsers regardless of
4966 whether the pull interface is also requested.
4967 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
4968 check impure push parsers without the pull interface.
4969
4970 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
4971 yyerror takes arguments specified by %parse-param while yypstate_new
4972 does not.
4973 * doc/bison.texinfo (Parser Create Function): Document that
4974 yypstate_new returns 0 for multiple impure parser instances.
4975 * tests/push.at (Push Parsing: Multiple impure instances): Update
4976 expected stderr output.
4977
4978 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4979
4980 * runtime-po/POTFILES.in (push.c): Remove.
4981
4982 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4983
4984 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
4985 * data/push.c: Rename to...
4986 * data/yacc.c: ... this, overwriting it.
4987 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
4988 `%push-pull-parser' -> `%define api.push_pull "both"'.
4989 Remove old yacc.c tests, and update push.c tests to yacc.c.
4990
4991 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4992
4993 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
4994 `"%code top" blocks' instead of `%code "top" blocks'.
4995 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
4996 Clean up whitespace in the output a little.
4997
4998 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4999
5000 Fix documentation problems reported by Tim Josling at
5001 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
5002 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
5003 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
5004 integers. Explain the effect of literal string aliases on error
5005 messages. Copy token 0 documentation from the C++ skeleton
5006 documentation.
5007
5008 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
5009
5010 Accept a token number in a %left, %right, or %nonassoc for POSIX
5011 conformance. Reported by Tim Josling at
5012 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
5013 * NEWS (2.3a+): Mention.
5014 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
5015 and code numbers are treated by precedence declarations.
5016 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
5017 of symbols.1.
5018 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
5019 of symbol.
5020 (symbol.prec): New, just like symbol but allows INT.
5021 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
5022 longer holds.
5023 * tests/regression.at (Token number in precedence declaration): New
5024 test case.
5025
5026 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5027
5028 DJGPP specific issues.
5029 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
5030 be changed. Copyright timestamp adjusted.
5031 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
5032 be changed. Copyright timestamp adjusted.
5033 * djgpp/config.site: Copyright timestamp adjusted.
5034 * djgpp/config_h.sed: Copyright timestamp adjusted.
5035 * djgpp/djunpack.bat: Copyright timestamp adjusted.
5036 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
5037 filename translation list.
5038 * djgpp/subpipe.c (init_subpipe): Check the environment variables
5039 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
5040 files shall be created. Before trying to use the temp dir where the
5041 environment variable points to check that the dir really exists. If
5042 not default to the cwd as temp dir. Copyright timestamp adjusted.
5043 * djgpp/subpipe.h: Copyright timestamp adjusted.
5044 * djgpp/testsuite.sed: Copyright timestamp adjusted.
5045
5046 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
5047
5048 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
5049
5050 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
5051
5052 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
5053 Problem reported by Claudio Saavedra in
5054 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
5055
5056 2008-01-05 Wojciech Polak <polak@gnu.org>
5057
5058 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
5059 document's title with the input grammar file name.
5060
5061 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
5062
5063 Automate regression testing of the XML/XSLT implementation. Discussed
5064 starting at
5065 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
5066 * configure.ac (XSLTPROC): New substitution.
5067 * Makefile.am (maintainer-xml-check): New phony target invoking...
5068 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
5069 invoking make maintainer-check with BISON_TEST_XML=1.
5070 * tests/atlocal.in (XSLTPROC): New.
5071 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
5072 not to report reachable memory when Bison is expected to have a
5073 non-zero exit status and (2) to compare XML/XSLT output with --graph
5074 and --report=all output for every working grammar when
5075 BISON_TEST_XML=1.
5076 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
5077 (AT_BISON_CHECK_XML): New.
5078 (AT_QUELL_VALGRIND): New.
5079 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
5080 (AT_CHECK): ... don't redefine this since this was the old way to
5081 quell Valgrind.
5082 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
5083 AT_BISON_CHECK invocations.
5084 * tests/c++.at: Likewise.
5085 * tests/calc.at: Likewise.
5086 * tests/conflicts.at: Likewise.
5087 * tests/cxx-type.at: Likewise.
5088 * tests/existing.at: Likewise.
5089 * tests/glr-regression.at: Likewise.
5090 * tests/headers.at: Likewise.
5091 * tests/input.at: Likewise.
5092 * tests/java.at: Likewise.
5093 * tests/output.at: Likewise.
5094 * tests/push.at: Likewise.
5095 * tests/reduce.at: Likewise.
5096 * tests/regression.at: Likewise.
5097 * tests/sets.at: Likewise.
5098 * tests/skeletons.at: Likewise.
5099 * tests/synclines.at: Likewise.
5100 * tests/torture.at: Likewise.
5101 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
5102 tends to hang xsltproc.
5103 (Big horizontal): Likewise.
5104
5105 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
5106
5107 In XML output, remove redundant class attribute on symbol element.
5108 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
5109 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
5110 look up a symbol to determine whether it's a nonterminal or terminal.
5111 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
5112 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
5113
5114 Add prec/assoc information to XML output.
5115 * src/gram.c (grammar_rules_print_xml): For each rule that has a
5116 %prec, add a percent_prec attribute.
5117 * src/print-xml.c (print_grammar): For each terminal that has a
5118 precedence or associativity, add a prec or assoc attribute.
5119 (xml_indent): New.
5120 (xml_puts): Use xml_indent.
5121 (xml_printf): Use xml_indent.
5122 * src/print-xml.h (xml_indent): Prototype.
5123
5124 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
5125 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5126
5127 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
5128
5129 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
5130 (bison:ruleByNumber): ... this for clarity.
5131 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
5132 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
5133 (xsl:template match="reduction"): Update.
5134 (xsl:template match="item"): Update.
5135 (xsl:template match="reduction"): Update.
5136
5137 In the XML output, don't print the list of rules where symbols appear.
5138 Compute it in XSLT instead. Discussed at
5139 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
5140 * data/xslt/bison.xsl (bison:ruleByLhs): New.
5141 (bison:ruleByRhs): New.
5142 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
5143 bison:ruleByRhs.
5144 (xsl:template match="terminal/rule"): Remove.
5145 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
5146 bison:ruleByRhs.
5147 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
5148 Remove.
5149 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
5150 bison:ruleByRhs and mode="number-link" for rule template.
5151 (xsl:template match="terminal/rule"): Remove.
5152 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
5153 bison:ruleByRhs and mode="number-link" for rule template.
5154 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
5155 Rewrite as...
5156 (xsl:template match="rule" mode="number-link"): ... this.
5157 * src/print-xml.c (print_grammar): Don't print the list of rules.
5158
5159 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
5160
5161 Don't let --report affect XML output; always print all information.
5162 Discussed at
5163 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
5164 * src/conflicts.c (log_resolution): Implement.
5165 * src/print-xml.c (print_core): Implement.
5166 (print_state): Implement.
5167 (print_xml): Implement.
5168
5169 * NEWS (2.3a+): Fix quotes.
5170 * src/parse-gram.y (prologue_declaration): For consistency with -v,
5171 don't let %verbose clear the list specified by --report.
5172
5173 2007-11-26 Akim Demaille <akim@epita.fr>
5174
5175 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
5176
5177 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
5178
5179 In the XML output, list useless and unused symbols and rules with the
5180 useful ones and add a "usefulness" attribute. Discussed starting at
5181 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
5182 * src/gram.c (grammar_rules_partial_print_xml): Remove.
5183 (grammar_rules_print_xml): Print all rules instead of just those
5184 useful in the grammar, and add a "usefulness" attribute.
5185 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
5186 * src/print-xml.c (print_rules_useless_in_parser): Remove.
5187 (print_grammar): Print all nonterminals instead of just useful ones,
5188 and add a "usefulness" attribute to nonterminals and terminals.
5189 (print_xml): Don't print a separate "reductions" or
5190 "rules-useless-in-parser" element.
5191 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
5192 (reduce_xml): Remove.
5193 (reduce_token_unused_in_grammar): New.
5194 (reduce_nonterminal_useless_in_grammar): New.
5195 * src/reduce.h (reduce_xml): Remove prototype.
5196 (reduce_token_unused_in_grammar): Add prototype.
5197 (reduce_nonterminal_useless_in_grammar): Add prototype.
5198 * data/xslt/xml2text.xsl: Update for XML changes.
5199 * data/xslt/xml2xhtml.xsl: Update for XML changes.
5200 * tests/reduce.at (Useless Terminals): Update output.
5201 (Useless Rules): Update output.
5202 (Reduced Automaton): Update output.
5203
5204 Say "Terminals unused in grammar" instead of "Unused terminals".
5205 * NEWS (2.3a+): Update.
5206 * doc/bison.texinfo (Understanding): Update example output.
5207 * src/reduce.c (reduce_output): Implement.
5208 * data/xslt/xml2text.xsl: Implement.
5209 * data/xslt/xml2xhtml.xsl: Implement.
5210
5211 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
5212
5213 Accept --report-file=FILE to override the default `.output' filename.
5214 * NEWS (2.3a+): Mention.
5215 * doc/bison.texinfo (Bison Options): Add an entry.
5216 * src/files.c (compute_output_file_names): Don't override
5217 spec_verbose_file if already set.
5218 * src/getargs.c (usage): Document --report-file.
5219 (REPORT_FILE_OPTION): New anonymous enum member.
5220 (long_options): Add entry for it.
5221 (getargs): Add case for it setting spec_verbose_file.
5222
5223 * build-aux/cross-options.pl: Don't record a short option just because
5224 there's an arg.
5225 * doc/.cvsignore: Add yacc.1.
5226
5227 2007-11-14 Akim Demaille <akim@epita.fr>
5228
5229 * doc/yacc.1.in: New.
5230 * configure.ac, doc/Makefile.am: Adjust.
5231 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
5232 config.h symbol.
5233 Use AC_SUBST for assignments too.
5234 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
5235
5236 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5237
5238 * src/gram.c: Remove comments that duplicate comments in gram.h.
5239
5240 When reporting useless rules and nonterminals, say "useless in grammar"
5241 instead of "useless", and say "useless in parser" instead of "never
5242 reduced". Discussed starting at
5243 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
5244 * NEWS (2.3a+): Mention this change.
5245 * data/xslt/xml2text.xsl: Update output text and expected input XML
5246 element names to match changes below.
5247 * data/xslt/xml2xhtml.xsl: Likewise.
5248 (xsl:template match="bison-xml-report"): Add missing entry in Table of
5249 Contents: "Rules useless in parser due to conflicts".
5250 * doc/bison.texinfo (Decl Summary): Reword a little.
5251 (Understanding): Update example output for changes below.
5252 * src/gram.c: (rule_useful_p): Rename to...
5253 (rule_useful_in_grammar_p): ... this.
5254 (rule_useless_p): Rename to...
5255 (rule_useless_in_grammar_p): ... this.
5256 (rule_never_reduced_p): Rename to...
5257 (rule_useless_in_parser_p): ... this.
5258 (grammar_rules_print): Update for renames.
5259 (grammar_rules_print_xml): Update for renames.
5260 (grammar_rules_never_reduced_report): Rename to...
5261 (grammar_rules_useless_report): ... this since it is used for either
5262 kind of useless rule.
5263 * src/gram.h: Reword comments and update function names in prototypes.
5264 * src/main.c (main): Say "rule useless in parser due to conflicts".
5265 * src/print-xml.c (print_rules_never_reduced): Rename to...
5266 (print_rules_useless_in_parser): ... this, and rename output XML
5267 element "rules-never-reduced" to "rules-useless-in-parser".
5268 (print_xml): Update for rename.
5269 * src/print.c (print_results): Say "Rules useless in parser due to
5270 conflicts".
5271 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
5272 (nonterminals_reduce): Say "nonterminal useless in grammar".
5273 (reduce_output): Say "Nonterminals useless in grammar".
5274 Say "Rules useless in grammar".
5275 (reduce_xml): Rename output XML element "useless" to
5276 "useless-in-grammar".
5277 (reduce_print): Don't report the count of grammatically useless rules
5278 as "rules never reduced" just because %yacc is specified.
5279 In the correct report of this count, say nonterminal(s) and rule(s)
5280 "useless in grammar".
5281 * tests/conflicts.at (S/R in initial): Update expected output.
5282 (Defaulted Conflicted Reduction): Likewise.
5283 (Unreachable States After Conflict Resolution): Likewise.
5284 * tests/existing.at (GNU pic Grammar): Likewise.
5285 * tests/reduce.at (Useless Nonterminals): Likewise.
5286 (Useless Rules): Likewise.
5287 (Reduced Automaton): Likewise.
5288 (Underivable Rules): Likewise.
5289 (Empty Language): Likewise.
5290
5291 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
5292
5293 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
5294 here document and before the EOF so that BSD's implementation of Bourne
5295 shell doesn't parse the delimiter as part of the here document.
5296 * doc/.cvsignore: Add cross-options.texi.
5297 * src/getargs.c (usage): Add a blank line after the warning categories.
5298
5299 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
5300
5301 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
5302
5303 2007-11-05 Akim Demaille <akim@epita.fr>
5304
5305 Remove Id: from bison.1.
5306 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
5307 (perl -0777 -pi -e 's/\.PP\nId): New.
5308 (.x.1): Use it to ignore the version control revision.
5309
5310 2007-11-05 Akim Demaille <demaille@gostai.com>
5311
5312 * build-aux/Makefile.am: Ship cross-options.pl.
5313 * doc/Makefile.am: Always refer to cross-options.texi with
5314 $(srcdir).
5315 (MAINTAINERCLEANFILES): Add it.
5316
5317 2007-11-04 Akim Demaille <demaille@gostai.com>
5318
5319 Generate the long/short option cross-table.
5320 * build-aux/cross-options.pl: New.
5321 * doc/Makefile.am (cross-options.texi): New.
5322 * doc/bison.texinfo: Use it.
5323
5324 2007-11-04 Akim Demaille <demaille@gostai.com>
5325
5326 Generate bison.1 using help2man.
5327 * doc/common.x, doc/bison.x: New.
5328 * doc/Makefile.am (bison.1, .x.1): New.
5329 The code is taken from autoconf-2.61/man/Makefile.am.
5330 * configure.ac: Look for help2man.
5331
5332 2007-11-04 Akim Demaille <demaille@gostai.com>
5333
5334 Complete --help.
5335 * src/getargs.c (usage): Document -W, make it clear that -d,
5336 -g and -x have optional arguments.
5337
5338 2007-11-04 Akim Demaille <demaille@gostai.com>
5339
5340 Find sha1sum when named gsha1sum.
5341 * bootstrap (find_tool): New.
5342 ($SHA1SUM): New.
5343
5344 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5345
5346 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
5347 at
5348 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
5349 * NEWS (2.3a+): Mention.
5350 * data/bison.m4 (b4_pure_if): Don't define it here.
5351 * data/c.m4 (b4_identification): Depend on individual skeletons to
5352 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
5353 values of the %define variables api.pure or api.push_pull. Define
5354 YYPURE, YYPUSH, and YYPULL accordingly.
5355 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
5356 glr.cc has already defined b4_pure_flag.
5357 * data/push.c: Define b4_pure_if based on `%define api.pure'.
5358 Remove YYPUSH and YYPULL since they're back in b4_identification again.
5359 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
5360 * doc/bison.texinfo (Pure Decl): Update.
5361 (Push Decl): Update.
5362 (Decl Summary): Add api.pure to %define entry.
5363 In %pure-parser entry, say it's deprecated and reference %define.
5364 (Pure Calling): Update.
5365 (Error Reporting): Update.
5366 (C++ Scanner Interface): Update.
5367 (How Can I Reset the Parser): Update.
5368 (Table of Symbols): In %pure-parser entry, say it's deprecated and
5369 reference %define.
5370 * src/getargs.c (pure_parser): Remove global variable.
5371 * src/getargs.h (pure_parser): Remove extern.
5372 * src/output.c (prepare): Don't define pure_flag muscle.
5373 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
5374 wrapper around `%define api.pure'.
5375 * tests/calc.at (Simple LALR Calculator): Update.
5376 (Simple GLR Calculator): Update.
5377 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
5378 Update.
5379 (GLR: Resolve ambiguity, pure, locations): Update.
5380 (GLR: Merge conflicting parses, pure, no locations): Update.
5381 (GLR: Merge conflicting parses, pure, locations): Update.
5382 * tests/glr-regression.at (Uninitialized location when reporting
5383 ambiguity): Update
5384 * tests/input.at (Unused %define api.pure): New test case.
5385 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
5386 AT_PURE_IF and AT_PURE_AND_LOC_IF.
5387 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5388
5389 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5390
5391 %define push_pull -> %define api.push_pull. Discussed starting at
5392 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
5393 * data/push.c: Expect the new name.
5394 * data/yacc.c: Likewise.
5395 * doc/bison.texinfo (Push Decl): Update.
5396 (Decl Summary): Update %define entry.
5397 (Push Parser Function): Update.
5398 (Pull Parser Function): Update.
5399 (Parser Create Function): Update.
5400 (Parser Delete Function): Update.
5401 * tests/calc.at (Simple LALR Calculator): Update.
5402 * tests/input.at (%define enum variables): Update.
5403 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5404 (Push Parsing: Multiple impure instances): Update.
5405 (Push Parsing: Unsupported Skeletons): Update.
5406 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
5407 (Exploding the Stack Size with Malloc): Update.
5408
5409 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
5410 other entries some.
5411
5412 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
5413
5414 For the XML output's terminal element, rename @number to @token-number,
5415 and add @symbol-number. In the nonterminal element, rename @number to
5416 @symbol-number. Discussed starting at
5417 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
5418 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
5419 renames.
5420 (xsl:template match="nonterminal"): Likewise.
5421 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
5422 (xsl:template match="nonterminal"): Likewise.
5423 * src/print-xml.c (print_grammar): Implement.
5424
5425 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5426
5427 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
5428 2007-10-11 change, the child elements here are items not rules.
5429 (xsl:template match="item"): New.
5430 (xsl:template match="rule"): Update for new reduced itemset.
5431 (xsl:template match="point"): Remove.
5432 (xsl:template match="empty"): For consistency with --graph, don't
5433 output "/* empty */".
5434 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
5435 line-wrap, don't pass a negative value as first-line-length since this
5436 won't work with the following changes.
5437 (xsl:template name="line-wrap"): Simplify slightly.
5438 (xsl:template name="ws-search"): Eliminate recursion.
5439 * src/print_graph.c (print_core): Don't print a reduction's lookahead
5440 set next to an item whose dot is not at the end of the RHS even if it
5441 happens to be associated with the same rule.
5442
5443 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5444
5445 Add %define lr.keep_unreachable_states.
5446 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
5447 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
5448 * src/main.c (main): Implement it.
5449 * tests/conflicts.at (Unreachable States After Conflict Resolution):
5450 Extend to test it, and fix a typo.
5451
5452 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5453
5454 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
5455 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
5456 the example .output text.
5457 * tests/regression.at (Extra lookahead sets in report): Improve wording
5458 of comments.
5459
5460 2007-10-17 Wojciech Polak <polak@gnu.org>
5461
5462 * src/print-xml.c (print_grammar): Renamed
5463 <terminal> and <nonterminal> attributes:
5464 "type" to "number" and "symbol" to "name".
5465 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
5466 Use new attribute names.
5467 (xsl:template match="nonterminal"): Likewise.
5468 * data/xslt/xml2xhtml.xsl: Likewise.
5469
5470 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
5471
5472 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
5473 (Option Cross Key): Likewise.
5474
5475 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
5476 next to an item whose dot is not at the end of the RHS even if it
5477 happens to be associated with the same rule.
5478 * src/print.c (print_core): Likewise.
5479 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
5480 (Resolved SR Conflicts): Update output.
5481 * tests/regression.at (Extra lookahead sets in report): New test case.
5482
5483 2007-10-11 Wojciech Polak <polak@gnu.org>
5484
5485 * src/print-xml.c (print_core): Remove item set
5486 redundancy.
5487 * data/xslt/bison.xsl (bison:ruleNumber): New key.
5488 Improve processing time. Suggested by Joel E. Denny.
5489 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
5490 Write xsl:param "required" attribute as comment.
5491 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
5492 (xsl:template match="rule"): Support new reduced itemset.
5493 (xsl:template match="point"): Remove.
5494 * data/xslt/xml2xhtml.xsl: Likewise.
5495
5496 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5497
5498 * src/getargs.c (version): Update copyright year.
5499
5500 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5501
5502 Make xml2dot.xsl and --graph produce the same output.
5503 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
5504 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
5505 escaped later.
5506 (xsl:template name="output-node"): Use the new escape template instead
5507 of the string-replace template directly.
5508 (xsl:template name="output-edge"): Likewise.
5509 (xsl:template name="escape"): New, escapes backslashes and newlines in
5510 addition to quotation marks.
5511 * src/graphviz.c (start_graph, output_node, output_edge): Add
5512 whitespace to output for legibility.
5513
5514 Make xml2text.xsl and --report produce the same output, and remove the
5515 XML "conflicts" element since a conflict summary is easily extracted
5516 from the automaton.
5517 * data/xslt/bison.xsl: New.
5518 (xsl:template match="state" mode="bison:count-conflicts): New.
5519 * data/xslt/xml2text.xsl: Import bison.xsl.
5520 (xsl:template match="bison-xml-report"): Instead of styling the
5521 "conflicts" element, style the "automaton" element with mode
5522 "conflicts". Unlike the former, the latter lists S/R and R/R
5523 conflicts for a state on the same line.
5524 (xsl:template match="conflicts"): Remove.
5525 (xsl:template match="conflict"): Remove.
5526 (xsl:template match="terminal"): Line-wrap the list of rules in which
5527 the terminal is used.
5528 (xsl:template match="nonterminal"): Likewise for nonterminals.
5529 (xsl:template match="automaton" mode="conflicts"): New.
5530 (xsl:template match="state" mode="conflicts"): New.
5531 (xsl:template name="line-wrap"): New.
5532 (xsl:template name="ws-search"): New.
5533 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
5534 (xsl:template match="bison-xml-report"): Instead of styling the
5535 "conflicts" element, style the "automaton" element with mode
5536 "conflicts."
5537 (xsl:template match="conflicts"): Remove.
5538 (xsl:template match="conflict"): Remove.
5539 (xsl:template match="automaton" mode="conflicts"): New.
5540 (xsl:template match="state" mode="conflicts): New.
5541 * src/conflicts.c (conflicts_output_xml): Remove.
5542 * src/conflicts.h (conflicts_output_xml): Remove prototype.
5543 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
5544 * src/print.c (print_grammar): Consistently wrap at the 66th column so
5545 the corresponding XSLT is easier. Also, never wrap between a word and
5546 the comma that follows it.
5547
5548 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5549
5550 Improve C++ namespace support. Discussed starting at
5551 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
5552 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
5553 b4_namespace_close): New macros that interpret the %define variable
5554 "namespace" so its value can contain "::" to indicate nested
5555 namespaces.
5556 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
5557 the above macros.
5558 * data/lalr1.cc (b4_namespace): Likewise.
5559 * data/location.cc (b4_namespace): Likewise.
5560 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
5561 inside a new table in the general %define entry. Document `%define
5562 namespace' there as well. Point the %name-prefix entry to it since it
5563 explains it more completely in the case of C++.
5564 (C++ Bison Interface): Mention `%define namespace' instead of
5565 %name-prefix.
5566 (Table of Symbols): Remove the `%define push_pull' entry. The %define
5567 entry suffices.
5568 * tests/c++.at (Relative namespace references): New test case.
5569 (Absolute namespace references): New test case.
5570 (Syntactically invalid namespace references): New test case.
5571 * tests/input.at (C++ namespace reference errors): New test case.
5572
5573 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5574
5575 Add syncline support and location accessor to internal %define
5576 interfaces.
5577 * data/bison.m4 (b4_percent_define_get_loc): New.
5578 (b4_percent_define_get_syncline): New.
5579 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
5580 (b4_percent_define_default): Record defining location as line 1 rather
5581 than 0 for the sake of synchronizing #line's, and define
5582 b4_percent_define_syncline(VARIABLE).
5583 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
5584 * src/muscle_tab.c (muscle_syncline_grow): New.
5585 (muscle_code_grow): Use muscle_syncline_grow.
5586 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
5587 define b4_percent_define_syncline(VARIABLE).
5588 (muscle_percent_define_get_loc): New.
5589 (muscle_percent_define_get_syncline): New.
5590 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
5591 remove some unused variables.
5592 (muscle_percent_define_default): Record defining location as line 1
5593 rather than 0 for the sake of synchronizing #line's, and define
5594 b4_percent_define_syncline(VARIABLE).
5595 (muscle_percent_define_check_values): Use
5596 muscle_percent_define_get_loc.
5597 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
5598 (muscle_percent_define_get_syncline): Prototype.
5599 * tests/skeletons.at (%define Boolean variables: invalid skeleton
5600 defaults): Update output for location change.
5601 (Complaining during macro argument expansion): Extend to test
5602 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
5603
5604 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
5605
5606 Fix some error-reporting macro bugs.
5607 * data/bison.m4 (b4_cat): New.
5608 (b4_error, b4_error_at): Use b4_cat to send error directives directly
5609 to stdout so they don't become arguments to other macros. Update
5610 comments and add examples.
5611 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
5612 add examples.
5613 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
5614 after printing the error directive so that M4 doesn't report subsequent
5615 problems that are induced by this problem.
5616 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
5617 instead of just in them. Recognize @\n in both places. Both expand to
5618 the empty string. Needed by b4_cat.
5619 * tests/skeletons.at (Complaining during macro argument expansion):
5620 New test case.
5621 (Fatal errors make M4 exit immediately): New test case.
5622
5623 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
5624
5625 Implement --print-datadir.
5626 * src/getargs.c (usage): Mention.
5627 (PRINT_DATADIR_OPTION): New anonymous enum member.
5628 (long_options): Add entry for it.
5629 (getargs): Add case for it calling compute_pkgdatadir.
5630 * src/output.c (output_skeleton): Encapsulate data directory
5631 computation from here...
5632 (prepare): ... and from here...
5633 (compute_pkgdatadir): ... into this new function.
5634 * src/output.h (compute_pkgdatadir): Prototype.
5635
5636 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
5637
5638 * src/print-xml.c (escape_bufs): New static global variable
5639 replacing...
5640 (xml_escape_n): ... the static local variable buf here.
5641 (print_xml): Free memory for escape_bufs.
5642 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
5643
5644 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
5645
5646 Replace `%push-parser' and `%push-pull-parser' with
5647 `%define push_pull "push"' and `%define push_pull "both"'.
5648 `%define push_pull "pull"' is the default.
5649 * doc/bison.texinfo (Push Decl, Push Parser Function,
5650 Pull Parser Function, Parser Create Function, Parser Delete Function):
5651 Update declarations.
5652 (Decl Summary, Table of Symbols): Replace %push-parser and
5653 %push-pull-parser entries with a %define push_pull entry.
5654 * data/bison.m4 (b4_percent_define_check_values): New macro.
5655 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
5656 definitions...
5657 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
5658 definitions...
5659 * data/push.c: ... to here and compute them from the value of the
5660 %define variable push_pull.
5661 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
5662 parsing requests here...
5663 * data/yacc.c: ... hack this to switch to push.c any time
5664 b4_use_push_pull_flag or the %define variable push_pull is set. This
5665 will go away when we mv push.c yacc.c.
5666 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
5667 push parsing is not supported since unused %define variables are
5668 reported anyway.
5669 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
5670 * src/muscle_tab.h (muscle_percent_define_check_values): Update
5671 comments for consistency with b4_percent_define_check_values.
5672 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
5673 muscles.
5674 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
5675 Remove.
5676 (prologue_declaration): Remove %push-parser and %push-pull-parser
5677 rules.
5678 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
5679 * tests/calc.at: Update declarations.
5680 * tests/input.at (%define enum variables): New test case.
5681 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
5682 declaration.
5683 (Push Parsing: Multiple impure instances): Update declaration.
5684 (Push Parsing: Unsupported Skeletons): New test case.
5685 * tests/torture.at (Exploding the Stack Size with Alloca): Update
5686 declaration.
5687 (Exploding the Stack Size with Malloc): Update declaration.
5688
5689 2007-09-24 Wojciech Polak <polak@gnu.org>
5690
5691 Add XSLT transformations.
5692
5693 * data/xslt/xml2dot.xsl: Transform XML into DOT.
5694 * data/xslt/xml2text.xsl: Transform XML into plain text.
5695 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
5696 * data/Makefile.am (xsltdir): New variable.
5697 (dist_xslt_DATA): Add xslt/*.xsl files.
5698
5699 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
5700
5701 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
5702 Problem reported by Wojciech Polak.
5703 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
5704 (xml_printf): Undo change I made on 21 September; that is,
5705 indent 2 spaces, not 1.
5706
5707 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
5708
5709 Pacify ./configure --enable-gcc-warnings.
5710 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
5711 `char const *' instead of `char *'.
5712 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
5713 local variable `sep'.
5714
5715 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5716
5717 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
5718 elsewhere.
5719 * src/print-xml.c: Prefer "const" after types; that's more consistent.
5720 (xml_printf): Indent just 1 space for level.
5721 (e_char, xlate_char): Remove.
5722 (xml_escape_string): Rewrite to avoid undefined behavior (used
5723 storage that was freed from the stack).
5724 (xml_escape_n): Don't bother checking for subscript error.
5725
5726 2007-09-21 Wojciech Polak <polak@gnu.org>
5727
5728 Add Bison XML Automaton Report.
5729
5730 Add support for an -x option to generate an XML report.
5731 It is not documented yet.
5732 * src/print-xml.c: New file.
5733 * src/print-xml.h: Likewise.
5734 * lib/timevar.def (TV_XML): New var.
5735 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
5736 * src/conflicts.c: Include print-xml.h.
5737 (solved_conflicts_xml_obstack): New var.
5738 (log_resolution, conflicts_solve, conflicts_free):
5739 Add support for XML report.
5740 (conflicts_output_val): New function.
5741 * src/conflicts.h (conflicts_output_val): New decl.
5742 * src/files.c (spec_xml_file): New var.
5743 (compute_output_file_names, output_file_names_free): Add XML support.
5744 * src/files.h (spec_xml_file): New decl.
5745 * src/getargs.c (xml_flag): New var.
5746 (usage, short_options, long_options, getargs): Add XML support.
5747 * src/getargs.h (xml_flag): New decl.
5748 * src/gram.c: Include print-xml.h.
5749 (rule_lhs_print_xml, rule_rhs_print_xml):
5750 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
5751 New functions.
5752 * src/gram.h: Declare external ones.
5753 * src/main.c: Include print-xml.h.
5754 (main): Add XML support.
5755 * src/reduce.c: Include print-xml.h.
5756 (reduce_xml): New function.
5757 * src/reduce.h: Declare it.
5758 * src/state.c: Include print-xml.h.
5759 (state_new): Add XML support.
5760 (state_rule_lookahead_tokens_print_xml): New function.
5761 * src/state.h: Declare it.
5762 (struct state): New member solved_conflicts_xml.
5763 * src/symtab.c (symbol_class_get_string): New function.
5764 * src/symtab.h: Declare it.
5765
5766 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5767
5768 * GNUmakefile: Switch to coreutils's version.
5769 * bootstrap: Likewise.
5770 * Makefile.cfg: Adjust to new GNUmakefile.
5771 * README-hacking: Likewise.
5772
5773 Import from gnulib:
5774
5775 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
5776 Bruno Haible <bruno@clisp.org>
5777
5778 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5779 and is a script that invokes bison. Tighten the code. Add comments.
5780
5781 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
5782
5783 Spell "boolean" as "Boolean". Reported by Akim Demaille.
5784 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
5785 * doc/bison.texinfo (Decl Summary): Fix.
5786 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
5787 * tests/input.at (Boolean %define variables): Update output.
5788 * tests/skeletons.at (%define boolean variables: invalid skeleton
5789 defaults): Rename to...
5790 (%define Boolean variables: invalid skeleton defaults): ... this and
5791 update output.
5792
5793 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
5794
5795 In impure push mode, don't allow more than one yypstate to be allocated
5796 since multiple impure parsers would corrupt yynerrs.
5797 * data/push.c (yypstate_allocated): New static global variable
5798 initialized to 0.
5799 (yypull_parse): If yypstate_new returns 0, don't report it as memory
5800 exhaustion if yypstate_allocated is 1, but still return 2.
5801 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
5802 already 1. Otherwise, set it to 1.
5803 (yypstate_delete): Set it to 0.
5804 * tests/push.at (Push Parsing: Multiple impure instances): New test
5805 case.
5806
5807 2007-08-17 Bob Rossi <bob@brasko.net>
5808
5809 * doc/bison.texinfo (Push Decl): Document the push parser.
5810 (Table of Symbols): Ditto.
5811 (Pure Decl): Ditto.
5812 (Decl Summary): Ditto.
5813 (Multiple Parsers, Push Parser Function, Pull Parser Function,
5814 Parser Create Function, Parser Delete Function):
5815 Add new push parser symbols.
5816 (Table of Symbols): Document push-parser, push-pull-parser,
5817 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
5818
5819 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
5820
5821 Update to GPLv3.
5822 * doc/gpl-3.0.texi: New file.
5823 * doc/gpl.texi: Remove.
5824 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
5825 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
5826 * README-hacking, TODO, bootstrap, bootstrap.conf:
5827 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
5828 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
5829 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
5830 * data/lalr1.cc, data/lalr1.java, data/location.cc:
5831 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
5832 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
5833 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
5834 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
5835 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
5836 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
5837 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
5838 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
5839 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
5840 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
5841 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
5842 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
5843 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
5844 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
5845 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
5846 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
5847 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
5848 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
5849 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
5850 * src/complain.c, src/complain.h, src/conflicts.c:
5851 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
5852 * src/files.h, src/flex-scanner.h, src/getargs.c:
5853 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
5854 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
5855 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
5856 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
5857 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
5858 * src/print.c, src/print.h, src/print_graph.c:
5859 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
5860 * src/reduce.h, src/relation.c, src/relation.h:
5861 * src/revision.h, src/scan-code.h, src/scan-code.l:
5862 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
5863 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
5864 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
5865 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
5866 * tests/Makefile.am, tests/actions.at, tests/c++.at:
5867 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
5868 * tests/existing.at, tests/glr-regression.at:
5869 * tests/headers.at, tests/input.at, tests/java.at:
5870 * tests/local.at, tests/output.at, tests/push.at:
5871 * tests/reduce.at, tests/regression.at, tests/sets.at:
5872 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
5873 * tests/torture.at:
5874 Update to GPLv3.
5875
5876 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5877
5878 Get rid of broken %no-parser, -n, and --no-parser implementation and
5879 documentation.
5880 * TODO: Don't mention them.
5881 * doc/bison.1: Likewise.
5882 * doc/bison.texinfo (Decl Summary): Likewise.
5883 (Bison Options): Likewise.
5884 (Option Cross Key): Likewise.
5885 * src/getargs.c (no_parser_flag): Remove global variable.
5886 (usage): Don't print description of -n and --no-parser.
5887 (long_options): Remove --no-parser entry here.
5888 (getargs): Remove -n case in the switch here.
5889 * src/getargs.h (no_parser_flag): Remove extern.
5890 * tests/regression.at (Web2c Actions): Remove comment that mentions
5891 --no-parser.
5892
5893 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5894
5895 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
5896 name user variables starting with `yy'. Just pass NULL instead of a
5897 dummy local &yylval to yypush_parse.
5898 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
5899 starting with `yy'.
5900
5901 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
5902
5903 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
5904 true since it's then always used regardless of whether yyoverflow is
5905 defined. Reported by Christian Burger at
5906 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
5907 * THANKS: Add Christian Burger.
5908
5909 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5910 node names: say "Decl Summary" not "Bison Declaration Summary".
5911
5912 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
5913
5914 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
5915 determine whether this function has already complained about an invalid
5916 value for a %define boolean variable, don't check whether Bison has
5917 ever examined the value. As written, the check was a tautology.
5918 Instead, record and check for this complaint using a separate muscle.
5919
5920 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5921
5922 Fix push parsing memory leak reported by Brandon Lucia at
5923 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
5924 * THANKS: Add Brandon Lucia.
5925 * data/push.c (yypstate_delete): Free the stack if it was reallocated
5926 but the parse never completed and thus freed it.
5927 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
5928 * tests/testsuite.at: Include push.at.
5929 * test/push.at: New.
5930 (Push Parsing: Memory Leak for Early Deletion): New test case.
5931
5932 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
5933
5934 Improve handling of multiple S/R conflicts in the same state and of S/R
5935 conflicts involving multiple reductions.
5936 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
5937 set for a state here or Bison will abort if it is reassigned on a
5938 later conflicted reduction in the same state.
5939 Similarly, don't finalize and assign the solved conflicts report here
5940 or it will be lost if it is reassigned on a later conflicted reduction
5941 in the same state.
5942 (set_conflicts): Instead, assign them both here after all S/R conflicts
5943 in the state have been fully examined.
5944 * src/print.c (shift_set): Rename to...
5945 (no_reduce_set): ... this.
5946 (print_reductions): Update for rename, and add %nonassoc error action
5947 tokens to no_reduce_set so that, when printing the first remaining
5948 reduction on an error action token, the reduction is enclosed in
5949 brackets.
5950 (print_results): Update for rename.
5951 * tests/conflicts.at (Solved conflicts report for multiple reductions
5952 in a state): New test case.
5953 (%nonassoc error actions for multiple reductions in a state): New test
5954 case.
5955
5956 * src/main.c (main): Don't depend on C99 features.
5957
5958 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
5959
5960 * build-aux/.cvsignore: Add compile.
5961 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
5962 uniwidth.
5963
5964 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
5965
5966 * bootstrap (slurp): Create target directories that don't exist.
5967 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
5968
5969 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5970
5971 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
5972 than item number.
5973 * closure.c (closure): Likewise.
5974 * state.h (reductions): Comment sorting of rules.
5975 (state): Comment sorting of items.
5976
5977 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
5978
5979 Fix C++ test cases after recent Gnulib changes. Discussed starting at
5980 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
5981 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
5982 definition in order to avoid Gnulib headers since we don't use config.h
5983 here.
5984 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
5985 rather than AT_DATA so that config.h is included.
5986
5987 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
5988
5989 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
5990 instead of fprintf. Guard these functions with #if YYDEBUG instead of
5991 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
5992 and so that YYFPRINTF is guaranteed to be defined here.
5993
5994 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5995
5996 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
5997 with...
5998 (muscle_percent_define_check_values): ... this more helpful function.
5999 Again, it's not used yet, but it will be.
6000 * src/muscle_tab.h: Likewise.
6001
6002 Improve some comments in parser table construction.
6003 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
6004 (generate_states): Don't mention ruleset, which is internal to closure.
6005 * src/closure.c (closure): Explain sorting of core and itemset, which
6006 is required for this function to behave correctly.
6007 * src/closure.h (closure): Mention sorting.
6008
6009 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
6010
6011 * src/lalr.c (state_lookahead_tokens_count): For code readability,
6012 move the check for disabled transitions to an aver since conflict
6013 resolution hasn't happened yet.
6014
6015 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
6016 labels a state as inconsistent just because it has error transitions.
6017 The original form of this check appeared in revision 1.1 of lalr.c,
6018 which was committed on 1991-12-21. Now (at least), changing the
6019 consistency label on such a state appears to have no useful effect in
6020 any of the places it is examined, which I enumerate below. The key
6021 point to understanding each item in this enumeration is that a state
6022 with an error transition is labelled consistent in the first place only
6023 if it has no rules, so the check cannot matter for states that have
6024 rules. (1) Labelling a state as inconsistent will cause set_conflicts
6025 to try to identify its conflicts, and a state must have *rules* to have
6026 conflicts. (2) Labelling a state as inconsistent will affect how
6027 action_row sets the default *rule* for the state. (3) Labelling a
6028 state as inconsistent will cause build_relations to add lookback edges
6029 to *rules* in that state.
6030 * src/state.h (struct state): Word the comment for member consistent
6031 more carefully.
6032
6033 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
6034
6035 Don't depend on C99 features.
6036 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
6037 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
6038 * src/reader.c (check_and_convert_grammar): Fix for-loop.
6039 * src/state.c (state_mark_reachable_states): Fix for-loop.
6040 (state_remove_unreachable_states): Fix for-loop.
6041
6042 Don't widen struct state with member reachable just to temporarily
6043 record reachability. Instead, use a local bitset.
6044 * src/state.h (struct state): Remove member.
6045 * src/state.c (state_new): Don't initialize it.
6046 (state_mark_reachable_states): Rename to...
6047 (state_record_reachable_states): ... this, and use bitset.
6048 (state_remove_unreachable_states): Use bitset.
6049
6050 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
6051
6052 * src/Makefile.am (yacc): Quote target action commands properly so
6053 that the yacc script isn't corrupt. Reported by Hans Aberg at
6054 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
6055
6056 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
6057 the case of pure parsers. Reported by Frans Englich at
6058 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
6059 * THANKS: Add Frans Englich.
6060
6061 * NEWS (2.3a+): In the %code entry, reference section `Bison
6062 Declaration Summary' from the manual now since the %code summary has
6063 moved there.
6064 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
6065 in the rules section must be terminated by semicolons.
6066
6067 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
6068
6069 Extend the front-end API for %define variables to more completely
6070 mirror the back-end. This will be useful in the future.
6071 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
6072 Update comments to mention the new front-end counterparts of these
6073 macros.
6074 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
6075 for muscle_string_decode and muscle_location_decode.
6076 (muscle_string_decode): New static function.
6077 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
6078 (muscle_percent_define_get, muscle_percent_define_ifdef): New
6079 functions.
6080 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
6081 muscle_percent_define_get to mimic the b4_percent_define_flag_if
6082 implementation more closely.
6083 (muscle_percent_define_invalid_value): New function.
6084 * src/muscle_tab.h (muscle_percent_define_get,
6085 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
6086 Prototype.
6087
6088 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
6089
6090 * NEWS (2.3a+): Mention yesterday's state-removal change.
6091 (2.3a): Remove the %language entry, which was added after 2.3a.
6092 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
6093 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
6094 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
6095 tests/existing.at: Update copyright date.
6096
6097 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
6098
6099 If conflict resolution makes states unreachable, remove those states,
6100 report rules that are then unused, and don't report conflicts in those
6101 states.
6102 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
6103 New global function.
6104 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
6105 function.
6106 * src/main.c (main): After conflict resolution, remove the unreachable
6107 states and update all data structures that reference states by number.
6108 * src/state.c (state_new): Initialize each state's reachable member to
6109 false.
6110 (state_mark_reachable_states): New static function.
6111 (state_remove_unreachable_states): New global function.
6112 * src/state.h (struct state): Add member bool reachable.
6113 (state_remove_unreachable_states): Prototype.
6114 * tests/conflicts.at (Unreachable States After Conflict Resolution):
6115 New test case.
6116 * tests/existing.at (GNU pic Grammar): Update test case output now that
6117 an unused rule is discovered.
6118
6119 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
6120
6121 Minor code cleanup in parser table construction.
6122 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
6123 (new_itemsets, save_reductions): Update for rename to nitemset.
6124 * src/closure.c (nritemset): Rename to...
6125 (nitemset): ... this since the "r" appears to meaningless and isn't
6126 used in the comments.
6127 (closure): Update for rename.
6128 * src/closure.h (nritemset): Update extern to...
6129 (nitemset): ... this.
6130 * src/lalr.c (LA): Fix a typo in comments.
6131 * src/print.c (print_core): Update for rename to nitemset.
6132 * src/print_graph.c (print_graph): Likewise.
6133 * src/state.h: Fix some typos in header comments.
6134
6135 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
6136
6137 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
6138 still sticks to ASCII. Sorry!
6139
6140 * README-hacking: New file, taken mostly from coreutils, with changes
6141 for Bison. Contains much of the contents of:
6142 * README-cvs: Remove.
6143 * bootstrap: Sync from gnulib.
6144 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
6145 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
6146
6147 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
6148
6149 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
6150 Setzer.
6151 (Java Differences): Fix some typos.
6152 * THANKS: Add Sebastian Setzer.
6153
6154 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
6155
6156 * data/java.m4 (b4_single_class_if): Remove.
6157 (b4_abstract_if): Look at "%define abstract".
6158 (b4_lexer_if): New.
6159 (b4_union_name): Rename...
6160 (b4_yystype): ... to this. Map to "%define stype".
6161 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
6162 b4_maybe_throws): Fix quoting.
6163 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
6164 * data/lalr1.java (Lexer interface): Always define.
6165 (Lexer interface within parser class): Remove.
6166 (YYLexer class): New, used when "%code lexer" is present.
6167 (constructor): When "%code lexer" is used, pass %lex-param
6168 to the lexer constructor.
6169 (yylex, yyparse): Remove %lex-param from method invocations
6170 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
6171
6172 * doc/bison.texinfo (Java Bison Interface): Mention "%define
6173 abstract". Rename "%define union_name" to "%define stype".
6174 Rename method names according to previous patch.
6175 (Java Scanner Interface): Describe "%code lexer" instead of
6176 "%pure-parser" and "%define single_class".
6177 (Java Differences): Mention "%code lexer".
6178
6179 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
6180 Include scanner here, using macros from tests/local.at.
6181 (AT_DATA_CALC_Y): Remove final argument.
6182 (_AT_CHECK_JAVA_CALC): Likewise.
6183 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
6184 of %locations and %error-verbose.
6185 (main): Test with and without %lex-param.
6186 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
6187 (AT_BISON_OPTION_POPDEFS): Pop it.
6188
6189 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6190
6191 DJGPP spefic issue. Inhibit the use of disallowed characters for
6192 file name genertion on Win98, WinXP, etc. These are |<>":?*\
6193 and concern testsuite case 46.
6194 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
6195 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
6196 * djgpp/config.bat: Inhibit the use of disallowed characters.
6197
6198 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6199
6200 Miscellaneous %define and %code cleanup.
6201 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
6202 values are interpreted.
6203 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
6204 documentation a little more.
6205 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
6206 muscle_percent_define_insert, muscle_percent_code_grow): New
6207 functions/macros.
6208 * src/muscle_tab.h (muscle_percent_define_insert,
6209 muscle_percent_code_grow): Prototype.
6210 * src/parse-gram.y (prologue_declaration): Use
6211 muscle_percent_define_insert and muscle_percent_code_grow when parsing
6212 %define and %code directives.
6213
6214 Make it easy to share %define boolean variables between the front-end
6215 and back-end. Though not used yet, this will be useful in the future.
6216 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
6217 Bison uses of names rather than just skeleton uses of names.
6218 (b4_percent_define_get, b4_percent_define_ifdef): Rename
6219 b4_percent_define_skeleton_variables(VARIABLE) to
6220 b4_percent_define_bison_variables(VARIABLE).
6221 (b4_percent_code_get, b4_percent_code_ifdef): Rename
6222 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
6223 b4_percent_code_bison_qualifiers(QUALIFIER).
6224 (b4_check_user_names_wrap): Update for renames.
6225 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
6226 muscle_percent_define_default): New functions mimicking
6227 b4_percent_define_flag_if and b4_percent_define_default.
6228
6229 For %define variables, report locations for invalid values and
6230 redefinitions.
6231 * data/bison.m4 (b4_percent_define_flag_if): Read
6232 b4_percent_define_loc(VARIABLE) to report the location of an invalid
6233 value for VARIABLE.
6234 (b4_percent_define_default): Save a special location in
6235 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
6236 must later be reported as invalid.
6237 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
6238 functions.
6239 (muscle_percent_define_insert): Record the location of VARIABLE in
6240 muscle percent_define_loc(VARIABLE), and use it to report the previous
6241 location for a redefinition.
6242 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
6243 (muscle_percent_define_default): Update like b4_percent_define_default.
6244 (muscle_grow_user_name_list): Rename to...
6245 (muscle_user_name_list_grow): ... this for consistency and use
6246 muscle_location_grow.
6247 * src/muscle_tab.h (muscle_location_grow): Prototype.
6248 * tests/input.at (%define errors): Update expected output.
6249 * tests/skeletons.at (%define boolean variables: invalid skeleton
6250 defaults): New test case.
6251
6252 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
6253
6254 * src/print.c (lookahead_set, state_default_rule): Remove.
6255 (print_reductions): Replace state_default_rule invocation with
6256 equivalent use of yydefact, which was computed in token_actions in
6257 tables.c.
6258 (print_results): Don't allocate lookahead_set.
6259
6260 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
6261
6262 * data/lalr1.java: Prefix all private members with yy.
6263
6264 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
6265
6266 Use YYFPRINTF instead of fprintf where appropriate. Reported by
6267 Sebastien Fricker at
6268 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
6269 * THANKS: Add Sebastien Fricker.
6270 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
6271 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
6272 accept a variable number of arguments.
6273
6274 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
6275
6276 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
6277
6278 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6279
6280 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
6281 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
6282 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
6283
6284 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
6285
6286 Undo my 2007-02-07 change, switching back to the c-strcase module
6287 introduced in the 2007-02-03 change. Bruno Haible reported that
6288 the 2007-02-07 change would be dangerous in Turkish if we add a
6289 language whose name contains "i", since "i" is not lowercase "I"
6290 in Turkish.
6291 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
6292 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
6293 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
6294 * m4/.cvsignore: Remove strcase.m4.
6295 * src/getargs.c: Revert 2007-02-07 change, as follows.
6296 Include c-strcase.h.
6297 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
6298
6299 2007-02-11 Bruno Haible <bruno@clisp.org>
6300
6301 Enable the Java related testsuite tests when the only Java compiler
6302 found is a gcj < 4.3. Discussed at
6303 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
6304 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
6305
6306 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
6307
6308 * data/Makefile.am: Update copyright date.
6309 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
6310 yypstate_new returns NULL.
6311 (yypstate_new): Return NULL if malloc does.
6312 * src/reader.c (packgram): Move translation of rule actions from the
6313 beginning of packgram to...
6314 (check_and_convert_grammar): ... here right before packgram is invoked
6315 so it's easier to write more complete comments, and remove redundant
6316 code.
6317
6318 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
6319
6320 As in semantic actions, make @$ in %initial-action, %destructor, and
6321 %printer imply %locations.
6322 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
6323 scanning @$.
6324 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
6325 (@$ in %initial-action implies %locations,
6326 @$ in %destructor implies %locations,
6327 @$ in %printer implies %locations): ... these new test cases.
6328
6329 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
6330
6331 Undo most of the 2007-02-03 change, switching to the strcase module
6332 now that gnulib strcase has been fixed.
6333 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
6334 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
6335 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
6336 * m4/.cvsignore: Add strcase.m4.
6337 * src/getargs.c: Revert 2007-02-03 change, as follows.
6338 Don't include c-strcase.h.
6339 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
6340 strcasecmp has "unspecified behavior" outside the POSIX locale,
6341 but it works fine in practice if at least one argument is ASCII,
6342 as is the case in Bison.
6343
6344 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
6345
6346 * tests/java.at: Skip tests if only one of javac/java is present.
6347 Reported by Joel E. Denny.
6348 * tests/atlocal.in: Adjust copyright years.
6349
6350 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
6351
6352 * data/lalr1.java (Stack): Work around old verifiers that disallow
6353 access to the private fields of an inner class, from the outer class.
6354 We can make Stack's fields public because user code doesn't have access
6355 to the instance of Stack used by parse(). Reported by Paul Eggert.
6356
6357 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
6358
6359 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
6360 the right spot for these files?
6361 * bootstrap.conf (gnulib_modules): Add c-strcase.
6362 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
6363 c-strncasecmp.c.
6364 * src/getargs.c: Include c-strcase.h.
6365 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
6366 to avoid unspecified behavior.
6367
6368 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
6369
6370 * doc/bison.texinfo (Decl Summary): Correct typo.
6371
6372 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
6373
6374 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
6375 Complain if the value does not match empty, "true" or "false".
6376 * data/c++.m4: Adjust default definitions of %define variables.
6377 * data/java.m4: Adjust default definitions of %define variables.
6378 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
6379 to above behavior.
6380 * tests/input.at (Boolean %define variables): Test new behavior.
6381
6382 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
6383
6384 * NEWS: Mention java.
6385 * TODO: Remove things that are done.
6386 * bootstrap.conf: Add javacomp-script and javaexec-script.
6387 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
6388
6389 * data/Makefile.am: Add new files.
6390 * data/java-skel.m4: New.
6391 * data/java.m4: New.
6392 * data/lalr1.java: New.
6393
6394 * doc/bison.texinfo: Put "A Complete C++ Example" under
6395 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
6396 under Other Languages.
6397
6398 * src/getargs.c (valid_languages): Add Java.
6399 * src/getargs.h (struct bison_language): Update size of string fields.
6400
6401 * tests/Makefile.am: Add java.at.
6402 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
6403 * tests/java.at: New.
6404 * tests/testsuite.at: Include it.
6405
6406 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
6407
6408 Clean up.
6409 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
6410 at_directive_argv arguments so these no longer have to be global
6411 variables. Also, update the implementation for the following changes.
6412 (fail_for_at_directive_too_many_args,
6413 fail_for_at_directive_too_few_args): Add at_directive_name argument.
6414 (at_directive_name): Remove as at_directive_argv[0] will be used for
6415 this now.
6416 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
6417 for the directive name.
6418 (at_directive_argc, at_directive_argv): Make these local within
6419 skel_lex instead of global.
6420 (INITIAL): Update directive start action for above changes.
6421 (SC_AT_DIRECTIVE_ARG): Rename to...
6422 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
6423 (SC_AT_DIRECTIVE_SKIP_WS): Update.
6424 (scan_skel): Move yylex_destroy to...
6425 (skel_scanner_free): ... here.
6426 * tests/skeletons.at (installed skeleton file name): Rename to...
6427 (installed skeleton file names): ... this.
6428
6429 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
6430
6431 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
6432 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
6433 Summary" not "Directives".
6434 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
6435 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
6436 since the former is now the more complete one.
6437 (Prologue Alternatives): Likewise and do the same for %defines.
6438 (Table of Symbols): Add summary of %code, add summary of %define, and
6439 move full %code documentation to...
6440 (Decl Summary): ... here for consistency with other entries in these
6441 sections.
6442 Move %define entry in order to keep this list alphabetized.
6443 Reword %define entry a little to put less emphasis on the skeleton
6444 concept, which most users shouldn't have to think about.
6445
6446 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
6447
6448 Adjust to recent gnulib changes.
6449 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
6450 Add string.h, string_.h, unistd_.h, wchar_.h.
6451 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
6452 * src/system.h: Don't include <stpcpy.h>; this is now done by
6453 <string.h>.
6454
6455 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
6456
6457 Simplify implementation of unqualified %code, implement macros for
6458 uniform treatment of boolean %define flags. Document %define.
6459 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
6460 b4_percent_code_ifdef): New.
6461 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
6462 * data/c++.m4: Define default value for global_tokens_and_yystype.
6463 * data/glr.cc: Likewise.
6464 * data/location.cc: Use b4_percent_define_flag_if.
6465
6466 * doc/bison.texinfo (Decl Summary): Document %define.
6467
6468 * src/parse-gram.y (Unqualified %code): Change muscle name to
6469 b4_percent_code().
6470 (content.opt): Default to empty.
6471
6472 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6473
6474 Implement support for relative and absolute skeleton file names.
6475 Discussed starting at
6476 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
6477 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
6478 (Bison Options): Document in --skeleton entry.
6479 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
6480 full_skeleton can't necessarily hold all of pkgdatadir.
6481 If the specified skeleton file name contains a `/', don't prepend
6482 pkgdatadir.
6483 * src/parse-gram.y (prologue_declaration): If the specified skeleton
6484 file name contains a `/', prepend the grammar file directory.
6485 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
6486 * skeletons.at: New file.
6487 (relative skeleton file names): New test case.
6488 (installed skeleton file names): New test case.
6489 * tests/testsuite.at: Include skeletons.at.
6490
6491 * bootstrap: Update copyright to 2007.
6492
6493 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
6494
6495 * bootstrap: Remove occurrences of .#bootmp from the files.
6496
6497 2007-01-17 Akim Demaille <akim@epita.fr>
6498
6499 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
6500 nonterminals.
6501 Use per-type %printer.
6502
6503 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6504
6505 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
6506 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6507 djgpp/config.site, src/files.c, src/files.h, src/main.c,
6508 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
6509 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
6510 tests/glr-regression.at, tests/input.at, tests/local.at,
6511 tests/output.at, tests/torture.at: Update copyright to 2007.
6512
6513 2007-01-16 Akim Demaille <akim@epita.fr>
6514
6515 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
6516 error code.
6517 (Calc++ Scanner): Exit with failure if we can't open the input
6518 file.
6519 Accept "-" standing for stdin.
6520 (Calc++ Top Level): Print the result only if the parsing was
6521 successful.
6522
6523 2007-01-16 Akim Demaille <akim@epita.fr>
6524
6525 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
6526
6527 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
6528 and Joel E. Denny <jdenny@ces.clemson.edu>
6529
6530 Clean up %define and %code implementation in M4 some. Most
6531 importantly, rename all related macros to be in the b4_percent_define
6532 and b4_percent_code namespaces. Also, complete support for `.' in
6533 %define variable names and %code qualifiers.
6534 * data/bison.m4 (b4_check_user_names): Check for special
6535 "SKELETON-NAMESPACE(name)" macros instead of using two nested
6536 m4_foreach loops.
6537 (b4_get_percent_define, b4_get_percent_code): Rename to...
6538 (b4_percent_define_get, b4_percent_code_get): ... these.
6539 Extend documentation with examples.
6540 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
6541 b4_percent_define_skeleton_variables and
6542 b4_percent_code_skeleton_qualifiers.
6543 Expect any value for the %define variable `foo' to be stored in the
6544 macro named `b4_percent_define(foo)'; expect any %code blocks for the
6545 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
6546 expect any unqualified %code blocks to be stored in a macro named
6547 `b4_percent_code_unqualified'.
6548 Use m4_indir so that %define variable names and %code qualifiers can
6549 contain `.', which is allowed by the grammar parser.
6550 (b4_percent_define_default): New macro to set a default value for a
6551 %define variable.
6552 (m4_wrap): Update wrapped code, and fix some underquoting.
6553 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
6554 Expect grammar uses of %define variables and %code qualifiers to be
6555 defined in b4_percent_define_user_variables and
6556 b4_percent_code_user_qualifiers.
6557 * data/c++.m4: Use b4_percent_define_default rather than
6558 m4_define_default. Fix some underquoting. Skeleton usage of %define
6559 variable define_location_comparison now implies skeleton usage of
6560 %define variable filename_type.
6561 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6562 data/push.c, data/yacc.c: Update macro names.
6563 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
6564 muscle names.
6565
6566 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6567
6568 DJGPP specific issues.
6569
6570 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
6571 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
6572
6573 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6574
6575 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
6576 run parsers in all tests so that Valgrind is invoked during
6577 maintainer-check-valgrind.
6578 (Duplicate representation of merged trees): Free all semantic values.
6579 (Duplicated user destructor for lookahead): Likewise.
6580
6581 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6582
6583 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
6584 command-line prefix.
6585 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
6586 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
6587 miss Valgrind messages.
6588 (Exploding the Stack Size with Malloc): Likewise.
6589
6590 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6591
6592 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
6593 locals. Reported by Juan Manuel Guerrero at
6594 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
6595 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
6596 Fix some indentation also.
6597 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
6598 explaining this issue.
6599
6600 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
6601 and Joel E. Denny <jdenny@ces.clemson.edu>
6602
6603 Simplify union and prologue handling, and escape union and lex/parse
6604 params with digraphs.
6605 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
6606 values to the empty string since these are no longer guaranteed
6607 initialized by the front-end.
6608 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
6609 braces around b4_user_stype since this is no longer done by the
6610 front-end.
6611 * src/files.c, src/files.h (pre_prologue_obstack,
6612 post_prologue_obstack): Remove.
6613 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
6614 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
6615 with digraphs. This fixes lex params and parse params.
6616 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
6617 * src/output.c (prepare): Remove muscle insertion of the prologues.
6618 (output): Remove freeing of pre_prologue_obstack and
6619 post_prologue_obstack.
6620 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
6621 than prologue_augment for prologue parsing so you don't need prologue
6622 obstacks.
6623 (grammar_declaration): For %union RHS, use `braceless' instead of
6624 "{...}" so that braces are already stripped and code is escaped with
6625 digraphs.
6626 * src/reader.c (prologue_augment): Remove.
6627 (reader): Remove initialization of pre_prologue_obstack and
6628 post_prologue_obstack.
6629 * src/reader.h (prologue_augment): Remove.
6630
6631 * data/c.m4: Remove stray parenthesis.
6632
6633 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6634
6635 Remove quotes from variables names in %define directives and from
6636 qualifiers in %code directives, and restrict the characters that are
6637 allowed in them to M4-friendly ones. For %define, continue to support
6638 the quoted form as a deprecated feature. Discussed starting at
6639 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
6640 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
6641 %code.
6642 * doc/bison.texinfo (Prologue Alternatives): Update.
6643 (Decl Summary): In %defines entry, update mention of `%code requires'
6644 and `%code provides'.
6645 (C++ Location Values): Update %define uses.
6646 (Calc++ Parser Interface): Likewise.
6647 (Calc++ Parser): Likewise, and update `%code requires' uses.
6648 (Table of Symbols): Update %code documentation.
6649 * src/parse-gram.y (prologue_declaration): For %define variables, use
6650 `variable' instead of `STRING'.
6651 (grammar_declaration): For %code qualifiers, use `ID' instead of
6652 `STRING'.
6653 (variable): New nonterminal that takes an `ID' or a `STRING'.
6654 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
6655 and %define uses.
6656 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
6657 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
6658 (%define errors): Update %define uses.
6659
6660 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6661
6662 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
6663 instead of muscle_insert for %define values so that M4-special
6664 characters are replaced with digraphs.
6665 * tests/input.at (%define errors): Extend to check weird values.
6666
6667 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6668
6669 Instead of having skeletons declare all valid %define variables and
6670 %code qualifiers, provide macros that retrieve the associated values
6671 and build these lists automatically. Thus Bison will now warn when a
6672 variable or qualifier is not used by the skeleton in the current
6673 invocation regardless of whether it might sometimes be used by that
6674 skeleton in other invocations. Also, move all %define value macros to
6675 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
6676 form, which is replaced by %code.
6677 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
6678 (b4_check_user_names): ... this, and change the series of valid name
6679 arguments to a single list argument for names used in the skeleton
6680 similar to the existing list argument for names used in the grammar.
6681 Warn instead of complaining.
6682 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
6683 values and %code code, to format %code code properly, and to build
6684 lists of all %define variables and %code qualifiers used in the
6685 skeleton: b4_skeleton_percent_define_variables and
6686 b4_skeleton_percent_code_qualifiers.
6687 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
6688 Remove, and...
6689 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
6690 the skeleton names lists can finish building first. In place of
6691 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
6692 expect the lists b4_user_percent_define_variables and
6693 b4_user_percent_code_qualifiers.
6694 * data/c++.m4: Where setting default values for b4_parser_class_name,
6695 b4_location_type, b4_filename_type, b4_namespace, and
6696 b4_define_location_comparison, update their names to the
6697 b4_percent_define_ namespace.
6698 * data/glr.c: Don't use b4_check_percent_define_variables and
6699 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6700 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
6701 (b4_parser_class_name, b4_namespace): Define these using
6702 b4_get_percent_define for parser_class_name and namespace.
6703 * data/location.cc: Use b4_get_percent_define.
6704 * data/push.c: Don't use b4_check_percent_define_variables and
6705 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6706 * data/yacc.c: Likewise, and don't call m4_exit in
6707 b4_use_push_for_pull_if or m4_wrap code will never execute.
6708 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
6709 Rename to...
6710 (muscle_grow_user_name_list): ... this for consistency with the
6711 terminology used in bison.m4.
6712 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
6713 %define variable names, and rename muscle used_percent_define_variables
6714 to user_percent_define_variables.
6715 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
6716 user_percent_code_qualifiers.
6717 (content): Remove.
6718 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
6719 {CODE} form is no longer accepted.
6720 * tests/input.at (Reject bad %code qualifiers): Rename to...
6721 (Reject unused %code qualifiers): ... this, and update test output.
6722 (%define error): Update test output.
6723
6724 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
6725
6726 Check for unrecognized %define variables similar to checking for
6727 unrecognized %code qualifiers. Check for redefined %define variables.
6728 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
6729 generalizes...
6730 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
6731 (b4_check_percent_define_variables): New, also wraps it.
6732 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
6733 variables using b4_check_percent_define_variables.
6734 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
6735 all those exercised in the test suite and all those listed in the
6736 `Default values' section of c++.m4. Are there others?
6737 * data/push.c, data/yacc.c: Declare no valid %define variables.
6738 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
6739 similar to muscle_find, but it works even when the muscle stores a
6740 const value.
6741 (muscle_grow_used_name_list): New function for constructing the used
6742 name list muscles that b4_check_for_unrecognized_names requires.
6743 * src/parse-gram.y (prologue_declaration): Warn if a variable is
6744 %define'd more than once. Define the b4_used_percent_define_variables
6745 muscle with muscle_grow_used_name_list.
6746 (grammar_declaration): Abbreviate %code code with
6747 muscle_grow_used_name_list.
6748 * tests/input.at (%define errors): New.
6749
6750 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6751
6752 Provide warn_at, complain_at, and fatal_at function callbacks to the
6753 skeletons, and use this for %code qualifier complaints.
6754 * data/bison.m4 (b4_error_at): New, invoked by...
6755 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
6756 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
6757 @fatal_at(...@) directives.
6758 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
6759 qualifiers in b4_used_percent_code_qualifiers and to use
6760 b4_complain_at.
6761 * src/location.c, src/location.h (boundary_set_from_string): New global
6762 function.
6763 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
6764 function.
6765 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
6766 to b4_used_percent_code_qualifiers.
6767 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
6768 function.
6769 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
6770 (lineno): Rename to...
6771 (out_lineno): ... this so I don't misunderstand it again.
6772 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
6773 here; these newlines are in the input but not the output file.
6774 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
6775 (at_directive_perform): ... this new static function, and add handling
6776 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
6777 directives.
6778 * tests/input.at (Reject bad %code qualifiers): Update test output with
6779 locations and extend.
6780
6781 * tests/output.at (Output file name: [, Output file name: ]): Remove
6782 bogus comment about these tests failing.
6783
6784 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6785
6786 Clean up b4_check_percent_code_qualifiers a little.
6787 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
6788 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
6789 documentation and add examples.
6790 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
6791 qualifiers here.
6792
6793 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6794
6795 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
6796 unreliable -- especially when they're hidden inside another macro.
6797 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
6798 data/c.m4: Remove m4_divert(-1).
6799 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6800 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
6801 m4_divert_push(0) and m4_divert_pop(0).
6802 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
6803 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
6804 pushed and popped by m4sugar, should be first on the stack.
6805
6806 Provide warn, complain, and fatal function callbacks to the skeletons.
6807 This provides more flexibility than m4_fatal, improves the error
6808 message format, and captures messages for translation. Discussed
6809 starting at
6810 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
6811 * data/bison.m4 (b4_error): New, invoked by...
6812 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
6813 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
6814 directives. Because these M4 macros might be called when the current
6815 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
6816 the previous removal of uses of m4_divert, which caused trouble.
6817 (b4_check_percent_code_qualifiers): Use b4_complain instead of
6818 m4_fatal to report unrecognized %code qualifiers.
6819 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
6820 push parser requests.
6821 * data/glr.c: Use b4_complain instead of m4_fatal to report
6822 non-deterministic push parser requests.
6823 Update @output usage to @output(...@) form.
6824 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
6825 report missing %defines. Update @output usage to @output(...@) form.
6826 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
6827 @output(...@) form.
6828 * src/main.c (main): Invoke skel_scanner_free.
6829 * src/scan-skel.h (skel_scanner_free): Prototype new function.
6830 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
6831 obstack_for_string from flex-scanner.h.
6832 (YY_DECL): Use to declare skel_lex static.
6833 (decode_at_digraphs): Remove; now handled in the new
6834 SC_AT_DIRECTIVE_ARG start condition.
6835 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
6836 functions.
6837 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
6838 at_directive_argv): New static globals.
6839 (INITIAL): Use fail_for_invalid_at.
6840 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
6841 recognize the start of a generalized `@directive(...@)' form and
6842 start...
6843 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
6844 directive args (using the new obstack_for_string), to decode the
6845 contained @ diagraphs, and to perform the directive. It recognizes
6846 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
6847 @output(...@).
6848 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
6849 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
6850 `@,'.
6851 (scan_skel): Initialize obstack_for_string on the first call.
6852 (skel_scanner_free): New function to free obstack_for_string.
6853 * tests/input.at (Reject bad %code qualifiers): Update test output.
6854
6855 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
6856
6857 Consolidate the 4 prologue alternative directives (%code, %requires,
6858 %provides, and %code-top) into a single %code directive with an
6859 optional qualifier field. Discussed at
6860 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
6861 * NEWS (2.3a+): Rewrite the existing entry for the prologue
6862 alternatives.
6863 * doc/bison.texinfo (Prologue Alternatives): Update.
6864 (Decl Summary): Update to %code "requires" and %code "provides".
6865 (Calc++ Parser): Update to %code "requires".
6866 (Table of Symbols): Remove entries for %requires, %provides, and
6867 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
6868 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
6869 are replaced by b4_percent_code_provides and b4_percent_code_requires,
6870 which are skeleton-specific.
6871 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
6872 declare what %code qualifiers it supports and to complain if any other
6873 qualifiers were used in the grammar.
6874 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
6875 and b4_user_code([b4_percent_code_provides]) in place of
6876 b4_user_requires and b4_user_provides.
6877 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
6878 Add b4_user_code([b4_percent_code_top]) and
6879 b4_user_code([b4_percent_code]).
6880 Invoke b4_check_percent_code_qualifiers.
6881 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6882 PERCENT_REQUIRES): Remove.
6883 (grammar_declaration): Remove RHS's for %code-top, %provides, and
6884 %requires. Rewrite the %code RHS as the unqualified form defining the
6885 muscle b4_percent_code. Add another RHS for the qualified %code form,
6886 which defines muscles of the form b4_percent_code_QUALIFIER and the
6887 b4_used_percent_code_qualifiers muscle.
6888 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6889 PERCENT_REQUIRES): Remove.
6890 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
6891 %code "requires" and %code "provides".
6892 * tests/input.at (Reject bad %code qualifiers): New.
6893
6894 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6895
6896 Use the new code_props interface for destructors and printers.
6897 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
6898 printer_location members, and change the type of the destructor and
6899 printer members to code_props.
6900 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
6901 symbol_printer_get, semantic_type_destructor_set,
6902 semantic_type_printer_set, default_tagged_destructor_set,
6903 default_tagless_destructor_set, default_tagged_printer_set,
6904 default_tagless_printer_set): Use code_props in arguments and return
6905 types in place of char const * and location.
6906 (symbol_destructor_location_get, symbol_printer_location_get): Remove
6907 since the locations are now contained in the return of
6908 symbol_destructor_get and symbol_printer_get.
6909 * src/output.c (symbol_destructors_output, symbol_printers_output):
6910 Replace with...
6911 (symbol_code_props_output): ... this to eliminate duplicate code.
6912 (output_skeleton): Update to use symbol_code_props_output.
6913 * src/reader.c (symbol_should_be_used): Update use of
6914 symbol_destructor_get.
6915 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6916 Update uses of the various _destructor_set and _printer_set functions.
6917 * src/symtab.c: (default_tagged_destructor_location,
6918 default_tagless_destructor_location, default_tagged_printer_location,
6919 default_tagless_printer_location): Remove since we...
6920 (default_tagged_destructor, default_tagless_destructor,
6921 default_tagged_printer, default_tagless_printer): ... change the type
6922 of these to code_props.
6923 (symbol_new, semantic_type_new, symbol_destructor_set,
6924 semantic_type_destructor_set, symbol_destructor_get,
6925 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
6926 symbol_check_alias_consistency, default_tagged_destructor_set,
6927 default_tagless_destructor_set, default_tagged_printer_set,
6928 default_tagless_printer_set): Update.
6929 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
6930 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
6931 code_props members.
6932 (symbol_print): Use SYMBOL_CODE_PRINT.
6933
6934 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6935
6936 Use the new code_props interface for rule actions.
6937 * src/symlist.h (symbol_list): Replace action, action_location, and
6938 used members with a code_props action_props member.
6939 * src/reader.c (symbol_should_be_used, grammar_rule_check,
6940 grammar_midrule_action, grammar_current_rule_merge_set,
6941 grammar_current_rule_symbol_append, packgram): Update.
6942 * src/scan-code.h (translate_rule_action): Remove, no longer used.
6943 * src/scan-code.l (handle_action_dollar): Update.
6944 (translate_rule_action): Remove, no longer used.
6945 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
6946
6947 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6948
6949 Use the new code_props interface in parse-gram.y.
6950 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
6951 Update all uses of translate_* functions to use the new code_props
6952 interface and to use gram_scanner_last_string_free and
6953 code_scanner_last_string_free where possible.
6954 (grammar_declaration): symbol_list_destructor_set and
6955 symbol_list_printer_set now perform the translation, so don't do it
6956 here. Use gram_scanner_last_string_free where possible.
6957 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
6958 translate_code): Remove, no longer used.
6959 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
6960 symbol_list_printer_set): Perform code translation here rather than
6961 depending on the caller to do so.
6962
6963 * src/symlist.h (struct symbol_list): Correct some documentation typos.
6964 * src/scan-gram.h (gram_last_string): Remove declaration.
6965 * src/scan-gram.l (last_string): Declare it static.
6966
6967 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6968
6969 Encapsulate code properties and related functionality for the various
6970 destructors, printers, and actions into a code_props structure and
6971 interface. This patch merely implements code_props in scan-code.h and
6972 scan-code.l. Future patches will rewrite other modules to use it.
6973 Discussed starting at
6974 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
6975 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
6976 consistently initialize const structs that have an empty location
6977 field.
6978 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
6979 to ensure consistency.
6980 * src/scan-code.h (code_props): New structure.
6981 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
6982 function, macro, and const global variable for initializing a
6983 code_props with no code.
6984 (code_props_plain_init, code_props_symbol_action_init,
6985 code_props_rule_action_init, code_props_translate_code): The rest of
6986 the new code_props functional interface. Among other things, the init
6987 functions set the code_props kind field so that
6988 code_props_translate_code will know whether to behave like
6989 translate_symbol_action, translate_rule_action, or translate_code.
6990 These old translate functions must remain until all other modules are
6991 updated to use the new code_props interface.
6992 (code_scanner_last_string_free): New function similar to
6993 gram_scanner_last_string_free.
6994 (code_scanner_free): Add documentation.
6995 * src/scan-code.l: Implement the new interface.
6996 (code_lex): Make it static, add a code_props* argument, and remove the
6997 rule argument.
6998 (last_string): New static global similar to the one in scan-gram.l.
6999 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
7000 instead of rule.
7001 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
7002 code_props since Bison may one day use this information for destructors
7003 and printers.
7004 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
7005 (handle_action_dollar): Use symbol_list_n_get and set used flag
7006 directly since symbol_list_n_used_set is removed.
7007 (translate_action): Add a code_props* argument and remove the rule,
7008 action, and location arguments. Pass the code_props* on to code_lex.
7009 (translate_rule_action, translate_symbol_action, translate_code):
7010 Rewrite as wrappers around the new code_props interface.
7011 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
7012 it would eventually need to break the encapsulation of code_props.
7013
7014 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
7015
7016 * etc/.cvsignore: New.
7017
7018 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
7019
7020 Add maintainer-push-check to run maintainer-check using push parsing in
7021 place of pull parsing where available.
7022 * Makefile.am (maintainer-push-check): New.
7023 * data/bison.m4 (b4_use_push_for_pull_if): New.
7024 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
7025 appropriately based on their existing values.
7026 (yypush_parse): Don't print push-parser-specific diagnostics if push
7027 parsing is being used in place of pull parsing.
7028 * data/yacc.c: If push parsing should replace pull parsing, redirect to
7029 push.c.
7030 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
7031 variable, and insert b4_use_push_for_pull_flag into muscles.
7032 * tests/Makefile.am (maintainer-push-check): New.
7033
7034 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
7035
7036 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
7037 (whether successful or failed) so that yypush_parse can be invoked
7038 again to start a new parse using the same yypstate.
7039 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
7040 check multiple yypull_parse invocations on the same yypstate. For pull
7041 mode, extend to check multiple yyparse invocations.
7042 (Exploding the Stack Size with Alloca): Extend to try with
7043 %push-pull-parser.
7044 (Exploding the Stack Size with Malloc): Likewise.
7045
7046 * tests/calc.at (Simple LALR Calculator): Don't specify
7047 %skeleton "push.c" since %push-pull-parser implies that now.
7048 * tests/headers.at (export YYLTYPE): Don't check for the push
7049 declarations. Otherwise, this test case can't be used to see if push
7050 mode can truly emulate pull mode.
7051 * tests/input.at (Torturing the Scanner): Likewise.
7052 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
7053 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
7054 AT_YACC_IF, which now includes the case of push mode since %skeleton
7055 need not be used for push mode. This will be more intuitive once
7056 push.c is renamed to yacc.c.
7057
7058 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
7059
7060 For push mode, convert yyparse from a macro to a function, invoke yylex
7061 instead of passing a yylexp argument to yypull_parse, and don't
7062 generate yypull_parse or yyparse unless %push-pull-parser is declared.
7063 Discussed starting at
7064 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
7065 * data/bison.m4 (b4_pull_if): New.
7066 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
7067 * data/push.c: Improve M4 quoting a little.
7068 (b4_generate_macro_args, b4_parenthesize): Remove.
7069 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
7070 any time a pull parser is requested.
7071 Don't #define this as a wrapper around yypull_parse. Instead, when
7072 both push and pull are requested, make it a function that does that
7073 same thing.
7074 (yypull_parse): If there's a b4_prefix, #define this to
7075 b4_prefix[pull_parse] when both push and pull are requested.
7076 Don't define this as a function unless both push and pull are
7077 requested.
7078 Remove the yylexp argument and hard-code yylex invocation instead.
7079 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
7080 %push-parser.
7081 * src/getargs.c (pull_parser): New global initialized to true.
7082 * getargs.h (pull_parser): extern it.
7083 * src/output.c (prepare): Insert pull_flag muscle.
7084 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
7085 (prologue_declaration): Set both push_parser and pull_parser = true for
7086 %push-pull-parser. Set push_parser = true and pull_parser = false for
7087 %push-parser.
7088 * src/scan-gram.l: Don't accept %push_parser as an alternative to
7089 %push-parser since there's no backward-compatibility concern here.
7090 Scan %push-pull-parser.
7091 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
7092 instead of %push-parser.
7093 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
7094 prototype it in the module that calls yyparse.
7095 * tests/input.at (Torturing the Scanner): Likewise.
7096 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
7097
7098 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
7099
7100 Update etc/bench.pl. Optimize push mode a little (the yyn change
7101 deserves most of the credit).
7102 * Makefile.am (SUBDIRS): Add etc subdirectory.
7103 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
7104 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
7105 yytoken, yyval, and yyloc declarations to...
7106 (yyparse or yypush_parse): ... here to improve performance. For
7107 yypush_parse invocations after the first, be sure to assign yyn its old
7108 value again.
7109 (yypstate_new): Don't bother initializing the yyresult field since the
7110 initial value isn't used.
7111 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
7112 remove the #define that, in push mode, set it to yyps->NAME.
7113 * etc/Makefile.am: New.
7114 * etc/bench.pl: Remove and build it instead from...
7115 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
7116 "tests/bison" from the build directory by default rather than just
7117 invoking "bison" from $PATH.
7118 (calc_grammar): Update push parser code: don't declare yylval globally,
7119 don't define yyparse_wrapper, and don't #define yyparse.
7120 (bench_grammar): Update to check all working combinations of yacc.c,
7121 push.c, impure, pure, pull, and push.
7122
7123 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
7124
7125 For push mode, add pull wrappers around yypush_parse.
7126 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
7127 (yypull_parse): New function wrapping yypush_parse.
7128 (yyparse): New #define wrapping yypull_parse.
7129 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
7130 is declared.
7131 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
7132 prototype yylex in the module that calls yyparse, and don't prototype
7133 yyparse there. Otherwise, the yyparse expansion won't compile.
7134 * tests/input.at (Torturing the Scanner): Likewise.
7135
7136 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
7137
7138 Enable push parsers to operate in impure mode. Thus, %push-parser no
7139 longer implies %pure-parser. The point of this change is to move
7140 towards being able to test the push parser code by running the entire
7141 test suite as if %push-parser had been declared.
7142 * data/push.c (yypush_parse): For impure mode, remove the
7143 yypushed_char, yypushed_val, and yypushed_loc arguments.
7144 Instead, declare these as local variables initialized to the global
7145 yychar, yylval, and yylloc.
7146 For the first yypush_parse invocation only, restore the initial values
7147 of these global variables when it's time to read a token since they
7148 have been overwritten.
7149 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
7150 %push-parser.
7151 * tests/calc.at (Simple LALR(1) Calculator): Always declare
7152 %pure-parser along with %push-parser since this test case was designed
7153 for pure push parsers.
7154 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
7155 (AT_YACC_OR_PUSH_IF): New.
7156 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
7157 add a note that it's still wrong for some cases (as it has been for a
7158 while).
7159 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
7160 %push-parser no longer implies %pure-parser.
7161
7162 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7163
7164 Remove some unnecessary differences between the pull parser code and
7165 the push parser code. This patch enables yynerrs in push mode.
7166 * data/push.c: Reformat M4 a little.
7167 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
7168 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
7169 because push mode is on. Instead, if pure mode is on, move yynerrs
7170 to...
7171 (b4_declare_parser_state_variables): ... here.
7172 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
7173 to yyps->NAME so it can be used in yypush_parse.
7174 (yypush_parse): Don't omit uses of yynerrs in push mode.
7175
7176 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7177
7178 Fix bug such that the first pushed token's value and location are
7179 sometimes overwritten (sometimes by %initial-action) before being used.
7180 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
7181 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
7182 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
7183 more closely mimic the pull parser logic.
7184 Don't copy the pushed token to yychar, yylval, and yylloc until it's
7185 time to read a token, which is after any initialization of yylval and
7186 yylloc.
7187 (gottoken): Rename label to...
7188 (yyread_pushed_token): ... for clarity and to avoid infringing on the
7189 user namespace.
7190
7191 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7192
7193 Rearrange initialization of the parser state variables so that the
7194 skeleton doesn't have to have a copy for pull mode and another for push
7195 mode. This patch also fixes at least a bug such that yylloc was not
7196 initialized (with b4_location_initial_line and
7197 b4_location_initial_column) upon calling yypush_parse. However, that
7198 initialization now overwrites the first token's location;
7199 %initial-action assigning @$ already did the same thing, and both bugs
7200 will be fixed in a later patch.
7201 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
7202 (b4_declare_parser_state_variables): Remove initialization of yytoken,
7203 yyss, yyvs, yyls, and yystacksize.
7204 (yypstate_new): Remove initialization of some yypstate fields: yystate,
7205 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
7206 yylsp.
7207 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
7208 yyps->NAME so it can be used in yypush_parse.
7209 (yyparse or yypush_parse): For yypush_parse, don't print the
7210 "Starting parse" diagnostic for invocations after the first.
7211 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
7212 yypush_parse, only do it for the first invocation.
7213 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
7214 initialization to occur in yypush_parse but only on the first
7215 invocation.
7216
7217 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7218
7219 * data/push.c: Add CPP guards around push parser declarations in both
7220 the header and the code file.
7221 In the code file, move the push parser declarations to the same place
7222 they appear in the header file.
7223 Clean up the M4 some, especially the inconsistent underquoting in
7224 some b4_c_function_def and b4_c_function_decl uses.
7225
7226 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7227
7228 Encapsulate the push parser state variables into an M4 macro so the
7229 push skeleton doesn't have to list them again for pull mode's yyparse.
7230 For push mode, remove yypush_parse's local equivalents of these
7231 variables to eliminate unnecessary copying between the two sets at
7232 run-time. This patch also fixes at least a bug related to multiple
7233 %initial-action invocations in push mode.
7234 * data/push.c (b4_declare_parser_variables): Rename to...
7235 (b4_declare_scanner_communication_variables): ... this for clarity and
7236 update both uses.
7237 (b4_declare_yyparse_variables): Remove and move its contents to the one
7238 spot where it was invoked.
7239 (b4_declare_parser_state_variables): New macro containing the parser
7240 state variables required by push mode.
7241 (struct yypstate): Replace all fields but yynew with
7242 b4_declare_parser_state_variables.
7243 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
7244 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
7245 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
7246 (yyparse or yypush_parse): For yyparse in pull mode, replace local
7247 parser state variable declarations with
7248 b4_declare_parser_state_variables.
7249 Don't initialize parser state variables when calling yypush_parse since
7250 yypstate_new already does that.
7251 Invoke the user's initial action only upon the first yypush_parse
7252 invocation.
7253 Remove all code that copies between the local parser state variables
7254 and the yypstate.
7255
7256 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7257
7258 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
7259 prevent a name collision in a future patch where these names will
7260 sometimes be #define'd.
7261 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
7262 since it no longer has the same name as the existing argument.
7263 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
7264
7265 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
7266 and Joel E. Denny <jdenny@ces.clemson.edu>
7267
7268 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
7269 that the argument is case-insensitive, and there's no `=' here.
7270 For the %skeleton entry, mention that %language is better.
7271 (Bison Options): Likewise for --language and --skeleton. Move the
7272 --skeleton entry so that the `Tuning the parser' section is sorted
7273 alphabetically on long options.
7274 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
7275 %language directive in detail here; cross-reference the %language
7276 documentation instead.
7277 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
7278 `%require "2.3b"' so that the example is always up-to-date.
7279 (Table of Symbols): Add entries for %language and %skeleton.
7280 * examples/extexi (normalize): Instead of replacing every %require
7281 argument with the current Bison version, just substitute for
7282 `@value{VERSION}'. This guarantees that we're testing what actually
7283 appears in the documentation.
7284 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
7285 rather than `@VERSION@'.
7286
7287 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7288
7289 * NEWS: Reword the %language news a bit, and put it earlier.
7290
7291 * src/getargs.c (skeleton_arg): Last arg is now location const *.
7292 Rewrite to simplify the logic.
7293 (language_argmatch): Likewise.
7294 (program_name): We now own this var.
7295 * src/getargs.h (struct bison_language): Use char[] rather than
7296 const char *.
7297
7298 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
7299 Java is supported.
7300 * src/complain.c (program_name): Remove decl; no longer needed.
7301 * src/main.c (program_name): Remove; now belongs to getargs.
7302
7303 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
7304
7305 * NEWS: Document %language.
7306
7307 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
7308
7309 * data/c-skel.m4, data/c++-skel.m4: New files.
7310 * data/glr.c: Complain on push parsers.
7311
7312 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
7313 over %skeleton.
7314 (Decl Summary): Document %language and %skeleton.
7315 (Command line): Document -L.
7316
7317 * examples/extexi: Rewrite %require directive.
7318 * examples/calc++/Makefile.am: Pass VERSION to extexi.
7319
7320 * src/files.c (compute_exts_from_gc): Look in language structure
7321 for .y extension.
7322 (compute_file_name_parts): Check whether .tab should be added.
7323 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
7324 (language, skeleton_arg, language_argmatch): New.
7325 (long_options): Add --language.
7326 (getargs): Use skeleton_arg, add -L/--language.
7327 * src/getargs.h: Include location.h.
7328 (struct bison_language, language, skeleton_arg, language_argmatch): New.
7329 * src/output.c (prepare): Pick default skeleton from struct language.
7330 Don't dispatch C skeletons here.
7331 * src/parse-gram.y (PERCENT_LANGUAGE): New.
7332 (prologue_declaration): Add "%language" rule, use skeleton_arg.
7333 * src/scan-gram.l ("%language"): New rule.
7334
7335 * tests/calc.at: Test %skeleton and %language.
7336 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
7337 (AT_GLR_IF): Look for %skeleton "glr.cc".
7338 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
7339 (AT_YACC_IF): Reject %language.
7340
7341 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7342
7343 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
7344 since it wasn't used; only the typedef name 'semantic_type' is needed.
7345 Also, omit trailing white space.
7346
7347 * bootstrap: Sync from coreutils.
7348 (gnulib_extra_files): Add build-aux/announce.gen.
7349 (slurp): Adjust .gitignore files like .cvsignore files.
7350 * build-aux/announce-gen: Remove from CVS, since bootstrap
7351 now creates this.
7352
7353 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
7354
7355 Make %push-parser imply %pure-parser. This fixes several bugs; see
7356 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
7357 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
7358 pure_parser = true.
7359 * data/push.c: Don't bother testing b4_push_if when deciding whether
7360 to expand b4_declare_parser_variables globally.
7361 (yypush_parse): Likewise in here.
7362
7363 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
7364 (yy_reduce_print): Reformat M4 for readability.
7365
7366 2006-12-15 Bob Rossi <bob@brasko.net>
7367 and Joel Denny <jdenny@ces.clemson.edu>
7368
7369 * data/push.c (yypstate): Add typedef, and update all uses of
7370 struct yypstate to just yypstate.
7371 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
7372
7373 2006-12-14 Bob Rossi <bob@brasko.net>
7374
7375 * data/push.c (yypush_parse): Declare prototype regardless of
7376 %locations option.
7377
7378 2006-12-14 Bob Rossi <bob@brasko.net>
7379
7380 * data/push.c (yyparse): Remove the prototype and the #define when in
7381 push-parser mode.
7382
7383 2006-12-13 Bob Rossi <bob@brasko.net>
7384
7385 * data/push.c (yypstate_init): Rename to...
7386 (yypstate_new): ... this and use b4_c_function_def.
7387 (yypstate_delete): New.
7388 (yypush_parse): Change parameters yynval and yynlloc to be const.
7389 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
7390 yypstate_delete functions.
7391
7392 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
7393
7394 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
7395 strange test case titles. Reported by Bob Rossi.
7396
7397 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
7398
7399 * TODO: Add pointer to Sylvain Schmitz's work on static detection
7400 of potential ambiguities in GLR grammers.
7401
7402 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
7403
7404 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
7405 `bison ', use m4_index instead of m4_substr since chopping up a string
7406 containing M4-special characters causes problems here.
7407
7408 Fix a couple of bugs related to special characters in user-specified
7409 file names, and make it easier for skeletons to compute output file
7410 names with the same file name prefix as Bison-computed output file
7411 names.
7412 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
7413 b4_parser_file_name and b4_spec_defines_file instead of
7414 @output_parser_name@ and @output_header_name@, which are now redundant.
7415 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
7416 b4_parser_file_name, b4_spec_defines_file, and the new
7417 @basename(FILENAME@) instead of @output_parser_name@ and
7418 @output_header_name@, which inappropriately escaped the file names as
7419 C string literals.
7420 * src/files.c (all_but_ext): Remove static qualifier.
7421 (compute_output_file_names): Move `free (all_but_ext)' to...
7422 (output_file_names_free): ... here since all_but_ext is needed later.
7423 * src/files.h (all_but_ext): Extern.
7424 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
7425 exactly what MUSCLE_INSERT_STRING used to do.
7426 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
7427 characters are escaped properly.
7428 * src/output.c (prepare): Define muscle file_name_all_but_ext as
7429 all_but_ext.
7430 For pkgdatadir muscle, maintain previous functionality by using
7431 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
7432 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
7433 digraphs would never be expanded. Hopefully no one has M4-special
7434 characters in his Bison installation path.
7435 * src/scan-skel.l: Don't parse @output_header_name@ and
7436 @output_parser_name@ anymore since they're now redundant.
7437 In @output, use decode_at_digraphs.
7438 Parse a new @basename command that invokes last_component.
7439 (decode_at_digraphs): New.
7440 (BASE_QPUTS): Remove unused.
7441 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
7442 (Output file name): New tests.
7443
7444 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
7445
7446 Warn about output files that are generated by the skeletons and that
7447 conflict with other output files.
7448 * data/glr.c: Don't generate the header file here when glr.cc does.
7449 * src/files.c (file_names, file_names_count): New static globals.
7450 (compute_output_file_names): Invoke output_file_name_check for files
7451 not generated by the skeletons and remove existing checks.
7452 (output_file_name_check): New function that warns about conflicting
7453 output file names.
7454 (output_file_names_free): Free file_names.
7455 * src/files.h (output_file_name_check): Declare.
7456 * src/scan-skel.l: Invoke output_file_name_check for files generated by
7457 the skeletons.
7458 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
7459 (Conflicting output files): New tests.
7460
7461 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7462
7463 * doc/bison.texinfo: Fix a couple of typos.
7464
7465 2006-12-08 Bob Rossi <bob@brasko.net>
7466
7467 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
7468 Rename to...
7469 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
7470 update all uses.
7471 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
7472 (yypush_parse): Rename yypvars argument to yyps and remove redundant
7473 local pv.
7474 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
7475 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
7476
7477 2006-12-07 Bob Rossi <bob@brasko.net>
7478 and Joel Denny <jdenny@ces.clemson.edu>
7479
7480 * data/push.c (yypvarsinit): Change return type from void* to struct
7481 yypvars*. No longer cast to void* on return.
7482 (struct yypvars): Remove yylen since it need not be remembered between
7483 yypushparse invocations.
7484 (yypushparse): Don't copy between yylen and pv->yylen.
7485
7486 2006-12-05 Bob Rossi <bob@brasko.net>
7487
7488 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
7489 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
7490 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
7491 (struct yypvars): Remove b4_declare_parser_variables.
7492 (yypvarsinit): Remove init code for removed variables.
7493 (global scope): Do not declare b4_declare_parser_variables if
7494 push or pure mode.
7495 (yypushparse): Add b4_declare_parser_variables.
7496 Init new local variables, and remove init code for removed
7497 yypvars variables.
7498 (yyparse): Delete.
7499 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
7500 and yyparse for other modes.
7501 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
7502 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
7503 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
7504 (AT_PURE_LEX_IF): True if pure or push parser.
7505
7506 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
7507
7508 Document Yacc prologue alternatives and default %destructor's and
7509 %printer's as experimental. Don't mention Java yet. Discussed at
7510 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
7511 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
7512 (2.3a): Annotate this entry to say the old forms of these features were
7513 also experimental.
7514 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
7515 Table of Symbols): Say they're experimental. Comment out any mention
7516 of Java (we'll want this back eventually).
7517
7518 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
7519
7520 Support a file name argument to %defines. Deprecate `=' in
7521 %file-prefix, %name-prefix, and %output. Discussed at
7522 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
7523 * NEWS (2.3a+): Mention.
7524 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
7525 form of %defines, and remove `=' from entries for %file-prefix,
7526 %name-prefix, and %output.
7527 * src/parse-gram.y (prologue_declaration): Implement.
7528 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
7529 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
7530 all but one occurrence of %name-prefix.
7531 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
7532 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
7533 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
7534 occurrence of each of %file-prefix and %output. Add check for %defines
7535 with argument.
7536 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
7537 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
7538 Remove the `=' from %output.
7539
7540 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
7541
7542 Don't escape $ in test case titles since Autoconf 2.61 now does that
7543 correctly.
7544 * tests/actions.at (Default %printer and %destructor are not for error
7545 or $undefined): Here.
7546 (Default %printer and %destructor are not for $accept): Here.
7547 * tests/input.at (Invalid $n and @n): Here.
7548
7549 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
7550
7551 Rename <!> to <>. Discussed starting at
7552 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
7553 * NEWS (2.3a+): Update.
7554 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
7555 Update.
7556 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
7557 * src/scan-gram.l (INITIAL): Implement.
7558 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
7559 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
7560 comment.
7561 * tests/actions.at (Default tagless %printer and %destructor,
7562 Default tagged and per-type %printer and %destructor,
7563 Default %printer and %destructor are not for error or $undefined,
7564 Default %printer and %destructor are not for $accept,
7565 Default %printer and %destructor for mid-rule values): Update.
7566 * tests/input.at (Default %printer and %destructor redeclared,
7567 Unused values with default %destructor): Update.
7568
7569 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
7570
7571 Don't let %prec take a nonterminal.
7572 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
7573 token.
7574 * tests/input.at (%prec takes a token): New test checking that %prec
7575 won't take a nonterminal.
7576
7577 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7578
7579 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
7580 it was double-quoted.
7581 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
7582 grammar is maintained with Bison's highest standards.
7583 * src/getargs.c: Fix some typos in Doxygen comments.
7584
7585 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7586
7587 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
7588 later. Reported by Paul Eggert in
7589 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
7590 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
7591 * src/scan-code.l (translate_action): Don't bother invoking
7592 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
7593 (code_scanner_free): Instead of invoking
7594 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
7595 which frees more.
7596 * src/scan-gram.l (gram_scanner_free): Likewise.
7597 * src/scan-skel.l (scan_skel): Likewise.
7598
7599 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
7600
7601 * src/files.c (tr): Change return type to void.
7602 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
7603 has been called previously for the same key.
7604 (muscle_find): Return storage instead of value so that
7605 --enable-gcc-warnings doesn't produce warnings that the return discards
7606 const. aver that the value and storage are the same since storage
7607 could potentially be NULL when value is not.
7608 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
7609 same as 0.
7610
7611 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7612
7613 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
7614 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
7615 us a slightly cleaner distribution, and also works.
7616 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
7617 gnulib changes.
7618
7619 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
7620 and Paul Eggert <eggert@cs.ucla.edu>
7621
7622 Don't let Bison leak memory except when it complains.
7623 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
7624 (spec_defines_file, dir_prefix): Now char *, not const char *,
7625 since they are freed.
7626 * src/files.c: Likewise.
7627 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
7628 Likewise.
7629 (tr): Now operates in-place. All uses changed.
7630 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
7631 values.
7632 (compute_file_name_parts, compute_output_file_names): Don't store
7633 read-only data in variables that will be freed.
7634 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
7635 src_extension, and header_extension.
7636 (output_file_names_free): New public function to free
7637 spec_verbose_file, spec_graph_file, spec_defines_file,
7638 parser_file_name, and dir_prefix.
7639 * src/getargs.c (getargs): Don't store read-only data in variables that
7640 will be freed.
7641 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
7642 (which previously existed but was unused), and quotearg_free.
7643 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
7644 * src/muscle_tab.c: Likewise.
7645 (muscle_entry): Make the value char const *,
7646 and add a new storage member that is char * and can be freed.
7647 (muscle_entry_free): New private function.
7648 (muscle_init): Use it instead of free.
7649 (muscle_insert, muscle_grow): Update and use new storage member.
7650 (muscle_code_grow): Free the string passed to muscle_grow
7651 since it's not needed anymore.
7652 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
7653 add a new `char *code' member.
7654 ("{...}"): Declare semantic type as code.
7655 * src/scan-code.h (translate_rule_action):
7656 (translate_symbol_action, translate_code, translate_action): Return
7657 `char const *' rather than `char *' since external code should not free
7658 these strings.
7659 * src/scan-code.l: Likewise.
7660 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
7661 which is "{...}" in the parser.
7662 * tests/Makefile.am (maintainer-check-valgrind): Set
7663 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
7664 Valgrind.
7665 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
7666 complain.
7667 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
7668 expecting a non-zero exit status sets --leak-check=summary and
7669 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
7670 this case, and we don't want to hear about it.
7671
7672 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7673
7674 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
7675 instead of from the template, to simplify configuration a bit.
7676 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
7677 and m4/wint_t.m4, as they are needed with the latest gnulib.
7678
7679 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7680
7681 Disable unset/unused mid-rule value warnings by default, and recognize
7682 --warnings=midrule-values to enable them. Discussed starting at
7683 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
7684 * NEWS (2.3a+): Mention.
7685 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
7686 warnings): Add entry for midrule-values subargument.
7687 * src/reader.c (symbol_should_be_used): Don't return true just because
7688 the value is a set/used mid-rule value unless
7689 --warnings=midrule-values was specified.
7690 * tests/input.at (Unused values, Unused values before symbol
7691 declarations): Run tests with and without --warnings=midrule-values.
7692
7693 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
7694 than LIST_FREE directly.
7695
7696 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7697
7698 Finish implementing --warnings=error, which should not be implied by
7699 --warnings=all (or by its synonyms -W and --warnings without
7700 subarguments).
7701 * src/complain.c (set_warning_issued): New function to report that
7702 warnings are being treated as errors and to record an error if so.
7703 Invoke...
7704 (warn_at, warn): ... here.
7705 * src/getargs.c (warnings_args, warnings_types): Reorder so that
7706 "error - warnings are errors" does not appear above "all - all of the
7707 above".
7708 (getargs): For -W and --warnings without subarguments, don't let
7709 FLAGS_ARGMATCH set warnings_error in warnings_flag.
7710 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
7711
7712 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7713
7714 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
7715 empty subargument list. For example: `bison --warnings= parser.y'.
7716
7717 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7718
7719 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
7720 the parser header file so that gcc doesn't warn.
7721
7722 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7723
7724 Split the default %destructor/%printer into two kinds: <*> and <!>.
7725 Discussed starting at
7726 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
7727 * NEWS (2.3a+): Mention.
7728 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
7729 previous change today related to mid-rules.
7730 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
7731 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
7732 (TYPE_TAG_ANY): Add as <*>.
7733 (TYPE_TAG_NONE): Add as <!>.
7734 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
7735 for <*> and <!>.
7736 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
7737 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
7738 * src/symlist.c (symbol_list_default_new): Split into tagged and
7739 tagless versions.
7740 (symbol_list_destructor_set, symbol_list_printer_set): Split
7741 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
7742 SYMLIST_DEFAULT_TAGLESS.
7743 * src/symlist.h: Update symbol_list_default*_new prototypes.
7744 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
7745 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
7746 * src/symtab.c (default_destructor, default_destructor_location,
7747 default_printer, default_printer_location): Split each into tagged and
7748 tagless versions.
7749 (symbol_destructor_get, symbol_destructor_location_get,
7750 symbol_printer_get, symbol_printer_location_get): Implement tagged
7751 default and tagless default cases.
7752 (default_destructor_set, default_printer_set): Split each into tagged
7753 and tagless versions.
7754 * src/symtab.h: Update prototypes.
7755 * tests/actions.at (Default %printer and %destructor): Rename to...
7756 (Default tagless %printer and %destructor): ... this, and extend.
7757 (Per-type %printer and %destructor): Rename to...
7758 (Default tagged and per-type %printer and %destructor): ... this, and
7759 extend.
7760 (Default %printer and %destructor for user-defined end token): Extend.
7761 (Default %printer and %destructor are not for error or $undefined):
7762 Update.
7763 (Default %printer and %destructor are not for $accept): Update.
7764 (Default %printer and %destructor for mid-rule values): Extend.
7765 * tests/input.at (Default %printer and %destructor redeclared): Extend.
7766 (Unused values with default %destructor): Extend.
7767
7768 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7769
7770 Don't apply the default %destructor/%printer to an unreferenced midrule
7771 value. Mentioned at
7772 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
7773 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
7774 like $@n instead of just @n so that the default %destructor/%printer
7775 logic doesn't see them as user-defined symbols.
7776 (symbol_is_dummy): Check for both forms of the name.
7777 * src/reader.c (packgram): Remove the `$' from each midrule symbol
7778 name for which the midrule value is referenced in any action.
7779 * tests/actions.at (Default %printer and %destructor for mid-rule
7780 values): New test.
7781 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
7782 for change to dummy symbol names.
7783
7784 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7785
7786 Warn about unset midrule $$ if the corresponding $n is used.
7787 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
7788 $n usage.
7789 (packgram): Before invoking grammar_rule_check on any rule, make sure
7790 all actions have already been scanned in order to set `used' flags.
7791 Otherwise, checking that a midrule's $$ is set will not always work
7792 properly because the midrule check must forward-reference the midrule's
7793 parent rule.
7794 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
7795 warning.
7796
7797 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7798
7799 More improvements to the documentation of the prologue alternatives:
7800 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
7801 Bison manual.
7802 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
7803 some text to clarify the relative importance of the new directives and
7804 to show how these directives may be viewed as code labels.
7805
7806 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
7807
7808 Similar to the recently removed %before-header, add %code-top as the
7809 alternative to the pre-prologue. Mentioned at
7810 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
7811 Also, let the prologue alternatives appear in the grammar section.
7812 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
7813 (prologue_declaration): Move the existing prologue alternatives to...
7814 (grammar_declaration): ... here and add %code-top.
7815 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
7816
7817 Clean up and extend documentation for the prologue alternatives.
7818 * NEWS (2.3a+): Describe prologue alternatives.
7819 * doc/bison.texinfo (Prologue): Move discussion of prologue
7820 alternatives to...
7821 (Prologue Alternatives): ... this new section, and extend it to discuss
7822 all 4 directives in detail.
7823 (Table of Symbols): Clean up discussion of prologue alternatives and
7824 add %code-top.
7825
7826 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7827
7828 DJGPP specific issues.
7829
7830 * djgpp/config.bat: config.hin has been moved to lib. Adjust
7831 config.bat accordingly.
7832 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
7833 * djgpp/config.site: Likewise.
7834
7835 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
7836
7837 Replace %*-header with %provides, %requires, %code. See discussion at
7838 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
7839
7840 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
7841 (b4_user_start_header): Remove.
7842 * data/glr.c: Use new macros instead of b4_*start_header
7843 and b4_*end_header.
7844 * data/glr.cc: Likewise.
7845 * data/lalr1.cc: Likewise.
7846 * data/push.c: Likewise.
7847 * data/yacc.c: Likewise.
7848
7849 * doc/bison.texinfo: Remove %before-header, rename
7850 %{start,end,after}-header to %requires, %provides, %code.
7851
7852 * src/parse-gram.y: Likewise (also rename token names accordingly).
7853 * src/scan-gram.l: Likewise.
7854 * tests/actions.at: Likewise.
7855
7856 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
7857
7858 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
7859 Problem reported by Joel E. Denny.
7860
7861 2006-10-14 Jim Meyering <jim@meyering.net>
7862
7863 (Sync from coreutils.)
7864 Work also when the working directory (with e.g. coreutils sources)
7865 is version controlled with git, rather than CVS.
7866 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
7867 rather than CVS.
7868 In messages and comments, say e.g., "checked-out sources",
7869 rather than "CVS sources".
7870 (version_controlled_file): New function. Work for git as well as
7871 for CVS. Don't use grep's -q option.
7872 (slurp): Call it here, in place of CVS-specific code.
7873
7874 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
7875
7876 Fix testsuite for ./configure --enable-gcc-warnings:
7877 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
7878 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
7879 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
7880 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
7881 * test/regression.at (Diagnostic that expects two alternatives):
7882 Likewise.
7883
7884 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7885
7886 * bootstrap.conf (gnulib_modules): Add config-h.
7887 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
7888 worry about HAVE_CONFIG_H.
7889 * lib/abitset.c: Likewise.
7890 * lib/bitset.c: Likewise.
7891 * lib/bitset_stats.c: Likewise.
7892 * lib/bitsetv-print.c: Likewise.
7893 * lib/bitsetv.c: Likewise.
7894 * lib/ebitset.c: Likewise.
7895 * lib/get-errno.c: Likewise.
7896 * lib/lbitset.c: Likewise.
7897 * lib/subpipe.c: Likewise.
7898 * lib/timevar.c: Likewise.
7899 * lib/vbitset.c: Likewise.
7900 * lib/bitset.c: Include "bitset.h" first, to test interface.
7901 * lib/bitset_stats.c: Include "bitset_stats.h" first.
7902 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
7903 * lib/bitsetv.c: Include "bitsetv.h" first.
7904 * lib/get-errno.c: Include "get-errno.h" first.
7905 * m4/.cvsignore: Add config-h.m4.
7906 * tests/actions.at (Default %printer and %destructor for ...):
7907 Adjust expected line numbers in output to reflect removal of #if
7908 HAVE_CONFIG_H lines.
7909 * tests/glr-regression.at (Missed %merge type warnings when ...):
7910 Likewise.
7911 * tests/regression.at (Braced code in declaration in rules section):
7912 Likewise.
7913 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
7914 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
7915 Include <config.h> unconditionally.
7916
7917 * bootstrap: Sync from coreutils, as follows:
7918
7919 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7920
7921 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
7922 variable was sometimes used without being initialized. This
7923 messed up the installation of the INSTALL file in some cases.
7924
7925 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7926
7927 * bootstrap (usage, main program, symlink_to_gnulib): Add option
7928 --copy. Inspired by a suggestion from Bruno Haible.
7929
7930 2006-10-03 Jim Meyering <jim@meyering.net>
7931
7932 * bootstrap: Undo last change to this file, since now gnulib-tool
7933 sticks with the automake default in generating dependencies.
7934
7935 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7936
7937 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
7938 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
7939
7940 * doc/bison.1: Add copyright notice.
7941
7942 * data/glr.c: Don't include <stdarg.h>; not used.
7943
7944 * NEWS: The -g and --graph options now output graphs in Graphviz
7945 DOT format, not VCG format.
7946 * doc/bison.1: Likewise.
7947 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
7948 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
7949 of this change in
7950 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
7951 * TODO: Remove Graphviz entry.
7952 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
7953 remove vcg.c, vcg.h, vcg_defaults.h.
7954 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
7955 * src/graphviz.c, src/graphviz.h: New files.
7956 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
7957 * src/files.h: Make comment more generic.
7958 * src/main.c (main): Likewise.
7959 * src/print_graph.h: Likewise.
7960 * src/getargs.c (usage): Make usage description more generic.
7961 * src/print_graph.c: Include graphviz.h rather than vcg.h.
7962 (static_graph, fgraph): Remove. All uses changed to pass
7963 arguments instead of sharing a static var.
7964 (print_core, print_actions, print_state, print_graph):
7965 Output graphviz format rather than VCG format.
7966 * tests/.cvsignore: Remove *.vcg; add *.dot.
7967 * tests/output.at: Expect *.dot files, not *.vcg files.
7968
7969 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
7970 accommodates the 2006-10-08 change.
7971
7972 2006-10-11 Bob Rossi <bob@brasko.net>
7973
7974 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
7975 (b4_yyssa, b4_yyerror_range): New macros.
7976 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
7977 (yypvarsinit): Remove init of removed fields.
7978 (yypushparse): Remove use of removed fields; use new macros instead.
7979
7980 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7981
7982 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
7983 in a push parser. Reindent slightly to match yacc.c better.
7984
7985 2006-10-11 Bob Rossi <bob@brasko.net>
7986
7987 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
7988 yymsg_alloc fields.
7989 (yypvarsinit, yypushparse): Remove init of removed fields.
7990 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
7991
7992 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7993
7994 * THANKS: Add Paolo Bonzini and Bob Rossi.
7995
7996 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
7997
7998 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
7999 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
8000 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
8001 b4_define_user_cde and uses): Remove.
8002 (b4_comment, b4_prefix, b4_sync_start): New.
8003 * data/bison.m4: New file, with most of the content removed from c.m4.
8004 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
8005 * src/output.c (output_skeleton): Pass bison.m4.
8006 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
8007 only if specified.
8008
8009 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
8010
8011 Fix test failure reported by Tom Lane in
8012 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
8013 and try to make such failures easier to catch in the future.
8014 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
8015 that's now the caller's responsibility.
8016 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
8017 Set yychar = YYEOF if it's negative.
8018 * tests/actions.at (yylex): Abort if asked to read past EOF.
8019 * tests/conflicts.at (yylex): Likewise.
8020 * tests/cxx-type.at (yylex): Likewise.
8021 * tests/glr-regression.at (yylex): Likewise.
8022 * tests/input.at (yylex): Likewise.
8023 * tests/regression.at (yylex): Likewise.
8024 * tests/torture.at (yylex): Likewise.
8025
8026 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
8027
8028 Fix problems with translating English-language diagnostics.
8029 * bootstrap: Fix bug introduced in recent bootstrap changes, with
8030 respect to bison-runtime pot generation. The YY_ stuff
8031 wasn't being captured.
8032 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
8033 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
8034 * runtime-po/POTFILES.in: Add data/push.c.
8035
8036 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
8037
8038 Merge bootstrap changes from coreutils.
8039
8040 2006-09-28 Jim Meyering <jim@meyering.net>
8041
8042 Automatically generated dependencies are important even
8043 when all of the sources in a directory come from gnulib.
8044 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
8045 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
8046
8047 2006-09-23 Jim Meyering <jim@meyering.net>
8048
8049 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
8050
8051 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8052
8053 * bootstrap: Add support for --force.
8054 (usage): New function. Describe usage less tersely.
8055 (CVS_only_file): New var.
8056
8057 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
8058
8059 * data/push.c (YYPUSH_MORE): Make it an enum instead.
8060 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
8061 Adjust white space and comments to match GNU style better.
8062
8063 2006-09-20 Bob Rossi <bob@brasko.net>
8064
8065 * data/push.c (yyresult_get): Remove function.
8066 (YYPUSH_MORE): Add #define.
8067 (yypushparse): Modify return value.
8068
8069 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8070
8071 * stamp-h.in: Remove; no longer needed.
8072 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
8073 Remove config.h, config.hin, intl (no longer created).
8074 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
8075 stamp-h1.
8076
8077 Sync bootstrap from coreutils, as follows:
8078
8079 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
8080
8081 * bootstrap (symlink_to_gnulib): New function.
8082 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
8083 to copies-of-gnulib.
8084 (cp_mark_as_generated, slurp, gnulib_files):
8085 Avoid making a copy if it's the same as the old version.
8086 (gnulib_files): Add support for this variable (used by Bison).
8087
8088 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8089
8090 * src/getargs.c (usage): Rework to use conventions similar to
8091 coreutils, to make translation a bit easier and the code a bit
8092 smaller. Problem reported by Tim Van Holder.
8093
8094 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
8095
8096 Use some of gnulib's new modules, taken from coreutils.
8097
8098 * bootstrap: Sync from coreutils, except add support for gnulib_files.
8099 * bootstrap.conf: New file.
8100 (gnulib_modules): Add configmake, inttypes, unistd.
8101 (XGETTEXT_OPTIONS): Add complain, complain_at,
8102 fatal, fatal_at, warn, warn_at, unexpected_end.
8103 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
8104 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
8105 (gl_EARLY): Add.
8106 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
8107 (gl_INIT): Add
8108 (GNULIB_AUTOCONF_SNIPPET): Remove.
8109 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
8110 the pickiest.
8111 * lib/.cvsignore: Add inttypes_.h.
8112 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
8113 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
8114 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
8115 no-longer-necessary initializations.
8116 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
8117 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
8118 use the unistd module.
8119 * src/system.h: Likewise.
8120 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
8121 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
8122 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
8123 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
8124 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
8125 * src/system.h: Include inttypes.h unconditionally, now that we
8126 use the inttypes module. Don't bother to include stdint.h, since
8127 inttypes.h now does that for us.
8128 (LOCALEDIR): Remove, now that we use the configmake module.
8129 * src/getargs.c: Include configmake.h.
8130 * src/main.c: Likewise.
8131 * src/output.c: Likewise.
8132 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
8133 not from $abs_top_builddir, since config.h moved.
8134
8135
8136 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
8137 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
8138
8139 * src/parse-gram.y (symbol_declaration): Don't put statements
8140 before declarations; it's not portable to C89.
8141 * src/scan-code.l (handle_action_at): Likewise.
8142
8143 * src/scan-code.l: Always initialize braces_level; the old code
8144 left it uninitialized and therefore had undefined behavior.
8145
8146 Don't attempt to redefine 'assert', since it runs afoul of
8147 systems where standard headers (mistakenly) include <assert.h>.
8148 Instead, define and use our own alternative, called 'aver'.
8149 * src/reader.c: Don't include assert.h, since we no longer
8150 use assert.
8151 * src/scan-code.l: Likewise.
8152 * src/system.h (assert): Remove, replacing with....
8153 (aver): New function, taking a bool arg. All uses changed.
8154 * src/tables.c (pack_vector): Ensure that aver arg is bool,
8155 not merely an integer.
8156
8157 2006-09-15 Bob Rossi <bob@brasko.net>
8158
8159 Add support for push parsing. Based on the original work of
8160 Odd Arild Olsen <oao@fibula.no>.
8161 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
8162 * data/c.m4 (YYPUSH): New.
8163 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
8164 * data/push.c: New file.
8165 * src/getargs.c (push_parser): New var.
8166 * src/getargs.h (push_parser): New declaration.
8167 * src/output.c (prepare): Add macro insertion of `push_flag'.
8168 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
8169 (prologue_declaration): Parse %push-parser.
8170 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
8171 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
8172 list of removed lines from the traces observed.
8173 (AT_CHECK_CALC_LALR): Added push parser tests.
8174
8175 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
8176
8177 * NEWS: Version 2.3a.
8178 * configure.ac (AC_INIT): Likewise.
8179
8180 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
8181 "#define YYSTYPE int" that caused "make maintainer-check" to fail
8182 due to header ordering dependencies. I don't know why the #define
8183 was there.
8184
8185 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
8186 runtime cost when YYDEBUG is not defined, and so that some tests
8187 that used to fail now work. Problem and initial suggestion by
8188 Paolo Bonzini.
8189 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
8190 * data/glr.cc (b4_parser_class_name):
8191 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
8192 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
8193 (yydebug_) [YYDEBUG]: New member.
8194 (yycdebug_): Now defined only if YYDEBUG.
8195 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
8196 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
8197 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
8198 if YYYDEBUG.
8199 (debug_stream, set_debug_stream, debug_level, set_debug_level):
8200 Define only if YYDEBUG.
8201 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
8202 set_debug_level.
8203 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
8204 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
8205 AT_CHECK_CALC_GLR_CC that are working now.
8206
8207 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
8208
8209 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
8210 We don't need them in glr.cc, and glr.c defines them.
8211 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
8212 assumes that defining it to anything is the same as defining
8213 it to 1. Problem reported by Paolo Bonzini.
8214
8215 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
8216
8217 * data/c.m4 (b4_null, b4_case): Define.
8218 * src/output.c (prepare_symbols): Use b4_null.
8219 (user_actions_output): Use b4_case.
8220
8221 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
8222
8223 * data/glr.c (b4_shared_declarations): Put start-header first,
8224 before any #includes that we generate, so that feature-test
8225 macros work. Problem reported by Michael Deutschmann in
8226 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
8227 * data/lalr1.cc: Likewise.
8228 * doc/bison.texinfo (Prologue): Document that feature-test macros
8229 should be defined before any Bison declarations.
8230 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
8231 that depend on location.hh after, not before, Bison decls, since
8232 we now include location.hh after the first user prologue.
8233
8234 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
8235 Sander Brandenburg in
8236 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
8237 Also, fix minor white space and comment issues.
8238 (Prologue): Mention that it's better to define feature-test macros
8239 before Bison declarations. Problem reported by Michael Deutschmann.
8240
8241 * README-cvs: Fix typo: "&" should be "&&". Problem reported
8242 by Jim Meyering.
8243 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
8244 This adjusts to recent gnulib changes.
8245
8246 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
8247
8248 Finish implementation of per-type %destructor/%printer. Discussed
8249 starting at
8250 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
8251 and
8252 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
8253 * NEWS (2.3+): Add a description of this feature to the default
8254 %destructor/%printer description.
8255 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
8256 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
8257 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
8258 list node contains a semantic type.
8259 * src/symtab.c, src/symtab.h: Extend with a table that associates
8260 semantic types with their %destructor's and %printer's.
8261 (semantic_type_from_uniqstr, semantic_type_get,
8262 semantic_type_destructor_set, semantic_type_printer_set): New functions
8263 composing the public interface of that table.
8264 (symbol_destructor_get, symbol_destructor_location_get,
8265 symbol_printer_get, symbol_printer_location_get): If there's no
8266 per-symbol %destructor/%printer, look up the per-type before trying
8267 the default.
8268 * tests/actions.at (Per-type %printer and %destructor): New test case.
8269 * tests/input.at (Default %printer and %destructor redeclared):
8270 Extend to check that multiple occurrences of %symbol-default in a
8271 single %destructor/%printer declaration is an error.
8272 (Per-type %printer and %destructor redeclared, Unused values with
8273 per-type %destructor): New test cases.
8274
8275 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
8276
8277 Require default %destructor/%printer to be declared using
8278 %symbol-default instead of an empty symbol list, and start working on
8279 new per-type %destructor/%printer. Discussed at
8280 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
8281 * NEWS (2.3+): Add %symbol-default to example.
8282 * bison.texinfo (Freeing Discarded Symbols): Likewise.
8283 (Table of Symbols): Add entry for %symbol-default.
8284 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
8285 (generic_symlist, generic_symlist_item): New nonterminals for creating
8286 a list in which each item is a symbol, semantic type, or
8287 %symbol-default.
8288 (grammar_declaration): Use generic_symlist in %destructor and %printer
8289 declarations instead of symbols.1 or an empty list.
8290 (symbol_declaration, precedence_declaration, symbols.1): Update actions
8291 for changes to symbol_list.
8292 * src/reader.c: Update for changes to symbol_list.
8293 * src/scan-code.l: Likewise.
8294 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
8295 * src/symlist.c, src/symlist.h: Extend such that a list node may
8296 represent a semantic type or a %symbol-default in addition to just an
8297 ordinary symbol. Add switched functions for setting %destructor's and
8298 %printer's.
8299 * tests/actions.at, tests/input.at: Add %symbol-default to all default
8300 %destructor/%printer declarations.
8301
8302 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
8303
8304 Whether the default %destructor/%printer applies to a particular symbol
8305 isn't a question of whether the user *declares* that symbol (in %token,
8306 for example). It's a question of whether the user by any means
8307 *defines* the symbol at all (by simply using a char token, for
8308 example). $end is defined by Bison whereas any other token with token
8309 number 0 is defined by the user. The error token is always defined by
8310 Bison regardless of whether the user declares it with %token, but we
8311 may one day let the user define error as a nonterminal instead.
8312 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
8313 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
8314 the meaning of "user-defined".
8315 * tests/actions.at (Default %printer and %destructor for user-declared
8316 end token): Rename to...
8317 (Default %printer and %destructor for user-defined end token): ...
8318 this.
8319
8320 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
8321 computation of whether to apply the default, don't maintain a list of
8322 every Bison-defined symbol. Instead, just check for a first character
8323 of '$', which a user symbol cannot have, and check for the error token.
8324
8325 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
8326
8327 Don't apply the default %destructor or %printer to the error token,
8328 $undefined, or $accept. This change fits the general rule that the
8329 default %destructor and %printer are only for user-declared symbols,
8330 and it solves several difficulties that are described in the new test
8331 cases listed below.
8332 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
8333 * tests/actions.at (Default %printer and %destructor are not for error
8334 or $undefined, Default %printer and %destructor are not for $accept):
8335 New test cases.
8336
8337 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
8338
8339 Allow %start after the first rule.
8340 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
8341 when parsing the first rule.
8342 (check_and_convert_grammar): Search for it here after all grammar
8343 declarations have been parsed. Skip midrules, which have dummy LHS
8344 nonterminals.
8345 * src/symtab.c (symbol_is_dummy): New function.
8346 * src/symtab.h (symbol_is_dummy): Declare it.
8347 * tests/input.at (%start after first rule): New test.
8348
8349 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8350
8351 Redo some of the previous commit: add back the ability to use
8352 non-aliased/undeclared string literals since it might be useful to
8353 those declaring %token-table.
8354 * src/reader.c (check_and_convert_grammar): Undo changes in previous
8355 commit: don't worry about complaints from symbols_pack.
8356 * src/symtab.c (symbol_new, symbol_class_set,
8357 symbol_check_alias_consistency): Undo changes in previous commit: count
8358 each string literal as a new symbol and token, assign it a symbol
8359 number, and don't complain about non-aliased string literals.
8360 (symbols_pack): Since symbol_make_alias still does not decrement symbol
8361 and token counts but does still set aliased tokens to the same number,
8362 symbol_pack_processor now leaves empty slots in the symbols array.
8363 Remove those slots.
8364 * tests/regression.at (Undeclared string literal): Remove test case
8365 added in previous commit since non-aliased string literals are allowed
8366 again.
8367 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
8368 remove unnecessary string literal declarations.
8369 * tests/sets.at (Firsts): Likewise.
8370
8371 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8372
8373 Don't allow an undeclared string literal, but allow a string literal to
8374 be used before its declaration.
8375 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
8376 symbols_pack complained.
8377 * src/symtab.c (symbol_new): Don't count a string literal as a new
8378 symbol.
8379 (symbol_class_set): Don't count a string literal as a new token, and
8380 don't assign it a symbol number since symbol_make_alias does that.
8381 (symbol_make_alias): It's not necessary to decrement the symbol and
8382 token counts anymore. Don't assume that an alias declaration occurs
8383 before any uses of the identifier or string, and thus don't assert that
8384 one of them has the highest symbol number so far.
8385 (symbol_check_alias_consistency): Complain if there's a string literal
8386 that wasn't declared as an alias.
8387 (symbols_pack): Bail if symbol_check_alias_consistency failed since
8388 symbol_pack asserts that every token has been assigned a symbol number
8389 although undeclared string literals have not.
8390 * tests/regression.at (String alias declared after use, Undeclared
8391 string literal): New test cases.
8392 (Characters Escapes, Web2c Actions): Declare string literals as
8393 aliases.
8394 * tests/sets.at (Firsts): Likewise.
8395
8396 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
8397
8398 In the grammar scanner, STRING_FINISH unclosed constructs and return
8399 them to the parser in order to improve error messages.
8400 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
8401 SC_BRACED_CODE, SC_PROLOGUE): Implement.
8402 * tests/input.at (Unclosed constructs): New test case.
8403 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
8404 seen.
8405
8406 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
8407 unused global.
8408
8409 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
8410
8411 Handle string aliases for character tokens correctly.
8412 * src/symtab.c (symbol_user_token_number_set): If the token has an
8413 alias, check and set its alias's user token number instead of its own,
8414 which is set to indicate the alias. Previously, every occurrence of
8415 the character token in the grammar overwrote that alias indicator with
8416 the character code.
8417 * tests/input.at (String aliases for character tokens): New test.
8418
8419 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
8420
8421 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
8422
8423 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
8424
8425 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
8426 to prevent failures when building on older platforms.
8427 Check for autopoint failure.
8428 Set XGETTEXT_OPTIONS to values that check for C format strings,
8429 so that translators are warned about them (this also helps
8430 prevent core dumps).
8431
8432 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
8433 function, since it simplifies our code a bit.
8434
8435 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
8436 rather than -W, so we don't get bogus warnings about sign comparisons.
8437 Add -Wpointer-arith, since that warning is useful (it reports code
8438 that does not conform to C89 and that some compilers reject).
8439 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
8440 since it's no longer needed.
8441
8442 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
8443
8444 Clean up scanners a bit.
8445 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
8446 definitions so gcc won't warn when obstack_for_string is unused.
8447 * src/scan-code.l: config.h and system.h are already #include'd by
8448 scan-code-c.c, so get rid of them here.
8449 * src/scan-gram.l: Likewise.
8450 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
8451 definitions rather than duplicating the rest of it.
8452 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
8453
8454 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
8455
8456 Suppress signed/unsigned comparison warnings for yycheck.
8457 * data/c.m4 (b4_safest_int_type): New macro.
8458 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
8459 a signed int type, cast it to b4_safest_int_type first.
8460 * data/yacc.c: Likewise.
8461 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
8462 also overwritten.
8463
8464 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
8465
8466 * doc/bison.texinfo: Fix some typos.
8467
8468 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
8469
8470 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
8471 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
8472
8473 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
8474 the latest gnulib does this a different way.
8475 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
8476 translation was patched, so stop omitting it.
8477
8478 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8479
8480 Enable declaration of default %printer/%destructor. Make the parser
8481 use these for all user-declared grammar symbols for which the user does
8482 not declare a specific %printer/%destructor. Thus, the parser uses it
8483 for token 0 if the user declares it but not if Bison generates it as
8484 $end. Discussed starting at
8485 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
8486 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
8487 and
8488 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
8489 * NEWS (2.3+): Mention.
8490 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
8491 declare a %destructor for a mid-rule's semantic value. It's just
8492 impossible to declare one specific to it.
8493 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
8494 code. Describe default %destructor form.
8495 * src/parse-gram.y (grammar_declaration): Parse default
8496 %printer/%destructor declarations.
8497 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
8498 and symbol_destructor_location_get rather than accessing the destructor
8499 and destructor_location members of struct symbol.
8500 (symbol_printers_output): Likewise but for %printer's.
8501 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
8502 again.
8503 * src/symtab.c (default_destructor, default_destructor_location,
8504 default_printer, default_printer_location): New static global
8505 variables to record the default %destructor and %printer.
8506 (symbol_destructor_get, symbol_destructor_location_get,
8507 symbol_printer_get, symbol_printer_location_get): New functions to
8508 compute the appropriate %destructor and %printer for a symbol.
8509 (default_destructor_set, default_printer_set): New functions to set the
8510 default %destructor and %printer.
8511 * src/symtab.h: Prototype all those new functions.
8512 * tests/actions.at (Default %printer and %destructor): New test to
8513 check that the right %printer and %destructor are called, that they're
8514 not called for $end, and that $$ and @$ work correctly.
8515 (Default %printer and %destructor for user-declared end token): New
8516 test to check that the default %printer and %destructor are called for
8517 a user-declared end token.
8518 * tests/input.at (Default %printer and %destructor redeclared, Unused
8519 values with default %destructor): New tests to check related grammar
8520 warnings and errors.
8521
8522 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8523
8524 Clean up handling of %destructor for the end token (token 0).
8525 Discussed starting at
8526 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
8527 and
8528 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
8529
8530 Make the skeletons consistent in how they pop the end token and invoke
8531 its %destructor.
8532 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
8533 state, which has token number 0, since this would invoke the
8534 %destructor for the end token.
8535 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
8536 until after shifting the end token, or else it won't be popped.
8537 * data/yacc.c (yyparse): Likewise.
8538
8539 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
8540 it's the end token. Upon termination, destroy an unshifted lookahead
8541 even when it's the end token.
8542 * data/lalr1.cc (yy::parser::parse): Likewise.
8543 * data/yacc.c (yyparse): Likewise.
8544
8545 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
8546 value warnings for the end token when the user gives the end token a
8547 %destructor.
8548
8549 * tests/actions.at (Printers and Destructors): Test all the above.
8550
8551 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
8552
8553 Update to latest gnulib and gettext versions.
8554 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
8555 Add fopen-safer.
8556 (gnulib_files): Add m4/warning.m4. Don't worry about files
8557 overwritten by autopoint.
8558 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
8559 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
8560 rejects them.
8561 Don't use autoreconf; instead, invoke autopoint etc. by hand,
8562 so that we can remove the intl files at a better time.
8563 (intl_files_to_remove): Remove aclocal.m4, since it gets
8564 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
8565 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
8566 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
8567 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
8568 Remove datarootdir hack; no longer needed.
8569 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
8570 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
8571 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
8572 strdup.h.
8573 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
8574 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
8575
8576 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
8577
8578 * bootstrap: Adjust to today's change to gnulib-tool by invoking
8579 it with --assume-autoconf='latest-stable'.
8580
8581 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
8582
8583 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
8584 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
8585 YYSTYPE' and `{'.
8586 * src/muscle_tab.h (muscle_grow): Replace the header comments with
8587 those from muscle_tab.c since the old ones are misleading.
8588
8589 2006-07-13 Akim Demaille <akim@epita.fr>
8590
8591 Support %define "KEY" {VALUE}.
8592 * src/scan-code.h, src/scan-code.l (translate_action)
8593 (translate_rule_action, translate_symbol_action, translate_code):
8594 Return char *, not const char *.
8595 * src/parse-gram.y (declaration): Rename as...
8596 (prologue_declaration): this.
8597 (string_content): Remove this nonterminal, use STRING.
8598 (braceless, content, content.opt): New nonterminal.
8599 Use them.
8600 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
8601 as value.
8602 * src/scan-gram.l (getargs.h): Don't include it.
8603
8604 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
8605
8606 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
8607 rather than a for-loop that declares a local bool variable. This
8608 should work around a compatibility problem with a Cray x1e C++
8609 compiler reported by Hung Nguyen in
8610 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
8611 The for-loop was introduced in the 2004-11-17 change but I don't
8612 know why it was needed.
8613
8614 2006-07-12 Akim Demaille <akim@epita.fr>
8615
8616 * data/c.m4: Comment changes.
8617
8618 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
8619
8620 * src/complain.c (error_message, ERROR_MESSAGE): New.
8621 To factor...
8622 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
8623 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
8624
8625 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8626
8627 * NEWS: Instead of %union, you can define and use your own union type
8628 YYSTYPE if your grammar contains at least one <type> tag.
8629 Your YYSTYPE need not be a macro; it can be a typedef.
8630 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
8631 (Union Decl, Decl Summary): Document this.
8632 * data/glr.c (YYSTYPE): Implement this.
8633 * data/glr.cc (YYSTYPE): Likewise.
8634 * data/lalr1.cc (YYSTYPE): Likewise.
8635 * data/yacc.c (YYSTYPE): Likewise.
8636 * src/output.c (prepare): Output tag_seen_flag.
8637 * src/parse-gram.y (declaration, grammar_declaration):
8638 Use 'union_seen' rather than 'typed' to determine whether
8639 %union has been seen, since grammars can now be typed without
8640 %union.
8641 (symbol_declaration, type.opt, symbol_def):
8642 Keep track of whether a tag has been seen.
8643 * src/reader.c (union_seen, tag_seen): New vars.
8644 (typed): remove.
8645 * src/reader.h (union_seen, tag_seen, typed): Likewise.
8646 * src/scan-code.l (untyped_var_seen): New variable.
8647 (handle_action_dollar): Adjust to above changes.
8648 (handle_action_dollar, handle_action_at):
8649 Improve overflow checking for outlandish numbers.
8650 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
8651 avoid new diagnostics generated by above changes.
8652 * tests/regression.at (YYSTYPE typedef): Add test to check
8653 for type tags without %union.
8654
8655 * src/symlist.c (symbol_list_length): Return int, not unsigned
8656 int, since callers expect int. This may need to get revisited
8657 once we have proper integer overflow checking.
8658
8659 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
8660 object is now static.
8661
8662 * src/getargs.c (flags_argmatch): Return void, not int,
8663 to pacify ./configure --enable-gcc-warnings.
8664
8665 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
8666 since last_string is already defined to FLEX_PREFIX (last_string).
8667
8668 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
8669
8670 Implement --warnings/-W.
8671 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
8672 replaced by...
8673 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
8674 Adjust callers.
8675 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
8676 (warnings_args, warnings_types): New.
8677 (getargs, short_options, long_options): Accept -W/--warnings.
8678 Sort the options by alphabetical order, upper case letter right
8679 before its lower case.
8680
8681 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
8682
8683 Change %merge result type clash warnings to errors. Discussed at
8684 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
8685 * src/reader.c (record_merge_function_type): Use complain_at.
8686 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8687 declared later): Update test case results.
8688
8689 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
8690
8691 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
8692 to be in alphabetical order.
8693 (trace_args): Spelling fixes.
8694
8695 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8696
8697 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
8698 so they don't collide with user-defined macros.
8699 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
8700 this was never guaranteed, and now that we're using gnulib stdint,
8701 which defines int_fast16_t to long int, the problem is exposed.
8702
8703 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
8704
8705 * data/c.m4 (b4_basename): Simplify a bit, since we don't
8706 need the full POSIX semantics (and weren't implementing them
8707 anyway).
8708
8709 Adjust to Autoconf 2.60 and today's gnulib.
8710 * bootstrap (gnulib_modules): Add stdint.
8711 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
8712 no longer copies it.
8713 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
8714 since stdint needs the former and wcwidth (which is now required
8715 by mbswidth) needs the latter.
8716 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
8717 work around a compatibility glitch between gettext 0.14.6 and
8718 Autoconf 2.60.
8719 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
8720 Do not check for uintptr_t, since new stdint module does the right
8721 thing.
8722 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
8723 Add stdint.h, stdint_.h, wcwidth.h.
8724 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
8725 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
8726 stdint.m4, wchar_t.m4, wcwidth.m4.
8727 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
8728 usual order for ../lib/*.h files.
8729 (file_name_split): Use last_component, not base_name, to adjust
8730 to gnulib changes.
8731 * src/parse-gram.h: Include <strverscmp.h> in the usual order
8732 for ../lib/*.h files.
8733 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
8734 Define unconditionally, since we now assume the stdint module.
8735 * src/scan-skel.l: Include <dirname.h>.
8736 (BASE_QPUTS): Use last_component, not base_name.
8737 * src/system.h: Include <unlocked-io.h> in the usual order
8738 for ../lib/*.h files. Include <stdint.h> unconditionally,
8739 since we now use the stdint module.
8740 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
8741 HAVE_UINTPTR_T, since we now use the stdint module.
8742 (base_name): Remove decl, since files now include <dirname.h>
8743 to get the decl.
8744
8745 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
8746
8747 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
8748 New, default to 1.
8749 * data/yacc.c, data/glr.c, data/location.cc: Use them.
8750 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
8751 default.
8752 * tests/calc.at: Adjust.
8753
8754 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
8755
8756 * data/c.m4 (b4_basename): New.
8757 (b4_syncline): Also output the location of its invocation (from
8758 the skeleton).
8759 (b4_user_action, b4_define_user_action, b4_user_actions)
8760 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
8761 (b4_user_stype): New.
8762 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
8763
8764 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8765
8766 In the grammar file, the first column is 1 not 0 on the first line as
8767 on every other line.
8768 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
8769 * tests/input.at (Torturing the Scanner): Update output.
8770
8771 * src/scan-gram.l (scanner_cursor): Declare it static.
8772
8773 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8774
8775 In warnings, say "previous declaration" rather than "first
8776 declaration".
8777 * src/symtab.c (redeclaration): Do that here.
8778 * src/reader.c (record_merge_function_type): In the case of a result
8779 type clash, report the previous declaration rather than the very first
8780 one in the grammar file.
8781 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8782 declared later): Add a third declaration to check this behavior.
8783 * tests/input.at (Incompatible Aliases): Update output.
8784
8785 2006-06-27 Akim Demaille <akim@epita.fr>
8786
8787 * doc/Doxyfile.in: New.
8788 * doc/Makefile.am: Use it.
8789 * src/lalr.h, src/symtab.h: Initial doxygenation.
8790
8791 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8792
8793 Don't miss %merge result type warnings just because the LHS types are
8794 declared after the %merge. This continues the effort of the previous
8795 patch.
8796 * src/reader.c (get_merge_function): Don't set the merger type yet.
8797 (record_merge_function_type): New function for setting the merger type
8798 and checking for clashes.
8799 (grammar_current_rule_merge_set): Set the location of the %merge for
8800 the current rule.
8801 (packgram): Invoke record_merge_function_type for each rule now that
8802 all symbol type declarations have been parsed.
8803 * src/reader.h (merger_list.type_declaration_location): New member
8804 storing the location of the first %merge from which the type for this
8805 merging function was derived.
8806 * src/symlist.h (symbol_list.merger_declaration_location): New member
8807 storing the location of a rule's %merge, if any.
8808 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8809 declared later): New test to catch the error fixed by the above patch.
8810
8811 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8812
8813 Get action warnings (grammar_rule_check) right even when symbol
8814 declarations appear after the rules. Discussed at
8815 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
8816 and
8817 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
8818 Don't mistake the type of $$ in a midrule to be that of its parent
8819 rule's $$.
8820 * src/reader.c (grammar_current_rule_end): Don't invoke
8821 grammar_rule_check yet since not all symbol declarations may have been
8822 parsed yet.
8823 (grammar_midrule_action): Likewise.
8824 Don't record whether the midrule's $$ has been used yet since actions
8825 haven't been translated yet.
8826 Record the midrule's parent rule and its RHS index within the parent
8827 rule.
8828 (grammar_current_rule_action_append): Don't translate the action yet
8829 since not all symbol declarations may have been parsed yet and, thus,
8830 warnings about types for $$, $n, @$, and @n can't be reported yet.
8831 (packgram): Translate the action and invoke grammar_rule_check now that
8832 all symbol declarations have been parsed.
8833 * src/scan-code.l (handle_action_dollar): Now that this is invoked
8834 after parsing the entire grammar file, the symbol list here in the case
8835 of a midrule is actually the midrule's empty RHS, so reference its
8836 parent rule's RHS where necessary.
8837 On the other hand, now that you can already know it's a midrule, you
8838 aren't forced to think $$ has the same type as its parent rule's $$.
8839 (handle_action_at): In the case of a midrule, reference the parent rule
8840 where necessary.
8841 * src/symlist.c (symbol_list_new): Initialize new midrule-related
8842 members.
8843 (symbol_list_length): Now that this is invoked after all rules have
8844 been parsed, a NULL symbol (rather than a NULL symbol list node)
8845 terminates a rule. symbol_list_print already does this correctly.
8846 * src/symlist.h (symbol_list.midrule_parent_rule,
8847 symbol_list.midrule_parent_rhs_index): New members so that midrules can
8848 remember their relationships with their parents.
8849 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
8850 fixed by the above patch.
8851 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
8852 implementing...
8853 (Unused values): ... this old test case and...
8854 (Unused values before symbol declarations): ... this new test case.
8855 This one is the same as `Unused values' except that all symbol
8856 declarations appear after the rules in order to catch the rest of the
8857 errors fixed by the above patch.
8858
8859 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8860
8861 More cleanup.
8862 * src/reader.c (current_rule): Declare it static since it's no longer
8863 used outside this file.
8864 (grammar_current_rule_action_append): Remove redundant arguments from
8865 translate_rule_action invocation.
8866 * src/reader.h (current_rule): Remove this unused extern.
8867 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
8868 * src/scan-code.l (translate_rule_action): Likewise.
8869
8870 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
8871
8872 Clean up yesterday's patch.
8873 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
8874 to...
8875 * src/reader.c (grammar_current_rule_action_append): ... here for
8876 consistency with grammar_current_rule_symbol_append.
8877 * tests/regression.at (Braced code in declaration in rules section):
8878 Make yyerror and yylex static as usual.
8879
8880 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
8881
8882 Fix bug that mistakes braced code in a declaration in the rules section
8883 to be a rule action. Mentioned at
8884 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
8885 * src/scan-gram.l: Move midrule action detection from the start of the
8886 scanning of any braced code to...
8887 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
8888 action. For readability, use $2 and @2 rather than the equivalent
8889 global variables.
8890 * tests/regression.at (Braced code in declaration in rules section):
8891 New test to catch the error fixed by the above patch.
8892
8893 Work on code readability some.
8894 * src/scan-code.l (current_rule): Get rid of this misleading and
8895 redundant declaration: it's actually extern'ed in reader.h.
8896 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
8897 translate_action): Add a rule argument and use it instead of the global
8898 current_rule.
8899 (translate_rule_action): This already receives current_rule through an
8900 argument, so pass it on to translate_action instead of assigning
8901 current_rule to current_rule.
8902 (translate_symbol_action, translate_code): Pass rule = NULL to
8903 translate_action.
8904
8905 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
8906
8907 Rename %before-definitions to %start-header and %after-definitions to
8908 %end-header. Don't use these declarations to separate pre-prologue
8909 blocks from post-prologue blocks. Add new order-independent
8910 declarations %before-header and %after-header as alternatives to the
8911 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
8912 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
8913 * NEWS (2.3+): Update for these changes.
8914 * data/glr.c (b4_before_definitions): Update to...
8915 (b4_start_header): ... this.
8916 (b4_after_definitions): Update to...
8917 (b4_end_header): ... this.
8918 * data/glr.cc: Likewise.
8919 * data/lalr1.cc: Likewise.
8920 * data/yacc.c: Likewise.
8921 * doc/bison.texinfo (The prologue): Update names, and replace remaining
8922 prologue blocks with %*-header declarations.
8923 (Calc++ Parser): Likewise.
8924 (Decl Summary): Update names.
8925 (Table of Symbols): Update description.
8926 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
8927 (PERCENT_END_HEADER): ... this.
8928 (PERCENT_BEFORE_DEFINITIONS): Update to...
8929 (PERCENT_START_HEADER): ... this.
8930 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8931 (declaration): Update token names and m4 macro names.
8932 When parsing %end-header and %start-header, invoke translate_code
8933 before muscle_code_grow, and no longer set global booleans to remember
8934 whether these declarations have been seen.
8935 Parse new %after-header and %before-header.
8936 * src/reader.c (before_definitions, after_definitions): Remove.
8937 (prologue_augment): Accept a new bool argument to specify whether to
8938 augment the pre-prologue or post-prologue.
8939 * src/reader.h (before_definitions, after_definitions): Remove these
8940 extern's.
8941 (prologue_augment): Add new bool argument.
8942 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
8943 (PERCENT_END_HEADER): ... this.
8944 (PERCENT_BEFORE_DEFINITIONS): Update to...
8945 (PERCENT_START_HEADER): ... this.
8946 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8947 * tests/actions.at (Printers and Destructors): Update names.
8948
8949 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
8950
8951 Add comparison operators for C++ location classes. Discussed at
8952 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
8953 * data/c++.m4 (b4_define_location_comparison): New boolean %define
8954 declaration indicating whether filename_type has an operator==. If
8955 filename_type is `std::string', it defaults to `1', `0' otherwise.
8956 * data/location.cc: Iff b4_define_location_comparison is `1', add
8957 operator== and operator!= for class position and for class location.
8958
8959 Some minor fixes.
8960 * src/scan-action.l: Remove unused file.
8961 * src/symtab.c (symbol_printer_set): Use printer_location not
8962 destructor_location.
8963 * src/symtab.h (struct symbol): Replace incorrect source comment for
8964 printer members.
8965 * tests/input.at (Incompatible Aliases): Update output with correct
8966 printer location.
8967
8968 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
8969
8970 Don't put the pre-prologue in the header file. For the yacc.c code
8971 file and the glr.c header and code files, move the pre-prologue before
8972 the token definitions. Add new %before-definitions and
8973 %after-definitions to declare code that will go in both the header file
8974 and code file. Discussed at
8975 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
8976 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
8977 and
8978 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
8979 * NEWS (2.3+): Describe these changes.
8980 * data/glr.c (b4_pre_prologue): Move from within to before...
8981 (b4_shared_declarations): ... this.
8982 Add new b4_before_definitions before b4_token_enums.
8983 Add new b4_after_definitions at the end.
8984 * data/glr.cc (b4_pre_prologue): Replace with...
8985 (b4_before_definitions): ... this in the header file.
8986 (b4_after_definitions): New near the end of the header file.
8987 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
8988 code file right before including the header file.
8989 (b4_before_definitions): New in the previous position of
8990 b4_pre_prologue in the header file.
8991 (b4_after_definitions): New near the end of the header file.
8992 * data/yacc.c: Clean up some m4 quoting especially in the header file.
8993 (b4_token_enums_defines): In the code file, move to right before
8994 YYSTYPE for consistency with the header file.
8995 (b4_before_definitions): New right before b4_token_enums_defines in
8996 both the header and code file.
8997 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
8998 header and code file.
8999 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
9000 of prologues for %union dependencies.
9001 (Decl Summary): In %defines description, mention the effect of
9002 %before-definitions and %after-definitions on the header file.
9003 (Calc++ Parser): Forward declare driver in a %before-definitions rather
9004 than in the pre-prologue so that make check succeeds.
9005 (Table of Symbols): Add entries for %before-definitions and
9006 %after-definitions.
9007 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
9008 %before-definitions.
9009 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
9010 (declaration): Parse those declarations and append to
9011 b4_before_definitions and b4_after_definitions, respectively.
9012 * src/reader.c (before_definitions, after_definitions): New bools to
9013 track whether those declarations have been seen.
9014 (prologue_augment): Add to the post-prologue if %union,
9015 %before-definitions, or %after-definitions has been seen.
9016 * src/reader.h (before_definitions, after_definitions): New extern's.
9017 * src/scan-gram.l: Scan the new declarations.
9018 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
9019 prologue block in a %before-definitions or a %after-definitions based
9020 on whether the %union is declared.
9021 * tests/regression.at (Early token definitions with --yacc, Early token
9022 definitions without --yacc): Move tests for token definitions into the
9023 post-prologue since token names are no longer defined in the
9024 pre-prologue.
9025
9026 2006-06-20 Akim Demaille <akim@epita.fr>
9027
9028 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
9029 (symbol_get): Use it.
9030 * src/parse-gram.y: Use it.
9031
9032 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
9033
9034 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
9035 build succeeds when configured with --enable-gcc-warnings.
9036
9037 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
9038
9039 * src/parse-gram.y (char_name): New function.
9040 (CHAR, STRING, string_content): For %printer, properly escape.
9041 (ID): Prefer fputs to fprintf.
9042 (id): Reindent to be consistent with other rules.
9043 Properly quote char.
9044
9045 The Translation Project changed its way of publishing translations
9046 to maintainers. I haven't received any responses to my request
9047 for supporting the old way, or for documenting the new way. I
9048 have modified 'bootstrap' to use screen scraping
9049 (in this case, HTML scraping). This is unreliable and inelegant,
9050 but I don't see any better way. Yuck.
9051 * bootstrap (TP_URL, WGET_COMMAND): New vars.
9052 (get_translations): New function, which uses HTML scraping to
9053 deduce locations of latest translations.
9054 Use this function to grab both bison and bison-runtime .po files.
9055 Don't bother priming the pump for the runtime-po domain any more,
9056 as it's now translated better than bison is.
9057
9058 2006-06-19 Akim Demaille <akim@epita.fr>
9059
9060 * src/scan-gram.l: No longer "parse" things after `%union' until
9061 `{'. Rather, return a single "%union" token.
9062 No longer make symbols: return strings, and leave the conversion
9063 to symbols to the parser.
9064 (SC_PRE_CODE, token_type): Remove.
9065 * src/parse-gram.y (%union): New field `character'.
9066 Sort tokens.
9067 (CHAR): New token.
9068 (ID, ID_COLON): Now that the scanner no longer makes them
9069 identifiers, adjust all uses to invoke symbol_get.
9070 (id_colon): New, wraps the conversion from string to symbol.
9071 (%union): Accept a possible union_name.
9072 (symbol): Now can be a char.
9073 * data/c.m4 (b4_union_name): Leave a default value.
9074 * data/glr.c, data/yacc.c: Use it.
9075
9076 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
9077
9078 For associating token numbers with token names for "yacc.c", don't use
9079 #define statements unless `--yacc' is specified; always use enum
9080 yytokentype. Most important discussions start at:
9081 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
9082 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
9083 and
9084 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
9085 * NEWS (2.3+): Mention.
9086 * data/c.m4 (b4_yacc_if): New.
9087 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
9088 token #define's.
9089 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
9090 on token name definitions.
9091 * src/getargs.c (usage): Capitalize `Yacc' in English.
9092 * src/output.c (prepare): Define b4_yacc_flag.
9093 * tests/regression.at (Early token definitions): Test that tokens names
9094 are defined before the pre-prologue not just before the post-prologue.
9095 Remove this test case and copy to...
9096 (Early token definitions with --yacc): ... this to test #define's.
9097 (Early token definitions without --yacc): ... and this to test enums.
9098
9099 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
9100
9101 * NEWS: Reword the post-2.3 change to not be so optimistic about
9102 removing the old "look-ahead" spelling.
9103 Update previous look-ahead/lookahead change reports.
9104 * REFERENCES: look-ahead -> lookahead (since that's
9105 what he actually wrote).
9106 * doc/refcard.tex: look ahead -> lookahead,
9107 look-ahead -> lookahead
9108
9109 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
9110
9111 For consistency, use `lookahead' instead of `look-ahead' or
9112 `look_ahead'. Discussed starting at
9113 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
9114 and then at
9115 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
9116 * NEWS: For the next release, note the change to `--report'.
9117 * TODO, doc/bison.1: Update English.
9118 * doc/bison.texinfo: Update English.
9119 (Understanding Your Parser, Bison Options): Document as
9120 `--report=lookahead' rather than `--report=look-ahead'.
9121 * src/conflicts.c: Update English in comments.
9122 (lookahead_set): Rename from look_ahead_set.
9123 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
9124 (resolve_sr_conflict): Rename local look_ahead_tokens to
9125 lookahead_tokens, and update other uses.
9126 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
9127 count_rr_conflicts, conflicts_free): Update uses.
9128 * src/getargs.c (report_args): Move "lookahead" before alternate
9129 spellings.
9130 (report_types): Update uses.
9131 (usage): For `--report' usage description, state `lookahead' spelling
9132 rather than `look-ahead'.
9133 * src/getargs.h (report.report_lookahead_tokens): Rename from
9134 report_look_ahead_tokens.
9135 * src/lalr.c: Update English in comments.
9136 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
9137 (state_lookahead_tokens_count): Rename from
9138 state_look_ahead_tokens_count.
9139 Rename local n_look_ahead_tokens to n_lookahead_tokens.
9140 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
9141 Rename local n_look_ahead_tokens to n_lookahead_tokens.
9142 Update other uses.
9143 Update English in output.
9144 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
9145 * src/print.c: Update English in comments.
9146 (lookahead_set): Rename from look_ahead_set.
9147 (print_reduction): Rename argument lookahead_token from
9148 look_ahead_token.
9149 (print_core, state_default_rule, print_reductions, print_results):
9150 Update uses.
9151 * src/print_graph.c: Update English in comments.
9152 (print_core): Update uses.
9153 * src/state.c: Update English in comments.
9154 (reductions_new): Update uses.
9155 (state_rule_lookahead_tokens_print): Rename from
9156 state_rule_look_ahead_tokens_print, and update other uses.
9157 * src/state.h: Update English in comments.
9158 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
9159 (state_rule_lookahead_tokens_print): Rename from
9160 state_rule_look_ahead_tokens_print.
9161 * src/tables.c: Update English in comments.
9162 (conflict_row, action_row): Update uses.
9163 * tests/glr-regression.at
9164 (Incorrect lookahead during deterministic GLR,
9165 Incorrect lookahead during nondeterministic GLR): Rename
9166 print_look_ahead to print_lookahead.
9167 * tests/torture.at: Update English in comments.
9168 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
9169 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
9170 (Many lookahead tokens): Update uses.
9171 * data/glr.c: Update English in comments.
9172 * lalr1.cc: Likewise.
9173 * yacc.c: Likewise.
9174 * src/conflicts.h: Likewise.
9175 * src/lalr.h: Likewise.
9176 * src/main.c: Likewise.
9177 * src/output.c: Likewise.
9178 * src/parse-gram.c: Likewise.
9179 * src/tables.h: Likewise.
9180 * tests/calc.at: Likewise.
9181
9182 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
9183
9184 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
9185
9186 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
9187
9188 * TODO: Add request from Nelson H. F. Beebe to be able to install
9189 Bison without installing the yacc script.
9190
9191 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
9192
9193 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
9194 and yytext if they're already #define'd.
9195 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
9196 * src/scan-code-c.c: ... here.
9197 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
9198 <config.h>.
9199
9200 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
9201
9202 Get Bison to build again when configured with --enable-gcc-warnings.
9203 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
9204 missing #include's.
9205 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
9206 loc argument as it shadows a global.
9207 * src/scan-gram.l: Remove stray comma that prevents boundary_set
9208 invocation.
9209
9210 * src/.cvsignore: Add scan-code.c.
9211
9212 2006-06-07 Akim Demaille <akim@epita.fr>
9213
9214 * src/scan-gram.l: Move the "add a trailing ; to actions" code
9215 to...
9216 * src/scan-code.l: here.
9217 * tests/input.at (Torturing the Scanner): Fix another location
9218 error.
9219
9220 2006-06-07 Akim Demaille <akim@epita.fr>
9221
9222 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
9223
9224 2006-06-06 Akim Demaille <akim@epita.fr>
9225
9226 Extract the parsing of user actions from the grammar scanner.
9227 As a consequence, the relation between the grammar scanner and
9228 parser is much simpler. We can also split "composite tokens" back
9229 into simple tokens.
9230 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
9231 * src/scan-gram.l (add_column_width, adjust_location): Move to and
9232 rename as...
9233 * src/location.h, src/location.c (add_column_width)
9234 (location_compute): these.
9235 Fix the column count: the initial column is 0.
9236 (location_print): Be robust to ending column being 0.
9237 * src/location.h (boundary_set): New.
9238 * src/main.c: Adjust to scanner_free being renamed as
9239 gram_scanner_free.
9240 * src/output.c: Include scan-code.h.
9241 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
9242 Use boundary_set.
9243 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
9244 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
9245 which is now, again, a separate token.
9246 Adjust all dependencies.
9247 Whereever actions with $ and @ are used, use translate_code.
9248 (action): Remove this nonterminal which is now useless.
9249 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
9250 (grammar_current_rule_action_append): Use translate_code.
9251 (packgram): Bound check ruleno, itemno, and rule_length.
9252 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
9253 (last_string, last_braced_code_loc, max_left_semantic_context)
9254 (scanner_initialize, scanner_free, scanner_last_string_free)
9255 (gram_out, gram_lineno, YY_DECL_): Move to...
9256 * src/scan-gram.h: this new file.
9257 (YY_DECL): Rename as...
9258 (GRAM_DECL): this.
9259 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
9260 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
9261 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
9262 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
9263 Move these declarations, and...
9264 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
9265 these to...
9266 * src/flex-scanner.h: this new file.
9267 * src/scan-gram.l (rule_length, rule_length_overflow)
9268 (increment_rule_length): Remove.
9269 (last_braced_code_loc): Rename as...
9270 (gram_last_braced_code_loc): this.
9271 Adjust to the changes of the parser.
9272 Move all the handling of $ and @ into...
9273 * src/scan-code.l: here.
9274 * src/scan-gram.l (handle_dollar, handle_at): Remove.
9275 (handle_action_dollar, handle_action_at): Move to...
9276 * src/scan-code.l: here.
9277 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
9278 scan-code.h, scan-code-c.c, scan-gram.h.
9279 (EXTRA_bison_SOURCES): Add scan-code.l.
9280 (BUILT_SOURCES): Add scan-code.c.
9281 (yacc): Be robust to white spaces.
9282
9283 * tests/conflicts.at, tests/input.at, tests/reduce.at,
9284 * tests/regression.at: Adjust the column numbers.
9285 * tests/regression.at: Adjust the error message.
9286
9287 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
9288
9289 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9290 Use Akim's wording from
9291 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
9292
9293 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
9294
9295 Between Bison releases, manually append `+' to the previous Bison
9296 release number, and use that as a signal to automatically print the
9297 ChangeLog's CVS Id keyword from --version. Discussed starting at
9298 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
9299 * ChangeLog: Add Id header.
9300 * configure.ac (AC_INIT): Append `+' to `2.3'.
9301 * src/.cvsignore: Add revision.c.
9302 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
9303 (BUILT_SOURCES): Add revision.c.
9304 (revision.c): New target rule. This file defines a new global variable
9305 named revision. It initializes it with either the Id from ChangeLog
9306 or, if VERSION doesn't contain `+', with the empty string.
9307 * src/getargs.c (version): Print the value of revision.
9308 * src/revision.h: Extern revision.
9309
9310 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
9311
9312 * NEWS: Version 2.3.
9313 * configure.ac (AC_INIT): Likewise.
9314
9315 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
9316
9317 * data/glr.c (YYRECOVERING): Define to be a function-like macro
9318 with no arguments, not as an object-like macro. This is for
9319 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
9320 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
9321 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
9322 Document this.
9323
9324 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
9325
9326 * src/getargs.c (usage): Back out yesterday's modification of the
9327 --help output so that we don't have to wait for translation before
9328 releasing 2.3.
9329
9330 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
9331
9332 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
9333 Problem reported by Akim Demaille.
9334
9335 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
9336
9337 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9338
9339 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
9340
9341 * data/yacc.c (yy_reduce_print): Omit trailing white space in
9342 generated source code. Problem reported by Frans Englich in
9343 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
9344
9345 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
9346
9347 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
9348 shell, not within 'make', so that 'make' by an ordinary builder
9349 (using GNU make) does not worry about configuring gzip. This also
9350 works around a bug reported independently by Keith Thompson and by
9351 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
9352 stderr rather than stdout, messing up the build logs.
9353
9354 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9355
9356 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
9357 to make sure that YYID will never be unused. This fixes a 'make
9358 maintainer-check' failure caused by the recent changes to the 'Trivial
9359 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
9360 not used.
9361 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
9362
9363 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9364
9365 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
9366 state before an empty RHS is always resolved here. Only the location
9367 of that state is guaranteed to be resolved, and that's enough. This
9368 fixes the remaining bug reported by Derek M. Jones in
9369 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9370 * tests/glr-regression.at (Uninitialized location when reporting
9371 ambiguity): Test the above case.
9372 Also, the embedded comments in this test case claim it checks the case
9373 of an empty RHS that has inherited the initial location. However, the
9374 corresponding LHS was already resolved, so yyresolveLocations didn't
9375 actually have reason to modify it. Fix this by forcing
9376 nondeterministic operation at the beginning of the parse.
9377
9378 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
9379
9380 * data/c.m4 (b4_yy_symbol_print_generate):
9381 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
9382 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
9383 of the bugs reported today by Derek M Jones in
9384 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9385 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
9386 defined to be a type name without parens or brackets.
9387 (Location Type): Similarly for YYLTYPE.
9388 * tests/regression.at (Trivial grammars): Put in a test for this
9389 bug that will be caught by 'make maintainer-check' (though not,
9390 alas, by 'make check' unless your compiler is picky).
9391
9392 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
9393
9394 * NEWS: Version 2.2.
9395 * configure.ac (AC_INIT): Likewise.
9396
9397 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
9398
9399 * data/glr.c (yyreportTree): Make room in yystates for the state
9400 preceding the RHS. This fixes the segmentation fault reported by Derek
9401 M. Jones in
9402 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
9403 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
9404 to the user. Reported for yyreportTree by Derek M. Jones later in the
9405 same thread.
9406 * THANKS: Add Derek M. Jones.
9407 Update my email address.
9408 Fix typo in Steve Murphy's name.
9409
9410 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
9411
9412 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
9413 checking against YYLAST that caused the parser to miss a potential
9414 alternative in its diagnostic.
9415 Problem reported by Maria Jose Moron Fernandez in
9416 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
9417 * data/lalr1.cc (yysyntax_error_): Likewise.
9418 * data/yacc.c (yysyntax_error): Likewise.
9419 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
9420 tokens, in case we run into an older C compiler.
9421 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
9422 Use them to check for the off-by-one error fixed above.
9423
9424 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
9425 YYSIZE_T, not size_t.
9426 * tests/regression.at (Trivial grammars): New test, to catch
9427 the error fixed by the above patch.
9428
9429 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9430
9431 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
9432 scheme.
9433 Reported by Steve Murphy.
9434
9435 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9436
9437 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
9438 * data/glr.cc: b4_location_flag is now b4_locations_flag.
9439
9440 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9441
9442 Implement --trace=m4.
9443 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
9444 * src/output.c (output_skeleton): When set, pass -dV to m4.
9445
9446 Factor the handling of flags in m4.
9447 * src/output.c (prepare): Rename the muscle names debug, defines,
9448 error_verbose to debug_flag, defines_flag, error_verbose_flag.
9449 * data/c.m4: Adjust.
9450 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
9451 Use b4_define_flag_if to define other b4_FLAG_if macros.
9452 (b4_location_if): As a consequence, rename as...
9453 (b4_locations_if): this, for consistency.
9454 Adjust all the skeletons.
9455
9456 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9457
9458 * etc/bench.pm: Shorten bench names.
9459
9460 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
9461
9462 * src/output.h, src/output.c (error_verbose): Move to...
9463 * src/getargs.h, src/getargs.c: here.
9464 Sort the flags.
9465 Adjust dependencies.
9466
9467 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
9468
9469 * data/c.m4 (b4_copyright): Put the special exception for Bison
9470 skeletons here, so we don't have to put it in each skeleton. All
9471 uses changed. Suggested by Akim Demaille. Also, wrap the
9472 copyright notice, in case it is longer than 80 columns. Replace
9473 comma by newline after title.
9474
9475 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
9476
9477 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
9478 incompatibility, not a bug. Mention that it wasn't fixed as of
9479 flex 2.5.33.
9480
9481 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
9482
9483 * examples/extexi: Enforce the precedence of concatenation over
9484 >>.
9485 Reported by Tommy Nordgren.
9486
9487 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
9488
9489 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
9490 with the member "token".
9491 Reported by Martin Nylin.
9492
9493 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
9494
9495 * data/glr.c: Switch to Bison 2.2 special-exception language in
9496 the copyright notice. Use more-regular format for titles and
9497 copyright notices.
9498 * data/glr.cc: Likewise.
9499 * data/location.cc: Likewise.
9500 * data/yacc.cc: Likewise.
9501 * doc/bison.texinfo (Conditions): Document this.
9502 * NEWS: likewise. Upgrade version to 2.2.
9503
9504 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
9505
9506 * data/glr.cc: Remove dead code.
9507
9508 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
9509
9510 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
9511 that variable and the line breaks the bootstrap. Problem reported
9512 by Juan M. Guerrero.
9513
9514 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
9515
9516 * doc/bison.texinfo (Multiple start-symbols): New.
9517
9518 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
9519
9520 * etc/README, etc/bench.pl: New.
9521
9522 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
9523
9524 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
9525 rule.
9526 Reported by Mickael Labau.
9527 * tests/input.at (Torturing the Scanner): Test it.
9528
9529 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
9530
9531 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
9532 Problem reported by Bob Rossi.
9533
9534 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
9535
9536 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
9537 and didn't really work.
9538 For the index, use @ifnotinfo, not @iftex.
9539 Minor cleanups of spacing and terminology.
9540
9541 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
9542
9543 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
9544 of AT_NAME_PREFIX when %name-prefix is not used.
9545
9546 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
9547
9548 Apply --prefix to C++ skeletons too: they change the namespace.
9549 The test suite already exercize these cases.
9550 * data/c++.m4 (b4_namespace): New.
9551 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
9552 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
9553 * data/yacc.c, data/glr.c: Remove a useless `[]'.
9554 * doc/bison.texinfo: Document it.
9555 (Option Cross Key): Use @multitable in all formats. It looks
9556 nicer, even in TeX outputs.
9557 (Rules): Use the same code whatever the output type is.
9558 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
9559 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
9560 * tests/calc.at: Use it, instead of hard coding `yy'.
9561
9562 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9563
9564 * TODO: Remove dead items.
9565
9566 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9567
9568 * doc/FAQ: Remove, merged into...
9569 * doc/bison.texinfo (FAQ): this.
9570 * doc/Makefile.am (EXTRA_DIST): Adjust.
9571
9572 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9573
9574 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
9575 even if empty.
9576 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
9577 * doc/bison.texinfo (Calc++ Scanner): Use it.
9578
9579 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
9580
9581 Fix two nits reported by twlevo, plus one more that I discovered.
9582
9583 * src/assoc.h (assoc_to_string): Give a name to the arg, as
9584 this is the usual Bison style.
9585 * src/location.h (location_print): Likewise.
9586
9587 * src/reader.h (token_name): Likewise.
9588
9589 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
9590
9591 Fix some nits reported by twlevo.
9592 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
9593 and "POSIX". Use more-modern syntax for URLs. Mention C++
9594 and ask for Java. Don't hardwire OS version numbers. Add
9595 copyright notice.
9596 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
9597 * src/conflicts.c (solved_conflicts_obstack): Now static.
9598
9599 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
9600
9601 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
9602 page. Say "you can use it" not "you may use it" as on the web page;
9603 we're describing capabilities not granting permission.
9604
9605 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
9606
9607 * data/glr.c (yyresolveLocations): Rename local variables to avoid
9608 shadowing warnings. Use usual patter for iterating through RHS.
9609 * tests/glr-regression.at
9610 (Uninitialized location when reporting ambiguity):
9611 Modify yylex so that it uses its argument, rather than trying
9612 to rely on ARGSUSED (which doesn't work for gcc with warnings).
9613 const char -> char const.
9614
9615 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
9616 Don't use tabs inside commands; it messes up 'ps'.
9617 Problem reported by twlevo.
9618
9619 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
9620
9621 * tests/glr-regression.at (Uninitialized location when reporting
9622 ambiguity): New test case.
9623 * data/glr.c (yyresolveLocations): New function, which uses
9624 YYLLOC_DEFAULT.
9625 (yyresolveValue): Invoke yyresolveLocations before reporting an
9626 ambiguity.
9627 * doc/bison.texinfo (Default Action for Locations): Note
9628 YYLLOC_DEFAULT's usage for ambiguity locations.
9629 (GLR Semantic Actions): Cross-reference those notes.
9630
9631 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
9632
9633 * tests/glr-regression.at (Leaked semantic values when reporting
9634 ambiguity): Remove unnecessary union and type declarations.
9635 (Leaked lookahead after nondeterministic parse syntax error): New test
9636 case.
9637 * data/glr.c (yyparse): Check for zero stacks remaining before
9638 attempting to shift the lookahead so that you don't lose it.
9639
9640 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9641
9642 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
9643 * tests/glr-regression.at (Leaked semantic values when reporting
9644 ambiguity): New test case.
9645 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
9646 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
9647 now unnecessary yystackp parameter.
9648 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
9649 destructors can be called.
9650
9651 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
9652 in existing testcases.
9653
9654 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9655
9656 Don't leak semantic values for parent RHS when a user action cuts the
9657 parser, and clean up related code a bit.
9658 * tests/glr-regression.at (Leaked merged semantic value if user action
9659 cuts parse): Rename to...
9660 (Leaked semantic values if user action cuts parse): ... this. Add check
9661 for leaked parent RHS values.
9662 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
9663 between an unresolved state (non-empty chain of semantic options) and
9664 an incomplete one (signaled by an empty chain).
9665 (yyresolveStates): Document the interface. Move all manipulation of a
9666 successfully or unsuccessfully resolved yyGLRState to...
9667 (yyresolveValue): ... here so that yyresolveValue always leaves a
9668 yyGLRState with consistent data and thus is easier to understand.
9669 Remove the yyvalp and yylocp parameters since they are always just
9670 taken from the yys parameter. When reporting a discarded merged value
9671 in debugging output, note that it is incompletely merged. Document the
9672 interface.
9673 (yyresolveAction): If resolving any of the RHS states fails, destroy
9674 them all rather than leaking them. Thus, as long as user actions are
9675 written to clean up the RHS correctly, yyresolveAction always cleans up
9676 the RHS of a semantic option. Document the interface.
9677
9678 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
9679
9680 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
9681 led to a segmentation fault in GNU Pascal. Problem reported
9682 by Waldek Hebisch.
9683
9684 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
9685
9686 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
9687 mid-rule action inside a nonterminal symbol in order to declare a
9688 destructor for its semantic value.
9689
9690 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
9691
9692 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
9693 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
9694 __cplusplus && ! defined _STDLIB_H && !
9695 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
9696 defined free))]: Include <stdlib.h> rather than rolling our own
9697 declarations of malloc and free, to avoid problems with
9698 incompatible declarations (using 'throw') C++'s stdlib.h. This
9699 should fix Debian bug 340012
9700 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
9701 reported by Guillaume Melquiond.
9702
9703 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9704
9705 * NEWS: Clarify symbols versus types in unused-value warnings.
9706
9707 * configure.ac (AC_INIT): Bump version number.
9708
9709 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9710
9711 * NEWS: Version 2.1a.
9712 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
9713 since C99 requires this.
9714
9715 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
9716
9717 * m4/c-working.m4: New file.
9718 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
9719
9720 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
9721
9722 * Makefile.maint: Merge from coreutils.
9723
9724 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
9725
9726 More portability fixes for problems summarized by Nelson H. F. Beebe.
9727
9728 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
9729 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
9730 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
9731 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
9732 messes up because C++ code is compiled in 32-bit mode but linked
9733 in 64-bit mode.
9734
9735 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
9736
9737 More portability fixes for problems summarized by Nelson H. F. Beebe.
9738
9739 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
9740 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
9741
9742 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
9743 nodist_PROGRAMS, since we don't need to actually compile the
9744 example if we're just doing a plain 'make'. This avoids bothering
9745 the installer unnecessarily about problems due to weird C++
9746 compilers.
9747
9748 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
9749
9750 More portability fixes for problems summarized by Nelson H. F. Beebe.
9751
9752 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
9753 than #include "...", and compile with -I'.'. The old method was
9754 not portable, according to Posix and the C standard, and it does
9755 not work with Sun C 5.7, where previous #line directives affect
9756 the working directory used in later #include "..." directives.
9757
9758 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9759
9760 Various DJGGP specific issues in /djgpp
9761
9762 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
9763
9764 More portability fixes for problems summarized by Nelson H. F. Beebe.
9765
9766 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
9767 '#include <map>' works and that you can apply ++ to iterators.
9768
9769 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
9770
9771 Work around portability problems summarized by Nelson H. F. Beebe in
9772 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
9773
9774 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9775 that '#include <string>' works.
9776
9777 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
9778 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
9779 "warning: sorry: semantics of inline function static data `const
9780 unsigned char translate_table[262]' are wrong (you'll wind up with
9781 multiple copies)".
9782
9783 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
9784 or, xor to not_, and_, or_, and xor_, respectively. This works
9785 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
9786 random system header somewhere that includes the equivalent of
9787 <iso646.h>.
9788
9789 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
9790 -E" works; it apparently doesn't work with PathScale EKO Compiler
9791 Suite Version 2.0.
9792
9793 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
9794
9795 During deterministic GLR operation, user actions should be able to
9796 influence the parse by changing yychar. To make this easier to fix and
9797 to make glr.c easier to evolve in general, don't maintain yytoken in
9798 parallel with yychar; just compute yytoken when needed.
9799 * tests/glr-regression.at (Incorrect lookahead during deterministic
9800 GLR): Check that setting yychar in a user action has the intended
9801 effect.
9802 * data/glr.c (yyGLRStack): Remove yytokenp member.
9803 (yyclearin): Don't set *yytokenp.
9804 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
9805 yychar rather than *yytokenp to determine the current lookahead.
9806 Compute yytoken locally when needed.
9807 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
9808 point to.
9809
9810 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
9811 after `--report' documentation.
9812
9813 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
9814
9815 * src/parse-gram.y (grammar_declaration): Location of printer
9816 symbol is @1, not list->location. Bug reported by twlevo.
9817 * tests/input.at (Incompatible Aliases): Adjust to above change.
9818
9819 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
9820
9821 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
9822 all the test at once. This makes the output easier to read in the
9823 normal case.
9824
9825 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
9826 got from <http://bro-ids.org/download.html>. The bug is that
9827 when two actions appeared in succession, the second one was
9828 scanned before the first one was added to the grammar rule
9829 as a midrule action. Bison then output the incorrect warning
9830 "parse.y:905.17-906.36: warning: unused value: $3".
9831 * src/parse-gram.y (BRACED_CODE, action): These are no longer
9832 associated with a value.
9833 (rhs): Don't invoke grammar_current_rule_action_append.
9834 (action): Invoke it here instead.
9835 * src/reader.c (grammar_midrule_action): Now extern.
9836 (grammar_current_rule_action_append): Don't invoke
9837 grammar_midrule_action; that is now the scanner's job.
9838 * src/reader.h (last_string, last_braced_code_loc):
9839 (grammar_midrule_action): New decls.
9840 * src/scan-gram.l (last_string): Now extern, sigh.
9841 (last_braced_code_loc): New extern variable.
9842 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
9843 rule already has an action.
9844 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
9845 * tests/input.at (AT_CHECK_UNUSED_VALUES):
9846 Add some tests to check that the above changes fixed the bug.
9847
9848 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
9849
9850 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
9851 All used changed. Check whether the symbol has a destructor,
9852 not whether it is typed.
9853 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
9854 that the values are still reported as unused. All line numbers
9855 adjusted.
9856
9857 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
9858
9859 Work around a bug in bro 0.8, which underparenthesizes its
9860 definition of YYLLOC_DEFAULT.
9861 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
9862 their arguments.
9863 * data/lalr1.cc: Likewise.
9864 * data/yacc.cc: Likewise.
9865
9866 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
9867
9868 Work around a bug in Pike 7.0, and give the Pike folks a
9869 better way to override the usual int widths.
9870 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
9871 user can override the types.
9872 (short): #undef, to work around a bug in Pike 7.0.
9873 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
9874 (union yyalloc.yyss): Use yytype_int16 rather than short.
9875 All uses changed.
9876 (yysigned_char): Remove.
9877 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
9878 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
9879 * tests/regression.at (Web2c Actions): Adjust to above changes.
9880
9881 * src/reader.c (check_and_convert_grammar): New function.
9882 (reader): Close the input file even if something went wrong during
9883 parsing. Minor file descriptor leak reported by twlevo.
9884
9885 * src/assoc.c (assoc_to_string): Use a default: abort (); case
9886 to pacify gcc -Wswitch-default.
9887 * src/scan-gram.l (adjust_location): Use a default: break; case
9888 to pacify gcc -Wswitch-default.
9889 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
9890 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9891 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9892 Move these decls to scan-skel.l, since they don't need to be
9893 visible elsewhere.
9894 * src/scan-skel.l: Accept the above decls.
9895 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
9896 is used.
9897
9898 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
9899
9900 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
9901 since we don't want to insist on a version number at the start
9902 of the changelog every time.
9903 * Makefile.maint: Sync from coreutils a bit better.
9904 (sc_trailing_blank): Renamed from sc_trailing_space.
9905 All uses changed.
9906 (sc_no_if_have_config_h, sc_require_config_h):
9907 (sc_prohibit_assert_without_use): New rules.
9908 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
9909 (sc_dd_max_sym_length): Fix leading spaces in rule.
9910 (sc_system_h_headers): Prefix with @.
9911 (sc_useless_cpp_parens, m4-check): Output line numbers.
9912 (changelog-check): Allow version only in head.
9913 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
9914 satisfy new Makefile.maint rule.
9915 * data/glr.c: Likewise.
9916 * data/glr.cc: Likewise.
9917 * data/lalr1.cc: Likewise.
9918 * data/yacc.c: Likewise.
9919 * lib/ebitsetv.c: Likewise.
9920 * lib/lbitset.c: Likewise.
9921 * lib/subpipe.c: Likewise.
9922 * lib/timevar.c: Likewise.
9923 * src/system.h: Likewise.
9924 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
9925 * djgpp/Makefile.maint: Add copyright notice.
9926 * djgpp/README.in: Likewise.
9927 * djgpp/config.bat: Likewise.
9928 * djgpp/config.site: Likewise.
9929 * djgpp/config_h.sed: Likewise.
9930 * djgpp/djunpack.bat: Likewise.
9931 * djgpp/config.sed: Fix copyright notice to match standard format.
9932 * djgpp/subpipe.h: Likewise.
9933 * lib/bitsetv-print.c: Likewise.
9934 * lib/bitsetv.c: Likewise.
9935 * lib/subpipe.h: Likewise.
9936 * lib/timevar.c: Likewise.
9937 * lib/timevar.h: Likewise.
9938 * djgpp/subpipe.c: Use standard recipe for config.h.
9939 * lib/abitset.c: Likewise.
9940 * lib/bitset.c: Likewise.
9941 * lib/bitset_stats.c: Likewise.
9942 * lib/bitsetv-print.c: Likewise.
9943 * lib/bitsetv.c: Likewise.
9944 * lib/ebitsetv.c: Likewise.
9945 * lib/get-errno.c: Likewise.
9946 * lib/lbitset.c: Likewise.
9947 * lib/subpipe.c: Likewise.
9948 * lib/timevar.c: Likewise.
9949 * lib/vbitset.c: Likewise.
9950 * tests/local.at: Likewise.
9951 * src/scan-gram.l: Don't include verify.h, since system.h does
9952 that for us.
9953 * .x-sc_require_config_h: New file.
9954 * .x-sc_unmarked_diagnostics: New file.
9955
9956 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
9957
9958 Be a bit more systematic about using 'abort'.
9959 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
9960 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
9961 Put 'default: abort ();' before some other case, to satisfy older
9962 pedantic compilers.
9963 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9964 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
9965 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
9966 * src/conflicts.c (resolve_sr_conflict): Likewise.
9967 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
9968 (get_decision_str, get_orientation_str, get_node_alignment_str):
9969 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
9970 (get_linestyle_str, get_arrowstyle_str): Likewise.
9971 * src/conflicts.c (resolve_sr_conflict):
9972 Use a default case rather than one for the one remaining enum
9973 value, to catch invalid enum values as well.
9974 * src/lalr.c (set_goto_map, map_goto):
9975 Prefer "assert (FOO);" to "if (!FOO) abort ();".
9976 * src/nullable.c (nullable_compute, token_definitions_output):
9977 Likewise.
9978 * src/reader.c (packgram, reader): Likewise.
9979 * src/state.c (transitions_to, state_new, state_reduction_find):
9980 Likewise.
9981 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
9982 (symbol_pack): Likewise.
9983 * src/tables.c (conflict_row, pack_vector): Likewise.
9984 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
9985 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
9986 * src/system.h: Don't include <assert.h>.
9987 (assert): New macro.
9988
9989 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
9990 (Destructor Decl, Parser Function, Pure Calling):
9991 Describe rules for braces inside C code more carefully.
9992
9993 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
9994
9995 Fix some porting glitches found by Nelson H. F. Beebe.
9996 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
9997 compilers that don't understand that abort () does not return.
9998 * src/state.c (transitions_to): Likewise.
9999 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
10000 that '#include <cstdlib>' works.
10001 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
10002 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
10003 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
10004 for the benefit of some pre-C99 compilers.
10005
10006 * bootstrap: Undo changes to gnulib files that autoreconf made.
10007
10008 Minor fixups to get 'make maintainer-check' to work.
10009 * configure.ac: Don't use -Wnested-externs, as it's incompatible
10010 with the new verify.h implementation.
10011 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
10012 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
10013 * data/yacc.c (YYUSE): Likewise.
10014 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
10015 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
10016 * src/parse-gram.y (declaration): Don't pass a string constant
10017 to a function that expects char *, since GCC might complain
10018 about the constant value.
10019 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
10020 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
10021 before #defining them.
10022 * tests/glr-regression.at
10023 (Incorrectly initialized location for empty right-hand side in GLR):
10024 In yyerror, use the msg arg.
10025 (Corrupted semantic options if user action cuts parse):
10026 (Incorrect lookahead during deterministic GLR):
10027 (Incorrect lookahead during nondeterministic GLR):
10028 Don't name a local var 'index'; it shadows string.h's 'index'.
10029
10030 2006-01-19 Akim Demaille <akim@epita.fr>
10031
10032 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
10033 location, not just parts of it.
10034
10035 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
10036
10037 * NEWS: Document the fact that multiple %unions are now allowed.
10038 * doc/bison.texinfo (Union Decl): Likewise.
10039 * TODO: This feature is now implemented, so remove it from
10040 the wishlist.
10041
10042 * Makefile.maint: Merge with coreutils Makefile.maint.
10043 (CVS_LIST): Use build-aux version if available.
10044 (VERSION_REGEXP): New macro.
10045 (syntax-check-rules): Add sc_no_if_have_config_h,
10046 sc_prohibit_assert_without_use, sc_require_config_h,
10047 sc_useless_cpp_parens.
10048 (sc_obsolete_symbols): Check for O_NDELAY.
10049 (sc_dd_max_sym_length): Track coreutils.
10050 (sc_unmarked_diagnostics): Look in all files, not just *.c.
10051 (sc_useless_cpp_parens): New rule.
10052 (news-date-check): Look for version or today's date.
10053 (changelog-check): Don't require version number near head.
10054 (copyright-check): Use current year instead of hardwiring 2005.
10055 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
10056 (announcement): Add --gpg-key-ID.
10057
10058 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
10059 with "file system".
10060
10061 Avoid undefined behavior that addressed just before the start of an
10062 array. Problem reported by twlevo.
10063 * src/reader.c (packgram): Prepend a new sentinel before ritem.
10064 * src/lalr.c (build_relations): Rely on new sentinel.
10065 * src/gram.c (gram_free): Adjust to new sentinel.
10066
10067 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
10068
10069 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
10070 yylookaheadNeeds. All uses updated.
10071 (yysplitStack): Rename local yynewLookaheadStatuses to
10072 yynewLookaheadNeeds.
10073 * data/glr-regression.at (Incorrect lookahead during nondeterministic
10074 GLR): In comments, change `lookahead status' to `lookahead need'.
10075
10076 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10077
10078 * data/glr.c (yysplitStack): A little stylistic rewrite.
10079
10080 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10081
10082 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
10083
10084 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
10085
10086 * doc/bison.texinfo: Fix some typos.
10087 (GLR Semantic Actions): New subsection discussing special
10088 considerations because GLR semantic actions might be deferred.
10089 (Actions): Mention look-ahead usage of yylval.
10090 (Actions and Locations): Mention look-ahead usage of yylloc.
10091 (Special Features for Use in Actions): Add YYEOF entry and mention it
10092 in the yychar entry.
10093 In the yychar entry, remove mention of the local yychar case (pure
10094 parser) since this is irrelevant information when writing semantic
10095 actions and since it's already discussed in `Table of Symbols' where
10096 yychar is otherwise described as an external variable.
10097 In the yychar entry, don't call it the `current' look-ahead since it
10098 isn't when semantic actions are deferred.
10099 In the yychar and yyclearin entries, add note about deferred semantic
10100 actions.
10101 Add yylloc and yylval entries discussing look-ahead usage.
10102 (Look-Ahead Tokens): When discussing yychar, don't call it the
10103 `current' look-ahead, and do mention yylval and yylloc.
10104 (Error Recovery): Cross-reference `Action Features' when mentioning
10105 yyclearin.
10106 (Table of Symbols): In the yychar entry, don't call it the `current'
10107 look-ahead.
10108 In the yylloc and yylval entries, mention look-ahead usage.
10109
10110 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
10111
10112 * tests/glr-regression.at: Update copyright year to 2006.
10113
10114 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10115
10116 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
10117 use during nondeterministic operation to track which stacks have
10118 actually needed the current lookahead.
10119 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
10120 Allocate, deallocate, resize, and otherwise shuffle space for
10121 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
10122 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
10123 appropriately during nondeterministic operation.
10124 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
10125 members to store the current lookahead to be used by the deferred
10126 user action.
10127 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
10128 from which the RHS is taken. Set the lookahead members of the new
10129 yySemanticOption according to the lookahead status for stack yyk.
10130 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
10131 yyaddDeferredAction.
10132 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
10133 members of yySemanticOption before invoking yyuserAction, and then set
10134 them back to their current values afterward.
10135 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
10136 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
10137 * tests/glr-regression.at: Remove `.' from the ends of recent test case
10138 titles for consistency.
10139 (Leaked merged semantic value if user action cuts parse): In order to
10140 suppress lint warnings, use arguments in merge function, and assign
10141 char value < 128 in main.
10142 (Incorrect lookahead during deterministic GLR): New test case.
10143 (Incorrect lookahead during nondeterministic GLR): New test case.
10144
10145 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10146
10147 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
10148 !yyvaluep as signal that no semantic value is available to print.
10149 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
10150 to print a semantic value.
10151
10152 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10153
10154 * tests/glr-regression.at: For consistency with my newer test cases,
10155 don't thank myself.
10156
10157 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
10158
10159 * data/glr.c (yyresolveValue): When merging semantic options, if at
10160 least one user action succeeds but a later one cuts the parse, then
10161 destroy the semantic value before returning rather than leaking it.
10162 (yyresolveStates): If a user action cuts the parse and thus
10163 yyresolveValue fails, ignore the (unset) semantic value rather than
10164 corrupting the yyGLRState, and empty the semantic options list since
10165 the user actions should have called all necessary destructors.
10166 Simplify code with YYCHK.
10167 * tests/glr-regression.at (Corrupted semantic options if user action
10168 cuts parse): New test case.
10169 (Undesirable destructors if user action cuts parse): New test case.
10170 Before applying any of this patch, this test case never actually failed
10171 for me... but only because the corrupted semantic options usually
10172 masked this bug.
10173 (Leaked merged semantic value if user action cuts parse): New test
10174 case.
10175
10176 2006-01-05 Akim Demaille <akim@epita.fr>
10177
10178 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
10179
10180 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
10181
10182 * data/c.m4 (b4_c_modern): New macro, with a new provision for
10183 _MSC_VER. Problem reported by Cenzato Marco.
10184 (b4_c_function_def): Use it.
10185 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
10186 b4_c_modern.
10187 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
10188 than rolling our own.
10189
10190 2006-01-04 Akim Demaille <akim@epita.fr>
10191
10192 Also warn about non-used mid-rule values.
10193 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
10194 member.
10195 (symbol_list_new): Adjust.
10196 * src/reader.c (symbol_typed_p): New.
10197 (grammar_rule_check): Use it.
10198 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
10199 Check its rule.
10200 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
10201 Use it.
10202 * tests/actions.at (Exotic Dollars): Adjust.
10203
10204 2006-01-04 Akim Demaille <akim@epita.fr>
10205
10206 * src/reader.c (grammar_midrule_action): If $$ is set in a
10207 mid-rule, move the `used' bit to its lhs.
10208 * tests/input.at (Unused values): New.
10209 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
10210
10211 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
10212
10213 * doc/bison.texinfo (Bison Options): Say more accurately what
10214 --yacc does.
10215 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
10216 about declarations in the grammar when in Yacc mode, as POSIX does
10217 not require a diagnostic when the grammar uses extensions.
10218
10219 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
10220
10221 Warn about dubious constructions like "%token T T".
10222 Reported by twlevo.
10223 * src/symtab.h (struct symbol.declared): New member.
10224 * src/symtab.c (symbol_new): Initialize it to false.
10225 (symbol_class_set): New arg DECLARING, specifying whether
10226 this is a declaration that we want to warn about, if there
10227 is more than one of them. All uses changed.
10228
10229 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
10230 Allow multiple %union directives, whose contents concatenate.
10231 * src/parse-gram.y (grammar_declaration): Likewise.
10232 Use muscle_code_grow, so that we don't need stype_line any more.
10233 All uses changed.
10234
10235 * src/muscle_tab.c (muscle_grow): Fix comment.
10236
10237 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
10238 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
10239 Update copyright year to 2006.
10240
10241 2006-01-03 Akim Demaille <akim@epita.fr>
10242
10243 Have glr.cc pass (some of) the calc.at tests.
10244 * data/glr.cc (b4_parse_param_orig): New.
10245 (b4_parse_param): Improve its definition, and bound it more
10246 clearly in the skeleton.
10247 (b4_epilogue): Append, instead of prepending, in order to keep
10248 #line consistency.
10249 Simplify the generation of auxiliary functions: locations and
10250 purity are mandated.
10251 (b4_global_tokens_and_yystype): Honor it.
10252 * data/location.cc (c++.m4): Don't include it.
10253 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
10254 and AT_SKEL_CC_IF.
10255 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
10256 AT_LALR1_CC_IF.
10257 Be sure to initialize the first position's filename.
10258 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
10259 mandated anyway.
10260 (AT_CHECK_CALC_GLR_CC): New.
10261 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
10262
10263 2006-01-02 Akim Demaille <akim@epita.fr>
10264
10265 * src/output.c (output_skeleton): Don't hard wire the inclusion of
10266 c.m4.
10267 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
10268 * data/glr.cc: Do not include stack.hh.
10269
10270 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
10271
10272 * data/glr.c: Reformat whitespace with tabs.
10273 (b4_lpure_formals): Remove this unused m4 macro.
10274 * tests/cxx-type.at: Reformat whitespace with tabs.
10275 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
10276 since it's a member. Rename type to isNterm for clarity.
10277
10278 2005-12-29 Akim <akim@sulaco.local>
10279
10280 Let glr.cc catch up with symbol_value_print.
10281 * data/glr.cc (b4_yysymprint_generate): Replace by...
10282 (b4_yy_symbol_print_generate): this.
10283 (yy_symbol_print, yy_symbol_value_print): Declare them.
10284
10285 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
10286
10287 * src/location.h (boundary): Note that a line or column equal
10288 to INT_MAX indicates an overflow.
10289 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
10290 (rule_length_overflow, increment_rule_length, add_column_width):
10291 New functions.
10292 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
10293 (<SC_BRACED_CODE>"}"):
10294 Use increment_rule_length rather than incrementing it by hand.
10295 (adjust_location, handle_syncline): Diagnose overflow.
10296 (handle_action_dollar, handle_action_at):
10297 Fix bug with monstrosities like $-2147483648.
10298 Remove now-unnecessary checks.
10299 (scan_integer): Verify assumptions and remove now-unnecessary checks.
10300 (convert_ucn_to_byte): Verify assumptions.
10301 (handle_syncline): New arg LOC. All callers changed.
10302 Don't store through a value derived from char const * pointer.
10303
10304 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
10305 GCC warnings.
10306
10307 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
10308
10309 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
10310 Remove unnecessary forward static decls.
10311
10312 2005-12-27 Akim Demaille <akim@epita.fr>
10313
10314 * src/reader.c (grammar_current_rule_check): Also check that $$
10315 is used.
10316 Take the rule to check as argument, hence rename as...
10317 (grammar_rule_check): this.
10318 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
10319 Rename as...
10320 (grammar_rule_begin, grammar_rule_end): these, for consistency.
10321 (grammar_midrule_action, grammar_symbol_append): Now static.
10322 * tests/torture.at (input): Don't rely on the default action
10323 being always performed.
10324 * tests/calc.at: "Set" $$ even when the action is "cut" with
10325 YYERROR or other.
10326 * tests/actions.at (Exotic Dollars): Instead of using unused
10327 values, check that the warning is issued.
10328
10329 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
10330
10331 * NEWS: Improve wording for unused-value warnings.
10332
10333 2005-12-22 Akim Demaille <akim@epita.fr>
10334
10335 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
10336 (b4_yysymprint_generate): Rename as...
10337 (b4_yy_symbol_print_generate): this.
10338 Generate yy_symbol_print instead of yysymprint.
10339 Generate also yy_symbol_value_print, and use it.
10340
10341 2005-12-22 Akim Demaille <akim@epita.fr>
10342
10343 * NEWS: Warn about unused values.
10344 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
10345 a `used' member.
10346 (symbol_list_n_get, symbol_list_n_used_set): New.
10347 (symbol_list_n_type_name_get): Use symbol_list_n_get.
10348 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
10349 * src/reader.c (grammar_current_rule_check): Check that values are
10350 used.
10351 * src/symtab.c (symbol_print): Accept 0.
10352 * tests/existing.at: Remove the type information.
10353 Empty the actions.
10354 Remove useless actions (beware of mid-rule actions: perl -000
10355 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
10356 * tests/actions.at (Exotic Dollars): Use unused values.
10357 * tests/calc.at: Likewise.
10358 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10359 Likewise.
10360
10361 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
10362 rule_useful_p.
10363
10364 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
10365
10366 Undo 2005-12-01 tentative license wording change. The wording is
10367 still being reviewed by the lawyers, and we don't want to wait for
10368 them before publishing a test release. For now, revert to the
10369 previous wording.
10370 * NEWS: Undo 2005-12-01 change.
10371 * data/glr.c: Revert to previous license wording.
10372 * data/glr.cc: Likewise.
10373 * data/lalr1.cc: Likewise.
10374 * data/location.cc: Likewise.
10375 * data/yacc.c: Likewise.
10376
10377 * NEWS: Reword %destructor vs YYABORT etc.
10378 * data/glr.c: Use American spacing, for consistency.
10379 * data/glr.cc: Likewise.
10380 * data/lalr1.cc: Likewise.
10381 * data/yacc.c: Likewise.
10382 * data/yacc.c: Reformat comments slightly.
10383 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
10384 for consistency. Fix some spelling errors and reword recently-included
10385 text slightly.
10386 * tests/cxx-type.at: Cast results of malloc, for C++.
10387
10388 2005-12-21 Joel E. Denny <address@hidden>
10389
10390 * tests/cxx-type.at: Construct a tree, count the parents of shared
10391 nodes, and free each node once and only once. Previously, the memory
10392 for semantic values was leaked instead.
10393
10394 2005-12-21 Joel E. Denny <address@hidden>
10395
10396 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
10397 (yylval, yylloc): If pure, #define to yystackp->yyval and
10398 yystackp->yyloc similar to yychar and yynerrs.
10399 (yyparse): If pure, remove local yylval and yylloc. Add local
10400 yystackp to accommodate pure definitions of yylval and yylloc.
10401 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
10402 yylvalp and yyllocp to &yylval and &yylloc.
10403 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
10404 namespace. Previously, nerrs and char were missing, but lval and lloc
10405 weren't necessary.
10406 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
10407 yylvalp and yyllocp parameters since, if pure, these are now always
10408 accessible through yystackp. If not pure, they are still accessible
10409 globally.
10410 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
10411 `if (YYID (N))' to pacify lint.
10412
10413 2005-12-21 Akim Demaille <akim@epita.fr>
10414
10415 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
10416 destroy the RHS symbols of a rule.
10417 * data/yacc.c (yylen): Initialize to 0.
10418 Keep its value to the number of items to possibly shift.
10419 In particular, a regular successful parse that ends on YYFINAL by
10420 a (internal) YYACCEPT must not have yylen != 0.
10421 (yyerrorlab, yyreturn): Pop the RHS.
10422 Reorder a bit to emphasize the `shifting' bits of code.
10423 (YYPOPSTACK): Now accept a number of items to pop.
10424 * data/lalr1.cc: Likewise.
10425 * data/glr.c: Formatting changes.
10426 Use goto instead of fall through.
10427 * doc/bison.texinfo (Destructor Decl): Complete.
10428
10429 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10430
10431 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10432 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
10433 * djgpp/config.bat: Replace every occurence of the file name
10434 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10435 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10436 * djgpp/config.sed: Replace every occurence of the file name
10437 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10438 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10439 * djgpp/djunpack.bat: DJGPP specific file.
10440 * djgpp/fnchange.lst: DJGPP specific file.
10441 * djgpp/README.in: Add new information about how to unpack the bison
10442 source on MSDOS and other systems which have 8.3 file name restrictions
10443 using djunpack.bat and fnchange.lst.
10444
10445 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
10446
10447 * bootstrap (build_cvs_prefix): Remove; unused.
10448 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
10449 when getting gnulib.
10450
10451 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
10452
10453 * data/glr.c: Reorder typedef declarations for structs to match order
10454 of struct declarations.
10455 Rename yystack everywhere to yystackp except in yyparse where it's not
10456 a pointer.
10457 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
10458 consistency.
10459 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
10460 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
10461 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
10462 lint.
10463
10464 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
10465
10466 * tests/sets.at (Accept): Fix typos in regular expression used to
10467 sed out the final state number.
10468
10469 Work around portability problem on Solaris 10: flex-generated
10470 files include <stdio.h> before <config.h>, which messes up
10471 because the latter defines __EXTENSIONS__. Address the problem
10472 by creating two new little files that include <config.h> first,
10473 then include the flex-generated files. Rewrite everyone else
10474 to include <config.h> first, as well.
10475 * lib/timevar.c: Always include "config.h".
10476 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
10477 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
10478 (EXTRA_bison_SOURCES): New macro.
10479 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
10480 * src/system.h: Don't include config.h.
10481 * src/LR0.c: Include <config.h> first.
10482 * src/assoc.c: Likewise.
10483 * src/closure.c: Likewise.
10484 * src/complain.c: Likewise.
10485 * src/conflicts.c: Likewise.
10486 * src/derives.c: Likewise.
10487 * src/files.c: Likewise.
10488 * src/getargs.c: Likewise.
10489 * src/gram.c: Likewise.
10490 * src/lalr.c: Likewise.
10491 * src/location.c: Likewise.
10492 * src/main.c: Likewise.
10493 * src/muscle_tab.c: Likewise.
10494 * src/nullable.c: Likewise.
10495 * src/output.c: Likewise.
10496 * src/parse-gram.y: Likewise.
10497 * src/print.c: Likewise.
10498 * src/print_graph.c: Likewise.
10499 * src/reader.c: Likewise.
10500 * src/reduce.c: Likewise.
10501 * src/relation.c: Likewise.
10502 * src/state.c: Likewise.
10503 * src/symlist.c: Likewise.
10504 * src/symtab.c: Likewise.
10505 * src/tables.c: Likewise.
10506 * src/uniqstr.c: Likewise.
10507 * src/vcg.c: Likewise.
10508
10509 * src/parse-gram.y: Fix minor problems uncovered by lint.
10510 (current_lhs, current_lhs_location): Now static.
10511 (current_assoc): Remove unused variable.
10512
10513 Cleanups so that Bison-generated parsers have less lint.
10514 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
10515 Prepend /*ARGSUSED*/, for lint's sake.
10516 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
10517 definition if 'lint' is defined.
10518 (YYID): New macro (or function, if lint).
10519 All uses of /*CONSTCOND*/0 replaced by YYID(0).
10520 * data/yacc.c: Likewise.
10521 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
10522 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
10523 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
10524 is C++ only.
10525 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
10526 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
10527 Use YYID(0) rather than 0, for lint.
10528 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
10529 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
10530
10531 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
10532
10533 * tests/glr-regression.at
10534 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10535 Close memory leak reported by twlevo.
10536
10537 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
10538
10539 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
10540 all stacks.
10541 (yyparse): Iterate another stack in order to call user destructors.
10542 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10543 New test case.
10544 (Duplicated user destructor for lookahead): This test now is expected
10545 to succeed.
10546
10547 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
10548
10549 * NEWS: Document the following change.
10550 * data/yacc.c: Say "parser skeleton" rather than "file", since
10551 it's no longer just a file.
10552 * data/glr.c: Grant a special exception for C GLR parsers, that
10553 reads like the already-existing exception for C LALR(1) parsers.
10554 * data/glr.cc: Likewise.
10555 * data/lalr1.cc: Likewise.
10556 * data/location.cc: Likewise.
10557 * data/yacc.c: Reword the "written by" statement to clarify that
10558 it was the parser skeleton, not the entire output file.
10559 * data/glr.c: Written by Paul Hilfinger.
10560 * data/glr.cc: Written by Akim Demaille.
10561 * data/lalr1.cc: Likewise.
10562
10563 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
10564
10565 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
10566 Fix typos in previous change that broke 'make check'.
10567 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
10568 supported in C.
10569 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
10570 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
10571 We can revert this once things settle down.
10572
10573 * src/conflicts.c (conflicts_print): Don't print file name twice
10574 when %expect fails because there were no conflicts.
10575 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
10576 change.
10577 * tests/conflicts.at (%expect not enough, %expect too much):
10578 (%expect with reduce conflicts): Adjust to new behavior.
10579
10580 2005-11-18 Akim Demaille <akim@epita.fr>
10581
10582 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
10583 errors.
10584 * NEWS: Document this.
10585 * doc/bison.texinfo (Expect Decl): Likewise.
10586
10587 2005-11-16 Akim Demaille <akim@epita.fr>
10588
10589 Generalize the display of semantic values and locations in traces.
10590 * data/glr.c (yy_reduce_print): Fix indices (again).
10591 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
10592 literal integers.
10593 * data/lalr1.cc (yyreduce_print): Rename as...
10594 (yy_reduce_print): this.
10595 Display values and locations.
10596 * data/yacc.c (yy_reduce_print): Likewise.
10597 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
10598 (yysymprint): Move higher to be visible from yy_reduce_print).
10599 (yyparse): Adjust.
10600 * tests/calc.at: Adjust the expected length of the traces.
10601
10602 2005-11-14 Akim Demaille <akim@epita.fr>
10603
10604 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
10605 from 1 to N, while values and location start at 0.
10606 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
10607
10608 2005-11-14 Akim Demaille <akim@epita.fr>
10609
10610 * data/glr.c (yy_reduce_print): Fix the $ number.
10611
10612 2005-11-14 Akim Demaille <akim@epita.fr>
10613
10614 "Use" parse parameters.
10615 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
10616 * data/glr.c, data/glr.cc: Use them.
10617 * data/glr.c (YYUSE): Have a C++ definition that supports
10618 non-pointer types.
10619
10620 2005-11-14 Akim Demaille <akim@epita.fr>
10621
10622 * data/glr.c (yyexpandGLRStack): Declare only if defined.
10623
10624 2005-11-14 Akim Demaille <akim@epita.fr>
10625
10626 * data/glr.cc: New.
10627 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
10628
10629 2005-11-12 Akim Demaille <akim@epita.fr>
10630
10631 Let position and location be PODs.
10632 * data/location.cc (position::initialize, location::initialize): New.
10633 (position::position, location::location): Define only if
10634 b4_location_constructors is defined.
10635 * data/lalr1.cc (b4_location_constructors): Define it for backward
10636 compatibility.
10637 * doc/bison.texinfo (Initial Action Decl): Use initialize.
10638
10639 2005-11-12 Akim Demaille <akim@epita.fr>
10640
10641 * data/lalr1.cc: Move the body of the ctor and dtor into the
10642 parser file (instead of the header).
10643 Wrap the implementations in a "namespace yy".
10644
10645 2005-11-12 Akim Demaille <akim@epita.fr>
10646
10647 Have glr.c include its header file when created.
10648 * data/glr.c (b4_shared_declarations): New.
10649 Output them verbatim in the parser if !%defines, otherwise
10650 output then in the header file, and include it instead.
10651
10652 2005-11-11 Akim Demaille <akim@epita.fr>
10653
10654 * data/glr.c: Comment changes.
10655
10656 2005-11-11 Akim Demaille <akim@epita.fr>
10657
10658 When yydebug, report semantic and location values for reductions.
10659 * data/glr.c (yy_reduce_print): Report the semantic values and the
10660 locations.
10661 (YY_REDUCE_PRINT): Adjust.
10662 (yyglrReduce): Use them.
10663 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
10664 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
10665 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
10666 traces.
10667
10668 2005-11-10 Akim Demaille <akim@epita.fr>
10669
10670 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
10671 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
10672 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
10673
10674 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
10675
10676 * m4/cxx.m4, examples/Makefile.am: Don't build
10677 examples/calc++ if no C++ compiler is available. (trivial change)
10678
10679 2005-11-09 Akim Demaille <akim@epita.fr>
10680
10681 * src/scan-skel.l: Use a couple of asserts.
10682
10683 2005-11-03 Akim Demaille <akim@epita.fr>
10684
10685 In some (weird) cases, the final state number is incorrect.
10686 Reported by Alexandre Duret-Lutz.
10687 * src/LR0.c (state_list_append): Remove the computation of
10688 final_state.
10689 (save_reductions): Do it here.
10690 (get_state): Alpha conversion.
10691 (generate_states): Use a for loop.
10692 * src/gram.h (item_number_is_rule_number)
10693 (item_number_is_symbol_number): New.
10694 * src/state.c: Use assert.
10695 * src/system.h: Include assert.h.
10696 * tests/sets.at (Accept): New.
10697
10698 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10699
10700 * data/glr.c (yyfill): Adjust comment.
10701 (yyresolveAction): Initialize default location properly
10702 for empty right-hand sides.
10703 (yydoAction): Ditto.
10704 Add comment explaining apparently dead code.
10705 * tests/glr-regression.at
10706 (Incorrectly initialized location for empty right-hand side in GLR):
10707 New test.
10708
10709 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
10710
10711 * bootstrap (cleanup_gnulib): New function. Use it to clean up
10712 gnulib when interrupted. This fixes some race conditions and
10713 works around some portability problems (one noted by Paul
10714 Hilfinger).
10715
10716 2005-10-22 Akim <akim@epita.fr>
10717
10718 * Makefile.cfg: Adjust to config -> build-aux.
10719 Reported by twledo.
10720
10721 2005-10-21 Akim Demaille <akim@epita.fr>
10722
10723 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
10724 the %parse-params.
10725 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
10726 * data/yacc.c (b4_Pure_if): Rename as...
10727 (b4_yacc_pure_if): this.
10728 (YY_SYMBOL_PRINT, yyparse): Adjust.
10729 * doc/bison.texinfo: Formatting changes.
10730
10731 2005-10-21 Akim Demaille <akim@epita.fr>
10732
10733 Finish the transition config -> build-aux.
10734 * configure.ac, Makefile.am: Use build-aux.
10735 * config/prev-version, config/announce-gen, config/Makefile.am:
10736 Move to...
10737 * build-aux/prev-version, build-aux/announce-gen,
10738 * build-aux/Makefile.am: here.
10739
10740 2005-10-14 Akim Demaille <akim@epita.fr>
10741
10742 * examples/calc++/test: Use set -x only when VERBOSE.
10743
10744 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
10745
10746 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
10747 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
10748
10749 2005-10-13 Akim Demaille <akim@epita.fr>
10750
10751 * src/scan-skel.l: Output the base name parts of the parser and
10752 header file names.
10753 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
10754 additional checks.
10755 Use this to exercise C++ outputs in subdirs.
10756 Reported by Oleg Smolsky.
10757
10758 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
10759
10760 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
10761 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
10762 Problem reported by John P. Hartmann.
10763 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
10764 already defined it.
10765
10766 2005-10-12 Akim Demaille <akim@epita.fr>
10767
10768 * src/parse-gram.y (version_check): Exit 63 to please missing
10769 (stands for "version mismatch).
10770 * tests/input.at, doc/bison.texinfo: Adjust.
10771
10772 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
10773
10774 Work around portability problems with Visual Age C compiler
10775 (xlc and xlC_r) reported by John P. Hartmann.
10776 * data/location.cc (initial_column, initial_line): Remove.
10777 All uses replaced by 0 and 1.
10778 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
10779 that xlc complains about.
10780 * src/scan-skel.l (skel_wrap): Likewise.
10781 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
10782 as __STDC__.
10783 * data/yacc.c (YYMODERN_C): New macro, which also looks at
10784 __STDC_VERSION__. Use it everywhere instead of looking at
10785 __STDC__ and __cplusplus.
10786
10787 2005-10-10 Akim Demaille <akim@epita.fr>
10788
10789 * examples/calc++/test: Be quiet unless VERBOSE.
10790
10791 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
10792
10793 * data/c.m4 (yydestruct, yysymprint):
10794 Use YYUSE instead of casting to void.
10795 * data/glr.c (YYUSE): New macro.
10796 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10797 Use it instead of rolling our own.
10798 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10799 (YYCHK1):
10800 Use /*CONSTCOND*/ to suppress lint warnings.
10801 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10802 (YY_STACK_PRINT): Use 'false' not '0'.
10803 (YYUSE): New macro.
10804 (yysymprint_, yydestruct_): Use it instead of rolling our own.
10805 * data/yacc.c (YYUSE): New macro.
10806 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
10807 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
10808 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
10809
10810
10811 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
10812 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
10813
10814 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
10815
10816 Undo the parts of the unlocked-I/O change that substituted
10817 putc or puts for printf. This might hurt performance a bit,
10818 but some people prefer the printf style.
10819 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
10820 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
10821 All uses replaced by YYFPRINTF and YYDPRINTF.
10822 * data/yacc.c: Likewise.
10823 * lib/bitset.c (bitset_print): Likewise.
10824 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
10825 putc and puts.
10826 * lib/lbitset.c (debug_lbitset): Likewise.
10827 * src/closure.c (print_firsts, print_fderives): Likewise.
10828 * src/gram.c (grammar_dump): Likewise.
10829 * src/lalr.c (look_ahead_tokens_print): Likewise.
10830 * src/output.c (escaped_output): Likewise.
10831 (user_actions_output): Break apart two printfs.
10832 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
10833 * src/reduce.c (reduce_print): Likewise.
10834 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10835 * src/system.h: Include unlocked-io.h rathe than stdio.h.
10836
10837 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10838 Use assignments rather than casts-to-void to suppress
10839 unused-variable warnings. This pacifies 'lint'.
10840 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
10841 unused-variable warnings.
10842
10843 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10844
10845 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10846
10847 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
10848
10849 Use unlocked I/O for a minor performance improvement on hosts like
10850 GNU/Linux and Solaris that support unlocked I/O. The basic idea
10851 is to use the gnlib unlocked-io module, and to prefer putc and
10852 puts to printf when either will work (since the latter doesn't
10853 come in an unlocked flavor).
10854 * bootstrap (gnulib_modules): Add unlocked-io.
10855 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
10856 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
10857 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
10858 and similarly for puts and putc and printf.
10859 * data/yacc.c: Likewise.
10860 * lib/bitset.c (bitset_print): Likewise.
10861 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
10862 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
10863 to printf.
10864 * lib/lbitset.c (debug_lbitset): Likewise.
10865 * src/closure.c (print_firsts, print_fderives): Likewise.
10866 * src/gram.c (grammar_dump): Likewise.
10867 * src/lalr.c (look_ahead_tokens_print): Likewise.
10868 * src/output.c (escaped_output): Likewise.
10869 (user_actions_output): Coalesce two printfs.
10870 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
10871 * src/reduce.c (reduce_print): Likewise.
10872 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10873 * src/system.h: Include unlocked-io.h rather than stdio.h.
10874
10875 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
10876 this confuses xgettext.
10877
10878 2005-10-02 Akim Demaille <akim@epita.fr>
10879
10880 * bootstrap (gnulib_modules): Add strverscmp.
10881 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
10882 * m4/.cvsignore: Add strverscmp.m4.
10883 * src/parse-gram.y (%require): New token, new rule.
10884 (version_check): New.
10885 * src/scan-gram.l (%require): Adjust.
10886 * tests/input.at (AT_REQUIRE): New.
10887 Use it.
10888 * doc/bison.texinfo (Require Decl): New.
10889 (Calc++ Parser): Use %require.
10890
10891 2005-10-02 Akim Demaille <akim@epita.fr>
10892
10893 * data/location.cc: New.
10894
10895 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
10896 Akim Demaille <akim@epita.fr>
10897
10898 Make sure -odir/foo.cc creates dir/location.hh etc.
10899 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
10900 (spec_file_prefix, spec_verbose_file, spec_graph_file)
10901 (spec_defines_file): Now const.
10902 (dir_prefix): New.
10903 (short_base_name): Remove.
10904 * src/files.c: Adjust.
10905 (dirname.h): Include.
10906 (base_name): Don't prototype it.
10907 (finput): Remove, duplicates gram_in.
10908 (full_base_name, short_base_name): Replace by...
10909 (all_but_ext, all_but_tab_ext): these.
10910 (compute_base_names): Rename as...
10911 (compute_file_name_parts): this.
10912 Update to compute the new variables, including dir_prefix.
10913 Adjust dependencies.
10914 * src/output.c (prepare): Output them.
10915 * src/reader.c: Adjust to use gram_in, not finput.
10916 * src/scan-skel.l (@dir_prefix@): New.
10917
10918 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10919
10920 * lib/subpipe.c: New function end_of_output_subpipe() added
10921 to allow support for non-posix systems. This is a no-op function
10922 for posix systems.
10923
10924 * lib/subpipe.h: New function end_of_output_subpipe() added
10925 to allow support for non-posix systems. This is a no-op function
10926 for posix systems.
10927
10928 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
10929 handle the lack of pipe/fork functionality on non-posix systems.
10930
10931 * djgpp/Makefile.maint: DJGPP specific file.
10932
10933 * djgpp/README.in: DJGPP specific file.
10934
10935 * djgpp/config.bat: DJGPP specific configuration file.
10936
10937 * djgpp/config.sed: DJGPP specific configuration file.
10938
10939 * djgpp/config.site: DJGPP specific configuration file.
10940
10941 * djgpp/config_h.sed: DJGPP specific configuration file.
10942
10943 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
10944
10945 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
10946
10947 2005-10-02 Akim Demaille <akim@epita.fr>
10948
10949 * data/location.cc: New, extract from...
10950 * data/lalr1.cc: here.
10951 (location.hh): Include it after the user prologue, in case the
10952 filename type is defined by the user.
10953 Forward declation location and position before the pre-prologue.
10954 (yyresult_): Rename as...
10955 (yyresult): this, it's a local variable, not an attribute.
10956 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
10957
10958 2005-10-01 Akim Demaille <akim@epita.fr>
10959
10960 * examples/extexi: Restore the #line generation.
10961
10962 2005-09-30 Akim Demaille <akim@epita.fr>,
10963 Alexandre Duret-Lutz <adl@gnu.org>
10964
10965 Move the token type and YYSTYPE in the parser class.
10966 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
10967 (parser::token): New, from the moved free definition of tokens.
10968 (parser::semantic_value): Now a full definition instead of an
10969 indirection to YYSTYPE.
10970 (b4_post_prologue): No longer included in the header file, but
10971 in the implementation file.
10972 * doc/bison.texi (C+ Language Interface): Update.
10973 * src/parse-gram.y: Support unary %define.
10974 * tests/actions.at: Define global_tokens_and_yystype for backward
10975 compatibility until we update the tests.
10976 * tests/calc.at: Idem.
10977 (first_line, first_column, last_line, last_column): Define for lalr1.cc
10978 to simplify the code.
10979
10980 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
10981
10982 Port to SunOS 4.1.4, which lacks strtoul and strerror.
10983 Ah, the good old days! Problem reported by Peter Klein.
10984 * bootstrap (gnulib_modules): Add strerror, strtoul.
10985 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
10986 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
10987
10988 2005-09-29 Akim Demaille <akim@epita.fr>
10989
10990 * data/c.m4 (b4_error_verbose_if): New.
10991 * data/lalr1.cc: Use it.
10992 (YYERROR_VERBOSE_IF): Remove.
10993 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
10994 parser members, replaced by...
10995 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
10996 local variables.
10997 (yysyntax_error_): Takes the state number as argument.
10998 (yyreduce_print_): Use the argument yyrule, not the former
10999 attribute yyn_.
11000
11001 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
11002
11003 * bootstrap (gnulib_modules): Add verify.
11004 * lib/.cvsignore: Add verify.h.
11005 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
11006 * src/system.h (verify): Remove.
11007 Include verify.h instead.
11008 * src/tables.c (tables_generate): Use new API for 'verify'.
11009
11010 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
11011
11012 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
11013 local variables whose names begin with 'yy'.
11014 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
11015 Trivial changes from Joel E. Denny.
11016
11017 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
11018 it itself.
11019 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
11020 don't use alloca any more.
11021
11022 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
11023 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
11024 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
11025 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
11026 to match yacc.c, to test more hosts.
11027
11028 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
11029
11030 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
11031 doesn't affect behavior.
11032 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
11033 Solaris, AIX, MSC.
11034 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
11035 This works a bit better with glibc, if user code has already included
11036 stdlib.h.
11037 * doc/bison.texinfo (Bison Parser): Document that users can't
11038 arbitrarily use malloc and free for other purposes. Document
11039 that <alloca.h> and <malloc.h> might be included.
11040 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
11041 user must declare alloca.
11042
11043 * HACKING (release): Forwarn the Translation Project about
11044 stable releses.
11045
11046 2005-09-20 Akim Demaille <akim@epita.fr>
11047
11048 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
11049
11050 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
11051
11052 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
11053 (YYSTACK_ALLOC_MAXIMUM): Use it.
11054 (yysyntax_error): New function.
11055 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
11056 multiple syntax errors are reported, and alloca is being used.
11057 Instead, reallocate buffers twice as big each time, so that
11058 we waste at most half the allocated memory. Start with a small
11059 (128-byte) buffer that will suffice in most cases anyway.
11060 Use yysyntax_error to do most of the work.
11061
11062 * doc/bison.texinfo (Error Reporting, Table of Symbols):
11063 yynerrs is the number of errors reported, not the number of
11064 errors encountered.
11065
11066 * tests/glr-regression.at (Duplicated user destructor for lookahead):
11067 Mark it as expected to fail.
11068 Cast result of malloc; problem reported by twlevo@xs4all.nl.
11069 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
11070 Don't start user-code symbols with "yy", to avoid name space problems.
11071
11072 2005-09-19 Akim Demaille <akim@epita.fr>
11073
11074 Remove the traits, failed experiment.
11075 It never proved useful, and anyway because of the current
11076 definition, it was not possible to have several specialization of
11077 this traits, making it useless.
11078 * data/lalr1.cc (yy:traits): Remove.
11079 Inline its definitions in the parser class.
11080
11081 2005-09-19 Akim Demaille <akim@epita.fr>
11082
11083 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
11084 least Mac OSX with a /usr/local install of gettext.
11085
11086 2005-09-19 Akim Demaille <akim@epita.fr>
11087
11088 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
11089 and yytoken for similarity with the other skeletons.
11090
11091 2005-09-19 Akim Demaille <akim@epita.fr>
11092
11093 * NEWS, configure.ac: update version number to 2.1a.
11094
11095 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
11096
11097 * NEWS: Version 2.1.
11098
11099 * NEWS: Remove notice of yytname change, since it was never in an
11100 official release.
11101 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
11102 diagnostic.
11103 * src/output.c (prepare): Likewise.
11104 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
11105 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
11106 is not defined. This is an awful hack, but it's enough for now.
11107 All callers changed.
11108 * tests/glr-regression-at (make_value): Args are const pointers now,
11109 to avoid GCC warning.
11110 (Duplicated user destructor for lookahead): New test. Currently
11111 skipped. It fails on my host but I'm not sure it'll always fail.
11112
11113 2005-09-16 Akim Demaille <akim@epita.fr>
11114
11115 * src/symtab.h (struct symbol): Declare the printer and destructor
11116 as const, to avoid accidental calls to free.
11117 (symbol_destructor_set, symbol_printer_set): Adjust.
11118 * src/symtab.c: Adjust.
11119
11120 2005-09-16 Akim Demaille <akim@epita.fr>
11121
11122 * data/c.m4 (b4_token_enums): New.
11123 (b4_token_defines): Rename as...
11124 (b4_token_enums_defines): this.
11125 (b4_token_defines): New, output only the #defines.
11126 * data/yacc.c, data/glr.c: Adjust.
11127 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
11128 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
11129 as default values.
11130
11131 2005-09-16 Akim Demaille <akim@epita.fr>
11132
11133 * data/lalr1.cc (yylex_): Remove, inline its code.
11134 (yyreport_syntax_error_): Remove, replaced by...
11135 (yysyntax_error_): this which returns a string and leaves to the
11136 caller the call to the users' error function.
11137 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
11138 Move from members of the parser object...
11139 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
11140 to local variables of the parse function.
11141
11142 2005-09-16 Akim Demaille <akim@epita.fr>
11143
11144 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
11145 since it's in Bison's name space.
11146
11147 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
11148
11149 * data/glr.c (yyresolveValue): Add default case to pacify
11150 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
11151
11152 * NEWS: Document when yyparse started to return 2.
11153 * doc/bison.texinfo (Parser Function): Document when yyparse
11154 returns 2.
11155
11156 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
11157 (b4_filename_type): Renamed back from b4_file_name_type. All uses
11158 changed.
11159 (class position): file_name -> filename (reverting). All uses changed.
11160
11161 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
11162
11163 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
11164 do anything if $@ exists. This reverts part of the 2005-07-07
11165 patch.
11166
11167 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
11168
11169 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
11170 contains obsolete information and isn't worth distributing as a
11171 separate file anyway.
11172 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
11173 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
11174 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
11175 (yyparse): Abort if user code uses longjmp to throw an unexpected
11176 value.
11177
11178 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
11179
11180 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
11181 Suggested by twlevo@xs4all.nl.
11182
11183 * data/glr.c (YYCHK1): Do not assume YYE is in range.
11184 This avoids a diagnostic from gcc -Wswitch-enum.
11185 Problem reported by twlevo@xs4all.nl.
11186
11187 * doc/bison.texinfo: Don't use "filename", as per GNU coding
11188 standards. Use "file name" or "file" or "name", depending on
11189 the context.
11190 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
11191 not to hack/foo.tab.c.
11192 (Calc++ Top Level): 2nd arg of main is not const.
11193 * data/glr.c: b4_filename -> b4_file_name.
11194 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
11195 All uses changed.
11196 (class position): filename -> file_name. All uses changed.
11197 * data/yacc.c: b4_filename -> b4_file_name.
11198 * lib/bitset.h: filename -> file_name in local vars.
11199 * lib/bitset_stats.c: Likewise.
11200 * src/files.c: Likewise.
11201 * src/scan-skel.l ("@output ".*\n): Likewise.
11202 * src/files.c (file_name_split): Renamed from filename_split.
11203 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
11204
11205 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
11206
11207 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
11208 to accommodate latest gnulib.
11209
11210 * tests/glr-regression.at (Duplicate representation of merged trees):
11211 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
11212
11213 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
11214 needed.
11215
11216 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
11217
11218 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
11219 All uses changed. Invoke user destructor after an error during a
11220 split parse (trivial change from Joel E. Denny).
11221
11222 * tests/glr-regression.at
11223 (User destructor after an error during a split parse): New test case.
11224 Problem reported by Joel E. Denny in:
11225 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
11226
11227 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
11228
11229 * README-cvs: Give URLs for recommended tools.
11230 Mention Gzip version problem, and bootstrapping issues.
11231 Remove troubleshooting section, as it's somewhat obsolete.
11232
11233 * bootstrap (no_cache): New var, to accommodate different wget
11234 variants. Use it instead of '-C off'. Problem reported by
11235 twlevo@xs4all.nl.
11236
11237 * data/glr.c (yydestroyStackItem): New function.
11238 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
11239 debugging information. Problem reported by Joel E. Denny.
11240
11241 2005-08-25 Akim Demaille <akim@epita.fr>
11242
11243 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
11244
11245 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
11246
11247 * data/glr.c (yyrecoverSyntaxError, yyreturn):
11248 Don't invoke destructor on unresolved entries.
11249 * tests/glr-regression.at
11250 (User destructor for unresolved GLR semantic value): New test case.
11251 Problem reported by Joel E. Denny in:
11252 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
11253
11254 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
11255
11256 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
11257 Add strnlen.c.
11258 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
11259 lib-prefix.m4, po.m4.
11260
11261 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
11262 in yydestruct diagnostic, since it might not be an error.
11263 Problem reported by Joel Denny near end of
11264 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
11265 * data/lalr1.cc (yyerturn): Likewise.
11266 * data/yacc.c (yyreturn): Likewise.
11267 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
11268
11269 * src/files.c: Remove obsolete FIXME comment.
11270
11271 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
11272 with the other templates, and to fix bogus run-on messages such
11273 as the one reported at the end of
11274 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
11275 All callers changed to avoid the newline.
11276 (yyprocessOneStack): Output two lines rather than one, to accommodate
11277 the above change. This changes the debug output format slightly.
11278
11279 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
11280 reported by Joel E. Denny in
11281 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
11282 (trivial change).
11283 * tests/glr-regression.at (Duplicate representation of merged trees):
11284 New test, from Joel E. Denny in:
11285 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
11286 * THANKS: Add Joel E. Denny.
11287
11288 * configure.ac (AC_INIT): Bump to 2.0c.
11289
11290 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
11291
11292 * NEWS: Version 2.0b.
11293
11294 * Makefile.am (SUBDIRS): Put examples before tests, so that
11295 "make check" doesn't finish with "All 1 tests passed".
11296
11297 * tests/regression.at (Token definitions): Don't rely on
11298 AT_PARSER_CHECK for data that contains backslashes. It currently
11299 uses 'echo', and 'echo' isn't portable if its argument contains
11300 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
11301 that the byte '\0xff' is not printable in the C locale; it is,
11302 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
11303 not printable, so use '\0x81' to test.
11304
11305 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
11306 version of GCC, since the macro is used with non-GCC compilers.
11307
11308 Fix core dump reported by Pablo De Napoli in
11309 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
11310 * tests/regression.at (Invalid inputs with {}): New test.
11311 * src/parse-gram.y (token_name): Translate type before using
11312 it as an index.
11313
11314 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
11315 the user's name space. All uses changed to __attribute__
11316 ((__unused__)).
11317 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
11318 Add __attribute__ ((__noreturn__)).
11319
11320 * etc/clcommit: Remove. We weren't using it, and it failed
11321 "make maintainer-distcheck".
11322 * Makefile.maint: Merge from coreutils.
11323 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
11324 (syntax-check-rules): Change list of rules as described below.
11325 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
11326 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
11327 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
11328 (sc_trailing_space): New rules.
11329 (sc_xalloc_h_in_src): Remove.
11330 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
11331 (sc_space_tab, sc_error_exit_success, sc_changelog):
11332 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
11333 (makefile-check, po-check, author_mark_check):
11334 (makefile_path_separator_check, copyright-check):
11335 Use grep -n, to make it easier to find violations.
11336 Use CVS_LIST and CVS_LIST_EXCEPT.
11337 (header_regexp, h_re): Remove.
11338 (dd_c): New macro.
11339 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
11340 (my-distcheck): Use more-modern GCC flags.
11341 (signatures, %.asc): Remove.
11342 (rel-files, announcement): Remove signatures.
11343 Restore old updating code, even though we don't use it, so
11344 that we're the same as coreutils.
11345 (alpha, beta, major): Depend on news-date-check.
11346 Make the upload commands.
11347
11348 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
11349 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
11350 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
11351 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
11352 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
11353 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
11354 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
11355 * tests/sets.at: Likewise.
11356
11357 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
11358 we comment out the Autoconf version number.
11359 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
11360 it's error-prone and "make maintainer-distcheck" rejects it.
11361
11362 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
11363 Indent calls to "error" to pacify "make maintainer-distcheck",
11364 when the calls are not intended to be translated.
11365 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
11366
11367 * src/Makefile.am (DEFS): Use +=, to pacify
11368 "make maintainer-distcheck".
11369 (bison_SOURCES): Add scan-skel.h.
11370 (sc_tight_scope): New rule, from coreutils.
11371
11372 * src/files.c (src_extension, header_extension):
11373 Now static, not extern.
11374 * src/getargs.c (short_options): Likewise.
11375 * src/muscle_tab.c (muscle_table): Likewise.
11376 * src/parse-gram.y (current_class, current_type, current_prec):
11377 Likewise.
11378 * src/reader.c (grammar_end, previous_rule_end): Likewise.
11379 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
11380 * src/main.c (main): Cast bindtextdomain and textdomain calls to
11381 void, to avoid warning when NLS is disabled.
11382 * src/output.c: Include scan-skel.h.
11383 (scan_skel): Remove decl, since scan-skel.h does this.
11384 (output_skeleton):
11385 Indent calls to "error" to pacify "make maintainer-distcheck".
11386 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
11387 * src/reader.h (gram_end, gram_lineno): New decls to pacify
11388 "make maintainer-distcheck".
11389 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
11390 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
11391 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
11392 (skel_lex_destroy, scan_skel): Move these decls to...
11393 * src/scan-skel.h: New file.
11394 * src/uniqstr.c (uniqstr_assert):
11395 Indent calls to "error" to pacify "make maintainer-distcheck".
11396
11397 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
11398 not @VAR@.
11399
11400 * tests/torture.at: Revamp to avoid misuse of atoi that
11401 "make maintainer-distcheck" complained about.
11402
11403 * examples/extexi (message): Don't print a message more than once,
11404 and omit line-number decoration that makes Emacs compile think
11405 that informative messages are worth worrying about.
11406
11407 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
11408
11409 * configure.ac: Update version number.
11410
11411 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
11412 accidentally.
11413 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
11414 autogenerated by the maintainer.
11415 * examples/calc++/.cvsignore: Add *.yy.
11416
11417 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
11418 * lib/bitset_stats.c (bitset_stats_init): Likewise.
11419 * lib/bitsetv.c (bitsetv_alloc): Likewise.
11420
11421 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
11422
11423 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
11424 from maintainer-distcheck about casting the argument of 'free'.
11425
11426 * NEWS: Mention recent yytname changes.
11427 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
11428
11429 * bootstrap: For translations that have not yet been upgraded to
11430 the new runtime-po domain, prime the pump by extracting the
11431 relevant strings from the obsolete translations. This code can be
11432 removed once the bison-runtime domain has been translated by each
11433 team.
11434
11435 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
11436 now that token names are already quoted.
11437
11438 Fix problem reported by Anthony Heading.
11439 * data/glr.c (YYTOKEN_TABLE): New macro.
11440 (yytname): Define if YYTOKEN_TABLE.
11441 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
11442 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
11443 (YYERROR_VERBOSE): Define the same way the other skeletons do.
11444 * src/output.c (prepare_symbols): Output token_table_flag.
11445
11446 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
11447
11448 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
11449 again if the first call fails.
11450
11451 * data/glr.c (yytnamerr): New function.
11452 (yyreportSyntaxError): Use it to dequote most string literals.
11453 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
11454 with other skeletons. All uses changed.
11455 (yytnameerr_): New function.
11456 (yyreport_syntax_error): Use it to dequote most string literals.
11457 * data/yacc.c (yytnamerr): New function.
11458 (yyerrlab): Use it to decode most string literals.
11459 * doc/bison.texinfo (Decl Summary, Calling Convention):
11460 Clarify quoting convention of yytname.
11461 * src/output.c (prepare_symbols): Quote all names. This undoes
11462 the 2005-04-17 change, which is now accomplished (mostly) via
11463 changes in the parsers as described above.
11464 * tests/regression.at (Token definitions, Web2c Actions):
11465 Undo most 2005-04-17 change here, too.
11466
11467 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
11468
11469 Fix more problems reported by twlevo@xs4all.nl.
11470 * tests/cxx-type.at: Don't pipe output of ./types through sed to
11471 remove trailing spaces. This loses the exit status of ./types,
11472 and isn't needed since ./types shouldn't be emitting trailing
11473 spaces.
11474 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
11475 as the stack isn't valid in that case.
11476
11477 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
11478 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
11479 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
11480 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
11481 is used.
11482 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
11483 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
11484 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
11485 Likewise.
11486
11487 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
11488 overly-picky compilers that reject 'char *foo = "bar";'.
11489
11490 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
11491 to FILE * parameter, not to stderr. This fixes a typo introduced
11492 in the 2005-07-12 change.
11493
11494 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
11495 warnings from GCC 4.
11496
11497 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
11498 (yyglrShiftDefer, yysplitStack):
11499 Remove unused parameters b4_pure_formals. All uses changed.
11500 (yyglrShift): Remove unused parameters b4_user_formals.
11501 All uses changed.
11502 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
11503
11504 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
11505
11506 Destructor cleanups and regularization among the three skeletons.
11507 * NEWS: Document the behavior changes.
11508 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
11509 stack before failing, as the cleanup code will do it for us now.
11510 * data/lalr1.cc (yyerrlab): Likewise.
11511 * data/glr.c (yyparse): Pop everything off the stack before
11512 freeing it, so that destructors get called properly.
11513 * data/lalr1.cc (yyreturn): Likewise.
11514 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
11515 This is more consistent.
11516 * doc/bison.texinfo (Destructor Decl): Mention more reasons
11517 why destructors might be called. 1.875 -> 2.1.
11518 (Destructor Decl, Decl Summary, Table of Symbols):
11519 Some English-language cleanups for %destructor.
11520 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11521 Add output line for destructor of start symbol.
11522 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
11523 because of that same extra output line.
11524
11525 * NEWS: Document minor wording changes in diagnostics of
11526 Bison-generated parsers.
11527 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
11528 Remove unused formals. All uses changed.
11529 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
11530 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
11531 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
11532 Rename yyoverflowab to yyexhaustedlab.
11533 When memory exhaustion occurs during syntax-error reporting,
11534 report it separately rather than in a single diagnostic; this
11535 eases translation.
11536 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
11537 (Memory Exhausted): Renamed from Parser Stack Overflow.
11538 Revamp wording slightly to prefer "memory exhaustion".
11539 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
11540
11541 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
11542
11543 Add i18n support to the GLR skeleton. Partially fix the C++
11544 skeleton; a C++ expert needs to finish this. Remove debugging
11545 msgids; there's little point to having them translated, since they
11546 can be understood only by someone who can read the
11547 (English-language) source code.
11548
11549 Generate runtime-po/bison-runtime.pot automatically, so that we
11550 don't have to worry about garbage getting in that file. We'll
11551 make sure after the next official release that old msgids don't
11552 get lost. See
11553 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
11554
11555 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
11556 Now auto-generated.
11557 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
11558 Fix typos in explanations of the runtime file.
11559 * bootstrap: Change gettext keyword from YYI18N to YY_.
11560 Use standard Makefile.in.in in runtime-po, since we'll arrange
11561 for backward-compatible bison-runtime.po files in a different way.
11562 * data/glr.c (YY_): New macro, from yacc.c.
11563 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
11564 Translate messages intended for users.
11565 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
11566 the wording in the other skeletons. We don't know that the memory
11567 is virtual.
11568 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
11569 Use same method that yacc.c uses.
11570 Don't translate debugging messages.
11571 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
11572 it doesn't work (yet), and requires C++ expertise to fix.
11573 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
11574 Move defn to a more logical place, to be consistent with other
11575 skeletons.
11576 Don't translate debugging messages.
11577 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
11578 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
11579 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
11580 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
11581
11582 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
11583 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
11584 void, not int.
11585 * tests/glr-regression.at (Badly Collapsed GLR States):
11586 Likewise.
11587 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11588 yylex should return 0 at EOF rather than aborting.
11589
11590 Improve tests for stack overflow in GLR parser.
11591 Problem reported by twlevo@xs4all.nl.
11592 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
11593 All uses removed.
11594 (yyStackOverflow): Just longjmp, but with value 2 so that caller
11595 can handle the problem.
11596 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
11597 (yyparse): New local variable yyresult to record the result.
11598 Use result of setjmp to set it, rather than storing itinto
11599 struct.
11600 (yyDone): Remove label.
11601 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
11602 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
11603 if YYABORT is used).
11604 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
11605 yyparse status; put status > 1 into diagnostic.
11606 Check that status==2 works.
11607 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
11608 Use exit status 3 for failure to open (which shouldn't happen).
11609
11610 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
11611
11612 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
11613 1 on syntax error; just let yyparse do its thing.
11614 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
11615 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
11616 (Exploding the Stack Size with Alloca):
11617 (Exploding the Stack Size with Malloc):
11618 Expect exit status 2, not 1, since the parser is supposed to blow
11619 its stack. Problem reported by twlevo@xs4all.nl.
11620
11621 * data/glr.c (yyparse): Don't assume that the initial calls
11622 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
11623 Print a stack-overflow message and fail instead.
11624 Initialize the line-number information before creating the stack,
11625 so that the stack-overflow message can report line zero safely.
11626
11627 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
11628
11629 Fix problems reported by twlevo@xs4all.nl.
11630 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
11631 (yyuserMerge): Provide a default case if b4_mergers is empty.
11632 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
11633 * tests/glr-regression.at
11634 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11635 Add casts to pacify C++ compilers.
11636 * tests/glr-regression.at (Improper merging of GLR delayed action
11637 sets): Declare yylex before using it.
11638 * tests/Makefile.am (maintainer-check-g++): Fix a stray
11639 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
11640 test for valgrind; valgrind is independent of g++.
11641 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
11642 for compatibility with POSIX 1003.1-2001 (if running coreutils).
11643 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
11644 Use a destructor, so that we can expand the stack. Change
11645 YYSTYPE to char * so that we can free it. Cast result of malloc.
11646
11647 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11648
11649 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
11650 a valgrind failure. Problem reported by twlevo@xs4all.nl.
11651
11652 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
11653
11654 * PACKAGING: New file, suggested by Bruno Haible and taken from
11655 similar wording in gettext's PACKAGING file.
11656 * NEWS: Mention PACKAGING.
11657 * Makefile.am (EXTRA_DIST): Add PACKAGING.
11658
11659 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
11660
11661 * NEWS: Document recent i18n improvements.
11662 * bootstrap: Get runtime translations into runtime-po.
11663 Create runtime-po files automatically, if possible.
11664 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
11665 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
11666 does not infringe on the user's name space.
11667 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
11668 * doc/bison.texinfo (Internationalization): Revamp the English
11669 and Texinfo syntax a bit, to try to make it clearer.
11670 (Bison Options, Option Cross Key): Mention --print-localedir.
11671 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
11672 YYENABLE_NLS. Quote a bit more.
11673 * runtime-po/.cvsignore: New file.
11674 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
11675 * runtime-po/Rules-quot: Remove; now created by bootstrap.
11676 * runtime-po/quot.sed: Likewise.
11677 * runtime-po/boldquot.sed: Likewise.
11678 * runtime-po/en@quot.header: Likewise.
11679 * runtime-po/en@boldquot.header: Likewise.
11680 * runtime-po/insert-header.sin: Likewise.
11681 * runtime-po/remove-potcdate.sin: Likewise.
11682 * runtime-po/Makevars: Likewise.
11683 * runtime-po/LINGUAS: Likewise.
11684 * runtime-po/de.po: Likewise; we will rely on the translation project
11685 to maintain this, so "bootstrap" should get it.
11686 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
11687 its value.
11688 * src/main.c (main): Bind the bison-runtime domain, too.
11689
11690 2005-07-12 Bruno Haible <bruno@clisp.org>
11691
11692 * data/yacc.c: Include <libintl.h> when NLS is enabled.
11693 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
11694 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
11695 * runtime-po: New directory.
11696 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
11697 $(DOMAIN).pot-update rule, so that old messages are never dropped.
11698 * runtime-po/Rules-quot: New file, copied from po/.
11699 * runtime-po/quot.sed: Likewise.
11700 * runtime-po/boldquot.sed: Likewise.
11701 * runtime-po/en@quot.header: Likewise.
11702 * runtime-po/en@boldquot.header: Likewise.
11703 * runtime-po/insert-header.sin: Likewise.
11704 * runtime-po/remove-potcdate.sin: Likewise.
11705 * runtime-po/Makevars: New file.
11706 * runtime-po/POTFILES.in: New file.
11707 * runtime-po/LINGUAS: New file.
11708 * runtime-po/bison-runtime.pot: New file.
11709 * runtime-po/de.po: New file.
11710 * m4/bison.m4: New file.
11711 * Makefile.am (SUBDIRS): Add runtime-po.
11712 (aclocaldir, aclocal_DATA): New variables.
11713 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
11714 Define aclocaldir.
11715 * src/getargs.c (usage): Document --print-localedir option.
11716 (PRINT_LOCALEDIR_OPTION): New enum item.
11717 (long_options): Add --print-localedir option.
11718 (getargs): Handle --print-localedir option.
11719 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
11720 (Internationalization): New section.
11721
11722 2005-07-12 Akim Demaille <akim@epita.fr>
11723
11724 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
11725 for consistency with the rest of the code.
11726 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
11727 Add separators.
11728
11729 2005-07-12 Akim Demaille <akim@epita.fr>
11730
11731 * src/parse-gram.y: Use %printer instead of YYPRINT.
11732
11733 2005-07-12 Akim Demaille <akim@epita.fr>
11734
11735 * src/symtab.h, src/symtab.c (symbol_print): New.
11736 * src/symlist.h, src/symlist.c (symbol_list_print): New.
11737 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
11738
11739 2005-07-12 Akim Demaille <akim@epita.fr>
11740
11741 * data/glr.c (b4_syncline): Fix (swap) the definitions of
11742 b4_at_dollar and b4_dollar_dollar.
11743
11744 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
11745
11746 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
11747 and Pennello's paper.
11748
11749 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
11750
11751 * data/yacc.c (yyparse): Undo previous patch. Instead,
11752 set yylsp[0] and yyvsp[0] only if the initial action
11753 sets yylloc and yylval, respectively.
11754
11755 * data/yacc.c (yyparse): In the initial action, set
11756 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
11757 This avoids the use of undefined variables if the initial
11758 action does not set yylloc and/or yylval.
11759
11760 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
11761
11762 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
11763 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
11764 Remove from CVS. These files are automatically generated.
11765 * examples/extexi: Clarify that this file is now part of Bison,
11766 not GNU M4, and that it works with any POSIX-compatible Awk.
11767 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
11768 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
11769 so that we also get calc++-parser.yy. Geneate it.
11770 Use $(AWK), not gawk, since any conforming Awk will do.
11771 Put comment before action, since older 'make' can't handle comment
11772 in action.
11773 $(BUILT_SOURCES): List all built sources, not just some of them.
11774 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
11775 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
11776 $($(calc_sources_generated)): Remove unnecessary test for existence
11777 of target. (This had a shell syntax error anyway; a stray "x".)
11778 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
11779 calc++-parser.yy.
11780 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
11781
11782 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
11783 implied by the other modules.
11784
11785 2005-07-06 Akim Demaille <akim@epita.fr>
11786
11787 Bind examples/calc++ to the package.
11788 * examples/calc++/Makefile: Remove, replaced by...
11789 * examples/calc++/Makefile.am: ... this new file.
11790 * examples/calc++/test: Remove input.
11791 * examples/calc++/compile: Remove.
11792 * examples/Makefile.am: New.
11793 * configure.ac, Makefile.am: Adjust.
11794 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
11795
11796 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
11797
11798 * data/glr.c (yyFail): Drastically simplify; since the format argument
11799 never had any % directives, we can simply pass it to yyerror.
11800 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
11801 be modified later, as that is the usual style in glr.c.
11802 Problems reported by Paul Hilfinger.
11803
11804 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
11805 and size overflow errors.
11806 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
11807 in case the user prolog sets feature-test macros like _GNU_SOURCE.
11808 (YYSIZEMAX): New macro.
11809 (yystpcpy): New function, taken from yacc.c.
11810 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
11811 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
11812 so that we don't have to maintain their signatures.
11813 (yyFail): Check for buffer overflow, by using vsnprintf rather
11814 than vsprintf. Allocate a bigger buffer if possible.
11815 Report an error if buffer allocation fails.
11816 (yyStackOverflow): New function.
11817 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
11818 the initialization was successful. It might fail if storage was
11819 exhausted.
11820 (yyexpandGLRStack): Add more checks for storage allocation failure.
11821 Use yyStackOverflow to report failures.
11822 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
11823 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
11824 Don't assume stack number fits in int.
11825 (yysplitStack): Check for storage allocation failure.
11826 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
11827 can print diagnostics on storage allocation failure. All callers
11828 changed.
11829 (yyresolveValue): Use yybool for boolean.
11830 (yyreportSyntaxError): Check for size-calculation overflow.
11831 This code is taken from yacc.c.
11832 (yyparse): Check for storage allocation errors when allocating
11833 the initial stack.
11834
11835 2005-07-05 Akim Demaille <akim@epita.fr>
11836
11837 Extract calc++ from the documentation.
11838 * doc/bison.texinfo (Calc++): Add the extraction marks.
11839 * examples/extexi: New, from the aborted GNU Programming 2E.
11840 Separate the different paragraph of a file with empty lines.
11841 * examples/Makefile: Use it to extract the whole calc++ example.
11842
11843 2005-06-24 Akim Demaille <akim@epita.fr>
11844
11845 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
11846 class typedefs.
11847
11848 2005-06-22 Akim Demaille <akim@epita.fr>
11849
11850 * doc/bison.texinfo (C++ Language Interface): First stab.
11851 (C++ Parsers): Remove.
11852
11853 2005-06-22 Akim Demaille <akim@epita.fr>
11854
11855 * data/lalr1.cc (yylex_): Honor %lex-param.
11856
11857 2005-06-22 Akim Demaille <akim@epita.fr>
11858
11859 Start a set of simple examples.
11860 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
11861 * examples/calc++/calc++-driver.hh,
11862 * examples/calc++/calc++-parser.yy,
11863 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
11864 * examples/calc++/compile, examples/calc++/test: New.
11865
11866 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
11867
11868 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
11869 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
11870 which stems from the 2005-05-27 patch.
11871
11872 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11873
11874 * data/glr.c: Modify treatment of unused parameters to permit use
11875 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
11876
11877 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
11878
11879 Fix infringement on user name space reported by Janos Zoltan Szabo.
11880 * data/yacc.c (yyparse): strlen -> yystrlen.
11881
11882 2005-05-30 Akim Demaille <akim@epita.fr>
11883
11884 * data/lalr1.cc (_): New.
11885 Translate the various messages.
11886
11887 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
11888
11889 Fix infringement on user name space reported by Bruno Haible.
11890 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
11891 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
11892 the user's name space.
11893 (alloca): Include <stdlib.h> to get it, if it's not built in.
11894 (YYMALLOC, YYFREE): Define only if needed.
11895 (malloc, free): Declare, but only if needed, as this infringes on
11896 the user name space.
11897
11898 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
11899
11900 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
11901 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
11902 with %d format.
11903 * lib/ebitset.c (min, max): Undef before defining.
11904 * lib/vbitset.c (min, max): Likewise.
11905 * lib/subpipe.c (create_subpipe): Save local variables in case
11906 vfork clobbers them.
11907
11908 2005-05-24 Bruno Haible <bruno@clisp.org>
11909
11910 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
11911 error message syntax used by gcc-4.0.
11912
11913 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
11914
11915 * README: Mention m4 1.4.3. Remove obsolete advice about
11916 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
11917
11918 * bootstrap: Remove workaround for problem I encountered with
11919 gettext 0.14.1; it seems to be fixed now.
11920
11921 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
11922
11923 * NEWS: Version 2.0a.
11924
11925 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
11926 the previous change.
11927
11928 Various maintainer cleanups.
11929 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
11930 conftest*, for benefit of CVS commands run at the same time as
11931 "configure". Add build-aux, since "bootstrap" now creates it and
11932 its subfiles.
11933 * Makefile.cfg (move_if_change): Remove.
11934 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
11935 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
11936 (po_repo, do-po-update, po-update, wget_files, get-targets):
11937 (config.guess-url_prefix, config.sub-url_prefix):
11938 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
11939 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
11940 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
11941 Remove.
11942 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
11943 this is now the recommended name.
11944 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
11945 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
11946 ylwrap. These files now go into build-aux.
11947 * config/move-if-change: Remove.
11948 * config/prev-version.txt: Bump from 1.75 to 2.0.
11949
11950 * bootstrap: Add stdio-safer, unistd-safer modules.
11951 Remove m4/glibc2.m4 (introduced by latest gnulib, but
11952 we don't need it).
11953 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
11954 fopen-safer.c, stdio-safer.h, unistd-safer.h.
11955 * lib/subpipe.c: Include "unistd-safer.h".
11956 (create_subpipe): Make sure all the newly-created
11957 file descriptors are > 2, so that diagnostics don't
11958 get sent down them (which might cause Bison to hang, in theory).
11959 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
11960 * src/files.c (xfopen): Use fopen_safer, not fopen.
11961
11962 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
11963 yesterday's yacc.c fix.
11964
11965 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
11966
11967 * data/glr.c, data/lalr1.cc: Update copyright date.
11968
11969 Fix a destructor bug reported by Wolfgang Spraul in
11970 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
11971 * data/yacc.c (yyabortlab): Don't call destructor, and
11972 don't set yychar to EMPTY.
11973 (yyoverflowlab): Don't call destructor.
11974 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
11975 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
11976 since we no longer output the message "discarding lookahead token
11977 end of input ()".
11978
11979 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11980
11981 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
11982 fix a small glitch in debugging output.
11983 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
11984 after YY_SYMBOL_PRINT where needed.
11985
11986 (struct yyGLRState): Add some comments.
11987 (struct yySemanticOption): Add some comments.
11988 (union yyGLRStackItem): Add comment.
11989
11990 (yymergeOptionSets): Correct this to properly perform the union,
11991 avoiding infinite reported by Michael Rosien.
11992 Update comment.
11993
11994 * tests/glr-regression.at: Add test for GLR merging error reported
11995 by M. Rosien.
11996
11997 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
11998
11999 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
12000 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
12001 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
12002 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
12003 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
12004 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
12005 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
12006 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
12007 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
12008 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
12009 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
12010 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
12011 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
12012 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
12013 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
12014 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
12015 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
12016 src/derives.h, src/files.c, src/files.h, src/getargs.c,
12017 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
12018 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
12019 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
12020 src/output.h, src/parse-gram.c, src/parse-gram.h,
12021 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
12022 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
12023 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
12024 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
12025 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
12026 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
12027 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
12028 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
12029 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
12030 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
12031 tests/reduce.at, tests/regression.at, tests/sets.at,
12032 tests/synclines.at, tests/testsuite.at, tests/torture.at:
12033 Update FSF postal mail address.
12034
12035 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
12036
12037 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
12038 Problem reported by Ralf Menzel.
12039
12040 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
12041
12042 * tests/actions.at: Test that stack overflow invokes destructors.
12043 From Marcus Holland-Moritz.
12044 * data/yacc.c (yyerrlab): Move the code that destroys the stack
12045 from here....
12046 (yyreturn): to here. That way, destructors are called properly
12047 even if the stack overflows, or the user calls YYACCEPT or
12048 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
12049 (yyoverflowlab): Destroy the lookahead.
12050
12051 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
12052
12053 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
12054
12055 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
12056
12057 * NEWS: Bison-generated C parsers no longer quote literal strings
12058 associated with tokens.
12059 * src/output.c (prepare_symbols): Don't escape strings,
12060 since users don't want to see C escapes.
12061 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
12062 in diagnostics.
12063 * tests/input.at (Torturing the Scanner): Likewise.
12064 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
12065
12066 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
12067
12068 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
12069 the data size is known to be too small and we can't increase it.
12070 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
12071
12072 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
12073
12074 * src/parse-gram.y: Include quotearg.h.
12075 (string_as_id): Quote $1 before using it as a key, since the
12076 lexer no longer quotes it for us.
12077 (string_content): Don't strip quotes, since lexer no longer
12078 quotes it for us.
12079 * src/scan-gram.l: Include quotearg.h.
12080 ("\""): Omit quote.
12081 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
12082 a key, since the rest of the lexer doesn't quote it.
12083 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
12084 * tests/regression.at (Token definitions): Check for backslashes
12085 in token strings.
12086
12087 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
12088 (YYSIZE_T): Define to unsigned long int when using an older compiler.
12089 (yyparse): Revamp code to generate long syntax error message, to
12090 make it easier to translate, and to avoid problems with arithmetic
12091 overflow. Change "virtual memory" to "memory" in diagnostic, since
12092 we don't know whether the memory is virtual.
12093
12094 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
12095
12096 * NEWS: Bison-generated C parsers now use the _ macro to
12097 translate strings.
12098 * data/yacc.c (_) [!defined _]: New macro.
12099 All English strings wrapped inside this macro.
12100 * doc/bison.texinfo (Bison Parser): Document _.
12101 * po/POTFILES.in: Include src/parse-gram.c, since it now
12102 includes translateable strings that parse-gram.y doesn't.
12103
12104 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
12105
12106 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
12107 reverting the 2004-10-11 change to this function.
12108 (symbol_check_alias_consistency): Don't call symbol_type_set
12109 if the type name is already correct.
12110 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
12111
12112 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
12113
12114 * tests/regression.at (Token definitions): Don't use a token named
12115 c, as that generates a "#define c ..." that runs afoul of buggy
12116 stdlib.h that uses the identifier c as a member of struct
12117 drand48_data. Problem reported by Horst Wente.
12118
12119 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
12120
12121 * bootstrap: Change translation URL from
12122 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
12123 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
12124 redirection glitches. Problem reported by twlevo@xs4all.nl.
12125
12126 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
12127
12128 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
12129 after operands; POSIX says this isn't portable for the c99 command.
12130
12131 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
12132
12133 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
12134 immediately if a data overrun has occurred; this may help us track
12135 down what may be a spurious failure on MacOS.
12136
12137 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
12138
12139 Respond to problems reported by twlevo@xs4all.nl.
12140
12141 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
12142
12143 * src/vcg.h: Comment fix.
12144 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
12145 (G_CMAX): Change to -1 instead of INT_MAX.
12146
12147 * data/yacc.c (yyparse): Omit spaces before #line.
12148
12149 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
12150
12151 * src/tables.c (state_number_to_vector_number): Put it inside an
12152 "#if 0", since it's not currently used. Problem reported by
12153 Roland McGrath.
12154
12155 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
12156
12157 * src/output.c (escaped_output): Renamed from
12158 escaped_file_name_output, since we now use it for symbol tags as
12159 well. All uses changed.
12160 (symbol_destructors_output, symbol_printers_output):
12161 Escape symbol tags too.
12162 Problem reported by Matyas Forstner in
12163 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
12164
12165 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
12166 not needed.
12167 * src/output.c (user_actions_output, token_definitions_output,
12168 symbol_destructors_output, symbol_printers_output): Likewise.
12169 * src/reader.c (prologue_augment): Likewise.
12170 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
12171
12172 * src/vcg.c (output_edge): Don't quote linestyle arg.
12173 Problem reported by twlevo@xs4all.nl.
12174
12175 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
12176
12177 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
12178 example, reported by Derek M Jones. Also, make the example even
12179 more outrageous, to better illustrate how bad the problem is.
12180
12181 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
12182
12183 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
12184 putsym. Typo reported by Sebastian Piping.
12185
12186 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
12187
12188 * doc/bison.texinfo (Language and Grammar): some -> same
12189 (Epilogue): int he -> in the
12190 Typos reported by Sebastian Piping via Justin Pence.
12191
12192 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
12193
12194 * tests/glr-regression.at (Improper handling of embedded actions
12195 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
12196 embedded actions and $-N in GLR parsers", work around an Autoconf bug
12197 with dollar signs in test names.
12198 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
12199 for a similar reason.
12200
12201 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
12202
12203 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
12204 wants to redefine G_VIEW.
12205
12206 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
12207
12208 * src/vcg.c (get_view_str): Remove case for normal_view.
12209 Problem reported by twlevo@xs4all.nl.
12210
12211 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
12212
12213 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
12214 Problem reported by twlevo@xs4all.nl.
12215
12216 * doc/bison.texinfo: Change @dircategory from "GNU programming
12217 tools" to "Software development". Requested by Richard Stallman
12218 via Karl Berry.
12219
12220 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
12221
12222 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
12223 Problem reported by twlevo@xs4all.nl.
12224
12225 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
12226
12227 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
12228 keyword; it's not needed with modern compilers, and it doesn't
12229 affect correctness with older compilers. Suggested by
12230 twlevo@xs4all.nl.
12231
12232 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
12233
12234 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
12235 gcc -Wswitch-default.
12236 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
12237 * data/yacc.c (yyparse): Likewise.
12238
12239 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
12240
12241 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
12242 already. Let config.h define any nonstandard values.
12243
12244 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
12245
12246 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
12247 for the benefit of slower hosts. Problem reported by
12248 Nelson H. F. Beebe.
12249
12250 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
12251
12252 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
12253 being defined and not used.
12254 * data/lalr1.cc (yyparse): Likewise.
12255 Use "if (false)" rather than "if (0)".
12256
12257 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
12258
12259 * TODO: Mention that we should allow NUL bytes in tokens.
12260
12261 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
12262
12263 * src/scan-skel.l (<<EOF>>): Don't close standard output.
12264 Problem reported by Hans Aberg.
12265
12266 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
12267
12268 * src/getargs.c (version): Happy new year; update overall
12269 program copyright date from 2004 to 2005.
12270
12271 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
12272 Problem reported by Hans Aberg.
12273 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
12274 (Output file names.): Add a test for the case when standard output
12275 is closed.
12276
12277 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
12278
12279 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
12280 to fix an oversight in the Bison 2.0 manual.
12281
12282 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
12283
12284 * NEWS: Version 2.0. Reformat the existing news items since
12285 1.875, so that related items are grouped together.
12286 * configure.ac (AC_INIT): Bump version to 2.0.
12287 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
12288
12289 * tests/torture.at (Exploding the Stack Size with Alloca): Set
12290 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
12291 otherwise, we're not testing alloca. Unfortunately there's no
12292 simple way to consult HAVE_ALLOCA here.
12293
12294 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
12295 for yymsg, too.
12296
12297 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
12298 hand. This avoids a warning about comparing int to size_t when
12299 GCC warnings are enabled.
12300
12301 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
12302
12303 * NEWS: Bison-generated parsers no longer default to using the
12304 alloca function (when available) to extend the parser stack, due
12305 to widespread problems in unchecked stack-overflow detection.
12306 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
12307 responsibility to set it to a positive value. This lets the user
12308 specify a value that is not a preprocessor constant.
12309 * data/yacc.c (YYMAXDEPTH): Likewise.
12310 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
12311 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
12312 to be a compile-time constant. However, explain the constraints on it.
12313 Also, explain the constraints on YYINITDEPTH.
12314 (Table of Symbols): Explain that alloca is no longer the default.
12315 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
12316 to 1.
12317
12318 * doc/bison.texinfo (Location Default Action): Mention that n must
12319 be zero when k is zero. Suggested by Frank Heckenbach.
12320
12321 2004-12-22 Akim Demaille <akim@epita.fr>
12322
12323 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
12324 (parser::state_type, parser::semantic_type, parser::location_type):
12325 Private, not public.
12326 (parser::parse): Return ints, not bool.
12327 Returning a bool introduces a problem: 0 corresponds to false, and
12328 it seems weird to return false on success. Returning true changes
12329 the conventions for yyparse.
12330 Alternatively we could return void and send an exception.
12331 There is no clear consensus (yet?).
12332 (state_stack, semantic_stack, location_stack): Rename as...
12333 (state_stack_type, semantic_stack_type, location_stack_type): these.
12334 Private, not public.
12335 * tests/c++.at: New.
12336 * tests/testsuite.at, tests/Makefile.am: Adjust.
12337
12338 2004-12-21 Akim Demaille <akim@epita.fr>
12339
12340 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
12341
12342 2004-12-21 Akim Demaille <akim@epita.fr>
12343
12344 Don't impose std::string for filenames.
12345
12346 * data/lalr1.cc (b4_filename_type): New.
12347 (position::filename): Use it.
12348 (parser.hh): Move the inclusion of stack.hh and location.hh below
12349 the user code, so that needed headers for the filename type can be
12350 included first.
12351 Forward declare them before the user code.
12352 * tests/Makefile.am (check-local, installcheck-local): Pass
12353 TESTSUITEFLAGS to the TESTSUITE.
12354
12355 2004-12-20 Akim Demaille <akim@epita.fr>
12356
12357 Use more STL like names: my_class instead of MyClass.
12358
12359 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
12360 (SemanticStack, SemanticType, StateStack, StateType)
12361 (TokenNumberType, Stack, Slice, Traits, Parser::location)
12362 (Parser::value): Rename as...
12363 (location_stack, location_type, rhs_number_type, semantic_stack)
12364 (semantic_type, state_stack, state_type, token_number_type, stack)
12365 (slice, traits, parser::yylloc, parser::yylval): these.
12366
12367 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
12368
12369 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
12370
12371 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
12372 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12373
12374 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
12375
12376 Remove uses of 'short int' and 'unsigned short int'. This raises
12377 some arbitrary limits. It uses more memory but nowadays that's
12378 not much of an issue.
12379
12380 This change does not affect the generated parsers; that's a different
12381 task, as some users will want to conserve memory there.
12382
12383 Ideally we should use size_t to represent all object counts, and
12384 something like ptrdiff_t to represent signed differences of object
12385 counts; but that will require more code-cleanup than I have the
12386 time to do right now.
12387
12388 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
12389 Use size_t, not int or short int, to count objects.
12390 * src/closure.c (nritemset, closure): Likewise.
12391 * src/closure.h (nritemset, closure): Likewise.
12392 * src/nullable.c (nullable_compute): Likewise.
12393 * src/print.c (print_core): Likewise.
12394 * src/print_graph.c (print_core): Likewise.
12395 * src/state.c (state_compare, state_hash): Likewise.
12396 * src/state.h (struct state): Likewise.
12397 * src/tables.c (default_goto, goto_actions): Likewise.
12398
12399 * src/gram.h (rule_number, rule): Use int, not short int.
12400 * src/output.c (prepare_rules): Likewise.
12401 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
12402 errs, reductions): Likewise.
12403 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
12404 Likewise.
12405 * src/tables.c (vector_number, tally, action_number,
12406 ACTION_NUMBER_MINIMUM): Likewise.
12407 * src/output.c (muscle_insert_short_int_table): Remove.
12408
12409 2004-12-17 Akim Demaille <akim@epita.fr>
12410
12411 * data/lalr1.cc: Extensive Doxygenation.
12412 (error_): Rename as...
12413 (error): this, since it is visible to the user.
12414 Adjust callers.
12415 (Parser::message): Now an automatic variable from...
12416 (Parser::yyreport_syntax_error_): here.
12417 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
12418 Parser::error.
12419 * tests/input.at: Escape $.
12420
12421 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
12422
12423 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
12424 Parenthesize rhs to avoid obscure problems with mistakes like
12425 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
12426 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
12427 b4_rhs_location): Likewise.
12428 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
12429 b4_rhs_location): Likewise.
12430
12431 2004-12-16 Akim Demaille <akim@epita.fr>
12432
12433 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
12434 yacc.c: be sure to stay within yycheck_.
12435 * tests/actions.at: Re-enable C++ tests.
12436
12437 2004-12-16 Akim Demaille <akim@epita.fr>
12438
12439 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
12440 real.
12441
12442 2004-12-16 Akim Demaille <akim@epita.fr>
12443
12444 Use #define to handle the %name-prefix.
12445
12446 * data/glr.c, data/yacc.c: Comment changes.
12447 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
12448 so that one can refer to yylex in the parser file, and have it
12449 renamed, as is the case with other skeletons.
12450
12451 2004-12-16 Akim Demaille <akim@epita.fr>
12452
12453 Move lalr1.cc internals into yy*.
12454
12455 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
12456 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
12457 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
12458 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
12459 (empty_, final_, terror_, errcode_, ntokens_)
12460 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
12461 (looka_, ilooka_, error_range_, nerrs_):
12462 Rename as...
12463 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
12464 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
12465 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
12466 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
12467 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
12468 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
12469 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
12470 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
12471 these.
12472
12473 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
12474
12475 Fix some problems reported by twlevo at xs4all.
12476 * src/symtab.c (symbol_new): Report an error if the input grammar
12477 contains too many symbols. This is better than calling abort() later.
12478 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
12479 (struct node, struct graph):
12480 Rename member expand to stretch. All uses changed.
12481 (struct graph): Remove member layoutalgorithm. All uses removed.
12482 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
12483 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
12484 All uses changed.
12485 (N_STRETCH): Rename from N_EXPAND. All uses changed.
12486
12487 2004-12-15 Akim Demaille <akim@epita.fr>
12488
12489 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
12490 Add more Doxygen comments.
12491 (symprint_, stack_print_, reduce_print_, destruct_, pop)
12492 (report_syntax_error_, translate_): Rename as...
12493 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
12494 (yypop_, yyreport_syntax_error_, yytranslate_): this.
12495
12496 2004-12-15 Akim Demaille <akim@epita.fr>
12497
12498 * data/lalr1.cc (lex_): Rename as...
12499 (yylex_): this.
12500 Move the trace here.
12501 Take the %name-prefix into account.
12502 Reported by Alexandre Duret-Lutz.
12503
12504 2004-12-15 Akim Demaille <akim@epita.fr>
12505
12506 Simplify the C++ parser constructor.
12507
12508 * data/lalr1.cc (debug_): Rename as...
12509 (yydebug_): so that the parser's internals are always in the yy*
12510 pseudo namespace.
12511 Adjust uses.
12512 (b4_parse_param_decl): Remove the leading comma as it is now only
12513 called as unique argument list.
12514 (Parser::Parser): Remove the constructor accepting a location and
12515 an initial debugging level.
12516 Remove from the other ctor the argument for the debugging level.
12517 (debug_level_type, debug_level, set_debug_level): New.
12518
12519 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
12520 constructor calls.
12521
12522 2004-12-15 Akim Demaille <akim@epita.fr>
12523
12524 Remove b4_root related material: failure experiment
12525 (which goal was to allow to derive from a class).
12526
12527 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
12528 definitions and uses.
12529
12530 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
12531
12532 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
12533 not 2, since it's not portable to subtract 1 from the start of an
12534 array. The new item 0 is never set or used. All uses changed.
12535
12536 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
12537 the default definition of YYLLOC_DEFAULT. Problem reported
12538 by Frank Heckenbach.
12539
12540 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
12541
12542 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
12543 the normal case and one for the error case. Just use the
12544 first one uniformly. Problem reported by Frank Heckenbach.
12545 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
12546 use exactly the same macro in both places.
12547 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
12548 so that the normal-case YYRHSLOC works for the error case too.
12549 All uses changed.
12550 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
12551 (YYLLOC_DEFAULT): Use the same macro as glr.c.
12552 * doc/bison.texinfo (Location Default Action): Don't claim that
12553 we have an array of locations. Use the same macro for both glr
12554 and lalr parsers. Mention YYRHSLOC. Mention what happens when
12555 the index is 0.
12556
12557 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12558
12559 * HACKING: Update email addresses to send announcements to.
12560
12561 * configure.ac (AC_INIT): Bump version to 1.875f.
12562
12563 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12564
12565 * NEWS: Version 1.875e.
12566 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
12567
12568 * src/scan-skel.l: Include "complain.h", for "fatal".
12569
12570 * src/relation.h (relation_print, relation_digraph):
12571 Relation sizes are of type relation_node, not size_t (this is
12572 merely a doc fix, since the two types are equivalent).
12573 (relation_transpose): Relation sizes are of type relation_node,
12574 not int.
12575 * src/relation.c: Likewise.
12576 (top, infinity): Now of type relation_node, not int.
12577 (traverse, relation_transpose): Use relation_node, not int.
12578
12579 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
12580 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
12581 (yyparse): Remove unused local introduced in 2004-10-25 patch.
12582
12583 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
12584 specifying whether the test should be skipped. Use it tp
12585 specify that the [%defines %skeleton "lalr1.cc"] tests currently
12586 fail on some hosts, and should be skipped.
12587
12588 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
12589
12590 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
12591 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
12592 unless otherwise specified below.
12593
12594 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
12595 to allocate kernel_base, kernel_items, kernel_size, since
12596 they needn't be initialized to 0.
12597 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
12598 * src/closure.c (new_closure): Likewise, for itemset.
12599 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
12600 * src/lalr.c (set_goto_map): Likewise, for temp_map.
12601 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
12602 (build_relations): Likewise for edge, states1, includes.
12603 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
12604 * src/reader.c (packgram): Likewise, for ritem, rules.
12605 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
12606 * src/relation.c (relation_digraph): Likewise for VERTICES.
12607 (relation_transpose): Likewise for new_R, end_R.
12608 * src/symtab.c (symbols_token_translations_init): Likewise for
12609 token_translations.
12610 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
12611 (token_actions): Likewise for yydefact, actrow, conflrow,
12612 conflict_list.
12613 (save_column): Likewise for froms[symno], tos[symno].
12614 (goto_actions): Likewise for state_count.
12615 (pack_table): Likewise for base, pos, check.
12616 (tables_generate): Likewise for width.
12617
12618 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
12619 for initial core. Just have a separate core, so we needn't worry
12620 about whether kernel_size and kernel_base are initialized.
12621
12622 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
12623 kernel_size, kernel_items): Remove unnecessary initialization.
12624 * src/conflicts.c (conflicts): Likewise.
12625 * src/derives.c (derives): Likewise.
12626 * src/muscle_tablc (muscle_insert): Likewise.
12627 * src/relation.c (relation_digraph): Likewise.
12628 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
12629 conflrow, conflict_table, conflict_list, table, check):
12630 Likewise.
12631
12632 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
12633 This is because all callers pass unsigned int.
12634 * src/closure.h (new_closure): Likewise.
12635
12636 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
12637 (build_relations): Initialize includes[i] in all cases.
12638 * src/reader.c (packgram): Always initialize rules[ruleno].prec
12639 and rules[ruleno].precsym. Initialize members in order.
12640 * src/relation.c (relation_transpose): Always initialize new_R[i]
12641 and end_R[i].
12642 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
12643
12644 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
12645 conflict_list[0] was always 0, but now it isn't initialized.
12646
12647 * src/table.c (table_grow): When conflict_table grew, the grown
12648 area wasn't cleared. Fix this.
12649
12650 * lib/.cvsignore: Add strdup.c, strdup.h.
12651 * m4/.cvsignore: Add strdup.m4.
12652
12653 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
12654
12655 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
12656 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
12657 GOTO_NUMBER_MAXIMUM, since we occasionally compute
12658 ngotos + 1 without checking for overflow.
12659 (build_relations): Use END_NODE, not -1, to denote end of edges.
12660 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
12661 build_relations): Use goto_number, not int, for goto numbers.
12662 * src/tables.c (save_column, default_goto): Likewise.
12663
12664 2004-11-23 Akim Demaille <akim@epita.fr>
12665
12666 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
12667 of #defining from yystype.
12668 Don't typedef yystype, C++ does not need it.
12669 This lets it possible to forward declare it as union.
12670
12671 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
12672
12673 * bootstrap (gnulib_modules): Add extensions.
12674 Problem reported by Jim Meyering.
12675
12676 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
12677
12678 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
12679 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
12680 src/system.h, src/tables.c: XFREE -> free, to accommodate
12681 recent change to gnulib xalloc.h.
12682 Problem reported by Jim Meyering.
12683
12684 2004-11-17 Akim Demaille <akim@epita.fr>
12685
12686 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
12687
12688 2004-11-17 Akim Demaille <akim@epita.fr>,
12689 Alexandre Duret-Lutz <adl@gnu.org>
12690
12691 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
12692 changes.
12693 (YYCDEBUG): Adjust.
12694 Use it instead of cdebug_.
12695 (Parser::debug_stream, Parser::set_debug_stream): New.
12696 (Parser::symprint_): Define cdebug_ for temporary backward
12697 compatibility.
12698 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
12699 debug_stream ().
12700
12701 2004-11-17 Akim Demaille <akim@epita.fr>
12702
12703 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
12704 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
12705 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
12706 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12707
12708 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
12709
12710 * data/glr.c (yyloc_default): Remove; not used.
12711 Problem reported by Frank Heckenbach.
12712
12713 2004-10-25 Akim Demaille <akim@epita.fr>
12714
12715 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
12716 Introduce another definition to address simple location arrays.
12717 (yyGLRStack): New member: yyerror_range.
12718 (yyrecoverSyntaxError, yyparse): Update it.
12719 (yyrecoverSyntaxError): Use it when shifting the error token to
12720 have an accurate range, equivalent to the one computed by both
12721 yacc.c and lalr1.cc.
12722 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
12723 that column numbers start at column 0, as per GNU Coding
12724 Standards, the others tests, and the doc.
12725 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
12726 Adjust to the above change (first column is 0).
12727 And adjust the location of the "<error>", now covering the whole
12728 line.
12729
12730 2004-10-22 Akim Demaille <akim@epita.fr>
12731 and Paul Eggert <eggert@cs.ucla.edu>
12732
12733 Remove some arbitrary limits on goto numbers and relations.
12734 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
12735 initial values, since they're never used.
12736 (set_goto_map): ngotos is now unsigned, so test for overflow
12737 by seeing whether it wraps around to zero.
12738 * src/lalr.h (goto_number): Now size_t, not short int.
12739 (GOTO_NUMBER_MAXIMUM): Remove.
12740 * src/relation.c (relation_print, traverse, relation_transpose):
12741 Check for END_NODE rather than looking at sign.
12742 * src/relation.h (END_NODE): New macro.
12743 (relation_node): Now size_t, not short int.
12744
12745 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
12746
12747 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
12748 keyword, not an identifier. Problem reported by Baron Schwartz in
12749 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
12750
12751 2004-10-11 Akim Demaille <akim@epita.fr>
12752
12753 * src/symtab.c (symbol_check_alias_consistency): Also check
12754 type names, destructors, and printers.
12755 Reported by Alexandre Duret-Lutz.
12756 Recode the handling of associativity and precedence in terms
12757 of symbol_precedence_set.
12758 Accept no redeclaration at all, not even equal to the previous
12759 value.
12760 (redeclaration): New.
12761 Use it to factor redeclaration complaints.
12762 (symbol_make_alias): Don't set the type of the alias, let
12763 symbol_check_alias_consistency do it as for other features.
12764 * src/symtab.h (symbol): Add new member prec_location, and
12765 type_location.
12766 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
12767 * tests/input.at (Incompatible Aliases): New.
12768
12769 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
12770
12771 .cvsignore fixes to accommodate gnulib changes,
12772 and the practice of naming build directories "_build".
12773 * .cvsignore: Add "_*". Sort.
12774 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
12775 * m4/.cvsignore: Add "*_gl.m4".
12776
12777 2004-10-06 Akim Demaille <akim@epita.fr>
12778
12779 * src/parse-gram.y (add_param): Fix the truncation of trailing
12780 spaces.
12781
12782 2004-10-05 Akim Demaille <akim@epita.fr>
12783
12784 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
12785 whether the reducion was empty or not. This leaves room to
12786 improve the use of YYLLOC_DEFAULT in such a case.
12787 lalr1.cc is still experimental, so changing this is acceptable.
12788 And finally, there are probably not many users who changed the
12789 handling of locations in GLR, so changing is admissible too.
12790
12791 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
12792 empty reduction, set @$ to an empty location ending the previously
12793 stacked symbol.
12794 Adjust uses to make sure the code is triggered on empty
12795 reductions.
12796 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
12797 expected output: empty reductions have empty locations.
12798
12799 2004-09-29 Akim Demaille <akim@epita.fr>
12800
12801 * data/lalr1.cc: Move towards a more standard C++ coding style
12802 for templates: Class < T > -> Class<T>.
12803
12804 2004-09-29 Akim Demaille <akim@epita.fr>
12805
12806 * data/lalr1.cc: Reinstall the former ctor, for sake of
12807 compatibility, but warn it will be removed.
12808 Move towards a more standard C++ coding style (i.e., type *var ->
12809 type* var).
12810
12811 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
12812
12813 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
12814 since it's less likely to work if NULs are involved in the future.
12815
12816 2004-09-27 Akim Demaille <akim@epita.fr>
12817
12818 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
12819
12820 2004-09-27 Akim Demaille <akim@epita.fr>
12821
12822 * data/lalr1.cc (b4_parse_param_decl_1): New.
12823 (b4_parse_param_decl): Use it to have different names between attribute
12824 and argument names.
12825 (b4_cc_constructor_call): Likewise.
12826
12827 2004-09-24 Akim Demaille <akim@epita.fr>
12828
12829 * src/parse-gram.y (add_param): Strip the leading and trailing
12830 blanks from a formal argument declaration.
12831 (YY_LOCATION_PRINT): New.
12832
12833 2004-09-24 Akim Demaille <akim@epita.fr>
12834
12835 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
12836 after the location.
12837
12838 2004-09-24 Akim Demaille <akim@epita.fr>
12839
12840 * doc/bison.texinfo (Table of Symbols): Sort.
12841
12842 2004-09-21 Akim Demaille <akim@epita.fr>
12843
12844 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
12845 the useless parentheses.
12846 Suggested by Paul Eggert.
12847
12848 2004-09-20 Akim Demaille <akim@epita.fr>
12849
12850 Let the initial-action act on the look-ahead, and use it for the
12851 "initial push" (corresponding to an hypothetical beginning-of-file).
12852 And let lalr1.cc honor %initial-action.
12853
12854 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
12855 example.
12856 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
12857 (Parser::Parser): Remove the ctor that used to initialize it.
12858 (Parser::parse): Like in the other skeletons, issue the "starting
12859 parse" message before any action.
12860 Honor %initial-action.
12861 Initialize the stacks with the lookahead.
12862 * data/yacc.c: Let $$ and @$ in %initial-action designate the
12863 look-ahead.
12864 Push them in the stacks.
12865 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
12866
12867 2004-09-20 Akim Demaille <akim@epita.fr>
12868
12869 * doc/bison.texinfo (Initial Action Decl): New.
12870
12871 2004-09-20 Akim Demaille <akim@epita.fr>
12872
12873 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
12874 clearer criterion to define it.
12875 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
12876 When reducing on an empty RHS, use the latest stacked location as
12877 location.
12878 yylloc is not always available.
12879 * data/glr.c: Likewise.
12880 Also, honor initial-actions.
12881
12882 2004-09-20 Akim Demaille <akim@epita.fr>
12883
12884 * data/yacc.c (YY_LOCATION_PRINT): New.
12885 Define when we know YYLTYPE's structure, i.e., when the default
12886 YYLLOC_DEFAULT is used.
12887 * data/c.m4 (b4_yysymprint_generate): Use it.
12888 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
12889 value of the result.
12890 (error_start_): Replace with...
12891 (error_range_): this location array.
12892 This allows to replace code relying on the implementation of
12893 locations by portable code.
12894 * data/yacc.c (yylerrsp): Replace with...
12895 (yyerror_range): this.
12896 Every time a token is popped, update yyerror_range[0], to have an
12897 accurate location for the error token.
12898 * data/glr.c (YY_LOCATION_PRINT): New.
12899 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
12900 deference a pointer.
12901 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
12902 report the location in %printers.
12903
12904 * src/scan-skel.l: Instead of abort, report error messages to ease
12905 understanding skeleton scanning failures.
12906
12907 2004-09-16 Akim Demaille <akim@epita.fr>
12908
12909 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
12910 (iterator, const_iterator): these, to be more in the C++ spirit.
12911 Also, return reverse iterators so that when displaying the stack
12912 we display its bottom first.
12913 (Parser::stack_print_, Parser::reduce_print_): Match the messages
12914 from yacc.c.
12915 We should probably use vector here though.
12916
12917 2004-09-16 Akim Demaille <akim@epita.fr>
12918
12919 Have more complete shift traces.
12920
12921 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
12922 to report Shifts instead of ad hoc YYDPRINTF invocations,
12923 including for the error token.
12924 * data/lalr1.cc (symprint_): Output the location.
12925 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
12926 output the location within the %printer.
12927 Activate GLR tests, at least to make sure they compile properly.
12928 They still don't pass though.
12929 * tests/calc.at: Adjust expect verbose output, since now "Entering
12930 state..." is on a different line than the "Shifting" message.
12931
12932 2004-09-08 Akim Demaille <akim@epita.fr>
12933
12934 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
12935 Bison directive from the Bison file to the invocation of this
12936 macro, so that these directives are passed to
12937 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
12938 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
12939 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
12940 the extra Bison directives instead of the whole series.
12941 Change the grammar so that there are recoverable errors, and
12942 unrecoverable errors. Now we can have the parser give up before
12943 consuming the whole input. As a result we now can observe that
12944 the lookahead is freed when needed.
12945 Change the parser source to parse argv[1] instead of a hard coded
12946 string.
12947 Simplify yylex, and give a value and location to EOF.
12948 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
12949 passed directives already coded in the file.
12950 Add some tests to check the location of "error".
12951 For some tests, the C++ parser is correct, and not yacc.c.
12952 For other tests, they provide different, but unsatisfying, values,
12953 so keep the C++ value so that at least one parser is "correct"
12954 according to the test suite.
12955 (Actions after errors): Remove, this is subsumed by the
12956 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
12957
12958 2004-09-06 Akim Demaille <akim@epita.fr>
12959
12960 * data/lalr1.cc: Adjust the indentation of the labels.
12961 (Parser::pop): New.
12962 Use it.
12963
12964 2004-09-06 Akim Demaille <akim@epita.fr>
12965
12966 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
12967 argument, an informative message.
12968 Call YY_SYMBOL_PRINT.
12969 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
12970 * data/lalr1.cc (destruct_): Likewise.
12971 In addition, no longer depend on b4_yysymprint_generate and
12972 b4_yydestruct_generate to generate these functions, do it "by
12973 hand".
12974
12975 2004-09-03 Akim Demaille <akim@epita.fr>
12976
12977 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
12978 invoked, yydestruct the lookahead.
12979 * tests/calc.at (Calculator $1): Update the expected lengths of
12980 traces: there is an added line for the discarded lookahead.
12981 * doc/bison.texinfo (Destructor Decl): Some rewording.
12982 Define "discarded" symbols.
12983
12984 2004-09-02 Akim Demaille <akim@epita.fr>
12985
12986 * data/lalr1.cc (translate_, destruct_): No reason to be static.
12987
12988 2004-09-02 Akim Demaille <akim@epita.fr>
12989
12990 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
12991 (YYDSYMPRINTF): Rename as...
12992 (YY_SYMBOL_PRINT): this.
12993 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
12994 two.
12995 Use it instead of direct symprint_ calls.
12996 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
12997 one.
12998
12999 2004-09-02 Akim Demaille <akim@epita.fr>
13000
13001 * data/lalr1.cc (b4_yysymprint_generate): New.
13002 (symprint_): New member function, defined when YYDEBUG.
13003 Use it consistently instead of token/nterm debugging output by
13004 hand.
13005 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
13006 %printer calls to use cdebug_ when using lalr1.cc.
13007
13008 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
13009
13010 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
13011 with #ifdef YYDEBUG.
13012
13013 2004-08-26 Akim Demaille <akim@epita.fr>
13014
13015 * doc/bison.texinfo (Implementing Loops): Rename as...
13016 (Implementing Gotos/Loops): this.
13017
13018 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
13019
13020 Adjust to latest gnulib.
13021 * bootstrap (gnulib_modules): Add xalloc-die.
13022 Set LC_ALL=C so that file names sort consistently.
13023 Prefer the gnulib copies of gettext.m4, glibc21.m4,
13024 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
13025 uintmax_t.m4, ulonglong.m4.
13026 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
13027 po.m4 since we are now using _gl.m4 instead.
13028
13029 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
13030
13031 * src/scan-action.l: Remove. Scanning of semantic actions is
13032 handled in scan-gram.l.
13033
13034 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
13035
13036 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
13037
13038 * src/location.h (struct): The file member is a uniqstr.
13039 (equal_boundaries): Use UNIQSTR_EQ for comparison.
13040
13041 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
13042
13043 Fix bug with non-%union parsers that have printers or destructors,
13044 which led to a Bison core dump. Reported by Peter Fales in
13045 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
13046
13047 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
13048 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
13049 not to our own type.
13050 * src/output.c (symbol_destructors_output, symbol_printers_output):
13051 Don't assume %union.
13052 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
13053 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
13054 UNION-FLAG. All callers changed.
13055 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
13056 Use type char, not unsigned int, when declaring an array of char;
13057 this lets us remove a cast.
13058 (Printers and Destructors): Add non-%union test cases.
13059
13060 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
13061
13062 * doc/bison.texinfo: Minor editorial changes, mostly to the new
13063 GLR writeups. E.g., avoid frenchspacing and the future tense,
13064 change "lookahead" to "look-ahead", and change "wrt" to "with
13065 respect to".
13066
13067 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13068
13069 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
13070 New sections, split off from the GLR Parsers section. Put the new
13071 Simple GLR Parser near the start of the GLR section, for clarity.
13072 Rewrite connective text.
13073
13074 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
13075
13076 * doc/bison.texinfo (Simple GLR Parsers): New section.
13077
13078 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
13079
13080 * NEWS, TODO, doc/bison.texinfo:
13081 Use "look-ahead" instead of "lookahead", to be consistent.
13082 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
13083 while we're fixing "look-ahead".
13084 * src/conflicts.c (shift_set): Renamed from shiftset.
13085 (look_ahead_set): Renamed from lookaheadset.
13086 * src/print.c: Likewise.
13087 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
13088 name for "lookahead".
13089 (report_types, usage): Likewise.
13090 * src/getargs.h (report_look_ahead_tokens): Renamed from
13091 report_lookaheads.
13092 * src/lalr.c (compute_look_ahead_tokens): Renamed from
13093 compute_lookaheads.
13094 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
13095 (look_ahead_tokens_print): Renamed from lookaheads_print.
13096 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
13097 state_rule_lookaheads_print.
13098 * src/state.h: Likewise.
13099 (reductions.look_ahead_tokens): Renamed from lookaheads.
13100 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
13101 AT_DATA_LOOKAHEADS_GRAMMAR.
13102
13103 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
13104
13105 * README: Update location of patched M4 distribution.
13106
13107 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
13108
13109 Don't assume the C++ compiler takes the same arguments as the C compiler
13110 (trivial change).
13111 * configure.ac (O0CXXFLAGS): New var.
13112 * tests/atlocal.in (CXXFLAGS): Use it.
13113
13114 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
13115
13116 Fix some "make check" problems with C++ reported by
13117 Albert Chin-A-Young for Tru64 C++ in this thread:
13118 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
13119
13120 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
13121 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13122 Output to a .cc file for C++, not to a .c file.
13123 * tests/calc.at (AT_CHECK_CALC): Likewise.
13124 * tests/regression.at (AT_CHECK_DANCER): Likewise.
13125 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
13126
13127 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
13128
13129 * tests/calc.at, tests/actions.at: Workaround for SGI
13130 C++ compiler. (trivial change)
13131
13132 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
13133
13134 Spent a few hours checking out which prerequisite versions the
13135 current sources actually require. I went all the way back to
13136 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
13137 a seemingly endless set of combinations of versions more recent
13138 than that. The bottom line is that the current sources require
13139 fairly recent versions of the build tools, and it'll be some work
13140 to change this.
13141 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
13142 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
13143 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
13144 Add comments explaining why those particular versions are
13145 currently needed.
13146
13147 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
13148 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
13149 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
13150
13151 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
13152 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
13153
13154 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
13155
13156 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
13157 0.11.5. Suggested by Bruno Haible.
13158 * bootstrap: Remove gettext version checking.
13159
13160 * doc/bison.texinfo (Decl Summary): Also mention that %union
13161 can depend on prerequisite types. Problem reported by Tim
13162 Van Holder.
13163
13164 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
13165
13166 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
13167 * README-alpha: Don't tell people not to package this.
13168
13169 * bootstrap: Don't assume $(...) works; use `...` instead.
13170 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
13171 gettext better.
13172
13173 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
13174 put into the -d output file, and mention what to do if YYSTYPE is
13175 defined as a macro.
13176
13177 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
13178
13179 Undo change made earlier today: it caused autopoint to not bring
13180 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
13181 autopoint's.
13182
13183 * bootstrap: Check that gettext version matches what's in
13184 configure.ac. Warn users to ignore robots.txt ERROR 404.
13185 * bootstrap: Undo today's earlier change (logged below).
13186 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
13187
13188 The gettext version checking is causing more trouble than it's
13189 curing; remove it. Problem reported by Paul Hilfinger.
13190
13191 * bootstrap: Issue a warning that one can expect a message
13192 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
13193 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
13194
13195 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
13196
13197 Ensure that the C++ compiler used for testing actually works on a
13198 simple test program; if not, skip the C++-related tests. Problem
13199 reported by Vin Shelton in:
13200 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
13201
13202 * m4/cxx.m4: New file.
13203 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
13204 * tests/atlocal.in (BISON_CXX_WORKS): Add.
13205 * tests/local.at (AT_COMPILE_CXX): Use it.
13206
13207 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
13208
13209 * data/glr.c (yylloc): Output this macro even if locations are not
13210 being generated, as the GLR parser needs it even in that case.
13211 Problem reported by Troy A. Johnson
13212 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
13213
13214 * configure.ac (AC_INIT): Update to 1.875e.
13215
13216 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
13217
13218 * NEWS: Version 1.875d.
13219 * configure.ac (AC_INIT): Likewise.
13220 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
13221
13222 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
13223 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
13224 lalr1.cc runs afoul of the first, and the last two are no longer
13225 supported by GCC 3.4.0.
13226 * README: Mention GNU m4 1.4 or later; mention m4 patches.
13227 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
13228
13229 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
13230
13231 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
13232 unsigned int, for compatibility with latest gnulib hash module.
13233 * src/state.c (state_hash, state_hasher): Likewise.
13234 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
13235 * src/uniqstr.c (hash_uniqstr): Likewise.
13236
13237 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
13238
13239 * NEWS: Unescaped newlines are no longer allowed in char & strings.
13240
13241 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
13242 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
13243 character and string literals.
13244 (unexpected_end): New function.
13245 (unexpected_eof): Use it.
13246 (unexpected_newline): New function.
13247 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
13248 actions.
13249
13250 * NEWS: Document %expect-rr.
13251
13252 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
13253 Fix typo by replacing $1 with $option.
13254 Remove more 'intl'-related files.
13255 Don't DEFUN AM_INTL_SUBDIR twice.
13256
13257 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
13258 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
13259 strtoul.c.
13260 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
13261 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
13262 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
13263 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
13264 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
13265 * src/.cvsignore: Add *.output.
13266
13267 * src/parse-gram.y: Put copyright notice inside %{ %} so it
13268 gets copied to the output file.
13269
13270 2004-04-28 Paul Eggert <eggert@twinsun.com>
13271
13272 Get files from the gnulib and po repositories, instead of relying
13273 on them being in our CVS. Upgrade to latest versions of gnulib
13274 and Automake.
13275
13276 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
13277 * bootstrap: Bootstrap from gnulib and po repositories.
13278 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
13279 * README-cvs: Document these changes. Remove version numbers from
13280 mentions of build tools, since they change so often. Mention Flex.
13281
13282 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
13283 (gl_USE_SYSTEM_EXTENSIONS): Add.
13284 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
13285 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
13286 does this for us.
13287 (AC_ISC_POSIX): Remove; we no longer support this
13288 ancient OS, as it gets in the way of latest Autoconf & gnulib.
13289 (AC_HEADER_STDC): Remove: we now assume C89 or better.
13290 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
13291 Do not check for C89 headers, except for locale.h which is used
13292 by the Yacc library and must port to K&R hosts.
13293 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
13294 Do not check for C89 functions, except for setlocale which is
13295 used by the Yacc library.
13296 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
13297 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
13298 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
13299 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
13300 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
13301 AM_GNU_GETTEXT): Remove; now done by:
13302 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
13303 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
13304 for us.
13305
13306 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
13307 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
13308 Define to empty, as gnulib.mk will do the rest for us.
13309 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
13310 for us.
13311 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
13312 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
13313
13314 * src/files.c: Include gnulib's xstrndup.h.
13315
13316 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
13317 (REALLOC): Use xnrealloc, for likewise.
13318 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
13319 (strnlen, memrchr): Remove decls; functions no longer used.
13320 Include <stpcpy.h>.
13321
13322 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
13323 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13324 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
13325 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
13326 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
13327 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
13328 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
13329 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
13330 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
13331 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
13332 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
13333 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13334 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
13335 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
13336 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
13337 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
13338 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
13339 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
13340 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
13341 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
13342 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
13343 Remove, as these files are now generated automatically
13344 by bootstrap or automake.
13345
13346 * po/ChangeLog: Remove: all but one entry was a duplicate
13347 of this file, and I moved that 2000-11-02 entry here.
13348
13349 * config/.cvsignore: Add Makefile, depcomp, install-sh.
13350 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
13351 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
13352 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
13353 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
13354 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
13355 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
13356 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
13357 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
13358 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
13359 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
13360 xstrndup.h.
13361 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
13362 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
13363 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
13364 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
13365 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
13366 * src/.cvsignore: Remove *_.c.
13367
13368
13369 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
13370 support it. (The latest stable gzip doesn't.)
13371
13372 2004-04-27 Paul Eggert <eggert@twinsun.com>
13373
13374 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
13375 case, as stos_ is now used by destructors due to the 2004-02-09
13376 change.
13377
13378 Remove more K&R C support.
13379 * lib/libiberty.y (PARAMS): Remove. All uses removed.
13380 * lib/subpipe.c (errno): Remove decl.
13381 Include <stdlib.h> unconditionally.
13382 (EXIT_FAILURE): Remove macro.
13383 * src/complain.c (vfprintf, strerror): Remove.
13384 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
13385 unconditionally.
13386 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
13387 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
13388 (strchr, strspn, memchr): Remove decls.
13389 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
13390 unconditionally. Do not declare perror.
13391 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
13392 unconditionally.
13393
13394 * src/complain.c (_): Remove useless defn, as system.h defines this.
13395
13396 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
13397 with latest obstack.h.
13398 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
13399 to procedure types, as obstack.h now does that for us.
13400 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
13401
13402 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
13403 so that this include file can stand alone.
13404 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
13405 does this now. Include subpipe.h first after config.h, to
13406 test whether it can stand alone.
13407
13408 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
13409 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
13410 unused declaration.
13411
13412 * tests/synclines.at (%union synch line): Put a dummy member in
13413 the union, because empty unions aren't allowed in C. Caught
13414 by GCC 3.4.0.
13415
13416 2004-04-13 Jim Meyering <jim@meyering.net>
13417
13418 * src/conflicts.c (conflicts_print): Correct format string typo:
13419 use `%%' to produce literal `%'. (trivial change)
13420
13421 2004-03-30 Paul Eggert <eggert@twinsun.com>
13422
13423 * src/getargs.c (version): Update copyright year to 2004.
13424
13425 * data/c.m4 (b4_int_type): Use 'short int' rather than
13426 'short', and similarly for 'long', 'unsigned', etc.
13427 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
13428 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
13429 yy_yypstack, yydumpstack): Likewise.
13430 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
13431 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
13432 Likewise.
13433 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
13434 yy_stack_print, yyparse): Likewise.
13435 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
13436 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
13437 * lib/bitset.c (bitset_print): Likewise.
13438 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
13439 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13440 * lib/bitsetv.c (bitsetv_dump): Likewise.
13441 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
13442 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
13443 Likewise.
13444 * src/LR0.c (allocate_itemsets): Likewise.
13445 * src/gram.h (rule_number, rule): Likewise.
13446 * src/lalr.h (goto_number): Likewise.
13447 * src/nullable.c (nullable_compute): Likewise.
13448 * src/output.c (prepare_rules): Likewise.
13449 * src/relation.c (relation_print, relation_digraph): Likewise.
13450 * src/relation.h (relation_node): Likewise.
13451 * src/state.h (state_number, transitions, errs, reductions,
13452 struct state): Likewise.
13453 * src/symtab.h (symbol_number, struct symbol): Likewise.
13454 * src/tables.c (vector_number, tally, action_number,
13455 default_goto, goto_actions): Likewise.
13456 * tests/existing.at (GNU Cim Grammar): Likewise.
13457 * tests/regression.at (Web2c Actions): Likewise.
13458
13459 * src/output.c (muscle_insert_short_int_table): Renamed from
13460 muscle_insert_short_table. All uses changed.
13461
13462 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
13463
13464 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
13465 (declaration): Replace expected_conflicts with expected_sr_conflicts.
13466 Add %expect-rr rule.
13467
13468 * src/scan-gram.l: Recognize %expect-rr.
13469
13470 * src/conflicts.h (expected_sr_conflicts): Rename from
13471 expected_conflicts.
13472 (expected_rr_conflicts): Declare.
13473
13474 * src/conflicts.c (expected_sr_conflicts): Rename from
13475 expected_conflicts.
13476 (expected_rr_conflicts): Define.
13477 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
13478 for GLR parsers.
13479 Use expected_sr_conflicts in place of expected_conflicts.
13480 Warn if expected_rr_conflicts used in non-GLR parser.
13481
13482 * doc/bison.texinfo: Add documentation for %expect-rr.
13483
13484 2004-03-08 Paul Eggert <eggert@gnu.org>
13485
13486 Add support for hex token numbers. Suggested by Odd Arild Olsen in
13487 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
13488
13489 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
13490 in lalr1.cc.
13491 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
13492 * src/scan-gram.l (scan_integer): New function.
13493 ({int}): Use it.
13494 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
13495 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
13496 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
13497 Say "long int", not "long", for uniformity with GNU style.
13498
13499 2004-02-25 Paul Eggert <eggert@twinsun.com>
13500
13501 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
13502 compilers. This fixes a problem with Intel's C++ compiler being
13503 chatty, reported by Guido Trentalancia in
13504 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
13505
13506 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
13507
13508 Support %destructor and merge error locations in lalr1.cc.
13509
13510 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
13511 (Parser::stos_): Define unconditionally.
13512 (Parser::destruct_): New method. Generate its body with
13513 b4_yydestruct_generate.
13514 (Parser::error_start_): New attribute.
13515 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
13516 token which are discarded.
13517 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
13518 error_start_ when erroneous token are discarded.
13519 (Parser::parse) <yyerrlab1>: Compute the location of the error
13520 token so that it covers all the discarded tokens.
13521 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
13522 it can be called with `%skeleton "lalr1.cc"', and do that.
13523
13524 2004-02-02 Paul Eggert <eggert@twinsun.com>
13525
13526 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
13527 $(top_srcdir)/lib and ../lib. This fixes a bug reported
13528 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
13529 There's no need to mention top_builddir since Automake does that
13530 for us.
13531 (INCLUDES): Remove, as Automake says it's obsolescent.
13532 Contents migrated into AM_CPPFLAGS as described above.
13533 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
13534
13535 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13536
13537 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
13538 (yyreportSyntaxError): Handle case where lookahead token is
13539 YYEMPTY.
13540
13541 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13542
13543 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
13544 resulting parsers are compilable with C++.
13545
13546 2003-12-23 Paul Eggert <eggert@twinsun.com>
13547
13548 * config/depcomp, config/install-sh: Sync with Automake 1.8.
13549 * src/output.c (output_skeleton): Rename local var.
13550 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
13551 Bison tokens, as this runs afoul of the 2003-10-07 change that
13552 disallowed NUL bytes in character constants or string literals.
13553
13554 * tests/local.at: Require Autoconf 2.59's Autotest.
13555 * tests/testsuite.at: Don't include local.at, since we now assume
13556 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
13557 including it.
13558 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
13559 multiple inclusion warnings.
13560
13561 2003-12-02 Akim Demaille <akim@epita.fr>
13562
13563 * doc/bison.texinfo (How Can I Reset the Parser): More about start
13564 conditions.
13565 From Bruno Haible.
13566
13567 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
13568
13569 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
13570
13571 2003-10-07 Paul Eggert <eggert@twinsun.com>
13572
13573 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
13574 if testsuite doesn't exist.
13575
13576 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
13577 literals, unfortunately.
13578 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
13579 Complain about NUL bytes in character constants or string literals.
13580
13581 2003-10-05 Paul Eggert <eggert@twinsun.com>
13582
13583 * NEWS: Don't document %no-default-prec, as it's still
13584 too experimental.
13585 * doc/bison.texinfo: Document %no-default-prec only if
13586 the defaultprec flag is set. Normally it's not.
13587
13588 2003-10-04 Paul Eggert <eggert@twinsun.com>
13589
13590 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
13591 non-modifiable lvalue, instead of a modifiable one.
13592 * doc/bison.texinfo (Actions): Document that $$ can
13593 be assigned to. Do not claim that $$ and $N are
13594 array element references: user code should not rely on this.
13595
13596 2003-10-01 Paul Eggert <eggert@twinsun.com>
13597
13598 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
13599 (grammar_declaration): Use it.
13600 * src/scan-gram.l: New token %no-default-prec.
13601 * tests/conflicts.at: Revamp tests to use %no-default-prec.
13602 * NEWS, doc/bison.texinfo: Document the above.
13603
13604 2003-10-01 Akim Demaille <akim@epita.fr>
13605
13606 VCG no longer supports long_straight_phase.
13607
13608 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
13609 * src/print_graph.c (print_graph): Adjust.
13610
13611 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
13612 and Paul Eggert <eggert@twinsun.com>
13613
13614 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
13615 Table of Symbols): Document %default-prec.
13616 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
13617 (grammar_declaration): Set default_prec on %default-prec.
13618 * src/scan-gram.l (%default-prec): New token.
13619 * src/reader.h (default_prec): New flag.
13620 * src/reader.c: Likewise.
13621 (packgram): Handle it.
13622 * tests/conflicts.at (%default-prec without %prec,
13623 %default-prec with %prec, %default-prec 1): New tests.
13624
13625 2003-09-30 Paul Eggert <eggert@twinsun.com>
13626
13627 * tests/testsuite.at: Include local.at, not input.at, fixing
13628 a typo in the 2003-08-25 patch.
13629
13630 2003-08-27 Akim Demaille <akim@epita.fr>
13631
13632 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
13633 GCC warnings.
13634
13635 2003-08-26 Akim Demaille <akim@epita.fr>
13636
13637 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
13638 "<\#" to avoid magic from Gnus when posting parts of this script.
13639
13640 2003-08-26 Akim Demaille <akim@epita.fr>
13641
13642 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
13643 (Parser::parse): here.
13644 Adjust: nerrs and errstatus is now replaced by...
13645 (Parser::nerrs_, Parser::errstatus_): New.
13646
13647 2003-08-25 Akim Demaille <akim@epita.fr>
13648
13649 * config/announce-gen, Makefile.cfg: New.
13650 * Makefile.am: Adjust.
13651 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
13652 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
13653
13654 2003-08-25 Akim Demaille <akim@epita.fr>
13655
13656 When reducing initial empty rules, Bison parser read an initial
13657 location that is not defined. This results in garbage, and that
13658 affects Bison's own parser. Therefore we need (i) to extend Bison
13659 to support a means to initialize this location, and (ii) to use
13660 this CVS Bison to fix CVS Bison's parser.
13661
13662 * src/reader.h, reader.c (epilogue_augment): Remove, replace
13663 with...
13664 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
13665 * src/parse-gram.y: Adjust.
13666 (%initial-action): New.
13667 (%error-verbose): Since we require CVS Bison, there is no reason
13668 not to use it.
13669 * src/scan-gram.l: Adjust.
13670 * src/Makefile.am (YACC): New, to make sure we use our own parser.
13671 * data/yacc.c (yyparse): Use b4_initial_action.
13672
13673 2003-08-25 Akim Demaille <akim@epita.fr>
13674
13675 * doc/bison.texinfo: Don't promote stdout for error messages.
13676
13677 2003-08-25 Akim Demaille <akim@epita.fr>
13678
13679 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
13680 From Alexandre Duret-Lutz.
13681
13682 2003-08-25 Akim Demaille <akim@epita.fr>
13683
13684 Version 1.875c.
13685
13686 2003-08-25 Akim Demaille <akim@epita.fr>
13687
13688 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
13689 Use them.
13690
13691 2003-08-25 Akim Demaille <akim@epita.fr>
13692
13693 * data/lalr1.cc (Parser::reduce_print_): New.
13694 Use it.
13695
13696 2003-08-25 Akim Demaille <akim@epita.fr>
13697
13698 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
13699 error recovery loops. This patch is based on
13700 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
13701 Also, augment the similarity between lalr1.cc and yacc.c.
13702 Note: the locations of error recovery rules are not correct yet.
13703
13704 * data/lalr1.cc: Comment changes to augment the similarity between
13705 lalr1.cc and yacc.c.
13706 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
13707 (yyerrlab1): Remove, but where it used to be (now the bottom part of
13708 yyerrlab), when hitting EOF, pop the whole stack here instead of
13709 merely falling thru the default error handling mechanism.
13710 (yyerrorlab): New label, with the old contents of YYERROR,
13711 plus the following change: pop the stack of rhs corresponding
13712 to the production that invoked YYERROR. That is how Yacc
13713 behaves (required by POSIX).
13714 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
13715 fail.
13716
13717 2003-08-25 Akim Demaille <akim@epita.fr>
13718
13719 Tune local.at so that people can "autom4te -l autotest calc.at -o
13720 calc" for instance, to extract a sub test suite.
13721
13722 * tests/testsuite.at: Move the initialization, Autotest version
13723 requirement, and AT_TESTED invocation into...
13724 * tests/local.at: here.
13725 * tests/testsuite.at: Include it for compatibility with Autoconf
13726 2.57.
13727 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
13728 be ignore.
13729
13730 2003-08-04 Paul Eggert <eggert@twinsun.com>
13731
13732 Rework code slightly to avoid gcc -Wtraditional warnings.
13733 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
13734 The returned value is now stored in *YY0. All callers changed.
13735 * src/output.c (merge_output): Adjust to the above change.
13736
13737 2003-07-26 Paul Eggert <eggert@twinsun.com>
13738
13739 * data/glr.c (YYASSERT): New macro.
13740 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
13741 yyresolveStates, yyprocessOneStack):
13742 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
13743 Derived from a suggestion by Frank Heckenbach.
13744
13745 2003-07-25 Paul Eggert <eggert@twinsun.com>
13746
13747 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
13748 for portability to K&R C (after ansi2knr, presumably). See
13749 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
13750 by Frank Heckenbach, though I have omitted the structure-initialization
13751 part of his glr-knr.diff patch since I recall that the Portable
13752 C Compiler didn't require that change.
13753
13754 Let the user specify how to allocate and free memory.
13755 Derived from a suggestion by Frank Heckenbach in
13756 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
13757 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
13758 All uses of free, malloc, realloc changed to use these macros,
13759 and unnecessary casts removed.
13760 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
13761
13762 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
13763
13764 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
13765 use s.empty() rather than s == "" to test for empty string; see
13766 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
13767 (trivial change)
13768
13769 2003-06-25 Akim Demaille <akim@epita.fr>
13770
13771 * config/depcomp, config/install-sh: Update from masters.
13772
13773 2003-06-20 Paul Eggert <eggert@twinsun.com>
13774
13775 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
13776 and return properly parenthesized result.
13777 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
13778 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
13779 Remove unnecessary parentheses from uses.
13780 * doc/bison.texinfo (Location Default Action): Describe the
13781 conventions for parentheses.
13782
13783 2003-06-19 Paul Eggert <eggert@twinsun.com>
13784
13785 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
13786 yyreportTree): Do not assume that size_t is the same width as int,
13787 when printing sizes. Print sizes using an unsigned format.
13788 Problem reported by Frank Heckenbach in
13789 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
13790
13791 Port to Forte Developer 7 C compiler.
13792 * data/glr.c (struct YYLTYPE): If locations are not being used,
13793 declare a single dummy member, as empty structs do not conform
13794 to the C standard.
13795 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
13796 the Forte Developer 7 C compiler complains that end-of-loop
13797 code is not reached.
13798
13799 2003-06-17 Paul Eggert <eggert@twinsun.com>
13800
13801 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
13802 avoid warnings from picky compilers about redefinition of PARAMS.
13803
13804 2003-06-17 Paul Eggert <eggert@twinsun.com>
13805
13806 Version 1.875b.
13807
13808 * NEWS: Document 1.875b.
13809
13810 * lib/bbitset.h: Do not include config.h; that's the includer's job.
13811 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
13812 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
13813 Don't use 'index' in comments, as it's a builtin fn on some hosts.
13814 * lib/bitset_stats.c: Include gettext.h unconditionally, as
13815 per recent gettext manual's suggestion.
13816 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
13817 Use prototypes, not old-style definitions.
13818 * lib/lbitset.c (lbitset_unused_clear): Likewise.
13819 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
13820 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
13821 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
13822 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
13823 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
13824 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
13825 vbitset_or_and_cmp, vbitset_copy): Likewise.
13826
13827 * lib/libiberty.h: Do not include config.h; that's the includer's job.
13828 Do not include <stdlib.h>.
13829 (PARAMS): Define unconditionally for C89.
13830 (ATTRIBUTE_NORETURN): Remove.
13831 (ATTRIBUTE_UNUSED): Define unconditionally.
13832
13833 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
13834 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
13835 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
13836 * lib/vbitset.c, lib/vbitset.h: New files.
13837 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13838 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
13839 from libbitset.
13840
13841 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
13842 `How Can I Reset @code{yyparse}', since texinfo does not allow
13843 arbitrary @ in node names.
13844
13845 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
13846 shouldn't be needed according to the gettext 0.12.1 documentation
13847 but which seem to be needed anyway: codeset.m4 glibc21.m4
13848 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
13849 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
13850 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
13851
13852 * lib/.cvsignore: Add stdbool.h.
13853 * m4/.cvsignore: Add nls.m4, po.m4.
13854
13855 Upgrade to CVS gnulib.
13856 * stdbool_.h: File renamed from stdbool.h.in.
13857 * configure.ac (AM_STDBOOL_H): Invoke this instead of
13858 AC_HEADER_STDBOOL.
13859 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
13860 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
13861 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
13862 (MOSTLYCLEANFILES): New var.
13863 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
13864 (stdbool.h): New rule.
13865 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
13866 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
13867 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
13868 m4/quote.m4: Upgrade to today's gnulib.
13869
13870 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
13871 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
13872 the tests right now.
13873 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
13874 yyerror are declared before use; C99 requires this.
13875
13876 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13877
13878 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
13879 first.
13880 (yyrecoverSyntaxError): Correct the logic for setting and testing
13881 yyerrState.
13882 Correct comment on handling EOF.
13883 Allow states with only a default reduction, rather than failing
13884 (I can't quite reconstruct why these were not allowed before).
13885
13886 Fixes to avoid problem that $-N rules in GLR parsers can cause
13887 buffer overruns, corrupting state.
13888
13889 * src/output.c (prepare_rules): Output max_left_semantic_context
13890 definition.
13891 * src/reader.h (max_left_semantic_context): New variable declaration.
13892 * src/scan-gram.l (max_left_semantic_context): Define.
13893 (handle_action_dollar): Update max_left_semantic_context.
13894 * data/glr.c (YYMAXLEFT): New definition.
13895 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
13896 (yyresolveAction): Ditto.
13897
13898 Fixes to problems with location handling in GLR parsers reported by
13899 Frank Heckenbach (2003/06/05).
13900
13901 * data/glr.c (YYLTYPE): Make trivial if locations not used.
13902 (YYRHSLOC): Add parentheses, and define only if locations used.
13903 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
13904 locations not used.
13905 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
13906 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
13907
13908 * tests/cxx-type.at: Exercise location information; update tests
13909 to differentiate output with and without locations.
13910 Remove forward declarations of yylex and yyerror---caused errors
13911 because default YYLTYPE not yet defined.
13912 Change semantic actions to compute strings, rather than printing
13913 them directly (to test proper passing of semantics values). Change
13914 output to prefix notation and update test data and expected results.
13915 (yylex): Track locations.
13916 (stmtMerge): Return value rather than printing, and include arguments
13917 in value.
13918
13919 2003-06-03 Paul Eggert <eggert@twinsun.com>
13920
13921 Avoid warnings generated by GCC 2.95.4 when Bison is
13922 configured with --enable-gcc-warnings.
13923 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
13924 yy::]b4_parser_class_name[::translate_,
13925 yy::Stack::operator[] (unsigned),
13926 yy::Stack::operator[] (unsigned) const,
13927 yy::Slice::operator[] (unsigned),
13928 yy::Slice::operator[] (unsigned) const):
13929 Rename local vars to avoid warnings.
13930 * tests/glr-regression.at (Improper handling of embedded actions
13931 and $-N in GLR parsers): Remove unused local variable from yylex.
13932 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
13933 (void) as arg when not pure, since we now assume C89 when building
13934 Bison. Pacify GCC by using parameter.
13935
13936 2003-06-02 Paul Eggert <eggert@twinsun.com>
13937
13938 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
13939 yy::Location::lines, yy::Location::columns): Rename arguments
13940 to avoid shadowing; this removes a warning generated by GCC 3.3.
13941
13942 2003-06-01 Paul Eggert <eggert@twinsun.com>
13943
13944 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
13945 to g++, as GCC 3.3 complains if you do it.
13946 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
13947 everything that WARNING_CFLAGS has, except omit warnings
13948 not suitable for C++.
13949 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
13950 * tests/atlocal.in (CXXFLAGS): New var.
13951 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
13952
13953 Fix a GLR parser bug I reported in February; see
13954 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
13955 The problem was that GLR parsers did not conform to the C standard,
13956 because actions like { $1 = $2 + $3; } expanded to expressions
13957 that invoked YYFILL in separate subexpressions, and YYFILL assigned
13958 to a local variable. The C standard says that expressions
13959 like (var = f ()) + (var = f ()) have undefined behavior.
13960 Another problem was that GCC sometimes issues warnings that
13961 yyfill and its parameters are unused.
13962
13963 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
13964 as possibly unused.
13965 (yyfill): New function.
13966 (YYFILL): Use it.
13967 (yyuserAction): Change type of yynormal to bool, so that it matches
13968 the new yyfill signature. Mark it as possibly unused.
13969
13970
13971 Follow up on a bug I reported in February, where a Bison-generated
13972 parser can loop. Provide a test case and a fix for yacc.c. I
13973 don't have a fix for lalr1.cc or for glr.c, unfortunately.
13974 The original bug report is in:
13975 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
13976
13977 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
13978 macro's size was becoming unwieldy.
13979 (yyerrlab): Do not discard an empty lookahead symbol, as this
13980 might destroy garbage.
13981 (yyerrorlab): New label, with the old contents of YYERROR,
13982 plus the following change: pop the stack of rhs corresponding
13983 to the production that invoked YYERROR. That is how Yacc
13984 behaves, and POSIX requires this behavior.
13985 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
13986 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
13987 Define 'alarm' to do nothing if unistd.h is not available.
13988 Add a new rule "exp: '-' error;" to test the above change to
13989 data/yacc.c. Use 'alarm' to abort any test taking longer than
13990 10 seconds, as it's probably looping.
13991 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
13992 Also, the new yacc.c generates two fewer diagnostics for an
13993 existing test.
13994
13995 2003-05-24 Paul Eggert <eggert@twinsun.com>
13996
13997 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
13998 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
13999 This fixes a problem reported by John Bowman when the Compaq/HP
14000 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
14001 -ansi -Wall -gall).
14002 * data/yacc.c (union yyalloc): Likewise.
14003 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
14004
14005 Switch from 'int' to 'bool' where that makes sense.
14006
14007 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
14008 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
14009 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
14010 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
14011 Return or accept bool, not int. All callers changed.
14012 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
14013 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
14014 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
14015 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
14016 bitset_or_and_cmp_): Likewise.
14017 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
14018 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
14019 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
14020 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
14021 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
14022 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
14023 bitset_stats_or_and_cmp): Likewise.
14024 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
14025 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
14026 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
14027 ebitset_xor_cmp): Likewise.
14028 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
14029 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
14030 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
14031 lbitset_xor_cmp): Likewise.
14032 * lib/bbitset.h: Include <stdbool.h>.
14033 (struct bitset_vtable): The following members now return bool, not
14034 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
14035 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
14036 or_and_cmp).
14037 * src/conflicts.c (count_rr_conflicts): Likewise.
14038 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
14039 All uses changed.
14040 * lib/ebitset.c (ebitset_obstack_init): Likewise.
14041 * lib/lbitset.c (lbitset_obstack_init): Likewise.
14042 * src/getargs.c (debug_flag, defines_flag, locations_flag,
14043 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
14044 graph_flag): Likewise.
14045 * src/getargs.h (debug_flag, defines_flag, locations_flag,
14046 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
14047 graph_flag): Likewise.
14048 * src/output.c (error_verbose): Likewise.
14049 * src/output.h (error_verbose): Likewise.
14050 * src/reader.c (start_flag, typed): Likewise.
14051 * src/reader.h (typed): Likewise.
14052 * src/getargs.c (LOCATIONS_OPTION): New constant.
14053 (long_options, getargs): Use it.
14054 * src/lalr.c (build_relations): Use bool, not int.
14055 * src/nullable.c (nullable_compute): Likewise.
14056 * src/print.c (print_reductions): Likewise.
14057 * src/tables.c (action_row, pack_vector): Likewise.
14058 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
14059 * src/output.c (prepare): Use it.
14060 * src/output.c (token_definitions_output,
14061 symbol_destructors_output, symbol_destructors_output): Use string,
14062 not boolean integer, to keep track of whether to output separator.
14063 * src/print_graph.c (print_core): Likewise.
14064 * src/state.c (state_rule_lookaheads_print): Likewise.
14065
14066 * config/install-sh: Sync from automake 1.7.5.
14067
14068 2003-05-14 Paul Eggert <eggert@twinsun.com>
14069
14070 * src/parse-gram.y (rules_or_grammar_declaration): Require a
14071 semicolon after a grammar declaration, in the interest of possible
14072 future changes to the Bison input language.
14073 Do not allow a stray semicolon at the start of the grammar.
14074 (rhses.1): Allow one or more semicolons after any rule, including
14075 just before "|" as required by POSIX.
14076 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
14077 grammar.
14078
14079 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
14080
14081 %parse-param support for lalr1.cc.
14082
14083 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
14084 b4_cc_constructor_calls, b4_cc_constructor_call,
14085 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
14086 definitions.
14087 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
14088 parse-param arguments.
14089 (yy::b4_parser_class_name): Declare instance variables to
14090 hold parse-param arguments.
14091 * tests/calc.at: s/value/semantic_value/ because value clashes
14092 with a member of yy::b4_parser_class_name. Adjust C++ code
14093 to handle %parse-param. Enable %parse-param test in C++.
14094
14095 2003-05-12 Paul Eggert <eggert@twinsun.com>
14096
14097 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
14098 English a bit. Fix fclose typo. Change "const char" to "char
14099 const", and use ANSI C rather than K&R for "main". Suggest
14100 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
14101 and suggest yy_switch_to_buffer.
14102
14103 2003-05-05 Paul Eggert <eggert@twinsun.com>
14104
14105 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
14106 C89. This avoids a diagnostic on compilers that define __STDC__
14107 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
14108 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
14109
14110 2003-05-03 Paul Eggert <eggert@twinsun.com>
14111
14112 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
14113 Do not overrun array bounds.
14114 This should fix a bug reported today by Olatunji Oluwabukunmi in
14115 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
14116
14117 2003-04-29 Akim Demaille <akim@epita.fr>
14118
14119 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
14120 * src/getargs.c, src/getargs.h: here, as bool, not int.
14121 (nondeterministic_parser): New.
14122 * src/parse-gram.y, src/scan-gram.l: Support
14123 %nondeterministic-parser.
14124 * src/output.c (prepare): Use nondeterministic_parser instead
14125 of glr_parser where appropriate.
14126 * src/tables.c (conflict_row, action_row, save_row)
14127 (token_actions, token_actions, pack_vector): Ditto.
14128
14129 2003-04-29 Akim Demaille <akim@epita.fr>
14130
14131 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
14132
14133 2003-04-29 Akim Demaille <akim@epita.fr>
14134
14135 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
14136 with %pure-parser and %locations to exercise the patch from Yakov
14137 Markovitch below.
14138
14139 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
14140
14141 * data/yacc.c: (b4_lex_param): Corrected for the case where
14142 %lex-param is provided and %pure-parser isn't.
14143
14144 2003-04-27 Paul Eggert <eggert@twinsun.com>
14145
14146 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
14147 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
14148 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
14149 if it is not defined.
14150 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
14151
14152 2003-04-26 Paul Eggert <eggert@twinsun.com>
14153
14154 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
14155 Declare to be of type suitable for the ninf value itself, not of
14156 type suitable for the corresponding table, since the latter might
14157 be unsigned but the ninf value might be negative. This fixes a
14158 bug reported by Alexandre Duret-Lutz in
14159 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
14160
14161 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
14162 invokes it. We shouldn't invoke it twice because it will attempt
14163 to put error.o in the archive twice. This fixes a glitch reported
14164 by Martin Mokrejs in
14165 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
14166
14167 2003-04-21 Paul Eggert <eggert@twinsun.com>
14168
14169 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
14170 to gnulib.
14171
14172 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
14173
14174 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
14175 Fix obvious typo that results in uncompilable GLR parsers
14176 when both %pure-parser and %locations are used. (trivial change)
14177
14178 2003-04-17 Paul Eggert <eggert@twinsun.com>
14179
14180 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
14181 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
14182 Do not insert the expected token via unput, as this runs afoul
14183 of a POSIX-compatibility bug in flex 2.5.31.
14184 All uses changed to BEGIN the parent state,
14185 since we no longer insert the expected token via unput.
14186 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
14187 that is no longer emitted after the above change.
14188
14189 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
14190 the first one. This change is from Paul Hilfinger, and it fixes
14191 regression reported by Werner Lemberg in
14192 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
14193
14194 (resolve_sr_conflict): Don't invoke state_errs_set
14195 unless one or more tokens have been explicitly made errors.
14196 Otherwise, the above change causes Bison to abort.
14197
14198 * tests/existing.at (GNU pic Grammar): New test case, taken from
14199 Lemberg's email.
14200
14201 2003-03-31 Akim Demaille <akim@epita.fr>
14202
14203 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
14204
14205 2003-03-31 Akim Demaille <akim@epita.fr>
14206
14207 * src/output.c (prepare_symbols): Avoid trailing spaces in the
14208 output.
14209
14210 2003-03-31 Akim Demaille <akim@epita.fr>
14211
14212 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
14213 From Paul Hilfinger.
14214
14215 2003-03-29 Akim Demaille <akim@epita.fr>
14216
14217 * m4/error.m4: Do not put under dynamic conditions some code which
14218 expansion is under static control.
14219
14220 2003-03-29 Akim Demaille <akim@epita.fr>
14221
14222 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
14223
14224 2003-03-29 Akim Demaille <akim@epita.fr>
14225
14226 * doc/bison.texinfo (Strings are Destroyed): New.
14227
14228 2003-03-13 Paul Eggert <eggert@twinsun.com>
14229
14230 * .cvsignore: Add configure.lineno.
14231 * src/.cvsignore: Add yacc.
14232 * tests/.cvsignore: Add testsuite.log.
14233 * doc/fdl.texi: Sync with latest FSF version.
14234
14235 2003-03-12 Paul Eggert <eggert@twinsun.com>
14236
14237 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
14238 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
14239 cursor, instead of leaving it undefined. This fixes a bug
14240 reported by Tim Van Holder in
14241 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
14242 * tests/input.at (Torturing the Scanner): Test the scanner on
14243 an empty input file, which was Tim Van Holder's test case.
14244
14245 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
14246 <sys/resource.h> can be included, include sys/time.h and
14247 sys/times.h first, if available. This works around the SunOS
14248 4.1.4 porting bug reported by Bruce Becker in
14249 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
14250
14251 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
14252 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
14253 AC_HEADER_SYS_WAIT.
14254
14255 Merge changes from gnulib. This was prompted because the CVS
14256 snapshot didn't build on Solaris 7 due to strnlen problems.
14257
14258 These changes need to be merged back into gnulib:
14259 * lib/hash.c: Include <stdbool.h> unconditionally.
14260 * m4/onceonly.m4 (m4_quote): New macro.
14261 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
14262 Quote AC_FOREACH variable-expansions properly.
14263 The 2003-01-03 obstack.h change also needs merging.
14264 {end of changes requiring merging}
14265
14266 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
14267 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
14268 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
14269 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
14270 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
14271 New files, imported from gnulib.
14272 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
14273 above.
14274
14275 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
14276 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
14277 gnulib sources.
14278
14279 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
14280 Add.
14281 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
14282 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
14283 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
14284 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
14285 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
14286 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
14287 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
14288 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
14289 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
14290 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
14291 (jm_PREREQ_ARGMATCH): Remove.
14292 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
14293 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
14294
14295 * src/system.h: Include <stdbool.h> unconditionally.
14296
14297 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
14298 assuming at least C89 in the bitset code for some time now.
14299
14300 2003-03-03 Akim Demaille <akim@epita.fr>
14301
14302 * ro.po: New.
14303
14304 2003-03-02 Akim Demaille <akim@epita.fr>
14305
14306 * doc/bison.texinfo (Table of Symbols): Reactivate the
14307 documentation for %lex-param, and %parse-param.
14308
14309 2003-03-02 Akim Demaille <akim@epita.fr>
14310
14311 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
14312 generate verbose error messages.
14313 Use the number of tokens as an upper bound in yytname, as it
14314 cannot be a non terminal.
14315
14316 2003-03-02 Akim Demaille <akim@epita.fr>
14317
14318 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
14319 message.
14320
14321 2003-03-02 Akim Demaille <akim@epita.fr>
14322
14323 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
14324 Use them to exercise yycheck overrun.
14325 Based on Andrew Suffield's grammar.
14326
14327 2003-03-02 Akim Demaille <akim@epita.fr>
14328
14329 Create tests/local.at for Bison generic testing macros.
14330
14331 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
14332 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
14333 This new file.
14334 * tests/calc.at (AT_CHECK_CALC): Adjust.
14335 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
14336 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
14337 * tests/local.at: here.
14338 (AT_COMPILE_CXX): Tags the tests using it as c++.
14339 Ignore the test if CXX is not functional.
14340
14341 2003-03-01 Paul Eggert <eggert@twinsun.com>
14342
14343 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
14344 not loc->end, since loc->end might contain garbage and this leads
14345 to undefined behavior on some platforms.
14346 (id_loc, token_start): Use (IF_LINTed) initial values that do not
14347 depend on *loc, so that the reader doesn't give the the false
14348 impression that *loc is initialized.
14349 (<INITIAL>"%%"): Do not bother setting code_start, since its value
14350 does not survive the return.
14351
14352 2003-03-01 Akim Demaille <akim@epita.fr>
14353
14354 * src/scan-gram.l (code_start): Always initialize it when entering
14355 into yylex, as SC_EPILOGUE is activated *before* the corresponding
14356 yylex invocation. An alternative would be making it static, but
14357 then it starts with the second %%'s beginning, instead of its end.
14358
14359 2003-02-28 Paul Eggert <eggert@twinsun.com>
14360
14361 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
14362 around a UnixWare 7.1.1 porting bug reported by John Hughes in
14363 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
14364
14365 2003-02-26 Paul Eggert <eggert@twinsun.com>
14366
14367 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
14368 Remove Sequent/Pyramid discussion (nobody uses them any more).
14369 Merge VMS and MS-DOS discussion; these ports may well be dead
14370 but let's keep mentioning them for now. Put <> around email
14371 addresses. Add copyright notice.
14372
14373 2003-02-24 Paul Eggert <eggert@twinsun.com>
14374
14375 * data/glr.c (yy_reduce_print): yylineno -> yylno,
14376 to avoid collision with flex use of yylineno.
14377 Problem reported by Bruce Lilly in
14378 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
14379 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
14380 * data/yacc.c (yy_reduce_print): Likewise.
14381
14382 * config/depcomp: Sync with Automake 1.7.3.
14383
14384 2003-02-21 Akim Demaille <akim@epita.fr>
14385
14386 * data/lalr1.cc: Use temporary variables instead of casts to
14387 change integer types.
14388 Suggested by Paul Eggert.
14389
14390 2003-02-21 Akim Demaille <akim@epita.fr>
14391
14392 * doc/bison.texinfo: Use "location" consistently to refer to @n,
14393 to avoid confusions with lalr1.cc's notion of Position.
14394 Suggested by Paul Eggert.
14395
14396 2003-02-20 Akim Demaille <akim@epita.fr>
14397
14398 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
14399 before initial_columns.
14400 (location.hh): Use consistent variable names when defining the
14401 operator<<.
14402 Use "last" so that we subtract from Positions, not from unsigned.
14403
14404 2003-02-20 Akim Demaille <akim@epita.fr>
14405
14406 * data/lalr1.cc (position.hh): New subfile, including the extended
14407 and Doxygen'ed documentation of class Position.
14408 (location.hh): Use it.
14409 Document a` la Doxygen.
14410 With the help of Benoit Perrot.
14411
14412 2003-02-20 Akim Demaille <akim@epita.fr>
14413
14414 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
14415 AT_YACC_IF.
14416 Redefine AT_YYERROR_SEES_LOC_IF using it.
14417 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
14418 not defined.
14419 Don't use the location in yy::Parser::error_ and
14420 yy::Parser::print_ when not %locations.
14421 Activate more lalr1.cc tests.
14422
14423 2003-02-19 Akim Demaille <akim@epita.fr>
14424
14425 * data/lalr1.cc: When displaying a line number, be sure to make it
14426 an int.
14427
14428 2003-02-19 Akim Demaille <akim@epita.fr>
14429
14430 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
14431 Remove, useless.
14432 (YYABORT, YYACCEPT, YYERROR): New.
14433 * tests/calc.at: Renable the lalr1.cc test.
14434
14435 2003-02-19 Akim Demaille <akim@epita.fr>
14436
14437 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
14438 error recovery, mixing with/without pops and discarding of the
14439 lookahead.
14440 Exercise YYERROR.
14441 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
14442
14443 2003-02-17 Paul Eggert <eggert@twinsun.com>
14444
14445 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
14446 * tests/testsuite.at (AT_COMPILE): Use them.
14447 This fixes the testsuite problem reported by Robert Lentz in
14448 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
14449
14450 2003-02-12 Paul Eggert <eggert@twinsun.com>
14451
14452 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
14453 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
14454 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
14455 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
14456 Check for malloc failure, for consistency with yacc.c.
14457 (yytname_size): Remove, for consistency with yacc.c.
14458
14459 The bug still remains in data/lalr1.cc, as I didn't have time
14460 to fix it there.
14461
14462 2003-02-06 Akim Demaille <akim@epita.fr>
14463
14464 * configure.ac (GXX): Rename as...
14465 (CXX): this, to keep the original Autoconf semantics.
14466 Require 2.57.
14467 * data/lalr1.cc: Fix b4_copyright invocations.
14468 If YYDEBUG is not defined, don't depend upon name_ being defined.
14469 (location.hh): Include string and iostream.
14470 (Position::filename): New member.
14471 (Position::Position ()): New.
14472 (operator<< (Position)): New.
14473 (operator- (Position, int)): New.
14474 (Location::first, Location::last): Rename as...
14475 (Location::begin, Location::end): these, to mock the conventional
14476 iterator names.
14477 (operator<< (Location)): New.
14478 * tests/atlocal.in (CXX): New.
14479 * tests/testsuite.at (AT_COMPILE_CXX): New.
14480 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
14481 locations in a more synthetic way.
14482 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
14483 lalr1.cc is used.
14484 Adjust the C locations to match those from Emacs: first column is
14485 column 0.
14486 Change all the expected results.
14487 Conform to the GCS: simplify the locations when applicable.
14488 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
14489 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
14490 these CPP macros with the m4 macros new defined by...
14491 (AT_CHECK_PUSHDEFS): this, i.e.:
14492 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
14493 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
14494 New macros.
14495 (AT_CHECK_POPDEFS): Undefine them.
14496 (AT_CHECK_CALC_LALR1_CC): New.
14497 Use it for the first lalr1.cc test.
14498
14499 2003-02-04 Akim Demaille <akim@epita.fr>
14500
14501 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
14502 Location as is defined.
14503
14504 2003-02-04 Akim Demaille <akim@epita.fr>
14505
14506 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
14507 name_ being defined.
14508
14509 2003-02-03 Paul Eggert <eggert@twinsun.com>
14510
14511 * src/gram.h (start_symbol): Remove unused decl.
14512
14513 Use more-consistent naming conventions for local vars.
14514
14515 * src/derives.c (derives_compute): Change type of local var from
14516 int to rule_number.
14517 * src/gram.c (grammar_rules_partial_print): Likewise.
14518 * src/print.c (print_core): Likewise.
14519 * src/reduce.c (reduce_grammar_tables): Likewise.
14520
14521 * src/gram.c (grammar_dump): Change name of item_number *
14522 local var from r to rp.
14523 * src/nullable.c (nullable_compute): Likewise.
14524
14525 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
14526
14527 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
14528 for symbol or symbol_number var.
14529 * src/reader.c (grammar_start_symbol_set): Likewise.
14530 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
14531 Likewise.
14532 * src/state.c (transitions_to): Likewise.
14533 * src/state.h: Likewise.
14534 * src/tables.c (symbol_number_to_vector_number): Likewise.
14535
14536 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
14537 char * var.
14538
14539 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
14540 var.
14541
14542 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
14543 var.
14544
14545 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
14546 Use str, not s, for char * var. Use ch, not c, for character var.
14547 Use size for size var.
14548
14549 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
14550 char * var.
14551 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
14552 uniqstr var.
14553 * src/uniqstr.h: Likewise.
14554
14555 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14556 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14557 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
14558 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
14559 param to have same name as that of enum, so that we don't use
14560 "s" to stand for a non-state.
14561
14562 2003-02-02 Akim Demaille <akim@epita.fr>
14563
14564 * src/scan-skel.l: Scan more than one inert character per yylex
14565 invocation.
14566
14567 2003-02-01 Paul Eggert <eggert@twinsun.com>
14568
14569 Version 1.875a.
14570
14571 * po/LINGUAS: Add ms.
14572
14573 2003-01-30 Akim Demaille <akim@epita.fr>
14574
14575 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
14576
14577 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14578
14579 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
14580 of $1.
14581
14582 Changes in response to error report by S. Eken: GLR mode does not
14583 handle negative $ indices or $ indices in embedded rules correctly.
14584 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
14585
14586 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
14587 (b4_rhs_location): Ditto.
14588 (yyfill): New function to copy from stack tree into array
14589 incrementally.
14590 (yyuserAction): Modify to allow incremental move of semantic values
14591 to rhs array when in GLR mode.
14592 Define YYFILL to use in user-defined actions to fill semantic array
14593 as needed.
14594 Remove dummy use of yystack, as there is now a guaranteed use.
14595 (yydoAction): Modify to allow incremental move of semantic values
14596 to rhs array when in GLR mode.
14597 (yyresolveAction): Ditto.
14598 (yyglrShiftDefer): Update comment.
14599 (yyresolveStates): Use X == NULL for pointers, not !X.
14600 (yyglrReduce): Ditto.
14601 (yydoAction): Ditto
14602
14603 * tests/glr-regr1.at: Rename to ...
14604 * tests/glr-regression.at: Add new regression test for the problems
14605 described above (adapted from S. Eken).
14606 Update copyright notice.
14607 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
14608 * tests/Makefile.am: Ditto.
14609
14610 2003-01-28 Paul Eggert <eggert@twinsun.com>
14611
14612 * data/lalr1.cc: Do not use @output_header_name@ unless
14613 b4_defines_flag is set. This fixes two bugs reported by
14614 Tim Van Holder in
14615 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
14616 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
14617
14618 2003-01-21 Paul Eggert <eggert@twinsun.com>
14619
14620 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
14621 we don't need to worry about yyerrlab1 being reported as an
14622 "unused label" by non-GCC C compilers. The downside is that if
14623 locations are used then a couple of statements are duplicated each
14624 time YYERROR is invoked, but the upside is that the warnings
14625 should vanish.
14626 (yyerrlab1): Move code to YERROR.
14627 (yyerrlab2): Remove. Change uses back to yyerrlab1.
14628 This reverts some of the 2002-12-27 change.
14629
14630 2003-01-17 Paul Eggert <eggert@twinsun.com>
14631
14632 * src/output.c (symbol_printers_output): Fix typo that led
14633 to core dump. Problem reported by Antonio Rus in
14634 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
14635
14636 2003-01-13 Akim Demaille <akim@epita.fr>,
14637 Quoc Peyrot <chojin@lrde.epita.fr>,
14638 Robert Anisko <anisko_r@lrde.epita.fr>
14639
14640 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
14641 when the stacks contain one element, as the loop would otherwise
14642 free the last state, and then use the top state (the one we just
14643 popped). This means that the initial elements will not be freed
14644 explicitly, as is the case in yacc.c; it is not a problem, as
14645 these elements have fake values.
14646
14647 2003-01-11 Paul Eggert <eggert@twinsun.com>
14648
14649 * NEWS: %expect-violations are now just warnings, reverting
14650 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
14651 bootstrapping problem reported by Matthias Klose; see
14652 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
14653 * src/conflicts.c (conflicts_print): Likewise.
14654 * tests/conflicts.at (%expect not enough, %expect too much,
14655 %expect with reduce conflicts): Likewise.
14656 * doc/bison.texinfo (Expect Decl): Document this. Also mention
14657 that the warning is enabled if the number of conflicts changes
14658 (not necessarily increases).
14659
14660 * src/getargs.c (version): Update copyright year.
14661
14662 2003-01-09 Akim Demaille <akim@epita.fr>
14663
14664 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
14665
14666 2003-01-08 Paul Eggert <eggert@twinsun.com>
14667
14668 * Makefile.maint (WGETFLAGS):
14669 New macro, containing "-C off" to disable proxy caches.
14670 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
14671 (rel-check): Use $(WGET) instead of wget.
14672
14673 2003-01-06 Paul Eggert <eggert@twinsun.com>
14674
14675 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
14676 the GLR paper of Scott, Johnstone and Hussain.
14677
14678 2003-01-04 Paul Eggert <eggert@twinsun.com>
14679
14680 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
14681 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
14682 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
14683 (EXTRA_LIBRARIES): New var, for liby.a.
14684 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
14685 (EXTRA_SCRIPTS): New var, for yacc.
14686
14687 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
14688 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
14689 Problem reported by Nelson H. F. Beebe.
14690
14691 2003-01-03 Paul Eggert <eggert@twinsun.com>
14692
14693 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
14694 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
14695 when compiling Bison 1.875's `bitset bset = obstack_alloc
14696 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
14697
14698 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
14699 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
14700 grow to a huge size with typical invocation.
14701
14702 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
14703 Use the pattern recommended by Autoconf 2.57, except also protect
14704 against double-definition.
14705 * src/system.h: Likewise.
14706 Portability issues reported by Nelson H. F. Beebe.
14707
14708 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
14709 All uses changed. Provide a definition in both C and C++.
14710 (yytrue, yyfalse): Define even if defined (__cplusplus).
14711
14712 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
14713 Reported by Nelson H. F. Beebe.
14714
14715 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
14716
14717 2003-01-02 Paul Eggert <eggert@twinsun.com>
14718
14719 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
14720 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
14721 Bug reported by Nelson H. F. Beebe.
14722
14723 2003-01-01 Paul Eggert <eggert@twinsun.com>
14724
14725 * Version 1.875.
14726
14727 2002-12-30 Paul Eggert <eggert@twinsun.com>
14728
14729 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
14730 Moved here from...
14731 (<INITIAL>","): Here. This causes stray "," to be treated
14732 more uniformly.
14733
14734 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
14735 last brace in braced code when not in Yacc mode, for compatibility
14736 with Bison 1.35. This resurrects the 2001-12-15 patch to
14737 src/reader.c.
14738
14739 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
14740 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
14741
14742 2002-12-28 Paul Eggert <eggert@twinsun.com>
14743
14744 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
14745 that of SYM's type. This fixes Debian bug 168069, reported by
14746 Thomas Olsson.
14747
14748 2002-12-28 Paul Eggert <eggert@twinsun.com>
14749
14750 Version 1.75f.
14751
14752 Switch back to the Yacc style of conflict reports, undoing some
14753 of the 2002-07-30 change.
14754 * doc/bison.texinfo (Understanding): Use Yacc style for
14755 conflict reports. Also, use new way of locating rules.
14756 * src/conflicts.c (conflict_report):
14757 Renamed from conflict_report_yacc, removing the old
14758 'conflict_report'. Translate the entire conflict report at once,
14759 so that we don't assume that "," has the same interpretation in
14760 all languages.
14761 (conflicts_output): Use Yacc-style conflict report for each state,
14762 instead of our more-complicated style.
14763 (conflicts_print): Use Yacc-style conflict report, except print
14764 the input file name when not emulating Yacc.
14765 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
14766 Conflicted Reduction, %expect not enough, %expect too much,
14767 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
14768 * tests/existing.at (GNU Cim Grammar): Likewise.
14769 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
14770
14771 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
14772 fatal): Don't invoke fflush; it's not needed and it might even be
14773 harmful for stdout, as stdout might not be open.
14774 * src/reduce.c (reduce_print): Likewise.
14775
14776 2002-12-27 Paul Eggert <eggert@twinsun.com>
14777
14778 Fix a bug where error locations were not being recorded correctly.
14779 This problem was originally reported by Paul Hilfinger in
14780 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
14781
14782 * data/yacc.c (yyparse): New local var yylerrsp, to record the
14783 top of the location stack's error locations.
14784 (yyerrlab): Set it. When discarding a token, push its location
14785 onto yylerrsp so that we don't lose track of the error's end.
14786 (yyerrlab1): Now is only the target of YYERROR, so that we can
14787 properly record the location of the action that failed. For GCC
14788 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
14789 GCC warning about yyerrlab1 being unused if YYERROR is unused.
14790 (yyerrlab2): New label, which yyerrlab now falls through to.
14791 Compute the error's location by applying YYLLOC_DEFAULT to
14792 the locations of all the symbols that went into the error.
14793 * doc/bison.texinfo (Location Default Action): Mention that
14794 YYLLOC_DEFAULT is also invoked for syntax errors.
14795 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
14796 Error locations include the locations of all the tokens that were
14797 discarded, not just the last token.
14798
14799 2002-12-26 Paul Eggert <eggert@twinsun.com>
14800
14801 * src/files.c: Include quote.h.
14802 (compute_output_file_names): Warn if we detect conflicting
14803 outputs to the same file. This should catch the misunderstanding
14804 exemplified by Debian Bug 165349, reported by Bruce Stephens..
14805
14806 * src/conflicts.c (conflicts_print): If the user specifies
14807 "%expect N", report an error if there are any reduce/reduce
14808 conflicts. This is what the manual says should happen.
14809 This fixes Debian bug 130890, reported by Anthony DeRobertis.
14810 * tests/conflicts.at (%expect with reduce conflicts): New test.
14811
14812 Don't use m4_include on relative file names, as it doesn't work as
14813 desired if there happens to be a file with that name under ".".
14814
14815 * m4sugar/version.m4: Remove; it was included but it wasn't used.
14816 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
14817 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
14818 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
14819 * src/output.c (output_skeleton): Use full path names when
14820 specifying a file to include; don't rely on include path, as
14821 it's unreliable when the working file contains a file with
14822 that name.
14823
14824 2002-12-25 Paul Eggert <eggert@twinsun.com>
14825
14826 Remove obsolete references to bison.simple and bison.hairy.
14827 Problem mentioned by Aubin Mahe in
14828 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
14829 * data/glr.c: Comment fix.
14830 * doc/bison.1: Remove references. Also, mention "yacc".
14831
14832 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
14833 with -g option.
14834
14835 * src/parse-gram.y (declaration): Use enum "report_states" rather
14836 than its numeric value 1.
14837
14838 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
14839 opening a new one. This fixes Debian bug 165349, reported by
14840 Bruce Stephens.
14841
14842 2002-12-24 Paul Eggert <eggert@twinsun.com>
14843
14844 Version 1.75e.
14845
14846 * Makefile.maint (cvs-update): Don't assume that the shell
14847 supports $(...), as Solaris sh doesn't.
14848
14849 * src/parse-gram.y (lloc_default): Remove test for empty
14850 nonterminals at the end, since it didn't change the result.
14851
14852 2002-12-24 Paul Eggert <eggert@twinsun.com>
14853
14854 If the user does not define YYSTYPE as a macro, Bison now declares it
14855 using typedef instead of defining it as a macro. POSIX requires this.
14856 For consistency, YYLTYPE is also declared instead of defined.
14857
14858 %union directives can now have a tag before the `{', e.g., the
14859 directive `%union foo {...}' now generates the C code
14860 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
14861 The default union tag is `YYSTYPE', for compatibility with Solaris 9
14862 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
14863 instead of `yyltype'.
14864
14865 `yystype' and `yyltype' are now obsolescent macros instead of being
14866 typedefs or tags; they are no longer documented and will be
14867 withdrawn in a future release.
14868
14869 * data/glr.c (b4_location_type): Remove.
14870 (YYSTYPE): Renamed from yystype.
14871 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
14872 (struct YYLTYPE): Renamed from struct yyltype.
14873 (YYLTYPE): Renamed from yyltype.
14874 (yyltype, yystype): New (and obsolescent) macros,
14875 for backward compatibility.
14876 * data/yacc.c: Likewise.
14877
14878 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
14879 does not specify a union tag. This is for compatibility with
14880 Solaris 9 yacc.
14881
14882 * src/parse-gram.y (add_param): 2nd arg is now char * not char
14883 const *, since it is now modified by stripping surrounding { }.
14884 (current_braced_code): Remove.
14885 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
14886 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
14887 trailing " {...}". Now of type <chars>.
14888 (grammar_declaration): Adjust to bundled tokens.
14889 (code_content): Remove; stripping is now done by add_param.
14890 (print_token_value): Print contents of bundled tokens.
14891 (token_name): New function.
14892
14893 * src/reader.h (braced_code, current_braced_code): Remove.
14894 (token_name): New decl.
14895
14896 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
14897 token_type, not braced_code code_kind. All uses changed.
14898 (SC_PRE_CODE): New state, for scanning after a keyword that
14899 has (or usually has) an immediately-following braced code.
14900 (token_type): New local var, to keep track of which token type
14901 to return when scanning braced code.
14902 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
14903 <INITIAL>"%parse-param", <INITIAL>"%printer",
14904 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
14905 instead of returning a token type immediately.
14906 (<INITIAL>"{"): Set token type.
14907 (<SC_BRACED_CODE>"}"): Use it.
14908 (handle_action_dollar, handle_action_at): Now returns bool
14909 indicating success. Fail if ! current_rule; this prevents a core dump.
14910 (handle_symbol_code_dollar, handle_symbol_code_at):
14911 Remove; merge body into caller.
14912 (handle_dollar, handle_at): Complain in invalid contexts.
14913
14914 * NEWS, doc/bison.texinfo: Document the above.
14915 * NEWS: Fix years and program names in copyright notice.
14916
14917 2002-12-17 Paul Eggert <eggert@twinsun.com>
14918
14919 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
14920 Reporting, Table of Symbols): Omit mentions of %lex-param and
14921 %parse-param from the documentation for now.
14922
14923 2002-12-15 Paul Eggert <eggert@twinsun.com>
14924
14925 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
14926 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
14927 lookahead symbol, and which sets yychar in parser actions) and it
14928 disagreed with the Bison documentation. Bug
14929 reported by Andrew Walrond.
14930
14931 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
14932 as the caller now does that.
14933 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
14934 (YYEMPTY): Parenthesize right hand side, since others use it.
14935 (yyparse): Don't assume that our generated code is the only code
14936 that sets yychar.
14937
14938 2002-12-13 Paul Eggert <eggert@twinsun.com>
14939
14940 Version 1.75d.
14941
14942 POSIX requires a "yacc" command.
14943 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
14944 (MOSTLYCLEANFILES): Add yacc.
14945 (yacc): New rule.
14946 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
14947 as an alias for bison y.
14948
14949 * po/LINGUAS: Add da.
14950
14951 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
14952 problem with latest <getopt.h>.
14953 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
14954
14955 * doc/fdl.texi: Upgrade to 1.2.
14956 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
14957 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
14958 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
14959 gnulib.
14960 * config/install-sh: Sync with autotools.
14961
14962 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
14963 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
14964 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
14965 locations are requested.
14966 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
14967 locations are requested.
14968
14969 2002-12-12 Paul Eggert <eggert@twinsun.com>
14970
14971 Remove unportable casts and storage allocation tricks.
14972 While we're at it, remove almost all casts, since they
14973 usually aren't needed and are a sign of trouble.
14974
14975 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
14976
14977 * src/derives.c (derives_compute): Do not subtract NTOKENS from
14978 the pointer DSET returned by malloc; this isn't portable.
14979 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
14980 Similarly for DERIVES.
14981 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
14982 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
14983 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
14984
14985 * src/derives.c (derives_compute): Do not bother invoking
14986 int_of_rule_number, since rule numbers are integers.
14987
14988 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
14989 rather than XMALLOC (char, N).
14990
14991 * src/files.c (filename_split): Rewrite to avoid cast.
14992
14993 * src/gram.h (symbol_number_as_item_number,
14994 item_number_as_symbol_number, rule_number_as_item_number,
14995 item_number_as_rule_number):
14996 Now inline functions rather than macros, to avoid casts.
14997 * src/state.h (state_number_as_int): Likewise.
14998 * src/tables.c (state_number_to_vector_number,
14999 symbol_number_to_vector_number): Likewise.
15000
15001 * src/gram.h (int_of_rule_number): Remove; no longer used.
15002
15003 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
15004 since the resulting storage is always stored into.
15005
15006 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
15007 where it's needed.
15008
15009 * src/muscle_tab.c (muscle_m4_output):
15010 Now inline. Return bool, not int.
15011 * src/state.c (state_compare): Likewise.
15012 * src/symtab.c (symbol_check_defined,
15013 symbol_check_alias_consistency, symbol_pack, symbol_translation,
15014 hash_compare_symbol, hash_symbol):
15015 Likewise.
15016 * src/uniqstr.c (uniqstr_print): Likewise.
15017 * src/muscle_tab.c (muscle_m4_output_processor):
15018 New function, to avoid casts.
15019 * src/state.c (state_comparator, stage_hasher): Likewise.
15020 * src/symtab.c (symbol_check_defined_processor,
15021 symbol_check_alias_consistency_processor, symbol_pack_processor,
15022 symbol_translation_processor, hash_symbol_comparator,
15023 hash_symbol_hasher): Likewise.
15024 * src/uniqstr.c (uniqstr_print_processor): Likewise.
15025 * src/muscle_tab.c (muscles_m4_output):
15026 Use new functions instead of casting old functions unportably.
15027 * src/state.c (state_hash_new): Likewise.
15028 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
15029 symbols_token_translations_init):
15030 Likewise.
15031 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
15032
15033 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
15034 var instead of casting to long, to avoid casts.
15035 (prepare_states): Use MALLOC rather than alloca, so that we don't
15036 have to worry about alloca.
15037 * src/state.c (state_hash_lookup): Likewise.
15038
15039 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
15040 local var instead of casting to unsigned char, to avoid casts.
15041
15042 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
15043 STATE_ALLOC): Remove.
15044 (transitions_new, errs_new, reductions_new, state_new): Use malloc
15045 rather than calloc, and use offsetof to avoid allocating slightly
15046 too much storage.
15047 (state_new): Initialize all members.
15048
15049 * src/state.c (state_hash): Use unsigned accumulator, not signed.
15050
15051 * src/symtab.c (symbol_free): Remove; unused.
15052 (symbol_get): Remove cast in lhs of assignment.
15053 (symbols_do): Now static. Accept generic arguments, not
15054 hashing-related ones.
15055
15056 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
15057 (symbol_processor): Remove.
15058 (symbols_do): Remove decl; now static.
15059
15060 * src/system.h (alloca): Remove; decl no longer needed.
15061 (<stddef.h>): Include, for offsetof.
15062 (<inttypes.>, <stdint.h>): Include if available.
15063 (uintptr_t): New type, if system lacks it.
15064 (CALLOC, MALLOC, REALLOC): New macros.
15065 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
15066 new macros.
15067
15068 * src/tables.c (table_size): Now int, to pacify GCC.
15069 (table_grow, table_ninf_remap): Use signed table size.
15070 (save_row): Don't bother initializing locals when not needed.
15071 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
15072 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
15073
15074 * src/vcg.h: Correct misspellings.
15075
15076 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
15077
15078
15079 * src/getargs.c (getargs): Don't assume EOF == -1.
15080
15081 2002-12-09 Paul Eggert <eggert@twinsun.com>
15082
15083 Change identifier spellings to avoid collisions with names
15084 that are reserved by POSIX.
15085
15086 Don't use names ending in _t, since POSIX reserves them.
15087 For consistency, remove _e and _s endings -- they're weren't
15088 needed to remove ambiguity. All uses changed.
15089 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
15090 turn was just renamed from struniq_t.
15091 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
15092 which in turn was just renamed from struniq_processor_t.
15093 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
15094 in turn was renamed from hash_compare_struniq_t.
15095 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
15096 (state_list): Renamed from state_list_t.
15097 * src/assoc.h (assoc): Renamed from assoc_t.
15098 * src/conflicts.c (enum conflict_resolution): Renamed from
15099 enum conflict_resolution_e.
15100 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
15101 (rule_list): Renamed from rule_list_t.
15102 * src/getargs.h (enum trace): Renamed from enum trace_e.
15103 (enum report): Renamed from enum report_e.
15104 * src/gram.h (item_number): Renamed from item_number_t.
15105 (rule_number): Renamed from rule_number_t.
15106 (struct rule_s): Remove the "rule_s" part; not used.
15107 (rule): Renamed from rule_t.
15108 (rule_filter): Renamed from rule_filter_t.
15109 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
15110 (goto_list): Renamed from goto_list_t.
15111 * src/lalr.h (goto_number): Renamed from goto_number_t.
15112 * src/location.h (location): Renamed from location_t.
15113 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
15114 and moved here from:
15115 * src/muscle_tab.h (muscle_entry_t): here.
15116 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
15117 (rule_list): Renamed from rule_list_t.
15118 * src/print_graph.c (static_graph): Renamed from graph.
15119 * src/reader.h (braced_code): Renamed from braced_code_t.
15120 Remove brace_code_e tag.
15121 * src/relation.h (relation_node): Renamed from relation_node_t.
15122 (relation_nodes): Renamed from relation_nodes_t.
15123 (relation): Renamed from relation_t.
15124 * src/state.h (state_number): Renamed from state_number_t.
15125 (struct state): Renamed from struct state_s.
15126 (state): Renamed from state_t.
15127 (transitions): Renamed from transitions_t. Unused (and
15128 misspelled) transtion_s tag removed.
15129 (errs): Renamed from errs_t. Unused errs_s tag removed.
15130 (reductions): Renamed from reductions_t. Unused tag
15131 reductions_s removed.
15132 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
15133 (struct symbol_list): Renamed from struct symbol_list_s.
15134 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
15135 (struct symbol): Renamed from struct symbol_s.
15136 (symbol): Renamed from symbol_t.
15137 * src/tables.c (vector_number): Renamed from vector_number_t.
15138 (action_number): Renamed from action_t.
15139 * src/tables.h (base_number): Renamed from base_t.
15140 * src/vcg.h (enum color): Renamed from enum color_e.
15141 (enum textmode): Renamed from enum textmode_e.
15142 (enum shape): Renamed from enum shape_e.
15143 (struct colorentry): Renamed from struct colorentry_s.
15144 (struct classname): Renamed from struct classname_s.
15145 (struct infoname): Renamed from struct infoname_s.
15146 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
15147 (enum decision): Renamed from enum decision_e.
15148 (enum orientation): Renamed from enum orientation_e.
15149 (enum alignment): Renamed from enum alignment_e.
15150 (enum arrow_mode): Renamed from enum arrow_mode_e.
15151 (enum crossing_type): Renamed from enum crossing_type_e.
15152 (enum view): Renamed from enum view_e.
15153 (struct node): Renamed from struct node_s.
15154 (node): Renamed from node_t.
15155 (enum linestyle): Renamed from enum linestyle_e.
15156 (enum arrowstyle): Renamed from enum arrowstyle_e.
15157 (struct edge): Renamed from struct edge.
15158 (edge): Renamed from edge_t.
15159 (struct graph): Renamed from struct graph_s.
15160 (graph): Renamed from graph_t.
15161 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
15162 Rename value_t -> value.
15163 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
15164 value_t_as_yystype -> value_as_yystype.
15165
15166 Don't include <errno.h> in the mainstream code, since it
15167 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
15168 * lib/get-errno.c, lib/get-errno.h: New files.
15169 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
15170 get-errno.c.
15171 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
15172 * src/output.c (output_skeleton): Likewise.
15173 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
15174 instead of errno.
15175 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
15176 Likewise.
15177 (handle_action_dollar, handle_action_at): Likewise.
15178 * src/system.h: Do not include <errno.h>.
15179 (TAB_EXT): Renamed from EXT_TAB.
15180 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
15181
15182 Avoid str[a-z]*, since <string.h> reserves that name space.
15183 Change all instances of "struniq" in names to "uniqstr", and
15184 likewise for "STRUNIQ" and "UNIQSTR".
15185 * src/uniqstr.c: Renamed from src/struniq.c.
15186 * src/uniqstr.h: Renamed from src/struniq.h.
15187 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
15188 * src/files.c (strsuffix): Remove; unused.
15189 (concat2): Renamed from stringappend. Now static.
15190 * src/files.h (strsuffix, stringappend): Remove; unused.
15191 * src/parse-gram.y (<chars>): Renamed from <string>.
15192 (<uniqstr>): Renamed from <struniq>.
15193 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
15194 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
15195 (struct graph_s.expand): Renamed from struct graph_s.stretch.
15196 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
15197 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
15198 (N_EXPAND): Renamed from N_STRETCH.
15199
15200 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
15201 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
15202 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
15203 Remove; unused.
15204 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
15205 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
15206 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
15207 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
15208 (BASE_MAXIMUM): Renamed from BASE_MAX.
15209 (BASE_MINIMUM): Renamed from BASE_MIN.
15210 (ACTION_MAX): Remove; unused.
15211 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
15212 Unnecessary casts removed from above defines.
15213
15214
15215 Fix misspelling in names.
15216 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
15217 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
15218 G_NODE_ALIGNEMENT.
15219
15220
15221 * lib/timevar.c (timevar_report): Renamed from time_report,
15222 for consistency with other names.
15223 * lib/timevar.h (timevar_report): New decl.
15224 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
15225
15226
15227 Sort include-file uses.
15228
15229 Reorder all include files under src to be in the order "system.h".
15230 then the ../lib include files in angle brackets (alphabetized),
15231 then the . include files in double-quotes (alphabetized). Fix
15232 dependency breakages encountered in this process, as follows:
15233 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
15234 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
15235 * src/state.h: Include "symtab.h".
15236
15237 2002-12-08 Paul Eggert <eggert@twinsun.com>
15238
15239 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
15240 since this causes problems when __file__ contains character
15241 sequences like "@" that are treated specially by src/scan-skel.l.
15242 Instead, just use the file's basename. This fixes the bug
15243 reported by Martin Mokrejs in
15244 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
15245
15246 2002-12-06 Paul Eggert <eggert@twinsun.com>
15247
15248 Add support for rules that do not have trailing semicolons, as
15249 POSIX requires. Improve the quality of locations in Bison
15250 diagnostics.
15251
15252 * src/location.c: Include <quotearg.h>.
15253 (empty_location): Now const.
15254 (location_print): New function. Follow the recommendation of the
15255 GNU Coding Standards for locations that span file boundaries.
15256 * src/location.h: Do not include <quotearg.h>; no longer needed.
15257 (boundary): New type.
15258 (location_t): Use it. This allows locations to span file boundaries.
15259 All member uses changed: file -> start.file or end.file (as needed),
15260 first_line -> start.line, first_column -> start.column,
15261 last_line -> end.line, last_column -> end.column.
15262 (equal_boundaries): New function.
15263 (LOCATION_RESET, LOCATION_STEP): Remove.
15264 (LOCATION_PRINT): Remove. All callers changed to use location_print.
15265 (empty_location): Now const.
15266 (location_print): New decl.
15267 * src/parse-gram.y (lloc_default): New function, which handles
15268 empty locations more accurately.
15269 (YYLLOC_DEFAULT): Use it.
15270 (%token COLON): Remove.
15271 (%token ID_COLON): New token.
15272 (rules): Use it.
15273 (declarations, rules): Remove trailing semicolon.
15274 (declaration, rules_or_grammar_declaration):
15275 Allow empty (";") declaration.
15276 (symbol_def): Remove empty actions; no longer needed.
15277 (rules_or_grammar_declaration): Remove trailing semicolon.
15278 (semi_colon.opt): Remove.
15279 * src/reader.h: Include location.h.
15280 (scanner_cursor): New decl.
15281 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
15282 rolling our own.
15283 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
15284 of *loc.
15285 (STEP): Remove. No longer needed, now that adjust_location does
15286 the work. All uses removed.
15287 (scanner_cursor): New var.
15288 (adjust_location): Renamed from extend_location. It now sets
15289 *loc and adjusts the scanner cursor. All uses changed.
15290 Don't bother testing for CR.
15291 (handle_syncline): Remove location arg; now updates scanner cursor.
15292 All callers changed.
15293 (unexpected_end_of_file): Now accepts start boundary of token or
15294 comment, not location. All callers changed. Update scanner cursor,
15295 not the location.
15296 (SC_AFTER_IDENTIFIER): New state.
15297 (context_state): Renamed from c_context. All uses changed.
15298 (id_loc, code_start, token_start): New local vars.
15299 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
15300 processing of Yacc white space and equivalents here.
15301 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
15302 instead of returning ID immediately, since we need to search for
15303 a subsequent colon.
15304 (<INITIAL>"'", "\""): Save token_start.
15305 (<INITIAL>"%{", "{", "%%"): Save code_start.
15306 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
15307 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
15308 BEGIN context_state at end, not INITIAL.
15309 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
15310 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
15311 Return correct token start.
15312 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
15313 the start of a character, string or multiline comment is found.
15314 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
15315 Reduction): Adjust reported locations to match the more-precise
15316 results now expected.
15317 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
15318 * tests/reduce.at (Useless Rules, Reduced Automaton,
15319 Underivable Rules): Likewise.
15320 * tests/regression.at (Invalid inputs): No longer `expecting ";"
15321 or "|"' now that so many other tokens are allowed by the new grammar.
15322
15323 * src/complain.h (current_file): Remove duplicate decl;
15324 current_file is now owned by files.h.
15325 * src/complain.c, src/scan-gram.l: Include files.h.
15326
15327 2002-12-06 Paul Eggert <eggert@twinsun.com>
15328
15329 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
15330 promotes to int; it might be unsigned int.
15331 * data/yacc.c (yy_reduce_print): Likewise.
15332
15333 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
15334 be #defined in the prologue, not in the Bison declarations.
15335 This fixes Debian Bug 102878, reported by Shaul Karl.
15336
15337 2002-12-02 Paul Eggert <eggert@twinsun.com>
15338
15339 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
15340 * lib/strtoul.c: New file, from gnulib.
15341 This fixes a porting bug reported by Peter Klein in
15342 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
15343
15344 2002-11-30 Paul Eggert <eggert@twinsun.com>
15345
15346 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
15347 and put only a forward declaration in the prologue. This is for
15348 consistency with the other scanner helper functions.
15349
15350 Type clashes now generate warnings, not errors, since it
15351 appears that POSIX may allow some grammars with type clashes.
15352 * src/reader.c (grammar_current_rule_check): Warn about
15353 type clashes instead of complaining.
15354 * tests/input.at (Type Clashes): Expect warnings, not complaints.
15355
15356 Add Yacc library, since POSIX requires it.
15357 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
15358 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
15359 * lib/main.c, lib/yyerror.c: New files.
15360
15361 gram_error can be static; it need not be extern.
15362 * src/reader.h (gram_error): Remove decl.
15363 * src/parse-gram.y (gram_error): Now static. Add static decl.
15364 (print_token_value): Omit parameter names from forward decl,
15365 for consistency.
15366
15367 2002-11-29 Paul Eggert <eggert@twinsun.com>
15368
15369 * doc/bison.texinfo: Emphasize that yylex and yyerror must
15370 be declared before being used. E.g., one should typically
15371 declare them in the prologue. Use GNU coding style in examples.
15372 Put "const" consistently after the type it modifies. Mention
15373 that C99 supports "inline". Mention that yyerror traditionally
15374 returns "int".
15375
15376 %parse-param and %lex-param now take just one argument, the
15377 declaration; the argument name is deduced from the declaration.
15378
15379 * doc/bison.texinfo (Parser Function, Pure Calling, Error
15380 Reporting, Table of Symbols): Document this.
15381 * src/parse-gram.y (add_param): New function.
15382 (COMMA): Remove.
15383 (declaration): Implement new rule for %parse-param and %lex-param.
15384 * src/scan-gram.l: "," now elicits a warning, rather than being
15385 a token; this is more compatible with byacc.
15386 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
15387
15388 2002-11-27 Paul Eggert <eggert@twinsun.com>
15389
15390 Rename identifiers to avoid real and potential collisions.
15391
15392 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
15393 to avoid collision with lex macro described by Bruce Lilly in
15394 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
15395 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
15396 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
15397 * src/parse-gram.y (print_token_value): Renamed from yyprint.
15398 All uses changed.
15399 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
15400 The name "yycontrol" violates the name space rules, and this stuff
15401 wasn't being used anyway.
15402 (input): Remove action; this stuff wasn't being used.
15403 (gram_error): Rename local variable yylloc -> loc.
15404 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
15405 (YY_DECL): Don't use "yy" at start of local variables.
15406 All uses changed, e.g., yylloc -> loc.
15407 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
15408 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
15409 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
15410 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
15411
15412 * src/parse-gram.y (gram_error): loc is now const *.
15413 * src/reader.h (gram_error): Likewise.
15414
15415 2002-11-24 Paul Eggert <eggert@twinsun.com>
15416
15417 Version 1.75c.
15418
15419 * tests/actions.at (Actions after errors): Use an output format
15420 more similar to that of the Printers and Destructors test.
15421 Test the position of the ';' token too.
15422 (Printers and Destructors): Likewise.
15423 (Printers and Destructors: %glr-parser): Remove for now, to avoid
15424 unnecessarily alarming people when the test fails.
15425
15426 * data/yacc.c (yyerrlab1): Move this label down, so that the
15427 parser does not discard the lookahead token if the user code
15428 invokes YYERROR. This change is required for POSIX conformance.
15429
15430 * lib/error.c: Sync with gnulib.
15431
15432 2002-11-22 Paul Eggert <eggert@twinsun.com>
15433
15434 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
15435 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
15436 * lib/xmalloc.c: Likewise.
15437
15438 2002-11-20 Paul Eggert <eggert@twinsun.com>
15439
15440 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
15441
15442 2002-11-20 Paul Eggert <eggert@twinsun.com>
15443
15444 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
15445 should use `if (! x) abort ();' rather than `assert (x);', and
15446 anyway it's one less thing to worry about configuring.
15447
15448 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
15449 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
15450 and replace all instances of assert with abort.
15451 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
15452 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
15453
15454 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
15455 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
15456 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
15457 hash_find_entry, hash_rehash, hash_insert): Likewise.
15458 * src/conflicts.c (resolve_sr_conflict): Likewise.
15459 * src/lalr.c (set_goto_map, map_goto): Likewise.
15460 * src/nullable.c (nullable_compute): Likewise.
15461 * src/output.c (prepare_rules, token_definitions_output): Likewise.
15462 * src/reader.c (packgram, reader): Likewise.
15463 * src/state.c (state_new, state_free, state_transitions_set,
15464 state_reduction_find): Likewise.
15465 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
15466 symbol_pack): Likewise.
15467 * src/tables.c (conflict_row, pack_vector): Likewise.
15468 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
15469 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
15470 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
15471 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
15472
15473 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
15474 (ARGMATCH_CONSTRAINT): New macro.
15475 (ARGMATCH_ASSERT): Use it.
15476
15477 * src/system.h (verify): New macro.
15478 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
15479 rather than assert.
15480 * src/tables.c (tables_generate): Likewise.
15481
15482 * src/struniq.c (struniq_assert): Now returns void, and aborts
15483 if the assertion is false.
15484 (struniq_assert_p): Remove.
15485 * src/struniq.h: Likewise.
15486
15487 2002-11-18 Paul Eggert <eggert@twinsun.com>
15488
15489 * data/glr.c (yygetLRActions): Replace `yyindex' with
15490 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
15491 This fixes the regression with Sun ONE Studio 7 cc that I reported in
15492 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
15493
15494 2002-11-18 Akim Demaille <akim@epita.fr>
15495
15496 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
15497 space.
15498 From Tim Van Holder.
15499
15500 2002-11-17 Paul Eggert <eggert@twinsun.com>
15501
15502 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
15503 to "SyntaxError" for consistency with my 2002-11-15 change.
15504
15505 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
15506 not define to {}, since this breaks the common use of `YYDPRINTF
15507 ((...));' if a single statement is desired (e.g. before `else').
15508 Work around GCC warnings by surrounding corresponding calls with
15509 {} if needed.
15510 (yyhasResolvedValue): Remove unused function.
15511 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
15512 loop body.
15513 (yyreportSyntaxError): Renamed from yyreportParseError.
15514 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
15515 All uses changed.
15516 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
15517 extern when possible. Remove unused initializations.
15518
15519 2002-11-16 Akim Demaille <akim@epita.fr>
15520
15521 Augment the similarity between GLR and LALR traces.
15522
15523 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
15524 (YY_REDUCE_PRINT): New.
15525 (yyparse): Use them.
15526 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
15527 YYDPRINT here.
15528 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
15529 state reached after the reduction/recovery, since...
15530 (yyparse, yyprocessOneStack): Report the state we are entering in.
15531
15532 2002-11-16 Akim Demaille <akim@epita.fr>
15533
15534 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
15535 Add support for --trace=skeleton.
15536 * src/scan-skel.l: %option debug.
15537 Scan strings of non-@ or \n instead of character by character.
15538 (scan_skel): Handle trace_skeleton.
15539 (QPUTS): New.
15540 (@output_parser_name@, @output_header_name@): ``Restore'' their
15541 support (used to be M4 macros).
15542 * data/yacc.c: Quote larger chunks, a la glr.c.
15543 * data/lalr1.cc: Likewise.
15544 The header guards are no longer available, so use some other
15545 string than `YYLSP_NEEDED'.
15546
15547 2002-11-16 Akim Demaille <akim@epita.fr>
15548
15549 Make the ``Printers and Destructors'' test more verbose, taking
15550 `yacc.c''s behavior as (possibly wrong) reference.
15551
15552 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
15553 instead of fprint on stdout.
15554 Set and report the last_line of the symbols.
15555 Consistently display values and locations.
15556
15557 2002-11-16 Paul Eggert <eggert@twinsun.com>
15558
15559 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
15560
15561 2002-11-15 Paul Eggert <eggert@twinsun.com>
15562
15563 * tests/actions.at (Actions after errors): New test case.
15564
15565 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
15566 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
15567 tests/action.at, tests/calc.at, tests/conflicts.at,
15568 tests/cxx-type.at, tests/regression.at:
15569 "parse error" -> "syntax error" for POSIX compatibility.
15570 "parsing stack overflow..." -> "parser stack overflow" so
15571 that code matches Bison documentation.
15572
15573 2002-11-15 Akim Demaille <akim@epita.fr>
15574
15575 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
15576 take two BRACED_CODE, not two string_content.
15577 Free the scanner's obstack when we are done.
15578 (code_content): New.
15579 * tests/calc.at: Adjust.
15580 * doc/bison.texinfo: Adjust.
15581 Also, make sure to include the `,' for these declarations.
15582
15583 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
15584
15585 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
15586 definition; avoids potential autoreconf problems.
15587
15588 2002-11-15 Akim Demaille <akim@epita.fr>
15589
15590 Always check the value returned by yyparse.
15591
15592 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
15593 returned by yyparse.
15594 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
15595 Adjust calls.
15596 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
15597 returned by yyparse.
15598
15599 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15600
15601 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
15602 on input.at test.
15603
15604 2002-11-14 Paul Eggert <eggert@twinsun.com>
15605
15606 * src/output.c (output_skeleton): Call xfopen instead of
15607 duplicating xfopen's body.
15608
15609 Fix bugs reported by Nelson H. F. Beebe in
15610 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
15611
15612 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
15613 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
15614 Group compiler. Instead, use "$CC -E bar.c". Include the .h
15615 file twice in the grammar, as an extra check.
15616
15617 * tests/input.at (Torturing the Scanner): Surround the
15618 backslash-newline tests with "#if 0", to make it less likely that
15619 we'll run into compiler bugs. Bring back solitary \ inside
15620 comment, but add a closing comment to work around HP C bug. Don't
15621 test backslash-newline in C character constant.
15622
15623 2002-11-14 Akim Demaille <akim@epita.fr>
15624
15625 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
15626 status of the compiler.
15627 Calling `exit 1' is no longer needed.
15628 Reported by Nelson H. F. Beebe.
15629
15630 2002-11-14 Akim Demaille <akim@epita.fr>
15631
15632 * tests/atlocal.in (CPPFLAGS): We have config.h.
15633 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
15634 New.
15635 * tests/actions.at, tests/calc.at, tests/conflicts.at,
15636 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
15637 * tests/regression.at, tests/torture.at: Use them for all the
15638 grammars that are to be compiled.
15639 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
15640 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
15641 * doc/bison.texinfo (GLR Parsers): Document `inline'.
15642
15643 2002-11-14 Akim Demaille <akim@epita.fr>
15644
15645 * doc/bison.texinfo: Various formatting changes (alignments in
15646 samples, additional @group/@end group, GCS in samples.
15647 Use @deffn instead of simple @table to define the directives,
15648 macros, variables etc.
15649
15650 2002-11-13 Paul Eggert <eggert@twinsun.com>
15651
15652 Fix some bugs reported by Albert Chin-A-Young in
15653 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
15654
15655 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
15656 -o c"; the HP C compiler chatters during compilation.
15657 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
15658 * tests/headers.at (export YYLTYPE): Likewise.
15659
15660 * tests/input.at (Torturing the Scanner): Remove lines containing
15661 solitary backslashes, as they tickle a bug in the HP C compiler.
15662
15663 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
15664 comments, since they're not portable. Use GNU coding style.
15665
15666 2002-11-13 Akim Demaille <akim@epita.fr>
15667
15668 * data/yacc.c: Leave bigger chunks of quoted text.
15669 (YYDSYMPRINTF): New.
15670 Use it to report symbol activities.
15671 * data/glr.c (YYDSYMPRINTF): New.
15672 Use it.
15673
15674 2002-11-12 Paul Eggert <eggert@twinsun.com>
15675
15676 Version 1.75b.
15677
15678 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
15679 (yyglrReduce): Return yyok, not 0.
15680 This should avoid the enumerated-type warnings reported
15681 by Nelson H. F. Beebe in
15682 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
15683
15684 * lib/bbitset.h (BITSET_INLINE): Remove.
15685 * lib/bitset.h [! BITSET_INLINE]: Remove.
15686 (bitset_set, bitset_reset, bitset_test): Rename local vars
15687 to avoid shadowing warnings by GCC.
15688
15689 * data/glr.c (inline): Remove #define. It's the user's
15690 responsibility to #define it away, just like 'const'.
15691 This fixes one of the bugs reported by Nelson H. F. Beebe in
15692 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
15693
15694 * Makefile.maint (po-check): Scan .l and .y files instead of the
15695 .c and the .h files that they generate. This fixes the bug
15696 reported by Tim Van Holder in:
15697 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
15698 Look for N_ as well as for _. Try to avoid matching #define for
15699 N_ and _.
15700 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
15701 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
15702 * src/scan-gram.l: Revamp regular expressions so that " and '
15703 do not confuse xgettext.
15704
15705 * src/struniq.h (struniq_new): Do not declare the return type
15706 to be 'const'; this violates the C standard.
15707 * src/struniq.c (struniq_new): Likewise.
15708
15709 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
15710
15711 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
15712 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
15713 linker.
15714
15715 2002-11-12 Akim Demaille <akim@epita.fr>
15716
15717 * Makefile.maint: Sync with Autoconf:
15718 (local_updates): New.
15719
15720 2002-11-12 Akim Demaille <akim@epita.fr>
15721
15722 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
15723
15724 2002-11-12 Akim Demaille <akim@epita.fr>
15725
15726 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
15727 locations.
15728
15729 2002-11-12 Akim Demaille <akim@epita.fr>
15730
15731 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
15732 not yyvalue.
15733
15734 2002-11-12 Akim Demaille <akim@epita.fr>
15735
15736 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
15737 Use it to test the GLR parser.
15738
15739 2002-11-12 Akim Demaille <akim@epita.fr>
15740
15741 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
15742 defines it.
15743 * data/glr.c (yystos): New.
15744 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
15745 (YYDSYMPRINT): New.
15746 (yyval): Don't define it, it is handled via M4.
15747 (yyrecoverParseError): Free verbosely the discarded symbols.
15748 * data/yacc.c (yysymprint): Remove, rather...
15749 (b4_yysymprint_generate): invoke.
15750 * data/c.m4 (b4_yysymprint_generate): New.
15751 Accept pointers as arguments, as opposed to the version from
15752 yacc.c.
15753 (b4_yydestruct_generate): Likewise.
15754 * tests/cations.at (Printers and Destructors): Use Bison directives
15755 instead of CPP macros.
15756 Don't rely on internal details.
15757
15758 2002-11-12 Akim Demaille <akim@epita.fr>
15759
15760 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
15761 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
15762 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
15763 it against YYEMPTY and so forth), work on yytoken (i.e., set
15764 it to YYEMPTY etc.).
15765 (yydestruct): Replace with a b4_yydestruct_generate invocation.
15766 (b4_symbol_actions): Remove.
15767 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
15768 for 0, end-of-input.
15769
15770 2002-11-12 Akim Demaille <akim@epita.fr>
15771
15772 * doc/bison.texinfo (Destructor Decl): New.
15773
15774 2002-11-12 Akim Demaille <akim@epita.fr>
15775
15776 * src/tables.c (tables_generate): Use free for pointers that
15777 cannot be NULL, not XFREE.
15778 (pack_vector): Use assert, not fatal, for bound violations.
15779 * src/state.c (state_new): Likewise.
15780 * src/reader.c (reader): Likewise.
15781 * src/lalr.c (set_goto_map): Likewise.
15782 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
15783 the file name.
15784
15785 2002-11-12 Akim Demaille <akim@epita.fr>
15786
15787 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
15788 Restore.
15789 * src/scan-gram.l (last_string): Is global to the file, not to
15790 yylex.
15791 * src/parse-gram.y (input): Don't append the epilogue here,
15792 (epilogue.opt): do it here, and free the scanner's obstack.
15793 * src/reader.c (epilogue_set): Rename as...
15794 (epilogue_augment): this.
15795 * data/c.m4 (b4_epilogue): Defaults to empty.
15796
15797 2002-11-12 Akim Demaille <akim@epita.fr>
15798
15799 * src/getargs.c (long_options): Remove duplicates.
15800 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
15801 Remove.
15802 * doc/bison.rnh: Remove.
15803 * doc/bison.texinfo (VMS Invocation): Remove.
15804
15805 2002-11-12 Akim Demaille <akim@epita.fr>
15806
15807 * src/struniq.h, src/struniq.c (struniq_t): Is const.
15808 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
15809
15810 Use struniq for symbols.
15811
15812 * src/symtab.h (symbol_t): The tag member is a struniq.
15813 (symbol_type_set): Adjust.
15814 * src/symtab.c (symbol_new): Takes a struniq.
15815 (symbol_free): Don't free the tag member.
15816 (hash_compare_symbol_t, hash_symbol_t): Rename as...
15817 (hash_compare_symbol, hash_symbol): these.
15818 Use the fact that tags as struniqs.
15819 (symbol_get): Use struniq_new.
15820 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
15821 Returns a strniq.
15822 * src/reader.h (merger_list, grammar_currentmerge_set): The name
15823 and type members are struniqs.
15824 * src/reader.c (get_merge_function)
15825 (grammar_current_rule_merge_set): Adjust.
15826 (TYPE, current_type): Are struniq.
15827
15828 Use struniq for file names.
15829
15830 * src/files.h, src/files.c (infile): Split into...
15831 (grammar_file, current_file): these.
15832 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
15833 * src/reduce.c (reduce_print): Likewise.
15834 * src/getargs.c (getargs): Likewise.
15835 * src/complain.h, src/complain.c: Likewise.
15836 * src/main.c (main): Call struniqs_new early enough to use it for
15837 file names.
15838 Don't free the input file name.
15839
15840 2002-11-12 Akim Demaille <akim@epita.fr>
15841
15842 * src/symtab.c (symbol_free): Remove dead deactivated code:
15843 type_name are properly removed.
15844 Don't use XFREE to free items that cannot be NULL.
15845 * src/struniq.h, src/struniq.c: New.
15846 * src/main.c (main): Initialize/free struniqs.
15847 * src/parse-gram.y (%union): Add astruniq member.
15848 (yyprint): Adjust.
15849 * src/scan-gram.l (<{tag}>): Return a struniq.
15850 Free the obstack bit that used to store it.
15851 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
15852
15853 2002-11-11 Paul Eggert <eggert@twinsun.com>
15854
15855 Revamp to fix many (but not all) of the C- and M4-related quoting
15856 problems. Among other things, this fixes the Bison bug reported
15857 by Jan Hubicka when processing the Bash grammar; see:
15858 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
15859
15860 Use new @ escapes consistently. Represent brackets with @{ and @}
15861 rather than @<:@ and @:>@, since this works a bit better with dumb
15862 editors like vi. Represent @ with @@, since @ is now consistently
15863 an escape. Use @oline@ and @ofile@ rather than __oline__ and
15864 __ofile__, to avoid unexpected expansions. Similarly, use @output
15865 rather than #output.
15866
15867 * data/c.m4 (b4_copyright): Omit file name from comment, since
15868 the file name could contain "*/".
15869 (b4_synclines_flag): Don't quote the 2nd argument; it should already
15870 be quoted. All uses changed.
15871
15872 * data/glr.c: Use new @ escapes consistently.
15873 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
15874 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
15875 Remove, since they couldn't handle arbitrary characters in file
15876 names.
15877 * data/lalr1.cc: Likewise.
15878 * data/yacc.c: Likewise.
15879
15880 * src/files.c (output_infix): Remove; all uses removed.
15881 * src/files.h: Likewise.
15882
15883 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
15884 mishandled funny characters in file names, and anyway it isn't
15885 needed any more.
15886 * data/yacc.c: Likewise.
15887 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
15888
15889 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
15890 * data/yacc.c: Likewise.
15891
15892 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
15893 strings now.
15894 (muscle_init): Quote filename as a C string.
15895 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
15896 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
15897 * src/output.c (escaped_file_name_output): New function.
15898 (prepare_symbols): Quote tokens for M4.
15899 (prepare): Don't insert output_infix, output_prefix,
15900 output_parser_name, output_header_name; this is now down by scan-skel.
15901 Insert skeleton as a C string.
15902
15903 * src/output.c (user_actions_output, symbol_destructors_output,
15904 symbol_printers_output): Quote filenames for C and M4.
15905 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15906
15907 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
15908 escapes other than \\ and \'; this simplifies the code.
15909 (<SC_STRING>): Likewise, for \\ and \".
15910 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
15911 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
15912 Use new escapes @{ and @} for [ and ].
15913
15914 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
15915 them with auto vars.
15916 Switch to new escape scheme, where @ is the escape character uniformly.
15917 Abort if a stray escape character is found. Avoid unbounded input
15918 buffer when parsing non-escaped text.
15919
15920 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
15921 __oline__, #output, $@, and @{ do not have unintended meanings.
15922
15923 2002-11-09 Paul Eggert <eggert@twinsun.com>
15924
15925 Fix the test failure due to GCC warnings described in
15926 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
15927 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
15928 evaluate to 0 if it's impossible for NINF to be in the respective
15929 table.
15930 (yygetLRActions, yyrecoverParseError): Use them.
15931
15932 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
15933 counted in the token inserted at end of file. Now takes
15934 location_t *, not location_t, so that the location can be
15935 adjusted. All uses changed.
15936
15937 * tests/regression.at (Invalid inputs): Adjust wording in
15938 diagnostic to match the new behavior.
15939
15940 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
15941 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
15942 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
15943 abort ();'. This reduces the runtime of the "Many lookaheads"
15944 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
15945 GCC 3.2.
15946
15947 2002-11-07 Paul Eggert <eggert@twinsun.com>
15948
15949 * src/parse-gram.y (CHARACTER): Remove unused token.
15950 All uses removed.
15951
15952 * src/scan-gram.l: Remove stack option. We no longer use the
15953 stack, since the stack was never deeper than 1; instead, use the
15954 new auto var c_context to record the stacked value.
15955
15956 Remove nounput option. At an unexpected end of file, we now unput
15957 the minimal input necessary to end cleanly; this simplifies the
15958 code.
15959
15960 Avoid unbounded token sizes where this is easy.
15961
15962 (unexpected_end_of_file): New function.
15963 Use it to systematize the error message on unexpected EOF.
15964 (last-string): Now auto, not static.
15965 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
15966 (scanner_last_string_free): Remove; not used.
15967 (percent_percent_count): Move decl to just before use.
15968 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
15969 not the (never otherwised-used) CHARACTER.
15970
15971 2002-11-07 Akim Demaille <akim@epita.fr>
15972
15973 Let yyerror always receive the msg as last argument, so that
15974 yyerror can be variadic.
15975
15976 * data/yacc.c (b4_yyerror_args): New.
15977 Use it when calling yyerror.
15978 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
15979 Use it when calling yyerror.
15980 * doc/bison.texinfo (Error Reporting): Adjust.
15981 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
15982 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
15983
15984 2002-11-06 Akim Demaille <akim@epita.fr>
15985
15986 #line should have quoted strings.
15987 Ideally, this should be done by m4_quotearg.
15988
15989 * src/scan-skel.l: Include quotearg.h.
15990 Quote __ofile__.
15991 * src/output.c (symbol_printers_output)
15992 (symbol_destructors_output): Quote the file name.
15993
15994 2002-11-06 Akim Demaille <akim@epita.fr>
15995
15996 * tests/regression.at (Invalid inputs): Adjust to the recent
15997 messages.
15998
15999 2002-11-06 Akim Demaille <akim@epita.fr>
16000
16001 Restore --no-lines.
16002 Reported by Jim Kent.
16003
16004 * data/c.m4 (b4_syncline): New.
16005 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
16006 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
16007 * src/output.c (user_actions_output): Likewise.
16008 (prepare): Define 'b4_synclines_flag'.
16009 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
16010
16011 2002-11-06 Akim Demaille <akim@epita.fr>
16012
16013 * src/main.c (main): Free `infile'.
16014 * src/scan-gram.l (handle_syncline): New.
16015 Recognize `#line'.
16016 * src/output.c (user_actions_output, symbol_destructors_output)
16017 (symbol_printers_output): Use the location's file name, not
16018 infile.
16019 * src/reader.c (prologue_augment, epilogue_set): Likewise.
16020
16021 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16022
16023 * src/tables.c (matching_state): Don't allow states to match if
16024 either has GLR conflict entries.
16025
16026 2002-11-05 Paul Eggert <eggert@twinsun.com>
16027
16028 * src/scan-gram.l: Use more accurate diagnostics, e.g.
16029 "integer out of range" rather than "invalid value".
16030 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
16031 accordingly.
16032
16033 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
16034 Also, remove one static variable in the scanner.
16035
16036 * src/scan-gram.l (braces_level): Now auto, not static.
16037 Initialize to zero if the compiler is being picky.
16038 (INITIAL): Clear braces_level instead of incrementing it.
16039 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
16040 as POSIX 1003.1-2001 requires.
16041 * src/system.h (IF_LINT): New macro, taken from coreutils.
16042 * configure.ac: Define "lint" if --enable-gcc-warnings.
16043
16044 2002-11-05 Akim Demaille <akim@epita.fr>
16045
16046 * src/scan-gram.l: When it starts with `%', complain about the
16047 whole directive, not just that `invalid character: %'.
16048
16049 2002-11-04 Akim Demaille <akim@epita.fr>
16050
16051 * Makefile.maint: Update from Autoconf.
16052 (update, cvs-update, po-update, do-po-update): New.
16053
16054 2002-11-04 Akim Demaille <akim@epita.fr>
16055
16056 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
16057 and yyerror.
16058 Have yyerror `use' its arguments.
16059 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
16060 returns true when location & yacc & pure & parse-param.
16061 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
16062
16063 2002-11-04 Akim Demaille <akim@epita.fr>
16064
16065 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
16066 clashes.
16067 * src/scan-gram.l: Use [\'] instead of ['] to pacify
16068 font-lock-mode.
16069 Use complain_at.
16070 Use quote, not quote_n since LOCATION_PRINT no longer uses the
16071 slot 0.
16072
16073 2002-11-03 Paul Eggert <eggert@twinsun.com>
16074
16075 * src/reader.c (get_merge_function, grammar_current_rule_check):
16076 Use consistent diagnostics for reporting type name clashes.
16077 Quote the types with <>, for consistency with Yacc.
16078 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
16079
16080 2002-11-03 Akim Demaille <akim@epita.fr>
16081
16082 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
16083 New.
16084 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
16085 (b4_parse_param): Remove.
16086 Use b4_identification.
16087 Propagate b4_pure_args where needed to pass them to yyerror.
16088 * data/glr.m4 (b4_parse_param): Remove.
16089 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
16090 (b4_lpure_formals): New.
16091 Use b4_identification.
16092 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
16093 b4_user_formals and b4_user_args.
16094 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
16095 (yyreportAmbiguity): When using a pure parser, also need
16096 the location, and the parse-params.
16097 Adjust callers.
16098 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
16099 When using a pure parser, also need the parse-params.
16100 Adjust callers.
16101 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
16102 (%pure-parser + %parse-param) LALR and GLR parsers.
16103 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
16104 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
16105 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
16106 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
16107 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
16108 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
16109 * doc/bison.texinfo: Untabify the whole file.
16110 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
16111 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
16112 (Error Reporting): Adjust to these new directives.
16113 Document %error-verbose, deprecate YYERROR_VERBOSE.
16114
16115 2002-11-03 Akim Demaille <akim@epita.fr>
16116
16117 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
16118 AT_CHECK_CALC_GLR invocations to use % directives, instead of
16119 command line options.
16120 * tests/cxx-type.at: Formatting changes.
16121
16122 2002-11-03 Paul Eggert <eggert@twinsun.com>
16123
16124 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
16125 to count columns correctly, and to check for invalid inputs.
16126
16127 Use mbsnwidth to count columns correctly. Account for tabs, too.
16128 Include mbswidth.h.
16129 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
16130 (extend_location): New function.
16131 (YY_LINES): Remove.
16132
16133 Handle CRLF in C code rather than in Lex code.
16134 (YY_INPUT): New macro.
16135 (no_cr_read): New function.
16136
16137 Scan UCNs, even though we don't fully handle them yet.
16138 (convert_ucn_to_byte): New function.
16139
16140 Handle backslash-newline correctly in C code.
16141 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
16142 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
16143 all uses changed.
16144 (tag, splice): New EREs. Do not allow NUL or newline in tags.
16145 Use {splice} wherever C allows backslash-newline.
16146 YY_STEP after space, newline, vertical-tab.
16147 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
16148
16149 (letter, id): Don't assume ASCII; e.g., spell out a-z.
16150
16151 ({int}, handle_action_dollar, handle_action_at): Check for integer
16152 overflow.
16153
16154 (YY_STEP): Omit trailing semicolon, so that it's more like C.
16155
16156 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
16157 as well as \000. Check for UCHAR_MAX, not 255.
16158 Allow \x with an arbitrary positive number of digits, as in C.
16159 Check for overflow here.
16160 Allow \? and UCNs, for compatibility with C.
16161
16162 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
16163 with quote slot used by complain_at.
16164
16165 * tests/input.at: Add tests for backslash-newline, m4 quotes
16166 in symbols, long literals, and funny escapes in strings.
16167
16168 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
16169 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
16170 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
16171 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
16172 * m4/mbswidth.m4: New file, from GNU coreutils.
16173
16174 * doc/bison.texinfo (Grammar Outline): Document // comments.
16175 (Symbols): Document that trigraphs have no special meaning in Bison,
16176 nor is backslash-newline allowed.
16177 (Actions): Document that trigraphs have no special meaning.
16178
16179 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
16180 no longer used.
16181
16182 2002-11-02 Paul Eggert <eggert@twinsun.com>
16183
16184 * src/reader.c: Don't include quote.h; not needed.
16185 (get_merge_function): Reword warning to be consistent with
16186 type clash diagnostic in grammar_current_rule_check.
16187
16188 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
16189 bug in trigraph handling.
16190
16191 * src/output.c (prepare_symbols): When printing token names,
16192 escape "[" as "@<:@" and likewise for "]".
16193
16194 * src/system.h (errno): Remove declaration, as we are now
16195 assuming C89 or better, and C89 guarantees errno.
16196
16197 2002-10-30 Paul Eggert <eggert@twinsun.com>
16198
16199 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
16200 Check for close failures.
16201 * src/files.h (xfclose): Return void, not int, since it always
16202 returned zero.
16203 * src/files.c (xfclose): Likewise. Report I/O error if ferror
16204 indicates one.
16205 * src/output.c (output_skeleton): Use xfclose rather than fclose
16206 and ferror. xfclose now checks ferror.
16207
16208 * data/glr.c (YYLEFTMOST_STATE): Remove.
16209 (yyreportTree): Use a stack-based leftmost state. This avoids
16210 our continuing battles with bogus warnings about initializers.
16211
16212 2002-10-30 Akim Demaille <akim@epita.fr>
16213
16214 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
16215 #if.
16216
16217 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16218
16219 * tests/glr-regr1.at: New test for reported regressions.
16220 * tests/testsuite.at: Add glr-regr1.at test.
16221 * tests/Makefile.am: Add glr-regr1.at test.
16222
16223 2002-10-24 Paul Eggert <eggert@twinsun.com>
16224
16225 Version 1.75a.
16226
16227 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
16228 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
16229 we use malloc. Don't assume 'A' through 'Z' are contiguous.
16230 Don't assume strdup exists; POSIX says its an XSI extension.
16231 Check for buffer overflow on input.
16232
16233 2002-10-24 Akim Demaille <akim@epita.fr>
16234
16235 * src/output.c (output_skeleton): Don't disable M4sugar comments
16236 too soon: it results in comments being expanded.
16237 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
16238 first output.
16239
16240 2002-10-24 Akim Demaille <akim@epita.fr>
16241
16242 * data/yacc.c (m4_int_type): New.
16243 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
16244 char' as only yacc.c wants K&R portability.
16245 * data/glr.c (yysigned_char): Remove.
16246 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
16247 Reported by Quoc Peyrot.
16248
16249 2002-10-23 Paul Eggert <eggert@twinsun.com>
16250
16251 * src/main.c (main): With --trace=time, report times even if a
16252 non-fatal error occurs. Formerly, the times were reported in some
16253 such cases but not in others.
16254 * src/reader.c (reader): Just return if a complaint has been issued,
16255 instead of exiting, so that 'main' can report times.
16256
16257 2002-10-22 Akim Demaille <akim@epita.fr>
16258
16259 * src/system.h: Include sys/types.
16260 Reported by Bert Deknuydt.
16261
16262 2002-10-23 Paul Eggert <eggert@twinsun.com>
16263
16264 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
16265 Suggested by Art Haas.
16266
16267 2002-10-22 Paul Eggert <eggert@twinsun.com>
16268
16269 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
16270 decl; not needed any more.
16271 * src/main.c (main): Use return to exit, undoing yesterday's change.
16272 The last OS that we could find where this wouldn't work is
16273 SunOS 3.5, and that's too old to worry about now.
16274
16275 * data/glr.c (struct yyltype): Define members even when not
16276 doing locations. This is more consistent with yacc.c, and it
16277 works around the following bug reports:
16278 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
16279 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
16280
16281 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
16282 @acronym consistently. Standardize on "Yacc" instead of "YACC",
16283 "Algol" instead of "ALGOL". Give a bit more history about BNF.
16284
16285 2002-10-22 Akim Demaille <akim@epita.fr>
16286
16287 * data/README: New.
16288
16289 2002-10-21 Paul Eggert <eggert@twinsun.com>
16290
16291 Be consistent about 'bool'; the old code used an enum in one
16292 module and an int in another, and this violates the C standard.
16293 * m4/stdbool.m4: New file, from coreutils 4.5.3.
16294 * configure.ac (AC_HEADER_STDBOOL): Add.
16295 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
16296 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
16297 * src/symtab.c (hash_compare_symbol_t): Likewise.
16298 * src/system.h (bool, false, true): Use a definition consistent
16299 with ../lib/hash.c. All uses changed.
16300
16301 * src/complain.c (warning_issued): Renamed from warn_message_count,
16302 so that we needn't worry about integer overflow (!).
16303 Now of type bool. All uses changed.
16304 (complaint_issued): Renamed from complain_message_count; likewise.
16305
16306 * src/main.c (main): Use exit to exit with failure.
16307
16308 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
16309 rather than 1 and 0.
16310 * src/main.c (main): Likewise.
16311 * src/getargs.c (getargs): Likewise.
16312 * src/reader.c (reader): Likewise.
16313
16314 * src/getarg.c (getargs): Remove duplicate code for
16315 "Try `bison --help'".
16316
16317 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
16318 What was that "2" for?
16319
16320 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
16321 * src/getargs.c (usage): Likewise.
16322
16323 * src/getargs.c (getargs): When there are too few operands, report
16324 the last one. When there are too many, report the first extra
16325 one. This is how diffutils does it.
16326
16327 2002-10-20 Paul Eggert <eggert@twinsun.com>
16328
16329 Remove K&R vestiges.
16330 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
16331 * src/complain.c (VA_START): Remove. Assume prototypes.
16332 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
16333 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
16334 fatal): Assume prototypes.
16335 * src/complain.h: Assume prototypes.
16336 * src/system.h (PARAMS): Remove.
16337 Include <limits.h> unconditionally, since it's guaranteeed even
16338 for a freestanding C89 compiler.
16339 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
16340 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
16341
16342 2002-10-20 Akim Demaille <akim@epita.fr>
16343
16344 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
16345 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
16346 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
16347 (yyresolveStates, yyresolveAction, yyresolveStack)
16348 (yyprocessOneStack): Use them.
16349 (yy_reduce_print): New.
16350 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
16351
16352 2002-10-20 Akim Demaille <akim@epita.fr>
16353
16354 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
16355 arguments and output `void'.
16356 (b4_c_function): Rename as...
16357 (b4_c_function_def): this.
16358 (b4_c_function_decl, b4_c_ansi_function_def)
16359 (b4_c_ansi_function_decl): New.
16360 Change the interpretation of the arguments: before `int, foo', now
16361 `int foo, foo'.
16362 * data/yacc.c (yyparse): Prototype and define thanks to these.
16363 Adjust b4_c_function_def uses.
16364 * data/glr.c (yyparse): Likewise, but ANSI only.
16365
16366 2002-10-20 Akim Demaille <akim@epita.fr>
16367
16368 * src/output.c (prepare): Move the definition of `tokens_number',
16369 `nterms_number', `undef_token_number', `user_token_number_max'
16370 to...
16371 (prepare_tokens): Here.
16372 (prepare_tokens): Rename as...
16373 (prepare_symbols): this.
16374 (prepare): Move the definition of `rules_number' to...
16375 (prepare_rules): here.
16376 (prepare): Move the definition of `last', `final_state_number',
16377 `states_number' to...
16378 (prepare_states): here.
16379 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
16380
16381 2002-10-20 Akim Demaille <akim@epita.fr>
16382
16383 * src/tables.h, src/tables.c, src/output.c: Comment changes.
16384
16385 2002-10-20 Akim Demaille <akim@epita.fr>
16386
16387 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
16388 * data/c.m4: here.
16389
16390 2002-10-20 Akim Demaille <akim@epita.fr>
16391
16392 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
16393 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
16394 `pair'.
16395 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
16396 `name' to...
16397 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
16398 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
16399 These.
16400
16401 2002-10-19 Paul Eggert <eggert@twinsun.com>
16402
16403 Do not create a temporary file, as that involves security and
16404 cleanup headaches. Instead, use a pair of pipes.
16405 Derived from a suggestion by Florian Krohm.
16406 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
16407 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
16408 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
16409 (BISON_PREREQ_SUBPIPE): Add.
16410 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
16411 Add subpipe.h, subpipe.c.
16412 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
16413 * po/POTFILES.in: Add lib/subpipe.c.
16414 * src/output.c: Include "subpipe.h".
16415 (m4_invoke): Remove decl.
16416 (scan_skel): New decl.
16417 (output_skeleton): Use pipe rather than temporary file for m4 input.
16418 Check that m4sugar.m4 is readable, to avoid deadlock.
16419 Check for pipe I/O error.
16420 * src/scan-skel.l (readpipe): Remove decl.
16421 (scan_skel): New function, to be used in place of m4_invoke.
16422 Read from stream rather than file.
16423
16424 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
16425 float, as this generates a warning on Solaris 8 + GCC 3.2 with
16426 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
16427 this generates a more-accurate value anyway.
16428
16429 * lib/timevar.c (timervar_accumulate): Rename locals to
16430 avoid confusion with similarly-named more-global.
16431 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
16432
16433 * src/output.c (prepare): Use xstrdup to convert char const *
16434 to char *, to avoid GCC warning.
16435
16436 2002-10-19 Akim Demaille <akim@epita.fr>
16437
16438 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
16439 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
16440 Use them to have `calc.y' ready for %pure-parser.
16441 * data/yacc.c (YYLEX): Pass a yylex return type to
16442 b4_c_function_call.
16443
16444 2002-10-19 Akim Demaille <akim@epita.fr>
16445
16446 Prototype support of %lex-param and %parse-param.
16447
16448 * src/parse-gram.y: Add the definition of the %lex-param and
16449 %parse-param tokens, plus their rules.
16450 Drop the `_' version of %glr-parser.
16451 Add the "," token.
16452 * src/scan-gram.l (INITIAL): Scan them.
16453 * src/muscle_tab.c: Comment changes.
16454 (muscle_insert, muscle_find): Rename `pair' as `probe'.
16455 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
16456 (muscle_entry_s): The `value' member is no longer const.
16457 Adjust all dependencies.
16458 * src/muscle_tab.c (muscle_init): Adjust: use
16459 MUSCLE_INSERT_STRING.
16460 Initialize the obstack earlier.
16461 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
16462 (muscle_pair_list_grow): New.
16463 * data/c.m4 (b4_c_function_call, b4_c_args): New.
16464 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
16465 * tests/calc.at: Use %locations, not --locations.
16466 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
16467
16468 2002-10-19 Akim Demaille <akim@epita.fr>
16469
16470 * src/getargs.c (usage): Take status as argument and exit
16471 accordingly.
16472 Report the traditional `Try ... --help' message when status != 0.
16473 (usage, version): Don't take a FILE * as arg, it is pointless.
16474 (getargs): When there is an incorrect number of arguments, make it
16475 an error, and report it GNUlically thanks to `usage ()'.
16476
16477 2002-10-18 Paul Eggert <eggert@twinsun.com>
16478
16479 * data/glr.c (yyreportParseError): Don't assume that sprintf
16480 yields the length of the printed string, as this is not true
16481 on SunOS 4.1.4. Reported by Peter Klein.
16482
16483 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
16484 * tests/conflicts.at (%nonassoc and eof): Likewise.
16485 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
16486
16487 2002-10-17 Akim Demaille <akim@epita.fr>
16488
16489 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
16490 * src/getargs.c (trace_types, trace_args): Adjust.
16491 * src/reader.c (grammar_current_rule_prec_set)
16492 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
16493 Standardize error messages.
16494 And s/@prec/%prec/!
16495 (reader): Use trace_flag to enable scanner/parser debugging,
16496 instead of an adhoc scheme.
16497 * src/scan-gram.l: Remove trailing debugging code.
16498
16499 2002-10-16 Paul Eggert <eggert@twinsun.com>
16500
16501 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
16502 MUSCLE_TAB_H.
16503
16504 * NEWS: Officially drop support for building Bison with K&R C,
16505 since it didn't work anyway and it's not worth worrying about.
16506 * Makefile.maint (wget_files): Remove ansi2knr.c.
16507 (ansi2knr.c-url_prefix): Remove.
16508 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
16509 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16510 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16511
16512 2002-10-15 Paul Eggert <eggert@twinsun.com>
16513
16514 Stop using the "enum_" trick for K&R-style function definitions;
16515 it confused me, and I was the author! Instead, assume that people
16516 who want to use K&R C compilers (when using these modules in GCC,
16517 perhaps?) will run ansi2knr.
16518
16519 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
16520 All uses of "enum_" changed to "enum ".
16521 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16522 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16523
16524 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
16525 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
16526 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
16527 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
16528 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
16529 abitset_not, abitset_ones, abitset_or, abitset_or_and,
16530 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
16531 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
16532 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
16533 Use function prototypes; this removes the need for declaring
16534 static functions simply to provide their prototypes.
16535 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
16536 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
16537 bitset_count_, bitset_create, bitset_dump, bitset_first,
16538 bitset_free, bitset_init, bitset_last, bitset_next,
16539 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
16540 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
16541 bitset_print, bitset_release_memory, bitset_toggle_,
16542 bitset_type_choose, bitset_type_get, bitset_type_name_get,
16543 debug_bitset): Likewise.
16544 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
16545 * lib/bitset_stats.c (bitset_log_histogram_print,
16546 bitset_percent_histogram_print, bitset_stats_and,
16547 bitset_stats_and_cmp, bitset_stats_and_or,
16548 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
16549 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
16550 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
16551 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
16552 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
16553 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
16554 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
16555 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
16556 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
16557 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
16558 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
16559 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
16560 bitset_stats_zero): Likewise.
16561 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16562 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16563 bitsetv_dump, debug_bitsetv): Likewise.
16564 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
16565 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
16566 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
16567 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
16568 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
16569 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
16570 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
16571 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
16572 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
16573 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
16574 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
16575 Likewise.
16576 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
16577 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
16578 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
16579 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
16580 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
16581 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
16582 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
16583 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
16584 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
16585 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
16586 lbitset_xor_cmp, lbitset_zero): Likewise.
16587
16588 2002-10-14 Akim Demaille <akim@epita.fr>
16589
16590 Version 1.75.
16591
16592 2002-10-14 Akim Demaille <akim@epita.fr>
16593
16594 * tests/Makefile.am (maintainer-check-posix): New.
16595
16596 2002-10-14 Akim Demaille <akim@epita.fr>
16597
16598 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
16599 member.
16600
16601 2002-10-14 Akim Demaille <akim@epita.fr>
16602
16603 * src/tables.c (table_ninf_remap): base -> tab.
16604 Reported by Matt Rosing.
16605
16606 2002-10-14 Paul Eggert <eggert@twinsun.com>
16607
16608 * tests/action.at, tests/calc.at, tests/conflicts.at,
16609 tests/cxx-type.at, tests/headers.at, tests/input.at,
16610 tests/regression.at, tests/synclines.at, tests/torture.at:
16611 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
16612 so that the tests still work even if POSIXLY_CORRECT is set.
16613 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
16614
16615 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
16616 for portability to K&R hosts. Fix typo: signed char is guaranteed
16617 only to 127, not to 128.
16618 * data/glr.c (yysigned_char): New type.
16619 * data/yacc.c (yysigned_char): Likewise.
16620 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
16621
16622 2002-10-13 Paul Eggert <eggert@twinsun.com>
16623
16624 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
16625 true due to limited range of data type" warning from GCC.
16626
16627 * data/c.m4 (b4_token_defines): Protect against double-inclusion
16628 by wrapping enum yytokentype's definition inside #ifndef
16629 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
16630
16631 2002-10-13 Akim Demaille <akim@epita.fr>
16632
16633 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
16634 Un yy- yyrhs to avoid the name clash with the global YYRHS.
16635
16636 2002-10-13 Akim Demaille <akim@epita.fr>
16637
16638 * Makefile.maint: Update from Autoconf 2.54.
16639 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
16640
16641 2002-10-13 Akim Demaille <akim@epita.fr>
16642
16643 * src/print.c (print_state): Separate the list of solved conflicts
16644 from the other items.
16645 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
16646
16647 2002-10-13 Akim Demaille <akim@epita.fr>
16648
16649 Let nondeterministic skeletons be usable with deterministic
16650 tables.
16651
16652 With the patch, GAWK compiled by GCC without -O2 passes its test
16653 suite using a GLR parser driven by LALR tables. It fails with -O2
16654 because `struct stat' gives two different answers on my machine:
16655 88 (definition of an auto var) and later 96 (memset on this var).
16656 Hence the stack is badly corrumpted. The headers inclusion is to
16657 blame: if I move the awk.h inclusion before GLR's system header
16658 inclusion, the two struct stat have the same size.
16659
16660 * src/tables.c (pack_table): Always create conflict_table.
16661 (token_actions): Always create conflict_list.
16662 * data/glr.c (YYFLAG): Remove, unused.
16663
16664 2002-10-13 Akim Demaille <akim@epita.fr>
16665
16666 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
16667 (O0FLAGS): New.
16668 (VALGRIND, GXX): New.
16669 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
16670 * tests/bison.in: Run $PREBISON a pre-command.
16671 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
16672 (maintainer-check-g++): New.
16673 * Makefile.am (maintainer-check): New.
16674
16675 2002-10-13 Akim Demaille <akim@epita.fr>
16676
16677 * data/glr.c: Formatting changes.
16678 Tweak some trace messages to match yacc.c's.
16679
16680 2002-10-13 Akim Demaille <akim@epita.fr>
16681
16682 GLR parsers sometimes raise parse errors instead of performing the
16683 default reduction.
16684 Reported by Charles-Henry de Boysson.
16685
16686 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
16687 check the length of the traces when %glr.
16688 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
16689 GLR's traces.
16690 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
16691 Test GLR parsers.
16692 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
16693 (yyltype): Remove the yy prefix from the member names.
16694 (yytable): Complete its comment.
16695 (yygetLRActions): Map error action number from YYTABLE from
16696 YYTABLE_NINF to 0.
16697 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
16698 (which was a bug: it should have been YYTABEL_NINF, and yet it was
16699 not satisfying as we could compare an YYACTION computed from
16700 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
16701 only value for error actions.
16702 (yyreportParseError): In verbose parse error messages, don't issue
16703 `error' in the list of expected tokens.
16704 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
16705 next action to perform to match glr.c's decoding.
16706 (yytable): Complete its comment.
16707
16708 2002-10-13 Paul Eggert <eggert@twinsun.com>
16709
16710 Fix problem reported by Henrik Grubbstroem in
16711 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
16712 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
16713 because the Bison parser reads the second action before reducing
16714 the first one.
16715 * src/scan-gram.l (rule_length): New static var.
16716 Use it to keep track of the rule length in the scanner, since
16717 we can't expect the parser to be in lock-step sync with the scanner.
16718 (handle_action_dollar, handle_action_at): Use this var.
16719 * tests/actions.at (Exotic Dollars): Test for the problem.
16720
16721 2002-10-12 Paul Eggert <eggert@twinsun.com>
16722
16723 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
16724 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
16725 Include <sys/time.h> when checking for clock_t and struct tms.
16726 Use same include order as source.
16727 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
16728 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
16729
16730 * lib/timevar.c: Update copyright date and clarify comments.
16731 (get_time) [IN_GCC]: Keep the GCC version for reference.
16732
16733 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
16734 GCC version as of today, then merge Bison's changes.
16735 Change "GCC" to "Bison" in copyright notice. timevar.def's
16736 author is Akim, so change that too.
16737
16738 * src/reader.c (grammar_current_rule_check):
16739 Don't worry about the default action if $$ is untyped.
16740 Prevents bogus warnings reported by Jim Gifford in
16741 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
16742
16743 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
16744 * data/glr.c, data/lalr1.cc, data/yacc.c:
16745 Output token definitions before the first part of user declarations.
16746 Fixes compatibility problem reported by Jim Gifford for kbd in
16747 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
16748
16749 2002-10-11 Paul Eggert <eggert@twinsun.com>
16750
16751 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
16752 (yyparse): here. This undoes some of the 2002-07-25 change.
16753 Compatibility problem reported by Ralf S. Engelschall with
16754 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
16755
16756 2002-10-11 Akim Demaille <akim@epita.fr>
16757
16758 * tests/regression.at Characters Escapes): New.
16759 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
16760 characters.
16761 Reported by Jan Nieuwenhuizen.
16762
16763 2002-10-11 Akim Demaille <akim@epita.fr>
16764
16765 * po/id.po: New.
16766
16767 2002-10-10 Paul Eggert <eggert@twinsun.com>
16768
16769 Portability fixes for bitsets; this also avoids several GCC
16770 warnings.
16771
16772 * lib/abitset.c: Include <stddef.h>, for offsetof.
16773 * lib/lbitset.c: Likewise.
16774
16775 * lib/abitset.c (abitset_bytes): Return a size that is aligned
16776 properly for vectors of objects. Do not assume that adding a
16777 header size to a multiple of a word size yields a value that is
16778 properly aligned for the whole union.
16779 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16780
16781 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
16782 unique names for structures.
16783 * lib/ebitset.c (ebitset_bytes): Likewise.
16784 * lib/lbitset.c (lbitset_bytes): Likewise.
16785
16786 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
16787 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
16788 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
16789 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
16790 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
16791 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
16792 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
16793 to improve the type-checking that GCC can do.
16794 * lib/bitset.c (bitset_op4_cmp): Likewise.
16795 * lib/bitset_stats.c (bitset_stats_count,
16796 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
16797 bitset_stats_copy, bitset_stats_disjoint_p,
16798 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
16799 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
16800 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
16801 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
16802 bitset_stats_and_or_cmp, bitset_stats_andn_or,
16803 bitset_stats_andn_or_cmp, bitset_stats_or_and,
16804 bitset_stats_or_and_cmp): Likewise.
16805 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
16806 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
16807 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
16808 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
16809
16810 * lib/abitset.h: Include bitset.h, not bbitset.h.
16811 * lib/ebitset.h: Likewise.
16812 * lib/lbitset.h: Likewise.
16813
16814 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
16815 All instances of parameters of type enum bitset_opts are now of
16816 type enum_bitset_opts, to conform to the C Standard, and similarly
16817 for enum_bitset_type.
16818 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16819 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16820
16821 Do not use "struct bitset_struct" to mean different things in
16822 different modules. Not only is this confusing, it violates
16823 the C Standard, which requires that structure types in different
16824 modules must be compatible if one is to be passed to the other.
16825 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
16826 All instances of "struct bitset_struct *" replaced with "bitset".
16827 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
16828 (union bitset_union, struct abitset_struct, struct ebitset_struct,
16829 struct lbitset_struct, struct bitset_stats_struct): New types.
16830 All uses of struct bitset_struct changed to union bitset_union,
16831 etc.
16832 * lib/abitset.c (struct abitset_struct, abitset,
16833 struct bitset_struct): Remove.
16834 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
16835 struct bitset_struct): Remove.
16836 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
16837 bitset_struct): Remove.
16838 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
16839 Likewise.
16840
16841 Do not call a function of type T using a call that assumes the
16842 function is of a different type U. Standard C requires that a
16843 function must be called with a type that is compatible with its
16844 definition.
16845 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16846 New decls.
16847 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16848 New functions.
16849 * lib/ebitset.c (PFV): Remove.
16850 * lib/lbitset.c (PFV): Likewise.
16851 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
16852 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
16853 decls.
16854 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
16855 (ebitset_vtable): Use them.
16856 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
16857 lbitset_xor): New functions.
16858 (lbitset_vtable): Use them.
16859
16860 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
16861 Declare.
16862
16863 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
16864 GCC warning.
16865 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
16866 Use offsetof, for simplicity.
16867
16868 2002-10-06 Paul Eggert <eggert@twinsun.com>
16869
16870 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
16871 the same width as int. This reapplies a hunk of the 2002-08-12 patch
16872 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
16873 which was inadvertently undone by the 2002-09-30 patch.
16874 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
16875 the same width as int.
16876
16877 2002-10-04 Paul Eggert <eggert@twinsun.com>
16878
16879 Version 1.50.
16880
16881 * configure.ac (AC_INIT), NEWS: Increment version number.
16882
16883 * doc/bison.texinfo: Minor spelling, grammar, and white space
16884 fixes.
16885 (Symbols): Mention that any negative value returned from yylex
16886 signifies end-of-input. Warn about negative chars. Mention
16887 the portable Standard C character set.
16888
16889 The GNU coding standard says CFLAGS and YFLAGS are reserved
16890 for the installer to set.
16891 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
16892 * src/Makefile.am (AM_CFLAGS): Likewise.
16893 (AM_YFLAGS): Renamed from YFLAGS.
16894
16895 Fix some MAX and MIN problems.
16896 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
16897 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
16898 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
16899 * src/reader.c (reader): Use it.
16900
16901 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
16902 POSIX 1003.1-2001 has removed fgrep.
16903
16904 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
16905
16906 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
16907 interpreted as signed.
16908 * lib/ebitset.c (ebitset_list): Fix bug.
16909
16910 2002-10-01 Paul Eggert <eggert@twinsun.com>
16911
16912 More fixes for 64-bit hosts and large bitsets.
16913
16914 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
16915 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
16916 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
16917 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
16918 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
16919 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
16920 bitset_count_): Likewise.
16921 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
16922 bitset_first, bitset_last): Likewise.
16923 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
16924 bitset_stats_list_reverse, bitset_stats_size,
16925 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
16926 Likewise.
16927 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16928 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16929 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16930 bitsetv_reflexive_transitive_closure): Likewise.
16931 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
16932 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
16933 Likewise.
16934 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
16935 Likewise.
16936
16937 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
16938 Use size_t, not unsigned int, to count bytes.
16939 * lib/abitset.h (abitset_bytes): Likewise.
16940 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
16941 Likewise.
16942 * lib/bitset.h (bitset_bytes): Likewise.
16943 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
16944 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
16945 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16946 * lib/ebitset.c (ebitset_bytes): Likewise.
16947 * lib/ebitset.h (ebitset_bytes): Likewise.
16948 * lib/lbitset.c (lbitset_bytes): Likewise.
16949 * lib/lbitset.h (lbitset_bytes): Likewise.
16950
16951 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
16952 abitset_subset_p, abitset_disjoint_p, abitset_and,
16953 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
16954 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
16955 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
16956 abitset_or_and, abitset_or_and_cmp):
16957 Use bitset_windex instead of unsigned int.
16958 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16959 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
16960 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
16961 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
16962 Likewise.
16963 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
16964
16965 * lib/bitset.c (bitset_print):
16966 Use proper printf formats for widths of integer types.
16967 * lib/bitset_stats.c (bitset_percent_histogram_print,
16968 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
16969 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16970 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16971 * lib/lbitset.c (lbitset_bytes): Likewise.
16972
16973 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
16974 BITSET_SIZE_MAX): New macros.
16975 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
16976 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
16977 to BITSET_WINDEX_MAX.
16978
16979 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
16980 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
16981 since we now return the bitset_bindex type (not int).
16982
16983 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
16984 when computing sizes.
16985 * lib/ebitset.c (ebitset_elts_grow): Likewise.
16986
16987 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
16988 and avoid cast to unsigned.
16989
16990 2002-09-30 Akim Demaille <akim@epita.fr>
16991
16992 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
16993 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
16994 Updates from Michael Hayes.
16995
16996 2002-09-30 Art Haas <ahaas@neosoft.com>
16997
16998 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
16999 invocations.
17000 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
17001 defined.
17002
17003 2002-09-27 Akim Demaille <akim@epita.fr>
17004
17005 Version 1.49c.
17006
17007 2002-09-27 Akim Demaille <akim@epita.fr>
17008
17009 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
17010 (Because of AC_LIBSOURCE).
17011
17012 2002-09-27 Akim Demaille <akim@epita.fr>
17013
17014 Playing with Autoscan.
17015
17016 * configure.ac: Remove the old LIBOBJ tweaks.
17017 (AC_REPLACE_FUNCS): Add strrchr and strtol.
17018 * lib/strrchr.c: New.
17019 * lib/strtol.c: New, from the Coreutils 4.5.1.
17020
17021 2002-09-27 Akim Demaille <akim@epita.fr>
17022
17023 Playing with Autoscan.
17024
17025 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
17026 * lib/Makefile.am (libbison_a_SOURCES): No longer include
17027 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
17028 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
17029 Coreutils 4.5.1.
17030
17031 2002-09-24 Akim Demaille <akim@epita.fr>
17032
17033 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
17034 (Frequently Asked Questions, Parser Stack Overflow): New.
17035
17036 2002-09-13 Akim Demaille <akim@epita.fr>
17037
17038 Playing with autoscan.
17039
17040 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
17041 * src/files.c (skeleton_find): Remove, unused.
17042 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
17043 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
17044
17045 2002-09-13 Akim Demaille <akim@epita.fr>
17046
17047 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
17048 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
17049
17050 2002-09-13 Akim Demaille <akim@epita.fr>
17051
17052 * configure.ac: Require 2.54.
17053 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
17054 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
17055 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
17056 Remove, provided by Autoconf macros.
17057
17058 2002-09-12 Akim Demaille <akim@epita.fr>
17059
17060 * m4/prereq.m4: Update, from Coreutils 4.5.1.
17061
17062 2002-09-12 Akim Demaille <akim@epita.fr>
17063
17064 * m4/prereq.m4: Update, from Fileutils 4.1.5.
17065 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
17066 Reported by Martin Mokrejs.
17067
17068 2002-09-10 Akim Demaille <akim@epita.fr>
17069
17070 * src/parse-gram.y: Associate a human readable string to each
17071 token type.
17072 * tests/regression.at (Invalid inputs): Adjust.
17073
17074 2002-09-10 Gary V. Vaughan <gary@gnu.org>
17075
17076 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
17077 with an Autoconf-2.5x style configure.ac.
17078
17079 2002-09-06 Paul Eggert <eggert@twinsun.com>
17080
17081 * doc/bison.texinfo (Conditions): Make explicit that the GPL
17082 exception applies only to yacc.c. This is a modification of a
17083 patch originally suggested by Akim Demaille.
17084
17085 2002-09-06 Akim Demaille <akim@epita.fr>
17086
17087 * data/c.m4 (b4_copyright): Move the GPL exception comment from
17088 here to...
17089 * data/yacc.c: here.
17090
17091 * data/lalr1.cc (struct yyltype): Don't define it, since we use
17092 LocationType.
17093 (b4_ltype): Default to yy::Location from location.hh.
17094
17095 2002-09-04 Jim Meyering <jim@meyering.net>
17096
17097 * data/yacc.c: Guard the declaration of yytoknum also with
17098 `#ifdef YYPRINT', so it is declared only when used.
17099
17100 2002-09-04 Akim Demaille <akim@epita.fr>
17101
17102 * configure.in: Rename as...
17103 * configure.ac: this.
17104 Bump to 1.49c.
17105
17106 2002-09-04 Akim Demaille <akim@epita.fr>
17107
17108 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
17109 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
17110 translate maintainer only messages.
17111
17112 2002-08-12 Paul Eggert <eggert@twinsun.com>
17113
17114 Version 1.49b.
17115
17116 * Makefile.am (SUBDIRS): Remove intl.
17117 (DISTCLEANFILES): Remove.
17118 * NEWS: Mention that GNU M4 is now required. Clarify what is
17119 meant by "larger grammars". Mention the pt_BR translation.
17120 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
17121 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
17122 Bump version from 0.11.2 to 0.11.5.
17123 (BISON_PREREQ_STAGE): Remove.
17124 (AM_GNU_GETTEXT): Use external gettext.
17125 (AC_OUTPUT): Remove intl/Makefile.
17126
17127 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
17128
17129 * data/glr.c: Include string.h, for strlen.
17130 (yyreportParseError): Use size_t for yysize.
17131 (yy_yypstack): No longer nested inside yypstates, as nested
17132 functions are not portable. Do not assume size_t is the
17133 same width as int.
17134 (yypstates): Do not assume that ptrdiff_t is the same width
17135 as int, and similarly for yyposn and YYINDEX.
17136
17137 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
17138
17139 * lib/Makefile.am (INCLUDES): Do not include from the intl
17140 directory, which has been removed.
17141 * src/Makefile.am (INCLUDES): Likewise.
17142
17143 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
17144 (bitsets_sources, additional_bitsets_sources, timevars_sources):
17145 New vars.
17146
17147 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
17148 * tests/Makefile.am (EXTRA_DIST): Likewise.
17149
17150 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
17151 Do not assume that bitset_windex is the same width as unsigned.
17152
17153 * lib/abitset.c (abitset_unused_clear): Do not assume that
17154 bitset_word is the same width as int.
17155 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
17156 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
17157 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
17158 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
17159 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
17160
17161 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
17162 portability to one's complement hosts!).
17163 * lib/ebitset.c (ebitset_op1): Likewise.
17164 * lib/lbitset.c (lbitset_op1): Likewise.
17165
17166 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
17167 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
17168 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
17169 Sync with fileutils.
17170 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
17171 lib/gettext.h: Sync with diffutils.
17172
17173 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
17174 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
17175
17176 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
17177 PROTOTYPES to check for prototypes, and "defined __STDC__" to
17178 check for void *.
17179
17180 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
17181 size_t; the old version tried to do this but casted improperly.
17182 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
17183 (bitset_test): Now returns int, not unsigned long.
17184
17185 * lib/bitset_stats.c: Include "gettext.h".
17186 (_): New macro.
17187 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
17188 name locals "index", as it generates unnecessary warnings on some
17189 hosts that have an "index" function.
17190
17191 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
17192 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
17193 they need translation.
17194 * src/LR0.c (state_list_append, new_itemsets, get_state,
17195 append_states, generate_states): Likewise.
17196 * src/assoc.c (assoc_to_string): Likewise.
17197 * src/closure.c (print_closure, set_firsts, closure): Likewise.
17198 * src/gram.c (grammar_dump): Likewise.
17199 * src/injections.c (injections_compute): Likewise.
17200 * src/lalr.c (lookaheads_print): Likewise.
17201 * src/relation.c (relation_transpose): Likewise.
17202 * src/scan-gram.l: Likewise.
17203 * src/tables.c (table_grow, pack_vector): Likewise.
17204
17205 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
17206 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
17207 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
17208 * m4/mbstate_t.m4: Sync with fileutils.
17209 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
17210
17211 * po/LINGUAS: Add pt_BR.
17212 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
17213 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
17214 lib/timevar.c.
17215 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
17216 manual recommends.
17217 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
17218
17219 * src/complain.c (strerror_r): Remove decl; not needed.
17220 (strerror): Use same pattern as ../lib/error.c.
17221
17222 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
17223
17224 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
17225
17226 * src/main.c (main): Cast result of bindtextdomain and textdomain
17227 to void, to avoid a GCC warning when --disable-nls is in effect.
17228
17229 * src/scan-gram.l: Use strings rather than escapes when possible,
17230 to minimize the number of warnings from xgettext.
17231 (handle_action_dollar, handle_action_at): Don't use isdigit,
17232 as it mishandles negative chars and it may not work as expected
17233 outside the C locale.
17234
17235 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
17236 this is a GCC extension and is not portable to other compilers.
17237
17238 * src/system.h (alloca): Use same pattern as ../lib/error.c.
17239 Do not include <ctype.h>; no longer needed.
17240 Do not include <malloc.h>; no longer needed (and generates
17241 warnings on OpenBSD 3.0).
17242
17243 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
17244 it's not portable.
17245
17246 * tests/regression.at: Do not use 'cc -c input.c -o input';
17247 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
17248
17249 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
17250 exit status as failure, not just exit status 1. Sun C exits
17251 with status 2 sometimes.
17252
17253 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
17254 Use it for the two large tests.
17255
17256 2002-08-02 Akim Demaille <akim@epita.fr>
17257
17258 * src/conflicts.c (conflicts_output): Don't output rules never
17259 reduced here, since anyway that computation doesn't work.
17260 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
17261 (rule_useless_p, rule_never_reduced_p): New.
17262 (grammar_rules_partial_print): Use a filter instead of a range.
17263 Display the title only if needed.
17264 (grammar_rules_print): Adjust.
17265 (grammar_rules_never_reduced_report): New.
17266 * src/tables.c (action_row): Move the computation of rules never
17267 reduced to...
17268 (token_actions): here.
17269 * src/main.c (main): Make the parser before making the report, so
17270 that rules never reduced are computed.
17271 Call grammar_rules_never_reduced_report.
17272 * src/print.c (print_results): Report rules never reduced.
17273 * tests/conflicts.at, tests/reduce.at: Adjust.
17274
17275 2002-08-01 Akim Demaille <akim@epita.fr>
17276
17277 Instead of attaching lookaheads and duplicating the rules being
17278 reduced by a state, attach the lookaheads to the reductions.
17279
17280 * src/state.h (state_t): Remove the `lookaheads',
17281 `lookaheads_rule' member.
17282 (reductions_t): Add a `lookaheads' member.
17283 Use a regular array for the `rules'.
17284 * src/state.c (reductions_new): Initialize the lookaheads member
17285 to 0.
17286 (state_rule_lookaheads_print): Adjust.
17287 * src/state.h, src/state.c (state_reductions_find): New.
17288 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
17289 (count_rr_conflicts): Adjust.
17290 * src/lalr.c (LArule): Remove.
17291 (add_lookback_edge): Adjust.
17292 (state_lookaheads_count): New.
17293 (states_lookaheads_initialize): Merge into...
17294 (initialize_LA): this.
17295 (lalr_free): Adjust.
17296 * src/main.c (main): Don't free nullable and derives too early: it
17297 is used by --verbose.
17298 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
17299
17300 2002-08-01 Akim Demaille <akim@epita.fr>
17301
17302 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
17303 `rule_number_t**'.
17304 (set_derives, free_derives): Rename as...
17305 (derives_compute, derives_free): this.
17306 Adjust all dependencies.
17307 * src/nullable.c (set_nullable, free_nullable): Rename as...
17308 (nullable_compute, nullable_free): these.
17309 (rule_list_t): Store rule_t *, not rule_number_t.
17310 * src/state.c (state_rule_lookaheads_print): Directly compare rule
17311 pointers, instead of their numbers.
17312 * src/main.c (main): Call nullable_free, and derives_free earlier,
17313 as they were lo longer used.
17314
17315 2002-08-01 Akim Demaille <akim@epita.fr>
17316
17317 * lib/timevar.c (get_time): Include children time.
17318 * src/lalr.h (LA, LArule): Don't export them: used with the
17319 state_t.
17320 * src/lalr.c (LA, LArule): Static.
17321 * src/lalr.h, src/lalr.c (lalr_free): New.
17322 * src/main.c (main): Call it.
17323 * src/tables.c (pack_vector): Check whether loc is >= to the
17324 table_size, not >.
17325 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
17326 (tables_generate): do it, since that's also it which allocates
17327 them.
17328 Don't free LA and LArule, main does.
17329
17330 2002-07-31 Akim Demaille <akim@epita.fr>
17331
17332 Separate parser tables computation and output.
17333
17334 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
17335 (conflict_list, conflict_list_cnt, table, check, table_ninf)
17336 (yydefgoto, yydefact, high): Move to...
17337 * src/tables.h, src/tables.c: here.
17338 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17339 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17340 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
17341 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
17342 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
17343 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
17344 (action_row, save_row, token_actions, save_column, default_goto)
17345 (goto_actions, sort_actions, matching_state, pack_vector)
17346 (table_ninf_remap, pack_table, prepare_actions): Move to...
17347 * src/tables.c: here.
17348 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
17349 * src/output.c (token_actions, output_base, output_conflicts)
17350 (output_check): Merge into...
17351 (prepare_actions): this.
17352 (actions_output): Rename as...
17353 (user_actions_output): this.
17354 * src/main.c (main): Call tables_generate and tables_free.
17355
17356 2002-07-31 Akim Demaille <akim@epita.fr>
17357
17358 Steal GCC's --time-report support.
17359
17360 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
17361 stolen/adjusted from GCC.
17362 * m4/stage.m4: Remove time related checks.
17363 * m4/timevar.m4: New.
17364 * configure.in: Adjust.
17365 * src/system.h: Adjust to using timevar.h.
17366 * src/getargs.h, src/getargs.c: Support trace_time for
17367 --trace=time.
17368 * src/main.c (stage): Remove.
17369 (main): Replace `stage' invocations with timevar calls.
17370 * src/output.c: Insert pertinent timevar calls.
17371
17372 2002-07-31 Akim Demaille <akim@epita.fr>
17373
17374 Let --trace have arguments.
17375
17376 * src/getargs.h (enum trace_e): New.
17377 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
17378 (long_options, short_options): --trace/-T takes an optional
17379 argument.
17380 Change all the uses of trace_flag to reflect the new flags.
17381 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
17382
17383 Strengthen `stage' portability.
17384
17385 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
17386 * configure.in: Use it.
17387 Don't check for malloc.h and sys/times.h.
17388 * src/system.h: Include them when appropriate.
17389 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
17390 times and struct tms are available.
17391
17392 2002-07-30 Akim Demaille <akim@epita.fr>
17393
17394 In verbose parse error message, don't report `error' as an
17395 expected token.
17396 * tests/actions.at (Printers and Destructors): Adjust.
17397 * tests/calc.at (Calculator $1): Adjust.
17398 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
17399 error message, do not report the parser accepts the error token in
17400 that state.
17401
17402 2002-07-30 Akim Demaille <akim@epita.fr>
17403
17404 Normalize conflict related messages.
17405
17406 * src/complain.h, src/complain.c (warn, complain): New.
17407 * src/conflicts.c (conflicts_print): Use them.
17408 (conflict_report_yacc): New, extracted from...
17409 (conflicts_print): here.
17410 * tests/conflicts.at, tests/existing.at: Adjust.
17411
17412 2002-07-30 Akim Demaille <akim@epita.fr>
17413
17414 Report rules which are never reduced by the parser: those hidden
17415 by conflicts.
17416
17417 * src/LR0.c (save_reductions): Don't make the final state too
17418 different: save its reduction (accept) instead of having a state
17419 without any action (no shift or goto, no reduce).
17420 Note: the final state is now a ``regular'' state, i.e., the
17421 parsers now contain `reduce 0' as default reduction.
17422 Nevertheless, since they decide to `accept' when yystate =
17423 final_state, they still will not reduce rule 0.
17424 * src/print.c (print_actions, print_reduction): Adjust.
17425 * src/output.c (action_row): Track reduced rules.
17426 (token_actions): Report rules never reduced.
17427 * tests/conflicts.at, tests/regression.at: Adjust.
17428
17429 2002-07-30 Akim Demaille <akim@epita.fr>
17430
17431 `stage' was accidently included in a previous patch.
17432 Initiate its autoconfiscation.
17433
17434 * configure.in: Look for malloc.h and sys/times.h.
17435 * src/main.c (stage): Adjust.
17436 Report only when trace_flag.
17437
17438 2002-07-29 Akim Demaille <akim@epita.fr>
17439
17440 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
17441 state_number_t.
17442 (errs_t): symbol_t*, not symbol_number_t.
17443 (reductions_t): rule_t*, not rule_number_t.
17444 (FOR_EACH_SHIFT): New.
17445 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
17446 * src/print.c, src/print_graph.c: Adjust.
17447
17448 2002-07-29 Akim Demaille <akim@epita.fr>
17449
17450 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
17451
17452 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
17453 (endtoken, accept): these.
17454 * src/reader.c (reader): Set endtoken's default tag to "$end".
17455 Set undeftoken's tag to "$undefined" instead of "$undefined.".
17456 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
17457 Adjust.
17458
17459 2002-07-29 Akim Demaille <akim@epita.fr>
17460
17461 * src/reduce.c (reduce_grammar): When the language is empty,
17462 complain about the start symbol, not the axiom.
17463 Use its location.
17464 * tests/reduce.at (Empty Language): New.
17465
17466 2002-07-26 Akim Demaille <akim@epita.fr>
17467
17468 * src/reader.h, src/reader.c (gram_error): ... can't get
17469 yycontrol without making too strong assumptions on the parser
17470 itself.
17471 * src/output.c (prepare_tokens): Use the real 0th value of
17472 token_translations instead of `0'.
17473 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
17474 visible here.
17475 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
17476 for the time being: %locations ought to provide it to yyerror.
17477
17478 2002-07-25 Akim Demaille <akim@epita.fr>
17479
17480 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
17481 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
17482 * tests/regression.at (Web2c Actions): Adjust.
17483
17484 2002-07-25 Akim Demaille <akim@epita.fr>
17485
17486 Stop storing rules from 1 to nrules + 1.
17487
17488 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
17489 * src/nullable.c, src/output.c, src/print.c, src/reader.c
17490 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
17491 Iterate from 0 to nrules.
17492 Use rule_number_as_item_number and item_number_as_rule_number.
17493 Adjust to `derive' now containing possibly 0.
17494 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
17495 Handle the `- 1' part in rule numbers from/to item numbers.
17496 * src/conflicts.c (log_resolution): Fix the message which reversed
17497 shift and reduce.
17498 * src/output.c (action_row): Initialize default_rule to -1.
17499 (token_actions): Adjust.
17500 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
17501 expected output.
17502 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
17503
17504 2002-07-25 Akim Demaille <akim@epita.fr>
17505
17506 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
17507 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
17508 (b4_c_knr_arg_decl): New.
17509 * data/yacc.c: Use it to define yysymprint, yydestruct, and
17510 yyreport_parse_error.
17511
17512 2002-07-25 Akim Demaille <akim@epita.fr>
17513
17514 * data/yacc.c (yyreport_parse_error): New, extracted from...
17515 (yyparse): here.
17516 (yydestruct, yysymprint): Move above yyparse.
17517 Be K&R compliant.
17518
17519 2002-07-25 Akim Demaille <akim@epita.fr>
17520
17521 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
17522 replace...
17523 (b4_sint_type, b4_uint_type): these.
17524 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
17525 * tests/regression.at (Web2c Actions): Adjust.
17526
17527 2002-07-25 Akim Demaille <akim@epita.fr>
17528
17529 * src/gram.h (TIEM_NUMBER_MAX): New.
17530 (item_number_of_rule_number, rule_number_of_item_number): Rename
17531 as...
17532 (rule_number_as_item_number, item_number_as_rule_number): these.
17533 Adjust dependencies.
17534 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17535 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17536 (symbol_number_to_vector_number): New.
17537 (order): Of vector_number_t* type.
17538 (base_t, BASE_MAX, BASE_MIN): New.
17539 (froms, tos, width, pos, check): Of base_t type.
17540 (action_number_t, ACTION_MIN, ACTION_MAX): New.
17541 (actrow): Of action_number_t type.
17542 (conflrow): Of unsigned int type.
17543 (table_ninf, base_ninf): New.
17544 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
17545 (muscle_insert_int_table, muscle_insert_base_table)
17546 (muscle_insert_rule_number_table): New.
17547 (prepare_tokens): Output `toknum' as int_table.
17548 (action_row): Returns a rule_number_t.
17549 Use ACTION_MIN, not SHRT_MIN.
17550 (token_actions): yydefact is rule_number_t*.
17551 (table_ninf_remap): New.
17552 (pack_table): Use it for `base' and `table'.
17553 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
17554 replaced with...
17555 (YYPACT_NINF, YYTABLE_NINF): these.
17556 (yypact, yytable): Compute their types instead of hard-coded
17557 `short'.
17558 * tests/regression.at (Web2c Actions): Adjust.
17559
17560 2002-07-19 Akim Demaille <akim@epita.fr>
17561
17562 * src/scan-gram.l (id): Can start with an underscore.
17563
17564 2002-07-16 Akim Demaille <akim@epita.fr>
17565
17566 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
17567 Adjust all former `associativity' dependencies.
17568 * src/symtab.c (symbol_new): Default associativity is `undef', not
17569 `right'.
17570 (symbol_check_alias_consistence): Adjust.
17571
17572 2002-07-09 Akim Demaille <akim@epita.fr>
17573
17574 * doc/bison.texinfo: Properly set the ``header'' part.
17575 Use @dircategory ``GNU programming tools'' as per Texinfo's
17576 documentation.
17577 Use @copying.
17578
17579 2002-07-09 Akim Demaille <akim@epita.fr>
17580
17581 * lib/quotearg.h: Protect against multiple inclusions.
17582 * src/location.h (location_t): Add a `file' member.
17583 (LOCATION_RESET, LOCATION_PRINT): Adjust.
17584 * src/complain.c (warn_at, complain_at, fatal_at): Drop
17585 `error_one_per_line' support.
17586
17587 2002-07-09 Akim Demaille <akim@epita.fr>
17588
17589 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
17590 * src/reader.c (lineno): Remove.
17591 Adjust all dependencies.
17592 (get_merge_function): Take a location and use complain_at.
17593 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
17594 * tests/regression.at (Invalid inputs, Mixing %token styles):
17595 Adjust.
17596
17597 2002-07-09 Akim Demaille <akim@epita.fr>
17598
17599 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
17600 recovery rule, and forbid extensions when --yacc.
17601 (gram_error): Use complain_at.
17602 * src/reader.c (reader): Exit if there were parse errors.
17603
17604 2002-07-09 Akim Demaille <akim@epita.fr>
17605
17606 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
17607 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
17608 Reported by R Blake <blakers@mac.com>.
17609
17610 2002-07-09 Akim Demaille <akim@epita.fr>
17611
17612 * data/yacc.c: Output the copyright notive in the header.
17613
17614 2002-07-03 Akim Demaille <akim@epita.fr>
17615
17616 * src/output.c (froms, tos): Are state_number_t.
17617 (save_column): sp, sp1, and sp2 are state_number_t.
17618 (prepare): Rename `final' as `final_state_number', `nnts' as
17619 `nterms_number', `nrules' as `rules_number', `nstates' as
17620 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
17621 unused.
17622 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
17623 * data/lalr1.cc (nsym_): Remove, unused.
17624
17625 2002-07-03 Akim Demaille <akim@epita.fr>
17626
17627 * src/lalr.h, src/lalr.c (goto_number_t): New.
17628 * src/lalr.c (goto_list_t): New.
17629 Propagate them.
17630 * src/nullable.c (rule_list_t): New.
17631 Propagate.
17632 * src/types.h: Remove.
17633
17634 2002-07-03 Akim Demaille <akim@epita.fr>
17635
17636 * src/closure.c (print_fderives): Use rule_rhs_print.
17637 * src/derives.c (print_derives): Use rule_rhs_print.
17638 (rule_list_t): New, replaces `shorts'.
17639 (set_derives): Add comments.
17640 * tests/sets.at (Nullable, Firsts): Adjust.
17641
17642 2002-07-03 Akim Demaille <akim@epita.fr>
17643
17644 * src/output.c (prepare_actions): Free `tally' and `width'.
17645 (prepare_actions): Allocate and free `order'.
17646 * src/symtab.c (symbols_free): Free `symbols'.
17647 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
17648 * src/output.c (m4_invoke): Move to...
17649 * src/scan-skel.l: here.
17650 (<<EOF>>): Close yyout, and free its name.
17651
17652 2002-07-03 Akim Demaille <akim@epita.fr>
17653
17654 Fix some memory leaks, and fix a bug: state 0 was examined twice.
17655
17656 * src/LR0.c (new_state): Merge into...
17657 (state_list_append): this.
17658 (new_states): Merge into...
17659 (generate_states): here.
17660 (set_states): Don't ensure a proper `errs' state member here, do it...
17661 * src/conflicts.c (conflicts_solve): here.
17662 * src/state.h, src/state.c: Comment changes.
17663 (state_t): Rename member `shifts' as `transitions'.
17664 Adjust all dependencies.
17665 (errs_new): For consistency, also take the values as argument.
17666 (errs_dup): Remove.
17667 (state_errs_set): New.
17668 (state_reductions_set, state_transitions_set): Assert that no
17669 previous value was assigned.
17670 (state_free): New.
17671 (states_free): Use it.
17672 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
17673 temporary storage: use `errs' and `nerrs' as elsewhere.
17674 (set_conflicts): Allocate and free this `errs'.
17675
17676 2002-07-02 Akim Demaille <akim@epita.fr>
17677
17678 * lib/libiberty.h: New.
17679 * lib: Update the bitset implementation from upstream.
17680 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
17681 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
17682 * src/main.c: Adjust bitset stats calls.
17683
17684 2002-07-01 Paul Eggert <eggert@twinsun.com>
17685
17686 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
17687 char, so that negative chars don't collide with $.
17688
17689 2002-06-30 Akim Demaille <akim@epita.fr>
17690
17691 Have the GLR tests be `warning' checked, and fix the warnings.
17692
17693 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
17694 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
17695 (yyremoveDeletes): `yyi' and `yyj' are size_t.
17696 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
17697 (yyaddDeferredAction): static.
17698 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
17699 (yyreportParseError): yyprefix is const.
17700 yytokenp is used only when verbose.
17701 (yy__GNUC__): Replace with __GNUC__.
17702 (yypdumpstack): yyi is size_t.
17703 (yypreference): Un-yy local variables and arguments, to avoid
17704 clashes with `yyr1'. Anyway, we are not in the user name space.
17705 (yytname_size): be an int, as is compared with ints.
17706 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
17707 Use them.
17708 * tests/cxx-gram.at: Use quotation to protect $1.
17709 Use AT_COMPILE to enable warnings hunts.
17710 Prototype yylex and yyerror.
17711 `Use' argc.
17712 Include `string.h', not `strings.h'.
17713 Produce and prototype stmtMerge only when used.
17714 yylex takes a location.
17715
17716 2002-06-30 Akim Demaille <akim@epita.fr>
17717
17718 We spend a lot of time in quotearg, in particular when --verbose.
17719
17720 * src/symtab.c (symbol_get): Store a quoted version of the key.
17721 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
17722 Adjust all callers.
17723
17724 2002-06-30 Akim Demaille <akim@epita.fr>
17725
17726 * src/state.h (reductions_t): Rename member `nreds' as num.
17727 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
17728 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
17729
17730 2002-06-30 Akim Demaille <akim@epita.fr>
17731
17732 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
17733 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
17734 (shifts_to): Rename as...
17735 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
17736 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
17737 (TRANSITION_IS_DISABLED, transitions_to): these.
17738
17739 2002-06-30 Akim Demaille <akim@epita.fr>
17740
17741 * src/print.c (print_shifts, print_gotos): Merge into...
17742 (print_transitions): this.
17743 (print_transitions, print_errs, print_reductions): Align the
17744 lookaheads columns.
17745 (print_core, print_transitions, print_errs, print_state,
17746 print_grammar): Output empty lines separator before, not after.
17747 (state_default_rule_compute): Rename as...
17748 (state_default_rule): this.
17749 * tests/conflicts.at (Defaulted Conflicted Reduction),
17750 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
17751 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
17752
17753 2002-06-30 Akim Demaille <akim@epita.fr>
17754
17755 Display items as we display rules.
17756
17757 * src/gram.h, src/gram.c (rule_lhs_print): New.
17758 * src/gram.c (grammar_rules_partial_print): Use it.
17759 * src/print.c (print_core): Likewise.
17760 * tests/conflicts.at (Defaulted Conflicted Reduction),
17761 (Unresolved SR Conflicts): Adjust.
17762 (Unresolved SR Conflicts): Adjust and rename as...
17763 (Resolved SR Conflicts): this, as was meant.
17764 * tests/regression.at (Web2c Report): Adjust.
17765
17766 2002-06-30 Akim Demaille <akim@epita.fr>
17767
17768 * src/print.c (state_default_rule_compute): New, extracted from...
17769 (print_reductions): here.
17770 Pessimize, but clarify the code.
17771 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
17772
17773 2002-06-30 Akim Demaille <akim@epita.fr>
17774
17775 * src/output.c (action_row): Let default_rule be always a rule
17776 number.
17777
17778 2002-06-30 Akim Demaille <akim@epita.fr>
17779
17780 * src/closure.c (print_firsts, print_fderives, closure):
17781 Use BITSET_EXECUTE.
17782 * src/lalr.c (lookaheads_print): Likewise.
17783 * src/state.c (state_rule_lookaheads_print): Likewise.
17784 * src/print_graph.c (print_core): Likewise.
17785 * src/print.c (print_reductions): Likewise.
17786 * src/output.c (action_row): Likewise.
17787 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
17788
17789 2002-06-30 Akim Demaille <akim@epita.fr>
17790
17791 * src/print_graph.c: Use report_flag.
17792
17793 2002-06-30 Akim Demaille <akim@epita.fr>
17794
17795 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
17796 to...
17797 * src/relation.h, src/relation.c (traverse, relation_digraph)
17798 (relation_print, relation_transpose): New.
17799
17800 2002-06-30 Akim Demaille <akim@epita.fr>
17801
17802 * src/state.h, src/state.c (shifts_to): New.
17803 * src/lalr.c (build_relations): Use it.
17804
17805 2002-06-30 Akim Demaille <akim@epita.fr>
17806
17807 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
17808 (item_number_of_rule_number, rule_number_of_item_number): New.
17809 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
17810 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
17811 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
17812 Propagate their use.
17813 Much remains to be done, in particular wrt `shorts' from types.h.
17814
17815 2002-06-30 Akim Demaille <akim@epita.fr>
17816
17817 * src/symtab.c (symbol_new): Initialize the `printer' member.
17818
17819 2002-06-30 Akim Demaille <akim@epita.fr>
17820
17821 * src/LR0.c (save_reductions): Remove, replaced by...
17822 * src/state.h, src/state.c (state_reductions_set): New.
17823 (reductions, errs): Rename as...
17824 (reductions_t, errs_t): these.
17825 Adjust all dependencies.
17826
17827 2002-06-30 Akim Demaille <akim@epita.fr>
17828
17829 * src/LR0.c (state_list_t, state_list_append): New.
17830 (first_state, last_state): Now symbol_list_t.
17831 (this_state): Remove.
17832 (new_itemsets, append_states, save_reductions): Take a state_t as
17833 argument.
17834 (set_states, generate_states): Adjust.
17835 (save_shifts): Remove, replaced by...
17836 * src/state.h, src/state.c (state_shifts_set): New.
17837 (shifts): Rename as...
17838 (shifts_t): this.
17839 Adjust all dependencies.
17840 * src/state.h (state_t): Remove the `next' member.
17841
17842 2002-06-30 Akim Demaille <akim@epita.fr>
17843
17844 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
17845 escaped in slot 0.
17846
17847 2002-06-30 Akim Demaille <akim@epita.fr>
17848
17849 Use hash.h for the state hash table.
17850
17851 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
17852 (allocate_storage): Use state_hash_new.
17853 (free_storage): Use state_hash_free.
17854 (new_state, get_state): Adjust.
17855 * src/lalr.h, src/lalr.c (states): Move to...
17856 * src/states.h (state_t): Remove the `link' member, no longer
17857 used.
17858 * src/states.h, src/states.c: here.
17859 (state_hash_new, state_hash_free, state_hash_lookup)
17860 (state_hash_insert, states_free): New.
17861 * src/states.c (state_table, state_compare, state_hash): New.
17862 * src/output.c (output_actions): Do not free states now, since we
17863 still need to know the final_state number in `prepare', called
17864 afterwards. Do it...
17865 * src/main.c (main): here: call states_free after `output'.
17866
17867 2002-06-30 Akim Demaille <akim@epita.fr>
17868
17869 * src/state.h, src/state.c (state_new): New, extracted from...
17870 * src/LR0.c (new_state): here.
17871 * src/state.h (STATE_ALLOC): Move to...
17872 * src/state.c: here.
17873 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
17874 * src/state.h, src/state.c: here.
17875
17876 2002-06-30 Akim Demaille <akim@epita.fr>
17877
17878 * src/reader.c (gensym): Rename as...
17879 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
17880 (getsym): Rename as...
17881 (symbol_get): this.
17882
17883 2002-06-30 Akim Demaille <akim@epita.fr>
17884
17885 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
17886 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
17887 * src/output.c, src/print.c, src/print_graph.c: Propagate.
17888 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
17889
17890 2002-06-30 Akim Demaille <akim@epita.fr>
17891
17892 Make the test suite pass with warnings checked.
17893
17894 * tests/actions.at (Printers and Destructors): Improve.
17895 Avoid unsigned vs. signed issues.
17896 * tests/calc.at: Don't exercise the scanner here, do it...
17897 * tests/input.at (Torturing the Scanner): here.
17898
17899 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17900
17901 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
17902 reorganize first lines parallel to yacc.c.
17903
17904 2002-06-28 Akim Demaille <akim@epita.fr>
17905
17906 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
17907 (b4_token_enum, b4_token_defines): New, factored from...
17908 * data/lalr1.cc, data/yacc.c, glr.c: here.
17909
17910 2002-06-28 Akim Demaille <akim@epita.fr>
17911
17912 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
17913 unused variables.
17914 * src/output.c (merger_output): static.
17915
17916 2002-06-28 Akim Demaille <akim@epita.fr>
17917
17918 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
17919 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
17920 pacify GCC.
17921 * src/output.c (save_row): Initialize all the variables to pacify GCC.
17922
17923 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17924
17925 Accumulated changelog for new GLR parsing features.
17926
17927 * src/conflicts.c (count_total_conflicts): Change name to
17928 conflicts_total_count.
17929 * src/conflicts.h: Ditto.
17930 * src/output.c (token_actions): Use the new name.
17931 (output_conflicts): Change conflp => conflict_list_heads, and
17932 confl => conflict_list for better readability.
17933 * data/glr.c: Use the new names.
17934 * NEWS: Add self to GLR announcement.
17935
17936 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
17937
17938 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
17939 Akim Demaille.
17940
17941 * data/bison.glr: Change name to glr.c
17942 * data/glr.c: Renamed from bison.glr.
17943 * data/Makefile.am: Add glr.c
17944
17945 * src/getargs.c:
17946
17947 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
17948 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
17949
17950 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17951
17952 * data/bison.glr: Be sure to restore the
17953 current #line when returning to the skeleton contents after having
17954 exposed the input file's #line.
17955
17956 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17957
17958 * data/bison.glr: Bring up to date with changes to bison.simple.
17959
17960 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17961
17962 * data/bison.glr: Correct definitions that use b4_prefix.
17963 Various reformatting.
17964 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
17965 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
17966 yytokenp argument; now part of stack.
17967 (yychar): Define to behave as documented.
17968 (yyclearin): Ditto.
17969
17970 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17971
17972 * src/reader.h: Add declaration for free_merger_functions.
17973
17974 * src/reader.c (merge_functions): New variable.
17975 (get_merge_function): New function.
17976 (free_merger_functions): New function.
17977 (readgram): Check for %prec that is not followed by a symbol.
17978 Handle %dprec and %merge declarations.
17979 (packgram): Initialize dprec and merger fields in rules array.
17980
17981 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
17982 conflict_list_cnt, conflict_list_free): New variables.
17983 (table_grow): Also grow conflict_table.
17984 (prepare_rules): Output dprec and merger tables.
17985 (conflict_row): New function.
17986 (action_row): Output conflict lists for GLR parser. Don't use
17987 default reduction in conflicted states for GLR parser so that there
17988 are spaces for the conflict lists.
17989 (save_row): Also save conflict information.
17990 (token_actions): Allocate conflict list.
17991 (merger_output): New function.
17992 (pack_vector): Pack conflict table, too.
17993 (output_conflicts): New function to output yyconflp and yyconfl.
17994 (output_check): Allocate conflict_tos.
17995 (output_actions): Output conflict tables, also.
17996 (output_skeleton): Output b4_mergers definition.
17997 (prepare): Output b4_max_rhs_length definition.
17998 Use 'bison.glr' as default skeleton for GLR parsers.
17999
18000 * src/gram.c (glr_parser): New flag.
18001 (grammar_free): Call free_merger_functions.
18002
18003 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
18004 all pairs of conflicting reductions, rather than just all tokens
18005 causing conflicts. Needed to size conflict tables.
18006 (conflicts_output): Modify call to count_rr_conflicts for new
18007 interface.
18008 (conflicts_print): Ditto.
18009 (count_total_conflicts): New function.
18010
18011 * src/reader.h (merger_list): New type.
18012 (merge_functions): New variable.
18013
18014 * src/lex.h (tok_dprec, tok_merge): New token types.
18015
18016 * src/gram.h (rule_s): Add dprec and merger fields.
18017 (glr_parser): New flag.
18018
18019 * src/conflicts.h (count_total_conflicts): New function.
18020
18021 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
18022
18023 * doc/bison.texinfo (Generalized LR Parsing): New section.
18024 (GLR Parsers): New section.
18025 (Language and Grammar): Mention GLR parsing.
18026 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
18027 Correct typo ("tge" -> "the").
18028
18029 * data/bison.glr: New skeleton for GLR parsing.
18030
18031 * tests/cxx-gram.at: New tests for GLR parsing.
18032
18033 * tests/testsuite.at: Include cxx-gram.at.
18034
18035 * tests/Makefile.am: Add cxx-gram.at.
18036
18037 * src/parse-gram.y:
18038
18039 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
18040
18041 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
18042
18043 2002-06-27 Akim Demaille <akim@epita.fr>
18044
18045 * src/options.h, src/options.c: Remove.
18046 * src/getargs.c (short_options, long_options): New.
18047
18048 2002-06-27 Akim Demaille <akim@epita.fr>
18049
18050 * data/bison.simple, data/bison.c++: Rename as...
18051 * data/yacc.c, data/lalr1.cc: these.
18052 * doc/bison.texinfo (Environment Variables): Remove.
18053
18054 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
18055
18056 * src/getargs.c (report_argmatch): Initialize strtok().
18057
18058 2002-06-20 Akim Demaille <akim@epita.fr>
18059
18060 * data/bison.simple (b4_symbol_actions): New, replaces...
18061 (b4_symbol_destructor, b4_symbol_printer): these.
18062 (yysymprint): Be sure to call YYPRINT only for tokens, and using
18063 user token numbers.
18064
18065 2002-06-20 Akim Demaille <akim@epita.fr>
18066
18067 * data/bison.simple (yydestructor): Rename as...
18068 (yydestruct): this.
18069
18070 2002-06-20 Akim Demaille <akim@epita.fr>
18071
18072 * src/symtab.h, src/symtab.c (symbol_type_set)
18073 (symbol_destructor_set, symbol_precedence_set): The location is
18074 the last argument.
18075 Adjust all callers.
18076
18077 2002-06-20 Akim Demaille <akim@epita.fr>
18078
18079 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
18080 internals.
18081 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
18082 Takes a location.
18083 * src/symtab.h, src/symtab.c (symbol_class_set)
18084 (symbol_user_token_number_set): Likewise.
18085 Adjust all callers.
18086 Promote complain_at.
18087 * tests/input.at (Type Clashes): Adjust.
18088
18089 2002-06-20 Akim Demaille <akim@epita.fr>
18090
18091 * data/bison.simple (YYLEX): Fix the declaration when
18092 %pure-parser.
18093
18094 2002-06-20 Akim Demaille <akim@epita.fr>
18095
18096 * data/bison.simple (yysymprint): Don't print the token number,
18097 just its name.
18098 * tests/actions.at (Destructors): Rename as...
18099 (Printers and Destructors): this.
18100 Also exercise %printer.
18101
18102 2002-06-20 Akim Demaille <akim@epita.fr>
18103
18104 * data/bison.simple (YYDSYMPRINT): New.
18105 Use it to remove many of the #if YYDEBUG/if (yydebug).
18106
18107 2002-06-20 Akim Demaille <akim@epita.fr>
18108
18109 * src/symtab.h, src/symtab.c (symbol_t): printer and
18110 printer_location are new members.
18111 (symbol_printer_set): New.
18112 * src/parse-gram.y (PERCENT_PRINTER): New token.
18113 Handle its associated rule.
18114 * src/scan-gram.l: Adjust.
18115 (handle_destructor_at, handle_destructor_dollar): Rename as...
18116 (handle_symbol_code_at, handle_symbol_code_dollar): these.
18117 * src/output.c (symbol_printers_output): New.
18118 (output_skeleton): Call it.
18119 * data/bison.simple (yysymprint): New. Cannot be named yyprint
18120 since there are already many grammar files with a user `yyprint'.
18121 Replace the calls to YYPRINT to calls to yysymprint.
18122 * tests/calc.at: Adjust.
18123 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
18124 taking advantage of parser very internal details (stack size!).
18125
18126 2002-06-20 Akim Demaille <akim@epita.fr>
18127
18128 * src/scan-gram.l: Complete the scanner with the missing patterns
18129 to pacify Flex.
18130 Use `quote' and `symbol_tag_get' where appropriate.
18131
18132 2002-06-19 Akim Demaille <akim@epita.fr>
18133
18134 * tests/actions.at (Destructors): Augment to test locations.
18135 * data/bison.simple (yydestructor): Pass it the current location
18136 if locations are enabled.
18137 Prototype only when __STDC__ or C++.
18138 Change the argument names to move into the yy name space: there is
18139 user code here.
18140
18141 2002-06-19 Akim Demaille <akim@epita.fr>
18142
18143 * data/bison.simple (b4_pure_if): New.
18144 Use it instead of #ifdef YYPURE.
18145
18146 2002-06-19 Akim Demaille <akim@epita.fr>
18147
18148 * data/bison.simple (b4_location_if): New.
18149 Use it instead of #ifdef YYLSP_NEEDED.
18150
18151 2002-06-19 Akim Demaille <akim@epita.fr>
18152
18153 Prepare @$ in %destructor, but currently don't bind it in the
18154 skeleton, as %location use is not cleaned up yet.
18155
18156 * src/scan-gram.l (handle_dollar, handle_destructor_at)
18157 (handle_action_at): New.
18158 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
18159 a braced_code_t and a location as additional arguments.
18160 (handle_destructor_dollar): Instead of requiring `b4_eval', just
18161 unquote one when outputting `b4_dollar_dollar'.
18162 Adjust callers.
18163 * data/bison.simple (b4_eval): Remove.
18164 (b4_symbol_destructor): Adjust.
18165 * tests/input.at (Invalid @n): Adjust.
18166
18167 2002-06-19 Zack Weinberg <zack@codesourcery.com>
18168
18169 * doc/bison.texinfo: Document ability to have multiple
18170 prologue sections.
18171
18172 2002-06-18 Akim Demaille <akim@epita.fr>
18173
18174 * src/files.c (compute_base_names): When computing the output file
18175 names from the input file name, strip the directory part.
18176
18177 2002-06-18 Akim Demaille <akim@epita.fr>
18178
18179 * data/bison.simple.new: Comment changes.
18180 Reported by Andreas Schwab.
18181
18182 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
18183
18184 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
18185 there are no `label `yyoverflowlab' defined but not used' warnings
18186 when yyoverflow is defined.
18187
18188 2002-06-18 Akim Demaille <akim@epita.fr>
18189
18190 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
18191 new member.
18192 (symbol_destructor_set): Adjust.
18193 * src/output.c (symbol_destructors_output): Output the destructor
18194 locations.
18195 Output the symbol name.
18196 * data/bison.simple (b4_symbol_destructor): Adjust.
18197
18198 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
18199 and Akim Demaille <akim@epita.fr>
18200
18201 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
18202 what's left on the stack when the error recovery hits EOF.
18203 * tests/actions.at (Destructors): Complete to exercise this case.
18204
18205 2002-06-17 Akim Demaille <akim@epita.fr>
18206
18207 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
18208 arguments is really empty, not only equal to `[]'.
18209 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
18210 member.
18211 (symbol_destructor_set): New.
18212 * src/output.c (symbol_destructors_output): New.
18213 * src/reader.h (brace_code_t, current_braced_code): New.
18214 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
18215 (handle_dollar): Rename as...
18216 (handle_action_dollar): this.
18217 (handle_destructor_dollar): New.
18218 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
18219 (grammar_declaration): Use it.
18220 * data/bison.simple (yystos): Is always defined.
18221 (yydestructor): New.
18222 * tests/actions.at (Destructors): New.
18223 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
18224
18225 2002-06-17 Akim Demaille <akim@epita.fr>
18226
18227 * src/symlist.h, src/symlist.c (symbol_list_length): New.
18228 * src/scan-gram.l (handle_dollar, handle_at): Compute the
18229 rule_length only when needed.
18230 * src/output.c (actions_output, token_definitions_output): Output
18231 the full M4 block.
18232 * src/symtab.c: Don't access directly to the symbol tag, use
18233 symbol_tag_get.
18234 * src/parse-gram.y: Use symbol_list_free.
18235
18236 2002-06-17 Akim Demaille <akim@epita.fr>
18237
18238 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
18239 (symbol_list_prepend, get_type_name): Move to...
18240 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
18241 (symbol_list_prepend, symbol_list_n_type_name_get): here.
18242 Adjust all callers.
18243 (symbol_list_free): New.
18244 * src/scan-gram.l (handle_dollar): Takes a location.
18245 * tests/input.at (Invalid $n): Adjust.
18246
18247 2002-06-17 Akim Demaille <akim@epita.fr>
18248
18249 * src/reader.h, src/reader.c (symbol_list_new): Export it.
18250 (symbol_list_prepend): New.
18251 * src/parse-gram.y (%union): `list' is a new member.
18252 (symbols.1): New, replaces...
18253 (terms_to_prec.1, nterms_to_type.1): these.
18254 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
18255 Take a location as additional argument.
18256 Adjust all callers.
18257
18258 2002-06-15 Akim Demaille <akim@epita.fr>
18259
18260 * src/parse-gram.y: Move %token in the declaration section so that
18261 we don't depend upon CVS Bison.
18262
18263 2002-06-15 Akim Demaille <akim@epita.fr>
18264
18265 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
18266 * src/print.c (print_core): Use it.
18267
18268 2002-06-15 Akim Demaille <akim@epita.fr>
18269
18270 * src/conflicts.c (log_resolution): Accept the rule involved in
18271 the sr conflicts instead of the lookahead number that points to
18272 that rule.
18273 (flush_reduce): Accept the current lookahead vector as argument,
18274 instead of the index in LA.
18275 (resolve_sr_conflict): Accept the current number of lookahead
18276 bitset to consider for the STATE, instead of the index in LA.
18277 (set_conflicts): Adjust.
18278 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
18279
18280 2002-06-15 Akim Demaille <akim@epita.fr>
18281
18282 * src/state.h (state_t): Replace the `lookaheadsp' member, a
18283 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
18284 Adjust all dependencies.
18285 * src/lalr.c (initialize_lookaheads): Split into...
18286 (states_lookaheads_count, states_lookaheads_initialize): these.
18287 (lalr): Adjust.
18288
18289 2002-06-15 Akim Demaille <akim@epita.fr>
18290
18291 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
18292 out of...
18293 (grammar_rules_print): here.
18294 * src/reduce.c (reduce_output): Use it.
18295 * tests/reduce.at (Useless Rules, Reduced Automaton)
18296 (Underivable Rules): Adjust.
18297
18298 2002-06-15 Akim Demaille <akim@epita.fr>
18299
18300 Copy BYacc's nice way to report the grammar.
18301
18302 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
18303 New.
18304 Don't print the rules' location, it is confusing and useless.
18305 (rule_print): Use grammar_rhs_print.
18306 * src/print.c (print_grammar): Use grammar_rules_print.
18307
18308 2002-06-15 Akim Demaille <akim@epita.fr>
18309
18310 Complete and rationalize `useless thing' warnings.
18311
18312 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
18313 (symbol_tag_print): New.
18314 Use them everywhere in place of accessing directly the tag member.
18315 * src/gram.h, src/gram.c (rule_print): New.
18316 Use it where a rule used to be printed `by hand'.
18317 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
18318 (reduce_grammar_tables): Report the useless rules.
18319 (reduce_print): Useless things are a warning, not an error.
18320 Report it as such.
18321 * tests/reduce.at (Useless Nonterminals, Useless Rules):
18322 (Reduced Automaton, Underivable Rules): Adjust.
18323 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
18324 * tests/conflicts.at (Unresolved SR Conflicts)
18325 (Solved SR Conflicts): Adjust.
18326
18327 2002-06-15 Akim Demaille <akim@epita.fr>
18328
18329 Let symbols have a location.
18330
18331 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
18332 (getsym): Adjust.
18333 Adjust all callers.
18334 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
18335 Use location_t, not int.
18336 * src/symtab.c (symbol_check_defined): Take advantage of the
18337 location.
18338 * tests/regression.at (Invalid inputs): Adjust.
18339
18340 2002-06-15 Akim Demaille <akim@epita.fr>
18341
18342 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
18343 (input): Don't try to initialize yylloc here, do it in the
18344 scanner.
18345 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
18346 * src/gram.h (rule_t): Change line and action_line into location
18347 and action_location, of location_t type.
18348 Adjust all dependencies.
18349 * src/location.h, src/location.c (empty_location): New.
18350 * src/reader.h, src/reader.c (grammar_start_symbol_set)
18351 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
18352 (grammar_current_rule_symbol_append)
18353 (grammar_current_rule_action_append): Expect a location as argument.
18354 * src/reader.c (grammar_midrule_action): Adjust to attach an
18355 action's location as dummy symbol location.
18356 * src/symtab.h, src/symtab.c (startsymbol_location): New.
18357 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
18358 the line numbers.
18359
18360 2002-06-14 Akim Demaille <akim@epita.fr>
18361
18362 Grammar declarations may be found in the grammar section.
18363
18364 * src/parse-gram.y (rules_or_grammar_declaration): New.
18365 (declarations): Each declaration may end with a semicolon, not
18366 just...
18367 (grammar_declaration): `"%union"'.
18368 (grammar): Branch to rules_or_grammar_declaration.
18369
18370 2002-06-14 Akim Demaille <akim@epita.fr>
18371
18372 * src/main.c (main): Invoke scanner_free.
18373
18374 2002-06-14 Akim Demaille <akim@epita.fr>
18375
18376 * src/output.c (m4_invoke): Extracted from...
18377 (output_skeleton): here.
18378 Free tempfile.
18379
18380 2002-06-14 Akim Demaille <akim@epita.fr>
18381
18382 * src/parse-gram.y (directives, directive, gram)
18383 (grammar_directives, precedence_directives, precedence_directive):
18384 Rename as...
18385 (declarations, declaration, grammar, grammar_declaration)
18386 (precedence_declaration, precedence_declarator): these.
18387 (symbol_declaration): New.
18388
18389 2002-06-14 Akim Demaille <akim@epita.fr>
18390
18391 * src/files.c (action_obstack): Remove, unused.
18392 (output_obstack): Remove it, and all its dependencies, as it is no
18393 longer needed.
18394 * src/reader.c (epilogue_set): Build the epilogue in the
18395 muscle_obstack.
18396 * src/output.h, src/output.c (muscle_obstack): Move to...
18397 * src/muscle_tab.h, src/muscle_tab.h: here.
18398 (muscle_init): Initialize muscle_obstack.
18399 (muscle_free): New.
18400 * src/main.c (main): Call it.
18401
18402 2002-06-14 Akim Demaille <akim@epita.fr>
18403
18404 * src/location.h: New, extracted from...
18405 * src/reader.h: here.
18406 * src/Makefile.am (noinst_HEADERS): Merge into
18407 (bison_SOURCES): this.
18408 Add location.h.
18409 * src/parse-gram.y: Use location_t instead of Bison's.
18410 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
18411 Use location_t instead of ints.
18412
18413 2002-06-14 Akim Demaille <akim@epita.fr>
18414
18415 * data/bison.simple, data/bison.c++: Be sure to restore the
18416 current #line when returning to the skeleton contents after having
18417 exposed the input file's #line.
18418
18419 2002-06-12 Akim Demaille <akim@epita.fr>
18420
18421 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
18422 eager.
18423 * tests/actions.at (Exotic Dollars): New.
18424
18425 2002-06-12 Akim Demaille <akim@epita.fr>
18426
18427 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
18428 ['"/] too eagerly.
18429 * tests/input.at (Torturing the Scanner): New.
18430
18431 2002-06-11 Akim Demaille <akim@epita.fr>
18432
18433 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
18434 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
18435 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
18436 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
18437 * src/reader.c (reader): Use it.
18438
18439 2002-06-11 Akim Demaille <akim@epita.fr>
18440
18441 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
18442 Adjust all callers.
18443 (scanner_last_string_free): New.
18444
18445 2002-06-11 Akim Demaille <akim@epita.fr>
18446
18447 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
18448 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
18449 (last_string, YY_OBS_FREE): New.
18450 Use them when returning an ID.
18451
18452 2002-06-11 Akim Demaille <akim@epita.fr>
18453
18454 Have Bison grammars parsed by a Bison grammar.
18455
18456 * src/reader.c, src/reader.h (prologue_augment): New.
18457 * src/reader.c (copy_definition): Remove.
18458
18459 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
18460 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
18461 (grammar_current_rule_prec_set, grammar_current_rule_check)
18462 (grammar_current_rule_symbol_append)
18463 (grammar_current_rule_action_append): Export.
18464 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
18465 (symbol_list_action_append): Remove.
18466 Hook the routines from reader.
18467 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
18468 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
18469
18470 * src/reader.c (read_declarations): Remove, unused.
18471
18472 * src/parse-gram.y: Handle the epilogue.
18473 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
18474 (grammar_start_symbol_set): this.
18475 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
18476 * src/reader.c (readgram): Remove, unused.
18477 (reader): Adjust to insert eoftoken and axiom where appropriate.
18478
18479 * src/reader.c (copy_dollar): Replace with...
18480 * src/scan-gram.h (handle_dollar): this.
18481 * src/parse-gram.y: Remove `%thong'.
18482
18483 * src/reader.c (copy_at): Replace with...
18484 * src/scan-gram.h (handle_at): this.
18485
18486 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
18487 New.
18488
18489 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
18490 time being.
18491
18492 * src/reader.h, src/reader.c (grammar_rule_end): New.
18493
18494 * src/parse.y (current_type, current_class): New.
18495 Implement `%nterm', `%token' support.
18496 Merge `%term' into `%token'.
18497 (string_as_id): New.
18498 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
18499 type name.
18500
18501 * src/parse-gram.y: Be sure to handle properly the beginning of
18502 rules.
18503
18504 * src/parse-gram.y: Handle %type.
18505 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
18506
18507 * src/parse-gram.y: More directives support.
18508 * src/options.c: No longer handle source directives.
18509
18510 * src/parse-gram.y: Fix %output.
18511
18512 * src/parse-gram.y: Handle %union.
18513 Use the prologue locations.
18514 * src/reader.c (parse_union_decl): Remove.
18515
18516 * src/reader.h, src/reader.c (epilogue_set): New.
18517 * src/parse-gram.y: Use it.
18518
18519 * data/bison.simple, data/bison.c++: b4_stype is now either not
18520 defined, then default to int, or to the contents of %union,
18521 without `union' itself.
18522 Adjust.
18523 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
18524
18525 * src/output.c (actions_output): Don't output braces, as they are
18526 already handled by the scanner.
18527
18528 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
18529 characters to themselves.
18530
18531 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
18532 that the epilogue has a proper #line.
18533
18534 * src/parse-gram.y: Handle precedence/associativity.
18535
18536 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
18537 a terminal.
18538 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
18539 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
18540 at all to define terminals that cannot be emitted.
18541
18542 * src/scan-gram.l: Escape M4 characters.
18543
18544 * src/scan-gram.l: Working properly with escapes in user
18545 strings/characters.
18546
18547 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
18548 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
18549 grammar.
18550 Use more modest sizes, as for the time being the parser does not
18551 release memory, and therefore the process swallows a huge amount
18552 of memory.
18553
18554 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
18555 stricter %token grammar.
18556
18557 * src/symtab.h (associativity): Add `undef_assoc'.
18558 (symbol_precedence_set): Do nothing when passed an undef_assoc.
18559 * src/symtab.c (symbol_check_alias_consistence): Adjust.
18560
18561 * tests/regression.at (Invalid %directive): Remove, as it is now
18562 meaningless.
18563 (Invalid inputs): Adjust to the new error messages.
18564 (Token definitions): The new grammar doesn't allow too many
18565 eccentricities.
18566
18567 * src/lex.h, src/lex.c: Remove.
18568 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
18569 (copy_character, copy_string2, copy_string, copy_identifier)
18570 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
18571 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
18572 (parse_action): Remove.
18573 * po/POTFILES.in: Adjust.
18574
18575 2002-06-11 Akim Demaille <akim@epita.fr>
18576
18577 * src/reader.c (parse_action): Don't store directly into the
18578 rule's action member: return the action as a string.
18579 Don't require `rule_length' as an argument: compute it.
18580 (grammar_current_rule_symbol_append)
18581 (grammar_current_rule_action_append): New, eved out from
18582 (readgram): here.
18583 Remove `action_flag', `rulelength', unused now.
18584
18585 2002-06-11 Akim Demaille <akim@epita.fr>
18586
18587 * src/reader.c (grammar_current_rule_prec_set).
18588 (grammar_current_rule_check): New, eved out from...
18589 (readgram): here.
18590 Remove `xaction', `first_rhs': useless.
18591 * tests/input.at (Type clashes): New.
18592 * tests/existing.at (GNU Cim Grammar): Adjust.
18593
18594 2002-06-11 Akim Demaille <akim@epita.fr>
18595
18596 * src/reader.c (grammar_midrule_action): New, Eved out from
18597 (readgram): here.
18598
18599 2002-06-11 Akim Demaille <akim@epita.fr>
18600
18601 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
18602 New.
18603 (readgram): Use them as replacement of inlined code, crule and
18604 crule1.
18605
18606 2002-06-11 Akim Demaille <akim@epita.fr>
18607
18608 * src/reader.c (grammar_end, grammar_symbol_append): New.
18609 (readgram): Use them.
18610 Make the use of `p' as local as possible.
18611
18612 2002-06-10 Akim Demaille <akim@epita.fr>
18613
18614 GCJ's parser requires the tokens to be defined before the prologue.
18615
18616 * data/bison.simple: Output the token definition before the user's
18617 prologue.
18618 * tests/regression.at (Braces parsing, Duplicate string)
18619 (Mixing %token styles): Check the output from bison.
18620 (Early token definitions): New.
18621
18622 2002-06-10 Akim Demaille <akim@epita.fr>
18623
18624 * src/symtab.c (symbol_user_token_number_set): Don't complain when
18625 assigning twice the same user number to a token, so that we can
18626 use it in...
18627 * src/lex.c (lex): here.
18628 Also use `symbol_class_set' instead of hand written code.
18629 * src/reader.c (parse_assoc_decl): Likewise.
18630
18631 2002-06-10 Akim Demaille <akim@epita.fr>
18632
18633 * src/symtab.c, src/symtab.c (symbol_class_set)
18634 (symbol_user_token_number_set): New.
18635 * src/reader.c (parse_token_decl): Use them.
18636 Use a switch instead of ifs.
18637 Use a single argument.
18638
18639 2002-06-10 Akim Demaille <akim@epita.fr>
18640
18641 Remove `%thong' support as it is undocumented, unused, duplicates
18642 `%token's job, and creates useless e-mail traffic with people who
18643 want to know what it is, why it is undocumented, unused, and
18644 duplicates `%token's job.
18645
18646 * src/reader.c (parse_thong_decl): Remove.
18647 * src/options.c (option_table): Remove "thong".
18648 * src/lex.h (tok_thong): Remove.
18649
18650 2002-06-10 Akim Demaille <akim@epita.fr>
18651
18652 * src/symtab.c, src/symtab.c (symbol_type_set)
18653 (symbol_precedence_set): New.
18654 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
18655 (value_components_used): Remove, unused.
18656
18657 2002-06-09 Akim Demaille <akim@epita.fr>
18658
18659 Move symbols handling code out of the reader.
18660
18661 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
18662 (axiom): Move to...
18663 * src/symtab.h, src/symtab.c: here.
18664
18665 * src/gram.c (start_symbol): Remove: use startsymbol->number.
18666 * src/reader.c (startval): Rename as...
18667 * src/symtab.h, src/symtab.c (startsymbol): this.
18668 * src/reader.c: Adjust.
18669
18670 * src/reader.c (symbol_check_defined, symbol_make_alias)
18671 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18672 (token_translations_init)
18673 Move to...
18674 * src/symtab.c: here.
18675 * src/reader.c (packsymbols): Move to...
18676 * src/symtab.h, src/symtab.c (symbols_pack): here.
18677 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
18678 argument.
18679
18680 2002-06-03 Akim Demaille <akim@epita.fr>
18681
18682 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
18683 then statements.
18684
18685 2002-06-03 Akim Demaille <akim@epita.fr>
18686
18687 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
18688 structs with non literals.
18689 * src/scan-skel.l: never-interactive.
18690 * src/conflicts.c (enum conflict_resolution_e): No trailing
18691 comma.
18692 * src/getargs.c (usage): Split long literal strings.
18693 Reported by Hans Aberg.
18694
18695 2002-05-28 Akim Demaille <akim@epita.fr>
18696
18697 * data/bison.c++: Use C++ ostreams.
18698 (cdebug_): New member.
18699
18700 2002-05-28 Akim Demaille <akim@epita.fr>
18701
18702 * src/output.c (output_skeleton): Be sure to allocate enough room
18703 for `/' _and_ for `\0' in full_skeleton.
18704
18705 2002-05-28 Akim Demaille <akim@epita.fr>
18706
18707 * data/bison.c++: Catch up with bison.simple:
18708 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18709 and Paul Eggert <eggert@twinsun.com>: `error' handing.
18710 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
18711 and popping traces.
18712
18713 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18714
18715 * src/output.c (output_skeleton): Put an explicit path in front of
18716 the skeleton file name, rather than relying on the -I directory,
18717 to partially alleviate effects of having a skeleton file lying around
18718 in the current directory.
18719
18720 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18721
18722 * src/conflicts.c (log_resolution): Correct typo:
18723 obstack_printf should be obstack_fgrow1.
18724
18725 2002-05-26 Akim Demaille <akim@epita.fr>
18726
18727 * src/state.h (state_t): `solved_conflicts' is a new member.
18728 * src/LR0.c (new_state): Set it to 0.
18729 * src/conflicts.h, src/conflicts.c (print_conflicts)
18730 (free_conflicts, solve_conflicts): Rename as...
18731 (conflicts_print, conflicts_free, conflicts_solve): these.
18732 Adjust callers.
18733 * src/conflicts.c (enum conflict_resolution_e)
18734 (solved_conflicts_obstack): New, used by...
18735 (log_resolution): this.
18736 Adjust to attach the conflict resolution to each state.
18737 Complete the description with the precedence/associativity
18738 information.
18739 (resolve_sr_conflict): Adjust.
18740 * src/print.c (print_state): Output its solved_conflicts.
18741 * tests/conflicts.at (Unresolved SR Conflicts)
18742 (Solved SR Conflicts): Exercise --report=all.
18743
18744 2002-05-26 Akim Demaille <akim@epita.fr>
18745
18746 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18747 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18748 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
18749 (token_number_t, item_number_as_token_number)
18750 (token_number_as_item_number, muscle_insert_token_number_table):
18751 Rename as...
18752 (symbol_number_t, item_number_as_symbol_number)
18753 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
18754 these, since it is more appropriate.
18755
18756 2002-05-26 Akim Demaille <akim@epita.fr>
18757
18758 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
18759 `Error:' lines.
18760 * data/bison.simple (yystos) [YYDEBUG]: New.
18761 (yyparse) [YYDEBUG]: Display the symbols which are popped during
18762 error recovery.
18763 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
18764
18765 2002-05-25 Akim Demaille <akim@epita.fr>
18766
18767 * doc/bison.texinfo (Debugging): Split into...
18768 (Tracing): this new section, its former contents, and...
18769 (Understanding): this new section.
18770 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
18771 by...
18772 (report_flag): this.
18773 Adjust all dependencies.
18774 (report_args, report_types, report_argmatch): New.
18775 (usage, getargs): Report/support -r, --report.
18776 * src/options.h
18777 (struct option_table_struct): Rename as..,
18778 (struct option_table_s): this.
18779 Rename the `set_flag' member to `flag' to match with getopt_long's
18780 struct.
18781 * src/options.c (option_table): Split verbose into an entry for
18782 %verbose, and another for --verbose.
18783 Support --report/-r, so remove -r from the obsolete --raw.
18784 * src/print.c: Attach full item sets and lookaheads reports to
18785 report_flag instead of trace_flag.
18786 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
18787
18788 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18789 and Paul Eggert <eggert@twinsun.com>
18790
18791 * data/bison.simple (yyparse): Correct error handling to conform to
18792 POSIX and yacc. Specifically, after syntax error is discovered,
18793 do not reduce further before shifting the error token.
18794 Clean up the code a bit by removing the labels yyerrdefault,
18795 yyerrhandle, yyerrpop.
18796 * NEWS: Document the above.
18797
18798 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18799
18800 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
18801 type; it isn't always big enough, since it doesn't necessarily
18802 include non-terminals.
18803 (yytranslate): Expand definition of yy_token_number_type, so that
18804 the latter can be removed.
18805 (yy_token_number_type): Remove, only one use.
18806 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
18807 don't use TokenNumberType as element type.
18808
18809 * tests/regression.at: Modify expected output to agree with change
18810 to yyr1 and yytranslate.
18811
18812 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
18813
18814 * src/reader.c (parse_action): Use copy_character instead of
18815 obstack_1grow.
18816
18817 2002-05-13 Akim Demaille <akim@epita.fr>
18818
18819 * tests/regression.at (Token definitions): Prototype yylex and
18820 yyerror.
18821
18822 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18823
18824 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
18825 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
18826 32-bit arithmetic.
18827 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
18828
18829 2002-05-07 Akim Demaille <akim@epita.fr>
18830
18831 * tests/synclines.at: Be sure to prototype yylex and yyerror to
18832 avoid GCC warnings.
18833
18834 2002-05-07 Akim Demaille <akim@epita.fr>
18835
18836 Kill GCC warnings.
18837
18838 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
18839 over the RHS of each rule.
18840 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
18841 * src/state.h (state_t): Member `nitems' is unsigned short.
18842 * src/LR0.c (get_state): Adjust.
18843 * src/reader.c (packgram): Likewise.
18844 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
18845 `Type'.
18846 (muscle_insert_int_table): Remove, unused.
18847 (prepare_rules): Remove `max'.
18848
18849 2002-05-06 Akim Demaille <akim@epita.fr>
18850
18851 * src/closure.c (print_firsts): Display of the symbol tags.
18852 (bitmatrix_print): Move to...
18853 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
18854 here.
18855 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
18856
18857 2002-05-06 Akim Demaille <akim@epita.fr>
18858
18859 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
18860 hash_do_for_each.
18861
18862 2002-05-06 Akim Demaille <akim@epita.fr>
18863
18864 * src/LR0.c (new_state, get_state): Instead of using the global
18865 `kernel_size' and `kernel_base', have two new arguments:
18866 `core_size' and `core'.
18867 Adjust callers.
18868
18869 2002-05-06 Akim Demaille <akim@epita.fr>
18870
18871 * src/reader.c (packgram): No longer end `ritem' with a 0
18872 sentinel: it is not used.
18873
18874 2002-05-05 Akim Demaille <akim@epita.fr>
18875
18876 New experimental feature: display the lookaheads in the report and
18877 graph.
18878
18879 * src/print (print_core): When --trace-flag, display the rules
18880 lookaheads.
18881 * src/print_graph.c (print_core): Likewise.
18882 Swap the arguments.
18883 Adjust caller.
18884
18885 2002-05-05 Akim Demaille <akim@epita.fr>
18886
18887 * tests/torture.at (Many lookaheads): New test.
18888
18889 2002-05-05 Akim Demaille <akim@epita.fr>
18890
18891 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
18892 (GENERATE_MUSCLE_INSERT_TABLE): this.
18893 (output_int_table, output_unsigned_int_table, output_short_table)
18894 (output_token_number_table, output_item_number_table): Replace with...
18895 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
18896 (muscle_insert_short_table, muscle_insert_token_number_table)
18897 (muscle_insert_item_number_table): these.
18898 Adjust all callers.
18899 (prepare_tokens): Don't free `translations', since...
18900 * src/reader.h, src/reader.c (grammar_free): do it.
18901 Move to...
18902 * src/gram.h, src/gram.c (grammar_free): here.
18903 * data/bison.simple, data/bison.c++: b4_token_number_max is now
18904 b4_translate_max.
18905
18906 2002-05-05 Akim Demaille <akim@epita.fr>
18907
18908 * src/output.c (output_unsigned_int_table): New.
18909 (prepare_rules): `i' is unsigned.
18910 `prhs', `rline', `r2' are unsigned int.
18911 Rename muscle `rhs_number_max' as `rhs_max'.
18912 Output muscles `prhs_max', `rline_max', and `r2_max'.
18913 Free rline and r1.
18914 * data/bison.simple, data/bison.c++: Adjust to use these muscles
18915 to compute types instead of constant types.
18916 * tests/regression.at (Web2c Actions): Adjust.
18917
18918 2002-05-04 Akim Demaille <akim@epita.fr>
18919
18920 * src/symtab.h (SALIAS, SUNDEF): Rename as...
18921 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
18922 Adjust dependencies.
18923 * src/output.c (token_definitions_output): Be sure not to output a
18924 `#define 'a'' when fed with `%token 'a' "a"'.
18925 * tests/regression.at (Token definitions): New.
18926
18927 2002-05-03 Paul Eggert <eggert@twinsun.com>
18928
18929 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
18930 for K&R C.
18931
18932 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
18933
18934 * Makefile.am (SUBDIRS): Remove intl.
18935 (EXTRA_DIST): Add config/config.rpath.
18936
18937 2002-05-03 Akim Demaille <akim@epita.fr>
18938
18939 * data/bison.simple (m4_if): Don't output empty enums.
18940 And actually, output valid enum definitions :(.
18941
18942 2002-05-03 Akim Demaille <akim@epita.fr>
18943
18944 * configure.bat: Remove, completely obsolete.
18945 * Makefile.am (EXTRA_DIST): Adjust.
18946 Don't distribute config.rpath...
18947 * config/Makefile.am (EXTRA_DIST): Do it.
18948
18949 2002-05-03 Akim Demaille <akim@epita.fr>
18950
18951 * configure.in (GETTEXT_VERSION): New.
18952 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
18953
18954 2002-05-03 Akim Demaille <akim@epita.fr>
18955
18956 * data/bison.simple (b4_token_enum): New.
18957 (b4_token_defines): Use it to output tokens both as #define and
18958 enums.
18959 Suggested by Paul Eggert.
18960 * src/output.c (token_definitions_output): Don't output spurious
18961 white spaces.
18962
18963 2002-05-03 Akim Demaille <akim@epita.fr>
18964
18965 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18966
18967 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
18968
18969 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
18970 Update the stack class, give a try to deque as the default container.
18971
18972 2002-05-02 Akim Demaille <akim@epita.fr>
18973
18974 * data/bison.simple (yyparse): Do not implement @$ = @1.
18975 (YYLLOC_DEFAULT): Adjust to do it.
18976 * doc/bison.texinfo (Location Default Action): Fix.
18977
18978 2002-05-02 Akim Demaille <akim@epita.fr>
18979
18980 * src/reader.c (parse_braces): Merge into...
18981 (parse_action): this.
18982
18983 2002-05-02 Akim Demaille <akim@epita.fr>
18984
18985 * configure.in (ALL_LINGUAS): Remove.
18986 * po/LINGUAS, hr.po: New.
18987
18988 2002-05-02 Akim Demaille <akim@epita.fr>
18989
18990 Remove the so called hairy (semantic) parsers.
18991
18992 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
18993 * src/gram.h, src/gram.c (semantic_parser): Remove.
18994 (rule_t): Remove the guard and guard_line members.
18995 * src/lex.h (token_t): remove tok_guard.
18996 * src/options.c (option_table): Remove %guard and %semantic_parser
18997 support.
18998 * src/output.c, src/output.h (guards_output): Remove.
18999 (prepare): Adjust.
19000 (token_definitions_output): Don't output the `T'
19001 tokens (???).
19002 (output_skeleton): Don't output the guards.
19003 * src/files.c, src/files.c (attrsfile): Remove.
19004 * src/reader.c (symbol_list): Remove the guard and guard_line
19005 members.
19006 Adjust dependencies.
19007 (parse_guard): Remove.
19008 * data/bison.hairy: Remove.
19009 * doc/bison.texinfo (Environment Variables): Remove occurrences of
19010 BISON_HAIRY.
19011
19012 2002-05-02 Akim Demaille <akim@epita.fr>
19013
19014 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
19015 (parse_guard): Rename the formal argument `stack_offset' as
19016 `rule_length', which is more readable.
19017 Adjust callers.
19018 (copy_at, copy_dollar): Instead of outputting the hard coded
19019 values of $$, $n and so forth, output invocation to b4_lhs_value,
19020 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
19021 Note: this patch partially drops `semantic-parser' support: it
19022 always does `rule_length - n', where semantic parsers ought to
19023 always use `-n'.
19024 * data/bison.simple, data/bison.c++ (b4_lhs_value)
19025 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
19026
19027 2002-05-02 Akim Demaille <akim@epita.fr>
19028
19029 * configure.in (AC_INIT): Bump to 1.49b.
19030 (AM_INIT_AUTOMAKE): Short invocation.
19031
19032 2002-05-02 Akim Demaille <akim@epita.fr>
19033
19034 Version 1.49a.
19035
19036 2002-05-01 Akim Demaille <akim@epita.fr>
19037
19038 * src/skeleton.h: Remove.
19039
19040 2002-05-01 Akim Demaille <akim@epita.fr>
19041
19042 * src/skeleton.h: Fix the #endif.
19043 Reported by Magnus Fromreide.
19044
19045 2002-04-26 Paul Eggert <eggert@twinsun.com>
19046
19047 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
19048 Define if we define YYSTYPE and YYLTYPE, respectively.
19049 (YYCOPY): Fix [] quoting problem in the non-GCC case.
19050
19051 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
19052
19053 * src/scan-skel.l: Postprocess quadrigraphs.
19054
19055 * src/reader.c (copy_character): New function, used to output
19056 single characters while replacing `[' and `]' with quadrigraphs, to
19057 avoid troubles with M4 quotes.
19058 (copy_comment): Output characters with copy_character.
19059 (read_additionnal_code): Likewise.
19060 (copy_string2): Likewise.
19061 (copy_definition): Likewise.
19062
19063 * tests/calc.at: Exercise M4 quoting.
19064
19065 2002-04-25 Akim Demaille <akim@epita.fr>
19066
19067 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
19068 between `!' and the command.
19069 Reported by Paul Eggert.
19070
19071 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
19072
19073 * tests/calc.at: Exercise prologue splitting.
19074
19075 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
19076 `b4_post_prologue' instead of `b4_prologue'.
19077
19078 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
19079 muscles.
19080 (output): Free pre_prologue_obstack and post_prologue_obstack.
19081 * src/files.h, src/files.c (attrs_obstack): Remove.
19082 (pre_prologue_obstack, post_prologue_obstack): New.
19083 * src/reader.c (copy_definition): Add a parameter to specify the
19084 obstack to fill, instead of using attrs_obstack unconditionally.
19085 (read_declarations): Pass pre_prologue_obstack to copy_definition if
19086 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
19087
19088 2002-04-23 Paul Eggert <eggert@twinsun.com>
19089
19090 * data/bison.simple: Remove unnecessary commentary and white
19091 space differences from 1_29-branch.
19092 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
19093
19094 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
19095 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
19096 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
19097 constructors or destructors.
19098
19099 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
19100
19101 2002-04-23 Akim Demaille <akim@epita.fr>
19102
19103 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
19104 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
19105 location with columns.
19106 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
19107 All reported by Paul Eggert.
19108
19109 2002-04-22 Akim Demaille <akim@epita.fr>
19110
19111 * src/reduce.c (dump_grammar): Move to...
19112 * src/gram.h, src/gram.c (grammar_dump): here.
19113 Be sure to separate long item numbers.
19114 Don't read the members of a rule's prec if its nil.
19115
19116 2002-04-22 Akim Demaille <akim@epita.fr>
19117
19118 * src/output.c (table_size, table_grow): New.
19119 (MAXTABLE): Remove, replace uses with table_size.
19120 (pack_vector): Instead of dying when the table is too big, grow it.
19121
19122 2002-04-22 Akim Demaille <akim@epita.fr>
19123
19124 * data/bison.simple (yyr1): Its type is that of a token number.
19125 * data/bison.c++ (r1_): Likewise.
19126 * tests/regression.at (Web2c Actions): Adjust.
19127
19128 2002-04-22 Akim Demaille <akim@epita.fr>
19129
19130 * src/reader.c (token_translations_init): 256 is now the default
19131 value for the error token, i.e., it will be assigned another
19132 number if the user assigned 256 to one of her tokens.
19133 (reader): Don't force 256 to error.
19134 * doc/bison.texinfo (Symbols): Adjust.
19135 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
19136 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
19137 etc. instead of 10, 20, 30 (which was used to `jump' over error
19138 (256) and undefined (2)).
19139
19140 2002-04-22 Akim Demaille <akim@epita.fr>
19141
19142 Propagate more token_number_t.
19143
19144 * src/gram.h (token_number_as_item_number)
19145 (item_number_as_token_number): New.
19146 * src/output.c (GENERATE_OUTPUT_TABLE): New.
19147 Use it to create output_item_number_table and
19148 output_token_number_table.
19149 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
19150 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
19151 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
19152 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
19153
19154 2002-04-22 Akim Demaille <akim@epita.fr>
19155
19156 * src/output.h, src/output.c (get_lines_number): Remove.
19157
19158 2002-04-19 Akim Demaille <akim@epita.fr>
19159
19160 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
19161 as Lex/Flex'.
19162 (Debugging): More details about enabling the debugging features.
19163 (Table of Symbols): Describe $$, $n, @$, and @n.
19164 Suggested by Tim Josling.
19165
19166 2002-04-19 Akim Demaille <akim@epita.fr>
19167
19168 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
19169
19170 2002-04-10 Akim Demaille <akim@epita.fr>
19171
19172 * src/system.h: Rely on HAVE_LIMITS_H.
19173 Suggested by Paul Eggert.
19174
19175 2002-04-09 Akim Demaille <akim@epita.fr>
19176
19177 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
19178 full stderr, and strip it according to the bison options, instead
19179 of composing the error message from different bits.
19180 This makes it easier to check for several error messages.
19181 Adjust all the invocations.
19182 Add an invocation exercising the error token.
19183 Add an invocation demonstrating a stupid error message.
19184 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
19185 Adjust the tests.
19186 Error message are for stderr, not stdout.
19187
19188 2002-04-09 Akim Demaille <akim@epita.fr>
19189
19190 * src/gram.h, src/gram.c (error_token_number): Remove, use
19191 errtoken->number.
19192 * src/reader.c (reader): Don't specify the user token number (2)
19193 for $undefined, as it uselessly prevents using it.
19194 * src/gram.h (token_number_t): Move to...
19195 * src/symtab.h: here.
19196 (state_t.number): Is a token_number_t.
19197 * src/print.c, src/reader.c: Use undeftoken->number instead of
19198 hard coded 2.
19199 (Even though this 2 is not the same as above: the number of the
19200 undeftoken remains being 2, it is its user token number which
19201 might not be 2).
19202 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
19203 `user_token_number_max'.
19204 Output `undef_token_number'.
19205 * data/bison.simple, data/bison.c++: Use them.
19206 Be sure to map invalid yylex return values to
19207 `undef_token_number'. This saves us from gratuitous SEGV.
19208
19209 * tests/conflicts.at (Solved SR Conflicts)
19210 (Unresolved SR Conflicts): Adjust.
19211 * tests/regression.at (Web2c Actions): Adjust.
19212
19213 2002-04-08 Akim Demaille <akim@epita.fr>
19214
19215 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
19216 Adding #line.
19217 Remove the duplicate `typedefs'.
19218 (RhsNumberType): Fix the declaration and various other typos.
19219 Use __ofile__.
19220 * data/bison.simple: Use __ofile__.
19221 * src/scan-skel.l: Handle __ofile__.
19222
19223 2002-04-08 Akim Demaille <akim@epita.fr>
19224
19225 * src/gram.h (item_number_t): New, the type of item numbers in
19226 RITEM. Note that it must be able to code symbol numbers as
19227 positive number, and the negation of rule numbers as negative
19228 numbers.
19229 Adjust all dependencies (pretty many).
19230 * src/reduce.c (rule): Remove this `short *' pointer: use
19231 item_number_t.
19232 * src/system.h (MINSHORT, MAXSHORT): Remove.
19233 Include `limits.h'.
19234 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
19235 (shortcpy): Remove.
19236 (MAXTABLE): Move to...
19237 * src/output.c (MAXTABLE): here.
19238 (prepare_rules): Use output_int_table to output rhs.
19239 * data/bison.simple, data/bison.c++: Adjust.
19240 * tests/torture.at (Big triangle): Move the limit from 254 to
19241 500.
19242 * tests/regression.at (Web2c Actions): Ajust.
19243
19244 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
19245 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
19246 passes, but produces negative #line number, once fixed, GCC is
19247 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
19248 C), it passes.
19249 * src/state.h (state_h): Code input lines on ints, not shorts.
19250
19251 2002-04-08 Akim Demaille <akim@epita.fr>
19252
19253 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
19254 and then the grammar.
19255
19256 2002-04-08 Akim Demaille <akim@epita.fr>
19257
19258 * src/system.h: No longer using strndup.
19259
19260 2002-04-07 Akim Demaille <akim@epita.fr>
19261
19262 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
19263 * src/output.c (output_table_data): Return the longest number.
19264 (prepare_tokens): Output `token_number_max').
19265 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
19266 New.
19267 Use them to define yy_token_number_type/TokenNumberType.
19268 Use this type for yytranslate.
19269 * tests/torture.at (Big triangle): Push the limit from 124 to
19270 253.
19271 * tests/regression.at (Web2c Actions): Adjust.
19272
19273 2002-04-07 Akim Demaille <akim@epita.fr>
19274
19275 * tests/torture.at (Big triangle): New.
19276 (GNU AWK Grammar, GNU Cim Grammar): Move to...
19277 * tests/existing.at: here.
19278
19279 2002-04-07 Akim Demaille <akim@epita.fr>
19280
19281 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
19282 nritems.
19283 Adjust dependencies.
19284
19285 2002-04-07 Akim Demaille <akim@epita.fr>
19286
19287 * src/reader.c: Normalize increments to prefix form.
19288
19289 2002-04-07 Akim Demaille <akim@epita.fr>
19290
19291 * src/reader.c, symtab.c: Remove debugging code.
19292
19293 2002-04-07 Akim Demaille <akim@epita.fr>
19294
19295 Rename all the `bucket's as `symbol_t'.
19296
19297 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
19298 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
19299 * src/symtab.c, src/symtab.h (bucket): Rename as...
19300 (symbol_t): this.
19301 (symbol_list_new, bucket_check_defined, bucket_make_alias)
19302 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
19303 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19304 (buckets_new, buckets_free, buckets_do): Rename as...
19305 (symbol_list_new, symbol_check_defined, symbol_make_alias)
19306 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
19307 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
19308 (symbols_new, symbols_free, symbols_do): these.
19309
19310 2002-04-07 Akim Demaille <akim@epita.fr>
19311
19312 Use lib/hash for the symbol table.
19313
19314 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
19315 EOF.
19316 * src/lex.c (lex): Set the `number' member of new terminals.
19317 * src/reader.c (bucket_check_defined, bucket_make_alias)
19318 (bucket_check_alias_consistence, bucket_translation): New.
19319 (reader, grammar_free, readgram, token_translations_init)
19320 (packsymbols): Adjust.
19321 (reader): Number the predefined tokens.
19322 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
19323 for predefined tokens.
19324 * src/symtab.h (bucket): Remove all the hash table related
19325 members.
19326 * src/symtab.c (symtab): Replace by...
19327 (bucket_table): this.
19328 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19329 (buckets_new, buckets_do): New.
19330
19331 2002-04-07 Akim Demaille <akim@epita.fr>
19332
19333 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
19334 (start_symbol, max_user_token_number, semantic_parser)
19335 (error_token_number): Initialize.
19336 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
19337 Initialize.
19338 (reader): Don't.
19339 (errtoken, eoftoken, undeftoken, axiom): Extern.
19340
19341 2002-04-07 Akim Demaille <akim@epita.fr>
19342
19343 * src/gram.h (rule_s): prec and precsym are now pointers
19344 to the bucket giving the priority/associativity.
19345 Member `associativity' removed: useless.
19346 * src/reduce.c, src/conflicts.c: Adjust.
19347
19348 2002-04-07 Akim Demaille <akim@epita.fr>
19349
19350 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
19351 Properly escape the symbols' TAG when outputting them.
19352
19353 2002-04-07 Akim Demaille <akim@epita.fr>
19354
19355 * src/lalr.h (LA): Is a bitsetv, not bitset*.
19356
19357 2002-04-07 Akim Demaille <akim@epita.fr>
19358
19359 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
19360 (LArule): this, which is an array to rule_t*.
19361 * src/print.c, src/conflicts.c: Adjust.
19362
19363 2002-04-07 Akim Demaille <akim@epita.fr>
19364
19365 * src/gram.h (rule_t): Rename `number' as `user_number'.
19366 `number' is a new member.
19367 Adjust dependencies.
19368 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
19369
19370 2002-04-07 Akim Demaille <akim@epita.fr>
19371
19372 As a result of the previous patch, it is no longer needed
19373 to reorder ritem itself.
19374
19375 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
19376
19377 2002-04-07 Akim Demaille <akim@epita.fr>
19378
19379 Be sure never to walk through RITEMS, but use only data related to
19380 the rules themselves. RITEMS should be banished.
19381
19382 * src/output.c (output_token_translations): Rename as...
19383 (prepare_tokens): this.
19384 In addition to `translate', prepare the muscles `tname' and
19385 `toknum', which were handled by...
19386 (output_rule_data): this.
19387 Remove, and move the remainder of its outputs into...
19388 (prepare_rules): this new routines, which also merges content from
19389 (output_gram): this.
19390 (prepare_rules): Be sure never to walk through RITEMS.
19391 (output_stos): Rename as...
19392 (prepare_stos): this.
19393 (output): Always invoke prepare_states, after all, just don't use it
19394 in the output if you don't need it.
19395
19396 2002-04-07 Akim Demaille <akim@epita.fr>
19397
19398 * src/LR0.c (new_state): Display `nstates' as the name of the
19399 newly created state.
19400 Adjust to initialize first_state and last_state if needed.
19401 Be sure to distinguish the initial from the final state.
19402 (new_states): Create the itemset of the initial state, and use
19403 new_state.
19404 * src/closure.c (closure): Now that the initial state has its
19405 items properly set, there is no need for a special case when
19406 creating `ruleset'.
19407
19408 As a result, now the rule 0, reducing to $axiom, is visible in the
19409 outputs. Adjust the test suite.
19410
19411 * tests/conflicts.at (Solved SR Conflicts)
19412 (Unresolved SR Conflicts): Adjust.
19413 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
19414 * tests/conflicts.at (S/R in initial): New.
19415
19416 2002-04-07 Akim Demaille <akim@epita.fr>
19417
19418 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
19419 the RHS of the rules.
19420 * src/output.c (output_gram): Likewise.
19421
19422 2002-04-07 Akim Demaille <akim@epita.fr>
19423
19424 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
19425 bucket.
19426 Adjust all dependencies.
19427 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
19428 `number' of the buckets too.
19429 * src/gram.h: Include `symtab.h'.
19430 (associativity): Move to...
19431 * src/symtab.h: here.
19432 No longer include `gram.h'.
19433
19434 2002-04-07 Akim Demaille <akim@epita.fr>
19435
19436 * src/gram.h, src/gram.c (rules_rhs_length): New.
19437 (ritem_longest_rhs): Use it.
19438 * src/gram.h (rule_t): `number' is a new member.
19439 * src/reader.c (packgram): Set it.
19440 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
19441 the end of `rules', and count them out of `nrules'.
19442 (reduce_output, dump_grammar): Adjust.
19443 * src/print.c (print_grammar): It is no longer needed to check for
19444 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
19445 * tests/reduce.at (Reduced Automaton): New test.
19446
19447 2002-04-07 Akim Demaille <akim@epita.fr>
19448
19449 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
19450 lacking `+ 1' to nrules, Bison reported as useless a token if it
19451 was used solely to set the precedence of the last rule...
19452
19453 2002-04-07 Akim Demaille <akim@epita.fr>
19454
19455 * data/bison.c++, data/bison.simple: Don't output the current file
19456 name in #line, to avoid useless diffs between two identical
19457 outputs under different names.
19458
19459 2002-04-07 Akim Demaille <akim@epita.fr>
19460
19461 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
19462 Normalize loops to using `< nrules + 1', not `<= nrules'.
19463
19464 2002-04-07 Akim Demaille <akim@epita.fr>
19465
19466 * TODO: Update.
19467
19468 2002-04-07 Akim Demaille <akim@epita.fr>
19469
19470 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
19471 bucket.value as bucket.number.
19472
19473 2002-04-07 Akim Demaille <akim@epita.fr>
19474
19475 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
19476 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
19477 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
19478 RHS, instead of being an index in RITEMS.
19479
19480 2002-04-04 Paul Eggert <eggert@twinsun.com>
19481
19482 * doc/bison.texinfo: Update copyright date.
19483 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
19484 (Symbols): Warn about running Bison in one character set,
19485 but compiling and/or running in an incompatible one.
19486 Warn about character code 256, too.
19487
19488 2002-04-03 Paul Eggert <eggert@twinsun.com>
19489
19490 * src/bison.data (YYSTACK_ALLOC): Depend on whether
19491 YYERROR_VERBOSE is nonzero, not whether it is defined.
19492
19493 Merge changes from bison-1_29-branch.
19494
19495 2002-03-20 Paul Eggert <eggert@twinsun.com>
19496
19497 Merge fixes from Debian bison_1.34-1.diff.
19498
19499 * configure.in (AC_PREREQ): 2.53.
19500
19501 2002-03-20 Akim Demaille <akim@epita.fr>
19502
19503 * src/conflicts.c (log_resolution): Argument `resolution' is const.
19504
19505 2002-03-19 Paul Eggert <eggert@twinsun.com>
19506
19507 * src/bison.simple (YYCOPY): New macro.
19508 (YYSTACK_RELOCATE): Use it.
19509 Remove Type arg; no longer needed. All callers changed.
19510 (yymemcpy): Remove; no longer needed.
19511
19512 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
19513 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
19514
19515 2002-03-19 Akim Demaille <akim@epita.fr>
19516
19517 Test and fix the #line outputs.
19518
19519 * tests/atlocal.at (GCC): New.
19520 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
19521 (Prologue synch line, %union synch line, Postprologue synch line)
19522 (Action synch line, Epilogue synch line): New tests.
19523 * src/reader.c (parse_union_decl): Define the muscle stype_line.
19524 * data/bison.simple, data/bison.c++: Use it.
19525
19526 2002-03-19 Akim Demaille <akim@epita.fr>
19527
19528 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
19529 (Solved SR Conflicts, %expect not enough, %expect right)
19530 (%expect too much): Move to...
19531 * tests/conflicts.at: this new file.
19532
19533 2002-03-19 Akim Demaille <akim@epita.fr>
19534
19535 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
19536 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
19537 that we can move to enums for instance.
19538 * src/output.c (token_definitions_output): Output a list of
19539 `token-name, token-number' instead of the #define.
19540 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
19541
19542 2002-03-14 Akim Demaille <akim@epita.fr>
19543
19544 Use Gettext 0.11.1.
19545
19546 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
19547
19548 * data/bison.c++: Make the user able to add members to the generated
19549 parser by subclassing.
19550
19551 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
19552
19553 * src/reader.c (read_additionnal_code): `c' should be an integer, not
19554 a character.
19555 Reported by Nicolas Tisserand and Nicolas Burrus.
19556
19557 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19558
19559 * src/reader.c: Warn about lacking semi-colons, do not complain.
19560
19561 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19562
19563 * data/bison.c++: Remove a debug line.
19564
19565 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19566
19567 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
19568 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
19569 provide a default implementation.
19570
19571 2002-03-04 Akim Demaille <akim@epita.fr>
19572
19573 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
19574 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
19575 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
19576 * tests/semantic.at (Parsing Guards): Similarly.
19577 * src/reader.at (readgram): Complain if the last rule is not ended
19578 with a semi-colon.
19579
19580 2002-03-04 Akim Demaille <akim@epita.fr>
19581
19582 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
19583 * src/closure.c: here.
19584 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
19585 RTC.
19586 * src/warshall.h, src/warshall.c: Remove.
19587 * tests/sets.at (Broken Closure): Adjust.
19588
19589 2002-03-04 Akim Demaille <akim@epita.fr>
19590
19591 * src/output.c (output_skeleton): tempdir is const.
19592 bytes_read is unused.
19593
19594 2002-03-04 Akim Demaille <akim@epita.fr>
19595
19596 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19597 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
19598 Update.
19599 From Michael Hayes.
19600
19601 2002-03-04 Akim Demaille <akim@epita.fr>
19602
19603 * src/closure.c (closure): `r' is unused.
19604
19605 2002-03-04 Akim Demaille <akim@epita.fr>
19606
19607 * tests/sets.at (Broken Closure): Add the ending `;'.
19608 * src/reader.at (readgram): Complain if a rule is not ended with a
19609 semi-colon.
19610
19611 2002-03-04 Akim Demaille <akim@epita.fr>
19612
19613 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
19614 (count_sr_conflicts): Use bitset_count.
19615 * src/reduce.c (inaccessable_symbols): Ditto.
19616 (bits_size): Remove.
19617 * src/warshall.h, src/warshall.c: Convert to bitsetv.
19618
19619 2002-03-04 Akim Demaille <akim@epita.fr>
19620
19621 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
19622 * src/reduce.c: Remove the `bitset_zero's following the
19623 `bitset_create's, as now it is performed by the latter.
19624
19625 2002-03-04 Akim Demaille <akim@epita.fr>
19626
19627 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
19628 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
19629 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
19630 latest sources from Michael.
19631
19632 2002-03-04 Akim Demaille <akim@epita.fr>
19633
19634 * src/output.c (output): Don't free the grammar.
19635 * src/reader.c (grammar_free): New.
19636 * src/main.c (main): Call it and don't free symtab here.
19637
19638 2002-03-04 Akim Demaille <akim@epita.fr>
19639
19640 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
19641 before returning.
19642 Reported by Benoit Perrot.
19643
19644 2002-03-04 Akim Demaille <akim@epita.fr>
19645
19646 Use bitset operations when possible, not loops over bits.
19647
19648 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
19649 bitset_or.
19650 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
19651 * src/reduce.c (useless_nonterminals): Formatting changes.
19652 * src/warshall.c (TC): Use bitset_or.
19653
19654 2002-03-04 Akim Demaille <akim@epita.fr>
19655
19656 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
19657 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
19658 Ditto.
19659
19660 2002-03-04 Akim Demaille <akim@epita.fr>
19661
19662 * src/lalr.c (F): Now a bitset*.
19663 Adjust all dependencies.
19664
19665 2002-03-04 Akim Demaille <akim@epita.fr>
19666
19667 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
19668 Adjust all dependencies.
19669
19670 2002-03-04 Akim Demaille <akim@epita.fr>
19671
19672 * src/L0.c, src/LR0.h (nstates): Be size_t.
19673 Adjust comparisons (signed vs unsigned).
19674 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
19675 bitset*.
19676 Adjust all dependencies.
19677
19678 2002-03-04 Akim Demaille <akim@epita.fr>
19679
19680 * src/closure.c (firsts): Now, also a bitset.
19681 Adjust all dependencies.
19682 (varsetsize): Remove, now unused.
19683 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
19684
19685 2002-03-04 Akim Demaille <akim@epita.fr>
19686
19687 * src/print.c: Convert to use bitset.h, not hand coded iterations
19688 over ints.
19689
19690 2002-03-04 Akim Demaille <akim@epita.fr>
19691
19692 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
19693
19694 2002-03-04 Akim Demaille <akim@epita.fr>
19695
19696 * src/closure.c (ruleset): Be a bitset.
19697 (rulesetsize): Remove.
19698
19699 2002-03-04 Akim Demaille <akim@epita.fr>
19700
19701 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19702 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
19703 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
19704 * src/closure.c (fderives): Be an array of bitsets.
19705
19706 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
19707
19708 * data/bison.c++: Merge the two generated headers. Insert a copyright
19709 notice in each output file.
19710
19711 2002-02-28 Akim Demaille <akim@epita.fr>
19712
19713 * data/bison.c++: Copy the prologue of bison.simple to fetch
19714 useful M4 definitions, such as b4_header_guard.
19715
19716 2002-02-25 Akim Demaille <akim@epita.fr>
19717
19718 * src/getargs.c (version): Give the name of the authors, and use a
19719 translator friendly scheme for the bgr
19720 copyright notice.
19721
19722 2002-02-25 Akim Demaille <akim@epita.fr>
19723
19724 * src/output.c (header_output): Remove, now handled completely via
19725 M4.
19726
19727 2002-02-25 Akim Demaille <akim@epita.fr>
19728
19729 * m4/m4.m4: New, from CVS Autoconf.
19730 * configure.in: Invoke it.
19731 * src/output.c (output_skeleton): Use its result instead of the
19732 hard coded name.
19733
19734 2002-02-25 Akim Demaille <akim@epita.fr>
19735
19736 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
19737 Fileutils 4.1.5.
19738 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
19739 * src/output.c (output_skeleton): Use mkstemp to create a real
19740 temporary file.
19741 Move the filling of `skeleton' and its muscle to...
19742 (prepare): here.
19743 (output): Move the definition of the prologue muscle to...
19744 (prepare): here.
19745 * src/system.h (DEFAULT_TMPDIR): New.
19746
19747 2002-02-14 Paul Eggert <eggert@twinsun.com>
19748
19749 Remove the support for C++ namespace cleanliness; it was
19750 causing more problems than it was curing, since it didn't work
19751 properly on some nonstandard C++ compilers. This can wait
19752 for a proper C++ parser.
19753
19754 * NEWS: Document this.
19755 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
19756 of C++, as it's treated like C now.
19757 * src/bison.simple (YYSTD): Remove.
19758 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
19759 Treat C++ just like Standard C instead of trying to support
19760 namespace cleanliness.
19761
19762 2002-02-14 Akim Demaille <akim@epita.fr>
19763
19764 * tests/regression.at (else): Adjust to Andreas' change.
19765
19766 2002-02-14 Akim Demaille <akim@epita.fr>
19767
19768 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
19769
19770 2002-02-13 Andreas Schwab <schwab@suse.de>
19771
19772 * src/output.c (output_rule_data): Don't output NULL, it might
19773 not be defined yet.
19774
19775 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
19776
19777 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
19778 (Copyright notice): Update.
19779
19780 2002-02-11 Akim Demaille <akim@epita.fr>
19781
19782 * tests/regression.at (%nonassoc and eof): Don't include
19783 nonportable headers.
19784
19785 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
19786
19787 * data/bison.c++: Correct error recovery. Make the user able to
19788 initialize the starting location.
19789
19790 2002-02-07 Akim Demaille <akim@epita.fr>
19791
19792 * tests/input.at: New.
19793
19794 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19795
19796 * data/bison.c++: Replace some direct m4 expansions by constants. Be
19797 more consistent when naming methods and variables. Put preprocessor
19798 directives around tables only needed for debugging.
19799
19800 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19801
19802 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
19803 C++ parsers.
19804 (yy::b4_name::parse): Use print_.
19805
19806 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19807
19808 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
19809
19810 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19811
19812 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
19813 C++ parsers.
19814 (yy::b4_name::parse): Build verbose error messages, and use error_.
19815
19816 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
19817
19818 * data/bison.c++: Fix m4 quoting in comments.
19819
19820 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
19821
19822 * data/bison.c++: Adjust the parser code. Fix some muscles that were
19823 not expanded by m4.
19824
19825 2002-02-05 Akim Demaille <akim@epita.fr>
19826
19827 * data/bison.c++: Adjust to the M4 back end.
19828 More is certainly needed.
19829
19830 2002-02-05 Akim Demaille <akim@epita.fr>
19831
19832 Give a try to M4 as a back end.
19833
19834 * lib/readpipe.c: New, from wdiff.
19835 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
19836 BISON_HAIRY.
19837 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
19838 specific values. Now it is m4 that performs the lookup.
19839 * src/parse-skel.y: Remove.
19840 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
19841 * src/output.c (actions_output, guards_output)
19842 (token_definitions_output): No longer keeps track of the output
19843 line number, hence remove the second argument.
19844 (guards_output): Check against the guard member of a rule, not the
19845 action member.
19846 Adjust callers.
19847 (output_skeleton): Don't look for the skeleton location, let m4 do
19848 that.
19849 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
19850 file will be used.
19851 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
19852 (prepare): Given that for the time being changesyntax is not
19853 usable in M4, rename the muscles using `-' to `_'.
19854 Define `defines_flag', `output_parser_name' and `output_header_name'.
19855 * src/output.h (actions_output, guards_output)
19856 (token_definitions_output): Adjust prototypes.
19857 * src/scan-skel.l: Instead of scanning the skeletons, it now
19858 processes the output of m4: `__oline__' and `#output'.
19859 * data/bison.simple: Adjust to be used by M4(sugar).
19860 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
19861 to date.
19862 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
19863 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
19864 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
19865 shamelessly stolen from CVS Autoconf.
19866
19867 2002-02-05 Akim Demaille <akim@epita.fr>
19868
19869 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
19870 * configure.in: Check for the declarations of free and malloc.
19871 * src/muscle_tab.c: Adjust.
19872
19873 2002-02-05 Akim Demaille <akim@epita.fr>
19874
19875 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
19876 which have no values.
19877
19878 2002-02-05 Akim Demaille <akim@epita.fr>
19879
19880 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
19881 * data/: here.
19882
19883 2002-01-29 Paul Eggert <eggert@twinsun.com>
19884
19885 * src/bison.simple (YYSIZE_T): Do not define merely because
19886 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
19887 On some platforms, <alloca.h> does not declare YYSTD (size_t).
19888
19889 2002-01-27 Akim Demaille <akim@epita.fr>
19890
19891 Fix `%nonassoc and eof'.
19892
19893 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
19894 which were not properly copied! Replace
19895 memcpy (res->errs, src->errs, src->nerrs);
19896 with
19897 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
19898 !!!
19899 * tests/regression.at (%nonassoc and eof): Adjust to newest
19900 Autotest: `.' is not in the PATH.
19901
19902 2002-01-27 Akim Demaille <akim@epita.fr>
19903
19904 * tests/sets.at (AT_EXTRACT_SETS): New.
19905 (Nullable): Use it.
19906 (Firsts): New.
19907
19908 2002-01-26 Akim Demaille <akim@epita.fr>
19909
19910 * tests/actions.at, tests/calc.at, tests/headers.at,
19911 * tests/torture.at: Adjust to the newest Autotest which no longer
19912 forces `.' in the PATH.
19913
19914 2002-01-25 Akim Demaille <akim@epita.fr>
19915
19916 * tests/regression.at (%nonassoc and eof): New.
19917 Suggested by Robert Anisko.
19918
19919 2002-01-24 Akim Demaille <akim@epita.fr>
19920
19921 Bison dumps core when trying to complain about broken input files.
19922 Reported by Cris van Pelt.
19923
19924 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
19925 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
19926 into...
19927 (Invalid inputs): Strengthen: exercise parse_percent_token.
19928
19929 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
19930
19931 * src/Makefile.am: Add bison.c++.
19932 * src/bison.c++: New skeleton.
19933
19934 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
19935
19936 * po/it.po: New.
19937
19938 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
19939
19940 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
19941
19942 2002-01-20 Marc Autret <marc@gnu.org>
19943
19944 * src/files.c (compute_output_file_names): Fix
19945
19946 2002-01-20 Marc Autret <marc@gnu.org>
19947
19948 * tests/output.at: New test.
19949 * src/files.c (compute_base_names): Don't map extensions when
19950 the YACC flag is set, use defaults.
19951 Reported by Evgeny Stambulchik.
19952
19953 2002-01-20 Marc Autret <marc@gnu.org>
19954
19955 * src/system.h: Need to define __attribute__ away for non-GCC
19956 compilers as well (i.e., the vendor C compiler).
19957 Suggested by Albert Chin-A-Young.
19958
19959 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
19960
19961 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
19962 canonical definition.
19963 * src/system.h: Use the canonical definition for PARAMS (avoids
19964 a conflict with the macro from lib/hash.h).
19965
19966 2002-01-11 Akim Demaille <akim@epita.fr>
19967
19968 * configure.in: Use AC_FUNC_STRNLEN.
19969 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
19970
19971 2002-01-09 Akim Demaille <akim@epita.fr>
19972
19973 * src/files.c, src/files.h (output_infix): New.
19974 (tab_extension): Remove.
19975 (compute_base_names): Compute the former, drop the latter.
19976 * src/output.c (prepare): Insert the muscles `output-infix', and
19977 `output-suffix'.
19978 * src/parse-skel.y (string, string.1): New.
19979 (section.header): Use it.
19980 (section.yacc): Remove.
19981 (prefix): Remove too.
19982 * src/scan-skel.l: Adjust.
19983 * src/bison.simple, src/bison.hairy: Adjust.
19984
19985 2002-01-09 Akim Demaille <akim@epita.fr>
19986
19987 * configure.in (WERROR_CFLAGS): Compute it.
19988 * src/Makefile.am (CFLAGS): Pass it.
19989 * tests/atlocal.in (CFLAGS): Idem.
19990 * src/files.c: Fix a few warnings.
19991 (get_extension_index): Remove, unused.
19992
19993 2002-01-08 Akim Demaille <akim@epita.fr>
19994
19995 * src/getargs.c (AS_FILE_NAME): New.
19996 (getargs): Use it to convert DOSish file names.
19997 * src/files.c (base_name): Rename as full_base_name to avoid
19998 clashes with `base_name ()'.
19999 (filename_split): New.
20000 (compute_base_names): N-th rewrite, using filename_split.
20001
20002 2002-01-08 Akim Demaille <akim@epita.fr>
20003
20004 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
20005 New, stolen from the Fileutils 4.1.
20006 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
20007 * configure.in: Check for the presence of memrchr, and of its
20008 prototype.
20009
20010 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
20011
20012 * lib/hash.h (__P): Added definition for this macro.
20013 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
20014 BUILT_SOURCES, to ensure they are generated first.
20015 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
20016 %error-verbose to allow bootstrapping with bison 1.30x.
20017
20018 2002-01-06 Akim Demaille <akim@epita.fr>
20019
20020 * src/reader.c (parse_braces): Don't fetch the next char, the
20021 convention is to fetch on entry.
20022 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
20023 'switch' without a following semicolon.
20024 * tests/regression.at (braces parsing): New.
20025
20026 2002-01-06 Akim Demaille <akim@epita.fr>
20027
20028 Bison is dead wrong in its RR conflict reports.
20029
20030 * tests/torture.at (GNU Cim Grammar): New.
20031 * src/conflicts.c (count_rr_conflicts): Fix.
20032
20033 2002-01-06 Akim Demaille <akim@epita.fr>
20034
20035 Creating package.m4 from configure.ac causes too many problems.
20036
20037 * tests/Makefile.am (package.m4): Create it by hand,
20038 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
20039
20040 2002-01-06 Akim Demaille <akim@epita.fr>
20041
20042 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
20043 skeleton.h.
20044
20045 2002-01-04 Paul Eggert <eggert@twinsun.com>
20046
20047 * doc/bison.texinfo (Debugging):
20048 Remove YYSTDERR; it's no longer defined or used.
20049 Also, s/cstdio.h/cstdio/.
20050
20051 2002-01-03 Akim Demaille <akim@epita.fr>
20052
20053 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
20054
20055 2002-01-03 Akim Demaille <akim@epita.fr>
20056
20057 * src/parse-skel.y (process_skeleton): Don't bind the parser's
20058 tracing code to --trace, wait for a better --trace option, with
20059 args.
20060
20061 2002-01-03 Akim Demaille <akim@epita.fr>
20062
20063 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
20064 The ISO C++ standard is extremely clear about it: stderr is
20065 considered a macro, not a regular symbol (see table 94 `Header
20066 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
20067 Therefore std:: does not apply to it. It still does with fprintf.
20068 Also, s/cstdio.h/cstdio/.
20069
20070 2002-01-03 Akim Demaille <akim@epita.fr>
20071
20072 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
20073 for non system headers.
20074
20075 2002-01-02 Akim Demaille <akim@epita.fr>
20076
20077 Equip the skeleton chain with location tracking, runtime trace,
20078 pure parser and scanner.
20079
20080 * src/parse-skel.y: Request a pure parser, locations, and prefix
20081 renaming.
20082 (%union): Having several members with the same type does not help
20083 type mismatches, simplify.
20084 (YYPRINT, yyprint): New.
20085 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
20086 (skel_error): this.
20087 Handle locations.
20088 * src/scan-skel.l: Adjust to these changes.
20089 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
20090 (LOCATION_PRINT, skel_control_t): New.
20091
20092 2001-12-30 Akim Demaille <akim@epita.fr>
20093
20094 * src/parse-skel.y: Get rid of the shift/reduce conflict:
20095 replace `gb' with BLANKS.
20096 * src/scan-skel.l: Adjust.
20097
20098 2001-12-30 Akim Demaille <akim@epita.fr>
20099
20100 * src/system.h: We don't need nor want bcopy.
20101 Throw away MS-DOS crap: we don't need getpid.
20102 * configure.in: We don't need strndup. It was even causing
20103 problems: because Flex includes the headers *before* us,
20104 _GNU_SOURCE is not defined by config.h, and therefore strndup was
20105 not visible.
20106 * lib/xstrndup.c: New.
20107 * src/scan-skel.l: Use it.
20108 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
20109 * src/parse-skel.y: Use %directives instead of #defines.
20110
20111 2001-12-30 Akim Demaille <akim@epita.fr>
20112
20113 * src/skeleton.h: New.
20114 * src/output.c (output_parser, output_master_parser): Remove, dead
20115 code.
20116 * src/output.h (get_lines_number, actions_output, guards_output)
20117 (token_definitions_output): Prototype them.
20118 * src/parse-skel.y: Add the license notice.
20119 Include output.h and skeleton.h.
20120 (process_skeleton): Returns void, and takes a single parameter.
20121 * src/scan-skel.l: Add the license notice.
20122 Include skeleton.h.
20123 Don't use %option yylineno: it seems that then Flex imagines
20124 REJECT has been used, and therefore it won't reallocate its
20125 buffers (which makes no other sense to me than a bug). It results
20126 in warnings for `unused: yy_flex_realloc'.
20127
20128 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
20129
20130 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
20131 (MUSCLE_INSERT_PREFIX): ...to there.
20132 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
20133 (MUSCLE_INSERT_PREFIX): Move from here...
20134
20135 * src/bison.hairy: Add a section directive. Put braces around muscle
20136 names. This parser skeleton is still broken, but Bison should not
20137 choke on a bad muscle 'syntax'.
20138 * src/bison.simple: Add a section directive. Put braces around muscle
20139 names.
20140
20141 * src/files.h (strsuffix, stringappend): Add declarations.
20142 (tab_extension): Add declaration.
20143 (short_base_name): Add declaration.
20144
20145 * src/files.c (strsuffix, stringappend): No longer static. These
20146 functions are used in the skeleton parser.
20147 (tab_extension): New.
20148 (compute_base_names): Use the computations done in this function
20149 to guess if the generated parsers should have '.tab' in their
20150 names.
20151 (short_base_name): No longer static.
20152
20153 * src/output.c (output_skeleton): New.
20154 (output): Disable call to output_master_parser, and give a try to
20155 a new skeleton handling system.
20156 (guards_output, actions_output): No longer static.
20157 (token_definitions_output, get_lines_number): No longer static.
20158
20159 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
20160
20161 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
20162 parse-skel.y.
20163
20164 * src/parse-skel.y: New file.
20165 * src/scan-skel.l: New file.
20166
20167 2001-12-29 Akim Demaille <akim@epita.fr>
20168
20169 %name-prefix is broken.
20170
20171 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
20172 Adjust all dependencies.
20173 * tests/headers.at (export YYLTYPE): Strengthen this test: use
20174 %name-prefix.
20175
20176 Renaming yylval but not yylloc is not consistent. Now we do.
20177
20178 * src/bison.simple: Prefix yylloc if used.
20179 * doc/bison.texinfo (Decl Summary): Document that.
20180
20181 2001-12-29 Akim Demaille <akim@epita.fr>
20182
20183 * doc/bison.texinfo: Promote `%long-directive' over
20184 `%long_directive'.
20185 Remove all references to fixed-output-files, yacc is enough.
20186
20187 2001-12-29 Akim Demaille <akim@epita.fr>
20188
20189 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
20190 user prologue. These are defaults.
20191 * tests/actions.at (Mid-rule actions): Make sure the user can
20192 define YYDEBUG and YYERROR_VERBOSE.
20193
20194 2001-12-29 Akim Demaille <akim@epita.fr>
20195
20196 * src/output.c (header_output): Don't forget to export YYLTYPE and
20197 yylloc.
20198 * tests/headers.at (export YYLTYPE): New, make sure it does.
20199 * tests/regression.at (%union and --defines, Invalid CPP headers):
20200 Move to...
20201 * tests/headers.at: here.
20202
20203 2001-12-29 Akim Demaille <akim@epita.fr>
20204
20205 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
20206
20207 2001-12-29 Akim Demaille <akim@epita.fr>
20208
20209 * tests/actions.at (Mid-rule actions): Output on a single line
20210 instead of several.
20211
20212 2001-12-29 Akim Demaille <akim@epita.fr>
20213
20214 * doc/bison.texinfo: Formatting changes.
20215
20216 2001-12-29 Akim Demaille <akim@epita.fr>
20217
20218 Don't store the token defs in a muscle, just be ready to output it
20219 on command. Now possible via `symbols'. Fixes a memory leak.
20220
20221 * src/output.c (token_definitions_output): New.
20222 (output_parser, header_output): Use it.
20223 * src/reader.c (symbols_save): Remove.
20224
20225 2001-12-29 Akim Demaille <akim@epita.fr>
20226
20227 * src/bison.simple: Do not provide a default for YYSTYPE and
20228 YYLTYPE before the user's prologue. Otherwise it's hardly... a
20229 default.
20230
20231 2001-12-29 Akim Demaille <akim@epita.fr>
20232
20233 Mid-rule actions are simply... ignored!
20234
20235 * src/reader.c (readgram): Be sure to attach mid-rule actions to
20236 the empty-rule associated to the dummy symbol, not to the host
20237 rule.
20238 * tests/actions.at (Mid-rule actions): New.
20239
20240 2001-12-29 Akim Demaille <akim@epita.fr>
20241
20242 Memory leak.
20243
20244 * src/reader.c (reader): Free grammar.
20245
20246 2001-12-29 Akim Demaille <akim@epita.fr>
20247
20248 Memory leak.
20249
20250 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
20251 since it allocates it for each state, although only one is needed.
20252 (allocate_storage): Do it here.
20253
20254 2001-12-29 Akim Demaille <akim@epita.fr>
20255
20256 * src/options.h, src/options.c (create_long_option_table): Rename
20257 as...
20258 (long_option_table_new): this, with a clearer prototype.
20259 (percent_table): Remove, unused,
20260 * src/getargs.c (getargs): Adjust.
20261
20262 2001-12-29 Akim Demaille <akim@epita.fr>
20263
20264 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
20265 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
20266 as states.
20267
20268 2001-12-29 Akim Demaille <akim@epita.fr>
20269
20270 * src/lalr.c (build_relations): Rename `states' as `states1'.
20271 Sorry, I don't understand exactly what it is, no better name...
20272
20273 2001-12-29 Akim Demaille <akim@epita.fr>
20274
20275 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
20276 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
20277 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
20278 as rules.
20279
20280 2001-12-29 Akim Demaille <akim@epita.fr>
20281
20282 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
20283 ago.
20284
20285 2001-12-29 Akim Demaille <akim@epita.fr>
20286
20287 * src/reader.c, src/reader.h (user_toknums): Remove.
20288 Adjust all users to use symbols[i]->user_token_number.
20289
20290 2001-12-29 Akim Demaille <akim@epita.fr>
20291
20292 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
20293 Adjust all users to use symbols[i]->prec or ->assoc.
20294
20295 2001-12-29 Akim Demaille <akim@epita.fr>
20296
20297 * src/reader.c, src/reader.h (tags): Remove.
20298 Adjust all users to use symbols[i]->tag.
20299
20300 2001-12-29 Akim Demaille <akim@epita.fr>
20301
20302 * src/gram.h, src/gram.c (symbols): New, similar to state_table
20303 and rule_table.
20304 * src/reader.c (packsymbols): Fill this table.
20305 Drop sprec.
20306 * src/conflicts.c (resolve_sr_conflict): Adjust.
20307 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
20308 single table.
20309 Use symbols[i]->tag instead of tags[i].
20310
20311 2001-12-29 Akim Demaille <akim@epita.fr>
20312
20313 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
20314 In addition, put a comment in there, to replace...
20315 * tests/regression.at (%union and C comments): Remove.
20316
20317 2001-12-29 Akim Demaille <akim@epita.fr>
20318
20319 * tests/regression.at (Web2c Actions): Blindly move the actual
20320 output as expected output. The contents *seem* right to me, but I
20321 can't pretend reading perfectly parser tables... Nonetheless, all
20322 the other tests pass correctly, the table look OK, even though the
20323 presence of `$axiom' is to be noted: AFAICS it is useless (but
20324 harmless).
20325
20326 2001-12-29 Akim Demaille <akim@epita.fr>
20327
20328 * src/reader.c (readgram): Don't add the rule 0 if there were no
20329 rules read. In other words, add it _after_ having performed
20330 grammar sanity checks.
20331 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
20332
20333 2001-12-29 Akim Demaille <akim@epita.fr>
20334
20335 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
20336 visible, and some states have now a different number.
20337
20338 2001-12-29 Akim Demaille <akim@epita.fr>
20339
20340 * src/reader.c (readgram): Bind the initial rule's lineno to that
20341 of the first rule.
20342 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
20343 (Solved SR Conflicts): Adjust rule 0's line number.
20344
20345 2001-12-29 Akim Demaille <akim@epita.fr>
20346
20347 Fix the `GAWK Grammar' failure.
20348
20349 * src/LR0.c (final_state): Initialize to -1 so that we do compute
20350 the reductions of the first state which was mistakenly confused
20351 with the final state because precisely final_state was initialized
20352 to 0.
20353 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
20354 now noticed by Bison.
20355 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
20356 have a reduction on $default.
20357
20358 2001-12-29 Akim Demaille <akim@epita.fr>
20359
20360 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
20361 rule line numbers.
20362 * src/closure.c (print_closure): Likewise.
20363 * src/derives.c (print_derives): Likewise.
20364 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
20365 now.
20366
20367 2001-12-29 Akim Demaille <akim@epita.fr>
20368
20369 * src/lalr.c (lookaheads_print): New.
20370 (lalr): Call it when --trace-flag.
20371 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
20372 are dumped.
20373
20374 2001-12-29 Akim Demaille <akim@epita.fr>
20375
20376 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
20377 when walking through ritem, even via rule->rhs.
20378 * src/reduce.c (dump_grammar, useful_production, reduce_output)
20379 (useful_production, useless_nonterminals): Likewise.
20380 (reduce_grammar_tables): Likewise, plus update nritems.
20381 * src/nullable.c (set_nullable): Likewise.
20382 * src/lalr.c (build_relations): Likewise.
20383 * tests/sets.at (Nullable): Adjust.
20384 Fortunately, now, the $axiom is no longer nullable.
20385
20386 2001-12-29 Akim Demaille <akim@epita.fr>
20387
20388 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
20389 the 0-sentinel.
20390 * src/gram.c (ritem_longest_rhs): Likewise.
20391 * src/reduce.c (nonterminals_reduce): Likewise.
20392 * src/print_graph.c (print_graph): Likewise.
20393 * src/output.c (output_rule_data): Likewise.
20394 * src/nullable.c (set_nullable): Likewise.
20395
20396 2001-12-29 Akim Demaille <akim@epita.fr>
20397
20398 * src/output.c: Comment changes.
20399
20400 2001-12-27 Paul Eggert <eggert@twinsun.com>
20401
20402 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
20403 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
20404 Sparc, as they were causing more porting problems than the
20405 (minor) performance improvement was worth.
20406
20407 Also, catch up with 1.31's YYSTD.
20408
20409 2001-12-27 Akim Demaille <akim@epita.fr>
20410
20411 * src/output.c (output_gram): Rely on nritems, not the
20412 0-sentinel. See below.
20413 Use -1 as separator, not 0.
20414 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
20415 Rely on -1 as separator in yyrhs, instead of 0.
20416 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
20417 twice `Now at end of input', therefore there are two lines less to
20418 expect.
20419
20420 2001-12-27 Akim Demaille <akim@epita.fr>
20421
20422 * tests/regression.at (Unresolved SR Conflicts):
20423 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
20424 below.
20425
20426 2001-12-27 Akim Demaille <akim@epita.fr>
20427
20428 * src/LR0.c (new_state): Recognize the final state by the fact it
20429 is reached by eoftoken.
20430 (insert_start_shifting_state, insert_eof_shifting_state)
20431 (insert_accepting_state, augment_automaton): Remove, since now
20432 these states are automatically computed from the initial state.
20433 (generate_states): Adjust.
20434 * src/print.c: When reporting a rule number to the user, substract
20435 1, so that the axiom rule is rule 0, and the first user rule is 1.
20436 * src/reduce.c: Likewise.
20437 * src/print_graph.c (print_core): For the time being, just as for
20438 the report, depend upon --trace-flags to dump the full set of
20439 items.
20440 * src/reader.c (readgram): Once the grammar read, insert the rule
20441 0: `$axiom: START-SYMBOL $'.
20442 * tests/set.at: Adjust: rule 0 is now displayed, and since the
20443 number of the states has changed (the final state is no longer
20444 necessarily the last), catch up.
20445
20446 2001-12-27 Akim Demaille <akim@epita.fr>
20447
20448 Try to make the use of the eoftoken valid. Given that its value
20449 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
20450 is used instead of > 0 where appropriate, (ii), depend upon nritems
20451 instead of the 0-sentinel.
20452
20453 * src/gram.h, src/gram.c (nritems): New.
20454 Expected to be duplication of nitems, but for the time being...
20455 * src/reader.c (packgram): Assert nritems and nitems are equal.
20456 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
20457 * src/closure.c (print_closure, print_fderives): Likewise.
20458 * src/gram.c (ritem_print): Likewise.
20459 * src/print.c (print_core, print_grammar): Likewise.
20460 * src/print_graph.c: Likewise.
20461
20462 2001-12-27 Akim Demaille <akim@epita.fr>
20463
20464 * src/main.c (main): If there are complains after grammar
20465 reductions, then output the report anyway if requested, then die.
20466 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
20467 * src/reader.c (eoftoken): New.
20468 (parse_token_decl): If the token being defined has value `0', it
20469 is the eoftoken.
20470 (packsymbols): No longer hack `tags' to insert `$' by hand.
20471 Be sure to preserve the value of the eoftoken.
20472 (reader): Make sure eoftoken is defined.
20473 Initialize nsyms to 0: now eoftoken is created just like the others.
20474 * src/print.c (print_grammar): Don't special case the eof token.
20475 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
20476 lie anyway, albeit pleasant.
20477 * tests/calc.at: Exercise error messages with eoftoken.
20478 Change the grammar so that empty input is invalid.
20479 Adjust expectations.
20480 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
20481
20482 2001-12-27 Akim Demaille <akim@epita.fr>
20483
20484 * configure.in: Check the protos of strchr ans strspn.
20485 Replace strchr if needed.
20486 * src/system.h: Provide the protos of strchr, strspn and memchr if
20487 missing.
20488 * lib/strchr.c: New.
20489 * src/reader.c (symbols_save): Use strchr.
20490
20491 2001-12-27 Akim Demaille <akim@epita.fr>
20492
20493 * src/print.c, src/print_graph.c (escape): New.
20494 Use it to quote the TAGS outputs.
20495 * src/print_graph.c (print_state): Now errors are in red, and
20496 reductions in green.
20497 Prefer high to wide: output the state number on a line of its own.
20498
20499 2001-12-27 Akim Demaille <akim@epita.fr>
20500
20501 * src/state.h, src/state.c (reductions_new): New.
20502 * src/LR0.c (set_state_table): Let all the states have a
20503 `reductions', even if reduced to 0.
20504 (save_reductions): Adjust.
20505 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
20506 * src/print.c (print_reductions, print_actions): Adjust.
20507 * src/output.c (action_row): Adjust.
20508
20509 2001-12-27 Akim Demaille <akim@epita.fr>
20510
20511 * src/state.h, src/state.c (errs_new, errs_dup): New.
20512 * src/LR0.c (set_state_table): Let all the states have an errs,
20513 even if reduced to 0.
20514 * src/print.c (print_errs, print_reductions): Adjust.
20515 * src/output.c (output_actions, action_row): Adjust.
20516 * src/conflicts.c (resolve_sr_conflict): Adjust.
20517
20518 2001-12-27 Akim Demaille <akim@epita.fr>
20519
20520 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
20521
20522 2001-12-27 Akim Demaille <akim@epita.fr>
20523
20524 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
20525 * src/print.c: here.
20526 (lookaheadset, shiftset): New, used as additional storage by
20527 print_reductions.
20528 (print_results): Adjust.
20529 (print_shifts, print_gotos, print_errs): New, extracted from...
20530 (print_actions): here.
20531 * src/print_graph.c (print_actions): Remove dead code.
20532
20533 2001-12-27 Akim Demaille <akim@epita.fr>
20534
20535 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
20536 `$n' and `@n'.
20537
20538 2001-12-27 Akim Demaille <akim@epita.fr>
20539
20540 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
20541 (build_relations): Adjust.
20542
20543 2001-12-27 Akim Demaille <akim@epita.fr>
20544
20545 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
20546 duplication.
20547
20548 2001-12-27 Akim Demaille <akim@epita.fr>
20549
20550 * src/reader.c (packgram): Catch nitems overflows.
20551
20552 2001-12-27 Akim Demaille <akim@epita.fr>
20553
20554 * src/files.c, src/files.h (guard_obstack): Remove.
20555 * src/output.c (output): Adjust.
20556 * src/reader.c (parse_braces): New, factoring...
20557 (copy_action, copy_guard): these two which are renamed as...
20558 (parse_action, parse_guard): these.
20559 As a voluntary consequence, using braces around guards is now
20560 mandatory.
20561
20562 2001-12-27 Akim Demaille <akim@epita.fr>
20563
20564 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
20565 * src/reader.c (symbol_list): `guard' and `guard_line' are new
20566 members.
20567 (symbol_list_new): Adjust.
20568 (copy_action): action_line is the first line, not the last.
20569 (copy_guard): Just as for actions, store the `action' only, not
20570 the switch/case/break flesh.
20571 Don't parse the user action that might follow the guard, let...
20572 (readgram): do it, i.e., now, there can be an action after a
20573 guard.
20574 In other words the guard is just explicitly optional.
20575 (packgram): Adjust.
20576 * src/output.c (guards_output): New.
20577 (output_parser): Call it when needed.
20578 (output): Also free the guard and attrs obstacks.
20579 * src/files.c, src/files.h (obstack_save): Remove.
20580 (output_files): Remove.
20581 As a result, if one needs the former `.act' file, using an
20582 appropriate skeleton which requires actions and guards is now
20583 required.
20584 * src/main.c (main): Adjust.
20585 * tests/semantic.at: New.
20586 * tests/regression.at: Use `input.y' as input file name.
20587 Avoid 8+3 problems by requiring input.c when the test needs the
20588 parser.
20589
20590 2001-12-27 Akim Demaille <akim@epita.fr>
20591
20592 * src/reader.c (symbol_list_new): Be sure to initialize all the
20593 fields.
20594
20595 2001-12-27 Akim Demaille <akim@epita.fr>
20596
20597 All the hacks using a final pseudo state are now useless.
20598
20599 * src/LR0.c (set_state_table): state_table holds exactly nstates.
20600 * src/lalr.c (nLA): New.
20601 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
20602 instead of lookaheadsp from the pseudo state (nstate + 1).
20603
20604 2001-12-27 Akim Demaille <akim@epita.fr>
20605
20606 * src/output.c (action_row, token_actions): Use a state_t instead
20607 of a integer, and nlookaheads instead of the following state's
20608 lookaheadsp.
20609
20610 2001-12-27 Akim Demaille <akim@epita.fr>
20611
20612 * src/conflicts.c (log_resolution, flush_shift)
20613 (resolve_sr_conflict, set_conflicts, solve_conflicts)
20614 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
20615 (conflicts_print, print_reductions): Use a state_t instead of an
20616 integer when referring to a state.
20617 As much as possible, depend upon nlookaheads, instead of the
20618 `lookaheadsp' member of the following state (since lookaheads of
20619 successive states are successive, the difference between state n + 1
20620 and n served as the number of lookaheads for state n).
20621 * src/lalr.c (add_lookback_edge): Likewise.
20622 * src/print.c (print_core, print_actions, print_state)
20623 (print_results): Likewise.
20624 * src/print_graph.c (print_core, print_actions, print_state)
20625 (print_graph): Likewise.
20626 * src/conflicts.h: Adjust.
20627
20628 2001-12-27 Akim Demaille <akim@epita.fr>
20629
20630 * src/bison.hairy: Formatting/comment changes.
20631 ANSIfy.
20632 Remove `register' indications.
20633 Add plenty of `static'.
20634
20635 2001-12-27 Akim Demaille <akim@epita.fr>
20636
20637 * src/output.c (prepare): Drop the muscle `ntbase' which
20638 duplicates ntokens.
20639 * src/bison.simple: Formatting/comment changes.
20640 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
20641 is an undocumented synonym.
20642
20643 2001-12-22 Akim Demaille <akim@epita.fr>
20644
20645 * src/output.c (output_table_data): Change the prototype to use
20646 `int' for array ranges: some invocations do pass an int, not a
20647 short.
20648 Reported by Wayne Green.
20649
20650 2001-12-22 Akim Demaille <akim@epita.fr>
20651
20652 Some actions of web2c.y are improperly triggered.
20653 Reported by Mike Castle.
20654
20655 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
20656 * tests/regression.at (Web2c): Rename as...
20657 (Web2c Report): this.
20658 (Web2c Actions): New.
20659
20660 2001-12-22 Akim Demaille <akim@epita.fr>
20661
20662 Reductions in web2c.y are improperly reported.
20663 Reported by Mike Castle.
20664
20665 * src/conflicts.c (print_reductions): Fix.
20666 * tests/regression.at (Web2c): New.
20667
20668 2001-12-18 Akim Demaille <akim@epita.fr>
20669
20670 Some host fail on `assert (!"foo")', which expands to
20671 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
20672 Reported by Nelson Beebee.
20673
20674 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
20675 `#define it_succeeded 0' and `assert (it_succeeded)'.
20676
20677 2001-12-17 Marc Autret <autret_m@epita.fr>
20678
20679 * src/bison.simple: Don't hard code the skeleton line and filename.
20680 * src/output.c (output_parser): Rename 'line' as 'output_line'.
20681 New line counter 'skeleton_line' (skeleton-line muscle).
20682
20683 2001-12-17 Paul Eggert <eggert@twinsun.com>
20684
20685 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
20686 YYDEBUG must be defined to a nonzero value.
20687
20688 * src/bison.simple (yytname): Do not assume that the user defines
20689 YYDEBUG to a properly parenthesized expression.
20690
20691 2001-12-17 Akim Demaille <akim@epita.fr>
20692
20693 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
20694 nlookaheads is a new member.
20695 Adjust all users.
20696 * src/lalr.h (nlookaheads): Remove this orphan declaration.
20697 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
20698 state.
20699
20700 2001-12-17 Akim Demaille <akim@epita.fr>
20701
20702 * src/files.h, src/files.c (open_files, close_files): Remove.
20703 * src/main.c (main): Don't open/close files, nor invoke lex_free,
20704 let...
20705 * src/reader.c (reader): Do it.
20706
20707 2001-12-17 Akim Demaille <akim@epita.fr>
20708
20709 * src/conflicts.c (print_reductions): Formatting changes.
20710
20711 2001-12-17 Akim Demaille <akim@epita.fr>
20712
20713 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
20714 (flush_reduce): New.
20715 (resolve_sr_conflict): Adjust.
20716
20717 2001-12-17 Akim Demaille <akim@epita.fr>
20718
20719 * src/output.c (output_obstack): Be static and rename as...
20720 (format_obstack): this, to avoid any confusion with files.c's
20721 output_obstack.
20722 * src/reader.h (muscle_obstack): Move to...
20723 * src/output.h: here, since it's defined in output.c.
20724
20725 2001-12-17 Akim Demaille <akim@epita.fr>
20726
20727 * src/output.c (action_row, save_column, default_goto)
20728 (sort_actions, matching_state, pack_vector): Better variable
20729 locality.
20730
20731 2001-12-17 Akim Demaille <akim@epita.fr>
20732
20733 * src/output.c: Various formatting changes.
20734
20735 2001-12-17 Akim Demaille <akim@epita.fr>
20736
20737 * src/files.c (output_files): Free the output_obstack.
20738 * src/main.c (main): Call print and print_graph conditionally.
20739 * src/print.c (print): Work unconditionally.
20740 * src/print_graph.c (print_graph): Work unconditionally.
20741 * src/conflicts.c (log_resolution): Output only if verbose_flag.
20742
20743 2001-12-16 Marc Autret <autret_m@epita.fr>
20744
20745 * src/output.c (actions_output): Fix. When we use %no-lines,
20746 there is one less line per action.
20747
20748 2001-12-16 Marc Autret <autret_m@epita.fr>
20749
20750 * src/bison.simple: Remove a useless #line directive.
20751 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
20752 * src/output.c (get_lines_number): New.
20753 (output_parser): Adjust, now takes care about the lines of a
20754 output muscles.
20755 Fix line numbering.
20756 (actions_output): Computes the number of lines taken by actions.
20757 (output_master_parser): Insert new skeleton which is the name of
20758 the output parser file name.
20759
20760 2001-12-15 Marc Autret <autret_m@epita.fr>
20761
20762 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
20763
20764 2001-12-15 Marc Autret <autret_m@epita.fr>
20765
20766 * src/output.c (output_gram): Keep track of the hairy one.
20767
20768 2001-12-15 Akim Demaille <akim@epita.fr>
20769
20770 Make `make distcheck' work.
20771
20772 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
20773 system.h which uses libgettext.h.
20774
20775 2001-12-15 Akim Demaille <akim@epita.fr>
20776
20777 * src/nullable.c (set_nullable): Useless rules must be skipped,
20778 otherwise, since we range over their symbols, we might look at a
20779 nonterminal which no longer ``exists'', i.e., it is not counted in
20780 `nvars', hence we overflow our arrays.
20781
20782 2001-12-15 Akim Demaille <akim@epita.fr>
20783
20784 The header can also be produced directly, without any obstack!
20785 Yahoo!
20786
20787 * src/files.c, src/files.h (defines_obstack): Remove.
20788 (compute_header_macro): Global.
20789 (defines_obstack_save): Remove.
20790 * src/reader.c (parse_union_decl): No longer output to
20791 defines_obstack: its content can be found in the `stype' muscle
20792 anyway.
20793 (output_token_translations): Merge into...
20794 (symbols_output): this.
20795 Rename as...
20796 (symbols_save): this.
20797 (reader): Adjust.
20798 * src/output.c (header_output): New.
20799 (output): Call it.
20800
20801 2001-12-15 Akim Demaille <akim@epita.fr>
20802
20803 * src/reader.c (parse_union_decl): Instead of handling two obstack
20804 simultaneously, use one to define the `stype' muscle, and use the
20805 value of the latter to fill defines_obstack.
20806 (copy_comment): Remove.
20807 (copy_comment2): Work for a single obstack.
20808 Rename as...
20809 (copy_comment): this.
20810
20811 2001-12-15 Akim Demaille <akim@epita.fr>
20812
20813 * src/lex.c, src/lex.h (xgetc): No longer static.
20814 * src/reader.c (parse_union_decl): Revamp.
20815
20816 2001-12-15 Akim Demaille <akim@epita.fr>
20817
20818 Still making progress in separating Bison into (i) input, (ii)
20819 process, (iii) output: now we can directly output the parser file
20820 without using table_obstack at all.
20821
20822 * src/files.c, src/files.h (table_obstack): Bye bye.
20823 (parser_file_name): New.
20824 * src/files.c (compute_output_file_names): Compute it.
20825 * src/output.c (actions_output, output_parser)
20826 (output_master_parser): To a file instead of an obstack.
20827
20828 2001-12-15 Akim Demaille <akim@epita.fr>
20829
20830 Attach actions to rules, instead of pre-outputting them to
20831 actions_obstack.
20832
20833 * src/gram.h (rule_t): action and action_line are new members.
20834 * src/reader.c (symbol_list): Likewise.
20835 (copy_action): Save the actions within the rule.
20836 (packgram): Save them in rule_table.
20837 * src/output.c (actions_output): New.
20838 (output_parser): Use it on `%%actions'.
20839 (output_rule_data): Don't free rule_table.
20840 (output): Do it.
20841 (prepare): Don't save the `action' muscle.
20842 * src/bison.simple: s/%%action/%%actions/.
20843
20844 2001-12-15 Akim Demaille <akim@epita.fr>
20845
20846 * src/reader.c (copy_action): When --yacc, don't append a `;'
20847 to the user action: let it fail if lacking.
20848 Suggested by Arnold Robbins and Tom Tromey.
20849
20850 2001-12-14 Akim Demaille <akim@epita.fr>
20851
20852 * src/lex.c (literalchar): Simply return the char you decoded, non
20853 longer mess around with obstacks and int pointers.
20854 Adjust all callers.
20855
20856 2001-12-14 Akim Demaille <akim@epita.fr>
20857
20858 * src/lex.c (literalchar): Don't escape the special characters,
20859 just decode them, and keep them as char (before, eol was output as
20860 the 2 char string `\n' etc.).
20861 * src/output.c (output_rule_data): Use quotearg to output the
20862 token strings.
20863
20864 2001-12-13 Paul Eggert <eggert@twinsun.com>
20865
20866 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
20867 Do not infringe on the global user namespace when using C++.
20868 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
20869 All uses of `fprintf' and `stderr' changed.
20870
20871 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
20872
20873 2001-12-13 Akim Demaille <akim@epita.fr>
20874
20875 The computation of nullable is broken: it doesn't handle empty
20876 RHS's properly.
20877
20878 * tests/torture.at (GNU AWK Grammar): New.
20879 * tests/sets.at (Nullable): New.
20880 * src/nullable.c (set_nullable): Instead of blindly looping over
20881 `ritems', loop over the rules, and then over their rhs's.
20882
20883 Work around Autotest bugs.
20884
20885 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
20886 frame, because Autotest understand lines starting with a `+' as
20887 traces from the shell. Then, they are not processed properly.
20888 Admittedly an Autotest bug, but we don't have time to wait for
20889 Autotest to catch up.
20890 * tests/regression.at (Broken Closure): Adjust to the new table
20891 frames.
20892 Move to...
20893 * tests/sets.at: here.
20894
20895 2001-12-13 Akim Demaille <akim@epita.fr>
20896
20897 * src/closure.c (closure): Use nrules instead of playing tricks
20898 with BITS_PER_WORD.
20899
20900 2001-12-13 Akim Demaille <akim@epita.fr>
20901
20902 * src/print.c (print_actions): Output the handling of `$' as the
20903 traces do: shifting the token EOF. Before EOF was treated as a
20904 nonterminal.
20905 * tests/regression.at: Adjust some tests.
20906 * src/print_graph.c (print_core): Complete the set of items via
20907 closure. The next-to-final and final states are still unsatisfying,
20908 but that's to be addressed elsewhere.
20909 No longer output the rule numbers, but do output the state number.
20910 A single loop for the shifts + gotos is enough, but picked a
20911 distinct color for each.
20912 (print_graph): Initialize and finalize closure.
20913
20914 2001-12-13 Akim Demaille <akim@epita.fr>
20915
20916 * src/reader.c (readgram): Remove dead code, an strip useless
20917 braces.
20918 (get_type): Remove, unused.
20919
20920 2001-12-12 Akim Demaille <akim@epita.fr>
20921
20922 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
20923 on that of lib/error.c.
20924
20925 2001-12-12 Akim Demaille <akim@epita.fr>
20926
20927 Some hosts don't like `/' in includes.
20928
20929 * src/system.h: Include libgettext.h without qualifying the path.
20930 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
20931 $(top_srcdir).
20932
20933 2001-12-11 Marc Autret <autret_m@epita.fr>
20934
20935 * src/output.c (output_parser): Remove useless muscle.
20936
20937 2001-12-11 Marc Autret <autret_m@epita.fr>
20938
20939 * src/bison.simple: Remove #line just before %%epilogue. It
20940 is now handled in ...
20941 * src/reader.c (read_additionnal_code): Add the output of a
20942 #line for the epilogue.
20943
20944 2001-12-10 Marc Autret <autret_m@epita.fr>
20945
20946 * src/reader.c (copy_definition): Re-use CPP-outed code which
20947 replace precedent remove.
20948 * src/bison.simple: Remove #line before %%prologue because
20949 %%input-line is wrong at this time.
20950
20951 2001-12-10 Marc Autret <autret_m@epita.fr>
20952
20953 * src/reader.c (symbols_output): Clean up.
20954 * src/output.c (output_gram, output): Clean up.
20955
20956 2001-12-10 Akim Demaille <akim@epita.fr>
20957
20958 * src/lalr.c (initialize_lookaheads): New. Extracted from...
20959 * src/LR0.c (set_state_table): here.
20960 * src/lalr.c (lalr): Call it.
20961
20962 2001-12-10 Akim Demaille <akim@epita.fr>
20963
20964 * src/state.h (shifts): Remove the `number' member: shifts are
20965 attached to state, hence no longer need to be labelled with a
20966 state number.
20967
20968 2001-12-10 Akim Demaille <akim@epita.fr>
20969
20970 Now that states have a complete set of members, the linked list of
20971 shifts is useless: just fill directly the state's shifts member.
20972
20973 * src/state.h (shifts): Remove the `next' member.
20974 * src/LR0.c (first_state, last_state): Remove.
20975 Adjust the callers.
20976 (augment_automaton): Don't look for the shifts that must be added
20977 a shift on EOF: it is those of the state we looked for! But now,
20978 since shifts are attached, it is no longer needed to looking
20979 merely by its id: its number.
20980
20981 2001-12-10 Akim Demaille <akim@epita.fr>
20982
20983 * src/LR0.c (augment_automaton): Better variable locality.
20984 Remove an impossible branch: if there is a state corresponding to
20985 the start symbol being shifted, then there is shift for the start
20986 symbol from the initial state.
20987
20988 2001-12-10 Akim Demaille <akim@epita.fr>
20989
20990 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
20991 only when appropriate: when insert_start_shifting_state' is not
20992 invoked.
20993 * tests/regression.at (Rule Line Numbers): Adjust.
20994
20995 2001-12-10 Akim Demaille <akim@epita.fr>
20996
20997 * src/LR0.c (augment_automaton): Now that all states have shifts,
20998 merge the two cases addition shifts to the initial state.
20999
21000 2001-12-10 Akim Demaille <akim@epita.fr>
21001
21002 * src/lalr.c (set_state_table): Move to...
21003 * src/LR0.c: here.
21004 * src/lalr.c (lalr): Don't call it...
21005 * src/LR0.c (generate_states): do it.
21006 * src/LR0.h (first_state): Remove, only the table is used.
21007
21008 2001-12-10 Akim Demaille <akim@epita.fr>
21009
21010 * src/LR0.h (first_shift, first_reduction): Remove.
21011 * src/lalr.c: Don't use first_shift: find shifts through the
21012 states.
21013
21014 2001-12-10 Akim Demaille <akim@epita.fr>
21015
21016 * src/LR0.c: Attach shifts to states as soon as they are
21017 computed.
21018 * src/lalr.c (set_state_table): Instead of assigning shifts to
21019 state, just assert that the mapping was properly done.
21020
21021 2001-12-10 Akim Demaille <akim@epita.fr>
21022
21023 * src/LR0.c (insert_start_shift): Rename as...
21024 (insert_start_shifting_state): this.
21025 (insert_eof_shifting_state, insert_accepting_state): New.
21026 (augment_automaton): Adjust.
21027 Better locality of the variables.
21028 When looking if the start_symbol is shifted from the initial
21029 state, using `while (... symbol != start_symbol ...)' sounds
21030 better than `while (... symbol < start_symbol ...)': If fail
21031 to see how the order between symbols could be relevant!
21032
21033 2001-12-10 Akim Demaille <akim@epita.fr>
21034
21035 * src/getargs.h: Don't declare `spec_name_prefix' and
21036 `spec_file_prefix', declared by src/files.h.
21037 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
21038 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
21039 * src/output.c (prepare): Adjust.
21040 * src/reader.c (symbols_output): Likewise.
21041 * src/vmsgetargs.c: Vaguely adjust, but who cares?
21042
21043 2001-12-10 Akim Demaille <akim@epita.fr>
21044
21045 * src/muscle_tab.c (muscle_init): NULL is a better default than
21046 `"0"'.
21047
21048 2001-12-10 Akim Demaille <akim@epita.fr>
21049
21050 * src/reader.c (reader): Calling symbols_output once is enough.
21051
21052 2001-12-10 Akim Demaille <akim@epita.fr>
21053
21054 Now that states have a complete set of members, the linked list of
21055 reductions is useless: just fill directly the state's reductions
21056 member.
21057
21058 * src/state.h (struct reductions): Remove member `number' and
21059 `next'.
21060 * src/LR0.c (first_reduction, last_reduction): Remove.
21061 (save_reductions): Don't link the new reductions, store them in
21062 this_state.
21063 * src/lalr.c (set_state_table): No need to attach reductions to
21064 states, it's already done.
21065 * src/output.c (output_actions): No longer free the shifts, then
21066 the reductions, then the states: free all the states and their
21067 members.
21068
21069 2001-12-10 Akim Demaille <akim@epita.fr>
21070
21071 * src/options.c (OPTN, DRTV, BOTH): New.
21072 (option_table): Use them.
21073
21074 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
21075 the job of system.h.
21076 * src/options.c: Don't include stdio.h and xalloc.h for the same
21077 reasons.
21078
21079 2001-12-10 Akim Demaille <akim@epita.fr>
21080
21081 * src/output.c (output, prepare): Make sure the values of the
21082 muscles `action' and `prologue' are 0-terminated.
21083
21084 2001-12-10 Akim Demaille <akim@epita.fr>
21085
21086 Clean up GCC warnings.
21087
21088 * src/reader.c (copy_action): `buf' is not used.
21089 (parse_skel_decl): Be static.
21090 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
21091 * src/options.h (create_long_option_table): Have a real prototype.
21092 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
21093 (hash_delete_at): Return const void *.
21094 Adjust casts to preserve the const.
21095
21096 2001-12-10 Akim Demaille <akim@epita.fr>
21097
21098 * configure.in: Require 2.52g.
21099 M4 is not needed, but AUTOM4TE is.
21100 * m4/m4.m4: Remove.
21101 * tests/Makefile.am: Adjust.
21102
21103 2001-12-10 Akim Demaille <akim@epita.fr>
21104
21105 One structure for states is enough, even though theoretically
21106 there are LR(0) states and LALR(1) states.
21107
21108 * src/lalr.h (state_t): Remove.
21109 (state_table): Be state_t **, not state_t *.
21110 * src/state.h (core, CORE_ALLOC): Rename as...
21111 (state_t, STATE_ALLOC): this.
21112 Add the LALR(1) members: shifts, reductions, errs.
21113 * src/LR0.c (state_table): Rename as...
21114 (state_hash): this, to avoid name clashes with the global
21115 `state_table'.
21116 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
21117 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
21118
21119 2001-12-10 Akim Demaille <akim@epita.fr>
21120
21121 Bison dumps core on bash.y.
21122 Reported by Pascal Bart.
21123
21124 * src/warshall.c (bitmatrix_print): New.
21125 (TC): Use it.
21126 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
21127 j must be the outer loop.
21128 * tests/regression.at (Broken Closure): New.
21129
21130 2001-12-05 Akim Demaille <akim@epita.fr>
21131
21132 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
21133 its argument.
21134 Reported by Peter Hamorsky.
21135
21136 2001-12-05 Akim Demaille <akim@epita.fr>
21137
21138 * src/conflicts.c (err_table): Remove.
21139 (resolve_sr_conflict): Adjust.
21140 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
21141 Rename as...
21142 (state_t.reductions, state_t.shifts): this.
21143
21144 2001-12-05 Akim Demaille <akim@epita.fr>
21145
21146 * src/reduce.c (reduce_grammar_tables): No longer disable the
21147 removal of useless rules via CPP but via `if (0)', so that the
21148 compiler still check the code is valid.
21149 For instance, it should have noticed `rline' no longer exists: use
21150 the `line' member of rule_t.
21151 * src/gram.c (dummy, rline): Remove, unused.
21152
21153 2001-12-05 Akim Demaille <akim@epita.fr>
21154
21155 * src/output.c (pack_vector): Use assert, not berror.
21156 * src/main.c (berror): Remove, unused.
21157
21158 2001-12-05 Akim Demaille <akim@epita.fr>
21159
21160 New experimental feature: if --verbose --trace output all the
21161 items of a state, not only its kernel.
21162
21163 * src/print.c (print_core): If `trace_flag', then invoke closure
21164 before outputting the items of the state (print_core is no longer
21165 a correct name them).
21166 (print_results): Invoke new_closure/free_closure if needed.
21167
21168 2001-12-05 Akim Demaille <akim@epita.fr>
21169
21170 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
21171 * src/closure.c, src/closure.h (itemsetsize): Rename as...
21172 (nitemset): for consistency with the rest of the project.
21173
21174 2001-12-05 Akim Demaille <akim@epita.fr>
21175
21176 * src/closure.c (print_closure): Improve.
21177 (closure): Use it for printing input and output.
21178
21179 2001-12-05 Akim Demaille <akim@epita.fr>
21180
21181 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
21182 indexed by nonterminals.
21183
21184 2001-12-05 Akim Demaille <akim@epita.fr>
21185
21186 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
21187 what it was!).
21188 * src/warshall.h: Remove accidental duplication of the content.
21189
21190 2001-12-05 Akim Demaille <akim@epita.fr>
21191
21192 * src/closure.c (set_fderives): De-obfuscate.
21193
21194 2001-12-05 Akim Demaille <akim@epita.fr>
21195
21196 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
21197
21198 2001-12-05 Akim Demaille <akim@epita.fr>
21199
21200 * src/closure.c (set_firsts): De-obfuscate.
21201
21202 2001-12-05 Akim Demaille <akim@epita.fr>
21203
21204 * src/output.c (action_row): De-obfuscate
21205 using the good o' techniques: arrays not pointers, variable
21206 locality, BITISSET, RESETBIT etc.
21207
21208 2001-12-05 Akim Demaille <akim@epita.fr>
21209
21210 Pessimize the code to simplify it: from now on, all the states
21211 have a valid SHIFTS, which NSHIFTS is possibly 0.
21212
21213 * src/LR0.c (shifts_new): Be global and move to..
21214 * src/state.c, src/state.h: here.
21215 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
21216 * src/print_graph: Adjust.
21217
21218 2001-12-05 Akim Demaille <akim@epita.fr>
21219
21220 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
21221 * src/conflicts.c: Use it.
21222 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
21223 incorrectly ``simplified''.
21224
21225 2001-12-05 Akim Demaille <akim@epita.fr>
21226
21227 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
21228 using the good o' techniques: arrays not pointers, variable
21229 locality, BITISSET, RESETBIT etc.
21230
21231 2001-12-05 Akim Demaille <akim@epita.fr>
21232
21233 * src/state.h (SHIFT_SYMBOL): New.
21234 * src/conflicts.c: Use it to deobfuscate.
21235
21236 2001-12-05 Akim Demaille <akim@epita.fr>
21237
21238 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
21239 (print_reductions): De-obfuscate using the good o' techniques:
21240 arrays not pointers, variable locality, BITISSET.
21241
21242 2001-12-05 Akim Demaille <akim@epita.fr>
21243
21244 * src/conflicts.c (print_reductions): Arrays, not pointers.
21245 Use BITISSET.
21246
21247 2001-12-05 Akim Demaille <akim@epita.fr>
21248
21249 * src/conflicts.c (print_reductions): Pessimize, but clarify.
21250
21251 2001-12-05 Akim Demaille <akim@epita.fr>
21252
21253 * src/conflicts.c (print_reductions): Improve variable locality.
21254
21255 2001-12-05 Akim Demaille <akim@epita.fr>
21256
21257 * src/conflicts.c (print_reductions): Pessimize, but clarify.
21258
21259 2001-12-05 Akim Demaille <akim@epita.fr>
21260
21261 * src/conflicts.c (print_reductions): Improve variable locality.
21262
21263 2001-12-05 Akim Demaille <akim@epita.fr>
21264
21265 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
21266 * src/lalr.c: Use them.
21267
21268 2001-12-05 Akim Demaille <akim@epita.fr>
21269
21270 * src/LR0.c (augment_automaton): Formatting changes.
21271 Better variable locality.
21272
21273 2001-12-05 Akim Demaille <akim@epita.fr>
21274
21275 * src/lalr.c (matrix_print): New.
21276 (transpose): Use it.
21277 Use arrays instead of pointers.
21278
21279 2001-12-05 Akim Demaille <akim@epita.fr>
21280
21281 * src/lalr.c (maxrhs): Move to...
21282 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
21283 * src/lalr.c (build_relations): Adjust.
21284
21285 2001-12-05 Akim Demaille <akim@epita.fr>
21286
21287 * src/lalr.c (transpose): Free the memory allocated to the
21288 argument, as it is replaced by the results by the unique caller.
21289 (build_relations): Merely invoke transpose: it handles the memory
21290 deallocation.
21291 Improve variable locality.
21292 Avoid variables used as mere abbreviations.
21293 (compute_lookaheads): Use arrays instead of pointers.
21294
21295 2001-12-05 Akim Demaille <akim@epita.fr>
21296
21297 * src/lalr.c (initialize_F): Improve variable locality.
21298 Avoid variables used as mere abbreviations.
21299
21300 2001-12-05 Akim Demaille <akim@epita.fr>
21301
21302 * src/derives.c (print_derives): Display the ruleno.
21303 * src/lalr.c (initialize_F, transpose): Better variable locality
21304 to improve readability.
21305 Avoid variables used as mere abbreviations.
21306
21307 2001-12-05 Akim Demaille <akim@epita.fr>
21308
21309 * src/lalr.c (traverse): Use arrays instead of pointers.
21310
21311 2001-12-05 Akim Demaille <akim@epita.fr>
21312
21313 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
21314 the handling of squeue.
21315 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21316
21317 2001-12-05 Akim Demaille <akim@epita.fr>
21318
21319 Because useless nonterminals are now kept alive (instead of being
21320 `destroyed'), we now sometimes examine them, and store information
21321 related to them. Hence we need to know their number, and adjust
21322 memory allocations.
21323
21324 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
21325 static.
21326 * src/LR0.c (allocate_itemsets): The memory allocated to
21327 `symbol_count' was used for two different purpose: once to count
21328 the number of occurrences of each symbol, and later reassigned to
21329 `shift_symbol', containing the symbol that can be shifted from a
21330 given state.
21331 Deobfuscate, i.e., allocate, use and free `symbol_count' here
21332 only, and...
21333 (new_itemsets): Allocate `shift_symbol' here.
21334 (allocate_itemsets): symbol_count includes useless nonterminals.
21335 Make room for them.
21336 (free_storage): Use `free', not `XFREE', for pointers that cannot
21337 be null.
21338
21339 2001-12-05 Akim Demaille <akim@epita.fr>
21340
21341 * src/nullable.c (set_nullable): Deobfuscate the handling of
21342 ritem.
21343 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21344
21345 2001-12-05 Akim Demaille <akim@epita.fr>
21346
21347 * src/gram.c, src/gram.h (ritem_print): New.
21348 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
21349 (This useless function was defined only to work around VMS linkers
21350 that can't handle compilation units with variables only).
21351 * src/reduce.c (dump_grammar): Use it to trace the construction of
21352 ritem.
21353
21354 2001-12-04 Paul Eggert <eggert@twinsun.com>
21355
21356 * src/bison.simple (union yyalloc): Change member names
21357 to be the same as the stack names.
21358 (yyparse): yyptr is now union yyalloc *, not char *.
21359 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
21360 and may generate better code on some machines.
21361 (yystpcpy): Use prototype if __STDC__ is defined, not just
21362 if __cplusplus is defined.
21363
21364 2001-11-30 Akim Demaille <akim@epita.fr>
21365
21366 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
21367 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
21368 Gettext doesn't compile cleanly, and dies with -Werror.
21369 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
21370 Include WARNING_CFLAGS here.
21371 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
21372 before being defined.
21373
21374 2001-11-27 Paul Eggert <eggert@twinsun.com>
21375
21376 * lib/quotearg.h (quotearg_n, quotearg_n_style):
21377 First arg is int, not unsigned.
21378 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
21379 (SIZE_MAX, UINT_MAX): New macros.
21380 (quotearg_n_options): Abort if N is negative.
21381 Avoid overflow check on hosts where size_t is 64 bits and int
21382 is 32 bits, as overflow is impossible there.
21383 Fix off-by-one typo that caused unnecessary reallocation.
21384
21385 2001-11-29 Paul Eggert <eggert@twinsun.com>
21386
21387 Name space cleanup in generated parser.
21388
21389 * doc/bison.texinfo (Bison Parser): Discuss system headers
21390 and their effect on the user name space.
21391
21392 * src/bison.simple:
21393 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
21394 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
21395 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
21396
21397 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
21398 on user names when possible.
21399
21400 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
21401 Simplify test for whather <alloca.h> exists.
21402
21403 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
21404
21405 (<stdio.h>): Include if YYDEBUG.
21406
21407 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
21408 ! defined (yyoverflow) && ! defined (yymemcpy).
21409
21410 (yymemcpy, yyparse): Rename local variables as needed so that
21411 they all begin with 'yy'.
21412
21413 (yystrlen, yystpcpy): New functions.
21414
21415 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
21416 All uses changed.
21417
21418 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
21419 instead of relying on string.h functions. Use YYSTACK_ALLOC
21420 and YYSTACK_FREE instead of malloc and free.
21421
21422 2001-11-30 Akim Demaille <akim@epita.fr>
21423
21424 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
21425 before their first uses.
21426 (YYBISON, YYPURE): Move to the top of the output.
21427
21428 2001-11-30 Akim Demaille <akim@epita.fr>
21429
21430 * tests/reduce.at (Useless Nonterminals): Fix.
21431
21432 2001-11-30 Akim Demaille <akim@epita.fr>
21433
21434 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
21435 if body instead of `;' to pacify GCC's warnings.
21436
21437 2001-11-30 Akim Demaille <akim@epita.fr>
21438
21439 Instead of mapping the LHS of unused rules to -1, keep the LHS
21440 valid, but flag the rules as invalid.
21441
21442 * src/gram.h (rule_t): `useful' is a new member.
21443 * src/print.c (print_grammar): Adjust.
21444 * src/derives.c (set_derives): Likewise.
21445 * src/reader.c (packgram, reduce_output): Likewise.
21446 * src/reduce.c (reduce_grammar_tables): Likewise.
21447 * tests/reduce.at (Underivable Rules, Useless Rules): New.
21448
21449 2001-11-30 Akim Demaille <akim@epita.fr>
21450
21451 * src/reduce.c (reduce_output): Formatting changes.
21452 * src/print.c (print_results, print_grammar): Likewise.
21453 * tests/regression.at (Rule Line Numbers)
21454 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
21455
21456 2001-11-30 Akim Demaille <akim@epita.fr>
21457
21458 * src/reduce.c (nonterminals_reduce): Instead of throwing away
21459 useless nonterminals, move them at the end of the symbol arrays.
21460 (reduce_output): Adjust.
21461 * tests/reduce.at (Useless Nonterminals): Adjust.
21462
21463 2001-11-30 Akim Demaille <akim@epita.fr>
21464
21465 * src/reduce.c: Various comment/formatting changes.
21466 (nonterminals_reduce): New, extracted from...
21467 (reduce_grammar_tables): here.
21468 (reduce_grammar): Call nonterminals_reduce.
21469
21470 2001-11-29 Paul Eggert <eggert@twinsun.com>
21471
21472 * src/bison.simple (YYSTACK_REALLOC): Remove.
21473 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
21474 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
21475 New macros.
21476 (union yyalloc): New type.
21477 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
21478 an arbitrary restriction on hosts where size_t is wider than int.
21479
21480 (yyparse): Don't dump core if alloca or malloc fails; instead, report
21481 a parser stack overflow. Allocate just one block of memory for all
21482 three stacks, instead of allocating three blocks; this typically is
21483 faster and reduces fragmentation.
21484
21485 Do not limit the number of items in the stack to a value that fits
21486 in 'int', as this is an arbitrary limit on hosts with 64-bit
21487 size_t and 32-bit int.
21488
21489 2001-11-29 Marc Autret <autret_m@epita.fr>
21490
21491 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
21492 of defining YYERROR_VERBOSE.
21493 [AT_DATA]: $4 is now out of C declarations in the prologue.
21494
21495 2001-11-28 Marc Autret <autret_m@epita.fr>
21496
21497 * src/reader.c (parse_dquoted_param): New.
21498 (parse_skel_decl): Use it.
21499 * src/lex.h: Add its prototype.
21500 * src/lex.c (literalchar): Become not static.
21501
21502 2001-11-28 Marc Autret <autret_m@epita.fr>
21503
21504 * src/output.h: And put its extern declaration here.
21505 * src/output.c (error_verbose): Define here.
21506 (prepare): Echo name modification.
21507 * src/getargs.h: Clean its extern declaration.
21508 * src/getargs.c (error_verbose_flag): Remove.
21509 (getargs): Remove case 'e'.
21510 * src/options.c (option_table): 'error-verbose' is now seen as simple
21511 percent option.
21512 Include output.h.
21513
21514 * src/reader.c (read_declarations): Remove case tok_include.
21515 (parse_include_decl): Remove.
21516 * src/lex.h (token_t): Remove tok_include.
21517 * src/options.c (option_table): 'include' is now a simple command line
21518 option.
21519
21520 2001-11-28 Marc Autret <autret_m@epita.fr>
21521
21522 * src/bison.simple: Adjust muscle names.
21523 * src/muscle_tab.c (muscle_init): Also rename the muscles.
21524 * src/output.c (prepare): s/_/-/ for the muscles names.
21525 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
21526
21527 2001-11-28 Marc Autret <autret_m@epita.fr>
21528
21529 * src/bison.simple: Fix debug.
21530 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
21531
21532 2001-11-28 Akim Demaille <akim@epita.fr>
21533
21534 * src/LR0.c (shifts_new): New.
21535 (save_shifts, insert_start_shift, augment_automaton): Use it.
21536
21537 2001-11-28 Akim Demaille <akim@epita.fr>
21538
21539 * src/closure.c (closure): `b' and `ruleno' denote the same value:
21540 keep ruleno only.
21541
21542 2001-11-28 Akim Demaille <akim@epita.fr>
21543
21544 * src/closure.c (closure): Instead of looping over word in array
21545 then bits in words, loop over bits in array.
21546
21547 2001-11-28 Akim Demaille <akim@epita.fr>
21548
21549 * src/closure.c (closure): No longer optimize the special case
21550 where all the bits of `ruleset[r]' are set to 0, to make the code
21551 clearer.
21552
21553 2001-11-28 Akim Demaille <akim@epita.fr>
21554
21555 * src/closure.c (closure): `r' and `c' are new variables, used to
21556 de-obfuscate accesses to RULESET and CORE.
21557
21558 2001-11-28 Akim Demaille <akim@epita.fr>
21559
21560 * src/reduce.c (reduce_print): Use ngettext.
21561 (dump_grammar): Improve the trace accuracy.
21562
21563 2001-11-28 Akim Demaille <akim@epita.fr>
21564
21565 * src/reduce.c (dump_grammar): Don't translate trace messages.
21566
21567 2001-11-28 Akim Demaille <akim@epita.fr>
21568
21569 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
21570 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
21571 as all tags are free'ed afterwards.
21572 From Enrico Scholz.
21573
21574 2001-11-27 Paul Eggert <eggert@twinsun.com>
21575
21576 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
21577 use alloca when we didn't want to, and vice versa.
21578
21579 2001-11-27 Marc Autret <autret_m@epita.fr>
21580
21581 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
21582 initialization.
21583 * src/output.c (prepare): Remove its update.
21584
21585 2001-11-27 Marc Autret <autret_m@epita.fr>
21586
21587 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
21588 Use %error-verbose.
21589
21590 2001-11-27 Marc Autret <autret_m@epita.fr>
21591
21592 * src/bison.simple: Remove YYERROR_VERBOSE using.
21593 Use %%error_verbose.
21594 (yyparse): Likewise.
21595 * src/output.c (prepare): Give its final value.
21596 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
21597 * src/getargs.h: Add its extern declaration.
21598 * src/getargs.c (error_verbose_flag): New int.
21599 (getargs): Update to catch new case.
21600 * src/options.c (option_table): 'error-verbose' is a new option.
21601 (shortopts): Update.
21602
21603 2001-11-27 Akim Demaille <akim@epita.fr>
21604
21605 * src/system.h: Use intl/libgettext.h.
21606 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
21607
21608 2001-11-27 Akim Demaille <akim@epita.fr>
21609
21610 * tests/torture.at (Exploding the Stack Size with Malloc):
21611 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
21612
21613 2001-11-27 Akim Demaille <akim@epita.fr>
21614
21615 * src/files.c: Include error.h.
21616 Reported by Hans Aberg.
21617
21618 2001-11-26 Marc Autret <autret_m@epita.fr>
21619
21620 * src/reader.c (parse_include_decl): New, not yet implemented.
21621 (read_declarations): Add case tok_include.
21622 * src/getargs.h (include): Add its extern definition.
21623 * src/getargs.c (include): New const char *.
21624 (getargs): Add case '-I'.
21625 * src/options.c (option_table): Add include as command line and
21626 percent option.
21627 * src/lex.h (token_t): Add tok_include.
21628
21629 2001-11-26 Akim Demaille <akim@epita.fr>
21630
21631 * src/reader.c (readgram): Make sure rules for mid-rule actions
21632 have a lineno equal to that of their host rule.
21633 Reported by Hans Aberg.
21634 * tests/regression.at (Rule Line Numbers): New.
21635
21636 2001-11-26 Akim Demaille <akim@epita.fr>
21637
21638 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
21639 size_ts.
21640
21641 2001-11-26 Akim Demaille <akim@epita.fr>
21642
21643 * src/complain.c, src/complain.h (error): Remove, provided by
21644 lib/error.[ch].
21645
21646 2001-11-26 Akim Demaille <akim@epita.fr>
21647
21648 * src/reader.c (read_declarations): Don't abort on tok_illegal,
21649 issue an error message.
21650 * tests/regression.at (Invalid %directive): New.
21651 Reported by Hans Aberg.
21652
21653 2001-11-26 Akim Demaille <akim@epita.fr>
21654
21655 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
21656 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
21657
21658 2001-11-26 Akim Demaille <akim@epita.fr>
21659
21660 * src/conflicts.c (conflicts_print): Don't complain at all when
21661 there are no reduce/reduce conflicts, and as many shift/reduce
21662 conflicts as expected.
21663 * tests/regression.at (%expect right): Adjust.
21664
21665 2001-11-23 Akim Demaille <akim@epita.fr>
21666
21667 * lib/alloca.c: Update, from fileutils.
21668
21669 2001-11-23 Akim Demaille <akim@epita.fr>
21670
21671 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
21672
21673 2001-11-23 Akim Demaille <akim@epita.fr>
21674
21675 * src/system.h: Include alloca.h.
21676 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
21677
21678 2001-11-23 Akim Demaille <akim@epita.fr>
21679
21680 * src/print_graph.c (print_actions): Remove `rule', unused.
21681 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
21682 pacify GCC's signed < unsigned warnings.
21683 * src/closure.c (itemsetsize): Likewise.
21684 * src/reader.c (symbol_list_new): Static.
21685
21686 2001-11-23 Akim Demaille <akim@epita.fr>
21687
21688 Attaching lineno to buckets is stupid, since only one copy of each
21689 symbol is kept, only the line of the first occurrence is kept too.
21690
21691 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
21692 * src/reader.c (rline_allocated): Remove, unused.
21693 (symbol_list): Have a `line' member.
21694 (symbol_list_new): New.
21695 (readgram): Use it.
21696 * src/print.c (print_grammar): Output the rule line numbers.
21697 * tests/regression.at (Solved SR Conflicts)
21698 (Unresolved SR Conflicts): Adjust.
21699 Reported by Hans Aberg.
21700
21701 2001-11-22 Marc Autret <autret_m@epita.fr>
21702
21703 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
21704
21705 2001-11-22 Marc Autret <autret_m@epita.fr>
21706
21707 * src/muscle_tab.c (muscle_init): Remove initialization of
21708 skeleton muscle.
21709 * src/output.c (output_master_parser): Do it here.
21710
21711 2001-11-20 Akim Demaille <akim@epita.fr>
21712
21713 * po/sv.po: New.
21714 * configure.in (ALL_LINGUAS): Adjust.
21715 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
21716 longer contains strings to translate.
21717
21718 2001-11-19 Akim Demaille <akim@epita.fr>
21719
21720 * src/conflicts.c (conflicts_print): Add a missing \n.
21721
21722 2001-11-19 Akim Demaille <akim@epita.fr>
21723
21724 * src/nullable.c (nullable_print): New.
21725 (set_nullable): Call it when tracing.
21726 Better locality of variables.
21727
21728 2001-11-19 Akim Demaille <akim@epita.fr>
21729
21730 * src/print.c (print_actions): Better locality of variables.
21731
21732 2001-11-19 Akim Demaille <akim@epita.fr>
21733
21734 * src/derives.c (print_derives): Fix and enrich.
21735 * src/closure.c (print_fderives): Likewise.
21736
21737 2001-11-19 Akim Demaille <akim@epita.fr>
21738
21739 * src/closure.c (itemsetend): Remove, replaced with...
21740 (itemsetsize): new.
21741
21742 2001-11-19 Akim Demaille <akim@epita.fr>
21743
21744 * src/LR0.c (kernel_end): Remove, replaced with...
21745 (kernel_size): new.
21746
21747 2001-11-19 Akim Demaille <akim@epita.fr>
21748
21749 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
21750 to clarify.
21751
21752 2001-11-19 Akim Demaille <akim@epita.fr>
21753
21754 * src/closure.c (closure): Use arrays instead of pointers to clarify.
21755
21756 2001-11-19 Akim Demaille <akim@epita.fr>
21757
21758 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
21759 trace messages.
21760 * src/LR0.c: Likewise.
21761 (allocate_itemsets): Use arrays instead of pointers to clarify.
21762
21763 2001-11-19 Akim Demaille <akim@epita.fr>
21764
21765 * src/getargs.c (statistics_flag): Replace with...
21766 (trace_flag): New.
21767 (longopts): Accept --trace instead of --statistics.
21768 * src/getargs.h, src/options.c: Adjust.
21769 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
21770 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
21771
21772 2001-11-19 Akim Demaille <akim@epita.fr>
21773
21774 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
21775 pointers to clarify the code.
21776 (save_reductions, save_shifts): Factor common parts of alternatives.
21777
21778 2001-11-19 Akim Demaille <akim@epita.fr>
21779
21780 * src/LR0.c (new_state, get_state): Complete TRACE code.
21781 * src/closure.c: Include `reader.h' to get `tags', needed by the
21782 trace code.
21783 Rename the conditional DEBUG as TRACE.
21784 Output consistently TRACEs to stderr, not stdout.
21785 * src/derives.c: Likewise.
21786 * src/reduce.c: (inaccessable_symbols): Using if is better style
21787 than goto.
21788 Use `#if TRACE' instead of `#if 0' for tracing code.
21789
21790 2001-11-19 Akim Demaille <akim@epita.fr>
21791
21792 * src/system.h (LIST_FREE, shortcpy): New.
21793 * src/LR0.c: Use them.
21794 * src/output.c (free_itemsets, free_reductions, free_shifts):
21795 Remove, replaced by LIST_FREE.
21796
21797 2001-11-19 Akim Demaille <akim@epita.fr>
21798
21799 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
21800 (REDUCTIONS_ALLOC): New.
21801 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
21802 allocation.
21803
21804 2001-11-19 Akim Demaille <akim@epita.fr>
21805
21806 * src/LR0.c (new_state): Complete trace code.
21807 * src/nullable.c (set_nullable): Don't translate traces.
21808
21809 2001-11-19 Akim Demaille <akim@epita.fr>
21810
21811 * src/print_graph.c (print_core): Better locality of variables.
21812 * src/print.c (print_core): Likewise.
21813
21814 2001-11-19 Akim Demaille <akim@epita.fr>
21815
21816 * src/vcg.c: You do the output, so you are responsible of the
21817 handling of VCG syntax, in particular: use quotearg.
21818 * src/print_graph.c: Don't.
21819 (print_actions): Don't output the actions as part of the nodes,
21820 since that's the job of the edges.
21821 (print_state): Don't output by hand: fill the node description,
21822 and ask for its output.
21823
21824 2001-11-19 Akim Demaille <akim@epita.fr>
21825
21826 * src/bison.simple (yyparse): When verbosely reporting an error,
21827 no longer put additional quotes around token names.
21828 * tests/calc.at: Adjust.
21829
21830 2001-11-19 Akim Demaille <akim@epita.fr>
21831
21832 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
21833 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
21834 * src/output.c: Adjust.
21835
21836 2001-11-19 Akim Demaille <akim@epita.fr>
21837
21838 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
21839 (rule_t): this.
21840 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
21841
21842 2001-11-19 Akim Demaille <akim@epita.fr>
21843
21844 * src/gram.h (rule_t): New.
21845 (rule_table): New.
21846 (rrhs, rlhs): Remove, part of state_t.
21847 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
21848 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
21849 * src/reader.c, src/reduce.c: Adjust.
21850
21851 2001-11-19 Akim Demaille <akim@epita.fr>
21852
21853 * src/reader.c (symbols_output): New, extracted from...
21854 (packsymbols): Here.
21855 (reader): Call it.
21856
21857 2001-11-19 Akim Demaille <akim@epita.fr>
21858
21859 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
21860 (maxrhs): this new function.
21861
21862 2001-11-19 Akim Demaille <akim@epita.fr>
21863
21864 * src/lalr.c (F): New macro to access the variable F.
21865 Adjust.
21866
21867 2001-11-19 Akim Demaille <akim@epita.fr>
21868
21869 * src/lalr.h (LA): New macro to access the variable LA.
21870 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21871 * src/lalr.c: Adjust.
21872
21873 2001-11-19 Akim Demaille <akim@epita.fr>
21874
21875 * src/lalr.c (initialize_LA): Only initialize LA. Let...
21876 (set_state_table): handle the `lookaheads' members.
21877
21878 2001-11-19 Akim Demaille <akim@epita.fr>
21879
21880 * src/lalr.h (lookaheads): Removed array, whose contents is now
21881 a member of...
21882 (state_t): this structure.
21883 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21884 Adjust.
21885
21886 2001-11-19 Akim Demaille <akim@epita.fr>
21887
21888 * src/lalr.h (consistent): Removed array, whose contents is now
21889 a member of...
21890 (state_t): this structure.
21891 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21892 Adjust.
21893
21894 2001-11-19 Akim Demaille <akim@epita.fr>
21895
21896 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
21897 contents are now members of...
21898 (state_t): this structure.
21899 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21900 Adjust.
21901
21902 2001-11-19 Akim Demaille <akim@epita.fr>
21903
21904 * src/lalr.h (state_t): New.
21905 (state_table): Be a state_t * instead of a core **.
21906 (accessing_symbol): Remove, part of state_t.
21907 * src/lalr.c: Adjust.
21908 (set_accessing_symbol): Merge into...
21909 (set_state_table): this.
21910 * src/print_graph.c, src/conflicts.c: Adjust.
21911
21912 2001-11-14 Akim Demaille <akim@epita.fr>
21913
21914 * tests/calc.at, tests/output.at, tests/regression.at,
21915 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
21916 now the tests are run in private dirs, therefore AC_CLEANUP and
21917 family can be simplified to 0-ary.
21918 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
21919 use abs. path to find config.h.
21920 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
21921 stderr, there can be way too much random noise.
21922 Instead pass -Werror to GCC and rely on the exit status.
21923 Reported by Wolfram Wagner.
21924
21925 2001-11-14 Akim Demaille <akim@epita.fr>
21926
21927 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
21928 defined only if yyoverflow is defined, to avoid `warning: unused
21929 variable `yyvs1''.
21930 Reported by The Test Suite.
21931
21932 2001-11-14 Akim Demaille <akim@epita.fr>
21933
21934 * src/print.c: Include reduce.h.
21935 Reported by Hans Aberg.
21936
21937 2001-11-14 Akim Demaille <akim@epita.fr>
21938
21939 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
21940 Revert a previous patch: these are really const.
21941 * src/conflicts.c (conflict_report): Additional useless pair of
21942 braces to pacify GCC's warnings for `if () if () {} else {}'.
21943 * src/lex.c (parse_percent_token): Replace equal_offset with
21944 arg_offset.
21945 arg is const.
21946 Be sure to strdup `arg' when used, since there is no reason for
21947 token_buffer not to change.
21948
21949 2001-11-14 Akim Demaille <akim@epita.fr>
21950
21951 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
21952 definition.
21953 * src/main.c (main): Use them.
21954 Suggested by Hans Aberg.
21955
21956 2001-11-12 Akim Demaille <akim@epita.fr>
21957
21958 * src/system.h (ngettext): Now that we use ngettext, be sure to
21959 provide a default definition when NLS are not used.
21960
21961 2001-11-12 Akim Demaille <akim@epita.fr>
21962
21963 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
21964 Use @kbd to denote user input.
21965 (Language and Grammar): ANSIfy the example.
21966 Adjust its layout for info/notinfo.
21967 (Location Tracking Calc): Output error messages to stderr.
21968 Output locations in a more GNUtically correct way.
21969 Fix a couple of Englishos.
21970 Adjust @group/@end group pairs.
21971
21972 2001-11-12 Akim Demaille <akim@epita.fr>
21973
21974 %expect was not functioning at all.
21975
21976 * src/conflicts.c (expected_conflicts): Set to -1.
21977 (conflict_report): Use ngettext.
21978 (conflicts_print): Check %expect and make its violation an error.
21979 * doc/bison.texinfo (Expect Decl): Adjust.
21980 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
21981 * tests/regression.at (%expect not enough, %expect right)
21982 (%expect too much): New.
21983
21984 2001-11-12 Akim Demaille <akim@epita.fr>
21985
21986 * tests/regression.at (Conflicts): Rename as...
21987 (Unresolved SR Conflicts): this.
21988 (Solved SR Conflicts): New.
21989
21990 2001-11-12 Akim Demaille <akim@epita.fr>
21991
21992 * src/reduce.c (print_results): Rename as...
21993 (reduce_output): This.
21994 Output to OUT, passed as argument, instead of output_obstack.
21995 (dump_grammar): Likewise.
21996 (reduce_free): New.
21997 Also free V1.
21998 (reduce_grammar): No longer call reduce_output, since...
21999 * src/print.c (print_results): do it.
22000 * src/main.c (main): Call reduce_free;
22001
22002 2001-11-12 Akim Demaille <akim@epita.fr>
22003
22004 * src/conflicts.c (print_reductions): Accept OUT as argument.
22005 Output to it, not to output_obstack.
22006 * src/print.c (print_actions): Adjust.
22007
22008 2001-11-12 Akim Demaille <akim@epita.fr>
22009
22010 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
22011 the result instead of using...
22012 (src_total, rrc_total, src_count, rrc_count): Remove.
22013 (any_conflicts): Remove.
22014 (print_conflicts): Split into...
22015 (conflicts_print, conflicts_output): New.
22016 * src/conflicts.h: Adjust.
22017 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
22018 * src/print.c (print_grammar): Issue `\n' between two rules.
22019 * tests/regression.at (Conflicts): New.
22020 Reported by Tom Lane.
22021
22022 2001-11-12 Akim Demaille <akim@epita.fr>
22023
22024 * tests/regression.at (Invalid input): Remove, duplicate with
22025 ``Invalid input: 1''.
22026
22027 2001-11-12 Akim Demaille <akim@epita.fr>
22028
22029 * tests/torture.at (AT_DATA_STACK_TORTURE)
22030 (Exploding the Stack Size with Alloca)
22031 (Exploding the Stack Size with Malloc): New.
22032
22033 2001-11-12 Akim Demaille <akim@epita.fr>
22034
22035 * src/bison.simple (YYSTACK_REALLOC): New.
22036 (yyparse) [!yyoverflow]: Use it and free the old stack.
22037 Reported by Per Allansson.
22038
22039 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
22040
22041 * src/bison.simple: Define type yystype instead of YYSTYPE, and
22042 define CPP macro, which substitute YYSTYPE by yystype.
22043 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
22044 with yyltype/YYLTYPE. This allows inclusion of the generated
22045 header within the parser if the compiler, such as GGC, accepts
22046 multiple equivalent #defines.
22047 From Akim.
22048
22049 2001-11-05 Akim Demaille <akim@epita.fr>
22050
22051 * src/reader.c (symbols_output): New, extracted from...
22052 (packsymbols): here.
22053 (reader): Adjust.
22054
22055 2001-11-05 Akim Demaille <akim@epita.fr>
22056
22057 * src/lex.c (parse_percent_token): s/quotearg/quote/.
22058
22059 2001-11-05 Akim Demaille <akim@epita.fr>
22060
22061 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
22062 pattern.
22063
22064 2001-11-05 Akim Demaille <akim@epita.fr>
22065
22066 * src/options.h (struct option_table_struct): set_flags is void*.
22067 * src/options.c (longopts): Support `--output' and `%output'.
22068 (usage): Adjust.
22069 * src/lex.h (tok_setopt): Remove, replaced with...
22070 (tok_intopt, tok_stropt): these new guys.
22071 * src/lex.c (getopt.h): Not needed.
22072 (token_buffer, unlexed_token_buffer): Not const.
22073 (percent_table): Promote `-' over `_' in directive names.
22074 Active `%name-prefix', `file-prefix', and `output'.
22075 (parse_percent_token): Accept possible arguments to directives.
22076 Promote `-' over `_' in directive names.
22077
22078 2001-11-04 Akim Demaille <akim@epita.fr>
22079
22080 * doc/bison.texinfo (Decl Summary): Split the list into
22081 `directives for grammars' and `directives for bison'.
22082 Sort'em.
22083 Add description of `%name-prefix', `file-prefix', and `output'.
22084 Promote `-' over `_' in directive names.
22085 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
22086 Simplify the description of `--name-prefix'.
22087 Promote `-' over `_' in directive names.
22088 Promote `--output' over `--output-file'.
22089 Fix the description of `--defines'.
22090 * tests/output.at: Exercise %file-prefix and %output.
22091
22092 2001-11-02 Akim Demaille <akim@epita.fr>
22093
22094 * doc/refcard.tex: Update.
22095
22096 2001-11-02 Akim Demaille <akim@epita.fr>
22097
22098 * src/symtab.h (SUNDEF): New.
22099 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
22100 stand for `uninitialized', instead of 0.
22101 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
22102 * src/lex.c (lex): Adjust.
22103
22104 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
22105 Number it 0.
22106 Let yylex return it instead of a plain 0.
22107 Reported by Dick Streefland.
22108
22109 2001-11-02 Akim Demaille <akim@epita.fr>
22110
22111 * tests/regression.at (Mixing %token styles): New test.
22112
22113 2001-11-02 Akim Demaille <akim@epita.fr>
22114
22115 * src/reader.c (parse_thong_decl): Formatting changes.
22116 (token_translations_init): New, extracted from...
22117 (packsymbols): Here.
22118 Adjust.
22119
22120 2001-11-01 Akim Demaille <akim@epita.fr>
22121
22122 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
22123 Check that `9foo.y' produces correct cpp guards.
22124 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
22125 guards.
22126 Reported by Wwp.
22127
22128 2001-11-01 Akim Demaille <akim@epita.fr>
22129
22130 * tests/regression.at (Invalid input: 2): New.
22131 * src/lex.c (unlexed_token_buffer): New.
22132 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
22133 too.
22134 Reported by Wwp.
22135
22136 2001-11-01 Akim Demaille <akim@epita.fr>
22137
22138 * tests/calc.at: Catch up with 1.30.
22139 * configure.in: Bump to 1.49a.
22140 Adjust to newer Autotest.
22141
22142 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
22143
22144 * src/conflicts.c: Move global variables rrc_total and src_total ...
22145 (print_conflicts): here.
22146 * src/output.c (output): Free global variable user_toknums.
22147 * src/lex.c (token_obstack): Become static.
22148
22149 2001-10-18 Akim Demaille <akim@epita.fr>
22150
22151 * tests/atlocal.in (GCC): Add.
22152 * tests/calc.at: s/m4_match/m4_bmatch/.
22153 s/m4_patsubst/m4_bpatsubst/.
22154 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
22155 * configure.in: AC_SUBST(GCC).
22156
22157 2001-10-14 Marc Autret <autret_m@epita.fr>
22158
22159 * src/options.c (create_long_option_table): Fix.
22160
22161 2001-10-10 Akim Demaille <akim@epita.fr>
22162
22163 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
22164
22165 2001-10-04 Akim Demaille <akim@epita.fr>
22166
22167 * src/reader.c (parse_union_decl): Push the caracters in
22168 union_obstack, not attrs_obstack.
22169
22170 2001-10-04 Akim Demaille <akim@epita.fr>
22171
22172 Merge in the branch 1.29.
22173
22174 * src/reader.c (packsymbols): Use a temporary obstack for
22175 `%%tokendef', since output_stack is already used elsewhere.
22176
22177 2001-10-02 Akim Demaille <akim@epita.fr>
22178
22179 Bump 1.29d.
22180
22181 2001-10-02 Akim Demaille <akim@epita.fr>
22182
22183 Version 1.29c.
22184
22185 2001-10-02 Akim Demaille <akim@epita.fr>
22186
22187 * tests/regression.at (Invalid CPP headers): New.
22188 From Alexander Belopolsky.
22189 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
22190
22191 2001-10-02 Akim Demaille <akim@epita.fr>
22192
22193 * tests/regression.at (Invalid input): New.
22194 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
22195 Reported by Shura.
22196
22197 2001-10-02 Akim Demaille <akim@epita.fr>
22198
22199 * tests/calc.at: Now that --debug works, the tests must be adjusted.
22200
22201 2001-10-02 Akim Demaille <akim@epita.fr>
22202
22203 * src/output.c (output_parser): Assert `skeleton'.
22204 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
22205 systems.
22206 From Shura.
22207
22208 2001-10-01 Marc Autret <autret_m@epita.fr>
22209
22210 * src/lex.h: Echo modifications.
22211 * src/lex.c (unlex): Parameter is now token_t.
22212 From Hans Aberg.
22213
22214 2001-10-01 Marc Autret <autret_m@epita.fr>
22215
22216 * src/main.c: Include lex.h.
22217 From Hans Aberg.
22218
22219 2001-09-29 Akim Demaille <akim@epita.fr>
22220
22221 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
22222
22223 2001-09-28 Akim Demaille <akim@epita.fr>
22224
22225 * tests/testsuite.at: Update to newer Autotest.
22226 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
22227
22228 2001-09-27 Akim Demaille <akim@epita.fr>
22229
22230 Position independent wrapper.
22231
22232 * tests/bison: Remove.
22233 * tests/bison.in: New.
22234 * configure.in: Adjust.
22235
22236 2001-09-27 Paul Eggert <eggert@twinsun.com>
22237
22238 Port quotearg fixes from tar 1.13.24.
22239
22240 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
22241 tm to be declared.
22242 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
22243 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
22244
22245 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
22246 * m4/mbrtowc.m4: New file.
22247 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
22248 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
22249
22250 2001-09-27 Akim Demaille <akim@epita.fr>
22251
22252 Bump to 1.29c.
22253
22254 2001-09-27 Akim Demaille <akim@epita.fr>
22255
22256 Version 1.29b.
22257
22258 2001-09-25 Akim Demaille <akim@epita.fr>
22259
22260 * src/system.h: Include `xalloc.h'.
22261 Remove it from the C files.
22262 * src/files.c (output_files): Free the obstacks.
22263 * src/lex.c (init_lex): Rename as...
22264 (lex_init): this.
22265 (lex_free): New.
22266 * src/main.c (main): Use it.
22267
22268 2001-09-24 Marc Autret <autret_m@epita.fr>
22269
22270 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
22271 to output informations in fout (FILE*).
22272 (open_graph, close_graph): Likewise.
22273 (output_graph, output_edge, output_node): Likewise.
22274 * src/vcg.h: Update function prototypes.
22275 * src/print_graph.c (print_graph): Open output graph file.
22276 (print_actions): Adjust.
22277 * src/files.h: Remove extern declaration.
22278 * src/files.c: Remove graph_obstack declaration.
22279 (open_files): Remove graph_obstack initialization.
22280 (output_files): Remove graph_obstack saving.
22281
22282 2001-09-24 Marc Autret <autret_m@epita.fr>
22283
22284 * src/files.c (compute_output_file_names): Fix.
22285
22286 2001-09-24 Marc Autret <autret_m@epita.fr>,
22287 Akim Demaille <akim@epita.fr>
22288
22289 * src/reader.c (reader): Remove call to free_symtab ().
22290 * src/main.c (main): Call it here.
22291 Include symtab.h.
22292 * src/conflicts.c (initialize_conflicts): Rename as...
22293 (solve_conflicts): this.
22294 * src/print.c (print_core, print_actions, print_state)
22295 (print_grammar): Dump to a file instead a `output_obstack'.
22296 (print_results): Dump `output_obstack', and then proceed with the
22297 FILE *.
22298 * src/files.c (compute_output_file_names, close_files): New.
22299 (output_files): Adjust.
22300 * src/main.c (main): Adjust.
22301
22302 2001-09-23 Marc Autret <autret_m@epita.fr>
22303
22304 * src/files.c (compute_header_macro): Computes header macro name
22305 from spec_defines_file when given.
22306
22307 2001-09-23 Marc Autret <autret_m@epita.fr>
22308
22309 * src/files.c (output_files): Add default extensions.
22310
22311 2001-09-22 Akim Demaille <akim@epita.fr>
22312
22313 * src/conflicts.c (finalize_conflicts): Rename as...
22314 (free_conflicts): this.
22315
22316 2001-09-22 Akim Demaille <akim@epita.fr>
22317
22318 * src/gram.c (gram_free): Rename back as...
22319 (dummy): this.
22320 (output_token_translations): Free `token_translations'.
22321 * src/symtab.c (free_symtab): Free the tag field.
22322
22323 2001-09-22 Akim Demaille <akim@epita.fr>
22324
22325 Remove `translations' as it is always set to true.
22326
22327 * src/gram.h: Adjust.
22328 * src/reader.c (packsymbols, parse_token_decl): Adjust
22329 * src/print.c (print_grammar): Adjust.
22330 * src/output.c (output_token_translations): Adjust.
22331 * src/lex.c (lex): Adjust.
22332 * src/gram.c: Be sure the set pointers to NULL.
22333 (dummy): Rename as...
22334 (gram_free): this.
22335
22336 2001-09-22 Akim Demaille <akim@epita.fr>
22337
22338 * configure.in: Invoke AM_LIB_DMALLOC.
22339 * src/system.h: Use dmalloc.
22340 * src/LR0.c: Be sure to have pointers initialized to NULL.
22341 (allocate_itemsets): Allocate kernel_items only if needed.
22342
22343 2001-09-22 Akim Demaille <akim@epita.fr>
22344
22345 * configure.in: Bump to 1.29b.
22346 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
22347 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
22348 need xmalloc.c in calc.y.
22349 From Pascal Bart.
22350
22351 2001-09-21 Akim Demaille <akim@epita.fr>
22352
22353 Version 1.29a.
22354 * Makefile.maint, config/config.guess, config/config.sub,
22355 * config/missing: Update from masters.
22356 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
22357 upon package.m4.
22358 * configure.in (ALL_LINGUAS): Add `tr'.
22359
22360 2001-09-21 Akim Demaille <akim@epita.fr>
22361
22362 * tests/Makefile.am (package.m4): Move to...
22363 ($(srcdir)/$(TESTSUITE)): here.
22364
22365 2001-09-20 Akim Demaille <akim@epita.fr>
22366
22367 * src/complain.c: No longer try to be standalone: use system.h.
22368 Don't assume __STDC__ is defined to 1. Just test if it is defined.
22369 * src/complain.h: Likewise.
22370 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
22371 Remove the unused variable `n'.
22372 From Albert Chin-A-Young.
22373
22374 2001-09-18 Marc Autret <autret_m@epita.fr>
22375
22376 * doc/bison.1: Update.
22377 * doc/bison.texinfo (Bison Options): Update --defines and --graph
22378 descriptions.
22379 (Option Cross Key): Update.
22380 Add --graph.
22381
22382 2001-09-18 Marc Autret <autret_m@epita.fr>
22383
22384 * tests/regression.at: New test (comment in %union).
22385
22386 2001-09-18 Marc Autret <autret_m@epita.fr>
22387
22388 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
22389 do that.
22390 Reported by Keith Browne.
22391
22392 2001-09-18 Marc Autret <autret_m@epita.fr>
22393
22394 * tests/output.at: Add tests for --defines and --graph.
22395
22396 2001-09-18 Marc Autret <autret_m@epita.fr>
22397
22398 * tests/output.at: Removes tests of %{header,src}_extension features.
22399
22400 2001-09-18 Akim Demaille <akim@epita.fr>
22401
22402 * tests/Makefile.am (package.m4): New.
22403 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
22404 (_AT_CHECK_CALC_ERROR): Likewise.
22405 Factor the `, ' part of verbose error messages.
22406
22407 2001-09-18 Marc Autret <autret_m@epita.fr>
22408
22409 * src/getargs.c (longopts): Declare --defines and --graph as options
22410 with optional arguments.
22411 * src/files.h: Add extern declarations.
22412 * src/files.c (spec_graph_file, spec_defines_file): New.
22413 (output_files): Update.
22414 Remove CPP-outed code.
22415
22416 2001-09-18 Marc Autret <autret_m@epita.fr>
22417
22418 Turn off %{source,header}_extension feature.
22419
22420 * src/files.c (compute_exts_from_gf): Update.
22421 (compute_exts_from_src): Update.
22422 (output_files): CPP-out useless code.
22423 * src/files.h: Remove {header,source}_extension extern declarations.
22424 * src/reader.c (parse_dquoted_param): CPP-out.
22425 (parse_header_extension_decl): Remove.
22426 (parse_source_extension_decl): Remove.
22427 (read_declarations): Remove cases tok_{hdrext,srcext}.
22428 * src/lex.c (percent_table): Remove {header,source}_extension entries.
22429 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
22430
22431 2001-09-10 Akim Demaille <akim@epita.fr>
22432
22433 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
22434 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
22435 (AT_CHECK_OUTPUT): this.
22436 Merely check ls' exit status, its output is useless.
22437
22438 2001-09-10 Akim Demaille <akim@epita.fr>
22439
22440 * tests/calc.at: Use m4_match.
22441 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
22442
22443 2001-09-10 Marc Autret <autret_m@epita.fr>,
22444 Akim Demaille <akim@epita.fr>
22445
22446 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
22447 enum color_e.
22448 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
22449 to `normal'.
22450 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
22451 * src/lex.h: Adjust prototype.
22452 (token_t): Add `tok_undef'.
22453 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
22454 (parse_percent_token): Now returns token_t.
22455 Add default statement in switch.
22456 (lex): Separate `c' as an input variable, from the token_t result
22457 part.
22458 (unlexed): Is a token_t.
22459
22460 2001-09-10 Akim Demaille <akim@epita.fr>
22461
22462 * configure.in: Bump to 1.29a.
22463
22464 2001-09-07 Akim Demaille <akim@epita.fr>
22465
22466 Version 1.29.
22467
22468 2001-08-30 Akim Demaille <akim@epita.fr>
22469
22470 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
22471 * m4/atconfig.m4: Remove.
22472 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
22473 * tests/bison: New.
22474 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
22475 m4_if, m4_patsubst, and m4_regexp.
22476 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
22477 `input' file instead of echo.
22478
22479 2001-08-29 Akim Demaille <akim@epita.fr>
22480
22481 Bump to 1.28e.
22482
22483 2001-08-29 Akim Demaille <akim@epita.fr>
22484
22485 Version 1.28d.
22486
22487 2001-08-29 Paul Eggert <eggert@twinsun.com>
22488
22489 * src/bison.simple (yyparse): Don't take the address of an
22490 item before the start of an array, as that doesn't conform to
22491 the C Standard.
22492
22493 2001-08-29 Robert Anisko <anisko_r@epita.fr>
22494
22495 * doc/bison.texinfo (Location Tracking Calc): New node.
22496
22497 2001-08-29 Paul Eggert <eggert@twinsun.com>
22498
22499 * src/output.c (output): Do not define const, as this now
22500 causes more problems than it cures.
22501
22502 2001-08-29 Akim Demaille <akim@epita.fr>
22503
22504 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
22505 the nodes.
22506 Be sure to tag the `detailmenu'.
22507
22508 2001-08-29 Akim Demaille <akim@epita.fr>
22509
22510 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
22511 download in a tmp dir.
22512
22513 2001-08-28 Marc Autret <autret_m@epita.fr>
22514
22515 * config/depcomp: New file.
22516
22517 2001-08-28 Marc Autret <autret_m@epita.fr>
22518
22519 * doc/bison.1 (mandoc): Adjust.
22520 From Juan Manuel Guerrero.
22521
22522 2001-08-28 Marc Autret <autret_m@epita.fr>
22523
22524 * src/print_graph.c (print_state): Fix.
22525
22526 2001-08-27 Marc Autret <autret_m@epita.fr>
22527
22528 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
22529 char * members.
22530 Echo modifications to the functions prototypes.
22531 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
22532
22533 2001-08-27 Marc Autret <autret_m@epita.fr>
22534
22535 * src/vcg.c: Include `xalloc.h'.
22536 (add_colorentry): New.
22537 (add_classname): New.
22538 (add_infoname): New.
22539 * src/vcg.h: Add new prototypes.
22540
22541 2001-08-27 Akim Demaille <akim@epita.fr>
22542
22543 * Makefile.maint: Sync. again with CVS Autoconf.
22544
22545 2001-08-27 Akim Demaille <akim@epita.fr>
22546
22547 * Makefile.maint: Formatting changes.
22548 (po-update, cvs-update, update): New targets.
22549 (AMTAR): Remove.
22550
22551 2001-08-27 Akim Demaille <akim@epita.fr>
22552
22553 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22554 * Makefile.maint: Sync. with CVS Autoconf.
22555
22556 2001-08-27 Marc Autret <autret_m@epita.fr>
22557
22558 * src/vcg.h (struct infoname_s): New.
22559 (struct colorentry_s): New.
22560 (graph_s): New fields {vertical,horizontal}_order in structure.
22561 Add `infoname' field.
22562 Add `colorentry' field;
22563 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
22564 (G_HORIZONTAL_ORDER): New.
22565 (G_INFONAME): New.
22566 (G_COLORENTRY): New.
22567 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
22568 Add output of `infoname'.
22569 Add output of `colorentry'.
22570
22571 2001-08-27 Marc Autret <autret_m@epita.fr>
22572
22573 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
22574 This one shadowed a global parameter.
22575
22576 2001-08-24 Marc Autret <autret_m@epita.fr>
22577
22578 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
22579 instead of `unsigned'.
22580 (print_state): Do not call obstack_object_size () in obstack_grow ()
22581 to avoid macro variables shadowing.
22582
22583 2001-08-23 Marc Autret <autret_m@epita.fr>
22584
22585 * src/lex.c (percent_table): Typo: s/naem/name/.
22586 Add graph option.
22587 Normalize new options declarations.
22588
22589 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
22590
22591 * tests/suite.at: Exercise %header_extension and %source_extension.
22592
22593 2001-08-16 Marc Autret <autret_m@epita.fr>
22594
22595 * src/reader.c (parse_dquoted_param): New.
22596 (parse_header_extension_decl): Use it.
22597 (parse_source_extension_decl): Likewise.
22598
22599 2001-08-16 Marc Autret <autret_m@epita.fr>
22600
22601 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
22602 (get_xxxx_str): Use assert () instead of complain ().
22603 Remove return invokations in default cases.
22604 (get_decision_str): Modify default behaviour. Remove second argument.
22605 Echo modifications on calls.
22606 (output_graph): Fix.
22607
22608 2001-08-16 Marc Autret <autret_m@epita.fr>
22609
22610 * src/getargs.c (usage): Update with ``-g, --graph''.
22611
22612 2001-08-16 Marc Autret <autret_m@epita.fr>
22613
22614 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
22615 (Option Cross Key): Likewise.
22616 * doc/bison.1: Update.
22617
22618 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
22619
22620 * src/output.c (output_master_parser): Don't finish action_obstack.
22621 (output_parser): Don't care about the muscle action, here.
22622 (prepare): Copy the action_obstack in the action muscle.
22623 (output): Free action_obstack.
22624
22625 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
22626
22627 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
22628 will contain `%union' declaration.
22629 (parse_union_decl): Delete #line directive output.
22630 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
22631 informations about %union.
22632 (parse_union_decl): Copy the union_obstack in the muscle stype.
22633 * src/bison.simple: Add new #line directive.
22634 Add typdef %%stype YYSTYPE.
22635
22636 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
22637
22638 * src/bison.simple: Add new `#line' directive.
22639
22640 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
22641
22642 * src/bison.simple: New `#line' directive.
22643 * src/output.c (output_parser): Support new dynamic muscle input_line.
22644
22645 2001-09-22 Marc Autret <autret_m@epita.fr>
22646
22647 * src/output.c (output_master_parser): New.
22648 (output_parser): Be more re-entrant.
22649
22650 2001-09-21 Marc Autret <autret_m@epita.fr>
22651
22652 * src/reader.c (copy_definition, parse_union_decl): Update and use
22653 `linef' muscle.
22654 (copy_action): Likewise.
22655 Use obstack_1grow ().
22656 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
22657
22658 2001-09-21 Marc Autret <autret_m@epita.fr>
22659
22660 * src/options.c (option_table): Adjust.
22661 * src/lex.c (parse_percent_token): Fix.
22662
22663 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
22664
22665 * src/options.c (symtab.h): Include it, need by lex.h.
22666
22667 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
22668
22669 * src/lex.c (parse_percent_token): Change type of variable `tx', which
22670 is now an option_table_struct*.
22671 (option_strcmp): New function option_strcmp.
22672 (parse_percent_token): Call option_strcmp.
22673 * src/getargs.c (xalloc.h, options.h): Include it.
22674 (getargs): Call create_long_option_table.
22675 (getargs): Free longopts at the end of the function.
22676 (shortopts): Move in options.c.
22677 * src/options.c (create_long_option_table): New function. Convert
22678 information from option_table to option structure.
22679 * src/reader.c (options.h): Include it.
22680
22681 * src/Makefile.am: Adjust.
22682 * src/options.c (option_table): Create from longopts and percent_table.
22683 * src/getargs.c (longopts): Delete.
22684 * src/lex.c (struct percent_table_struct): Delete.
22685 (percent_table): Delete.
22686 (options.h): Include it.
22687 * src/options.c: Create.
22688 * src/options.h: Create.
22689 Declare enum opt_access_e.
22690 Define struct option_table_struct.
22691
22692 2001-09-20 Marc Autret <autret_m@epita.fr>
22693
22694 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
22695 sections of Bison.
22696
22697 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
22698
22699 * src/bison.simple: s/%%filename/%%skeleton.
22700 * src/muscle_tab.c (getargs.h): Include it.
22701 (muscle_init): Insert new muscle skeleton.
22702
22703 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
22704
22705 * src/output.c (output_parser): Delete unused variable actions_dumped.
22706
22707 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
22708
22709 * src/output.c (output): Delete call to reader_output_yylsp.
22710 * src/reader.c (reader): Likewise.
22711 * src/reader.h: Delete declaration of reader_output_yylsp.
22712
22713 2001-09-02 Marc Autret <autret_m@epita.fr>
22714
22715 * src/reader.c: Include muscle_tab.h.
22716 (parse_union_decl): Update.
22717 (parse_macro_decl): Rename parse_muscle_decl.
22718 Update to use renamed functions and variable.
22719 (read_declarations, copy_action, read_additionnal_code, : Updated
22720 with correct variables and functions names.
22721 (packsymbols, reader): Likewise.
22722
22723 * src/reader.h (muscle_obstack): Extern declaration update.
22724
22725 * src/output.c: Include muscle_tab.h
22726 In all functions using macro_insert, change by using muscle_insert ().
22727 (macro_obstack): Rename muscle_obstack.
22728 Echo modifications in the whole file.
22729 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
22730 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
22731 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
22732
22733 * src/muscle_tab.h: Update double inclusion macros.
22734 (macro_entry_s): Rename muscle_entry_s.
22735 Update prototypes.
22736
22737 * src/muscle_tab.c: Include muscle_tab.h.
22738 Rename macro_tabble to muscle_table.
22739 (mhash1, mhash2, mcmp): Use muscle_entry.
22740 (macro_init): Rename muscle_init. Update.
22741 (macro_insert): Rename muscle_insert. Update.
22742 (macro_find): Rename muscle_find. Update.
22743
22744 * src/main.c: Include muscle_tab.h.
22745 (main): Call muscle_init ().
22746 * src/Makefile.am (bison_SOURCES): Echo modifications.
22747
22748 2001-09-02 Marc Autret <autret_m@epita.fr>
22749
22750 Now the files macro_tab.[ch] are named muscle_tab.[ch].
22751
22752 * src/muscle_tab.c, src/muscle_tab.h: Add files.
22753
22754 2001-09-02 Marc Autret <autret_m@epita.fr>
22755
22756 * src/macrotab.c, src/macrotab.h: Remove.
22757
22758 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
22759
22760 * src/reader.c (copy_guard): Use muscle to specify the `#line'
22761 filename.
22762
22763 2001-09-01 Marc Autret <autret_m@epita.fr>
22764
22765 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
22766 to an explicit value to activate the feature. We do it here.
22767
22768 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22769
22770 * src/output.c (prepare): Delete the `filename' muscule insertion.
22771 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
22772 (parse_union_decl): Likewise.
22773 * src/macrotab.c (macro_init): Initialize filename by infile.
22774
22775 2001-08-31 Marc Autret <autret_m@epita.fr>
22776
22777 * src/bison.simple (YYLSP_NEEDED): New definition.
22778 * src/output.c (prepare): Add macro insertion of `locations_flag'
22779
22780 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22781
22782 * src/output.c (prepare): Delete insertion of previous muscles,
22783 and insert the `prefix' muscles.
22784 * src/macrotab.c (macro_init): Likewise.
22785 (macro_init): Initialization prefix directive by `yy'.
22786 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
22787 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
22788 yylval, yydebug, yyerror, yynerrs and yyparse.
22789 New directive `#define' to substitute yydebug, ... with option
22790 name_prefix.
22791
22792 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22793
22794 * src/main.c (main): Standardize.
22795 * src/output.c (output_table_data, output_parser): Likewise.
22796 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
22797
22798 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
22799
22800 * src/reader.c (read_additionnal_code): Rename %%user_code to
22801 %%epilogue.
22802 * src/output.c (output): Rename %%declarations to %%prologue.
22803 * src/bison.simple: Echo modifications.
22804
22805 2001-08-31 Marc Autret <autret_m@epita.fr>
22806
22807 * src/reader.c (readgram): CleanUp.
22808 (output_token_defines): Likewise.
22809 (packsymbols): Likewise.
22810 (reader): Likewise.
22811 * src/output.c (output): CPP-out useless code.
22812
22813 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22814
22815 * src/reader.c (reader): Delete obsolete call to function
22816 output_trailers and output_headers.
22817 * src/output.h: Remove obsolete functions prototypes of output_headers
22818 and output_trailers.
22819
22820 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
22821
22822 * src/main.c: Include macrotab.h.
22823 * src/macrotab.h (macro_entry_s): Constify fields.
22824 Adjust functions prototypes.
22825 * src/macrotab.c (macro_insert): Constify key and value.
22826 (macro_find): Constify key.
22827 (macro_insert): Include 'xalloc.h'
22828 (macro_insert): Use XMALLOC.
22829 (macro_find): Constify return value.
22830 * src/output.c (output_table_data): Rename table to table_data.
22831 (output_parser): Constify macro_key, macro_value.
22832
22833 2001-08-30 Marc Autret <autret_m@epita.fr>
22834
22835 * src/reader.c (parse_skel_decl): New.
22836 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
22837 * src/lex.h (token_t): New token `tok_skel'.
22838 * src/lex.c (percent_table): Add skeleton option entry.
22839 Standardize.
22840
22841 2001-08-29 Marc Autret <autret_m@epita.fr>
22842
22843 * src/bison.simple: Add %%user_code directive at the end.
22844 * src/reader.c (read_additionnal_code): New.
22845 (reader): Use it.
22846 * src/output.c (output_program): Remove.
22847 (output): Update.
22848
22849 2001-08-28 Marc Autret <autret_m@epita.fr>
22850
22851 * src/output.c (output_actions): Clean up.
22852 (output_gram): CPP-out useless code.
22853 * src/reader.c (reader): Clean up, CPP-out useless code.
22854
22855 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
22856
22857 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
22858 directive.
22859 * src/bison.simple: Add `%%definitions'.
22860
22861 2001-08-28 Marc Autret <autret_m@epita.fr>
22862
22863 * config/depcomp: New file.
22864
22865 2001-08-27 Paul Eggert <eggert@twinsun.com>
22866
22867 * src/bison.simple (yyparse): Don't take the address of an
22868 item before the start of an array, as that doesn't conform to
22869 the C Standard.
22870
22871 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
22872
22873 * src/output.c (output): Remove the initialization of the macro
22874 obstack. It was done too late here.
22875
22876 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
22877 completely wrong.
22878 (reader): Initialize the macro obstack here, since we need it to grow
22879 '%define' directives.
22880
22881 * src/reader.h: Declare the macro obstack as extern.
22882
22883 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
22884
22885 * src/output.c (output_parser): Fix. Store single '%' characters in
22886 the output obstack instead of throwing them away.
22887
22888 2001-08-27 Akim Demaille <akim@epita.fr>
22889
22890 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22891
22892 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22893
22894 * lib/Makefile.am: Adjust.
22895
22896 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22897
22898 * src/bison.simple: Update and add '%%' directives.
22899
22900 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22901
22902 * src/reader.c (reader): Remove calls to 'output_headers' and
22903 'output_trailers'. Remove some C output.
22904 (readgram): Disable a piece of code that was writing a default
22905 definition for 'YYSTYPE'.
22906 (reader_output_yylsp): Remove.
22907 (packsymbols): Output token defintions to a macro.
22908 (copy_definition): Disable C output.
22909
22910 * src/reader.c (parse_macro_decl): New function used to parse macro
22911 declarations.
22912 (copy_string2): Put the body of copy_string into this new function.
22913 Add a parameter to let the caller choose whether he wants to copy the
22914 string delimiters or not.
22915 (copy_string): Be a simple call to copy_string2 with the last argument
22916 bound to true.
22917 (read_declarations): Add case for macro definition.
22918 (copy_identifier): New.
22919 (parse_macro_decl): Read macro identifiers using copy_identifier
22920 rather than lex.
22921
22922 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22923
22924 * src/output.c (prepare): Add prefixed names.
22925 (output_parser): Output semantic actions.
22926 (output_parser): Fix bug on '%%line' directives.
22927
22928 * src/output.c (output_headers): Remove. The C code printed by this
22929 function should now be in the skeletons.
22930 (output_trailers): Remove.
22931 (output): Disable call to 'reader_output_yylsp'.
22932 (output_rule_data): Do not output tables to the table obstack.
22933
22934 * src/output.c: Remove some C dedicated output.
22935 Improve the use of macro and output obstacks.
22936 (output_defines): Remove.
22937
22938 * src/output.c (output_token_translations): Associate 'translate'
22939 table with a macro. No output to the table obstack.
22940 (output_gram): Same for 'rhs' and 'prhs'.
22941 (output_stos): Same for 'stos'.
22942 (output_rule_data): Same for 'r1' and 'r2'.
22943 (token_actions): Same for 'defact'.
22944 (goto_actions): Same for 'defgoto'.
22945 (output_base): Same for 'pact' and 'pgoto'.
22946 (output_table): Same for 'table'.
22947 (output_check): Same for 'check'.
22948
22949 * src/output.c (output_table_data): New function.
22950 (output_short_table): Remove.
22951 (output_short_or_char_table): Remove.
22952
22953 * src/output.c (output_parser): Replace most of the skeleton copy code
22954 with something new. Skeletons are now processed character by character
22955 rather than line by line, and Bison looks for '%%' macros. This is the
22956 first step in making Bison's output process (a lot) more flexible.
22957 (output_parser): Use the macro table.
22958
22959 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22960
22961 * src/main.c (main): Initialize the macro table.
22962
22963 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22964
22965 * src/lex.c (percent_table): Add tok_define.
22966 * src/lex.h: Add tok_define.
22967
22968 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22969
22970 * src/macrotab.c: New file.
22971 * src/macrotab.h: New file.
22972 * src/Makefile.am: Update.
22973
22974 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22975
22976 * lib/hash.c: New file.
22977 * lib/hash.h: New file.
22978 * lib/Makefile.am: Update.
22979
22980 2001-08-15 Akim Demaille <akim@epita.fr>
22981
22982 Version 1.28c.
22983
22984 2001-08-15 Marc Autret <autret_m@epita.fr>
22985
22986 * src/reader.c (readgram): Indent output macro YYSTYPE.
22987 (packsymbols): Likewise.
22988 (output_token_defines): Likewise.
22989 * src/files.c: Standardize.
22990 (compute_header_macro): New.
22991 (defines_obstack_save): New. Use compute_header_macro.
22992 (output_files): Update. Use defines_obstack_save.
22993
22994 2001-08-15 Akim Demaille <akim@epita.fr>
22995
22996 * doc/bison.texinfo (Table of Symbols): Document
22997 YYSTACK_USE_ALLOCA.
22998
22999 2001-08-15 Akim Demaille <akim@epita.fr>
23000
23001 * missing: Update from CVS Automake.
23002 * config/config.guess, config/config.sub, config/texinfo.tex:
23003 Update from gnu.org.
23004
23005 2001-08-15 Akim Demaille <akim@epita.fr>
23006
23007 * Makefile.maint: Sync with CVS Autoconf.
23008
23009 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
23010
23011 * doc/bison.texinfo: Include GNU Free Documentation License from
23012 `fdl.texi'.
23013 * doc/fdl.texi: Add to package.
23014
23015 2001-08-14 Marc Autret <autret_m@epita.fr>
23016
23017 Turn on %{source,header}_extension features.
23018
23019 * src/lex.c (percent_table): Un-CPP out header_extension and
23020 source_extension.
23021 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
23022 (compute_exts_from_src): Remove conditions. It restores priorities
23023 between options.
23024
23025 2001-08-14 Marc Autret <autret_m@epita.fr>
23026
23027 * src/files.c (compute_base_names): Add extensions computing when
23028 `--file-prefix' used.
23029 Standardize function calls.
23030
23031 2001-08-13 Marc Autret <autret_m@epita.fr>
23032
23033 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
23034 defining it (defined but null disables alloca).
23035
23036 2001-08-13 Marc Autret <autret_m@epita.fr>
23037
23038 * src/bison.simple (_yy_memcpy): CPP reformat.
23039
23040 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
23041
23042 * tests/atconfig.in (CPPFLAGS): Fix.
23043
23044 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
23045
23046 * doc/bison.texinfo: Include GNU General Public License from
23047 `gpl.texi'.
23048 * doc/gpl.texi: Add to package.
23049
23050 2001-08-10 Marc Autret <autret_m@epita.fr>
23051
23052 * src/print_graph.h: Fix.
23053 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
23054
23055 2001-08-10 Akim Demaille <akim@epita.fr>
23056
23057 * src/system.h: Provide default declarations for stpcpy, strndup,
23058 and strnlen.
23059
23060 2001-08-10 Robert Anisko <anisko_r@epita.fr>
23061
23062 * doc/bison.texinfo (Locations): Update @$ stuff.
23063
23064 2001-08-09 Robert Anisko <anisko_r@epita.fr>
23065
23066 * src/bison.simple (YYLLOC_DEFAULT): Update.
23067 (yyparse): Adjust.
23068
23069 2001-08-08 Marc Autret <autret_m@epita.fr>
23070
23071 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
23072 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
23073 Reported by Fabrice Bauzac.
23074
23075 2001-08-08 Marc Autret <autret_m@epita.fr>
23076
23077 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
23078 * src/vcg.c (output_node): Fix.
23079 * src/vcg.h: Cleanup.
23080 * src/print_graph.c: Add comments.
23081 (node_output_size): New global variable. Simplify the formatting of
23082 the VCG graph output.
23083 (print_actions): Unused code is now used. It notifies the final state
23084 and no action states in the VCG graph. It also give the reduce actions.
23085 The `shift and goto' edges are red and the `go to state' edges are
23086 blue.
23087 Get the current node name and node_obstack by argument.
23088 (node_obstack): New variable.
23089 (print_state): Manage node_obstack.
23090 (print_core): Use node_obstack given by argument.
23091 A node is not only computed here but in print_actions also.
23092 (print_graph): CPP out useless code instead of commenting it.
23093
23094 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
23095
23096 * tests/atconfig.in (CPPFLAGS): Fix.
23097
23098 2001-08-07 Akim Demaille <akim@epita.fr>
23099
23100 * src/print_graph.c (quote): New.
23101 (print_core): Use it.
23102
23103 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
23104
23105 * src/vcg.c (complain.h): Include it.
23106 Unepitaize `return' invocations.
23107 [NDEBUG] (main): Remove.
23108 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
23109 * src/files.c (open_files): Initialize graph_obstack.
23110 * src/print_graph.c (print_actions): CPP out useless code.
23111 (print_core): Don't output the last `\n' in labels.
23112 Use `quote'.
23113 * src/files.c (output_files): Output the VCG file.
23114 * src/main.c (main): Invoke print_graph ();
23115
23116 2001-08-06 Marc Autret <autret_m@epita.fr>
23117
23118 Automaton VCG graph output.
23119 Using option ``-g'' or long option ``--graph'', you can generate
23120 a gram_filename.vcg file containing a VCG description of the LALR (1)
23121 automaton of your grammar.
23122
23123 * src/main.c: Call to print_graph() function.
23124 * src/getargs.h: Update.
23125 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
23126 (graph_flag): New flag.
23127 (longopts): Update.
23128 (getargs): Add case `g'.
23129 * src/files.c (graph_obstack): New obstack struct.
23130 (open_files): Initialize new obstack.
23131 (output_files): Saves graph_obstack if required.
23132 * src/files.h (graph_obstack): New extern declaration.
23133 * src/Makefile.am: Add new source files.
23134
23135 2001-08-06 Marc Autret <autret_m@epita.fr>
23136
23137 * src/print_graph.c, src/print_graph.h (graph): New.
23138 * src/vcg.h: New file.
23139 * src/vcg.c: New file, VCG graph handling.
23140
23141 2001-08-06 Marc Autret <autret_m@epita.fr>
23142
23143 Add of %source_extension and %header_extension which specify
23144 the source or/and the header output file extension.
23145
23146 * src/files.c (compute_base_names): Remove initialisation of
23147 src_extension and header_extension.
23148 (compute_exts_from_gf): Update.
23149 (compute_exts_from_src): Update.
23150 (output_files): Update.
23151 * src/reader.c (parse_header_extension_decl): New.
23152 (parse_source_extension_decl): New.
23153 (read_declarations): New case statements for the new tokens.
23154 * src/lex.c (percent_table): Add entries for %source_extension
23155 and %header_extension.
23156 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
23157
23158 2001-08-06 Marc Autret <autret_m@epita.fr>
23159
23160 * configure.in: Bump to 1.28c.
23161 * doc/bison.texinfo: Texinfo thingies.
23162
23163 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
23164
23165 * tests/atconfig.in (CPPFLAGS): Add.
23166 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
23167
23168 2001-08-03 Akim Demaille <akim@epita.fr>
23169
23170 Version 1.28b.
23171
23172 2001-08-03 Akim Demaille <akim@epita.fr>
23173
23174 * tests/Makefile.am (check-local): Ship testsuite.
23175 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
23176 Include `string.h'.
23177
23178 2001-08-03 Akim Demaille <akim@epita.fr>
23179
23180 * configure.in: Try using -Wformat when compiling.
23181
23182 2001-08-03 Akim Demaille <akim@epita.fr>
23183
23184 * configure.in: Bump to 1.28b.
23185
23186 2001-08-03 Akim Demaille <akim@epita.fr>
23187
23188 * src/complain.c: Adjust strerror_r portability issues.
23189
23190 2001-08-03 Akim Demaille <akim@epita.fr>
23191
23192 Version 1.28a.
23193
23194 2001-08-03 Akim Demaille <akim@epita.fr>
23195
23196 * src/getargs.c, src/getarg.h (skeleton)): Constify.
23197 * src/lex.c (literalchar): Avoid name clashes on `buf'.
23198 * src/getargs.c: Include complain.h.
23199 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
23200 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
23201
23202 2001-08-03 Akim Demaille <akim@epita.fr>
23203
23204 * src/reader.c (readgram): Display hidden chars in error messages.
23205
23206 2001-08-03 Akim Demaille <akim@epita.fr>
23207
23208 Update to gettext 0.10.39.
23209
23210 2001-08-03 Akim Demaille <akim@epita.fr>
23211
23212 * lib/strspn.c: New.
23213
23214 2001-08-01 Marc Autret <autret_m@epita.fr>
23215
23216 * doc/bison.texinfo: Update.
23217 * doc/bison.1 (mandoc): Update.
23218 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
23219 * src/files.c: Support output files extensions computing.
23220 (src_extension): New static variable.
23221 (header_extension): New static variable.
23222 (tr): New function.
23223 (get_extension_index): New function, gets the index of an extension
23224 filename in a string.
23225 (compute_exts_from_gf): New function, computes extensions from the
23226 grammar file extension.
23227 (compute_exts_from_src): New functions, computes extensions from the
23228 C source file extension, file given by ``-o'' option.
23229 (compute_base_names): Update.
23230 (output_files): Update.
23231
23232 2001-08-01 Robert Anisko <anisko_r@epita.fr>
23233
23234 * doc/bison.texi: Document @$.
23235 (Locations): New section.
23236
23237 2001-07-18 Akim Demaille <akim@epita.fr>
23238
23239 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
23240 * config/prev-version.txt, config/move-if-change: New.
23241 * Makefile.am: Adjust.
23242
23243 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
23244
23245 * src/bison.simple (yyparse): Suppress warning `comparaison
23246 between signed and unsigned'.
23247
23248 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
23249
23250 * src/getargs.h (raw_flag): Remove.
23251 * src/getargs.c: Die on `-r'/`--raw'.
23252 * src/lex.c (parse_percent_token): Die on `%raw'.
23253 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
23254 * tests/calc.at: Suppress test with option `--raw'.
23255
23256 2001-07-14 Akim Demaille <akim@epita.fr>
23257
23258 * config/: New.
23259 * configure.in: Require Autoconf 2.50.
23260 Update to gettext 0.10.38.
23261
23262 2001-03-16 Akim Demaille <akim@epita.fr>
23263
23264 * doc/bison.texinfo: ANSIfy the examples.
23265
23266 2001-03-16 Akim Demaille <akim@epita.fr>
23267
23268 * getargs.c (skeleton): New variable.
23269 (longopts): --skeleton is a new option.
23270 (shortopts, getargs): -S is a new option.
23271 * getargs.h: Declare skeleton.
23272 * output.c (output_parser): Use it.
23273
23274 2001-03-16 Akim Demaille <akim@epita.fr>
23275
23276 * m4/strerror_r.m4: New.
23277 * m4/error.m4: Run AC_FUNC_STRERROR_R.
23278 * lib/error.h, lib/error.c: Update.
23279
23280 2001-03-16 Akim Demaille <akim@epita.fr>
23281
23282 * src/getargs.c (longopts): Clean up.
23283
23284 2001-02-21 Akim Demaille <akim@epita.fr>
23285
23286 * src/reader.c (gensym): `gensym_count' is your own.
23287 Use a static buf to create the symbol name, as token_buffer is no
23288 longer a buffer.
23289
23290 2001-02-08 Akim Demaille <akim@epita.fr>
23291
23292 * src/conflicts.c (conflict_report): Be sure not to append to res
23293 between two calls, which could happen if both first sprintf were
23294 skipped, but not the first cp += strlen.
23295
23296 2001-02-08 Akim Demaille <akim@epita.fr>
23297
23298 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
23299 New, from fileutils 4.0.37.
23300 * configure.in: Require Autoconf 2.49c. I took some time before
23301 making this decision. This is the only way out for portability
23302 issues in Bison, it would mean way too much duplicate effort to
23303 import in Bison features implemented in 2.49c since 2.13.
23304 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
23305
23306 2001-02-02 Akim Demaille <akim@epita.fr>
23307
23308 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
23309 * lib/xalloc.h, lib/xmalloc.c: Update.
23310
23311 2001-01-19 Akim Demaille <akim@epita.fr>
23312
23313 Get rid of the ad hoc handling of token_buffer in the scanner: use
23314 the obstacks.
23315
23316 * src/lex.c (token_obstack): New.
23317 (init_lex): Initialize it. No longer call...
23318 (grow_token_buffer): this. Remove it.
23319 Adjust all the places which used it to use the obstack.
23320
23321 2001-01-19 Akim Demaille <akim@epita.fr>
23322
23323 * src/lex.h: Rename all the tokens:
23324 s/\bENDFILE\b/tok_eof/g;
23325 s/\bIDENTIFIER\b/tok_identifier/g;
23326 etc.
23327 Let them be enums, not #define, to ease debugging.
23328 Adjust all the code.
23329
23330 2001-01-18 Akim Demaille <akim@epita.fr>
23331
23332 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
23333 * src/lex.c (maxtoken, grow_token_buffer): Static.
23334
23335 2001-01-18 Akim Demaille <akim@epita.fr>
23336
23337 Since we now use obstacks, more % directives can be enabled.
23338
23339 * src/lex.c (percent_table): Also accept `%yacc',
23340 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
23341 `%debug'.
23342 Handle the actions for `%semantic_parser' and `%pure_parser' here,
23343 instead of returning a token.
23344 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
23345 * src/reader.c (read_declarations): Adjust.
23346 * src/files.c (open_files): Don't call `compute_base_names', don't
23347 compute `attrsfile' since they depend upon data which might be
23348 *in* the input file now.
23349 (output_files): Do it here.
23350 * src/output.c (output_headers): Document the fact that this patch
23351 introduces a guaranteed SEGV for semantic parsers.
23352 * doc/bison.texinfo: Document them.
23353 * tests/suite.at: Exercise these %options.
23354
23355 2000-12-20 Akim Demaille <akim@epita.fr>
23356
23357 Also handle the output file (--verbose) with obstacks.
23358
23359 * files.c (foutput): Remove.
23360 (output_obstack): New.
23361 Adjust all dependencies.
23362 * src/conflicts.c: Return a string.
23363 * src/system.h (obstack_grow_string): Rename as...
23364 (obstack_sgrow): this. Be ready to work with non literals.
23365 (obstack_fgrow4): New.
23366
23367 2000-12-20 Akim Demaille <akim@epita.fr>
23368
23369 * src/files.c (open_files): Fix the computation of short_base_name
23370 in the case of `-o foo.tab.c'.
23371
23372 2000-12-20 Akim Demaille <akim@epita.fr>
23373
23374 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
23375 (copy_dollar): Now that everything uses obstacks, get rid of the
23376 FILE * parameters.
23377
23378 2000-12-20 Akim Demaille <akim@epita.fr>
23379
23380 * src/files.c (open_files): Actually the `.output' file is based
23381 on the short_base_name, not base_name.
23382 * tests/suite.at (Checking output file names): Adjust.
23383
23384 2000-12-20 Akim Demaille <akim@epita.fr>
23385
23386 * src/bison.s1: Remove, we now use directly...
23387 * src/bison.simple: this.
23388 * src/Makefile.am: Use pkgdata instead of data.
23389
23390 2000-12-20 Akim Demaille <akim@epita.fr>
23391
23392 * src/files.c (guard_obstack): New.
23393 (open_files): Initialize it.
23394 (output_files): Dump it...
23395 * src/files.h: Export it.
23396 * src/reader.c (copy_guard): Use it.
23397
23398 2000-12-19 Akim Demaille <akim@epita.fr>
23399
23400 * src/files.c (outfile, defsfile, actfile): Removed as global
23401 vars.
23402 (open_files): Don't compute them.
23403 (output_files): Adjust.
23404 (base_name, short_base_name): Be global.
23405 Adjust dependencies.
23406
23407 2000-12-19 Akim Demaille <akim@epita.fr>
23408
23409 * src/files.c (strsuffix): New.
23410 (stringappend): Be just like strcat but allocate.
23411 (base_names): Eve out from open_files.
23412 Try to simplify the rather hairy computation of base_name and
23413 short_base_name.
23414 (open_files): Use it.
23415 * tests/suite.at (Checking output file names): New test.
23416
23417 2000-12-19 Akim Demaille <akim@epita.fr>
23418
23419 * src/system.h (obstack_grow_literal_string): Rename as...
23420 (obstack_grow_string): this.
23421 * src/output.c (output_parser): Recognize `%% actions' instead of
23422 `$'.
23423 * src/bison.s1: s/$/%% actions/.
23424 * src/bison.hairy: Likewise.
23425
23426 2000-12-19 Akim Demaille <akim@epita.fr>
23427
23428 * src/output.c (output_parser): Compute the `#line' lines when
23429 there are.
23430 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
23431 Suggested by Hans Aberg.
23432
23433 2000-12-19 Akim Demaille <akim@epita.fr>
23434
23435 Let the handling of the skeleton files be local to the procedures
23436 that use it.
23437
23438 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
23439 longer static.
23440 (fparser, open_extra_files): Remove.
23441 (open_files, output_files): Don't take care of fparser.
23442 * src/files.h: Adjust.
23443 * src/output.c (output_parser): Open and close the file to the
23444 skeleton.
23445 * src/reader.c (read_declarations): When %semantic_parser, open
23446 fguard.
23447
23448 2000-12-19 Akim Demaille <akim@epita.fr>
23449
23450 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
23451 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
23452
23453 2000-12-19 Akim Demaille <akim@epita.fr>
23454
23455 * src/files.c (open_files): Yipee! We no longer need all the code
23456 looking for `/tmp' since we have no tmp file.
23457
23458 2000-12-19 Akim Demaille <akim@epita.fr>
23459
23460 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
23461 New macros.
23462 * src/files.c (open_files): Less dependency on MSDOS etc.
23463
23464 2000-12-14 Akim Demaille <akim@epita.fr>
23465
23466 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
23467 Provide a default definition.
23468 Use it when executing the default @ action.
23469 * src/reader.c (reader_output_yylsp): No longer include
23470 `timestamp' and `text' in the default YYLTYPE.
23471
23472 2000-12-12 Akim Demaille <akim@epita.fr>
23473
23474 * src/reader.c (copy_definition, parse_union_decl, copy_action)
23475 (copy_guard): Quote the file names.
23476 Reported by Laurent Mascherpa.
23477
23478 2000-12-12 Akim Demaille <akim@epita.fr>
23479
23480 * src/output.c (output_headers, output_program, output): Be sure
23481 to escape special characters when outputting filenames.
23482 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
23483 (output_headers): Don't depend on them, Use ACTSTR.
23484
23485 2000-11-17 Akim Demaille <akim@epita.fr>
23486
23487 * lib/obstack.h: Formatting changes.
23488 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
23489 prevents type checking.
23490 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23491 cast the value to (void *): assigning a `foo *' to a `void *'
23492 variable is valid.
23493 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23494 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
23495 append characters.
23496
23497 2000-11-17 Akim Demaille <akim@epita.fr>
23498
23499 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
23500 as...
23501 (suite.m4, regression.m4, calc.m4): these.
23502 * tests/atgeneral.m4: Update from CVS Autoconf.
23503
23504 2000-11-17 Akim Demaille <akim@epita.fr>
23505
23506 * tests/regression.m4 (%union and --defines): New test,
23507 demonstrating a current bug in the obstack implementation.
23508
23509 2000-11-17 Akim Demaille <akim@epita.fr>
23510
23511 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
23512 macros.
23513 Use them to declare the variables which are global or local to
23514 `yyparse'.
23515
23516 2000-11-17 Akim Demaille <akim@epita.fr>
23517
23518 * acconfig.h: Remove, no longer used.
23519
23520 2000-11-07 Akim Demaille <akim@epita.fr>
23521
23522 * src: s/Copyright (C)/Copyright/g.
23523
23524 2000-11-07 Akim Demaille <akim@epita.fr>
23525
23526 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
23527 defining.
23528 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
23529
23530 2000-11-07 Akim Demaille <akim@epita.fr>
23531
23532 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
23533 Merge in a single CPP if/else.
23534
23535 2000-11-07 Akim Demaille <akim@epita.fr>
23536
23537 * src/output.c (output): Remove useless variables.
23538 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
23539 argument `data' for consistency with the prototypes.
23540 Qualify it `const'.
23541 (obstack_copy, obstack_copy0): Rename the second argument as
23542 `address' for consistency. Qualify it `const'.
23543 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
23544 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
23545 `const' their input argument (`data' or `address').
23546 Adjust the corresponding macros to include `const' in casts.
23547
23548 2000-11-03 Akim Demaille <akim@epita.fr>
23549
23550 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
23551 s/PFILE1/BISON_HAIRY/.
23552 Adjust dependencies.
23553
23554 2000-11-03 Akim Demaille <akim@epita.fr>
23555
23556 For some reason, this was not applied.
23557
23558 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23559 `unlink': it's no longer used.
23560
23561 2000-11-03 Akim Demaille <akim@epita.fr>
23562
23563 * src/files.c (skeleton_find): New function, eved out of...
23564 (open_files, open_extra_files): here.
23565
23566 2000-11-03 Akim Demaille <akim@epita.fr>
23567
23568 Don't use `atexit'.
23569
23570 * src/files.c (obstack_save): New function.
23571 (done): Rename as...
23572 (output_files): this.
23573 Use `obstack_save'.
23574 * src/main.c (main): Don't use `atexit' to register `done', since
23575 it no longer has to remove tmp files, just call `output_files'
23576 when there are no errors.
23577
23578 2000-11-02 Akim Demaille <akim@epita.fr>
23579
23580 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23581 `unlink': it's no longer used.
23582 * src/files.h: Formatting changes.
23583
23584 2000-11-02 Akim Demaille <akim@epita.fr>
23585
23586 Remove the last uses of mktemp and unlink/delete.
23587
23588 * src/files.c (fdefines, ftable): Removed.
23589 (defines_ostack, table_obstack): New.
23590 Adjust dependencies of the former into uses of the latter.
23591 * src/output.c (output_short_or_char_table, output_short_table):
23592 Convert to using obstacks.
23593 * src/reader.c (copy_comment2): Accept one FILE * and two
23594 obstacks.
23595 (output_token_defines, reader_output_yylsp): Use obstacks.
23596 * src/system.h (obstack_fgrow3): New.
23597 * po/POTFILES.in: Adjust.
23598
23599 2000-11-01 Akim Demaille <akim@epita.fr>
23600
23601 Change each use of `fattrs' into a use of `attrs_obstack'.
23602
23603 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
23604 * src/files.c (fattrs): Remove.
23605 (attrs_obstack): New.
23606 Adjust all dependencies.
23607 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
23608
23609 2000-11-01 Akim Demaille <akim@epita.fr>
23610
23611 Introduce obstacks.
23612 Change each use of `faction' into a use of `action_obstack'.
23613
23614 * lib/obstack.h, lib/obstack.c: New files.
23615 * src/files.c (faction): Remove.
23616 (action_obstack): New.
23617 Adjust all dependencies.
23618
23619 2000-10-20 Akim Demaille <akim@epita.fr>
23620
23621 * lib/quote.h (PARAMS): New macro. Use it.
23622
23623 2000-10-16 Akim Demaille <akim@epita.fr>
23624
23625 * src/output.c (output_short_or_char_table): New function.
23626 (output_short_table, output_token_translations): Use it.
23627 (goto_actions): Use output_short_table.
23628
23629 2000-10-16 Akim Demaille <akim@epita.fr>
23630
23631 * src/symtab.c (bucket_new): New function.
23632 (getsym): Use it.
23633
23634 * src/output.c (output_short_table): New argument to display the
23635 comment associated with the table.
23636 Adjust dependencies.
23637 (output_gram): Use it.
23638 (output_rule_data): Nicer output layout for YYTNAME.
23639
23640 2000-10-16 Akim Demaille <akim@epita.fr>
23641
23642 * src/lex.c (read_typename): New function.
23643 (lex): Use it.
23644 * src/reader.c (copy_dollar): Likewise.
23645
23646 2000-10-16 Akim Demaille <akim@epita.fr>
23647
23648 * src/reader.c (copy_comment2): Expect the input stream to be on
23649 the `/' which is suspected to open a comment, instead of being
23650 called after `//' or `/*' was read.
23651 (copy_comment, copy_definition, parse_union_decl, copy_action)
23652 (copy_guard): Adjust.
23653
23654 2000-10-16 Akim Demaille <akim@epita.fr>
23655
23656 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
23657 `read_signed_integer'.
23658
23659 2000-10-16 Akim Demaille <akim@epita.fr>
23660
23661 * src/reader.c (copy_dollar): New function.
23662 (copy_guard, copy_action): Use it.
23663
23664 2000-10-16 Akim Demaille <akim@epita.fr>
23665
23666 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
23667 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
23668 New files, from Fileutils 4.0.27.
23669 * src/main.c (printable_version): Remove.
23670 * src/lex.c, src/reader.c: Use `quote'.
23671
23672 2000-10-04 Akim Demaille <akim@epita.fr>
23673
23674 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
23675
23676 2000-10-04 Akim Demaille <akim@epita.fr>
23677
23678 * doc/bison.texinfo: Various typos spotted by Neil Booth.
23679
23680 2000-10-04 Akim Demaille <akim@epita.fr>
23681
23682 When a literal string is used to define two different tokens,
23683 `bison -v' segfaults.
23684 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
23685
23686 * tests/regression.m4: New file.
23687 Include the core of the sample provided by Piotr Gackiewicz.
23688 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
23689 properly.
23690
23691 2000-10-04 Akim Demaille <akim@epita.fr>
23692
23693 * src/reader.c (parse_expect_decl): Keep `count' within the size
23694 of `buffer'.
23695 From Neil Booth.
23696
23697 2000-10-02 Paul Eggert <eggert@twinsun.com>
23698
23699 * bison.s1 (yyparse): Assign the default value
23700 unconditionally, to avoid a GCC warning and make the parser a
23701 tad smaller.
23702
23703 2000-10-02 Akim Demaille <akim@epita.fr>
23704
23705 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
23706 options.
23707
23708 2000-10-02 Akim Demaille <akim@epita.fr>
23709
23710 * src/derives.c, src/print.c, src/reduce.c: To ease the
23711 translation, move some `\n' out of the translated strings.
23712
23713 2000-10-02 Akim Demaille <akim@epita.fr>
23714
23715 The location tracking mechanism is precious for parse error
23716 messages. Nevertheless, it is enabled only when `@n' is used in
23717 the grammar, which is a different issue (you can use it in error
23718 message, but not in the grammar per se). Therefore, there should
23719 be another means to enable it.
23720
23721 * src/getargs.c (getargs): Support `--locations'.
23722 (usage): Report it.
23723 * src/getargs.h (locationsflag): Export it.
23724 * src/lex.c (percent_table): Support `%locations'.
23725 * src/reader.c (yylsp_needed): Remove this variable, now replaced
23726 with `locationsflag'.
23727 * doc/bison.texinfo: Document `--locations' and `%locations'.
23728 Sort the options.
23729 * tests/calc.m4: Test it.
23730
23731 For regularity of the names, replace each
23732 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
23733 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
23734 In addition replace each `flag' with `_flag'.
23735
23736 2000-10-02 Akim Demaille <akim@epita.fr>
23737
23738 Also test parse error messages, including with YYERROR_VERBOSE.
23739
23740 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
23741 associative).
23742 Use it to check the computations.
23743 Use it to check `nonassoc' is honored.
23744 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
23745 `--yyerror-verbose'.
23746 (_AT_CHECK_CALC): Adjust to this option.
23747 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
23748
23749 2000-10-02 Akim Demaille <akim@epita.fr>
23750
23751 Test also `--verbose', `--defines' and `--name-prefix'. Testing
23752 the latter demonstrates a flaw in the handling of non debugging
23753 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
23754 was used in order to simplify:
23755
23756 #if YYDEBUG
23757 if (yydebug)
23758 {
23759 ...
23760 }
23761 #endif
23762
23763 into
23764
23765 if (yydebug)
23766 {
23767 ...
23768 }
23769
23770 unfortunately this leads to a CPP conflict when
23771 `--name-prefix=foo' is used since it produces `#define yydebug
23772 foodebug'.
23773
23774 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
23775 (YYDPRINTF): New macro.
23776 Spread its use.
23777 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
23778 the bison options.
23779 Also test `--verbose', `--defines' and `--name-prefix'.
23780
23781 2000-10-02 Akim Demaille <akim@epita.fr>
23782
23783 Improve the readability of the produced parsers.
23784
23785 * src/bison.s1: Formatting changes.
23786 Improve the comment related to the `$' mark.
23787 (yydefault): Don't fall through to `yyresume': `goto' there.
23788 * src/output.c (output_parser): When the `$' is met, skip the end
23789 of its line.
23790 New variable, `number_of_dollar_signs', to check there's exactly
23791 one `$' in the parser skeleton.
23792
23793 2000-10-02 Akim Demaille <akim@epita.fr>
23794
23795 * lib/xstrdup.c: New file, from the fileutils.
23796 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
23797 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
23798 instead of strlen + xmalloc + strcpy.
23799 * src/symtab.c (copys): Remove, use xstrdup instead.
23800
23801 2000-10-02 Akim Demaille <akim@epita.fr>
23802
23803 * src/gram.h (associativity): New enum type which replaces the
23804 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
23805 `right_assoc', `left_assoc' and `non_assoc'.
23806 Adjust all dependencies.
23807 * src/reader.c: Formatting changes.
23808 (LTYPESTR): Don't define it, use it as a literal in
23809 `reader_output_yylsp'.
23810 * src/symtab.h (symbol_class): New enum type which replaces the
23811 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
23812 `sunknown', `stoken and `snterm'.
23813
23814 2000-10-02 Akim Demaille <akim@epita.fr>
23815
23816 * src/getargs.c (fixed_outfiles): Rename as...
23817 (yaccflag): for consistency and accuracy.
23818 Adjust dependencies.
23819
23820 2000-10-02 Akim Demaille <akim@epita.fr>
23821
23822 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
23823 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
23824 difficult and introduced a lot of core dump. It turns out that
23825 Bison used an implementation of `xmalloc' based on `calloc', and
23826 at various places it does depend upon the initialization to 0. I
23827 have not tried to isolate the pertinent places, and all the former
23828 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
23829 someone should address this issue.
23830
23831 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
23832 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
23833 files.
23834 Adjust dependencies.
23835 * src/warshall.h: New file.
23836 Propagate.
23837
23838 2000-10-02 Akim Demaille <akim@epita.fr>
23839
23840 Various anti-`extern in *.c' changes.
23841
23842 * src/system.h: Include `assert.h'.
23843
23844 2000-10-02 Akim Demaille <akim@epita.fr>
23845
23846 * src/state.h (nstates, final_state, first_state, first_shift)
23847 (first_reduction): Move their exportation from here...
23848 * src/LR0.h: to here.
23849 Adjust dependencies.
23850 * src/getargs.c (statisticsflag): New variable.
23851 Add support for `--statistics'.
23852 Adjust dependencies.
23853
23854 Remove a lot of now useless `extern' statements in most files.
23855
23856 2000-10-02 Akim Demaille <akim@epita.fr>
23857
23858 * src/LR0.h: New file.
23859 Propagate its use.
23860
23861 2000-10-02 Akim Demaille <akim@epita.fr>
23862
23863 * src/print.h: New file.
23864 Propagate its use.
23865 * src/print.c: Formatting and ordering changes.
23866 (verbose, terse): Replace with...
23867 (print_results): this new function.
23868 Adjust dependencies.
23869
23870 2000-10-02 Akim Demaille <akim@epita.fr>
23871
23872 * src/conflicts.c (conflict_report): New function.
23873 (conflict_log, verbose_conflict_log): Replace with...
23874 (print_conflicts): this function.
23875 Adjust dependencies.
23876 * src/conflicts.h: New file.
23877 Propagate its inclusion.
23878
23879 2000-10-02 Akim Demaille <akim@epita.fr>
23880
23881 * src/nullable.h: New file.
23882 Propagate its inclusion.
23883 * src/nullable.c: Formatting changes.
23884
23885 2000-10-02 Akim Demaille <akim@epita.fr>
23886
23887 * src/reduce.h: New file.
23888 Propagate its inclusion.
23889 * src/reduce.c: Topological sort and other formatting changes.
23890 (bool, TRUE, FALSE): Move their definition to...
23891 * src/system.h: here.
23892
23893 2000-10-02 Akim Demaille <akim@epita.fr>
23894
23895 * src/files.c: Formatting changes.
23896 (tryopen, tryclose, openfiles): Rename as...
23897 (xfopen, xfclose, open_files): this.
23898 (stringappend): static.
23899 * src/files.h: Complete the list of exported symbols.
23900 Propagate its use.
23901
23902 2000-10-02 Akim Demaille <akim@epita.fr>
23903
23904 * src/reader.h: New file.
23905 Propagate its use instead of tedious list of `extern' and
23906 prototypes.
23907 * src/reader.c: Formatting changes, topological sort,
23908 s/register//.
23909
23910 2000-10-02 Akim Demaille <akim@epita.fr>
23911
23912 * src/lex.h: Prototype `lex.c' exported functions.
23913 * src/reader.c: Adjust.
23914 * src/lex.c: Formatting changes.
23915 (safegetc): Rename as...
23916 (xgetc): this.
23917
23918 2000-10-02 Akim Demaille <akim@epita.fr>
23919
23920 * src/lalr.h: New file.
23921 Propagate its inclusion instead of prototypes and `extern'.
23922 * src/lalr.c: Formatting changes, topological sorting etc.
23923
23924 2000-10-02 Akim Demaille <akim@epita.fr>
23925
23926 * src/output.c (token_actions): Introduce a temporary array,
23927 YYDEFACT, that makes it possible for this function to use
23928 output_short_table.
23929
23930 2000-10-02 Akim Demaille <akim@epita.fr>
23931
23932 `user_toknums' is output as a `short[]' in `output.c', while it is
23933 defined as a `int[]' in `reader.c'. For consistency with the
23934 other output tables, `user_toknums' is now defined as a table of
23935 shorts.
23936
23937 * src/reader.c (user_toknums): Be a short table instead of an int
23938 table.
23939 Adjust dependencies.
23940
23941 Factor the short table outputs.
23942
23943 * src/output.c (output_short_table): New function.
23944 * src/output.c (output_gram, output_stos, output_rule_data)
23945 (output_base, output_table, output_check): Use it.
23946
23947 2000-10-02 Akim Demaille <akim@epita.fr>
23948
23949 * src/output.c (output): Topological sort of the functions, in
23950 order to get rid of the `static' prototypes.
23951 No longer use `register'.
23952 * src/output.h: New file.
23953 Propagate its inclusion in files explicitly prototyping functions
23954 from output.c.
23955
23956 2000-09-21 Akim Demaille <akim@epita.fr>
23957
23958 * src/atgeneral.m4: Update from Autoconf.
23959
23960 2000-09-21 Akim Demaille <akim@epita.fr>
23961
23962 * src/closure.h: New file.
23963 * src/closure.c: Formatting changes, topological sort over the
23964 functions, use of closure.h.
23965 (initialize_closure, finalize_closure): Rename as...
23966 (new_closure, free_closure): these. Adjust dependencies.
23967 * src/LR0.c: Formatting changes, topological sort, use of
23968 cloture.h.
23969 (initialize_states): Rename as...
23970 (new_states): this.
23971 * src/Makefile.am (noinst_HEADERS): Adjust.
23972
23973 2000-09-20 Akim Demaille <akim@epita.fr>
23974
23975 * src/acconfig.h: Don't protect config.h against multiple
23976 inclusion.
23977 Don't define PARAMS.
23978 * src/system.h: Define PARAMS.
23979 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
23980 purpose of config.h. system.h must not try to fix wrong
23981 definitions in config.h.
23982
23983 2000-09-20 Akim Demaille <akim@epita.fr>
23984
23985 * src/derives.h: New file.
23986 * src/main.c, src/derives.h: Use it.
23987 Formatting changes.
23988 * src/Makefile.am (noinst_HEADERS): Adjust.
23989
23990 2000-09-20 Akim Demaille <akim@epita.fr>
23991
23992 * tests/atgeneral.m4: Update from Autoconf.
23993 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
23994 (AT_CHECK_CALC): New macros.
23995 Use these macros to test bison with options `', `--raw',
23996 `--debug', `--yacc', `--yacc --debug'.
23997
23998 2000-09-19 Akim Demaille <akim@epita.fr>
23999
24000 * src/output.c: Formatting changes.
24001 * src/machine.h: Remove, leaving its contents in...
24002 * src/system.h: here.
24003 Include stdio.h.
24004 Adjust all dependencies on stdio.h and machine.h.
24005 * src/getargs.h: New file.
24006 Let all `extern' declarations about getargs.c be replaced with
24007 inclusion of `getargs.h'.
24008 * src/Makefile.am (noinst_HEADERS): Adjust.
24009
24010 * tests/calc.m4 (yyin): Be initialized in main, not on the global
24011 scope.
24012 (yyerror): Returns void, not int.
24013 * doc/bison.texinfo: Formatting changes.
24014
24015 2000-09-19 Akim Demaille <akim@epita.fr>
24016
24017 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
24018 portable.
24019
24020 2000-09-18 Akim Demaille <akim@epita.fr>
24021
24022 * configure.in: Append WARNING_CFLAGS to CFLAGS.
24023 * src/Makefile.am (INCLUDES): Don't.
24024 Be ready to fetch headers in lib/.
24025
24026 2000-09-18 Akim Demaille <akim@epita.fr>
24027
24028 * doc/bison.texinfo: Update the copyright.
24029 ANSIfy and GNUify the examples.
24030 Remove the old menu.
24031
24032 2000-09-18 Akim Demaille <akim@epita.fr>
24033
24034 First set of tests: use the `calc' example from the documentation.
24035
24036 * src/bison.s1 (yyparse): Condition the code using `yytname' which
24037 is defined only when YYDEBUG is.
24038 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
24039 * src/files.c (tryopen, tryclose): Formatting changes.
24040 Move to the top and be static.
24041 * src/reader.c (read_signed_integer): Likewise.
24042 * tests/calc.m4: New file.
24043 * Makefile.am, suite.m4: Adjust.
24044 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
24045
24046 2000-09-18 Akim Demaille <akim@epita.fr>
24047
24048 Add support for an Autotest test suite for Bison.
24049
24050 * m4/m4.m4, m4/atconfig.m4: New files.
24051 * m4/Makefile.am (EXTRA_DIST): Adjust.
24052 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
24053 files.
24054 * src/getargs.c: Display a more standard --version message.
24055 * src/reader.c (reader): Formatting changes.
24056 No longer depend upon VERSION_STRING.
24057 * configure.in: No longer use `dnl'.
24058 Set up the test suite and the new directory `tests/.
24059 (VERSION_STRING): Remove.
24060
24061 2000-04-14 Akim Demaille <akim@epita.fr>
24062
24063 * src/reader.c (copy_comment2): New function, same as former
24064 `copy_comment', but outputs into two FILE *.
24065 (copy_comment): Use it.
24066 (parse_union_decl): Use it.
24067 (get_type, parse_start_decl): Use the same `invalid' message.
24068 (parse_start_decl, parse_union_decl): Use the same `multiple'
24069 message.
24070 (parse_union_decl, copy_guard, copy_action): Use the same
24071 `unmatched' message.
24072 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
24073
24074 2000-03-31 Akim Demaille <akim@epita.fr>
24075
24076 * src/files.c (tryopen, tryclose): Move to the top.
24077 Be static.
24078
24079 2000-03-31 Akim Demaille <akim@epita.fr>
24080
24081 * src/main.c (main): Don't call `done', exit does it.
24082
24083 2000-03-31 Akim Demaille <akim@epita.fr>
24084
24085 * allocate.c: s/return (foo)/return foo/.
24086 * lalr.c: Likewise.
24087 * LR0.c: Likewise.
24088 * output.c: Likewise.
24089 * reader.c: Likewise.
24090 * symtab.c: Likewise.
24091 * vmsgetargs.c: Likewise.
24092
24093 2000-03-31 Akim Demaille <akim@epita.fr>
24094
24095 Clean up the error reporting functions.
24096
24097 * src/report.c: New file.
24098 * src/report.h: Likewise.
24099 * src/Makefile.am: Adjust.
24100 * m4/error.m4: New file.
24101 * m4/Makefile.am: Adjust.
24102 * configure.in (jm_PREREQ_ERROR): Call it.
24103 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
24104 Remove.
24105 (fatal, fatals): Remove. All callers use complain.c::fatal.
24106 (warn, warni, warns, warnss, warnss): Remove. All callers use
24107 complain.c::complain.
24108 (toomany): Remove, use fatal instead.
24109 * src/files.c (done): No argument, use complain_message_count.
24110 * src/main.c (main): Register `done' to `atexit'.
24111
24112 * src/getargs.c (usage): More `fputs', less `fprintf'.
24113
24114 2000-03-28 Akim Demaille <akim@epita.fr>
24115
24116 * lib/: New directory.
24117 * Makefile.am (SUBDIRS): Adjust.
24118 * configure.in: Adjust.
24119 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
24120 useless.
24121 * src/alloca.c: Moved to lib/.
24122 * src/getopt.c: Likewise.
24123 * src/getopt1.c: Likewise.
24124 * src/getopt.h: Likewise.
24125 * src/ansi2knr.c: Likewise.
24126 * src/ansi2knr.1: Likewise.
24127 * src/Makefile.am: Adjust.
24128 * lib/Makefile.am: New file.
24129
24130 2000-03-28 Akim Demaille <akim@epita.fr>
24131
24132 * src/getargs.c (usage): Refresh the help message.
24133
24134 2000-03-17 Akim Demaille <akim@epita.fr>
24135
24136 * src/getopt1.c: Updated from textutils 2.0e
24137 * src/getopt.c: Likewise.
24138 * src/getopt.h: Likewise.
24139
24140 2000-03-17 Akim Demaille <akim@epita.fr>
24141
24142 * src/Makefile.am (bison.simple): Fix the awk program: quote only
24143 the file name, not the whole `#line LINE FILE'.
24144
24145 2000-03-17 Akim Demaille <akim@epita.fr>
24146
24147 On syntax errors, report the token on which we choked.
24148
24149 * src/bison.s1 (yyparse): In the label yyerrlab, when
24150 YYERROR_VERBOSE, add yychar in msg.
24151
24152 2000-03-17 Akim Demaille <akim@epita.fr>
24153
24154 * src/reader.c (copy_at): New function.
24155 (copy_guard): Use it.
24156 (copy_action): Use it.
24157
24158 2000-03-17 Akim Demaille <akim@epita.fr>
24159
24160 Be kind to translators, save some useless translations.
24161
24162 * src/main.c (banner): New function.
24163 (fatal_banner): Use it.
24164 (warn_banner): Use it.
24165
24166 2000-03-17 Akim Demaille <akim@epita.fr>
24167
24168 * src/reader.c (copy_definition): Use copy_string and
24169 copy_comment. Removed now unused `match', `ended',
24170 `cplus_comment'.
24171 (copy_comment, copy_string): Moved, to be visible from
24172 copy_definition.
24173
24174 2000-03-17 Akim Demaille <akim@epita.fr>
24175
24176 * src/reader.c (copy_string): Declare `static inline'. No
24177 problems with inline, since it is checked by configure.
24178 (copy_comment): Likewise.
24179
24180 2000-03-17 Akim Demaille <akim@epita.fr>
24181
24182 * src/reader.c (packsymbols): Formatting changes.
24183
24184 2000-03-17 Akim Demaille <akim@epita.fr>
24185
24186 * src/reader.c (copy_comment): New function, factored out from:
24187 (copy_action): Use it. Removed now unused `match', `ended',
24188 `cplus_comment'.
24189 (copy_guard): Likewise.
24190
24191 2000-03-17 Akim Demaille <akim@epita.fr>
24192
24193 * src/reader.c (copy_string): New function, factored out from:
24194 (copy_action): Use it.
24195 (copy_guard): Likewise.
24196
24197 2000-03-17 Akim Demaille <akim@epita.fr>
24198
24199 Change the handling of @s so that they behave exactly like $s.
24200 There is now a pseudo variable @$ (readble and writable), location
24201 of the lhs of the rule (by default ranging from the location of
24202 the first symbol of the rhs, to the location of the last symbol,
24203 or, if the rhs is empty, YYLLOC).
24204
24205 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
24206 yyval.
24207 (yyparse): When providing a default semantic action, provide a
24208 default location action.
24209 (after the $): No longer change `*YYLSP', just stack YYLOC the
24210 same way you stack YYVAL.
24211 * src/reader.c (read_declarations): Use warns.
24212 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
24213 (copy_action, case '@'): Likewise.
24214 Use a standard error message, to save useless work from
24215 translators.
24216
24217 2000-03-17 Akim Demaille <akim@epita.fr>
24218
24219 * src/bison.s1: Formatting and cosmetics changes.
24220 * src/reader.c: Likewise.
24221 Update the Copyright notice.
24222
24223 2000-03-17 Akim Demaille <akim@epita.fr>
24224
24225 * src/bison.s1 (#line): All set to `#line' only, since the
24226 Makefile now handles them.
24227
24228 2000-03-16 Akim Demaille <akim@epita.fr>
24229
24230 * src/output.c (output_rule_data): Output the documentation of
24231 some of the tables.
24232 (Copyright notice): Update.
24233 Formatting changes.
24234
24235 2000-03-16 Akim Demaille <akim@epita.fr>
24236
24237 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
24238 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
24239 One `#if YYDEBUG' remains, since it uses variables which are
24240 defined only if `YYDEBUG != 0'.
24241
24242 2000-03-16 Akim Demaille <akim@epita.fr>
24243
24244 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
24245 and related variables so that the similarities are highlighted.
24246
24247 2000-03-16 Akim Demaille <akim@epita.fr>
24248
24249 * src/bison.s1: Properly indent CPP directives.
24250
24251 2000-03-16 Akim Demaille <akim@epita.fr>
24252
24253 * src/bison.s1: Properly indent the `alloca' CPP section.
24254
24255 2000-03-16 Akim Demaille <akim@epita.fr>
24256
24257 Do not hard code values of directories in `configure.in'.
24258 Update the `configure' tool chain.
24259
24260 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
24261 src/makefile.am.
24262 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
24263 (AC_OUTPUT): Add m4/Makefile.
24264 Bump to bison 1.28a, 1.29 has never been released.
24265 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
24266 handled via src/Makefile.am.
24267 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
24268 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
24269 autoheader.
24270 * Makefile.am (SUBDIRS): Add m4.
24271 (ACLOCAL_AM_FLAGS): New variable.
24272 (AUTOMAKE_OPTIONS): Add check-news.
24273 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
24274 the proper line number and file name.
24275 (DEFS): Propagate the location of bison library files and of the
24276 locale files.
24277 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
24278 builddir.
24279 * acinclude.m4: Remove, replaced by the directory m4.
24280 * m4/Makefile.am (EXTRA_DIST): New variable.
24281 * m4/gettext.m4: New file, from the fileutils.
24282 * m4/lcmessage.m4: Likewise
24283 * m4/progtest.m4: Likewise.
24284 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
24285
24286 2000-03-10 Akim Demaille <akim@epita.fr>
24287
24288 * src/closure.c:
24289 Formatting changes of various comments.
24290 Respect the GNU coding standards at various places.
24291 Don't use `_()' when no translation is needed.
24292
24293 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24294
24295 * src/files.c:
24296 OS/2 honors TMPDIR environment variable.
24297
24298 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24299
24300 * doc/bison.texinfo: Tweaked spelling and grammar.
24301 Updated ISBN.
24302 Removed reference to price of printed copy.
24303 Mention BISON_SIMPLE and BISON_HAIRY.
24304
24305 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24306
24307 * configure.in, NEWS:
24308 Bison 1.29 released.
24309
24310 1999-10-27 Jesse Thilo <jthilo@gnu.org>
24311
24312 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
24313 Added reference card.
24314
24315 1999-07-26 Jesse Thilo <jthilo@gnu.org>
24316
24317 * po/ru.po: Added Russian translation.
24318
24319 1999-07-26 Jesse Thilo <jthilo@gnu.org>
24320
24321 * configure.in: Added Russian translation.
24322
24323 1999-07-06 Jesse Thilo <jthilo@gnu.org>
24324
24325 * configure.in, NEWS, README:
24326 Released version 1.28.
24327
24328 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24329
24330 * src/system.h:
24331 Squashed redefinition warning on some systems.
24332
24333 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
24334 Have configure build version string instead of relying on ANSI string
24335 concatentation.
24336
24337 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24338
24339 * po/POTFILES.in: Got rid of version.c.
24340
24341 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24342
24343 * acconfig.h, configure.in:
24344 Have configure build version string instead of relying on ANSI string
24345 concatentation.
24346
24347 1999-06-08 Jesse Thilo <jthilo@gnu.org>
24348
24349 * doc/bison.1:
24350 Dropped mention of `+' for long-named options.
24351
24352 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24353
24354 * src/files.c: Added <unistd.h> for unlink().
24355
24356 * src/Makefile.am, src/system.h:
24357 I18n fixes.
24358
24359 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24360
24361 * README: Added a FAQ list.
24362
24363 * configure.in, acconfig.h:
24364 I18n fixes.
24365
24366 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24367
24368 * doc/FAQ, doc/Makefile.am:
24369 Added a FAQ list.
24370
24371 1999-05-19 Jesse Thilo <jthilo@gnu.org>
24372
24373 * src/alloc.h, src/symtab.h, src/version.c:
24374 Protected inclusion of "config.h" with HAVE_CONFIG_H.
24375
24376 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24377
24378 * src/.cvsignore, src/Makefile.am:
24379 Reorganized: sources in `src', documentation in `doc'.
24380
24381 * src/lex.c (literalchar):
24382 fixed the code for escaping double quotes (thanks
24383 Jonathan Czisny.)
24384
24385 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24386
24387 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
24388 Adjusted paths to reflect directory reorganization.
24389
24390 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24391
24392 * doc/.cvsignore, doc/Makefile.am:
24393 Reorganized: sources in `src', documentation in `doc'.
24394
24395 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24396
24397 * configure.in:
24398 Updated AC_INIT file to reflect directory reorganization.
24399
24400 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
24401 Reorganized: sources in `src', documentation in `doc'.
24402
24403 1999-04-13 Jesse Thilo <jthilo@gnu.org>
24404
24405 * src/allocate.c:
24406 Don't declare calloc() and realloc() if not necessary.
24407
24408 1999-04-13 Jesse Thilo <jthilo@gnu.org>
24409
24410 * configure.in, acconfig.h, acinclude.m4:
24411 Don't declare calloc() and realloc() if not necessary.
24412
24413 1999-03-23 Jesse Thilo <jthilo@gnu.org>
24414
24415 * po/.cvsignore: Added i18n support.
24416
24417 1999-03-23 Jesse Thilo <jthilo@gnu.org>
24418
24419 * acconfig.h, configure.in, Makefile.am:
24420 Added i18n support.
24421
24422 1999-03-22 Jesse Thilo <jthilo@gnu.org>
24423
24424 * src/bison.s1: Fixed #line numbers.
24425
24426 1999-03-15 Jesse Thilo <jthilo@gnu.org>
24427
24428 * po/es.po, po/fr.po, po/nl.po, po/de.po:
24429 Added PO files from Translation Project.
24430
24431 1999-03-03 Jesse Thilo <jthilo@gnu.org>
24432
24433 * Makefile.am:
24434 Added support for non-ANSI compilers (ansi2knr).
24435
24436 1999-02-16 Jesse Thilo <jthilo@gnu.org>
24437
24438 * configure.in: Bumped version number to 1.27.
24439
24440 * Makefile.am:
24441 Added `bison.simple' to list of files removed by `make distclean'.
24442
24443 1999-02-12 Jesse Thilo <jthilo@gnu.org>
24444
24445 * src/files.c, src/files.h:
24446 Defined locations of parser files in config.h instead of Makefile.
24447
24448 1999-02-12 Jesse Thilo <jthilo@gnu.org>
24449
24450 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
24451 Defined locations of parser files in config.h instead of Makefile.
24452
24453 1999-02-09 Jesse Thilo <jthilo@gnu.org>
24454
24455 * Makefile.am:
24456 Removed inappropriate use of $< macro.
24457
24458 1999-02-05 Jesse Thilo <jthilo@gnu.org>
24459
24460 * po/Makefile.in.in, po/POTFILES.in:
24461 Add `po' directory skeleton.
24462
24463 1999-01-27 Jesse Thilo <jthilo@gnu.org>
24464
24465 * README: Document help-bison list.
24466
24467 * configure.in: Add check for mkstemp().
24468
24469 1999-01-20 Jesse Thilo <jthilo@gnu.org>
24470
24471 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
24472 Hush a few compiler warnings.
24473
24474 * src/files.c:
24475 Add tryclose(), which verifies that fclose was successful.
24476 Hush a couple of compiler warnings.
24477
24478 1999-01-20 Jesse Thilo <jthilo@gnu.org>
24479
24480 * Makefile.am, OChangeLog:
24481 ChangeLog is now automatically generated. Include the old version as
24482 OChangeLog.
24483
24484 1999-01-14 Jesse Thilo <jthilo@gnu.org>
24485
24486 * 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:
24487 Update FSF address.
24488
24489 1999-01-14 Jesse Thilo <jthilo@gnu.org>
24490
24491 * doc/bison.texinfo: Fix formatting glitch.
24492
24493 * doc/bison.texinfo: Update FSF address.
24494
24495 1999-01-14 Jesse Thilo <jthilo@gnu.org>
24496
24497 * acconfig.h: Update FSF address.
24498
24499 1999-01-08 Jesse Thilo <jthilo@gnu.org>
24500
24501 * src/system.h:
24502 Don't define PACKAGE here, since config.h defines it.
24503
24504 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24505
24506 * src/reader.c: Update copyright date.
24507
24508 * src/main.c:
24509 Ditch sprintf to statically-sized buffers in fatal/warn functions in
24510 favor of output directly to stderr (avoids buffer overruns).
24511
24512 * src/reader.c: Some checks for premature EOF.
24513
24514 * 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:
24515 Use prototypes if the compiler understands them.
24516
24517 * src/files.c: Honor TMPDIR on Unix hosts.
24518 Use prototypes if the compiler understands them.
24519
24520 * src/reader.c:
24521 Fix a couple of buffer overrun bugs.
24522 Use prototypes if the compiler understands them.
24523
24524 * src/system.h: Include unistd.h and ctype.h.
24525 Use #ifdef instead of #if for NLS symbols.
24526
24527 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24528
24529 * doc/bison.texinfo:
24530 Delete comment "consider using @set for edition number, etc..." since
24531 we now are doing so.
24532
24533 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24534
24535 * configure.in:
24536 Use prototypes if the compiler understands them.
24537
24538 * NEWS: Document 1.26 highlights.
24539
24540 * Makefile.am: Require Automake 1.3 or later.
24541
24542 * acconfig.h:
24543 Use prototypes if the compiler understands them.
24544
24545 1998-12-29 Jesse Thilo <jthilo@gnu.org>
24546
24547 * src/version.c:
24548 Use VERSION symbol from automake for version number.
24549
24550 1998-12-29 Jesse Thilo <jthilo@gnu.org>
24551
24552 * acconfig.h, configure.in, version.cin:
24553 Use VERSION symbol from automake for version number.
24554
24555 1998-11-28 Jesse Thilo <jthilo@gnu.org>
24556
24557 * Makefile.am:
24558 Distribute original version of simple parser (bison.s1), not built
24559 version (bison.simple).
24560
24561 1998-11-28 Jesse Thilo <jthilo@gnu.org>
24562
24563 * doc/bison.texinfo: Add info dir entry.
24564
24565 * doc/bison.texinfo:
24566 Let automake put version number into documentation.
24567
24568 1998-11-26 Jesse Thilo <jthilo@gnu.org>
24569
24570 * src/bison.cld, src/build.com, src/vmshlp.mar:
24571 Add non-RCS files from /gd/gnu/bison.
24572
24573 1998-11-26 Jesse Thilo <jthilo@gnu.org>
24574
24575 * doc/bison.1:
24576 Document the BISON_HAIRY and BISON_SIMPLE variables.
24577
24578 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24579
24580 * src/version.c: Build version.c automatically.
24581
24582 * src/reader.c:
24583 Fix token numbering (used to start at 258, not 257).
24584
24585 * src/system.h: Include config.h.
24586
24587 * src/getargs.c: Update bug report address.
24588
24589 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
24590 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
24591
24592 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24593
24594 * Makefile.am:
24595 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24596
24597 * configure.in, version.cin:
24598 Build version.c automatically.
24599
24600 * AUTHORS: Add AUTHORS file.
24601
24602 * README: Update bug report address.
24603
24604 * bison.simple:
24605 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24606
24607 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
24608 Add automake stuff.
24609
24610 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24611
24612 * doc/bison.texinfo: Clean up some formatting.
24613
24614 1998-05-05 Richard Stallman <rms@gnu.org>
24615
24616 * doc/bison.texinfo:
24617 Explain better why to make a pure parser.
24618
24619 1998-01-05 Richard Stallman <rms@gnu.org>
24620
24621 * src/files.c (openfiles):
24622 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
24623 find a temporary directory, if possible. Do not unlink files while
24624 they are open.
24625
24626 1997-08-25 Richard Stallman <rms@gnu.org>
24627
24628 * src/reader.c (stack_offset;):
24629 Change some warni to warns.
24630
24631 * src/lex.c (literalchar): Use warns, not warni.
24632
24633 1997-06-28 Richard Stallman <rms@gnu.org>
24634
24635 * src/bison.s1: Add a Bison version comment.
24636
24637 * src/main.c (fatal, warn, berror):
24638 Use program_name.
24639
24640 1997-06-28 Richard Stallman <rms@gnu.org>
24641
24642 * Makefile.in (bison_version): New variable.
24643 (dist): Use that variable.
24644 (bison.s1): Substitute the Bison version into bison.simple.
24645
24646 * bison.simple: Add a Bison version comment.
24647
24648 1997-06-18 Richard Stallman <rms@gnu.org>
24649
24650 * src/main.c (fatal, warn, berror):
24651 Make error messages standard.
24652 (toomany): Improve error message text.
24653
24654 * 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:
24655 new.h renamed to alloc.h.
24656
24657 1997-06-18 Richard Stallman <rms@gnu.org>
24658
24659 * Makefile.in: new.h renamed to alloc.h.
24660
24661 1997-05-24 Richard Stallman <rms@gnu.org>
24662
24663 * src/lex.c (literalchar):
24664 Fix the code for escaping \, " and '.
24665
24666 (lex): Avoid trouble when there are many chars
24667 to discard in a char literal with just several chars in it.
24668
24669 1997-05-17 Richard Stallman <rms@gnu.org>
24670
24671 * src/bison.s1:
24672 Use malloc, if using alloca is troublesome.
24673 (YYSTACK_USE_ALLOCA): New flag macro.
24674 Define it for some systems and compilers.
24675 (YYSTACK_ALLOC): New macro.
24676 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24677 If it was malloc'd, free it.
24678
24679 1997-05-17 Richard Stallman <rms@gnu.org>
24680
24681 * bison.simple:
24682 Use malloc, if using alloca is troublesome.
24683 (YYSTACK_USE_ALLOCA): New flag macro.
24684 Define it for some systems and compilers.
24685 (YYSTACK_ALLOC): New macro.
24686 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24687 If it was malloc'd, free it.
24688
24689 1997-04-23 Richard Stallman <rms@gnu.org>
24690
24691 * src/bison.s1:
24692 (alloca) [__hpux]: Always define as __builtin_alloca.
24693
24694 1997-04-23 Richard Stallman <rms@gnu.org>
24695
24696 * bison.simple:
24697 (alloca) [__hpux]: Always define as __builtin_alloca.
24698
24699 1997-04-22 Richard Stallman <rms@gnu.org>
24700
24701 * src/bison.s1:
24702 [__hpux]: Include alloca.h (right for HPUX 10)
24703 instead of declaring alloca (right for HPUX 9).
24704
24705 * src/bison.s1 (__yy_memcpy):
24706 Declare arg `count' as unsigned int.
24707 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24708
24709 1997-04-22 Richard Stallman <rms@gnu.org>
24710
24711 * bison.simple:
24712 [__hpux]: Include alloca.h (right for HPUX 10)
24713 instead of declaring alloca (right for HPUX 9).
24714
24715 * bison.simple (__yy_memcpy):
24716 Declare arg `count' as unsigned int.
24717 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24718
24719 1997-01-03 Richard Stallman <rms@gnu.org>
24720
24721 * src/allocate.c: [__STDC__ or _MSC_VER]:
24722 Declare calloc and realloc to return void *.
24723
24724 1997-01-02 Richard Stallman <rms@gnu.org>
24725
24726 * src/system.h:
24727 [_MSC_VER]: Include stdlib.h and process.h.
24728 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
24729
24730 * src/main.c (main): Return FAILURE as a value.
24731 (printable_version): Declare arg as int, not char.
24732
24733 1997-01-02 Richard Stallman <rms@gnu.org>
24734
24735 * Makefile.in (dist):
24736 Explicitly check for symlinks, and copy them.
24737
24738 1996-12-19 Richard Stallman <rms@gnu.org>
24739
24740 * src/files.c:
24741 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
24742
24743 1996-12-18 Paul Eggert <eggert@gnu.org>
24744
24745 * src/bison.s1 (yyparse):
24746 If __GNUC__ and YYPARSE_PARAM are both defined,
24747 declare yyparse to have a void * argument.
24748
24749 1996-12-18 Paul Eggert <eggert@gnu.org>
24750
24751 * bison.simple (yyparse):
24752 If __GNUC__ and YYPARSE_PARAM are both defined,
24753 declare yyparse to have a void * argument.
24754
24755 1996-12-17 Richard Stallman <rms@gnu.org>
24756
24757 * src/reduce.c (nbits): Add some casts.
24758
24759 1996-08-12 Richard Stallman <rms@gnu.org>
24760
24761 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
24762
24763 1996-08-12 Richard Stallman <rms@gnu.org>
24764
24765 * bison.simple: Test _MSDOS as well as _MSDOS_.
24766
24767 1996-07-31 Richard Stallman <rms@gnu.org>
24768
24769 * src/bison.s1:
24770 [__sun && __i386]: Include alloca.h.
24771
24772 1996-07-31 Richard Stallman <rms@gnu.org>
24773
24774 * bison.simple:
24775 [__sun && __i386]: Include alloca.h.
24776
24777 1996-07-30 Richard Stallman <rms@gnu.org>
24778
24779 * src/bison.s1: Comment change.
24780
24781 * src/bison.s1: Test _MSDOS_, not MSDOS.
24782
24783 1996-07-30 Richard Stallman <rms@gnu.org>
24784
24785 * bison.simple: Comment change.
24786
24787 * bison.simple: Test _MSDOS_, not MSDOS.
24788
24789 1996-06-01 Richard Stallman <rms@gnu.org>
24790
24791 * 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:
24792 Insert `_' macro around many string constants.
24793
24794 * src/main.c:
24795 Insert `_' macro around many string constants.
24796
24797 (main): Call setlocale, bindtextdomain and textdomain.
24798
24799 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
24800 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
24801 [ENABLE_NLS]: Include libintl.h.
24802 [ENABLE_NLS] (gettext): Define.
24803 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
24804 (N_, PACKAGE, LOCALEDIR): New macros.
24805
24806 1996-06-01 Richard Stallman <rms@gnu.org>
24807
24808 * POTFILES.in: New file.
24809
24810 * Makefile.in (allocate.o):
24811 Define target explicitly.
24812
24813 * Makefile.in (CFLAGS): Set to @CFLAGS@.
24814 (LDFLAGS): Set to @LDFLAGS@.
24815 (configure): Run autoconf only if preceding `cd' succeeds.
24816 (bison.s1): Redirect output to temporary file then move the
24817 temporary to the target, rather than redirecting directly to bison.s1.
24818 (clean): Remove config.status and config.log.
24819 (distclean): Don't remove config.status here.
24820
24821 1996-05-12 Richard Stallman <rms@gnu.org>
24822
24823 * src/bison.s1:
24824 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24825
24826 1996-05-12 Richard Stallman <rms@gnu.org>
24827
24828 * bison.simple:
24829 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24830
24831 1996-05-11 Richard Stallman <rms@gnu.org>
24832
24833 * src/bison.s1 (__yy_memcpy):
24834 Really reorder the args, as was supposedly done on Feb 14 1995.
24835 (yyparse): Calls changed accordingly.
24836
24837 1996-05-11 Richard Stallman <rms@gnu.org>
24838
24839 * Makefile.in (dist): Don't use $(srcdir).
24840
24841 * bison.simple (__yy_memcpy):
24842 Really reorder the args, as was supposedly done on Feb 14 1995.
24843 (yyparse): Calls changed accordingly.
24844
24845 1996-01-27 Richard Stallman <rms@gnu.org>
24846
24847 * src/output.c (output_rule_data):
24848 Test YYERROR_VERBOSE in the conditional
24849 around the definition of ttyname.
24850
24851 1995-12-29 Richard Stallman <rms@gnu.org>
24852
24853 * src/bison.s1:
24854 Fix line numbers in #line commands.
24855
24856 1995-12-29 Richard Stallman <rms@gnu.org>
24857
24858 * bison.simple:
24859 Fix line numbers in #line commands.
24860
24861 1995-12-27 Richard Stallman <rms@gnu.org>
24862
24863 * src/bison.s1 (YYPARSE_PARAM_DECL):
24864 In C++, make it always null.
24865 (YYPARSE_PARAM_ARG): New macro.
24866 (yyparse): Use YYPARSE_PARAM_ARG.
24867
24868 1995-12-27 Richard Stallman <rms@gnu.org>
24869
24870 * bison.simple (YYPARSE_PARAM_DECL):
24871 In C++, make it always null.
24872 (YYPARSE_PARAM_ARG): New macro.
24873 (yyparse): Use YYPARSE_PARAM_ARG.
24874
24875 1995-11-29 Richard Stallman <rms@gnu.org>
24876
24877 * doc/bison.texinfo:
24878 Describe literal string tokens, %raw, %no_lines, %token_table.
24879
24880 1995-11-29 Daniel Hagerty <hag@gnu.org>
24881
24882 * doc/bison.texinfo: Fixed update date
24883
24884 1995-10-16 Richard Stallman <rms@gnu.org>
24885
24886 * src/version.c: Version 1.25.
24887
24888 1995-10-16 Richard Stallman <rms@gnu.org>
24889
24890 * NEWS: *** empty log message ***
24891
24892 1995-10-16 Richard Stallman <rms@gnu.org>
24893
24894 * doc/bison.1, doc/bison.rnh:
24895 Add new options.
24896
24897 1995-10-15 Richard Stallman <rms@gnu.org>
24898
24899 * src/vmsgetargs.c, src/getargs.c:
24900 Added -n, -k, and -raw switches.
24901 (noparserflag, toknumflag, rawtoknumflag): New variables.
24902
24903 * src/symtab.h (SALIAS):
24904 New #define for adding aliases to %token.
24905 (struct bucket): Added `alias' field.
24906
24907 * src/reduce.c (reduce_grammar):
24908 Revise error message.
24909 (print_notices): Remove final `.' from error message.
24910
24911 * src/reader.c (reader_output_yylsp):
24912 New function.
24913 (readgram): Use `#if 0' around code that accepted %command
24914 inside grammar rules: The documentation doesn't allow it,
24915 and it will fail since the %command processors scan for the next %.
24916 (parse_token_decl): Extended the %token
24917 declaration to allow a multi-character symbol as an alias.
24918 (parse_thong_decl): New function.
24919 (read_declarations): Added %thong declarations.
24920 (read_declarations): Handle NOOP to deal with allowing
24921 % declarations as another means to specify the flags.
24922 (readgram): Allow %prec prior to semantics embedded in a rule.
24923 (skip_to_char, read_declarations, copy_definition)
24924 (parse_token_decl, parse_start_decl, parse_type_decl)
24925 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
24926 (get_type_name, copy_guard, copy_action, readgram)
24927 (get_type, packsymbols): Revised most error messages.
24928 Changed `fatal' to `warnxxx' to avoid aborting for error.
24929 Revised and use multiple warnxxx functions to avoid using VARARGS1.
24930 (read_declarations): Improve the error message for
24931 an invalid character. Do not abort.
24932 (read_declarations, copy_guard, copy_action): Use
24933 printable_version to avoid unprintable characters in printed output.
24934 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
24935 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
24936 Allow the type of a non-terminal can be given
24937 more than once, as long as all specifications give the same type.
24938
24939 * src/output.c:
24940 (output_headers, output_trailers, output, output_gram)
24941 (output_rule_data): Implement noparserflag variable.
24942 Implement toknumflag variable.
24943 (output): Call reader_output_yylsp to output LTYPESTR.
24944
24945 * src/main.c (main):
24946 If reader sees an error, don't process the grammar.
24947 (fatals): Updated to not use VARARGS1.
24948 (printable_version, int_to_string, warn, warni, warns, warnss)
24949 (warnsss): New error reporting functions. Avoid abort for error.
24950
24951 * src/lex.h:
24952 Added THONG and NOOP for alias processing.
24953 Added SETOPT for the new code that allows setting options with %flags.
24954
24955 * src/lex.c:
24956 Include getopt.h. Add some extern decls.
24957 (safegetc): New function to deal with EOF gracefully.
24958 (literalchar); new function to deal with reading \ escapes.
24959 (lex): Use literalchar.
24960 (lex): Implemented "..." tokens.
24961 (literalchar, lex, parse_percent_token): Made tokenbuffer
24962 always contain the token. This includes growing the token
24963 buffer while reading an integer.
24964 (parse_percent_token): Replaced if-else statement with percent_table.
24965 (parse_percent_token): Added % declarations as another
24966 way to specify the flags -n, -l, and -r. Also added hooks for
24967 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
24968 major changes to files.c.
24969 (lex) Retain in the incoming stream a character following
24970 an incorrect '/'.
24971 (skip_white_space, lex): Revised most error messages
24972 and changed fatal to warn to avoid aborting.
24973 (percent_table): Added %thong declarations.
24974
24975 * src/gram.h: Comment changes.
24976
24977 * src/files.c (openfiles, open_extra_files, done):
24978 Add faction flag
24979 and actfile file. Handle noparserflag. Both for -n switch.
24980
24981 * src/conflicts.c (resolve_sr_conflict):
24982 Remove use of alloca.
24983
24984 1995-06-01 Jim Meyering <meyering@gnu.org>
24985
24986 * doc/bison.texinfo: *** empty log message ***
24987
24988 1995-05-06 Richard Stallman <rms@gnu.org>
24989
24990 * src/bison.s1: Comment change.
24991
24992 1995-05-06 Richard Stallman <rms@gnu.org>
24993
24994 * bison.simple: Comment change.
24995
24996 1995-05-03 Richard Stallman <rms@gnu.org>
24997
24998 * src/version.c: Version now 1.24.
24999
25000 * src/bison.s1: Change distribution terms.
25001
25002 * src/version.c: Version now 1.23.
25003
25004 1995-05-03 Richard Stallman <rms@gnu.org>
25005
25006 * doc/bison.texinfo:
25007 Rewrite "Conditions for Using Bison".
25008 Update version to 1.24.
25009
25010 1995-05-03 Richard Stallman <rms@gnu.org>
25011
25012 * bison.simple: Change distribution terms.
25013
25014 1995-02-23 Richard Stallman <rms@gnu.org>
25015
25016 * src/files.c: Test __VMS_POSIX as well as VMS.
25017
25018 1995-02-14 Jim Meyering <meyering@gnu.org>
25019
25020 * src/bison.s1 (__yy_memcpy):
25021 Renamed from __yy_bcopy to avoid
25022 confusion. Reverse FROM and TO arguments to be consistent with
25023 those of memcpy.
25024
25025 1995-02-14 Jim Meyering <meyering@gnu.org>
25026
25027 * bison.simple (__yy_memcpy):
25028 Renamed from __yy_bcopy to avoid
25029 confusion. Reverse FROM and TO arguments to be consistent with
25030 those of memcpy.
25031
25032 1994-11-10 David J. MacKenzie <djm@gnu.org>
25033
25034 * NEWS: reformat
25035
25036 * NEWS: New file.
25037
25038 * Makefile.in (DISTFILES): Include NEWS.
25039
25040 * Makefile.in (DISTFILES):
25041 Include install-sh, not install.sh.
25042
25043 * configure.in: Update to Autoconf v2 macro names.
25044
25045 1994-10-05 David J. MacKenzie <djm@gnu.org>
25046
25047 * Makefile.in: fix typo
25048
25049 * Makefile.in (prefix, exec_prefix):
25050 Let configure set them.
25051
25052 1994-09-28 David J. MacKenzie <djm@gnu.org>
25053
25054 * Makefile.in: Set datadir to $(prefix)/share.
25055
25056 1994-09-15 Richard Stallman <rms@gnu.org>
25057
25058 * src/bison.s1:
25059 Update copyright notice and GPL version.
25060
25061 1994-09-15 Richard Stallman <rms@gnu.org>
25062
25063 * bison.simple:
25064 Update copyright notice and GPL version.
25065
25066 1994-07-12 Richard Stallman <rms@gnu.org>
25067
25068 * src/reduce.c, src/reader.c:
25069 entered into RCS
25070
25071 1994-05-05 David J. MacKenzie <djm@gnu.org>
25072
25073 * Makefile.in: entered into RCS
25074
25075 1994-03-26 Richard Stallman <rms@gnu.org>
25076
25077 * src/bison.s1: entered into RCS
25078
25079 1994-03-26 Richard Stallman <rms@gnu.org>
25080
25081 * bison.simple: entered into RCS
25082
25083 1994-03-25 Richard Stallman <rms@gnu.org>
25084
25085 * src/main.c: entered into RCS
25086
25087 1994-03-24 Richard Stallman <rms@gnu.org>
25088
25089 * src/conflicts.c: entered into RCS
25090
25091 1994-01-02 Richard Stallman <rms@gnu.org>
25092
25093 * Makefile.in: *** empty log message ***
25094
25095 1993-11-21 Richard Stallman <rms@gnu.org>
25096
25097 * src/bison.s1: *** empty log message ***
25098
25099 1993-11-21 Richard Stallman <rms@gnu.org>
25100
25101 * doc/bison.texinfo: entered into RCS
25102
25103 * doc/bison.texinfo: *** empty log message ***
25104
25105 1993-11-21 Richard Stallman <rms@gnu.org>
25106
25107 * bison.simple: *** empty log message ***
25108
25109 1993-10-25 David J. MacKenzie <djm@gnu.org>
25110
25111 * doc/bison.texinfo: *** empty log message ***
25112
25113 1993-10-19 Richard Stallman <rms@gnu.org>
25114
25115 * src/bison.s1: *** empty log message ***
25116
25117 1993-10-19 Richard Stallman <rms@gnu.org>
25118
25119 * bison.simple: *** empty log message ***
25120
25121 1993-10-14 Richard Stallman <rms@gnu.org>
25122
25123 * src/bison.s1: *** empty log message ***
25124
25125 1993-10-14 Richard Stallman <rms@gnu.org>
25126
25127 * bison.simple: *** empty log message ***
25128
25129 1993-09-14 David J. MacKenzie <djm@gnu.org>
25130
25131 * doc/bison.texinfo: *** empty log message ***
25132
25133 1993-09-13 Noah Friedman <friedman@gnu.org>
25134
25135 * Makefile.in: *** empty log message ***
25136
25137 1993-09-10 Richard Stallman <rms@gnu.org>
25138
25139 * src/conflicts.c: *** empty log message ***
25140
25141 * src/system.h: entered into RCS
25142
25143 1993-09-10 Richard Stallman <rms@gnu.org>
25144
25145 * doc/bison.1: entered into RCS
25146
25147 1993-09-06 Noah Friedman <friedman@gnu.org>
25148
25149 * src/version.c: entered into RCS
25150
25151 1993-09-06 Noah Friedman <friedman@gnu.org>
25152
25153 * Makefile.in: *** empty log message ***
25154
25155 1993-07-30 David J. MacKenzie <djm@gnu.org>
25156
25157 * Makefile.in: *** empty log message ***
25158
25159 1993-07-24 Richard Stallman <rms@gnu.org>
25160
25161 * src/bison.s1: *** empty log message ***
25162
25163 1993-07-24 Richard Stallman <rms@gnu.org>
25164
25165 * bison.simple: *** empty log message ***
25166
25167 1993-07-08 David J. MacKenzie <djm@gnu.org>
25168
25169 * Makefile.in: *** empty log message ***
25170
25171 1993-07-04 Richard Stallman <rms@gnu.org>
25172
25173 * src/bison.s1: *** empty log message ***
25174
25175 1993-07-04 Richard Stallman <rms@gnu.org>
25176
25177 * bison.simple: *** empty log message ***
25178
25179 1993-06-26 David J. MacKenzie <djm@gnu.org>
25180
25181 * src/getargs.c: entered into RCS
25182
25183 1993-06-26 David J. MacKenzie <djm@gnu.org>
25184
25185 * doc/bison.texinfo: *** empty log message ***
25186
25187 * doc/bison.1: New file.
25188
25189 1993-06-25 Richard Stallman <rms@gnu.org>
25190
25191 * src/getargs.c: New file.
25192
25193 1993-06-16 Richard Stallman <rms@gnu.org>
25194
25195 * src/bison.s1: *** empty log message ***
25196
25197 1993-06-16 Richard Stallman <rms@gnu.org>
25198
25199 * bison.simple: *** empty log message ***
25200
25201 1993-06-03 Richard Stallman <rms@gnu.org>
25202
25203 * src/bison.s1: New file.
25204
25205 1993-06-03 Richard Stallman <rms@gnu.org>
25206
25207 * doc/bison.texinfo: *** empty log message ***
25208
25209 1993-06-03 Richard Stallman <rms@gnu.org>
25210
25211 * bison.simple: New file.
25212
25213 1993-05-19 Richard Stallman <rms@gnu.org>
25214
25215 * doc/bison.texinfo: New file.
25216
25217 1993-05-07 Noah Friedman <friedman@gnu.org>
25218
25219 * Makefile.in: *** empty log message ***
25220
25221 1993-04-28 Noah Friedman <friedman@gnu.org>
25222
25223 * src/reader.c: *** empty log message ***
25224
25225 1993-04-23 Noah Friedman <friedman@gnu.org>
25226
25227 * src/alloc.h: entered into RCS
25228
25229 1993-04-20 David J. MacKenzie <djm@gnu.org>
25230
25231 * src/version.c: *** empty log message ***
25232
25233 * src/files.c, src/allocate.c:
25234 entered into RCS
25235
25236 * src/reader.c: *** empty log message ***
25237
25238 * src/lex.c: entered into RCS
25239
25240 * src/conflicts.c: New file.
25241
25242 * src/symtab.c: entered into RCS
25243
25244 * src/alloc.h: New file.
25245
25246 * src/LR0.c: entered into RCS
25247
25248 1993-04-18 Noah Friedman <friedman@gnu.org>
25249
25250 * src/reader.c: New file.
25251
25252 * src/version.c: *** empty log message ***
25253
25254 1993-04-18 Noah Friedman <friedman@gnu.org>
25255
25256 * Makefile.in: *** empty log message ***
25257
25258 1993-04-17 Noah Friedman <friedman@gnu.org>
25259
25260 * Makefile.in: *** empty log message ***
25261
25262 1993-04-15 Richard Stallman <rms@gnu.org>
25263
25264 * src/main.c, src/files.c:
25265 New file.
25266
25267 1993-04-15 Noah Friedman <friedman@gnu.org>
25268
25269 * configure.in: entered into RCS
25270
25271 * configure.in: *** empty log message ***
25272
25273 * configure.in: New file.
25274
25275 1993-04-14 Richard Stallman <rms@gnu.org>
25276
25277 * Makefile.in: New file.
25278
25279 1993-04-13 Richard Stallman <rms@gnu.org>
25280
25281 * src/version.c: New file.
25282
25283 1993-03-25 Richard Stallman <rms@gnu.org>
25284
25285 * src/output.c: entered into RCS
25286
25287 1992-09-25 Richard Stallman <rms@gnu.org>
25288
25289 * configure.bat: entered into RCS
25290
25291 1992-06-22 Richard Stallman <rms@gnu.org>
25292
25293 * src/vmsgetargs.c: entered into RCS
25294
25295 1992-06-22 Richard Stallman <rms@gnu.org>
25296
25297 * doc/bison.rnh: entered into RCS
25298
25299 1992-04-20 David J. MacKenzie <djm@gnu.org>
25300
25301 * README: entered into RCS
25302
25303 1992-01-22 Richard Stallman <rms@gnu.org>
25304
25305 * src/machine.h: entered into RCS
25306
25307 1991-12-21 Richard Stallman <rms@gnu.org>
25308
25309 * src/lalr.c, src/closure.c:
25310 entered into RCS
25311
25312 1991-12-20 Richard Stallman <rms@gnu.org>
25313
25314 * src/state.h: entered into RCS
25315
25316 1991-12-18 Richard Stallman <rms@gnu.org>
25317
25318 * src/print.c, src/nullable.c, src/derives.c:
25319 entered into RCS
25320
25321 1991-11-03 David J. MacKenzie <djm@gnu.org>
25322
25323 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
25324 entered into RCS
25325
25326 1988-09-09 Richard Stallman <rms@gnu.org>
25327
25328 * src/bison.hairy: entered into RCS
25329
25330 1987-12-16 Richard Stallman <rms@gnu.org>
25331
25332 * REFERENCES: entered into RCS
25333
25334
25335 -----
25336
25337 Copyright (C) 1987-1988, 1991-2010 Free Software Foundation,
25338 Inc.
25339
25340 Copying and distribution of this file, with or without
25341 modification, are permitted provided the copyright notice and this
25342 notice are preserved.