]> git.saurik.com Git - bison.git/blob - ChangeLog
Propagate i18n changes into glr.c.
[bison.git] / ChangeLog
1 2008-12-11 Akim Demaille <demaille@gostai.com>
2
3 Propagate i18n changes into glr.c.
4 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
5 building the error message format dynamically.
6 * data/lalr1.java: Formatting changes.
7
8 2009-12-22 Joel E. Denny <jdenny@clemson.edu>
9
10 Port small part of master's 11707b2b so future ports are easier.
11 * data/lalr1.java (YYParser::yysyntax_error): Untabify.
12
13 2008-12-11 Akim Demaille <demaille@gostai.com>
14
15 Simplify the i18n of the error messages.
16 * data/lalr1.cc: Comment changes.
17
18 2008-11-11 Akim Demaille <demaille@gostai.com>
19
20 Prefer M4 to CPP.
21 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
22 YYERROR_VERBOSE.
23
24 2008-11-11 Akim Demaille <demaille@gostai.com>
25
26 Support i18n of the parse error messages.
27 * TODO (lalr1.cc/I18n): Remove.
28 * data/lalr1.cc (yysyntax_error_): Support the translation of the
29 error messages, as done in yacc.c.
30 Stay within the yy* pseudo namespace.
31
32 2009-12-22 Joel E. Denny <jdenny@clemson.edu>
33
34 Port small part of master's 8901f32e so future ports are easier.
35 * data/lalr1.cc (yy::parser::yysyntax_error_): Always add second
36 argument, but name it in the function definition only when
37 verbose error messages are enabled and it'll thus be used.
38 (yy::parser::parse): Update use of yysyntax_error_.
39
40 2009-12-29 Joel E. Denny <jdenny@clemson.edu>
41
42 portability: `<' and `>' are not always defined on addresses.
43 Specifically, don't sort objects by their memory addresses when
44 they're not allocated in the same array or other object. Though
45 I haven't found a test case where that fails on my platform, C
46 says the behavior is undefined.
47 * src/AnnotationList.c (AnnotationList__insertInto): Remove
48 FIXME. Use new id field of InadequacyList nodes rather than
49 their memory addresses when sorting.
50 (AnnotationList__compute_from_inadequacies): Add
51 inadequacy_list_node_count argument to pass to
52 InadequacyList__new_conflict.
53 * src/AnnotationList.h
54 (AnnotationList__compute_from_inadequacies): Update prototype
55 and documentation for new argument.
56 * src/InadequacyList.c (InadequacyList__new_conflict): Add
57 node_count argument and use it to assign a unique ID.
58 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
59 (InadequacyList): Add id field.
60 (InadequacyList__new_conflict): Update prototype and
61 documentation for new argument.
62 * src/ielr.c (ielr_compute_annotation_lists): Update
63 AnnotationList__compute_from_inadequacies invocation.
64
65 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
66
67 Fix handling of yychar manipulation in user semantic actions.
68 The problem was that yacc.c didn't always update the yychar
69 translation afterwards. However, other skeletons appear to be
70 fine. glr.c appears to already translate yychar before every
71 use. lalr1.cc does not define yychar and does not document its
72 replacement, yyla, for users. It does provide yyclearin, but
73 that does not manipulate yyla and thus requires no translation
74 update. In lalr1.java, yychar is out of scope during semantic
75 actions.
76 * NEWS (2.5): Document.
77 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
78 yytoken here.
79 (yyparse, yypush_parse): Instead, translate before every use of
80 yytoken, and add comments explaining this approach.
81 * tests/actions.at (Destroying lookahead assigned by semantic
82 action): New test group checking that translation happens before
83 lookahead destructor calls at parser return. Previously,
84 incorrect destructors were called.
85 * tests/conflicts.at (%error-verbose and consistent
86 errors): New test group checking that translation happens at
87 syntax error detection before the associated verbose error
88 message and the associated lookahead destructor calls. While
89 the destructor call is fixed by this patch, the verbose error
90 message is currently incorrect due to another bug (see
91 comments in test group), so this is an expected failure for now.
92
93 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
94
95 YYFAIL: warn about uses and remove from lalr1.java.
96 * NEWS (2.5): Document.
97 * data/lalr1.java (parser::YYStack::YYFAIL): Rename to YYERRLAB,
98 and make it private. Update all uses.
99 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
100
101 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
102
103 YYFAIL: deprecate.
104 * NEWS (2.4.2): Document deprecation and the phase-out plan.
105 * data/lalr1.java (parser::YYStack::YYFAIL): Add comment about
106 deprecation.
107 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
108 YYFAIL from GCC cpp's -Wunused-macros.
109 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
110 documentation.
111 (LocalWords): Remove YYFAIL.
112
113 2009-12-17 Joel E. Denny <jdenny@clemson.edu>
114
115 Code cleanup.
116 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
117 function, which is no longer used.
118
119 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
120
121 Add gcc's -Wundef to test suite and fix another warning from it.
122 * NEWS (2.4.2): Update description of -Wundef fix.
123 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
124 (WARN_CFLAGS_TEST): New substitution.
125 * data/glr.c: Avoid warning about __STRICT_ANSI__.
126 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
127 WARN_CFLAGS.
128 (NO_WERROR_CFLAGS): Likewise.
129 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
130
131 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
132
133 * data/yacc.c: Reformat m4 a little.
134
135 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
136
137 Document gcc -Wundef fix.
138 * NEWS (2.4.2): Here.
139 * THANKS (Jonathan Nieder): Add.
140
141 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
142
143 Simplify y.tab.c when location tracking is disabled.
144 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
145 tracking is not enabled. Instead, unconditionally define
146 YY_LOCATION_PRINT as a no-op for backward compatibility.
147
148 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
149
150 Avoid warnings from gcc -Wundef y.tab.c.
151 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
152 defined before using them.
153 * data/lalr1.cc: Likewise.
154 * data/yacc.c: Likewise.
155
156 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
157
158 autoconf: update to latest for fix of M4 detection.
159 Reported by Eric Blake.
160 * submodules/autoconf: Update.
161
162 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
163
164 portability: use -DGNULIB_POSIXCHECK.
165 Reported by Eric Blake. See discussions at
166 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
167 and
168 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
169 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
170 * bootstrap.conf (gnulib_modules): Add all the printf modules
171 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
172 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
173 (excluded_files): Remove m4/printf-posix.m4.
174 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
175 lib/libbison.a so gnulib libraries can be linked.
176
177 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
178
179 Enable assertion output and --disable-assert for configure.
180 * bootstrap.conf (gnulib_modules): Add assert module.
181 * src/system.h (aver): Define as assert, and summarize the
182 discussion on this issue.
183
184 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
185
186 Expand GLR acronym in summary of Bison.
187 Based on discussion with Akim Demaille starting at
188 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
189 * doc/bison.texinfo (Introduction): Here.
190 * src/getargs.c (usage): Here.
191
192 2009-10-03 Alex Rozenman <rozenman@gmail.com>
193
194 Document named references.
195 * doc/bison.texinfo (Actions): Add new example and xref to
196 Using Named References node.
197 (Using Named References): New node.
198
199 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
200
201 cleanup.
202 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
203 of char*.
204 (Sbitset__isEmpty): Use Sbitset instead of char*.
205 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
206 instead of char. This helps to avoid casting errors.
207 (Sbitset__or): Use Sbitset instead of char*.
208
209 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
210
211 portability: don't assume 8-bit bytes.
212 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
213 * src/Sbitset.h (Sbitset__nbytes): Here.
214 (Sbitset__byteAddress): Here.
215 (Sbitset__bit_mask): Here.
216 (Sbitset__last_byte_mask): Here.
217 (Sbitset__ones): Here.
218 (SBITSET__FOR_EACH): Here.
219
220 2009-10-11 Joel E. Denny <jdenny@clemson.edu>
221
222 portability: use va_start and va_end in the same function.
223 * src/complain.c (error_message): Move va_end from here...
224 (ERROR_MESSAGE): ... to here.
225
226 2009-10-08 Joel E. Denny <jdenny@clemson.edu>
227
228 * data/bison.m4: Update comments for rename to muscle-tab.h.
229
230 2009-10-08 Joel E. Denny <jdenny@clemson.edu>
231
232 Rename muscle_tab.* to muscle-tab.* for consistency with master.
233 * src/Makefile.am (bison_SOURCES): Update.
234 * src/getargs.c, src/ielr.c, src/lalr.c, src/main.c,
235 src/output.c, src/parse-gram.y, src/print.c, src/reader.c,
236 src/tables.c: Update include.
237 * src/muscle_tab.c, src/muscle_tab.h: Rename to...
238 * src/muscle-tab.c, src/muscle-tab.h: ... these and update
239 include.
240
241 2009-10-07 Joel E. Denny <jdenny@clemson.edu>
242
243 Minor code cleanup.
244 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
245 replace all uses with UNIQSTR_CONCAT.
246 * src/uniqstr.c (uniqstr_vsprintf): New function.
247 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
248 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
249 macros.
250
251 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
252
253 Minor code cleanup.
254 * src/parse-gram.y: Clean up sorting of declarations.
255 Use types to simplify %printer declarations where possible.
256 Provide %printer for BRACKETED_ID and symbol.prec.
257 * src/symtab.c: Whitespace change.
258
259 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
260
261 tests: skip tests of file names that platform does not support.
262 Reported by Michael Raskin at
263 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
264 * THANKS (Michael Raskin): Add.
265 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
266 to fail at least for file names containing ":" or "\".
267
268 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
269
270 yysyntax_error: avoid duplicate lookahead collection.
271 Except when memory reallocation is required, this change
272 eliminates the need to invoke yysyntax_error twice and thus to
273 repeat the collection of lookaheads. It also prepares for
274 future extensions that will make those repetitions more
275 expensive and that will require additional memory management in
276 yysyntax_error. Finally, it fixes an obscure bug already
277 exercised in the test suite.
278 * data/yacc.c (yysyntax_error): Add arguments for message
279 buffer variables stored in the parser. Instead of size, return
280 status similar to yyparse status but indicating success of
281 message creation. Other than the actual reallocation of the
282 message buffer, import and clean up memory management code
283 from...
284 (yyparse, yypush_parse): ... here.
285 * tests/regression.at (%error-verbose overflow): No longer an
286 expected failure.
287
288 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
289
290 yysyntax_error: test memory management more.
291 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
292 * tests/regression.at (%error-verbose and YYSTACK_USE_ALLOCA):
293 New test group.
294 (%error-verbose overflow): New test group that reveals an
295 obscure bug. Expected fail for now.
296
297 2008-12-11 Akim Demaille <demaille@gostai.com>
298
299 Pass the token type to yysyntax_error.
300 * data/yacc.c (yysyntax_error): Take the transated token instead
301 of the raw number.
302 Adjust callers.
303
304 2008-12-11 Akim Demaille <demaille@gostai.com>
305
306 Simplify the i18n of the error messages.
307 * data/yacc.c (yysyntax_error): Rewrite, using a switch instead
308 of building dynamically the format string.
309
310 2009-10-03 Joel E. Denny <jdenny@clemson.edu>
311
312 Remove dead code.
313 * src/symtab.c (symbol_pack): Here because every symbol's number
314 is always defined by this time.
315
316 2009-10-03 Alex Rozenman <rozenman@gmail.com>
317
318 Add additional space after periods in NEWS.
319 * NEWS (2.5): here.
320
321 2009-09-29 Joel E. Denny <jdenny@clemson.edu>
322
323 Use the correct conversion specifier for size_t.
324 Reported by Jim Meyering.
325 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
326 because Sbitset__Index is size_t.
327 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
328
329 2009-09-27 Joel E. Denny <jdenny@clemson.edu>
330
331 tests: don't abuse AT_BISON_CHECK.
332 * tests/regression.at (parse-gram.y: LALR = IELR): Move
333 additional shell commands outside of AT_BISON_CHECK.
334
335 2009-09-26 Joel E. Denny <jdenny@clemson.edu>
336
337 tests: check that parse-gram.y's IELR and LALR are identical.
338 * tests/atlocal.in (abs_top_srcdir): New shell variable.
339 * tests/regression.at (parse-gram.y: LALR = IELR): New test
340 group.
341
342 2009-09-16 Akim Demaille <demaille@gostai.com>
343
344 doc: comment changes.
345 * doc/bison.texinfo: Comment changes.
346
347 2009-09-16 Akim Demaille <demaille@gostai.com>
348
349 doc: spell checking.
350 * doc/bison.texinfo: here.
351
352 2009-09-19 Alex Rozenman <rozenman@gmail.com>
353
354 Keep sub-messages aligned. Fix strings for translation.
355 * src/location.h (location_print): Add return value.
356 * src/location.c (location_print): Return number of printed
357 characters.
358 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
359 new functions.
360 * src/complain.cpp (indent_ptr): New static variable.
361 (error_message, complain_at_indent, warn_at_indent): Implement
362 the alignment mechanism.
363 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
364 for translations. Use new alignment mechanism.
365 * tests/named-ref.at: Adjust test-cases.
366 * NEWS (2.5): Add an announcement about named references.
367
368 2009-09-13 Joel E. Denny <jdenny@clemson.edu>
369
370 tests: clean up push.at test group titles.
371 * tests/push.at: Remove "Push Parsing: " from test group titles
372 because these are already under the banner "Push Parsing Tests".
373
374 2009-09-12 Alex Rozenman <rozenman@gmail.com>
375
376 Provide an additional sub-message for clarity.
377 Add "symbol not found in production" error message when
378 an "invalid reference" is detected in named references
379 resolution.
380 * src/scan-code.l: Update "invalid reference" case.
381 * tests/named-ref.at: Adjust test-cases.
382
383 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
384
385 Clean up yacc.c a little.
386 * data/yacc.c: Clean up M4 for readability, and make output
387 whitespace more consistent. For the main parse function
388 comment, instead of saying "yyparse or yypush_parse", say either
389 "yyparse" or "yypush_parse" depending on which it actually is.
390
391 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
392
393 Complain about unused %define variables and %code qualifiers.
394 * NEWS (2.5): Document.
395 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
396 * doc/bison.texinfo (Decl Summary): Document complaint, and
397 improve %define documentation a little otherwise.
398 * tests/input.at (Reject unused %code qualifiers): Update.
399 (%define errors): Update.
400 (%define, --define, --force-define): Update.
401 (%define backward compatibility): Update.
402 (Unused %define api.pure): Update.
403 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
404
405 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
406
407 Use aver not assert.
408 * src/output.c: Don't include assert.h.
409 (output_skeleton): Use aver not assert.
410 * src/system.h (aver): In documentation of why, add links to
411 Paul Eggert's explanations in the mailing lists.
412
413 2009-09-05 Alex Rozenman <rozenman@gmail.com>
414
415 Use "Unresolved reference" error message when no symbols were found
416 in a symbolic reference resolution. Remove .expr and -expr from
417 the shown reference when the reference is unresolved.
418 * src/scan-code.l: Change the error message, adjust location columns,
419 rename variable "exact_mode" to "explicit_bracketing".
420 * tests/named-ref.at: Adjust existing tests and add a new one.
421
422 2009-09-03 Akim Demaille <demaille@gostai.com>
423
424 * NEWS (2.4.2): Add "Internationalization" item.
425
426 2009-09-03 Akim Demaille <demaille@gostai.com>
427
428 bootstrap: fix/improve find_tool.
429 * bootstrap (find_tool): Improve error messages.
430 Fix typo about find_tool_names.
431
432 2009-08-29 Joel E. Denny <jdenny@clemson.edu>
433
434 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
435 See
436 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
437 * src/scan-code.h (code_props_rule_action_init): Rename
438 named_ref arg to name so it doesn't shadow named_ref type. This
439 makes it consistent with the function definition in scan-code.l
440 anyway.
441
442 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
443
444 %define: accept unquoted values.
445 * NEWS (2.5): Group all %define changes together, and document
446 this one. Remove quotes in IELR and canonical LR entry.
447 * doc/bison.texinfo: Remove quotes in most examples throughout.
448 (Decl Summary): Update %define documentation.
449 (Table of Symbols): Likewise.
450 * src/ielr.c (LrType): Update documentation.
451 * src/parse-gram.y (content.opt): Add production for ID.
452 * tests/calc.at: Remove quotes in most tests.
453 * tests/existing.at: Likewise.
454 * tests/input.at: Likewise.
455 * tests/local.at: Likewise.
456 * tests/push.at: Likewise.
457 * tests/reduce.at: Likewise.
458 * tests/torture.at: Likewise.
459
460 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
461
462 %define lr.type: make values lowercase IDs.
463 That is, "LALR" => "lalr", "IELR" => "ielr", and
464 "canonical LR" => "canonical-lr".
465 * NEWS (2.5): Update documentation.
466 * doc/bison.texinfo (Decl Summary): Likewise.
467 * src/ielr.c (ielr): Use new values.
468 * src/ielr.h (ielr): Update documentation.
469 * src/reader.c (prepare_percent_define_front_end_variables): Use
470 and validate new values.
471 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
472 grammars.
473 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
474
475 2009-08-27 Eric Blake <ebb9@byu.net>
476
477 scan-gram: avoid portability trap with ctype usage.
478 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
479 Avoid compiler warning.
480
481 2009-08-27 Joel E. Denny <jdenny@clemson.edu>
482
483 tests: use perl for printing special sequences to files.
484 And skip tests if perl is not available. This is better than
485 playing tricks with shell portability. Suggested by Akim
486 Demaille.
487 * tests/input.at (Bad character literals): Use it here for
488 omitting final newlines.
489 (Bad escapes in literals): Use it here for special characters.
490
491 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
492
493 tests: show a use of %define lr.default-reductions "consistent"
494 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
495 prevents the omission of expected tokens for %error-verbose.
496
497 2009-08-26 Akim Demaille <demaille@gostai.com>
498
499 tests: portability fix.
500 * tests/input.at (Bad escapes in literals): Don't expect "echo
501 '\0'" to output \ then 0.
502
503 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
504
505 Actually handle the yytable zero value correctly this time.
506 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Don't
507 mention zero values in the YYTABLE comments.
508 * data/glr.c (yytable_value_is_error): Don't check for zero
509 value.
510 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
511 * data/yacc.c (yytable_value_is_error): Likewise.
512 * data/lalr1.java (yy_table_value_is_error_): Likewise.
513 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
514 * src/tables.h: In header comments, explain why it's useless to
515 check for a zero value in yytable.
516
517 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
518
519 More fixes related to last two patches.
520 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
521 defined.
522 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Fix
523 yytable comments: zero indicates syntax error not default
524 action.
525 * data/glr.c (yyis_pact_ninf): Rename to...
526 (yypact_value_is_default): ... this.
527 (yyisDefaultedState): Update for rename.
528 (yyis_table_ninf): Rename to...
529 (yytable_value_is_error): ... this, and check for value zero
530 besides just YYTABLE_NINF.
531 (yygetLRActions): Check for default value from yypact. It
532 appears that this check is always performed before this function
533 is invoked, and so adding the check here is probably redundant.
534 However, the code may evolve after this subtlety is forgotten.
535 Also, update for rename to yytable_value_is_error. Because that
536 macro now checks for zero, a different but equivalent branch of
537 the if-then-else here is evaluated.
538 (yyreportSyntaxError): Update for rename to
539 yytable_value_is_error. The zero condition was mishandled
540 before.
541 (yyrecoverSyntaxError): Update for renames. No behavioral
542 changes.
543 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
544 New function.
545 (yy_table_value_is_error_): New function.
546 (parse): Use new functions where possible. No behavioral
547 changes.
548 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
549 The zero condition was mishandled before.
550 * data/yacc.c (yyis_pact_ninf): Rename to...
551 (yypact_value_is_default): ... this.
552 (yyis_table_ninf): Rename to...
553 (yytable_value_is_error): ... this, and check for value zero
554 besides just YYTABLE_NINF.
555 (yysyntax_error): Update for rename to yytable_value_is_error.
556 The zero condition was mishandled before.
557 (yyparse): Update for renames. No behavioral changes.
558 * src/tables.h: Improve comments about yypact, yytable, etc.
559 more. Most importantly, say yytable value of zero means syntax
560 error not default action.
561
562 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
563
564 Fix %error-verbose for conflicts resolved by %nonassoc.
565 * NEWS (2.5): Document.
566 * data/glr.c (yyreportSyntaxError): Fix this by checking
567 yyis_table_ninf.
568 * data/yacc.c (yysyntax_error): Likewise.
569 * data/lalr1.cc (yysyntax_error_): Fix this by checking
570 yytable_ninf_.
571 * data/lalr1.java (yysyntax_error): Likewise.
572 * tests/conflicts.at (%nonassoc and eof): Update expected output
573 and remove FIXME.
574
575 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
576
577 Some code and documentation improvements.
578 * data/c.m4 (b4_table_value_equals): New macro to capture
579 some repeated code.
580 * data/glr.c (yyis_pact_ninf): Use it here.
581 (yyis_table_ninf): Likewise.
582 (yyreportSyntaxError): Improve internal comments.
583 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
584 Use it everywhere possible.
585 (yyis_table_ninf): Likewise.
586 (yysyntax_error): Improve internal comments.
587 * data/lalr1.cc (yysyntax_error_): Likewise.
588 * data/lalr1.java (yysyntax_error): Likewise.
589 * src/tables.h: Improve comments about yypact, yytable, etc.
590
591 2009-08-21 Joel E. Denny <jdenny@clemson.edu>
592
593 Use locale when quoting.
594 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
595 quote rather than implementing quoting here.
596
597 2009-08-20 Eric Blake <ebb9@byu.net>
598
599 Make previous patch more robust.
600 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
601 argmatch.h.
602 (output_skeleton): Use it.
603 Suggested by Akim Demaille.
604
605 Import latest m4/m4.m4.
606 * submodules/autoconf: Update to autoconf 2.64.
607 * configure.ac (M4_GNU_OPTION): New define.
608 * src/output.c (output_skeleton): Use it to resolve FIXME.
609 * NEWS: Mention this.
610
611 2009-08-19 Joel E. Denny <jdenny@clemson.edu>
612
613 Fix complaints about escape sequences.
614 Discussed starting at
615 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
616 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
617 For a \0 and similar escape sequences meaning the null
618 character, report an invalid escape sequence instead of an
619 invalid null character because the latter does not actually
620 appear in the user's input.
621 In all escape sequence complaints, don't escape the initial
622 backslash, and don't quote when the sequence appears at the end
623 of the complaint line unless there's whitespace that quotearg
624 won't escape.
625 Consistently say "invalid" not "unrecognized".
626 Consistently prefer "empty character literal" over "extra
627 characters in character literal" warning for invalid escape
628 sequences; that is, consistently discard those sequences.
629 * tests/input.at (Bad escapes in literals): New.
630
631 2009-08-19 Akim Demaille <demaille@gostai.com>
632
633 doc: fixes.
634 * doc/bison.texinfo: Fix minor Texinfo errors.
635
636 2009-08-19 Akim Demaille <demaille@gostai.com>
637
638 doc: %initial-action to initialize yylloc.
639 Reported by Bill Allombert.
640 * doc/bison.texinfo: Set fill-column to 76.
641 (Location Type): Document the use of %initial-action to initialize
642 yylloc.
643
644 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
645
646 maint: update for gnulib's recent update-copyright changes
647 * gnulib: Update.
648 * .x-update-copyright (COPYING): Add as it's no longer implied
649 when .x-update-copyright is present.
650 * cfg.mk (update-copyright-local): Remove, now ignored.
651 (update-copyright): Declare update-b4-copyright as a dependency.
652
653 2009-08-17 Akim Demaille <demaille@gostai.com>
654
655 build: require gettext 0.17.
656
657 Suggested by Bruno Haible.
658 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
659 * configure.ac: require gettext 0.17 to ensure compatibility with
660 gnulib.
661
662 2009-08-17 Akim Demaille <demaille@gostai.com>
663
664 build: lower gettext requirements.
665
666 Bison was uselessly requiring the formatstring macros from
667 gettext, which resulted in mo files not being installed on systems
668 that perfectly supported Bison mo files. Lower the requirement.
669 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
670
671 * configure.ac: Require need-ngettext instead of
672 need-formatstring-macros.
673 Reported by Martin Jabocs.
674 Suggested by Bruno Haible.
675 * INSTALL: Restructure.
676 (Internationalization): New.
677
678 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
679
680 maint: fix use of copyright year intervals.
681 * gnulib: Update.
682 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
683 as now recommended in gnulib/NEWS.
684 * build-aux/update-b4-copyright: Fix.
685 * cfg.mk (update-copyright-env): Configure update-copyright.
686
687 2009-08-13 Joel E. Denny <jdenny@clemson.edu>
688
689 Make it easier to write deterministic tests.
690 Continues Akim's work from his 2009-06-10 commits.
691 * src/reader.c (check_and_convert_grammar): Don't add any
692 symbols after the first symbols_do invocation.
693 * src/symtab.c (symbols_sorted): New static global.
694 (user_token_number_redeclaration): Update comments.
695 (symbol_from_uniqstr): If a new symbol is being created, assert
696 that symbols_sorted hasn't been allocated yet.
697 (symbols_free): Free symbols_sorted.
698 (symbols_cmp, symbols_cmp_qsort): New functions.
699 (symbols_do): Sort symbol_table into symbols_sorted on first
700 invocation.
701 * tests/input.at (Numbered tokens): Recombine tests now that the
702 output should be deterministic across multiple numbers.
703
704 2009-08-12 Akim Demaille <demaille@gostai.com>
705
706 distcheck: fix.
707
708 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
709
710 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
711
712 * tests/Makefile.am (TESTSUITE_AT): Add named-refs.at.
713
714 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
715
716 Miscellaneous code readability improvements.
717
718 * src/reader.c (reader): Move %define front-end variable
719 defaults and checking into...
720 (prepare_percent_define_front_end_variables): ... this new
721 function.
722
723 * src/scan-gram.l (INITIAL): For consistency with string
724 literals, don't store open quote on character literal. It's
725 discarded before returning anyway.
726 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
727 Make length test more readable, and make the character stored
728 for an empty literal more obvious while consistent with the
729 previous behavior.
730
731 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
732 USER_NUMBER_HAS_STRING_ALIAS throughout.
733 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
734 that is repeated in symtab.h. Improve argument names to make it
735 clear which side of the symbol-string alias pair is which.
736 (symbol_check_alias_consistency): Improve local variable names
737 for the same purpose.
738 * src/symtab.h (struct symbol): Make comments about aliases
739 clearer.
740 (symbol_make_alias): Improve comments and argument name.
741 * src/output.c (token_definitions_output): Update for rename to
742 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
743
744 2009-08-08 Alex Rozenman <rozenman@gmail.com>
745
746 Convert "misleading reference" messages to warnings.
747 * src/scan-code.l: New function 'show_sub_messages', more
748 factoring.
749 * tests/named-ref.at: Adjust tests.
750
751 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
752
753 maint: run "make update-copyright"
754
755 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
756
757 maint: make update-b4-copyright easier to use
758 * build-aux/update-b4-copyright: In warnings, report line
759 numbers rather than character positions.
760 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
761 that update-copyright runs it.
762 * gnulib: Update.
763
764 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
765
766 maint: clean up update-b4-copyright code
767 * build-aux/update-b4-copyright: Do not accept 2-digit
768 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
769 Don't accept a `[' in a b4_copyright argument.
770 Format code more consistently.
771 Don't assume b4*copyright never occurs.
772
773 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
774
775 maint: automate b4_copyright updates.
776 * Makefile.am (update-b4-copyright): New target rule.
777 * build-aux/Makefile.am (EXTRA_DIST): Add update-b4-copyright.
778 * build-aux/update-b4-copyright: New.
779 * data/yacc.c: Remove stray characters around b4_copyright
780 invocations.
781
782 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
783
784 maint: automate annual package-wide copyright-year update.
785 * .x-update-copyright: New.
786 * Makefile.am (EXTRA_DIST): Remove maint.mk.
787 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
788 update-copyright. Remove gnumakefile, which is implied by
789 maintainer-makefile.
790 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
791 * gnulib: Update.
792 * maint.mk: Remove, now copied from gnulib.
793 * examples/extexi: Add missing "(C)" in copyright statement so
794 update-copyright can recognize it.
795 * src/LR0.h: Likewise.
796 * src/print.h: Likewise.
797 * src/print_graph.h: Likewise.
798 * src/gram.c: Add missing comma in copyright statement.
799 * src/gram.h: Likewise.
800
801 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
802
803 Fix "make distcheck".
804 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
805 of just calc.stamp.
806
807 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
808
809 Pacify "gcc -Wunused" for the input function from Flex.
810 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
811 and later.
812 * src/scan-code.l: Add "%option noinput", which I cannot find in
813 the Flex manual, but which Flex has supported since at least as
814 far back as 2.5.4. However, if any of our developers still use
815 Flex 2.5.4, they'll need to stop configuring with
816 --enable-gcc-warnings because "%option noinput" didn't work
817 correctly until Flex 2.5.6.
818 * src/scan-gram.l: Likewise.
819 * src/scan-skel.l: Likewise.
820
821 2009-07-31 Alex Rozenman <rozenman@gmail.com>
822
823 Fix --enable-gcc-warnings problems.
824 * src/reader.c: Adjust variable names.
825 * src/scan-code.l: Fix prototypes and adjust names.
826 * src/named-ref.c: Remove redundant "if".
827
828 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
829
830 Fix a --enable-gcc-warnings problem.
831 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
832 variable.
833
834 2009-07-24 Alex Rozenman <rozenman@gmail.com>
835
836 Fix some memory leaks.
837 * src/named-ref.c: Add a pointer check (named_ref_free).
838 * src/scan-code.l: New function (variant_table_free). Called in
839 code_scanner_free.
840 * src/symlist.c: Call to named_ref_free (symbol_list_free).
841
842 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
843
844 Warn about character literals not of length one.
845 * NEWS (2.5): Document.
846 * src/scan-gram.l (INITIAL): Remove comment that we don't check
847 the length.
848 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
849 * tests/input.at (Bad character literals): New test group.
850
851 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
852
853 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
854
855 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
856
857 Some M4 cleanup in the testsuite.
858 Suggested by Eric Blake at
859 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
860 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
861 complicate the code by distinguishing between a missing value
862 and an empty string value for an optional argument. This fix is
863 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
864 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
865 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
866 arguments are not needed because of the following changes.
867 Fix stale comments.
868 Bison developers should use GNU M4 and should not use
869 POSIXLY_CORRECT when building the test suite, so do not
870 complicate the code by avoiding $10 and above.
871 Do not quote an empty string value for an optional argument, and
872 do not distinguish between a missing value and an empty string
873 value.
874
875 2009-07-21 Joel E. Denny <jdenny@ces.clemson.edu>
876
877 * m4/m4.m4: Make it a sym link to submodules/autoconf/m4/m4.m4.
878
879 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
880
881 Revert unnecessary column realignment in --help output.
882 Reported by Akim Demaille at
883 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
884 * src/getargs.c (usage): Here.
885
886 2009-07-04 Alex Rozenman <rozenman@gmail.com>
887
888 Alphabetical order in src/Makefile.am.
889 * src/Makefile.am: Adjust.
890
891 2009-07-04 Alex Rozenman <rozenman@gmail.com>
892
893 Style changes and factoring.
894 * src/named-ref.h: Add comments.
895 * src/parse-gram.y: Readability and style changes.
896 * src/reader.c: Factoring: assign_named_ref function.
897 * src/scan-code.l: Factoring and style changes. Rename
898 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
899 Use "unsigned" type for variant index. Improve readablity.
900 * src/scan-gram.l: Change error messages and add comments.
901 * src/symlist.h: symbol_list_null: New function decl.
902 * src/symlist.c: symbol_list_null: Implement here.
903 * tests/named-refs.at: Adjust for new error messages.
904
905 2009-06-29 Eric Blake <ebb9@byu.net>
906
907 scan-code: avoid compiler warnings
908 * src/scan-code.l (parse_named_ref): Use correct specifiers.
909
910 2009-06-29 Akim Demaille <demaille@gostai.com>
911
912 build: avoid concurrent extraction of calc++.
913 * examples/calc++/Makefile.am (calc.stamp): New.
914 Depend on it to create the sources of calc++ so that concurrent
915 builds don't launch several "extexi" in parallel.
916 Not only this is inefficient, this also builds incorrect sources
917 with several extractions mixed together.
918
919 2009-06-27 Alex Rozenman <rozenman@gmail.com>
920
921 Implement support for named symbol references.
922 * src/parse-gram.y: Add new syntax (named_ref.opt).
923 * src/reader.c: Store named refs in symbol lists.
924 * src/reader.h: New argument for symbol_append and
925 action_append functions.
926 * src/scan-code.h: Add new field (named_ref) into
927 code_props data structure. Keeps named ref of midrule
928 actions.
929 * src/scan-code.l: Support for named refs in semantic
930 action code. New function 'parse_named_ref'.
931 * src/scan-gram.l: Support bracketed id.
932 * src/symlist.c: Store named refs in symbol lists.
933 * src/symlist.h: New field in symbol list: named_ref.
934 * src/named-ref.h: New file, a struct for named_ref.
935 * src/named-ref.cp: New file, named_ref_new function.
936 * src/local.mk: Add two new files.
937 * tests/testsuite.at: Include new test group:
938 * tests/named-refs.at: this new file.
939
940 2009-06-25 Akim Demaille <demaille@gostai.com>
941
942 hash: check insertion for memory exhaustion.
943 * src/uniqstr.c (uniqstr_new): New.
944
945 2009-06-11 Akim Demaille <demaille@gostai.com>
946
947 style changes.
948 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
949 * src/print-xml.c: Style changes.
950 * tests/conflicts.at: Comment changes.
951
952 2009-06-11 Akim Demaille <demaille@gostai.com>
953
954 xml: beware of user strings used to give a %prec to rules.
955 * tests/conflicts.at (%prec with user strings): New.
956 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
957 XML output.
958
959 2009-06-11 Akim Demaille <demaille@gostai.com>
960
961 hash: check insertion for memory exhaustion.
962 * src/muscle-tab.c (muscle_insert, muscle_grow)
963 * src/state.c (state_hash_insert): Check the return value of
964 hash_insert.
965
966 2009-06-10 Akim Demaille <demaille@gostai.com>
967
968 deterministic test suite.
969 Some consistency checks on symbols are performed after all the
970 symbols were read, by an iteration over the symbol table. This
971 traversal is nondeterministic, which can be a problem for test
972 cases.
973 Avoid this.
974 Addresses another form of nondeterminism reported by Joel E. Denny.
975 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
976
977 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
978 test in two.
979 Use different file names for the three tests to make the
980 maintenance easier.
981
982 2009-06-10 Akim Demaille <demaille@gostai.com>
983
984 deterministic user-token-number redeclaration errors.
985 Address nondeterminism reported by Joel E. Denny.
986 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
987
988 * src/uniqstr.h: Comment changes.
989 * src/location.h (boundary_cmp, location_cmp): New.
990 * src/symtab.c (user_token_number_redeclaration): New.
991 (symbol_translation): Use it.
992 * tests/input.at (Numbered tokens): Adjust the expected output.
993
994 2009-05-25 Akim Demaille <demaille@gostai.com>
995
996 gnulib: update.
997 * gnulib: Update to latest.
998 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
999 * m4/.gitignore: Regen.
1000 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
1001 Call xalloc_die on hash_insert failures.
1002 Requested by the new __warn_unused_result__ attribute of
1003 hash_insert.
1004
1005 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1006
1007 Convert multiple variable definition warnings to complaints.
1008 * NEWS (2.5): Add a new entry for that change.
1009 * doc/bison.texinfo (Decl Summary): Update %define entry.
1010 (Bison Options): Update -D/--define/-F/--force-define entry.
1011 * src/muscle_tab.c (muscle_percent_define_insert): Implement.
1012 * src/muscle_tab.h (muscle_percent_define_insert): Update
1013 comments.
1014 * tests/input.at (`%define errors'): Update.
1015 (`%define, --define, --force-define'): Update.
1016
1017 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1018
1019 -F/--force-define and relative %define/-D/--define priorities.
1020 * NEWS (2.5): Add documentation to -D/--define entry.
1021 * build-aux/cross-options.pl: Hard-code association of
1022 --force-define with %define.
1023 * doc/bison.texinfo (Decl Summary): In %define entry,
1024 cross-reference command-line options.
1025 (Bison Options): Add documentation to -D/--define entry.
1026 (Option Cross Key): Widen column for --force-define row.
1027 * src/getargs.c (usage): Document -F/--force-define. Realign
1028 options in output.
1029 (short_options, long_options, getargs): Parse -F/--force-define,
1030 and update muscle_percent_define_insert invocation.
1031 * src/muscle_tab.h (muscle_percent_define_how): New enum type.
1032 (muscle_percent_define_insert): Add argument with that type.
1033 * src/muscle_tab.c (muscle_percent_define_insert): Implement
1034 -F/--force-define behavior and priorities.
1035 * src/parse-gram.y (prologue_declaration): Update
1036 muscle_percent_define_insert invocations.
1037 * tests/input.at (`%define, --define'): Rename to...
1038 (`%define, --define, --force-define'): ... this and extend.
1039
1040 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1041
1042 Update some comments to make sense for -D.
1043 * data/bison.m4 (b4_check_user_names): In header comments, say
1044 "user occurrence" instead of "grammar occurrence".
1045 * src/muscle_tab.h (muscle_percent_define_insert): Likewise.
1046 (muscle_percent_code_grow): Likewise just for consistency.
1047
1048 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1049
1050 * data/c++.m4: Update copyright year.
1051
1052 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1053
1054 * data/c++.m4 (b4_namespace_close): Simplify slightly.
1055
1056 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
1057
1058 Handle a trailing `:' in a user-supplied C++ namespace better.
1059 * data/c++.m4 (b4_namespace_close): Don't let it be printed
1060 among the closing braces here. This fix might make the
1061 generated code easier to debug, but otherwise it should be
1062 insignificant because a trailing `:' is a C++ error already.
1063
1064 2009-05-19 Akim Demaille <demaille@gostai.com>
1065
1066 remove useless variable.
1067 * src/getargs.c (skeleton_arg): Remove now useless variable.
1068 Should help the compiler see that this printf-like call is sane.
1069
1070 2009-05-11 Akim Demaille <demaille@gostai.com>
1071
1072 doc: use C++ headers.
1073 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
1074 headers.
1075
1076 2009-05-05 Akim Demaille <demaille@gostai.com>
1077
1078 fix hexadecimal token number support.
1079 * src/scan-gram.l: Catch incorrect ids after hexadecimal numbers.
1080
1081 2009-05-05 Akim Demaille <demaille@gostai.com>
1082
1083 tests: check token numbers.
1084 * tests/input.at (Numbered tokens): New.
1085
1086 2009-05-04 Akim Demaille <demaille@gostai.com>
1087
1088 bison: catch bad symbol names.
1089 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
1090 * tests/input.at: Adjust.
1091
1092 2009-05-04 Akim Demaille <demaille@gostai.com>
1093
1094 space changes.
1095 * src/scan-gram.l: Untabify to be robust to zealous editors.
1096
1097 2009-05-04 Akim Demaille <demaille@gostai.com>
1098
1099 identifiers: dashes are letters.
1100 Dashes can now start identifiers (symbols and directives).
1101
1102 * src/scan-gram.l ({letter}): Add dash.
1103 ({id}): Remove it.
1104 * tests/input.at (Symbols): Adjust.
1105 Remove stray comment.
1106 * tests/regression.at (Invalid inputs): Adjust error message.
1107 * doc/bison.texinfo (Symbols): Update.
1108
1109 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
1110
1111 Declare %code to be a permanent feature.
1112 * NEWS (2.4.2): Here.
1113 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
1114 experimental.
1115 (Decl Summary): Likewise.
1116
1117 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1118
1119 Convert underscores to dashes in some %define variable names.
1120 For now, just api.push-pull and lr.keep-unreachable-states.
1121 Maintain old names for backward compatibility.
1122 * NEWS (2.5): Document.
1123 * data/c.m4 (b4_identification): Update comment.
1124 * data/yacc.c: Update access.
1125 * doc/bison.texinfo: Update.
1126 * etc/bench.pl.in (bench_grammar): Update use.
1127 * src/files.c (tr): Move to...
1128 * src/getargs.c, src/getargs.h (tr): ... here because I can't
1129 think of a better place to expose it. My logic is that, for all
1130 uses of tr so far, command-line arguments can be involved, and
1131 getargs.h is already included.
1132 * src/main.c (main): Update access.
1133 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
1134 variable names to new variable names before assigning value.
1135 * src/reader.c (reader): Update setting default.
1136 * tests/calc.at: Update uses.
1137 * tests/conflicts.at (Unreachable States After Conflict
1138 Resolution): Update use.
1139 * tests/input.at (%define enum variables): Update use.
1140 (%define backward compatibility): New test group.
1141 * tests/push.at: Update uses.
1142 * tests/reduce.at: Update uses.
1143 * tests/torture.at: Update uses.
1144
1145 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1146
1147 Set all front-end %define defaults in one place.
1148 * src/main.c (main): Move lr.keep_unreachable_states default...
1149 * src/reader.c (reader): ... to here.
1150
1151 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1152
1153 Rename lr.default_reductions to lr.default-reductions.
1154 * NEWS (2.5): Here.
1155 * doc/bison.texinfo: Here.
1156 * src/lalr.c (initialize_LA): Here.
1157 * src/print.c (print_reductions): Here.
1158 * src/reader.c (reader): Here.
1159 * src/tables.c (action_row): Here.
1160 * tests/input.at (%define enum variables): Here.
1161 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
1162
1163 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1164
1165 Pacify ./configure --enable-gcc-warnings.
1166 * tests/input.at (Symbols): Prototype yyerror and yylex.
1167
1168 2009-04-21 Akim Demaille <demaille@gostai.com>
1169
1170 tests: check the use of dashes and periods in symbols.
1171 * tests/input.at (Symbol): New test group.
1172
1173 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1174
1175 Document how `%define "var" "value"' is not M4-friendly.
1176 * src/parse-gram.y (variable): In comments here.
1177
1178 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1179
1180 Add copyright updates missed during previous cherry pick.
1181 * src/output.c: Here.
1182 * src/parse-gram.y: Here.
1183 * src/scan-gram.l: Here.
1184
1185 2009-04-20 Akim Demaille <demaille@gostai.com>
1186
1187 variables: accept dashes.
1188 * src/scan-gram.l ({id}): Also accept dashes after the initial
1189 letter.
1190 ({directive}): Use {id}.
1191 * src/parse-gram.y: Comment and formatting changes.
1192 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
1193 symbols.
1194 * src/complain.h, src/complain.c (yacc_at): New.
1195 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
1196 symbol names.
1197 * src/output.c (token_definitions_output): Do not #define token
1198 names with dashes.
1199
1200 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1201
1202 Clean up recent patches a little.
1203 Reported by Akim Demaille.
1204 * doc/bison.texinfo (Understanding): Fix typos.
1205 * src/print.c (print_reductions): Don't use negated variable.
1206
1207 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1208
1209 List accepted values for a %define enum variable with an invalid value.
1210 Suggested by Akim Demaille at
1211 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
1212 * data/bison.m4 (_b4_percent_define_check_values): Implement.
1213 * src/muscle_tab.c (muscle_percent_define_check_values): Implement.
1214 * tests/input.at (%define lr.default_reductions invalid values): Merge
1215 into...
1216 (%define enum variables): ... here, and update output.
1217
1218 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
1219
1220 Rename "default rule" to "default reduction".
1221 This includes changing variable names in code, changing
1222 comments, and renaming %define lr.default_rules to %define
1223 lr.default_reductions.
1224 * NEWS (2.5): Update IELR documentation.
1225 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c:
1226 Adjust YYDEFACT and yydefact_ documentation.
1227 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
1228 and lr.type documentation. Make some other wording
1229 improvements.
1230 (Glossary): Adjust cross-references and Default Reduction
1231 definition.
1232 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
1233 Remove a confusing comment pointed out by Akim Demaille.
1234 (initialize_LA): Adjust code.
1235 * src/print-xml.c (print_reductions): Adjust code.
1236 * src/print.c (print_reductions): Adjust code.
1237 * src/reader.c (reader): Adjust code.
1238 * src/tables.c (action_row): Adjust code.
1239 (token_actions): Adjust code.
1240 * src/tables.h: Adjust YYDEFACT documentation.
1241 * tests/input.at (%define lr.default_rules invalid values):
1242 Rename test group to...
1243 (%define lr.default_reductions invalid values): ... this, and
1244 update grammar file and expected output.
1245 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
1246 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
1247
1248 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1249
1250 Document %define lr.type and lr.default_rules.
1251 * NEWS (2.5): Add an entry.
1252 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
1253 besides just LALR(1) and GLR(1).
1254 * doc/bison.texinfo (Introduction): Likewise.
1255 (Language and Grammar): Bison is no longer limited to LALR(1)
1256 restrictions.
1257 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
1258 when trying to distinguish from GLR. Talk about LR(1) grammars
1259 rather than LALR(1) grammars.
1260 (Decl Summary): In %define api.push_pull entry, say it applies
1261 to deterministic parsers in C rather than LALR(1) parsers in C.
1262 Add lr.default_rules entry.
1263 Add lr.type entry.
1264 (Mystery Conflicts): Bison is no longer limited to LALR(1)
1265 restrictions.
1266 (Generalized LR Parsing): Same changes as for the previous GLR
1267 section.
1268 (Memory Management): Say deterministic rather than LALR(1).
1269 (Understanding): Correct some bison output.
1270 Index discussion of "accepting state".
1271 Say deterministic rather than LALR(1).
1272 (Bison Options): In --yacc entry, say deterministic rather than
1273 LALR(1).
1274 In --report, --graph, and --xml entries, just don't mention
1275 LALR(1).
1276 (C++ Parsers): Say deterministic rather than LALR(1).
1277 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
1278 (Glossary): Add Accepting State, Consistent State, Default Rule,
1279 and IELR(1) definitions.
1280 In Generalized LR (GLR) definition, make same changes as in
1281 previous GLR sections.
1282 In LALR(1) definition, say Bison uses LALR(1) by default rather
1283 than implying Bison is limited to LALR(1).
1284 (LocalWords): Add IELR.
1285
1286 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1287
1288 Finish implementing %define lr.type.
1289 Its value can be "LALR", "IELR", or "canonical LR".
1290 * lib/timevar.def (TV_IELR_PHASE1): New var.
1291 (TV_IELR_PHASE2): New var.
1292 (TV_IELR_PHASE3): New var.
1293 (TV_IELR_PHASE4): New var.
1294 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
1295 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
1296 Sbitset.h, ielr.h, and ielr.c.
1297 * src/getargs.h, src/getargs.c (enum trace, trace_args,
1298 trace_types): Add trace_ielr.
1299 * src/lalr.h, src/lalr.c (ngotos): Export it.
1300 (F): Rename to...
1301 (goto_follows): ... this, update all uses, and export it.
1302 (set_goto_map): Export it.
1303 (map_goto): Export it.
1304 (compute_lookahead_tokens): Don't free goto_follows yet. Now
1305 handled in ielr.
1306 (initialize_LA): Export it. Move lookback allocation to...
1307 (lalr): ... here because, for canonical LR, initialize_LA must
1308 be invoked but lookback and much of the rest of LALR isn't
1309 needed.
1310 * main.c (main): Instead of lalr, invoke ielr, which invokes
1311 lalr.
1312 * src/reader.c (reader): Default lr.type to "LALR".
1313 Default lr.default_rules to "accepting" if lr.type is "canonical
1314 LR". Leave the default as "all" otherwise.
1315 Check for a valid lr.type value.
1316 * src/state.h, src/state.c (struct state_list): Add state_list
1317 member.
1318 (state_new): Initialize state_list member to NULL.
1319 (state_new_isocore): New function, exported.
1320 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
1321 exercises all values of lr.type.
1322 (GNU AWK Grammar): Rename test group to...
1323 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
1324 AT_TEST_EXISTING_GRAMMAR.
1325 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
1326 (GNU pic Grammar): Rename test group to...
1327 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
1328 AT_TEST_EXISTING_GRAMMAR.
1329 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
1330 all values of lr.type.
1331 (Single State Split): New test groups using AT_TEST_LR_TYPE.
1332 (Lane Split): Likewise.
1333 (Complex Lane Split): Likewise.
1334 (Split During Added Lookahead Propagation): Likewise.
1335
1336 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1337
1338 Add new files for IELR and canonical LR implementation.
1339 * src/AnnotationList.c: New.
1340 * src/AnnotationList.h: New.
1341 * src/InadequacyList.c: New.
1342 * src/InadequacyList.h: New.
1343 * src/Sbitset.c: New.
1344 * src/Sbitset.h: New.
1345 * src/ielr.c: New.
1346 * src/ielr.h: New.
1347
1348 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1349
1350 Implement %define lr.default_rules.
1351 Its value describes the states that are permitted to contain
1352 default rules: "all", "consistent", or "accepting".
1353 * src/reader.c (reader): Default lr.default_rules to "all".
1354 Check for a valid lr.default_rules value.
1355 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
1356 is "accepting", then only mark the accepting state as
1357 consistent.
1358 (initialize_LA): Tell state_lookahead_tokens_count whether
1359 lr.default_rules is "accepting".
1360 * src/tables.c (action_row): If lr.default_rules is not "all",
1361 then disable default rules in inconsistent states.
1362 * src/print.c (print_reductions): Use this opportunity to
1363 perform some assertions about whether lr.default_rules was
1364 obeyed correctly.
1365 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
1366 helps with checking the parser tables for a grammar.
1367 * tests/input.at (%define lr.default_rules invalid values): New
1368 test group.
1369 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
1370 AT_TEST_TABLES_AND_PARSE.
1371 (`no %define lr.default_rules'): New test group generated by
1372 AT_TEST_LR_DEFAULT_RULES.
1373 (`%define lr.default_rules "all"'): Likewise.
1374 (`%define lr.default_rules "consistent"'): Likewise.
1375 (`%define lr.default_rules "accepting"'): Likewise.
1376
1377 2009-04-20 Akim Demaille <demaille@gostai.com>
1378
1379 Consistently refer to Yacc, not YACC.
1380 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
1381
1382 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
1383
1384 Pacify make maintainer-check-posix.
1385 * tests/input.at (%define, --define): Move bison command-line
1386 options before grammar file name.
1387
1388 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1389
1390 Document semicolon warnings.
1391 * NEWS (2.5): Here.
1392
1393 2008-12-08 Akim Demaille <demaille@gostai.com>
1394
1395 Fix portability issue in the test suite.
1396 * tests/local.at (AT_MATCHES_CHECK): New.
1397 Based on Perl instead of Sed. Sed has too many portability
1398 pitfalls, not ever Sed is GNU Sed.
1399 * tests/actions.at (Fix user actions without a trailing semicolon):
1400 Use it.
1401
1402 2008-12-07 Di-an Jan <dianj@freeshell.org>
1403
1404 Implement the FIXME that ends an user action with a semicolon
1405 if it seems necessary.
1406 * src/scan-code.l (flex rules section): Flag cpp directive from
1407 any `#' to the first unescaped end-of-line. Semicolon is not
1408 needed after `;', `{', '}', or cpp directives and is needed after
1409 any other token (whitespaces and comments have no effect).
1410 * tests/actions.at (Fix user actions without a trailing semicolon):
1411 New test.
1412 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
1413 to make user actions complete statements.
1414 Adjust column numbers in error messages.
1415 * tests/regression.at (Fix user actions without a trailing semicolon):
1416 Remove. Covered by new test.
1417
1418 2009-04-14 Akim Demaille <demaille@gostai.com>
1419
1420 doc: minor fixes.
1421 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
1422 (Table of Symbols): Remove duplicate entry for %debug.
1423
1424 2009-04-10 Eric Blake <ebb9@byu.net>
1425
1426 submodules: update to latest
1427 * submodules/autoconf: Use latest upstream Autoconf.
1428
1429 2009-04-06 Eric Blake <ebb9@byu.net>
1430
1431 Work around autoconf 2.63b bug in testsuite.
1432 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
1433 autoconf bug related to # in test.
1434
1435 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1436
1437 * NEWS (2.5): Describe new -D/--define feature.
1438
1439 2008-11-10 Akim Demaille <demaille@gostai.com>
1440
1441 --trace=muscles
1442 * src/getargs.h, src/getargs.c (trace_muscle): New.
1443 (trace_types, trace_args): Support it.
1444 * src/output.c (output_skeleton): Use it.
1445
1446 2008-11-10 Akim Demaille <demaille@gostai.com>
1447
1448 muscles_output.
1449 * src/output.c (muscles_output): New, extracted from...
1450 (output_skeleton): here.
1451 Adjust.
1452
1453 2008-11-21 Akim Demaille <demaille@gostai.com>
1454
1455 Display the changes in cross-options.texi.
1456 * build-aux/cross-options.pl ($sep): New, to separate items.
1457 * doc/Makefile.am ($(srcdir)/cross-options.texi): Use diff to display
1458 the changes.
1459
1460 2008-11-20 Di-an Jan <dianj@freeshell.org>
1461
1462 Improves options in the manual.
1463 * doc/bison.texinfo (-g, -x): Add space before argument.
1464 (Option Cross Key): Implement FIXME: listing directives also.
1465 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
1466 (Short Option): Special case -d. Put arguments inside @option.
1467 (Bison Directive): Add column, automatically extracted from
1468 src/scan-gram.l (actual name passed as the first argument)
1469 with special case for %define.
1470 * doc/Makefile.am (doc/cross-options.texi): Pass src/scan-gram.l
1471 to build-aux/cross-options.pl.
1472 * src/getargs.c (usage): Document limitations of cross-options.pl.
1473 * src/scan-gram.l: Likewise.
1474
1475 2009-02-25 Akim Demaille <demaille@gostai.com>
1476
1477 Copyright years.
1478 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
1479
1480 2008-12-08 Akim Demaille <demaille@gostai.com>
1481
1482 Install autoconf as a submodule to get m4sugar.
1483 * .gitmodules: Add submodules/autoconf.
1484 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
1485 submodules/autoconf.
1486
1487 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1488
1489 Simplify last patch slightly.
1490 * src/getargs.c (getargs): Here.
1491
1492 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1493
1494 Fix last warning from --enable-gcc-warnings.
1495 * src/getargs.c (getargs): Don't assign const address to non-const
1496 pointer.
1497
1498 2008-11-17 Di-an Jan <dianj@freeshell.org>
1499
1500 Handle --enable-gcc-warnings.
1501 * src/getargs.c (command_line_location): Set parameters to void.
1502
1503 2008-11-11 Akim Demaille <demaille@gostai.com>
1504
1505 AT_FULL_COMPILE.
1506 * tests/actions.at, tests/regression.at: Use it.
1507
1508 2008-11-07 Akim Demaille <demaille@gostai.com>
1509
1510 Pass command line location to skeleton_arg and language_argmatch.
1511 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
1512 The location argument is now mandatory.
1513 Adjust all dependencies.
1514 (getargs): Use command_line_location.
1515
1516 2008-11-07 Akim Demaille <demaille@gostai.com>
1517
1518 -D, --define.
1519 * src/getargs.c (usage): Document -D.
1520 Fix help string for --locations.
1521 (command_line_location): New.
1522 (short_options, long_options, getargs): Support -D, --define.
1523 (getargs): Move -d support at the right place.
1524 * doc/bison.texinfo (Bison Options): Update.
1525 * tests/input.at (%define, --define): New.
1526
1527 2008-11-07 Akim Demaille <demaille@gostai.com>
1528
1529 Initialize the muscle table before parsing the command line.
1530 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
1531 (getargs): Define file_name.
1532 * src/main.c (main): Initialize muscle_tab before calling
1533 getargs.
1534 * src/muscle_tab.c (muscle_init): No longer define file_name, as
1535 its value is not available yet.
1536
1537 2008-11-09 Akim Demaille <demaille@gostai.com>
1538
1539 Require the generation of parse-gram.output.
1540 * src/Makefile.am (YACC): Pass --report=all.
1541
1542 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1543
1544 * NEWS (2.5): New stub.
1545
1546 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1547
1548 Fix options documentation.
1549 * build-aux/cross-options.pl: As in --help output, write optional
1550 arguments as [=ARG] not =[ARG].
1551 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
1552
1553 2008-11-07 Akim Demaille <demaille@gostai.com>
1554
1555 Fix --help.
1556 * src/getargs.c (usage): Fix help string for -W.
1557
1558 2008-11-07 Akim Demaille <demaille@gostai.com>
1559
1560 Handle more general types of option arguments.
1561 * build-aux/cross-options.pl: The argument ends at the first
1562 space, not the first non-symbol character.
1563 Use @var for each word appearing the argument description.
1564
1565 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1566
1567 Remove spurious initial empty lines.
1568 * data/location.cc: End the @output lines with an @.
1569
1570 2008-11-04 Akim Demaille <demaille@gostai.com>
1571
1572 Remove spurious initial empty lines.
1573 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1574 * data/yacc.c: End the @output lines with an @.
1575
1576 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1577
1578 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
1579 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
1580 requirements for a correct m4 are stricter.
1581 * m4/m4.m4: Replace with Autoconf 2.63's m4/m4.m4.
1582 * configure.ac: Update to use AC_PROG_GNU_M4.
1583 Reported by Eric Blake.
1584
1585 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1586
1587 Help with updating web manual.
1588 * HACKING: Incorporate instructions from gnulib/doc/README.
1589 * bootstrap.conf (gnulib_modules): Add gendocs.
1590
1591 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1592
1593 Fix strange %define locations for default values.
1594 Reported by Akim Demaille at
1595 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
1596 and discussed again starting at
1597 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
1598 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
1599 because location information is bogus.
1600 Use angle brackets to delimit fake file name because square brackets
1601 look like underexpanded m4. Choose a better fake file name.
1602 Use negative line numbers.
1603 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
1604 * src/location.c (location_print): If line for a boundary is negative,
1605 only print that boundary's file name.
1606 * src/location.h: Document that.
1607 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1608 defaults): Update output.
1609
1610 2008-11-07 Akim Demaille <demaille@gostai.com>
1611
1612 Locations without columns for command line arguments.
1613 * src/location.c (location_print): Don't display negative columns.
1614 * src/location.h: Document this.
1615
1616 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
1617
1618 Add reminder about uploading public key to keys.gnupg.net.
1619 * HACKING (Release Procedure): Here.
1620
1621 2009-03-31 Akim Demaille <demaille@gostai.com>
1622
1623 bootstrap: --help to stdout.
1624 * bootstrap (usage): Don't send --help to stderr.
1625 Use a here doc instead of a long string.
1626
1627 2009-03-31 Akim Demaille <demaille@gostai.com>
1628
1629 bootstrap: README-hacking no longer exists
1630 * bootstrap (checkout_only_file): Set to HACKING.
1631
1632 2009-03-26 Akim Demaille <demaille@gostai.com>
1633
1634 doc: merge HACKING and README-hacking.
1635 Two files is confusing.
1636 Reported by Alexandre Duret-Lutz.
1637
1638 * README-hacking: Merge into...
1639 * HACKING (Working from the repository): here.
1640
1641 2009-03-26 Akim Demaille <demaille@gostai.com>
1642
1643 doc: update README-hacking.
1644 * README-hacking: We now use git and git submodules.
1645 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
1646
1647 2009-03-26 Akim Demaille <demaille@gostai.com>
1648
1649 lalr1.cc: avoid GCC 4.3 warnings.
1650 GCC 4.3 now warns about "a || b && c" and asks for explicit
1651 parentheses.
1652 Reported by Alexandre Duret-Lutz.
1653 * data/location.cc: Update copyright years.
1654 (Position::operator==): Use parens to make precedence explicit.
1655 Compare lines and columns first, as they are more likely to be
1656 different, and they are faster to compare.
1657
1658 2009-03-26 Akim Demaille <demaille@gostai.com>
1659
1660 gnulib: update.
1661 * gnulib: Update to latest.
1662 * lib/Makefile.am (AM_CPPFLAGS): It is now defined by gnulib, so
1663 use +=.
1664
1665 2009-01-08 Akim Demaille <demaille@gostai.com>
1666
1667 Fix grep portability issues.
1668 Grep on Solaris does not support -q.
1669 Reported by Summum Bonum.
1670
1671 * NEWS: Add a stub for 2.4.2.
1672 * THANKS: Add Summum Bonum.
1673 * tests/atlocal.in (EGREP): New.
1674 (CC, CXX, XSLTPROC): Make it possible to override them via
1675 envvars.
1676 * tests/java.at: Use $EGREP instead of egrep.
1677 Use AT_CHECK's ignore instead of grep's -q.
1678
1679 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1680
1681 Version 2.4.1.
1682 * NEWS: Set version and date.
1683 * lib/Makefile.am: Update copyright year.
1684 * tests/atlocal.in: Update copyright year.
1685
1686 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1687
1688 Semicolon feature removal is not about future language support.
1689 * NEWS: The semicolon feature is no longer active for newer languages,
1690 so don't claim that it causes trouble for them.
1691
1692 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1693
1694 * gnulib: Update submodule to HEAD.
1695
1696 2008-12-09 Akim Demaille <demaille@gostai.com>
1697
1698 Update data/README.
1699 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
1700
1701 2008-12-05 Eric Blake <ebb9@byu.net>
1702
1703 Build testsuite with newer autoconf.
1704 * tests/output.at (m4_expand): Don't override in newer autoconf,
1705 where the underlying implementation changed.
1706 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
1707 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
1708 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
1709 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
1710 since some of them contain unbalanced ')'.
1711
1712 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
1713
1714 * NEWS: Clarify a little.
1715
1716 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
1717
1718 * NEWS: Update for recent changes.
1719
1720 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1721
1722 Fix unexpanded macros in GLR defines file.
1723 Reported by Csaba Raduly at
1724 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
1725 * THANKS (Csaba Raduly): Add.
1726 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
1727 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
1728 lexer in a separate module that includes the defines file.
1729 (AT_CHECK_CALC): Use AT_FULL_COMPILE and request compilation of lexer
1730 source.
1731 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
1732 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
1733 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
1734 (AT_DATA_SOURCE_PROLOGUE): New.
1735 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
1736 (AT_DATA_SOURCE): New.
1737 (AT_FULL_COMPILE): New, copied from master branch and extended to
1738 support an additional source file.
1739
1740 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1741
1742 Don't let maintainer-*-check targets force a version update.
1743 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
1744 handled.
1745
1746 2008-11-17 Di-an Jan <dianj@freeshell.org>
1747
1748 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
1749 Align menus. Adjust word wrapping. Use node names for menu names.
1750 (Examples): Don't abbreviate node names.
1751 (LocalWords): Remove abbreviations.
1752 (Copying): Make description a sentence.
1753 (Java Action Features): Remove period to match the rest of menu.
1754
1755 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
1756
1757 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
1758 * configure.ac: Adjust usage.
1759 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1760 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1761 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
1762
1763 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1764
1765 Don't add a semicolon to actions for %skeleton or %language.
1766 It breaks Java test cases as reported by Akim Demaille.
1767 * src/scan-code.l: Implement.
1768
1769 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1770
1771 Clean up %skeleton and %language priority implementation.
1772 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
1773 remove static qualifier because others will soon need to see it.
1774 (language_prio): Likewise.
1775 (getargs): Use command_line_prio rather than 0.
1776 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
1777 enum fields.
1778 (skeleton_prio): Extern it.
1779 (language_prio): Extern it.
1780 * src/parse-gram.y: Use grammar_prio rather than 1.
1781
1782 2008-11-04 Akim Demaille <demaille@gostai.com>
1783
1784 * NEWS: Mention the trailing semicolon in action.
1785
1786 2008-11-04 Akim Demaille <demaille@gostai.com>
1787
1788 Reformat NEWS.
1789 * NEWS: Use more outline-mode markup.
1790 Suggested by Jim Meyering.
1791
1792 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
1793
1794 Fix user actions without a trailing semicolon.
1795 Reported by Sergei Steshenko at
1796 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
1797 * THANKS (Sergei Steshenko): Add.
1798 * src/scan-code.l (SC_RULE_ACTION): Fix it.
1799 * tests/regression.at (Fix user actions without a trailing semicolon):
1800 New test case.
1801
1802 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1803
1804 Initiate further development.
1805 * NEWS: Create an empty section for new entries.
1806 * gnulib: Update submodule to HEAD.
1807
1808 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1809
1810 * NEWS: Version 2.4.
1811
1812 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1813
1814 Prepare for next release.
1815 * NEWS: Briefly mention changes since 2.3b.
1816 * README: Say GNU m4 1.4.6, which we've been requiring in release
1817 announcements already, not 1.4.3, which breaks the build.
1818
1819 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1820
1821 Say %language is experimental.
1822 We're thinking of extending it's effect on output file naming. See the
1823 thread at
1824 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1825 * NEWS: Say it's experimental.
1826 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1827 recommend it over %skeleton for now.
1828 (Bison Options): Likewise.
1829 (C++ Bison Interface): Use %skeleton not %language.
1830 (Calc++ Parser): Use %skeleton not %language.
1831 * src/getargs.c (usage): Say it's experimental.
1832
1833 2008-11-01 Di-an Jan <dianj@freeshell.org>
1834 Paolo Bonzini <bonzini@gnu.org>
1835
1836 Support all Java parser class modifiers.
1837 * data/java.m4 (b4_percent_define_get3): New.
1838 (b4_final_if, b4_strictfp_if): New.
1839 * data/lalr1.java (final, strictfp, extends, implements): Support.
1840 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1841 documentation.
1842 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1843 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1844 (AT_CHECK_JAVA_GREP): New.
1845 (Java parser class modifiers): New test.
1846 (Java parser class extends and implements): New test.
1847
1848 Model exception propagation better with throws and lex_throws.
1849 * data/java.m4 (b4_list2): New.
1850 (throws): Change default.
1851 * data/lalr1.java (yyaction): Add throws.
1852 (parse): Add lex_throws in addition to throws.
1853 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1854 * tests/java.at (Java throws specifications): New test.
1855
1856 Improve documentation for Java parsers.
1857 * doc/bison.texinfo (Java Parsers): Add subsections.
1858 Don't quote first argument of %define.
1859 (Java Bison Interface): Document output files. Move documentation
1860 of parser class and merge into Java Parser Interface. Document
1861 features that error out. Document directives with no effect.
1862 Move note about Javadoc higher.
1863 (Java Semantic Values): Explicitly mention stype.
1864 Document that generic types cannot be used.
1865 (Java Location Values): Use @deftypeivar. Document constructors.
1866 Correct return value for toString.
1867 (Java Parser Interface): List undocumented constants/fields.
1868 Move documentation of fields added by %parse-param closer to list
1869 of members. Document that token names are added as fields.
1870 Document constructors accurately. Remove error method.
1871 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1872 Interface. Describe %code lexer and yylex accutately.
1873 Remove documentation that does not match the code.
1874 (Java Action Features): New.
1875 (Java Differences): Add reference. Add item on semantic values.
1876 Add note about @{ ... @}. Clarify %% epilogue placement.
1877 (Java Declarations Summary): New.
1878
1879 Fix Java skeleton.
1880 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1881 (b4_remove_comma): Quote test argument.
1882 (b4_identification): Remove "bison" field.
1883 * tests/java.at (Java parser class and package names): New test.
1884 (Java %parse-param and %lex-param): New test.
1885 (Java stype, position_class and location_class): New test.
1886
1887 2008-10-31 Di-an Jan <dianj@freeshell.org>
1888
1889 * data/lalr1.jave: Update copyright years.
1890 (YYParser): Correct name of "generated from" file in Javadoc:
1891 use b4_file_name instead of @ofile@.
1892 (Location constructor): Correct Javadoc parameter name.
1893 (yylloc): Add missing opening m4 quote after b4_location_if.
1894 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1895 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1896 (YYParser constructor): Correct Javadoc parameter name.
1897
1898 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1899
1900 Always put auxiliary code files in the same dir as other output files.
1901 * src/files.c (compute_file_name_parts): When the user specifies
1902 --output but not --file-prefix, extract the directory prefix from the
1903 file prefix not from the grammar file name. This affects the location
1904 of files like location.hh generated by the C++ skeleton. The includes
1905 in the other output files require this fix.
1906 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1907 for expected output files.
1908 (Output files): Add a test for the above.
1909
1910 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1911
1912 * gnulib: Update submodule to HEAD.
1913
1914 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1915
1916 Update copyright year.
1917 * src/files.c: Here.
1918
1919 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1920
1921 Don't overwrite the input file.
1922 * src/files.c (output_file_name_check): Fatal error if using input file
1923 for output.
1924 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1925 argument.
1926 (Conflicting output files): Add test.
1927
1928 2008-10-28 Akim Demaille <demaille@gostai.com>
1929
1930 Space changes.
1931 * data/lalr1.cc: Formatting changes.
1932
1933 2008-10-28 Akim Demaille <demaille@gostai.com>
1934
1935 Don't define debugging functions when !YYDEBUG.
1936 * data/lalr1.cc (debug_stream, set_debug_stream)
1937 (debug_level_type, debug_level, set_debug_level): Don't
1938 declare them when YYDEBUG is not defined.
1939 The implementation are already YYDEBUG-aware.
1940
1941 2008-10-28 Akim Demaille <demaille@gostai.com>
1942
1943 Prefer "continue" for empty loop bodies.
1944 * etc/bench.pl.in: Use "continue" instead of {}.
1945
1946 2008-10-28 Akim Demaille <demaille@gostai.com>
1947
1948 Space and comments changes.
1949 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1950 * data/c.m4, data/lalr1.cc: Space changes.
1951
1952 2008-10-28 Akim Demaille <demaille@gostai.com>
1953
1954 Make gnulib a submodule.
1955 * gnulib: New.
1956 * .gitmodules (gnulib): New.
1957
1958 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1959
1960 Fix yyerror_range for user-defined location type in C++. Reported by
1961 Georg Sauthoff at
1962 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1963 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1964 * THANKS (Georg Sauthoff): Add.
1965
1966 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1967
1968 Update several administrative files mainly to facilitate releasing.
1969 * HACKING (Administrivia): Make the git-merge-changelog notes more
1970 helpful.
1971 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1972 (Release Procedure): Update for git and add numerous details that were
1973 previously missing.
1974 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1975 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1976 that announcements don't claim we bootstrapped with whatever bison
1977 happened to be in PATH. Add flex as a bootstrap tool.
1978 * Makefile.maint: Remove, previously replaced by maint.mk.
1979 * Makefile.cfg: Remove, and migrate settings to...
1980 * cfg.mk: ... here for the sake of `make announcement'.
1981 * bootstrap.conf (gnulib_modules): Add announce-gen.
1982 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1983 Berry.
1984
1985 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1986
1987 Small but important bugfixes for the Java skeleton.
1988 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1989 (yy_symbol_print): Call toString on yyvaluep.
1990
1991 2008-08-29 Akim Demaille <demaille@gostai.com>
1992
1993 Clarify UPDATED use.
1994 * doc/bison.texinfo: It refers to the last edition of this file,
1995 not to the release date of Bison.
1996 Reported by Joel E. Denny.
1997
1998 2008-08-29 Akim Demaille <demaille@gostai.com>
1999
2000 * README: Update FAQ pointer.
2001 Reported by Joel E. Denny.
2002
2003 2008-08-27 Eric Blake <ebb9@byu.net>
2004
2005 Resync m4sugar from autoconf.
2006 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
2007 (m4_init): Adjust to latest m4.git changes.
2008 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
2009 effects.
2010 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
2011 (_m4_list_cmp): Reduce side effects.
2012
2013 2008-08-27 Akim Demaille <demaille@gostai.com>
2014
2015 Check yyerrok in calc.at.
2016 * tests/calc.at (calc.y): Use yyerrok on "( error )".
2017 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
2018 expected.
2019
2020 2008-08-27 Akim Demaille <demaille@gostai.com>
2021
2022 Support yyerrok in lalr1.cc.
2023 YYBACKUP is still to import back into lalr1.cc.
2024 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
2025
2026 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
2027
2028 For maintainer-check*, don't recompile for a $(VERSION) update.
2029 * cfg.mk: New file.
2030 (_is-dist-target): Override the one in GNUmakefile.
2031 * Makefile.am (EXTRA_DIST): Add cfg.mk.
2032
2033 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
2034
2035 Update for recent change to gnulib.
2036 * src/parse-gram.y: Don't include strverscmp.h. It comes from
2037 string.h now.
2038
2039 2008-08-15 Eric Blake <ebb9@byu.net>
2040
2041 Remaining m4sugar merge from autoconf.
2042 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
2043 * data/m4sugar/foreach.m4: New file, copied from autoconf.
2044 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
2045 * src/output.c (output_skeleton): Tell m4 how to find it.
2046
2047 Partial m4sugar merge from autoconf: m4_map.
2048 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
2049 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
2050 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
2051 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
2052 for empty list.
2053 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
2054 Likewise.
2055 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
2056 declares it.
2057
2058 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
2059
2060 Keep .version and PACKAGE_VERSION in sync.
2061 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
2062 dependency, and add comments justifying this in more detail. Discussed
2063 starting at
2064 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
2065
2066 2008-08-06 Eric Blake <ebb9@byu.net>
2067
2068 Partial m4sugar merge from autoconf: m4_shiftn.
2069 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
2070 (m4_shift2, m4_shift3): New macros.
2071 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
2072 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
2073 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
2074 * data/java.m4 (b4_remove_comma): Likewise.
2075
2076 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
2077 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
2078 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
2079 (m4_init): Consolidate wrapped text into single m4_wrap.
2080 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
2081 in wrapped text.
2082
2083 2008-08-05 Eric Blake <ebb9@byu.net>
2084
2085 Partial m4sugar merge from autoconf: builtins, version.m4.
2086 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
2087 (m4_prepend): Remove, as it is unused and inherently quadratic,
2088 whereas m4_append is linear in newer m4.
2089 (m4_mkstemp): New builtin.
2090 (m4_symbols): Make rename conditional.
2091 (m4_version_prereq): Ensure fatal error if used in bison, which
2092 intentionally lacks version.m4.
2093
2094 Fix comments in m4sugar.
2095 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
2096
2097 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
2098
2099 Update for recent .gitignore fix in Gnulib.
2100 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
2101 anchored .gitignore entries.
2102
2103 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
2104
2105 Set gnu or gnits strictness.
2106 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
2107 development and gnits strictness for releases. Based on Eric Blake's
2108 suggestion at
2109 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
2110
2111 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
2112
2113 * NEWS: Clarify documentation of %language.
2114
2115 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
2116
2117 Support usage of git-merge-changelog.
2118 * .gitattributes: New.
2119 * HACKING: Document usage of git-merge-changelog.
2120 * bootstrap: Install git-merge-changelog entries in .git/config
2121 if appropriate.
2122
2123 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2124
2125 Remove remaining dependence on CVS Id keyword.
2126 * ChangeLog: For the sake of people still using CVS, don't use dollars
2127 when mentioning Id.
2128 * data/xslt/bison.xsl: Remove Id from header comments, where it was
2129 unusual anyway.
2130 * data/xslt/xml2dot.xsl: Likewise.
2131 * data/xslt/xml2text.xsl: Likewise.
2132 * data/xslt/xml2xhtml.xsl: Likewise.
2133 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
2134 * doc/Makefile.am (neutralize): Remove, no longer needed.
2135 (.x.1): Don't use neutralize.
2136 (edit): Don't substitute for ID.
2137 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
2138
2139 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2140
2141 Fix dependence on computed configure variables.
2142 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
2143 $(top_srcdir)/configure.ac so that changes to computed variables, such
2144 as PACKAGE_VERSION, are seen.
2145 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
2146
2147 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
2148
2149 Update copyright dates for recent changes.
2150 * Makefile.am: Here.
2151 * src/Makefile.am: Here.
2152 * src/reduce.c: Here.
2153 * tests/reduce.at: Here.
2154
2155 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
2156
2157 Use git-version-gen for version names between releases.
2158 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
2159 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
2160 * .prev-version: New.
2161 * .version.in: Remove.
2162 * ChangeLog: Remove the Id previously used for capturing the CVS
2163 revision.
2164 * GNUmakefile: Remove, now copied from Gnulib.
2165 * Makefile.am: Add code suggested by comments in
2166 build-aux/git-version-gen.
2167 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
2168 .prev-version, and .version.
2169 * NEWS (2.3b+): Rename to...
2170 (?.?): ... this because we're dropping the "+" version naming scheme,
2171 but, in general, we still can't be sure of our next release name.
2172 * bootstrap: Add a quick hack to remove from .gitignore the
2173 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
2174 entry. This should really be fixed in gnulib instead.
2175 * bootstrap.conf (gnulib_modules): Add gnumakefile.
2176 * configure.ac (AC_INIT): Set version name by invoking
2177 build-aux/git-version-gen.
2178 (AC_CONFIG_FILES): Remove .version, now generated by
2179 build-aux/git-version-gen.
2180 * maint.mk: New, copied from coreutils.
2181 * doc/.cvsignore (bison.1): Add.
2182 * doc/.gitignore (/bison.1): Add.
2183 * doc/bison.1: Remove, generated.
2184 * src/.cvsignore (revision.c): Remove.
2185 * src/.gitignore (/revision.c): Remove.
2186 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
2187 (BUILT_SOURCES): Remove revision.c.
2188 (revision.c): Remove.
2189 * src/getargs.c (version): Don't print revision after the VERSION.
2190 * src/revision.h: Remove.
2191
2192 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2193
2194 Fix untranslatable composition of sentences. Reported by Goran
2195 Uddeborg at
2196 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
2197 * THANKS (Goran Uddeborg): Add.
2198 * src/reduce.c (reduce_print): Report the number of nonterminals and
2199 rules useless in the grammar in separate sentences.
2200 * tests/reduce.at (Useless Rules): Update output.
2201 (Reduced Automaton): Likewise.
2202 (Underivable Rules): Likewise.
2203 (Empty Language): Likewise.
2204
2205 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
2206
2207 Fix some .gitignore and .cvsignore problems.
2208 * bootstrap (insert_sorted_if_absent): Replace all uses with...
2209 (insert_vc_ignore): ... this new function, which prepends `/' to all
2210 .gitignore entries before passing them to insert_sorted_if_absent.
2211 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
2212 .cvsignore files are maintained even though Bison developers run
2213 bootstrap while using Git.
2214 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
2215 unneeded by Bison.
2216 (gnulib): Add.
2217 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
2218 unneeded. Reported by Eric Blake.
2219 * lib/.gitignore (/*~): Add.
2220 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
2221 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
2222 Blake.
2223 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
2224
2225 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
2226
2227 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
2228 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
2229 * bootstrap.conf (gnulib_modules): Add unsetenv.
2230 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
2231 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
2232 (/setenv.m4): Add.
2233 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
2234 the first argument because it may become position-dependent, and unset
2235 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
2236 Add comments explaining these issues in more detail.
2237
2238 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
2239
2240 Add .gitignore everywhere based on .cvsignore.
2241 * .gitignore: New.
2242 * build-aux/.gitignore: New.
2243 * data/.gitignore: New.
2244 * doc/.gitignore: New.
2245 * etc/.gitignore: New.
2246 * examples/.gitignore: New.
2247 * examples/calc++/.gitignore: New.
2248 * lib/.gitignore: New.
2249 * m4/.gitignore: New.
2250 * po/.gitignore: New.
2251 * runtime-po/.gitignore: New.
2252 * src/.gitignore: New.
2253 * tests/.gitignore: New.
2254
2255 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2256
2257 * NEWS (2.3b+): New section, empty for now.
2258 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
2259
2260 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2261
2262 * NEWS (2.3b): Update release date since there has been a delay in
2263 getting the announcements and tarballs out.
2264
2265 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
2266
2267 * NEWS: Version 2.3b.
2268 * configure.ac (AC_INIT): Likewise.
2269 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
2270
2271 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
2272
2273 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
2274 been doing it for years.
2275 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
2276 (Release Procedure): Add FIXME about make alpha being unmaintained.
2277
2278 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
2279
2280 * data/yacc.c: Reformat m4 a little for readability.
2281 * src/lalr.c (build_relations): Correct comment.
2282
2283 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2284
2285 DJGPP specific issue.
2286 * djgpp/config.sed: Fixes required to run configure scripts generated
2287 by autoconf 2.62.
2288
2289 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2290
2291 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
2292 coordinator@translationproject.org.
2293
2294 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2295
2296 * THANKS: Add Eric Blake.
2297
2298 2008-04-23 Eric Blake <ebb9@byu.net>
2299
2300 Revert prior patch, by working around autoconf regression.
2301 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
2302 ("Output file name: ("): Uncomment test.
2303 ("Output file name: )"): Likewise.
2304 Based on an idea from Noah Misch.
2305
2306 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2307
2308 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
2309 2.61. Reported by Juan Manuel Guerrero at
2310 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
2311 * tests/output.at ("Output file name: ("): Comment out test case for
2312 now.
2313 ("Output file name: )"): Likewise.
2314
2315 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2316
2317 * GNUmakefile: Update git-version-gen invocation so make dist
2318 succeeds.
2319
2320 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2321
2322 Update to the current gnulib CVS repository, and fix trigraph handling
2323 in Bison.
2324 * bootstrap: Update gnulib CVS repository URL.
2325 (symlink_to_dir): Encapsulate the code that guarantees the destination
2326 directory exists into...
2327 (check_dst_dir): ... this new function, and...
2328 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
2329 fail when copying files into lib/uniwidth/.
2330 * src/output.c (prepare_symbols): When writing yytname muscles, where
2331 symbol names will be encoded in C-string literals, tell quotearg to
2332 escape trigraphs. This used to be the default in gnulib.
2333 * tests/regression.at (Token definitions): Because of the change in
2334 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
2335 escapes trigraphs in symbol names. Thus, yytname no longer has
2336 trigraphs unnecessarily doubly escaped. Update test case output.
2337 Extend test case to be sure Bison's own error messages will no longer
2338 have trigraphs in symbol names unnecessarily escaped once.
2339
2340 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2341
2342 Fix make dist infinite loop reported by Juan Manuel Guerrero at
2343 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
2344 * .cvsignore: Add .version.
2345 * .version.in: New.
2346 * bootstrap.conf (gnulib_modules): Add git-version-gen.
2347 * configure.ac (AC_CONFIG_FILES): Add .version.
2348 * build-aux/.cvsignore: Add git-version-gen.
2349
2350 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
2351
2352 * NEWS (2.3a+): Mention that -g now takes an argument.
2353 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
2354 consistency. Update the -g and -x entries now that they take
2355 arguments. Use brackets to indicate optional arguments.
2356 * src/getargs.c (usage): Explain the relationship between arguments of
2357 long and short options more completely. Document --defines and -d
2358 separately since the former takes an argument but, for POSIX Yacc, the
2359 latter does not.
2360 (short_options): Let -W take an optional argument like --warnings.
2361 (getargs): Sort cases.
2362
2363 2008-02-28 Akim Demaille <demaille@gostai.com>
2364
2365 * doc/bison.texinfo: Fix a few typos.
2366
2367 2008-02-28 Akim Demaille <akim@epita.fr>
2368
2369 * doc/bison.texinfo (Bison Options): Document -W.
2370 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
2371
2372 2008-02-28 Akim Demaille <akim@epita.fr>
2373
2374 * src/getargs.c (short_options): Split and sort for readability.
2375 -g and -x take optional arguments, just like their long options.
2376 * build-aux/cross-options.pl: Use /x to make the regexp easier to
2377 understand.
2378 Fix the handling of $opt which resulted in all the argument to be
2379 considered as optional.
2380
2381 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
2382
2383 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
2384 say its interface is experimental.
2385 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
2386 Java.
2387 (Bison Options): In the -L and --language entry, mention Java.
2388 (Java Bison Interface): Say the interface is experimental.
2389 * src/getargs.c (usage): Mention -L and --language.
2390
2391 * NEWS (2.3a+): Say the push parsing interface is experimental.
2392 * doc/bison.texinfo (Push Decl): Likewise.
2393 (Decl Summary): Likewise in the "%define api.push_pull" entry.
2394 (Push Parser Function): Likewise.
2395 (Pull Parser Function): Likewise.
2396 (Parser Create Function): Likewise.
2397 (Parser Delete Function): Likewise.
2398 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
2399 yypull_parse, and yypush_parse entries.
2400
2401 * NEWS (2.3a+): Mention XML support, and say the schema is
2402 experimental.
2403 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
2404 * src/getargs.c (usage): Say the XML schema is experimental.
2405
2406 * NEWS (2.3a+): Say option instead of flag.
2407
2408 2008-02-21 Wojciech Polak <polak@gnu.org>
2409
2410 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
2411 text.
2412
2413 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
2414
2415 Fix impure push parser compile error reported by Bob Rossi at
2416 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
2417 * data/yacc.c: Clean up whitespace in the output a little.
2418 (yypstate_allocated): Define for impure push parsers regardless of
2419 whether the pull interface is also requested.
2420 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
2421 check impure push parsers without the pull interface.
2422
2423 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
2424 yyerror takes arguments specified by %parse-param while yypstate_new
2425 does not.
2426 * doc/bison.texinfo (Parser Create Function): Document that
2427 yypstate_new returns 0 for multiple impure parser instances.
2428 * tests/push.at (Push Parsing: Multiple impure instances): Update
2429 expected stderr output.
2430
2431 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2432
2433 * runtime-po/POTFILES.in (push.c): Remove.
2434
2435 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2436
2437 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
2438 * data/push.c: Rename to...
2439 * data/yacc.c: ... this, overwriting it.
2440 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
2441 `%push-pull-parser' -> `%define api.push_pull "both"'.
2442 Remove old yacc.c tests, and update push.c tests to yacc.c.
2443
2444 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2445
2446 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
2447 `"%code top" blocks' instead of `%code "top" blocks'.
2448 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
2449 Clean up whitespace in the output a little.
2450
2451 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2452
2453 Fix documentation problems reported by Tim Josling at
2454 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
2455 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
2456 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
2457 integers. Explain the effect of literal string aliases on error
2458 messages. Copy token 0 documentation from the C++ skeleton
2459 documentation.
2460
2461 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2462
2463 Accept a token number in a %left, %right, or %nonassoc for POSIX
2464 conformance. Reported by Tim Josling at
2465 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
2466 * NEWS (2.3a+): Mention.
2467 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
2468 and code numbers are treated by precedence declarations.
2469 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
2470 of symbols.1.
2471 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
2472 of symbol.
2473 (symbol.prec): New, just like symbol but allows INT.
2474 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
2475 longer holds.
2476 * tests/regression.at (Token number in precedence declaration): New
2477 test case.
2478
2479 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2480
2481 DJGPP specific issues.
2482 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
2483 be changed. Copyright timestamp adjusted.
2484 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
2485 be changed. Copyright timestamp adjusted.
2486 * djgpp/config.site: Copyright timestamp adjusted.
2487 * djgpp/config_h.sed: Copyright timestamp adjusted.
2488 * djgpp/djunpack.bat: Copyright timestamp adjusted.
2489 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
2490 filename translation list.
2491 * djgpp/subpipe.c (init_subpipe): Check the environment variables
2492 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
2493 files shall be created. Before trying to use the temp dir where the
2494 environment variable points to check that the dir really exists. If
2495 not default to the cwd as temp dir. Copyright timestamp adjusted.
2496 * djgpp/subpipe.h: Copyright timestamp adjusted.
2497 * djgpp/testsuite.sed: Copyright timestamp adjusted.
2498
2499 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
2500
2501 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
2502
2503 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
2504
2505 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
2506 Problem reported by Claudio Saavedra in
2507 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
2508
2509 2008-01-05 Wojciech Polak <polak@gnu.org>
2510
2511 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
2512 document's title with the input grammar file name.
2513
2514 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
2515
2516 Automate regression testing of the XML/XSLT implementation. Discussed
2517 starting at
2518 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
2519 * configure.ac (XSLTPROC): New substitution.
2520 * Makefile.am (maintainer-xml-check): New phony target invoking...
2521 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
2522 invoking make maintainer-check with BISON_TEST_XML=1.
2523 * tests/atlocal.in (XSLTPROC): New.
2524 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
2525 not to report reachable memory when Bison is expected to have a
2526 non-zero exit status and (2) to compare XML/XSLT output with --graph
2527 and --report=all output for every working grammar when
2528 BISON_TEST_XML=1.
2529 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
2530 (AT_BISON_CHECK_XML): New.
2531 (AT_QUELL_VALGRIND): New.
2532 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
2533 (AT_CHECK): ... don't redefine this since this was the old way to
2534 quell Valgrind.
2535 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
2536 AT_BISON_CHECK invocations.
2537 * tests/c++.at: Likewise.
2538 * tests/calc.at: Likewise.
2539 * tests/conflicts.at: Likewise.
2540 * tests/cxx-type.at: Likewise.
2541 * tests/existing.at: Likewise.
2542 * tests/glr-regression.at: Likewise.
2543 * tests/headers.at: Likewise.
2544 * tests/input.at: Likewise.
2545 * tests/java.at: Likewise.
2546 * tests/output.at: Likewise.
2547 * tests/push.at: Likewise.
2548 * tests/reduce.at: Likewise.
2549 * tests/regression.at: Likewise.
2550 * tests/sets.at: Likewise.
2551 * tests/skeletons.at: Likewise.
2552 * tests/synclines.at: Likewise.
2553 * tests/torture.at: Likewise.
2554 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
2555 tends to hang xsltproc.
2556 (Big horizontal): Likewise.
2557
2558 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2559
2560 In XML output, remove redundant class attribute on symbol element.
2561 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
2562 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
2563 look up a symbol to determine whether it's a nonterminal or terminal.
2564 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
2565 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
2566
2567 Add prec/assoc information to XML output.
2568 * src/gram.c (grammar_rules_print_xml): For each rule that has a
2569 %prec, add a percent_prec attribute.
2570 * src/print-xml.c (print_grammar): For each terminal that has a
2571 precedence or associativity, add a prec or assoc attribute.
2572 (xml_indent): New.
2573 (xml_puts): Use xml_indent.
2574 (xml_printf): Use xml_indent.
2575 * src/print-xml.h (xml_indent): Prototype.
2576
2577 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
2578 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
2579
2580 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2581
2582 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
2583 (bison:ruleByNumber): ... this for clarity.
2584 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
2585 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
2586 (xsl:template match="reduction"): Update.
2587 (xsl:template match="item"): Update.
2588 (xsl:template match="reduction"): Update.
2589
2590 In the XML output, don't print the list of rules where symbols appear.
2591 Compute it in XSLT instead. Discussed at
2592 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
2593 * data/xslt/bison.xsl (bison:ruleByLhs): New.
2594 (bison:ruleByRhs): New.
2595 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
2596 bison:ruleByRhs.
2597 (xsl:template match="terminal/rule"): Remove.
2598 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2599 bison:ruleByRhs.
2600 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2601 Remove.
2602 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
2603 bison:ruleByRhs and mode="number-link" for rule template.
2604 (xsl:template match="terminal/rule"): Remove.
2605 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2606 bison:ruleByRhs and mode="number-link" for rule template.
2607 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2608 Rewrite as...
2609 (xsl:template match="rule" mode="number-link"): ... this.
2610 * src/print-xml.c (print_grammar): Don't print the list of rules.
2611
2612 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
2613
2614 Don't let --report affect XML output; always print all information.
2615 Discussed at
2616 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
2617 * src/conflicts.c (log_resolution): Implement.
2618 * src/print-xml.c (print_core): Implement.
2619 (print_state): Implement.
2620 (print_xml): Implement.
2621
2622 * NEWS (2.3a+): Fix quotes.
2623 * src/parse-gram.y (prologue_declaration): For consistency with -v,
2624 don't let %verbose clear the list specified by --report.
2625
2626 2007-11-26 Akim Demaille <akim@epita.fr>
2627
2628 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
2629
2630 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
2631
2632 In the XML output, list useless and unused symbols and rules with the
2633 useful ones and add a "usefulness" attribute. Discussed starting at
2634 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
2635 * src/gram.c (grammar_rules_partial_print_xml): Remove.
2636 (grammar_rules_print_xml): Print all rules instead of just those
2637 useful in the grammar, and add a "usefulness" attribute.
2638 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
2639 * src/print-xml.c (print_rules_useless_in_parser): Remove.
2640 (print_grammar): Print all nonterminals instead of just useful ones,
2641 and add a "usefulness" attribute to nonterminals and terminals.
2642 (print_xml): Don't print a separate "reductions" or
2643 "rules-useless-in-parser" element.
2644 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
2645 (reduce_xml): Remove.
2646 (reduce_token_unused_in_grammar): New.
2647 (reduce_nonterminal_useless_in_grammar): New.
2648 * src/reduce.h (reduce_xml): Remove prototype.
2649 (reduce_token_unused_in_grammar): Add prototype.
2650 (reduce_nonterminal_useless_in_grammar): Add prototype.
2651 * data/xslt/xml2text.xsl: Update for XML changes.
2652 * data/xslt/xml2xhtml.xsl: Update for XML changes.
2653 * tests/reduce.at (Useless Terminals): Update output.
2654 (Useless Rules): Update output.
2655 (Reduced Automaton): Update output.
2656
2657 Say "Terminals unused in grammar" instead of "Unused terminals".
2658 * NEWS (2.3a+): Update.
2659 * doc/bison.texinfo (Understanding): Update example output.
2660 * src/reduce.c (reduce_output): Implement.
2661 * data/xslt/xml2text.xsl: Implement.
2662 * data/xslt/xml2xhtml.xsl: Implement.
2663
2664 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2665
2666 Accept --report-file=FILE to override the default `.output' filename.
2667 * NEWS (2.3a+): Mention.
2668 * doc/bison.texinfo (Bison Options): Add an entry.
2669 * src/files.c (compute_output_file_names): Don't override
2670 spec_verbose_file if already set.
2671 * src/getargs.c (usage): Document --report-file.
2672 (REPORT_FILE_OPTION): New anonymous enum member.
2673 (long_options): Add entry for it.
2674 (getargs): Add case for it setting spec_verbose_file.
2675
2676 * build-aux/cross-options.pl: Don't record a short option just because
2677 there's an arg.
2678 * doc/.cvsignore: Add yacc.1.
2679
2680 2007-11-14 Akim Demaille <akim@epita.fr>
2681
2682 * doc/yacc.1.in: New.
2683 * configure.ac, doc/Makefile.am: Adjust.
2684 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2685 config.h symbol.
2686 Use AC_SUBST for assignments too.
2687 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2688
2689 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2690
2691 * src/gram.c: Remove comments that duplicate comments in gram.h.
2692
2693 When reporting useless rules and nonterminals, say "useless in grammar"
2694 instead of "useless", and say "useless in parser" instead of "never
2695 reduced". Discussed starting at
2696 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2697 * NEWS (2.3a+): Mention this change.
2698 * data/xslt/xml2text.xsl: Update output text and expected input XML
2699 element names to match changes below.
2700 * data/xslt/xml2xhtml.xsl: Likewise.
2701 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2702 Contents: "Rules useless in parser due to conflicts".
2703 * doc/bison.texinfo (Decl Summary): Reword a little.
2704 (Understanding): Update example output for changes below.
2705 * src/gram.c: (rule_useful_p): Rename to...
2706 (rule_useful_in_grammar_p): ... this.
2707 (rule_useless_p): Rename to...
2708 (rule_useless_in_grammar_p): ... this.
2709 (rule_never_reduced_p): Rename to...
2710 (rule_useless_in_parser_p): ... this.
2711 (grammar_rules_print): Update for renames.
2712 (grammar_rules_print_xml): Update for renames.
2713 (grammar_rules_never_reduced_report): Rename to...
2714 (grammar_rules_useless_report): ... this since it is used for either
2715 kind of useless rule.
2716 * src/gram.h: Reword comments and update function names in prototypes.
2717 * src/main.c (main): Say "rule useless in parser due to conflicts".
2718 * src/print-xml.c (print_rules_never_reduced): Rename to...
2719 (print_rules_useless_in_parser): ... this, and rename output XML
2720 element "rules-never-reduced" to "rules-useless-in-parser".
2721 (print_xml): Update for rename.
2722 * src/print.c (print_results): Say "Rules useless in parser due to
2723 conflicts".
2724 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2725 (nonterminals_reduce): Say "nonterminal useless in grammar".
2726 (reduce_output): Say "Nonterminals useless in grammar".
2727 Say "Rules useless in grammar".
2728 (reduce_xml): Rename output XML element "useless" to
2729 "useless-in-grammar".
2730 (reduce_print): Don't report the count of grammatically useless rules
2731 as "rules never reduced" just because %yacc is specified.
2732 In the correct report of this count, say nonterminal(s) and rule(s)
2733 "useless in grammar".
2734 * tests/conflicts.at (S/R in initial): Update expected output.
2735 (Defaulted Conflicted Reduction): Likewise.
2736 (Unreachable States After Conflict Resolution): Likewise.
2737 * tests/existing.at (GNU pic Grammar): Likewise.
2738 * tests/reduce.at (Useless Nonterminals): Likewise.
2739 (Useless Rules): Likewise.
2740 (Reduced Automaton): Likewise.
2741 (Underivable Rules): Likewise.
2742 (Empty Language): Likewise.
2743
2744 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2745
2746 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2747 here document and before the EOF so that BSD's implementation of Bourne
2748 shell doesn't parse the delimiter as part of the here document.
2749 * doc/.cvsignore: Add cross-options.texi.
2750 * src/getargs.c (usage): Add a blank line after the warning categories.
2751
2752 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
2753
2754 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2755
2756 2007-11-05 Akim Demaille <akim@epita.fr>
2757
2758 Remove Id: from bison.1.
2759 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2760 (perl -0777 -pi -e 's/\.PP\nId): New.
2761 (.x.1): Use it to ignore the version control revision.
2762
2763 2007-11-05 Akim Demaille <demaille@gostai.com>
2764
2765 * build-aux/Makefile.am: Ship cross-options.pl.
2766 * doc/Makefile.am: Always refer to cross-options.texi with
2767 $(srcdir).
2768 (MAINTAINERCLEANFILES): Add it.
2769
2770 2007-11-04 Akim Demaille <demaille@gostai.com>
2771
2772 Generate the long/short option cross-table.
2773 * build-aux/cross-options.pl: New.
2774 * doc/Makefile.am (cross-options.texi): New.
2775 * doc/bison.texinfo: Use it.
2776
2777 2007-11-04 Akim Demaille <demaille@gostai.com>
2778
2779 Generate bison.1 using help2man.
2780 * doc/common.x, doc/bison.x: New.
2781 * doc/Makefile.am (bison.1, .x.1): New.
2782 The code is taken from autoconf-2.61/man/Makefile.am.
2783 * configure.ac: Look for help2man.
2784
2785 2007-11-04 Akim Demaille <demaille@gostai.com>
2786
2787 Complete --help.
2788 * src/getargs.c (usage): Document -W, make it clear that -d,
2789 -g and -x have optional arguments.
2790
2791 2007-11-04 Akim Demaille <demaille@gostai.com>
2792
2793 Find sha1sum when named gsha1sum.
2794 * bootstrap (find_tool): New.
2795 ($SHA1SUM): New.
2796
2797 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2798
2799 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2800 at
2801 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2802 * NEWS (2.3a+): Mention.
2803 * data/bison.m4 (b4_pure_if): Don't define it here.
2804 * data/c.m4 (b4_identification): Depend on individual skeletons to
2805 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2806 values of the %define variables api.pure or api.push_pull. Define
2807 YYPURE, YYPUSH, and YYPULL accordingly.
2808 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2809 glr.cc has already defined b4_pure_flag.
2810 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2811 Remove YYPUSH and YYPULL since they're back in b4_identification again.
2812 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
2813 * doc/bison.texinfo (Pure Decl): Update.
2814 (Push Decl): Update.
2815 (Decl Summary): Add api.pure to %define entry.
2816 In %pure-parser entry, say it's deprecated and reference %define.
2817 (Pure Calling): Update.
2818 (Error Reporting): Update.
2819 (C++ Scanner Interface): Update.
2820 (How Can I Reset the Parser): Update.
2821 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2822 reference %define.
2823 * src/getargs.c (pure_parser): Remove global variable.
2824 * src/getargs.h (pure_parser): Remove extern.
2825 * src/output.c (prepare): Don't define pure_flag muscle.
2826 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2827 wrapper around `%define api.pure'.
2828 * tests/calc.at (Simple LALR Calculator): Update.
2829 (Simple GLR Calculator): Update.
2830 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2831 Update.
2832 (GLR: Resolve ambiguity, pure, locations): Update.
2833 (GLR: Merge conflicting parses, pure, no locations): Update.
2834 (GLR: Merge conflicting parses, pure, locations): Update.
2835 * tests/glr-regression.at (Uninitialized location when reporting
2836 ambiguity): Update
2837 * tests/input.at (Unused %define api.pure): New test case.
2838 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2839 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2840 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2841
2842 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2843
2844 %define push_pull -> %define api.push_pull. Discussed starting at
2845 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2846 * data/push.c: Expect the new name.
2847 * data/yacc.c: Likewise.
2848 * doc/bison.texinfo (Push Decl): Update.
2849 (Decl Summary): Update %define entry.
2850 (Push Parser Function): Update.
2851 (Pull Parser Function): Update.
2852 (Parser Create Function): Update.
2853 (Parser Delete Function): Update.
2854 * tests/calc.at (Simple LALR Calculator): Update.
2855 * tests/input.at (%define enum variables): Update.
2856 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2857 (Push Parsing: Multiple impure instances): Update.
2858 (Push Parsing: Unsupported Skeletons): Update.
2859 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2860 (Exploding the Stack Size with Malloc): Update.
2861
2862 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2863 other entries some.
2864
2865 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2866
2867 For the XML output's terminal element, rename @number to @token-number,
2868 and add @symbol-number. In the nonterminal element, rename @number to
2869 @symbol-number. Discussed starting at
2870 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2871 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2872 renames.
2873 (xsl:template match="nonterminal"): Likewise.
2874 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2875 (xsl:template match="nonterminal"): Likewise.
2876 * src/print-xml.c (print_grammar): Implement.
2877
2878 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2879
2880 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2881 2007-10-11 change, the child elements here are items not rules.
2882 (xsl:template match="item"): New.
2883 (xsl:template match="rule"): Update for new reduced itemset.
2884 (xsl:template match="point"): Remove.
2885 (xsl:template match="empty"): For consistency with --graph, don't
2886 output "/* empty */".
2887 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2888 line-wrap, don't pass a negative value as first-line-length since this
2889 won't work with the following changes.
2890 (xsl:template name="line-wrap"): Simplify slightly.
2891 (xsl:template name="ws-search"): Eliminate recursion.
2892 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2893 set next to an item whose dot is not at the end of the RHS even if it
2894 happens to be associated with the same rule.
2895
2896 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2897
2898 Add %define lr.keep_unreachable_states.
2899 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2900 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2901 * src/main.c (main): Implement it.
2902 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2903 Extend to test it, and fix a typo.
2904
2905 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2906
2907 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
2908 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2909 the example .output text.
2910 * tests/regression.at (Extra lookahead sets in report): Improve wording
2911 of comments.
2912
2913 2007-10-17 Wojciech Polak <polak@gnu.org>
2914
2915 * src/print-xml.c (print_grammar): Renamed
2916 <terminal> and <nonterminal> attributes:
2917 "type" to "number" and "symbol" to "name".
2918 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2919 Use new attribute names.
2920 (xsl:template match="nonterminal"): Likewise.
2921 * data/xslt/xml2xhtml.xsl: Likewise.
2922
2923 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2924
2925 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2926 (Option Cross Key): Likewise.
2927
2928 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2929 next to an item whose dot is not at the end of the RHS even if it
2930 happens to be associated with the same rule.
2931 * src/print.c (print_core): Likewise.
2932 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2933 (Resolved SR Conflicts): Update output.
2934 * tests/regression.at (Extra lookahead sets in report): New test case.
2935
2936 2007-10-11 Wojciech Polak <polak@gnu.org>
2937
2938 * src/print-xml.c (print_core): Remove item set
2939 redundancy.
2940 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2941 Improve processing time. Suggested by Joel E. Denny.
2942 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2943 Write xsl:param "required" attribute as comment.
2944 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2945 (xsl:template match="rule"): Support new reduced itemset.
2946 (xsl:template match="point"): Remove.
2947 * data/xslt/xml2xhtml.xsl: Likewise.
2948
2949 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2950
2951 * src/getargs.c (version): Update copyright year.
2952
2953 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2954
2955 Make xml2dot.xsl and --graph produce the same output.
2956 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
2957 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2958 escaped later.
2959 (xsl:template name="output-node"): Use the new escape template instead
2960 of the string-replace template directly.
2961 (xsl:template name="output-edge"): Likewise.
2962 (xsl:template name="escape"): New, escapes backslashes and newlines in
2963 addition to quotation marks.
2964 * src/graphviz.c (start_graph, output_node, output_edge): Add
2965 whitespace to output for legibility.
2966
2967 Make xml2text.xsl and --report produce the same output, and remove the
2968 XML "conflicts" element since a conflict summary is easily extracted
2969 from the automaton.
2970 * data/xslt/bison.xsl: New.
2971 (xsl:template match="state" mode="bison:count-conflicts): New.
2972 * data/xslt/xml2text.xsl: Import bison.xsl.
2973 (xsl:template match="bison-xml-report"): Instead of styling the
2974 "conflicts" element, style the "automaton" element with mode
2975 "conflicts". Unlike the former, the latter lists S/R and R/R
2976 conflicts for a state on the same line.
2977 (xsl:template match="conflicts"): Remove.
2978 (xsl:template match="conflict"): Remove.
2979 (xsl:template match="terminal"): Line-wrap the list of rules in which
2980 the terminal is used.
2981 (xsl:template match="nonterminal"): Likewise for nonterminals.
2982 (xsl:template match="automaton" mode="conflicts"): New.
2983 (xsl:template match="state" mode="conflicts"): New.
2984 (xsl:template name="line-wrap"): New.
2985 (xsl:template name="ws-search"): New.
2986 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2987 (xsl:template match="bison-xml-report"): Instead of styling the
2988 "conflicts" element, style the "automaton" element with mode
2989 "conflicts."
2990 (xsl:template match="conflicts"): Remove.
2991 (xsl:template match="conflict"): Remove.
2992 (xsl:template match="automaton" mode="conflicts"): New.
2993 (xsl:template match="state" mode="conflicts): New.
2994 * src/conflicts.c (conflicts_output_xml): Remove.
2995 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2996 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2997 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2998 the corresponding XSLT is easier. Also, never wrap between a word and
2999 the comma that follows it.
3000
3001 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
3002
3003 Improve C++ namespace support. Discussed starting at
3004 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
3005 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
3006 b4_namespace_close): New macros that interpret the %define variable
3007 "namespace" so its value can contain "::" to indicate nested
3008 namespaces.
3009 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
3010 the above macros.
3011 * data/lalr1.cc (b4_namespace): Likewise.
3012 * data/location.cc (b4_namespace): Likewise.
3013 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
3014 inside a new table in the general %define entry. Document `%define
3015 namespace' there as well. Point the %name-prefix entry to it since it
3016 explains it more completely in the case of C++.
3017 (C++ Bison Interface): Mention `%define namespace' instead of
3018 %name-prefix.
3019 (Table of Symbols): Remove the `%define push_pull' entry. The %define
3020 entry suffices.
3021 * tests/c++.at (Relative namespace references): New test case.
3022 (Absolute namespace references): New test case.
3023 (Syntactically invalid namespace references): New test case.
3024 * tests/input.at (C++ namespace reference errors): New test case.
3025
3026 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
3027
3028 Add syncline support and location accessor to internal %define
3029 interfaces.
3030 * data/bison.m4 (b4_percent_define_get_loc): New.
3031 (b4_percent_define_get_syncline): New.
3032 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
3033 (b4_percent_define_default): Record defining location as line 1 rather
3034 than 0 for the sake of synchronizing #line's, and define
3035 b4_percent_define_syncline(VARIABLE).
3036 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
3037 * src/muscle_tab.c (muscle_syncline_grow): New.
3038 (muscle_code_grow): Use muscle_syncline_grow.
3039 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
3040 define b4_percent_define_syncline(VARIABLE).
3041 (muscle_percent_define_get_loc): New.
3042 (muscle_percent_define_get_syncline): New.
3043 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
3044 remove some unused variables.
3045 (muscle_percent_define_default): Record defining location as line 1
3046 rather than 0 for the sake of synchronizing #line's, and define
3047 b4_percent_define_syncline(VARIABLE).
3048 (muscle_percent_define_check_values): Use
3049 muscle_percent_define_get_loc.
3050 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
3051 (muscle_percent_define_get_syncline): Prototype.
3052 * tests/skeletons.at (%define Boolean variables: invalid skeleton
3053 defaults): Update output for location change.
3054 (Complaining during macro argument expansion): Extend to test
3055 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
3056
3057 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
3058
3059 Fix some error-reporting macro bugs.
3060 * data/bison.m4 (b4_cat): New.
3061 (b4_error, b4_error_at): Use b4_cat to send error directives directly
3062 to stdout so they don't become arguments to other macros. Update
3063 comments and add examples.
3064 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
3065 add examples.
3066 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
3067 after printing the error directive so that M4 doesn't report subsequent
3068 problems that are induced by this problem.
3069 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
3070 instead of just in them. Recognize @\n in both places. Both expand to
3071 the empty string. Needed by b4_cat.
3072 * tests/skeletons.at (Complaining during macro argument expansion):
3073 New test case.
3074 (Fatal errors make M4 exit immediately): New test case.
3075
3076 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
3077
3078 Implement --print-datadir.
3079 * src/getargs.c (usage): Mention.
3080 (PRINT_DATADIR_OPTION): New anonymous enum member.
3081 (long_options): Add entry for it.
3082 (getargs): Add case for it calling compute_pkgdatadir.
3083 * src/output.c (output_skeleton): Encapsulate data directory
3084 computation from here...
3085 (prepare): ... and from here...
3086 (compute_pkgdatadir): ... into this new function.
3087 * src/output.h (compute_pkgdatadir): Prototype.
3088
3089 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
3090
3091 * src/print-xml.c (escape_bufs): New static global variable
3092 replacing...
3093 (xml_escape_n): ... the static local variable buf here.
3094 (print_xml): Free memory for escape_bufs.
3095 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
3096
3097 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
3098
3099 Replace `%push-parser' and `%push-pull-parser' with
3100 `%define push_pull "push"' and `%define push_pull "both"'.
3101 `%define push_pull "pull"' is the default.
3102 * doc/bison.texinfo (Push Decl, Push Parser Function,
3103 Pull Parser Function, Parser Create Function, Parser Delete Function):
3104 Update declarations.
3105 (Decl Summary, Table of Symbols): Replace %push-parser and
3106 %push-pull-parser entries with a %define push_pull entry.
3107 * data/bison.m4 (b4_percent_define_check_values): New macro.
3108 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
3109 definitions...
3110 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
3111 definitions...
3112 * data/push.c: ... to here and compute them from the value of the
3113 %define variable push_pull.
3114 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
3115 parsing requests here...
3116 * data/yacc.c: ... hack this to switch to push.c any time
3117 b4_use_push_pull_flag or the %define variable push_pull is set. This
3118 will go away when we mv push.c yacc.c.
3119 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
3120 push parsing is not supported since unused %define variables are
3121 reported anyway.
3122 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
3123 * src/muscle_tab.h (muscle_percent_define_check_values): Update
3124 comments for consistency with b4_percent_define_check_values.
3125 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
3126 muscles.
3127 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
3128 Remove.
3129 (prologue_declaration): Remove %push-parser and %push-pull-parser
3130 rules.
3131 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
3132 * tests/calc.at: Update declarations.
3133 * tests/input.at (%define enum variables): New test case.
3134 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
3135 declaration.
3136 (Push Parsing: Multiple impure instances): Update declaration.
3137 (Push Parsing: Unsupported Skeletons): New test case.
3138 * tests/torture.at (Exploding the Stack Size with Alloca): Update
3139 declaration.
3140 (Exploding the Stack Size with Malloc): Update declaration.
3141
3142 2007-09-24 Wojciech Polak <polak@gnu.org>
3143
3144 Add XSLT transformations.
3145
3146 * data/xslt/xml2dot.xsl: Transform XML into DOT.
3147 * data/xslt/xml2text.xsl: Transform XML into plain text.
3148 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
3149 * data/Makefile.am (xsltdir): New variable.
3150 (dist_xslt_DATA): Add xslt/*.xsl files.
3151
3152 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
3153
3154 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
3155 Problem reported by Wojciech Polak.
3156 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
3157 (xml_printf): Undo change I made on 21 September; that is,
3158 indent 2 spaces, not 1.
3159
3160 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
3161
3162 Pacify ./configure --enable-gcc-warnings.
3163 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
3164 `char const *' instead of `char *'.
3165 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
3166 local variable `sep'.
3167
3168 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
3169
3170 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
3171 elsewhere.
3172 * src/print-xml.c: Prefer "const" after types; that's more consistent.
3173 (xml_printf): Indent just 1 space for level.
3174 (e_char, xlate_char): Remove.
3175 (xml_escape_string): Rewrite to avoid undefined behavior (used
3176 storage that was freed from the stack).
3177 (xml_escape_n): Don't bother checking for subscript error.
3178
3179 2007-09-21 Wojciech Polak <polak@gnu.org>
3180
3181 Add Bison XML Automaton Report.
3182
3183 Add support for an -x option to generate an XML report.
3184 It is not documented yet.
3185 * src/print-xml.c: New file.
3186 * src/print-xml.h: Likewise.
3187 * lib/timevar.def (TV_XML): New var.
3188 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
3189 * src/conflicts.c: Include print-xml.h.
3190 (solved_conflicts_xml_obstack): New var.
3191 (log_resolution, conflicts_solve, conflicts_free):
3192 Add support for XML report.
3193 (conflicts_output_val): New function.
3194 * src/conflicts.h (conflicts_output_val): New decl.
3195 * src/files.c (spec_xml_file): New var.
3196 (compute_output_file_names, output_file_names_free): Add XML support.
3197 * src/files.h (spec_xml_file): New decl.
3198 * src/getargs.c (xml_flag): New var.
3199 (usage, short_options, long_options, getargs): Add XML support.
3200 * src/getargs.h (xml_flag): New decl.
3201 * src/gram.c: Include print-xml.h.
3202 (rule_lhs_print_xml, rule_rhs_print_xml):
3203 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
3204 New functions.
3205 * src/gram.h: Declare external ones.
3206 * src/main.c: Include print-xml.h.
3207 (main): Add XML support.
3208 * src/reduce.c: Include print-xml.h.
3209 (reduce_xml): New function.
3210 * src/reduce.h: Declare it.
3211 * src/state.c: Include print-xml.h.
3212 (state_new): Add XML support.
3213 (state_rule_lookahead_tokens_print_xml): New function.
3214 * src/state.h: Declare it.
3215 (struct state): New member solved_conflicts_xml.
3216 * src/symtab.c (symbol_class_get_string): New function.
3217 * src/symtab.h: Declare it.
3218
3219 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
3220
3221 * GNUmakefile: Switch to coreutils's version.
3222 * bootstrap: Likewise.
3223 * Makefile.cfg: Adjust to new GNUmakefile.
3224 * README-hacking: Likewise.
3225
3226 Import from gnulib:
3227
3228 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
3229 Bruno Haible <bruno@clisp.org>
3230
3231 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
3232 and is a script that invokes bison. Tighten the code. Add comments.
3233
3234 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
3235
3236 Spell "boolean" as "Boolean". Reported by Akim Demaille.
3237 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
3238 * doc/bison.texinfo (Decl Summary): Fix.
3239 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
3240 * tests/input.at (Boolean %define variables): Update output.
3241 * tests/skeletons.at (%define boolean variables: invalid skeleton
3242 defaults): Rename to...
3243 (%define Boolean variables: invalid skeleton defaults): ... this and
3244 update output.
3245
3246 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
3247
3248 In impure push mode, don't allow more than one yypstate to be allocated
3249 since multiple impure parsers would corrupt yynerrs.
3250 * data/push.c (yypstate_allocated): New static global variable
3251 initialized to 0.
3252 (yypull_parse): If yypstate_new returns 0, don't report it as memory
3253 exhaustion if yypstate_allocated is 1, but still return 2.
3254 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
3255 already 1. Otherwise, set it to 1.
3256 (yypstate_delete): Set it to 0.
3257 * tests/push.at (Push Parsing: Multiple impure instances): New test
3258 case.
3259
3260 2007-08-17 Bob Rossi <bob@brasko.net>
3261
3262 * doc/bison.texinfo (Push Decl): Document the push parser.
3263 (Table of Symbols): Ditto.
3264 (Pure Decl): Ditto.
3265 (Decl Summary): Ditto.
3266 (Multiple Parsers, Push Parser Function, Pull Parser Function,
3267 Parser Create Function, Parser Delete Function):
3268 Add new push parser symbols.
3269 (Table of Symbols): Document push-parser, push-pull-parser,
3270 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
3271
3272 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
3273
3274 Update to GPLv3.
3275 * doc/gpl-3.0.texi: New file.
3276 * doc/gpl.texi: Remove.
3277 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
3278 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
3279 * README-hacking, TODO, bootstrap, bootstrap.conf:
3280 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
3281 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
3282 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
3283 * data/lalr1.cc, data/lalr1.java, data/location.cc:
3284 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
3285 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
3286 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
3287 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
3288 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
3289 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
3290 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
3291 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
3292 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
3293 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
3294 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
3295 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
3296 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
3297 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
3298 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
3299 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
3300 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
3301 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
3302 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
3303 * src/complain.c, src/complain.h, src/conflicts.c:
3304 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
3305 * src/files.h, src/flex-scanner.h, src/getargs.c:
3306 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
3307 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
3308 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
3309 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
3310 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
3311 * src/print.c, src/print.h, src/print_graph.c:
3312 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
3313 * src/reduce.h, src/relation.c, src/relation.h:
3314 * src/revision.h, src/scan-code.h, src/scan-code.l:
3315 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
3316 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
3317 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
3318 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
3319 * tests/Makefile.am, tests/actions.at, tests/c++.at:
3320 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
3321 * tests/existing.at, tests/glr-regression.at:
3322 * tests/headers.at, tests/input.at, tests/java.at:
3323 * tests/local.at, tests/output.at, tests/push.at:
3324 * tests/reduce.at, tests/regression.at, tests/sets.at:
3325 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
3326 * tests/torture.at:
3327 Update to GPLv3.
3328
3329 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3330
3331 Get rid of broken %no-parser, -n, and --no-parser implementation and
3332 documentation.
3333 * TODO: Don't mention them.
3334 * doc/bison.1: Likewise.
3335 * doc/bison.texinfo (Decl Summary): Likewise.
3336 (Bison Options): Likewise.
3337 (Option Cross Key): Likewise.
3338 * src/getargs.c (no_parser_flag): Remove global variable.
3339 (usage): Don't print description of -n and --no-parser.
3340 (long_options): Remove --no-parser entry here.
3341 (getargs): Remove -n case in the switch here.
3342 * src/getargs.h (no_parser_flag): Remove extern.
3343 * tests/regression.at (Web2c Actions): Remove comment that mentions
3344 --no-parser.
3345
3346 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3347
3348 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
3349 name user variables starting with `yy'. Just pass NULL instead of a
3350 dummy local &yylval to yypush_parse.
3351 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
3352 starting with `yy'.
3353
3354 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
3355
3356 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
3357 true since it's then always used regardless of whether yyoverflow is
3358 defined. Reported by Christian Burger at
3359 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
3360 * THANKS: Add Christian Burger.
3361
3362 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3363 node names: say "Decl Summary" not "Bison Declaration Summary".
3364
3365 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
3366
3367 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
3368 determine whether this function has already complained about an invalid
3369 value for a %define boolean variable, don't check whether Bison has
3370 ever examined the value. As written, the check was a tautology.
3371 Instead, record and check for this complaint using a separate muscle.
3372
3373 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3374
3375 Fix push parsing memory leak reported by Brandon Lucia at
3376 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
3377 * THANKS: Add Brandon Lucia.
3378 * data/push.c (yypstate_delete): Free the stack if it was reallocated
3379 but the parse never completed and thus freed it.
3380 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
3381 * tests/testsuite.at: Include push.at.
3382 * test/push.at: New.
3383 (Push Parsing: Memory Leak for Early Deletion): New test case.
3384
3385 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
3386
3387 Improve handling of multiple S/R conflicts in the same state and of S/R
3388 conflicts involving multiple reductions.
3389 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
3390 set for a state here or Bison will abort if it is reassigned on a
3391 later conflicted reduction in the same state.
3392 Similarly, don't finalize and assign the solved conflicts report here
3393 or it will be lost if it is reassigned on a later conflicted reduction
3394 in the same state.
3395 (set_conflicts): Instead, assign them both here after all S/R conflicts
3396 in the state have been fully examined.
3397 * src/print.c (shift_set): Rename to...
3398 (no_reduce_set): ... this.
3399 (print_reductions): Update for rename, and add %nonassoc error action
3400 tokens to no_reduce_set so that, when printing the first remaining
3401 reduction on an error action token, the reduction is enclosed in
3402 brackets.
3403 (print_results): Update for rename.
3404 * tests/conflicts.at (Solved conflicts report for multiple reductions
3405 in a state): New test case.
3406 (%nonassoc error actions for multiple reductions in a state): New test
3407 case.
3408
3409 * src/main.c (main): Don't depend on C99 features.
3410
3411 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3412
3413 * build-aux/.cvsignore: Add compile.
3414 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
3415 uniwidth.
3416
3417 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
3418
3419 * bootstrap (slurp): Create target directories that don't exist.
3420 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
3421
3422 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
3423
3424 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
3425 than item number.
3426 * closure.c (closure): Likewise.
3427 * state.h (reductions): Comment sorting of rules.
3428 (state): Comment sorting of items.
3429
3430 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
3431
3432 Fix C++ test cases after recent Gnulib changes. Discussed starting at
3433 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
3434 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
3435 definition in order to avoid Gnulib headers since we don't use config.h
3436 here.
3437 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
3438 rather than AT_DATA so that config.h is included.
3439
3440 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
3441
3442 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
3443 instead of fprintf. Guard these functions with #if YYDEBUG instead of
3444 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
3445 and so that YYFPRINTF is guaranteed to be defined here.
3446
3447 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
3448
3449 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
3450 with...
3451 (muscle_percent_define_check_values): ... this more helpful function.
3452 Again, it's not used yet, but it will be.
3453 * src/muscle_tab.h: Likewise.
3454
3455 Improve some comments in parser table construction.
3456 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
3457 (generate_states): Don't mention ruleset, which is internal to closure.
3458 * src/closure.c (closure): Explain sorting of core and itemset, which
3459 is required for this function to behave correctly.
3460 * src/closure.h (closure): Mention sorting.
3461
3462 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
3463
3464 * src/lalr.c (state_lookahead_tokens_count): For code readability,
3465 move the check for disabled transitions to an aver since conflict
3466 resolution hasn't happened yet.
3467
3468 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
3469 labels a state as inconsistent just because it has error transitions.
3470 The original form of this check appeared in revision 1.1 of lalr.c,
3471 which was committed on 1991-12-21. Now (at least), changing the
3472 consistency label on such a state appears to have no useful effect in
3473 any of the places it is examined, which I enumerate below. The key
3474 point to understanding each item in this enumeration is that a state
3475 with an error transition is labelled consistent in the first place only
3476 if it has no rules, so the check cannot matter for states that have
3477 rules. (1) Labelling a state as inconsistent will cause set_conflicts
3478 to try to identify its conflicts, and a state must have *rules* to have
3479 conflicts. (2) Labelling a state as inconsistent will affect how
3480 action_row sets the default *rule* for the state. (3) Labelling a
3481 state as inconsistent will cause build_relations to add lookback edges
3482 to *rules* in that state.
3483 * src/state.h (struct state): Word the comment for member consistent
3484 more carefully.
3485
3486 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3487
3488 Don't depend on C99 features.
3489 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
3490 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
3491 * src/reader.c (check_and_convert_grammar): Fix for-loop.
3492 * src/state.c (state_mark_reachable_states): Fix for-loop.
3493 (state_remove_unreachable_states): Fix for-loop.
3494
3495 Don't widen struct state with member reachable just to temporarily
3496 record reachability. Instead, use a local bitset.
3497 * src/state.h (struct state): Remove member.
3498 * src/state.c (state_new): Don't initialize it.
3499 (state_mark_reachable_states): Rename to...
3500 (state_record_reachable_states): ... this, and use bitset.
3501 (state_remove_unreachable_states): Use bitset.
3502
3503 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
3504
3505 * src/Makefile.am (yacc): Quote target action commands properly so
3506 that the yacc script isn't corrupt. Reported by Hans Aberg at
3507 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
3508
3509 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
3510 the case of pure parsers. Reported by Frans Englich at
3511 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
3512 * THANKS: Add Frans Englich.
3513
3514 * NEWS (2.3a+): In the %code entry, reference section `Bison
3515 Declaration Summary' from the manual now since the %code summary has
3516 moved there.
3517 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
3518 in the rules section must be terminated by semicolons.
3519
3520 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
3521
3522 Extend the front-end API for %define variables to more completely
3523 mirror the back-end. This will be useful in the future.
3524 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
3525 Update comments to mention the new front-end counterparts of these
3526 macros.
3527 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
3528 for muscle_string_decode and muscle_location_decode.
3529 (muscle_string_decode): New static function.
3530 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
3531 (muscle_percent_define_get, muscle_percent_define_ifdef): New
3532 functions.
3533 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
3534 muscle_percent_define_get to mimic the b4_percent_define_flag_if
3535 implementation more closely.
3536 (muscle_percent_define_invalid_value): New function.
3537 * src/muscle_tab.h (muscle_percent_define_get,
3538 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
3539 Prototype.
3540
3541 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3542
3543 * NEWS (2.3a+): Mention yesterday's state-removal change.
3544 (2.3a): Remove the %language entry, which was added after 2.3a.
3545 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
3546 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
3547 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
3548 tests/existing.at: Update copyright date.
3549
3550 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3551
3552 If conflict resolution makes states unreachable, remove those states,
3553 report rules that are then unused, and don't report conflicts in those
3554 states.
3555 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
3556 New global function.
3557 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
3558 function.
3559 * src/main.c (main): After conflict resolution, remove the unreachable
3560 states and update all data structures that reference states by number.
3561 * src/state.c (state_new): Initialize each state's reachable member to
3562 false.
3563 (state_mark_reachable_states): New static function.
3564 (state_remove_unreachable_states): New global function.
3565 * src/state.h (struct state): Add member bool reachable.
3566 (state_remove_unreachable_states): Prototype.
3567 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3568 New test case.
3569 * tests/existing.at (GNU pic Grammar): Update test case output now that
3570 an unused rule is discovered.
3571
3572 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3573
3574 Minor code cleanup in parser table construction.
3575 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
3576 (new_itemsets, save_reductions): Update for rename to nitemset.
3577 * src/closure.c (nritemset): Rename to...
3578 (nitemset): ... this since the "r" appears to meaningless and isn't
3579 used in the comments.
3580 (closure): Update for rename.
3581 * src/closure.h (nritemset): Update extern to...
3582 (nitemset): ... this.
3583 * src/lalr.c (LA): Fix a typo in comments.
3584 * src/print.c (print_core): Update for rename to nitemset.
3585 * src/print_graph.c (print_graph): Likewise.
3586 * src/state.h: Fix some typos in header comments.
3587
3588 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
3589
3590 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
3591 still sticks to ASCII. Sorry!
3592
3593 * README-hacking: New file, taken mostly from coreutils, with changes
3594 for Bison. Contains much of the contents of:
3595 * README-cvs: Remove.
3596 * bootstrap: Sync from gnulib.
3597 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
3598 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
3599
3600 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
3601
3602 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
3603 Setzer.
3604 (Java Differences): Fix some typos.
3605 * THANKS: Add Sebastian Setzer.
3606
3607 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
3608
3609 * data/java.m4 (b4_single_class_if): Remove.
3610 (b4_abstract_if): Look at "%define abstract".
3611 (b4_lexer_if): New.
3612 (b4_union_name): Rename...
3613 (b4_yystype): ... to this. Map to "%define stype".
3614 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
3615 b4_maybe_throws): Fix quoting.
3616 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
3617 * data/lalr1.java (Lexer interface): Always define.
3618 (Lexer interface within parser class): Remove.
3619 (YYLexer class): New, used when "%code lexer" is present.
3620 (constructor): When "%code lexer" is used, pass %lex-param
3621 to the lexer constructor.
3622 (yylex, yyparse): Remove %lex-param from method invocations
3623 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
3624
3625 * doc/bison.texinfo (Java Bison Interface): Mention "%define
3626 abstract". Rename "%define union_name" to "%define stype".
3627 Rename method names according to previous patch.
3628 (Java Scanner Interface): Describe "%code lexer" instead of
3629 "%pure-parser" and "%define single_class".
3630 (Java Differences): Mention "%code lexer".
3631
3632 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
3633 Include scanner here, using macros from tests/local.at.
3634 (AT_DATA_CALC_Y): Remove final argument.
3635 (_AT_CHECK_JAVA_CALC): Likewise.
3636 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
3637 of %locations and %error-verbose.
3638 (main): Test with and without %lex-param.
3639 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
3640 (AT_BISON_OPTION_POPDEFS): Pop it.
3641
3642 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3643
3644 DJGPP spefic issue. Inhibit the use of disallowed characters for
3645 file name genertion on Win98, WinXP, etc. These are |<>":?*\
3646 and concern testsuite case 46.
3647 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
3648 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
3649 * djgpp/config.bat: Inhibit the use of disallowed characters.
3650
3651 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3652
3653 Miscellaneous %define and %code cleanup.
3654 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
3655 values are interpreted.
3656 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3657 documentation a little more.
3658 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3659 muscle_percent_define_insert, muscle_percent_code_grow): New
3660 functions/macros.
3661 * src/muscle_tab.h (muscle_percent_define_insert,
3662 muscle_percent_code_grow): Prototype.
3663 * src/parse-gram.y (prologue_declaration): Use
3664 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3665 %define and %code directives.
3666
3667 Make it easy to share %define boolean variables between the front-end
3668 and back-end. Though not used yet, this will be useful in the future.
3669 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3670 Bison uses of names rather than just skeleton uses of names.
3671 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3672 b4_percent_define_skeleton_variables(VARIABLE) to
3673 b4_percent_define_bison_variables(VARIABLE).
3674 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3675 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3676 b4_percent_code_bison_qualifiers(QUALIFIER).
3677 (b4_check_user_names_wrap): Update for renames.
3678 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3679 muscle_percent_define_default): New functions mimicking
3680 b4_percent_define_flag_if and b4_percent_define_default.
3681
3682 For %define variables, report locations for invalid values and
3683 redefinitions.
3684 * data/bison.m4 (b4_percent_define_flag_if): Read
3685 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3686 value for VARIABLE.
3687 (b4_percent_define_default): Save a special location in
3688 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3689 must later be reported as invalid.
3690 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3691 functions.
3692 (muscle_percent_define_insert): Record the location of VARIABLE in
3693 muscle percent_define_loc(VARIABLE), and use it to report the previous
3694 location for a redefinition.
3695 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3696 (muscle_percent_define_default): Update like b4_percent_define_default.
3697 (muscle_grow_user_name_list): Rename to...
3698 (muscle_user_name_list_grow): ... this for consistency and use
3699 muscle_location_grow.
3700 * src/muscle_tab.h (muscle_location_grow): Prototype.
3701 * tests/input.at (%define errors): Update expected output.
3702 * tests/skeletons.at (%define boolean variables: invalid skeleton
3703 defaults): New test case.
3704
3705 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3706
3707 * src/print.c (lookahead_set, state_default_rule): Remove.
3708 (print_reductions): Replace state_default_rule invocation with
3709 equivalent use of yydefact, which was computed in token_actions in
3710 tables.c.
3711 (print_results): Don't allocate lookahead_set.
3712
3713 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
3714
3715 * data/lalr1.java: Prefix all private members with yy.
3716
3717 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3718
3719 Use YYFPRINTF instead of fprintf where appropriate. Reported by
3720 Sebastien Fricker at
3721 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
3722 * THANKS: Add Sebastien Fricker.
3723 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3724 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3725 accept a variable number of arguments.
3726
3727 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3728
3729 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3730
3731 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3732
3733 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3734 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3735 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3736
3737 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3738
3739 Undo my 2007-02-07 change, switching back to the c-strcase module
3740 introduced in the 2007-02-03 change. Bruno Haible reported that
3741 the 2007-02-07 change would be dangerous in Turkish if we add a
3742 language whose name contains "i", since "i" is not lowercase "I"
3743 in Turkish.
3744 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3745 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3746 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3747 * m4/.cvsignore: Remove strcase.m4.
3748 * src/getargs.c: Revert 2007-02-07 change, as follows.
3749 Include c-strcase.h.
3750 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3751
3752 2007-02-11 Bruno Haible <bruno@clisp.org>
3753
3754 Enable the Java related testsuite tests when the only Java compiler
3755 found is a gcj < 4.3. Discussed at
3756 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3757 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3758
3759 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3760
3761 * data/Makefile.am: Update copyright date.
3762 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3763 yypstate_new returns NULL.
3764 (yypstate_new): Return NULL if malloc does.
3765 * src/reader.c (packgram): Move translation of rule actions from the
3766 beginning of packgram to...
3767 (check_and_convert_grammar): ... here right before packgram is invoked
3768 so it's easier to write more complete comments, and remove redundant
3769 code.
3770
3771 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3772
3773 As in semantic actions, make @$ in %initial-action, %destructor, and
3774 %printer imply %locations.
3775 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3776 scanning @$.
3777 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3778 (@$ in %initial-action implies %locations,
3779 @$ in %destructor implies %locations,
3780 @$ in %printer implies %locations): ... these new test cases.
3781
3782 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3783
3784 Undo most of the 2007-02-03 change, switching to the strcase module
3785 now that gnulib strcase has been fixed.
3786 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3787 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3788 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3789 * m4/.cvsignore: Add strcase.m4.
3790 * src/getargs.c: Revert 2007-02-03 change, as follows.
3791 Don't include c-strcase.h.
3792 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3793 strcasecmp has "unspecified behavior" outside the POSIX locale,
3794 but it works fine in practice if at least one argument is ASCII,
3795 as is the case in Bison.
3796
3797 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
3798
3799 * tests/java.at: Skip tests if only one of javac/java is present.
3800 Reported by Joel E. Denny.
3801 * tests/atlocal.in: Adjust copyright years.
3802
3803 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
3804
3805 * data/lalr1.java (Stack): Work around old verifiers that disallow
3806 access to the private fields of an inner class, from the outer class.
3807 We can make Stack's fields public because user code doesn't have access
3808 to the instance of Stack used by parse(). Reported by Paul Eggert.
3809
3810 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3811
3812 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3813 the right spot for these files?
3814 * bootstrap.conf (gnulib_modules): Add c-strcase.
3815 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3816 c-strncasecmp.c.
3817 * src/getargs.c: Include c-strcase.h.
3818 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3819 to avoid unspecified behavior.
3820
3821 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3822
3823 * doc/bison.texinfo (Decl Summary): Correct typo.
3824
3825 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
3826
3827 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3828 Complain if the value does not match empty, "true" or "false".
3829 * data/c++.m4: Adjust default definitions of %define variables.
3830 * data/java.m4: Adjust default definitions of %define variables.
3831 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3832 to above behavior.
3833 * tests/input.at (Boolean %define variables): Test new behavior.
3834
3835 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
3836
3837 * NEWS: Mention java.
3838 * TODO: Remove things that are done.
3839 * bootstrap.conf: Add javacomp-script and javaexec-script.
3840 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3841
3842 * data/Makefile.am: Add new files.
3843 * data/java-skel.m4: New.
3844 * data/java.m4: New.
3845 * data/lalr1.java: New.
3846
3847 * doc/bison.texinfo: Put "A Complete C++ Example" under
3848 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3849 under Other Languages.
3850
3851 * src/getargs.c (valid_languages): Add Java.
3852 * src/getargs.h (struct bison_language): Update size of string fields.
3853
3854 * tests/Makefile.am: Add java.at.
3855 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3856 * tests/java.at: New.
3857 * tests/testsuite.at: Include it.
3858
3859 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3860
3861 Clean up.
3862 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3863 at_directive_argv arguments so these no longer have to be global
3864 variables. Also, update the implementation for the following changes.
3865 (fail_for_at_directive_too_many_args,
3866 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3867 (at_directive_name): Remove as at_directive_argv[0] will be used for
3868 this now.
3869 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3870 for the directive name.
3871 (at_directive_argc, at_directive_argv): Make these local within
3872 skel_lex instead of global.
3873 (INITIAL): Update directive start action for above changes.
3874 (SC_AT_DIRECTIVE_ARG): Rename to...
3875 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3876 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3877 (scan_skel): Move yylex_destroy to...
3878 (skel_scanner_free): ... here.
3879 * tests/skeletons.at (installed skeleton file name): Rename to...
3880 (installed skeleton file names): ... this.
3881
3882 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3883
3884 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3885 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3886 Summary" not "Directives".
3887 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3888 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3889 since the former is now the more complete one.
3890 (Prologue Alternatives): Likewise and do the same for %defines.
3891 (Table of Symbols): Add summary of %code, add summary of %define, and
3892 move full %code documentation to...
3893 (Decl Summary): ... here for consistency with other entries in these
3894 sections.
3895 Move %define entry in order to keep this list alphabetized.
3896 Reword %define entry a little to put less emphasis on the skeleton
3897 concept, which most users shouldn't have to think about.
3898
3899 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3900
3901 Adjust to recent gnulib changes.
3902 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3903 Add string.h, string_.h, unistd_.h, wchar_.h.
3904 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3905 * src/system.h: Don't include <stpcpy.h>; this is now done by
3906 <string.h>.
3907
3908 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
3909
3910 Simplify implementation of unqualified %code, implement macros for
3911 uniform treatment of boolean %define flags. Document %define.
3912 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3913 b4_percent_code_ifdef): New.
3914 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3915 * data/c++.m4: Define default value for global_tokens_and_yystype.
3916 * data/glr.cc: Likewise.
3917 * data/location.cc: Use b4_percent_define_flag_if.
3918
3919 * doc/bison.texinfo (Decl Summary): Document %define.
3920
3921 * src/parse-gram.y (Unqualified %code): Change muscle name to
3922 b4_percent_code().
3923 (content.opt): Default to empty.
3924
3925 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3926
3927 Implement support for relative and absolute skeleton file names.
3928 Discussed starting at
3929 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3930 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3931 (Bison Options): Document in --skeleton entry.
3932 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3933 full_skeleton can't necessarily hold all of pkgdatadir.
3934 If the specified skeleton file name contains a `/', don't prepend
3935 pkgdatadir.
3936 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3937 file name contains a `/', prepend the grammar file directory.
3938 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3939 * skeletons.at: New file.
3940 (relative skeleton file names): New test case.
3941 (installed skeleton file names): New test case.
3942 * tests/testsuite.at: Include skeletons.at.
3943
3944 * bootstrap: Update copyright to 2007.
3945
3946 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
3947
3948 * bootstrap: Remove occurrences of .#bootmp from the files.
3949
3950 2007-01-17 Akim Demaille <akim@epita.fr>
3951
3952 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3953 nonterminals.
3954 Use per-type %printer.
3955
3956 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3957
3958 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3959 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3960 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3961 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3962 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3963 tests/glr-regression.at, tests/input.at, tests/local.at,
3964 tests/output.at, tests/torture.at: Update copyright to 2007.
3965
3966 2007-01-16 Akim Demaille <akim@epita.fr>
3967
3968 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3969 error code.
3970 (Calc++ Scanner): Exit with failure if we can't open the input
3971 file.
3972 Accept "-" standing for stdin.
3973 (Calc++ Top Level): Print the result only if the parsing was
3974 successful.
3975
3976 2007-01-16 Akim Demaille <akim@epita.fr>
3977
3978 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3979
3980 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
3981 and Joel E. Denny <jdenny@ces.clemson.edu>
3982
3983 Clean up %define and %code implementation in M4 some. Most
3984 importantly, rename all related macros to be in the b4_percent_define
3985 and b4_percent_code namespaces. Also, complete support for `.' in
3986 %define variable names and %code qualifiers.
3987 * data/bison.m4 (b4_check_user_names): Check for special
3988 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3989 m4_foreach loops.
3990 (b4_get_percent_define, b4_get_percent_code): Rename to...
3991 (b4_percent_define_get, b4_percent_code_get): ... these.
3992 Extend documentation with examples.
3993 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3994 b4_percent_define_skeleton_variables and
3995 b4_percent_code_skeleton_qualifiers.
3996 Expect any value for the %define variable `foo' to be stored in the
3997 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3998 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3999 expect any unqualified %code blocks to be stored in a macro named
4000 `b4_percent_code_unqualified'.
4001 Use m4_indir so that %define variable names and %code qualifiers can
4002 contain `.', which is allowed by the grammar parser.
4003 (b4_percent_define_default): New macro to set a default value for a
4004 %define variable.
4005 (m4_wrap): Update wrapped code, and fix some underquoting.
4006 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
4007 Expect grammar uses of %define variables and %code qualifiers to be
4008 defined in b4_percent_define_user_variables and
4009 b4_percent_code_user_qualifiers.
4010 * data/c++.m4: Use b4_percent_define_default rather than
4011 m4_define_default. Fix some underquoting. Skeleton usage of %define
4012 variable define_location_comparison now implies skeleton usage of
4013 %define variable filename_type.
4014 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4015 data/push.c, data/yacc.c: Update macro names.
4016 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
4017 muscle names.
4018
4019 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4020
4021 DJGPP specific issues.
4022
4023 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
4024 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
4025
4026 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4027
4028 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
4029 run parsers in all tests so that Valgrind is invoked during
4030 maintainer-check-valgrind.
4031 (Duplicate representation of merged trees): Free all semantic values.
4032 (Duplicated user destructor for lookahead): Likewise.
4033
4034 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4035
4036 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
4037 command-line prefix.
4038 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
4039 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
4040 miss Valgrind messages.
4041 (Exploding the Stack Size with Malloc): Likewise.
4042
4043 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4044
4045 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
4046 locals. Reported by Juan Manuel Guerrero at
4047 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
4048 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
4049 Fix some indentation also.
4050 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
4051 explaining this issue.
4052
4053 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
4054 and Joel E. Denny <jdenny@ces.clemson.edu>
4055
4056 Simplify union and prologue handling, and escape union and lex/parse
4057 params with digraphs.
4058 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
4059 values to the empty string since these are no longer guaranteed
4060 initialized by the front-end.
4061 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
4062 braces around b4_user_stype since this is no longer done by the
4063 front-end.
4064 * src/files.c, src/files.h (pre_prologue_obstack,
4065 post_prologue_obstack): Remove.
4066 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
4067 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
4068 with digraphs. This fixes lex params and parse params.
4069 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
4070 * src/output.c (prepare): Remove muscle insertion of the prologues.
4071 (output): Remove freeing of pre_prologue_obstack and
4072 post_prologue_obstack.
4073 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
4074 than prologue_augment for prologue parsing so you don't need prologue
4075 obstacks.
4076 (grammar_declaration): For %union RHS, use `braceless' instead of
4077 "{...}" so that braces are already stripped and code is escaped with
4078 digraphs.
4079 * src/reader.c (prologue_augment): Remove.
4080 (reader): Remove initialization of pre_prologue_obstack and
4081 post_prologue_obstack.
4082 * src/reader.h (prologue_augment): Remove.
4083
4084 * data/c.m4: Remove stray parenthesis.
4085
4086 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4087
4088 Remove quotes from variables names in %define directives and from
4089 qualifiers in %code directives, and restrict the characters that are
4090 allowed in them to M4-friendly ones. For %define, continue to support
4091 the quoted form as a deprecated feature. Discussed starting at
4092 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
4093 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
4094 %code.
4095 * doc/bison.texinfo (Prologue Alternatives): Update.
4096 (Decl Summary): In %defines entry, update mention of `%code requires'
4097 and `%code provides'.
4098 (C++ Location Values): Update %define uses.
4099 (Calc++ Parser Interface): Likewise.
4100 (Calc++ Parser): Likewise, and update `%code requires' uses.
4101 (Table of Symbols): Update %code documentation.
4102 * src/parse-gram.y (prologue_declaration): For %define variables, use
4103 `variable' instead of `STRING'.
4104 (grammar_declaration): For %code qualifiers, use `ID' instead of
4105 `STRING'.
4106 (variable): New nonterminal that takes an `ID' or a `STRING'.
4107 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
4108 and %define uses.
4109 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
4110 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
4111 (%define errors): Update %define uses.
4112
4113 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4114
4115 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
4116 instead of muscle_insert for %define values so that M4-special
4117 characters are replaced with digraphs.
4118 * tests/input.at (%define errors): Extend to check weird values.
4119
4120 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4121
4122 Instead of having skeletons declare all valid %define variables and
4123 %code qualifiers, provide macros that retrieve the associated values
4124 and build these lists automatically. Thus Bison will now warn when a
4125 variable or qualifier is not used by the skeleton in the current
4126 invocation regardless of whether it might sometimes be used by that
4127 skeleton in other invocations. Also, move all %define value macros to
4128 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
4129 form, which is replaced by %code.
4130 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
4131 (b4_check_user_names): ... this, and change the series of valid name
4132 arguments to a single list argument for names used in the skeleton
4133 similar to the existing list argument for names used in the grammar.
4134 Warn instead of complaining.
4135 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
4136 values and %code code, to format %code code properly, and to build
4137 lists of all %define variables and %code qualifiers used in the
4138 skeleton: b4_skeleton_percent_define_variables and
4139 b4_skeleton_percent_code_qualifiers.
4140 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
4141 Remove, and...
4142 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
4143 the skeleton names lists can finish building first. In place of
4144 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
4145 expect the lists b4_user_percent_define_variables and
4146 b4_user_percent_code_qualifiers.
4147 * data/c++.m4: Where setting default values for b4_parser_class_name,
4148 b4_location_type, b4_filename_type, b4_namespace, and
4149 b4_define_location_comparison, update their names to the
4150 b4_percent_define_ namespace.
4151 * data/glr.c: Don't use b4_check_percent_define_variables and
4152 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
4153 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
4154 (b4_parser_class_name, b4_namespace): Define these using
4155 b4_get_percent_define for parser_class_name and namespace.
4156 * data/location.cc: Use b4_get_percent_define.
4157 * data/push.c: Don't use b4_check_percent_define_variables and
4158 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
4159 * data/yacc.c: Likewise, and don't call m4_exit in
4160 b4_use_push_for_pull_if or m4_wrap code will never execute.
4161 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
4162 Rename to...
4163 (muscle_grow_user_name_list): ... this for consistency with the
4164 terminology used in bison.m4.
4165 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
4166 %define variable names, and rename muscle used_percent_define_variables
4167 to user_percent_define_variables.
4168 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
4169 user_percent_code_qualifiers.
4170 (content): Remove.
4171 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
4172 {CODE} form is no longer accepted.
4173 * tests/input.at (Reject bad %code qualifiers): Rename to...
4174 (Reject unused %code qualifiers): ... this, and update test output.
4175 (%define error): Update test output.
4176
4177 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
4178
4179 Check for unrecognized %define variables similar to checking for
4180 unrecognized %code qualifiers. Check for redefined %define variables.
4181 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
4182 generalizes...
4183 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
4184 (b4_check_percent_define_variables): New, also wraps it.
4185 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
4186 variables using b4_check_percent_define_variables.
4187 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
4188 all those exercised in the test suite and all those listed in the
4189 `Default values' section of c++.m4. Are there others?
4190 * data/push.c, data/yacc.c: Declare no valid %define variables.
4191 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
4192 similar to muscle_find, but it works even when the muscle stores a
4193 const value.
4194 (muscle_grow_used_name_list): New function for constructing the used
4195 name list muscles that b4_check_for_unrecognized_names requires.
4196 * src/parse-gram.y (prologue_declaration): Warn if a variable is
4197 %define'd more than once. Define the b4_used_percent_define_variables
4198 muscle with muscle_grow_used_name_list.
4199 (grammar_declaration): Abbreviate %code code with
4200 muscle_grow_used_name_list.
4201 * tests/input.at (%define errors): New.
4202
4203 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4204
4205 Provide warn_at, complain_at, and fatal_at function callbacks to the
4206 skeletons, and use this for %code qualifier complaints.
4207 * data/bison.m4 (b4_error_at): New, invoked by...
4208 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
4209 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
4210 @fatal_at(...@) directives.
4211 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
4212 qualifiers in b4_used_percent_code_qualifiers and to use
4213 b4_complain_at.
4214 * src/location.c, src/location.h (boundary_set_from_string): New global
4215 function.
4216 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
4217 function.
4218 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
4219 to b4_used_percent_code_qualifiers.
4220 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
4221 function.
4222 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
4223 (lineno): Rename to...
4224 (out_lineno): ... this so I don't misunderstand it again.
4225 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
4226 here; these newlines are in the input but not the output file.
4227 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
4228 (at_directive_perform): ... this new static function, and add handling
4229 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
4230 directives.
4231 * tests/input.at (Reject bad %code qualifiers): Update test output with
4232 locations and extend.
4233
4234 * tests/output.at (Output file name: [, Output file name: ]): Remove
4235 bogus comment about these tests failing.
4236
4237 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4238
4239 Clean up b4_check_percent_code_qualifiers a little.
4240 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
4241 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
4242 documentation and add examples.
4243 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
4244 qualifiers here.
4245
4246 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
4247
4248 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
4249 unreliable -- especially when they're hidden inside another macro.
4250 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
4251 data/c.m4: Remove m4_divert(-1).
4252 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4253 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
4254 m4_divert_push(0) and m4_divert_pop(0).
4255 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
4256 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
4257 pushed and popped by m4sugar, should be first on the stack.
4258
4259 Provide warn, complain, and fatal function callbacks to the skeletons.
4260 This provides more flexibility than m4_fatal, improves the error
4261 message format, and captures messages for translation. Discussed
4262 starting at
4263 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
4264 * data/bison.m4 (b4_error): New, invoked by...
4265 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
4266 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
4267 directives. Because these M4 macros might be called when the current
4268 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
4269 the previous removal of uses of m4_divert, which caused trouble.
4270 (b4_check_percent_code_qualifiers): Use b4_complain instead of
4271 m4_fatal to report unrecognized %code qualifiers.
4272 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
4273 push parser requests.
4274 * data/glr.c: Use b4_complain instead of m4_fatal to report
4275 non-deterministic push parser requests.
4276 Update @output usage to @output(...@) form.
4277 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
4278 report missing %defines. Update @output usage to @output(...@) form.
4279 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
4280 @output(...@) form.
4281 * src/main.c (main): Invoke skel_scanner_free.
4282 * src/scan-skel.h (skel_scanner_free): Prototype new function.
4283 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
4284 obstack_for_string from flex-scanner.h.
4285 (YY_DECL): Use to declare skel_lex static.
4286 (decode_at_digraphs): Remove; now handled in the new
4287 SC_AT_DIRECTIVE_ARG start condition.
4288 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
4289 functions.
4290 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
4291 at_directive_argv): New static globals.
4292 (INITIAL): Use fail_for_invalid_at.
4293 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
4294 recognize the start of a generalized `@directive(...@)' form and
4295 start...
4296 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
4297 directive args (using the new obstack_for_string), to decode the
4298 contained @ diagraphs, and to perform the directive. It recognizes
4299 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
4300 @output(...@).
4301 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
4302 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
4303 `@,'.
4304 (scan_skel): Initialize obstack_for_string on the first call.
4305 (skel_scanner_free): New function to free obstack_for_string.
4306 * tests/input.at (Reject bad %code qualifiers): Update test output.
4307
4308 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
4309
4310 Consolidate the 4 prologue alternative directives (%code, %requires,
4311 %provides, and %code-top) into a single %code directive with an
4312 optional qualifier field. Discussed at
4313 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
4314 * NEWS (2.3a+): Rewrite the existing entry for the prologue
4315 alternatives.
4316 * doc/bison.texinfo (Prologue Alternatives): Update.
4317 (Decl Summary): Update to %code "requires" and %code "provides".
4318 (Calc++ Parser): Update to %code "requires".
4319 (Table of Symbols): Remove entries for %requires, %provides, and
4320 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
4321 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
4322 are replaced by b4_percent_code_provides and b4_percent_code_requires,
4323 which are skeleton-specific.
4324 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
4325 declare what %code qualifiers it supports and to complain if any other
4326 qualifiers were used in the grammar.
4327 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
4328 and b4_user_code([b4_percent_code_provides]) in place of
4329 b4_user_requires and b4_user_provides.
4330 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
4331 Add b4_user_code([b4_percent_code_top]) and
4332 b4_user_code([b4_percent_code]).
4333 Invoke b4_check_percent_code_qualifiers.
4334 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4335 PERCENT_REQUIRES): Remove.
4336 (grammar_declaration): Remove RHS's for %code-top, %provides, and
4337 %requires. Rewrite the %code RHS as the unqualified form defining the
4338 muscle b4_percent_code. Add another RHS for the qualified %code form,
4339 which defines muscles of the form b4_percent_code_QUALIFIER and the
4340 b4_used_percent_code_qualifiers muscle.
4341 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4342 PERCENT_REQUIRES): Remove.
4343 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
4344 %code "requires" and %code "provides".
4345 * tests/input.at (Reject bad %code qualifiers): New.
4346
4347 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4348
4349 Use the new code_props interface for destructors and printers.
4350 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
4351 printer_location members, and change the type of the destructor and
4352 printer members to code_props.
4353 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
4354 symbol_printer_get, semantic_type_destructor_set,
4355 semantic_type_printer_set, default_tagged_destructor_set,
4356 default_tagless_destructor_set, default_tagged_printer_set,
4357 default_tagless_printer_set): Use code_props in arguments and return
4358 types in place of char const * and location.
4359 (symbol_destructor_location_get, symbol_printer_location_get): Remove
4360 since the locations are now contained in the return of
4361 symbol_destructor_get and symbol_printer_get.
4362 * src/output.c (symbol_destructors_output, symbol_printers_output):
4363 Replace with...
4364 (symbol_code_props_output): ... this to eliminate duplicate code.
4365 (output_skeleton): Update to use symbol_code_props_output.
4366 * src/reader.c (symbol_should_be_used): Update use of
4367 symbol_destructor_get.
4368 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
4369 Update uses of the various _destructor_set and _printer_set functions.
4370 * src/symtab.c: (default_tagged_destructor_location,
4371 default_tagless_destructor_location, default_tagged_printer_location,
4372 default_tagless_printer_location): Remove since we...
4373 (default_tagged_destructor, default_tagless_destructor,
4374 default_tagged_printer, default_tagless_printer): ... change the type
4375 of these to code_props.
4376 (symbol_new, semantic_type_new, symbol_destructor_set,
4377 semantic_type_destructor_set, symbol_destructor_get,
4378 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
4379 symbol_check_alias_consistency, default_tagged_destructor_set,
4380 default_tagless_destructor_set, default_tagged_printer_set,
4381 default_tagless_printer_set): Update.
4382 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
4383 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
4384 code_props members.
4385 (symbol_print): Use SYMBOL_CODE_PRINT.
4386
4387 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4388
4389 Use the new code_props interface for rule actions.
4390 * src/symlist.h (symbol_list): Replace action, action_location, and
4391 used members with a code_props action_props member.
4392 * src/reader.c (symbol_should_be_used, grammar_rule_check,
4393 grammar_midrule_action, grammar_current_rule_merge_set,
4394 grammar_current_rule_symbol_append, packgram): Update.
4395 * src/scan-code.h (translate_rule_action): Remove, no longer used.
4396 * src/scan-code.l (handle_action_dollar): Update.
4397 (translate_rule_action): Remove, no longer used.
4398 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
4399
4400 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4401
4402 Use the new code_props interface in parse-gram.y.
4403 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
4404 Update all uses of translate_* functions to use the new code_props
4405 interface and to use gram_scanner_last_string_free and
4406 code_scanner_last_string_free where possible.
4407 (grammar_declaration): symbol_list_destructor_set and
4408 symbol_list_printer_set now perform the translation, so don't do it
4409 here. Use gram_scanner_last_string_free where possible.
4410 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
4411 translate_code): Remove, no longer used.
4412 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
4413 symbol_list_printer_set): Perform code translation here rather than
4414 depending on the caller to do so.
4415
4416 * src/symlist.h (struct symbol_list): Correct some documentation typos.
4417 * src/scan-gram.h (gram_last_string): Remove declaration.
4418 * src/scan-gram.l (last_string): Declare it static.
4419
4420 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4421
4422 Encapsulate code properties and related functionality for the various
4423 destructors, printers, and actions into a code_props structure and
4424 interface. This patch merely implements code_props in scan-code.h and
4425 scan-code.l. Future patches will rewrite other modules to use it.
4426 Discussed starting at
4427 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
4428 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
4429 consistently initialize const structs that have an empty location
4430 field.
4431 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
4432 to ensure consistency.
4433 * src/scan-code.h (code_props): New structure.
4434 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
4435 function, macro, and const global variable for initializing a
4436 code_props with no code.
4437 (code_props_plain_init, code_props_symbol_action_init,
4438 code_props_rule_action_init, code_props_translate_code): The rest of
4439 the new code_props functional interface. Among other things, the init
4440 functions set the code_props kind field so that
4441 code_props_translate_code will know whether to behave like
4442 translate_symbol_action, translate_rule_action, or translate_code.
4443 These old translate functions must remain until all other modules are
4444 updated to use the new code_props interface.
4445 (code_scanner_last_string_free): New function similar to
4446 gram_scanner_last_string_free.
4447 (code_scanner_free): Add documentation.
4448 * src/scan-code.l: Implement the new interface.
4449 (code_lex): Make it static, add a code_props* argument, and remove the
4450 rule argument.
4451 (last_string): New static global similar to the one in scan-gram.l.
4452 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
4453 instead of rule.
4454 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
4455 code_props since Bison may one day use this information for destructors
4456 and printers.
4457 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
4458 (handle_action_dollar): Use symbol_list_n_get and set used flag
4459 directly since symbol_list_n_used_set is removed.
4460 (translate_action): Add a code_props* argument and remove the rule,
4461 action, and location arguments. Pass the code_props* on to code_lex.
4462 (translate_rule_action, translate_symbol_action, translate_code):
4463 Rewrite as wrappers around the new code_props interface.
4464 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
4465 it would eventually need to break the encapsulation of code_props.
4466
4467 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4468
4469 * etc/.cvsignore: New.
4470
4471 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4472
4473 Add maintainer-push-check to run maintainer-check using push parsing in
4474 place of pull parsing where available.
4475 * Makefile.am (maintainer-push-check): New.
4476 * data/bison.m4 (b4_use_push_for_pull_if): New.
4477 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
4478 appropriately based on their existing values.
4479 (yypush_parse): Don't print push-parser-specific diagnostics if push
4480 parsing is being used in place of pull parsing.
4481 * data/yacc.c: If push parsing should replace pull parsing, redirect to
4482 push.c.
4483 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
4484 variable, and insert b4_use_push_for_pull_flag into muscles.
4485 * tests/Makefile.am (maintainer-push-check): New.
4486
4487 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4488
4489 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
4490 (whether successful or failed) so that yypush_parse can be invoked
4491 again to start a new parse using the same yypstate.
4492 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
4493 check multiple yypull_parse invocations on the same yypstate. For pull
4494 mode, extend to check multiple yyparse invocations.
4495 (Exploding the Stack Size with Alloca): Extend to try with
4496 %push-pull-parser.
4497 (Exploding the Stack Size with Malloc): Likewise.
4498
4499 * tests/calc.at (Simple LALR Calculator): Don't specify
4500 %skeleton "push.c" since %push-pull-parser implies that now.
4501 * tests/headers.at (export YYLTYPE): Don't check for the push
4502 declarations. Otherwise, this test case can't be used to see if push
4503 mode can truly emulate pull mode.
4504 * tests/input.at (Torturing the Scanner): Likewise.
4505 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
4506 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
4507 AT_YACC_IF, which now includes the case of push mode since %skeleton
4508 need not be used for push mode. This will be more intuitive once
4509 push.c is renamed to yacc.c.
4510
4511 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4512
4513 For push mode, convert yyparse from a macro to a function, invoke yylex
4514 instead of passing a yylexp argument to yypull_parse, and don't
4515 generate yypull_parse or yyparse unless %push-pull-parser is declared.
4516 Discussed starting at
4517 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
4518 * data/bison.m4 (b4_pull_if): New.
4519 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
4520 * data/push.c: Improve M4 quoting a little.
4521 (b4_generate_macro_args, b4_parenthesize): Remove.
4522 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
4523 any time a pull parser is requested.
4524 Don't #define this as a wrapper around yypull_parse. Instead, when
4525 both push and pull are requested, make it a function that does that
4526 same thing.
4527 (yypull_parse): If there's a b4_prefix, #define this to
4528 b4_prefix[pull_parse] when both push and pull are requested.
4529 Don't define this as a function unless both push and pull are
4530 requested.
4531 Remove the yylexp argument and hard-code yylex invocation instead.
4532 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
4533 %push-parser.
4534 * src/getargs.c (pull_parser): New global initialized to true.
4535 * getargs.h (pull_parser): extern it.
4536 * src/output.c (prepare): Insert pull_flag muscle.
4537 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
4538 (prologue_declaration): Set both push_parser and pull_parser = true for
4539 %push-pull-parser. Set push_parser = true and pull_parser = false for
4540 %push-parser.
4541 * src/scan-gram.l: Don't accept %push_parser as an alternative to
4542 %push-parser since there's no backward-compatibility concern here.
4543 Scan %push-pull-parser.
4544 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
4545 instead of %push-parser.
4546 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
4547 prototype it in the module that calls yyparse.
4548 * tests/input.at (Torturing the Scanner): Likewise.
4549 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
4550
4551 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
4552
4553 Update etc/bench.pl. Optimize push mode a little (the yyn change
4554 deserves most of the credit).
4555 * Makefile.am (SUBDIRS): Add etc subdirectory.
4556 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
4557 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
4558 yytoken, yyval, and yyloc declarations to...
4559 (yyparse or yypush_parse): ... here to improve performance. For
4560 yypush_parse invocations after the first, be sure to assign yyn its old
4561 value again.
4562 (yypstate_new): Don't bother initializing the yyresult field since the
4563 initial value isn't used.
4564 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
4565 remove the #define that, in push mode, set it to yyps->NAME.
4566 * etc/Makefile.am: New.
4567 * etc/bench.pl: Remove and build it instead from...
4568 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
4569 "tests/bison" from the build directory by default rather than just
4570 invoking "bison" from $PATH.
4571 (calc_grammar): Update push parser code: don't declare yylval globally,
4572 don't define yyparse_wrapper, and don't #define yyparse.
4573 (bench_grammar): Update to check all working combinations of yacc.c,
4574 push.c, impure, pure, pull, and push.
4575
4576 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4577
4578 For push mode, add pull wrappers around yypush_parse.
4579 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
4580 (yypull_parse): New function wrapping yypush_parse.
4581 (yyparse): New #define wrapping yypull_parse.
4582 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
4583 is declared.
4584 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
4585 prototype yylex in the module that calls yyparse, and don't prototype
4586 yyparse there. Otherwise, the yyparse expansion won't compile.
4587 * tests/input.at (Torturing the Scanner): Likewise.
4588
4589 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4590
4591 Enable push parsers to operate in impure mode. Thus, %push-parser no
4592 longer implies %pure-parser. The point of this change is to move
4593 towards being able to test the push parser code by running the entire
4594 test suite as if %push-parser had been declared.
4595 * data/push.c (yypush_parse): For impure mode, remove the
4596 yypushed_char, yypushed_val, and yypushed_loc arguments.
4597 Instead, declare these as local variables initialized to the global
4598 yychar, yylval, and yylloc.
4599 For the first yypush_parse invocation only, restore the initial values
4600 of these global variables when it's time to read a token since they
4601 have been overwritten.
4602 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
4603 %push-parser.
4604 * tests/calc.at (Simple LALR(1) Calculator): Always declare
4605 %pure-parser along with %push-parser since this test case was designed
4606 for pure push parsers.
4607 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
4608 (AT_YACC_OR_PUSH_IF): New.
4609 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
4610 add a note that it's still wrong for some cases (as it has been for a
4611 while).
4612 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
4613 %push-parser no longer implies %pure-parser.
4614
4615 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4616
4617 Remove some unnecessary differences between the pull parser code and
4618 the push parser code. This patch enables yynerrs in push mode.
4619 * data/push.c: Reformat M4 a little.
4620 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
4621 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
4622 because push mode is on. Instead, if pure mode is on, move yynerrs
4623 to...
4624 (b4_declare_parser_state_variables): ... here.
4625 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
4626 to yyps->NAME so it can be used in yypush_parse.
4627 (yypush_parse): Don't omit uses of yynerrs in push mode.
4628
4629 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4630
4631 Fix bug such that the first pushed token's value and location are
4632 sometimes overwritten (sometimes by %initial-action) before being used.
4633 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
4634 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
4635 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
4636 more closely mimic the pull parser logic.
4637 Don't copy the pushed token to yychar, yylval, and yylloc until it's
4638 time to read a token, which is after any initialization of yylval and
4639 yylloc.
4640 (gottoken): Rename label to...
4641 (yyread_pushed_token): ... for clarity and to avoid infringing on the
4642 user namespace.
4643
4644 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4645
4646 Rearrange initialization of the parser state variables so that the
4647 skeleton doesn't have to have a copy for pull mode and another for push
4648 mode. This patch also fixes at least a bug such that yylloc was not
4649 initialized (with b4_location_initial_line and
4650 b4_location_initial_column) upon calling yypush_parse. However, that
4651 initialization now overwrites the first token's location;
4652 %initial-action assigning @$ already did the same thing, and both bugs
4653 will be fixed in a later patch.
4654 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
4655 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4656 yyss, yyvs, yyls, and yystacksize.
4657 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4658 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4659 yylsp.
4660 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4661 yyps->NAME so it can be used in yypush_parse.
4662 (yyparse or yypush_parse): For yypush_parse, don't print the
4663 "Starting parse" diagnostic for invocations after the first.
4664 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4665 yypush_parse, only do it for the first invocation.
4666 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4667 initialization to occur in yypush_parse but only on the first
4668 invocation.
4669
4670 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4671
4672 * data/push.c: Add CPP guards around push parser declarations in both
4673 the header and the code file.
4674 In the code file, move the push parser declarations to the same place
4675 they appear in the header file.
4676 Clean up the M4 some, especially the inconsistent underquoting in
4677 some b4_c_function_def and b4_c_function_decl uses.
4678
4679 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4680
4681 Encapsulate the push parser state variables into an M4 macro so the
4682 push skeleton doesn't have to list them again for pull mode's yyparse.
4683 For push mode, remove yypush_parse's local equivalents of these
4684 variables to eliminate unnecessary copying between the two sets at
4685 run-time. This patch also fixes at least a bug related to multiple
4686 %initial-action invocations in push mode.
4687 * data/push.c (b4_declare_parser_variables): Rename to...
4688 (b4_declare_scanner_communication_variables): ... this for clarity and
4689 update both uses.
4690 (b4_declare_yyparse_variables): Remove and move its contents to the one
4691 spot where it was invoked.
4692 (b4_declare_parser_state_variables): New macro containing the parser
4693 state variables required by push mode.
4694 (struct yypstate): Replace all fields but yynew with
4695 b4_declare_parser_state_variables.
4696 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4697 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4698 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4699 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4700 parser state variable declarations with
4701 b4_declare_parser_state_variables.
4702 Don't initialize parser state variables when calling yypush_parse since
4703 yypstate_new already does that.
4704 Invoke the user's initial action only upon the first yypush_parse
4705 invocation.
4706 Remove all code that copies between the local parser state variables
4707 and the yypstate.
4708
4709 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4710
4711 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4712 prevent a name collision in a future patch where these names will
4713 sometimes be #define'd.
4714 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4715 since it no longer has the same name as the existing argument.
4716 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4717
4718 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
4719 and Joel E. Denny <jdenny@ces.clemson.edu>
4720
4721 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4722 that the argument is case-insensitive, and there's no `=' here.
4723 For the %skeleton entry, mention that %language is better.
4724 (Bison Options): Likewise for --language and --skeleton. Move the
4725 --skeleton entry so that the `Tuning the parser' section is sorted
4726 alphabetically on long options.
4727 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4728 %language directive in detail here; cross-reference the %language
4729 documentation instead.
4730 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4731 `%require "2.3b"' so that the example is always up-to-date.
4732 (Table of Symbols): Add entries for %language and %skeleton.
4733 * examples/extexi (normalize): Instead of replacing every %require
4734 argument with the current Bison version, just substitute for
4735 `@value{VERSION}'. This guarantees that we're testing what actually
4736 appears in the documentation.
4737 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4738 rather than `@VERSION@'.
4739
4740 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4741
4742 * NEWS: Reword the %language news a bit, and put it earlier.
4743
4744 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4745 Rewrite to simplify the logic.
4746 (language_argmatch): Likewise.
4747 (program_name): We now own this var.
4748 * src/getargs.h (struct bison_language): Use char[] rather than
4749 const char *.
4750
4751 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4752 Java is supported.
4753 * src/complain.c (program_name): Remove decl; no longer needed.
4754 * src/main.c (program_name): Remove; now belongs to getargs.
4755
4756 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
4757
4758 * NEWS: Document %language.
4759
4760 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4761
4762 * data/c-skel.m4, data/c++-skel.m4: New files.
4763 * data/glr.c: Complain on push parsers.
4764
4765 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4766 over %skeleton.
4767 (Decl Summary): Document %language and %skeleton.
4768 (Command line): Document -L.
4769
4770 * examples/extexi: Rewrite %require directive.
4771 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4772
4773 * src/files.c (compute_exts_from_gc): Look in language structure
4774 for .y extension.
4775 (compute_file_name_parts): Check whether .tab should be added.
4776 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4777 (language, skeleton_arg, language_argmatch): New.
4778 (long_options): Add --language.
4779 (getargs): Use skeleton_arg, add -L/--language.
4780 * src/getargs.h: Include location.h.
4781 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4782 * src/output.c (prepare): Pick default skeleton from struct language.
4783 Don't dispatch C skeletons here.
4784 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4785 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4786 * src/scan-gram.l ("%language"): New rule.
4787
4788 * tests/calc.at: Test %skeleton and %language.
4789 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4790 (AT_GLR_IF): Look for %skeleton "glr.cc".
4791 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4792 (AT_YACC_IF): Reject %language.
4793
4794 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4795
4796 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4797 since it wasn't used; only the typedef name 'semantic_type' is needed.
4798 Also, omit trailing white space.
4799
4800 * bootstrap: Sync from coreutils.
4801 (gnulib_extra_files): Add build-aux/announce.gen.
4802 (slurp): Adjust .gitignore files like .cvsignore files.
4803 * build-aux/announce-gen: Remove from CVS, since bootstrap
4804 now creates this.
4805
4806 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4807
4808 Make %push-parser imply %pure-parser. This fixes several bugs; see
4809 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4810 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4811 pure_parser = true.
4812 * data/push.c: Don't bother testing b4_push_if when deciding whether
4813 to expand b4_declare_parser_variables globally.
4814 (yypush_parse): Likewise in here.
4815
4816 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4817 (yy_reduce_print): Reformat M4 for readability.
4818
4819 2006-12-15 Bob Rossi <bob@brasko.net>
4820 and Joel Denny <jdenny@ces.clemson.edu>
4821
4822 * data/push.c (yypstate): Add typedef, and update all uses of
4823 struct yypstate to just yypstate.
4824 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4825
4826 2006-12-14 Bob Rossi <bob@brasko.net>
4827
4828 * data/push.c (yypush_parse): Declare prototype regardless of
4829 %locations option.
4830
4831 2006-12-14 Bob Rossi <bob@brasko.net>
4832
4833 * data/push.c (yyparse): Remove the prototype and the #define when in
4834 push-parser mode.
4835
4836 2006-12-13 Bob Rossi <bob@brasko.net>
4837
4838 * data/push.c (yypstate_init): Rename to...
4839 (yypstate_new): ... this and use b4_c_function_def.
4840 (yypstate_delete): New.
4841 (yypush_parse): Change parameters yynval and yynlloc to be const.
4842 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4843 yypstate_delete functions.
4844
4845 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4846
4847 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4848 strange test case titles. Reported by Bob Rossi.
4849
4850 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4851
4852 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4853 of potential ambiguities in GLR grammers.
4854
4855 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4856
4857 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4858 `bison ', use m4_index instead of m4_substr since chopping up a string
4859 containing M4-special characters causes problems here.
4860
4861 Fix a couple of bugs related to special characters in user-specified
4862 file names, and make it easier for skeletons to compute output file
4863 names with the same file name prefix as Bison-computed output file
4864 names.
4865 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4866 b4_parser_file_name and b4_spec_defines_file instead of
4867 @output_parser_name@ and @output_header_name@, which are now redundant.
4868 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4869 b4_parser_file_name, b4_spec_defines_file, and the new
4870 @basename(FILENAME@) instead of @output_parser_name@ and
4871 @output_header_name@, which inappropriately escaped the file names as
4872 C string literals.
4873 * src/files.c (all_but_ext): Remove static qualifier.
4874 (compute_output_file_names): Move `free (all_but_ext)' to...
4875 (output_file_names_free): ... here since all_but_ext is needed later.
4876 * src/files.h (all_but_ext): Extern.
4877 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4878 exactly what MUSCLE_INSERT_STRING used to do.
4879 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4880 characters are escaped properly.
4881 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4882 all_but_ext.
4883 For pkgdatadir muscle, maintain previous functionality by using
4884 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4885 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4886 digraphs would never be expanded. Hopefully no one has M4-special
4887 characters in his Bison installation path.
4888 * src/scan-skel.l: Don't parse @output_header_name@ and
4889 @output_parser_name@ anymore since they're now redundant.
4890 In @output, use decode_at_digraphs.
4891 Parse a new @basename command that invokes last_component.
4892 (decode_at_digraphs): New.
4893 (BASE_QPUTS): Remove unused.
4894 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4895 (Output file name): New tests.
4896
4897 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4898
4899 Warn about output files that are generated by the skeletons and that
4900 conflict with other output files.
4901 * data/glr.c: Don't generate the header file here when glr.cc does.
4902 * src/files.c (file_names, file_names_count): New static globals.
4903 (compute_output_file_names): Invoke output_file_name_check for files
4904 not generated by the skeletons and remove existing checks.
4905 (output_file_name_check): New function that warns about conflicting
4906 output file names.
4907 (output_file_names_free): Free file_names.
4908 * src/files.h (output_file_name_check): Declare.
4909 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4910 the skeletons.
4911 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4912 (Conflicting output files): New tests.
4913
4914 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4915
4916 * doc/bison.texinfo: Fix a couple of typos.
4917
4918 2006-12-08 Bob Rossi <bob@brasko.net>
4919
4920 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4921 Rename to...
4922 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4923 update all uses.
4924 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4925 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4926 local pv.
4927 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4928 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4929
4930 2006-12-07 Bob Rossi <bob@brasko.net>
4931 and Joel Denny <jdenny@ces.clemson.edu>
4932
4933 * data/push.c (yypvarsinit): Change return type from void* to struct
4934 yypvars*. No longer cast to void* on return.
4935 (struct yypvars): Remove yylen since it need not be remembered between
4936 yypushparse invocations.
4937 (yypushparse): Don't copy between yylen and pv->yylen.
4938
4939 2006-12-05 Bob Rossi <bob@brasko.net>
4940
4941 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4942 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4943 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4944 (struct yypvars): Remove b4_declare_parser_variables.
4945 (yypvarsinit): Remove init code for removed variables.
4946 (global scope): Do not declare b4_declare_parser_variables if
4947 push or pure mode.
4948 (yypushparse): Add b4_declare_parser_variables.
4949 Init new local variables, and remove init code for removed
4950 yypvars variables.
4951 (yyparse): Delete.
4952 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4953 and yyparse for other modes.
4954 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4955 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4956 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4957 (AT_PURE_LEX_IF): True if pure or push parser.
4958
4959 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4960
4961 Document Yacc prologue alternatives and default %destructor's and
4962 %printer's as experimental. Don't mention Java yet. Discussed at
4963 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4964 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4965 (2.3a): Annotate this entry to say the old forms of these features were
4966 also experimental.
4967 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
4968 Table of Symbols): Say they're experimental. Comment out any mention
4969 of Java (we'll want this back eventually).
4970
4971 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4972
4973 Support a file name argument to %defines. Deprecate `=' in
4974 %file-prefix, %name-prefix, and %output. Discussed at
4975 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4976 * NEWS (2.3a+): Mention.
4977 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
4978 form of %defines, and remove `=' from entries for %file-prefix,
4979 %name-prefix, and %output.
4980 * src/parse-gram.y (prologue_declaration): Implement.
4981 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4982 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4983 all but one occurrence of %name-prefix.
4984 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4985 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4986 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4987 occurrence of each of %file-prefix and %output. Add check for %defines
4988 with argument.
4989 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4990 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4991 Remove the `=' from %output.
4992
4993 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4994
4995 Don't escape $ in test case titles since Autoconf 2.61 now does that
4996 correctly.
4997 * tests/actions.at (Default %printer and %destructor are not for error
4998 or $undefined): Here.
4999 (Default %printer and %destructor are not for $accept): Here.
5000 * tests/input.at (Invalid $n and @n): Here.
5001
5002 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
5003
5004 Rename <!> to <>. Discussed starting at
5005 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
5006 * NEWS (2.3a+): Update.
5007 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
5008 Update.
5009 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
5010 * src/scan-gram.l (INITIAL): Implement.
5011 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
5012 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
5013 comment.
5014 * tests/actions.at (Default tagless %printer and %destructor,
5015 Default tagged and per-type %printer and %destructor,
5016 Default %printer and %destructor are not for error or $undefined,
5017 Default %printer and %destructor are not for $accept,
5018 Default %printer and %destructor for mid-rule values): Update.
5019 * tests/input.at (Default %printer and %destructor redeclared,
5020 Unused values with default %destructor): Update.
5021
5022 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
5023
5024 Don't let %prec take a nonterminal.
5025 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
5026 token.
5027 * tests/input.at (%prec takes a token): New test checking that %prec
5028 won't take a nonterminal.
5029
5030 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5031
5032 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
5033 it was double-quoted.
5034 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
5035 grammar is maintained with Bison's highest standards.
5036 * src/getargs.c: Fix some typos in Doxygen comments.
5037
5038 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5039
5040 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
5041 later. Reported by Paul Eggert in
5042 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
5043 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
5044 * src/scan-code.l (translate_action): Don't bother invoking
5045 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
5046 (code_scanner_free): Instead of invoking
5047 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
5048 which frees more.
5049 * src/scan-gram.l (gram_scanner_free): Likewise.
5050 * src/scan-skel.l (scan_skel): Likewise.
5051
5052 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
5053
5054 * src/files.c (tr): Change return type to void.
5055 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
5056 has been called previously for the same key.
5057 (muscle_find): Return storage instead of value so that
5058 --enable-gcc-warnings doesn't produce warnings that the return discards
5059 const. aver that the value and storage are the same since storage
5060 could potentially be NULL when value is not.
5061 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
5062 same as 0.
5063
5064 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
5065
5066 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
5067 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
5068 us a slightly cleaner distribution, and also works.
5069 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
5070 gnulib changes.
5071
5072 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
5073 and Paul Eggert <eggert@cs.ucla.edu>
5074
5075 Don't let Bison leak memory except when it complains.
5076 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
5077 (spec_defines_file, dir_prefix): Now char *, not const char *,
5078 since they are freed.
5079 * src/files.c: Likewise.
5080 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
5081 Likewise.
5082 (tr): Now operates in-place. All uses changed.
5083 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
5084 values.
5085 (compute_file_name_parts, compute_output_file_names): Don't store
5086 read-only data in variables that will be freed.
5087 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
5088 src_extension, and header_extension.
5089 (output_file_names_free): New public function to free
5090 spec_verbose_file, spec_graph_file, spec_defines_file,
5091 parser_file_name, and dir_prefix.
5092 * src/getargs.c (getargs): Don't store read-only data in variables that
5093 will be freed.
5094 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
5095 (which previously existed but was unused), and quotearg_free.
5096 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
5097 * src/muscle_tab.c: Likewise.
5098 (muscle_entry): Make the value char const *,
5099 and add a new storage member that is char * and can be freed.
5100 (muscle_entry_free): New private function.
5101 (muscle_init): Use it instead of free.
5102 (muscle_insert, muscle_grow): Update and use new storage member.
5103 (muscle_code_grow): Free the string passed to muscle_grow
5104 since it's not needed anymore.
5105 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
5106 add a new `char *code' member.
5107 ("{...}"): Declare semantic type as code.
5108 * src/scan-code.h (translate_rule_action):
5109 (translate_symbol_action, translate_code, translate_action): Return
5110 `char const *' rather than `char *' since external code should not free
5111 these strings.
5112 * src/scan-code.l: Likewise.
5113 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
5114 which is "{...}" in the parser.
5115 * tests/Makefile.am (maintainer-check-valgrind): Set
5116 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
5117 Valgrind.
5118 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
5119 complain.
5120 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
5121 expecting a non-zero exit status sets --leak-check=summary and
5122 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
5123 this case, and we don't want to hear about it.
5124
5125 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
5126
5127 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
5128 instead of from the template, to simplify configuration a bit.
5129 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
5130 and m4/wint_t.m4, as they are needed with the latest gnulib.
5131
5132 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5133
5134 Disable unset/unused mid-rule value warnings by default, and recognize
5135 --warnings=midrule-values to enable them. Discussed starting at
5136 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
5137 * NEWS (2.3a+): Mention.
5138 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
5139 warnings): Add entry for midrule-values subargument.
5140 * src/reader.c (symbol_should_be_used): Don't return true just because
5141 the value is a set/used mid-rule value unless
5142 --warnings=midrule-values was specified.
5143 * tests/input.at (Unused values, Unused values before symbol
5144 declarations): Run tests with and without --warnings=midrule-values.
5145
5146 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
5147 than LIST_FREE directly.
5148
5149 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5150
5151 Finish implementing --warnings=error, which should not be implied by
5152 --warnings=all (or by its synonyms -W and --warnings without
5153 subarguments).
5154 * src/complain.c (set_warning_issued): New function to report that
5155 warnings are being treated as errors and to record an error if so.
5156 Invoke...
5157 (warn_at, warn): ... here.
5158 * src/getargs.c (warnings_args, warnings_types): Reorder so that
5159 "error - warnings are errors" does not appear above "all - all of the
5160 above".
5161 (getargs): For -W and --warnings without subarguments, don't let
5162 FLAGS_ARGMATCH set warnings_error in warnings_flag.
5163 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
5164
5165 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5166
5167 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
5168 empty subargument list. For example: `bison --warnings= parser.y'.
5169
5170 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5171
5172 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
5173 the parser header file so that gcc doesn't warn.
5174
5175 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5176
5177 Split the default %destructor/%printer into two kinds: <*> and <!>.
5178 Discussed starting at
5179 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
5180 * NEWS (2.3a+): Mention.
5181 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
5182 previous change today related to mid-rules.
5183 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
5184 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
5185 (TYPE_TAG_ANY): Add as <*>.
5186 (TYPE_TAG_NONE): Add as <!>.
5187 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
5188 for <*> and <!>.
5189 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
5190 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
5191 * src/symlist.c (symbol_list_default_new): Split into tagged and
5192 tagless versions.
5193 (symbol_list_destructor_set, symbol_list_printer_set): Split
5194 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
5195 SYMLIST_DEFAULT_TAGLESS.
5196 * src/symlist.h: Update symbol_list_default*_new prototypes.
5197 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
5198 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
5199 * src/symtab.c (default_destructor, default_destructor_location,
5200 default_printer, default_printer_location): Split each into tagged and
5201 tagless versions.
5202 (symbol_destructor_get, symbol_destructor_location_get,
5203 symbol_printer_get, symbol_printer_location_get): Implement tagged
5204 default and tagless default cases.
5205 (default_destructor_set, default_printer_set): Split each into tagged
5206 and tagless versions.
5207 * src/symtab.h: Update prototypes.
5208 * tests/actions.at (Default %printer and %destructor): Rename to...
5209 (Default tagless %printer and %destructor): ... this, and extend.
5210 (Per-type %printer and %destructor): Rename to...
5211 (Default tagged and per-type %printer and %destructor): ... this, and
5212 extend.
5213 (Default %printer and %destructor for user-defined end token): Extend.
5214 (Default %printer and %destructor are not for error or $undefined):
5215 Update.
5216 (Default %printer and %destructor are not for $accept): Update.
5217 (Default %printer and %destructor for mid-rule values): Extend.
5218 * tests/input.at (Default %printer and %destructor redeclared): Extend.
5219 (Unused values with default %destructor): Extend.
5220
5221 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5222
5223 Don't apply the default %destructor/%printer to an unreferenced midrule
5224 value. Mentioned at
5225 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
5226 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
5227 like $@n instead of just @n so that the default %destructor/%printer
5228 logic doesn't see them as user-defined symbols.
5229 (symbol_is_dummy): Check for both forms of the name.
5230 * src/reader.c (packgram): Remove the `$' from each midrule symbol
5231 name for which the midrule value is referenced in any action.
5232 * tests/actions.at (Default %printer and %destructor for mid-rule
5233 values): New test.
5234 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
5235 for change to dummy symbol names.
5236
5237 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
5238
5239 Warn about unset midrule $$ if the corresponding $n is used.
5240 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
5241 $n usage.
5242 (packgram): Before invoking grammar_rule_check on any rule, make sure
5243 all actions have already been scanned in order to set `used' flags.
5244 Otherwise, checking that a midrule's $$ is set will not always work
5245 properly because the midrule check must forward-reference the midrule's
5246 parent rule.
5247 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
5248 warning.
5249
5250 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
5251
5252 More improvements to the documentation of the prologue alternatives:
5253 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
5254 Bison manual.
5255 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
5256 some text to clarify the relative importance of the new directives and
5257 to show how these directives may be viewed as code labels.
5258
5259 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
5260
5261 Similar to the recently removed %before-header, add %code-top as the
5262 alternative to the pre-prologue. Mentioned at
5263 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
5264 Also, let the prologue alternatives appear in the grammar section.
5265 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
5266 (prologue_declaration): Move the existing prologue alternatives to...
5267 (grammar_declaration): ... here and add %code-top.
5268 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
5269
5270 Clean up and extend documentation for the prologue alternatives.
5271 * NEWS (2.3a+): Describe prologue alternatives.
5272 * doc/bison.texinfo (Prologue): Move discussion of prologue
5273 alternatives to...
5274 (Prologue Alternatives): ... this new section, and extend it to discuss
5275 all 4 directives in detail.
5276 (Table of Symbols): Clean up discussion of prologue alternatives and
5277 add %code-top.
5278
5279 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5280
5281 DJGPP specific issues.
5282
5283 * djgpp/config.bat: config.hin has been moved to lib. Adjust
5284 config.bat accordingly.
5285 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
5286 * djgpp/config.site: Likewise.
5287
5288 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
5289
5290 Replace %*-header with %provides, %requires, %code. See discussion at
5291 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
5292
5293 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
5294 (b4_user_start_header): Remove.
5295 * data/glr.c: Use new macros instead of b4_*start_header
5296 and b4_*end_header.
5297 * data/glr.cc: Likewise.
5298 * data/lalr1.cc: Likewise.
5299 * data/push.c: Likewise.
5300 * data/yacc.c: Likewise.
5301
5302 * doc/bison.texinfo: Remove %before-header, rename
5303 %{start,end,after}-header to %requires, %provides, %code.
5304
5305 * src/parse-gram.y: Likewise (also rename token names accordingly).
5306 * src/scan-gram.l: Likewise.
5307 * tests/actions.at: Likewise.
5308
5309 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
5310
5311 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
5312 Problem reported by Joel E. Denny.
5313
5314 2006-10-14 Jim Meyering <jim@meyering.net>
5315
5316 (Sync from coreutils.)
5317 Work also when the working directory (with e.g. coreutils sources)
5318 is version controlled with git, rather than CVS.
5319 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
5320 rather than CVS.
5321 In messages and comments, say e.g., "checked-out sources",
5322 rather than "CVS sources".
5323 (version_controlled_file): New function. Work for git as well as
5324 for CVS. Don't use grep's -q option.
5325 (slurp): Call it here, in place of CVS-specific code.
5326
5327 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
5328
5329 Fix testsuite for ./configure --enable-gcc-warnings:
5330 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
5331 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
5332 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
5333 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
5334 * test/regression.at (Diagnostic that expects two alternatives):
5335 Likewise.
5336
5337 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5338
5339 * bootstrap.conf (gnulib_modules): Add config-h.
5340 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
5341 worry about HAVE_CONFIG_H.
5342 * lib/abitset.c: Likewise.
5343 * lib/bitset.c: Likewise.
5344 * lib/bitset_stats.c: Likewise.
5345 * lib/bitsetv-print.c: Likewise.
5346 * lib/bitsetv.c: Likewise.
5347 * lib/ebitset.c: Likewise.
5348 * lib/get-errno.c: Likewise.
5349 * lib/lbitset.c: Likewise.
5350 * lib/subpipe.c: Likewise.
5351 * lib/timevar.c: Likewise.
5352 * lib/vbitset.c: Likewise.
5353 * lib/bitset.c: Include "bitset.h" first, to test interface.
5354 * lib/bitset_stats.c: Include "bitset_stats.h" first.
5355 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
5356 * lib/bitsetv.c: Include "bitsetv.h" first.
5357 * lib/get-errno.c: Include "get-errno.h" first.
5358 * m4/.cvsignore: Add config-h.m4.
5359 * tests/actions.at (Default %printer and %destructor for ...):
5360 Adjust expected line numbers in output to reflect removal of #if
5361 HAVE_CONFIG_H lines.
5362 * tests/glr-regression.at (Missed %merge type warnings when ...):
5363 Likewise.
5364 * tests/regression.at (Braced code in declaration in rules section):
5365 Likewise.
5366 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
5367 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
5368 Include <config.h> unconditionally.
5369
5370 * bootstrap: Sync from coreutils, as follows:
5371
5372 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5373
5374 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
5375 variable was sometimes used without being initialized. This
5376 messed up the installation of the INSTALL file in some cases.
5377
5378 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5379
5380 * bootstrap (usage, main program, symlink_to_gnulib): Add option
5381 --copy. Inspired by a suggestion from Bruno Haible.
5382
5383 2006-10-03 Jim Meyering <jim@meyering.net>
5384
5385 * bootstrap: Undo last change to this file, since now gnulib-tool
5386 sticks with the automake default in generating dependencies.
5387
5388 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5389
5390 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
5391 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
5392
5393 * doc/bison.1: Add copyright notice.
5394
5395 * data/glr.c: Don't include <stdarg.h>; not used.
5396
5397 * NEWS: The -g and --graph options now output graphs in Graphviz
5398 DOT format, not VCG format.
5399 * doc/bison.1: Likewise.
5400 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
5401 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
5402 of this change in
5403 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
5404 * TODO: Remove Graphviz entry.
5405 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
5406 remove vcg.c, vcg.h, vcg_defaults.h.
5407 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
5408 * src/graphviz.c, src/graphviz.h: New files.
5409 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
5410 * src/files.h: Make comment more generic.
5411 * src/main.c (main): Likewise.
5412 * src/print_graph.h: Likewise.
5413 * src/getargs.c (usage): Make usage description more generic.
5414 * src/print_graph.c: Include graphviz.h rather than vcg.h.
5415 (static_graph, fgraph): Remove. All uses changed to pass
5416 arguments instead of sharing a static var.
5417 (print_core, print_actions, print_state, print_graph):
5418 Output graphviz format rather than VCG format.
5419 * tests/.cvsignore: Remove *.vcg; add *.dot.
5420 * tests/output.at: Expect *.dot files, not *.vcg files.
5421
5422 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
5423 accommodates the 2006-10-08 change.
5424
5425 2006-10-11 Bob Rossi <bob@brasko.net>
5426
5427 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
5428 (b4_yyssa, b4_yyerror_range): New macros.
5429 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
5430 (yypvarsinit): Remove init of removed fields.
5431 (yypushparse): Remove use of removed fields; use new macros instead.
5432
5433 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5434
5435 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
5436 in a push parser. Reindent slightly to match yacc.c better.
5437
5438 2006-10-11 Bob Rossi <bob@brasko.net>
5439
5440 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
5441 yymsg_alloc fields.
5442 (yypvarsinit, yypushparse): Remove init of removed fields.
5443 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
5444
5445 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5446
5447 * THANKS: Add Paolo Bonzini and Bob Rossi.
5448
5449 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
5450
5451 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
5452 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
5453 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
5454 b4_define_user_cde and uses): Remove.
5455 (b4_comment, b4_prefix, b4_sync_start): New.
5456 * data/bison.m4: New file, with most of the content removed from c.m4.
5457 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
5458 * src/output.c (output_skeleton): Pass bison.m4.
5459 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
5460 only if specified.
5461
5462 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
5463
5464 Fix test failure reported by Tom Lane in
5465 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
5466 and try to make such failures easier to catch in the future.
5467 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
5468 that's now the caller's responsibility.
5469 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
5470 Set yychar = YYEOF if it's negative.
5471 * tests/actions.at (yylex): Abort if asked to read past EOF.
5472 * tests/conflicts.at (yylex): Likewise.
5473 * tests/cxx-type.at (yylex): Likewise.
5474 * tests/glr-regression.at (yylex): Likewise.
5475 * tests/input.at (yylex): Likewise.
5476 * tests/regression.at (yylex): Likewise.
5477 * tests/torture.at (yylex): Likewise.
5478
5479 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
5480
5481 Fix problems with translating English-language diagnostics.
5482 * bootstrap: Fix bug introduced in recent bootstrap changes, with
5483 respect to bison-runtime pot generation. The YY_ stuff
5484 wasn't being captured.
5485 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
5486 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
5487 * runtime-po/POTFILES.in: Add data/push.c.
5488
5489 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
5490
5491 Merge bootstrap changes from coreutils.
5492
5493 2006-09-28 Jim Meyering <jim@meyering.net>
5494
5495 Automatically generated dependencies are important even
5496 when all of the sources in a directory come from gnulib.
5497 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
5498 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
5499
5500 2006-09-23 Jim Meyering <jim@meyering.net>
5501
5502 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
5503
5504 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5505
5506 * bootstrap: Add support for --force.
5507 (usage): New function. Describe usage less tersely.
5508 (CVS_only_file): New var.
5509
5510 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
5511
5512 * data/push.c (YYPUSH_MORE): Make it an enum instead.
5513 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
5514 Adjust white space and comments to match GNU style better.
5515
5516 2006-09-20 Bob Rossi <bob@brasko.net>
5517
5518 * data/push.c (yyresult_get): Remove function.
5519 (YYPUSH_MORE): Add #define.
5520 (yypushparse): Modify return value.
5521
5522 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5523
5524 * stamp-h.in: Remove; no longer needed.
5525 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
5526 Remove config.h, config.hin, intl (no longer created).
5527 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
5528 stamp-h1.
5529
5530 Sync bootstrap from coreutils, as follows:
5531
5532 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
5533
5534 * bootstrap (symlink_to_gnulib): New function.
5535 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
5536 to copies-of-gnulib.
5537 (cp_mark_as_generated, slurp, gnulib_files):
5538 Avoid making a copy if it's the same as the old version.
5539 (gnulib_files): Add support for this variable (used by Bison).
5540
5541 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5542
5543 * src/getargs.c (usage): Rework to use conventions similar to
5544 coreutils, to make translation a bit easier and the code a bit
5545 smaller. Problem reported by Tim Van Holder.
5546
5547 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
5548
5549 Use some of gnulib's new modules, taken from coreutils.
5550
5551 * bootstrap: Sync from coreutils, except add support for gnulib_files.
5552 * bootstrap.conf: New file.
5553 (gnulib_modules): Add configmake, inttypes, unistd.
5554 (XGETTEXT_OPTIONS): Add complain, complain_at,
5555 fatal, fatal_at, warn, warn_at, unexpected_end.
5556 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
5557 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
5558 (gl_EARLY): Add.
5559 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
5560 (gl_INIT): Add
5561 (GNULIB_AUTOCONF_SNIPPET): Remove.
5562 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
5563 the pickiest.
5564 * lib/.cvsignore: Add inttypes_.h.
5565 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
5566 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
5567 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
5568 no-longer-necessary initializations.
5569 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
5570 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
5571 use the unistd module.
5572 * src/system.h: Likewise.
5573 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
5574 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
5575 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
5576 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
5577 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
5578 * src/system.h: Include inttypes.h unconditionally, now that we
5579 use the inttypes module. Don't bother to include stdint.h, since
5580 inttypes.h now does that for us.
5581 (LOCALEDIR): Remove, now that we use the configmake module.
5582 * src/getargs.c: Include configmake.h.
5583 * src/main.c: Likewise.
5584 * src/output.c: Likewise.
5585 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
5586 not from $abs_top_builddir, since config.h moved.
5587
5588
5589 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
5590 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
5591
5592 * src/parse-gram.y (symbol_declaration): Don't put statements
5593 before declarations; it's not portable to C89.
5594 * src/scan-code.l (handle_action_at): Likewise.
5595
5596 * src/scan-code.l: Always initialize braces_level; the old code
5597 left it uninitialized and therefore had undefined behavior.
5598
5599 Don't attempt to redefine 'assert', since it runs afoul of
5600 systems where standard headers (mistakenly) include <assert.h>.
5601 Instead, define and use our own alternative, called 'aver'.
5602 * src/reader.c: Don't include assert.h, since we no longer
5603 use assert.
5604 * src/scan-code.l: Likewise.
5605 * src/system.h (assert): Remove, replacing with....
5606 (aver): New function, taking a bool arg. All uses changed.
5607 * src/tables.c (pack_vector): Ensure that aver arg is bool,
5608 not merely an integer.
5609
5610 2006-09-15 Bob Rossi <bob@brasko.net>
5611
5612 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
5613 * data/c.m4 (YYPUSH): New.
5614 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
5615 * src/getargs.c (push_parser): New var.
5616 * src/getargs.h (push_parser): New declaration.
5617 * src/output.c (prepare): Add macro insertion of `push_flag'.
5618 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
5619 (prologue_declaration): Parse %push-parser.
5620 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
5621 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
5622 list of removed lines from the traces observed.
5623 (AT_CHECK_CALC_LALR): Added push parser tests.
5624
5625 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
5626
5627 * NEWS: Version 2.3a.
5628 * configure.ac (AC_INIT): Likewise.
5629
5630 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
5631 "#define YYSTYPE int" that caused "make maintainer-check" to fail
5632 due to header ordering dependencies. I don't know why the #define
5633 was there.
5634
5635 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
5636 runtime cost when YYDEBUG is not defined, and so that some tests
5637 that used to fail now work. Problem and initial suggestion by
5638 Paolo Bonzini.
5639 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
5640 * data/glr.cc (b4_parser_class_name):
5641 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
5642 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
5643 (yydebug_) [YYDEBUG]: New member.
5644 (yycdebug_): Now defined only if YYDEBUG.
5645 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
5646 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
5647 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
5648 if YYYDEBUG.
5649 (debug_stream, set_debug_stream, debug_level, set_debug_level):
5650 Define only if YYDEBUG.
5651 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
5652 set_debug_level.
5653 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
5654 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
5655 AT_CHECK_CALC_GLR_CC that are working now.
5656
5657 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5658
5659 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5660 We don't need them in glr.cc, and glr.c defines them.
5661 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5662 assumes that defining it to anything is the same as defining
5663 it to 1. Problem reported by Paolo Bonzini.
5664
5665 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5666
5667 * data/c.m4 (b4_null, b4_case): Define.
5668 * src/output.c (prepare_symbols): Use b4_null.
5669 (user_actions_output): Use b4_case.
5670
5671 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5672
5673 * data/glr.c (b4_shared_declarations): Put start-header first,
5674 before any #includes that we generate, so that feature-test
5675 macros work. Problem reported by Michael Deutschmann in
5676 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5677 * data/lalr1.cc: Likewise.
5678 * doc/bison.texinfo (Prologue): Document that feature-test macros
5679 should be defined before any Bison declarations.
5680 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5681 that depend on location.hh after, not before, Bison decls, since
5682 we now include location.hh after the first user prologue.
5683
5684 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5685 Sander Brandenburg in
5686 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5687 Also, fix minor white space and comment issues.
5688 (Prologue): Mention that it's better to define feature-test macros
5689 before Bison declarations. Problem reported by Michael Deutschmann.
5690
5691 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5692 by Jim Meyering.
5693 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5694 This adjusts to recent gnulib changes.
5695
5696 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5697
5698 Finish implementation of per-type %destructor/%printer. Discussed
5699 starting at
5700 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5701 and
5702 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5703 * NEWS (2.3+): Add a description of this feature to the default
5704 %destructor/%printer description.
5705 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5706 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5707 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5708 list node contains a semantic type.
5709 * src/symtab.c, src/symtab.h: Extend with a table that associates
5710 semantic types with their %destructor's and %printer's.
5711 (semantic_type_from_uniqstr, semantic_type_get,
5712 semantic_type_destructor_set, semantic_type_printer_set): New functions
5713 composing the public interface of that table.
5714 (symbol_destructor_get, symbol_destructor_location_get,
5715 symbol_printer_get, symbol_printer_location_get): If there's no
5716 per-symbol %destructor/%printer, look up the per-type before trying
5717 the default.
5718 * tests/actions.at (Per-type %printer and %destructor): New test case.
5719 * tests/input.at (Default %printer and %destructor redeclared):
5720 Extend to check that multiple occurrences of %symbol-default in a
5721 single %destructor/%printer declaration is an error.
5722 (Per-type %printer and %destructor redeclared, Unused values with
5723 per-type %destructor): New test cases.
5724
5725 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5726
5727 Require default %destructor/%printer to be declared using
5728 %symbol-default instead of an empty symbol list, and start working on
5729 new per-type %destructor/%printer. Discussed at
5730 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5731 * NEWS (2.3+): Add %symbol-default to example.
5732 * bison.texinfo (Freeing Discarded Symbols): Likewise.
5733 (Table of Symbols): Add entry for %symbol-default.
5734 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5735 (generic_symlist, generic_symlist_item): New nonterminals for creating
5736 a list in which each item is a symbol, semantic type, or
5737 %symbol-default.
5738 (grammar_declaration): Use generic_symlist in %destructor and %printer
5739 declarations instead of symbols.1 or an empty list.
5740 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5741 for changes to symbol_list.
5742 * src/reader.c: Update for changes to symbol_list.
5743 * src/scan-code.l: Likewise.
5744 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5745 * src/symlist.c, src/symlist.h: Extend such that a list node may
5746 represent a semantic type or a %symbol-default in addition to just an
5747 ordinary symbol. Add switched functions for setting %destructor's and
5748 %printer's.
5749 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5750 %destructor/%printer declarations.
5751
5752 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5753
5754 Whether the default %destructor/%printer applies to a particular symbol
5755 isn't a question of whether the user *declares* that symbol (in %token,
5756 for example). It's a question of whether the user by any means
5757 *defines* the symbol at all (by simply using a char token, for
5758 example). $end is defined by Bison whereas any other token with token
5759 number 0 is defined by the user. The error token is always defined by
5760 Bison regardless of whether the user declares it with %token, but we
5761 may one day let the user define error as a nonterminal instead.
5762 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5763 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5764 the meaning of "user-defined".
5765 * tests/actions.at (Default %printer and %destructor for user-declared
5766 end token): Rename to...
5767 (Default %printer and %destructor for user-defined end token): ...
5768 this.
5769
5770 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5771 computation of whether to apply the default, don't maintain a list of
5772 every Bison-defined symbol. Instead, just check for a first character
5773 of '$', which a user symbol cannot have, and check for the error token.
5774
5775 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5776
5777 Don't apply the default %destructor or %printer to the error token,
5778 $undefined, or $accept. This change fits the general rule that the
5779 default %destructor and %printer are only for user-declared symbols,
5780 and it solves several difficulties that are described in the new test
5781 cases listed below.
5782 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5783 * tests/actions.at (Default %printer and %destructor are not for error
5784 or $undefined, Default %printer and %destructor are not for $accept):
5785 New test cases.
5786
5787 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5788
5789 Allow %start after the first rule.
5790 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5791 when parsing the first rule.
5792 (check_and_convert_grammar): Search for it here after all grammar
5793 declarations have been parsed. Skip midrules, which have dummy LHS
5794 nonterminals.
5795 * src/symtab.c (symbol_is_dummy): New function.
5796 * src/symtab.h (symbol_is_dummy): Declare it.
5797 * tests/input.at (%start after first rule): New test.
5798
5799 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5800
5801 Redo some of the previous commit: add back the ability to use
5802 non-aliased/undeclared string literals since it might be useful to
5803 those declaring %token-table.
5804 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5805 commit: don't worry about complaints from symbols_pack.
5806 * src/symtab.c (symbol_new, symbol_class_set,
5807 symbol_check_alias_consistency): Undo changes in previous commit: count
5808 each string literal as a new symbol and token, assign it a symbol
5809 number, and don't complain about non-aliased string literals.
5810 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5811 and token counts but does still set aliased tokens to the same number,
5812 symbol_pack_processor now leaves empty slots in the symbols array.
5813 Remove those slots.
5814 * tests/regression.at (Undeclared string literal): Remove test case
5815 added in previous commit since non-aliased string literals are allowed
5816 again.
5817 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5818 remove unnecessary string literal declarations.
5819 * tests/sets.at (Firsts): Likewise.
5820
5821 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5822
5823 Don't allow an undeclared string literal, but allow a string literal to
5824 be used before its declaration.
5825 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5826 symbols_pack complained.
5827 * src/symtab.c (symbol_new): Don't count a string literal as a new
5828 symbol.
5829 (symbol_class_set): Don't count a string literal as a new token, and
5830 don't assign it a symbol number since symbol_make_alias does that.
5831 (symbol_make_alias): It's not necessary to decrement the symbol and
5832 token counts anymore. Don't assume that an alias declaration occurs
5833 before any uses of the identifier or string, and thus don't assert that
5834 one of them has the highest symbol number so far.
5835 (symbol_check_alias_consistency): Complain if there's a string literal
5836 that wasn't declared as an alias.
5837 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5838 symbol_pack asserts that every token has been assigned a symbol number
5839 although undeclared string literals have not.
5840 * tests/regression.at (String alias declared after use, Undeclared
5841 string literal): New test cases.
5842 (Characters Escapes, Web2c Actions): Declare string literals as
5843 aliases.
5844 * tests/sets.at (Firsts): Likewise.
5845
5846 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5847
5848 In the grammar scanner, STRING_FINISH unclosed constructs and return
5849 them to the parser in order to improve error messages.
5850 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5851 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5852 * tests/input.at (Unclosed constructs): New test case.
5853 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5854 seen.
5855
5856 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5857 unused global.
5858
5859 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5860
5861 Handle string aliases for character tokens correctly.
5862 * src/symtab.c (symbol_user_token_number_set): If the token has an
5863 alias, check and set its alias's user token number instead of its own,
5864 which is set to indicate the alias. Previously, every occurrence of
5865 the character token in the grammar overwrote that alias indicator with
5866 the character code.
5867 * tests/input.at (String aliases for character tokens): New test.
5868
5869 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5870
5871 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5872
5873 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5874
5875 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5876 to prevent failures when building on older platforms.
5877 Check for autopoint failure.
5878 Set XGETTEXT_OPTIONS to values that check for C format strings,
5879 so that translators are warned about them (this also helps
5880 prevent core dumps).
5881
5882 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5883 function, since it simplifies our code a bit.
5884
5885 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5886 rather than -W, so we don't get bogus warnings about sign comparisons.
5887 Add -Wpointer-arith, since that warning is useful (it reports code
5888 that does not conform to C89 and that some compilers reject).
5889 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5890 since it's no longer needed.
5891
5892 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5893
5894 Clean up scanners a bit.
5895 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5896 definitions so gcc won't warn when obstack_for_string is unused.
5897 * src/scan-code.l: config.h and system.h are already #include'd by
5898 scan-code-c.c, so get rid of them here.
5899 * src/scan-gram.l: Likewise.
5900 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5901 definitions rather than duplicating the rest of it.
5902 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5903
5904 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5905
5906 Suppress signed/unsigned comparison warnings for yycheck.
5907 * data/c.m4 (b4_safest_int_type): New macro.
5908 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5909 a signed int type, cast it to b4_safest_int_type first.
5910 * data/yacc.c: Likewise.
5911 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5912 also overwritten.
5913
5914 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5915
5916 * doc/bison.texinfo: Fix some typos.
5917
5918 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5919
5920 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5921 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5922
5923 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5924 the latest gnulib does this a different way.
5925 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5926 translation was patched, so stop omitting it.
5927
5928 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5929
5930 Enable declaration of default %printer/%destructor. Make the parser
5931 use these for all user-declared grammar symbols for which the user does
5932 not declare a specific %printer/%destructor. Thus, the parser uses it
5933 for token 0 if the user declares it but not if Bison generates it as
5934 $end. Discussed starting at
5935 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5936 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5937 and
5938 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5939 * NEWS (2.3+): Mention.
5940 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5941 declare a %destructor for a mid-rule's semantic value. It's just
5942 impossible to declare one specific to it.
5943 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5944 code. Describe default %destructor form.
5945 * src/parse-gram.y (grammar_declaration): Parse default
5946 %printer/%destructor declarations.
5947 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5948 and symbol_destructor_location_get rather than accessing the destructor
5949 and destructor_location members of struct symbol.
5950 (symbol_printers_output): Likewise but for %printer's.
5951 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5952 again.
5953 * src/symtab.c (default_destructor, default_destructor_location,
5954 default_printer, default_printer_location): New static global
5955 variables to record the default %destructor and %printer.
5956 (symbol_destructor_get, symbol_destructor_location_get,
5957 symbol_printer_get, symbol_printer_location_get): New functions to
5958 compute the appropriate %destructor and %printer for a symbol.
5959 (default_destructor_set, default_printer_set): New functions to set the
5960 default %destructor and %printer.
5961 * src/symtab.h: Prototype all those new functions.
5962 * tests/actions.at (Default %printer and %destructor): New test to
5963 check that the right %printer and %destructor are called, that they're
5964 not called for $end, and that $$ and @$ work correctly.
5965 (Default %printer and %destructor for user-declared end token): New
5966 test to check that the default %printer and %destructor are called for
5967 a user-declared end token.
5968 * tests/input.at (Default %printer and %destructor redeclared, Unused
5969 values with default %destructor): New tests to check related grammar
5970 warnings and errors.
5971
5972 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5973
5974 Clean up handling of %destructor for the end token (token 0).
5975 Discussed starting at
5976 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5977 and
5978 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5979
5980 Make the skeletons consistent in how they pop the end token and invoke
5981 its %destructor.
5982 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5983 state, which has token number 0, since this would invoke the
5984 %destructor for the end token.
5985 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5986 until after shifting the end token, or else it won't be popped.
5987 * data/yacc.c (yyparse): Likewise.
5988
5989 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5990 it's the end token. Upon termination, destroy an unshifted lookahead
5991 even when it's the end token.
5992 * data/lalr1.cc (yy::parser::parse): Likewise.
5993 * data/yacc.c (yyparse): Likewise.
5994
5995 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5996 value warnings for the end token when the user gives the end token a
5997 %destructor.
5998
5999 * tests/actions.at (Printers and Destructors): Test all the above.
6000
6001 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
6002
6003 Update to latest gnulib and gettext versions.
6004 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
6005 Add fopen-safer.
6006 (gnulib_files): Add m4/warning.m4. Don't worry about files
6007 overwritten by autopoint.
6008 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
6009 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
6010 rejects them.
6011 Don't use autoreconf; instead, invoke autopoint etc. by hand,
6012 so that we can remove the intl files at a better time.
6013 (intl_files_to_remove): Remove aclocal.m4, since it gets
6014 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
6015 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
6016 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
6017 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
6018 Remove datarootdir hack; no longer needed.
6019 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
6020 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
6021 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
6022 strdup.h.
6023 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
6024 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
6025
6026 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
6027
6028 * bootstrap: Adjust to today's change to gnulib-tool by invoking
6029 it with --assume-autoconf='latest-stable'.
6030
6031 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
6032
6033 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
6034 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
6035 YYSTYPE' and `{'.
6036 * src/muscle_tab.h (muscle_grow): Replace the header comments with
6037 those from muscle_tab.c since the old ones are misleading.
6038
6039 2006-07-13 Akim Demaille <akim@epita.fr>
6040
6041 Support %define "KEY" {VALUE}.
6042 * src/scan-code.h, src/scan-code.l (translate_action)
6043 (translate_rule_action, translate_symbol_action, translate_code):
6044 Return char *, not const char *.
6045 * src/parse-gram.y (declaration): Rename as...
6046 (prologue_declaration): this.
6047 (string_content): Remove this nonterminal, use STRING.
6048 (braceless, content, content.opt): New nonterminal.
6049 Use them.
6050 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
6051 as value.
6052 * src/scan-gram.l (getargs.h): Don't include it.
6053
6054 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
6055
6056 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
6057 rather than a for-loop that declares a local bool variable. This
6058 should work around a compatibility problem with a Cray x1e C++
6059 compiler reported by Hung Nguyen in
6060 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
6061 The for-loop was introduced in the 2004-11-17 change but I don't
6062 know why it was needed.
6063
6064 2006-07-12 Akim Demaille <akim@epita.fr>
6065
6066 * data/c.m4: Comment changes.
6067
6068 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
6069
6070 * src/complain.c (error_message, ERROR_MESSAGE): New.
6071 To factor...
6072 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
6073 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
6074
6075 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
6076
6077 * NEWS: Instead of %union, you can define and use your own union type
6078 YYSTYPE if your grammar contains at least one <type> tag.
6079 Your YYSTYPE need not be a macro; it can be a typedef.
6080 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
6081 (Union Decl, Decl Summary): Document this.
6082 * data/glr.c (YYSTYPE): Implement this.
6083 * data/glr.cc (YYSTYPE): Likewise.
6084 * data/lalr1.cc (YYSTYPE): Likewise.
6085 * data/yacc.c (YYSTYPE): Likewise.
6086 * src/output.c (prepare): Output tag_seen_flag.
6087 * src/parse-gram.y (declaration, grammar_declaration):
6088 Use 'union_seen' rather than 'typed' to determine whether
6089 %union has been seen, since grammars can now be typed without
6090 %union.
6091 (symbol_declaration, type.opt, symbol_def):
6092 Keep track of whether a tag has been seen.
6093 * src/reader.c (union_seen, tag_seen): New vars.
6094 (typed): remove.
6095 * src/reader.h (union_seen, tag_seen, typed): Likewise.
6096 * src/scan-code.l (untyped_var_seen): New variable.
6097 (handle_action_dollar): Adjust to above changes.
6098 (handle_action_dollar, handle_action_at):
6099 Improve overflow checking for outlandish numbers.
6100 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
6101 avoid new diagnostics generated by above changes.
6102 * tests/regression.at (YYSTYPE typedef): Add test to check
6103 for type tags without %union.
6104
6105 * src/symlist.c (symbol_list_length): Return int, not unsigned
6106 int, since callers expect int. This may need to get revisited
6107 once we have proper integer overflow checking.
6108
6109 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
6110 object is now static.
6111
6112 * src/getargs.c (flags_argmatch): Return void, not int,
6113 to pacify ./configure --enable-gcc-warnings.
6114
6115 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
6116 since last_string is already defined to FLEX_PREFIX (last_string).
6117
6118 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
6119
6120 Implement --warnings/-W.
6121 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
6122 replaced by...
6123 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
6124 Adjust callers.
6125 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
6126 (warnings_args, warnings_types): New.
6127 (getargs, short_options, long_options): Accept -W/--warnings.
6128 Sort the options by alphabetical order, upper case letter right
6129 before its lower case.
6130
6131 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
6132
6133 Change %merge result type clash warnings to errors. Discussed at
6134 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
6135 * src/reader.c (record_merge_function_type): Use complain_at.
6136 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6137 declared later): Update test case results.
6138
6139 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
6140
6141 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
6142 to be in alphabetical order.
6143 (trace_args): Spelling fixes.
6144
6145 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
6146
6147 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
6148 so they don't collide with user-defined macros.
6149 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
6150 this was never guaranteed, and now that we're using gnulib stdint,
6151 which defines int_fast16_t to long int, the problem is exposed.
6152
6153 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
6154
6155 * data/c.m4 (b4_basename): Simplify a bit, since we don't
6156 need the full POSIX semantics (and weren't implementing them
6157 anyway).
6158
6159 Adjust to Autoconf 2.60 and today's gnulib.
6160 * bootstrap (gnulib_modules): Add stdint.
6161 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
6162 no longer copies it.
6163 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
6164 since stdint needs the former and wcwidth (which is now required
6165 by mbswidth) needs the latter.
6166 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
6167 work around a compatibility glitch between gettext 0.14.6 and
6168 Autoconf 2.60.
6169 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
6170 Do not check for uintptr_t, since new stdint module does the right
6171 thing.
6172 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
6173 Add stdint.h, stdint_.h, wcwidth.h.
6174 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
6175 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
6176 stdint.m4, wchar_t.m4, wcwidth.m4.
6177 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
6178 usual order for ../lib/*.h files.
6179 (file_name_split): Use last_component, not base_name, to adjust
6180 to gnulib changes.
6181 * src/parse-gram.h: Include <strverscmp.h> in the usual order
6182 for ../lib/*.h files.
6183 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
6184 Define unconditionally, since we now assume the stdint module.
6185 * src/scan-skel.l: Include <dirname.h>.
6186 (BASE_QPUTS): Use last_component, not base_name.
6187 * src/system.h: Include <unlocked-io.h> in the usual order
6188 for ../lib/*.h files. Include <stdint.h> unconditionally,
6189 since we now use the stdint module.
6190 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
6191 HAVE_UINTPTR_T, since we now use the stdint module.
6192 (base_name): Remove decl, since files now include <dirname.h>
6193 to get the decl.
6194
6195 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
6196
6197 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
6198 New, default to 1.
6199 * data/yacc.c, data/glr.c, data/location.cc: Use them.
6200 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
6201 default.
6202 * tests/calc.at: Adjust.
6203
6204 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
6205
6206 * data/c.m4 (b4_basename): New.
6207 (b4_syncline): Also output the location of its invocation (from
6208 the skeleton).
6209 (b4_user_action, b4_define_user_action, b4_user_actions)
6210 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
6211 (b4_user_stype): New.
6212 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
6213
6214 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
6215
6216 In the grammar file, the first column is 1 not 0 on the first line as
6217 on every other line.
6218 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
6219 * tests/input.at (Torturing the Scanner): Update output.
6220
6221 * src/scan-gram.l (scanner_cursor): Declare it static.
6222
6223 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
6224
6225 In warnings, say "previous declaration" rather than "first
6226 declaration".
6227 * src/symtab.c (redeclaration): Do that here.
6228 * src/reader.c (record_merge_function_type): In the case of a result
6229 type clash, report the previous declaration rather than the very first
6230 one in the grammar file.
6231 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6232 declared later): Add a third declaration to check this behavior.
6233 * tests/input.at (Incompatible Aliases): Update output.
6234
6235 2006-06-27 Akim Demaille <akim@epita.fr>
6236
6237 * doc/Doxyfile.in: New.
6238 * doc/Makefile.am: Use it.
6239 * src/lalr.h, src/symtab.h: Initial doxygenation.
6240
6241 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6242
6243 Don't miss %merge result type warnings just because the LHS types are
6244 declared after the %merge. This continues the effort of the previous
6245 patch.
6246 * src/reader.c (get_merge_function): Don't set the merger type yet.
6247 (record_merge_function_type): New function for setting the merger type
6248 and checking for clashes.
6249 (grammar_current_rule_merge_set): Set the location of the %merge for
6250 the current rule.
6251 (packgram): Invoke record_merge_function_type for each rule now that
6252 all symbol type declarations have been parsed.
6253 * src/reader.h (merger_list.type_declaration_location): New member
6254 storing the location of the first %merge from which the type for this
6255 merging function was derived.
6256 * src/symlist.h (symbol_list.merger_declaration_location): New member
6257 storing the location of a rule's %merge, if any.
6258 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6259 declared later): New test to catch the error fixed by the above patch.
6260
6261 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6262
6263 Get action warnings (grammar_rule_check) right even when symbol
6264 declarations appear after the rules. Discussed at
6265 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
6266 and
6267 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
6268 Don't mistake the type of $$ in a midrule to be that of its parent
6269 rule's $$.
6270 * src/reader.c (grammar_current_rule_end): Don't invoke
6271 grammar_rule_check yet since not all symbol declarations may have been
6272 parsed yet.
6273 (grammar_midrule_action): Likewise.
6274 Don't record whether the midrule's $$ has been used yet since actions
6275 haven't been translated yet.
6276 Record the midrule's parent rule and its RHS index within the parent
6277 rule.
6278 (grammar_current_rule_action_append): Don't translate the action yet
6279 since not all symbol declarations may have been parsed yet and, thus,
6280 warnings about types for $$, $n, @$, and @n can't be reported yet.
6281 (packgram): Translate the action and invoke grammar_rule_check now that
6282 all symbol declarations have been parsed.
6283 * src/scan-code.l (handle_action_dollar): Now that this is invoked
6284 after parsing the entire grammar file, the symbol list here in the case
6285 of a midrule is actually the midrule's empty RHS, so reference its
6286 parent rule's RHS where necessary.
6287 On the other hand, now that you can already know it's a midrule, you
6288 aren't forced to think $$ has the same type as its parent rule's $$.
6289 (handle_action_at): In the case of a midrule, reference the parent rule
6290 where necessary.
6291 * src/symlist.c (symbol_list_new): Initialize new midrule-related
6292 members.
6293 (symbol_list_length): Now that this is invoked after all rules have
6294 been parsed, a NULL symbol (rather than a NULL symbol list node)
6295 terminates a rule. symbol_list_print already does this correctly.
6296 * src/symlist.h (symbol_list.midrule_parent_rule,
6297 symbol_list.midrule_parent_rhs_index): New members so that midrules can
6298 remember their relationships with their parents.
6299 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
6300 fixed by the above patch.
6301 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
6302 implementing...
6303 (Unused values): ... this old test case and...
6304 (Unused values before symbol declarations): ... this new test case.
6305 This one is the same as `Unused values' except that all symbol
6306 declarations appear after the rules in order to catch the rest of the
6307 errors fixed by the above patch.
6308
6309 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6310
6311 More cleanup.
6312 * src/reader.c (current_rule): Declare it static since it's no longer
6313 used outside this file.
6314 (grammar_current_rule_action_append): Remove redundant arguments from
6315 translate_rule_action invocation.
6316 * src/reader.h (current_rule): Remove this unused extern.
6317 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
6318 * src/scan-code.l (translate_rule_action): Likewise.
6319
6320 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
6321
6322 Clean up yesterday's patch.
6323 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
6324 to...
6325 * src/reader.c (grammar_current_rule_action_append): ... here for
6326 consistency with grammar_current_rule_symbol_append.
6327 * tests/regression.at (Braced code in declaration in rules section):
6328 Make yyerror and yylex static as usual.
6329
6330 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
6331
6332 Fix bug that mistakes braced code in a declaration in the rules section
6333 to be a rule action. Mentioned at
6334 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
6335 * src/scan-gram.l: Move midrule action detection from the start of the
6336 scanning of any braced code to...
6337 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
6338 action. For readability, use $2 and @2 rather than the equivalent
6339 global variables.
6340 * tests/regression.at (Braced code in declaration in rules section):
6341 New test to catch the error fixed by the above patch.
6342
6343 Work on code readability some.
6344 * src/scan-code.l (current_rule): Get rid of this misleading and
6345 redundant declaration: it's actually extern'ed in reader.h.
6346 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
6347 translate_action): Add a rule argument and use it instead of the global
6348 current_rule.
6349 (translate_rule_action): This already receives current_rule through an
6350 argument, so pass it on to translate_action instead of assigning
6351 current_rule to current_rule.
6352 (translate_symbol_action, translate_code): Pass rule = NULL to
6353 translate_action.
6354
6355 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
6356
6357 Rename %before-definitions to %start-header and %after-definitions to
6358 %end-header. Don't use these declarations to separate pre-prologue
6359 blocks from post-prologue blocks. Add new order-independent
6360 declarations %before-header and %after-header as alternatives to the
6361 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
6362 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
6363 * NEWS (2.3+): Update for these changes.
6364 * data/glr.c (b4_before_definitions): Update to...
6365 (b4_start_header): ... this.
6366 (b4_after_definitions): Update to...
6367 (b4_end_header): ... this.
6368 * data/glr.cc: Likewise.
6369 * data/lalr1.cc: Likewise.
6370 * data/yacc.c: Likewise.
6371 * doc/bison.texinfo (The prologue): Update names, and replace remaining
6372 prologue blocks with %*-header declarations.
6373 (Calc++ Parser): Likewise.
6374 (Decl Summary): Update names.
6375 (Table of Symbols): Update description.
6376 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
6377 (PERCENT_END_HEADER): ... this.
6378 (PERCENT_BEFORE_DEFINITIONS): Update to...
6379 (PERCENT_START_HEADER): ... this.
6380 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6381 (declaration): Update token names and m4 macro names.
6382 When parsing %end-header and %start-header, invoke translate_code
6383 before muscle_code_grow, and no longer set global booleans to remember
6384 whether these declarations have been seen.
6385 Parse new %after-header and %before-header.
6386 * src/reader.c (before_definitions, after_definitions): Remove.
6387 (prologue_augment): Accept a new bool argument to specify whether to
6388 augment the pre-prologue or post-prologue.
6389 * src/reader.h (before_definitions, after_definitions): Remove these
6390 extern's.
6391 (prologue_augment): Add new bool argument.
6392 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
6393 (PERCENT_END_HEADER): ... this.
6394 (PERCENT_BEFORE_DEFINITIONS): Update to...
6395 (PERCENT_START_HEADER): ... this.
6396 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6397 * tests/actions.at (Printers and Destructors): Update names.
6398
6399 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
6400
6401 Add comparison operators for C++ location classes. Discussed at
6402 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
6403 * data/c++.m4 (b4_define_location_comparison): New boolean %define
6404 declaration indicating whether filename_type has an operator==. If
6405 filename_type is `std::string', it defaults to `1', `0' otherwise.
6406 * data/location.cc: Iff b4_define_location_comparison is `1', add
6407 operator== and operator!= for class position and for class location.
6408
6409 Some minor fixes.
6410 * src/scan-action.l: Remove unused file.
6411 * src/symtab.c (symbol_printer_set): Use printer_location not
6412 destructor_location.
6413 * src/symtab.h (struct symbol): Replace incorrect source comment for
6414 printer members.
6415 * tests/input.at (Incompatible Aliases): Update output with correct
6416 printer location.
6417
6418 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
6419
6420 Don't put the pre-prologue in the header file. For the yacc.c code
6421 file and the glr.c header and code files, move the pre-prologue before
6422 the token definitions. Add new %before-definitions and
6423 %after-definitions to declare code that will go in both the header file
6424 and code file. Discussed at
6425 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
6426 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
6427 and
6428 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
6429 * NEWS (2.3+): Describe these changes.
6430 * data/glr.c (b4_pre_prologue): Move from within to before...
6431 (b4_shared_declarations): ... this.
6432 Add new b4_before_definitions before b4_token_enums.
6433 Add new b4_after_definitions at the end.
6434 * data/glr.cc (b4_pre_prologue): Replace with...
6435 (b4_before_definitions): ... this in the header file.
6436 (b4_after_definitions): New near the end of the header file.
6437 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
6438 code file right before including the header file.
6439 (b4_before_definitions): New in the previous position of
6440 b4_pre_prologue in the header file.
6441 (b4_after_definitions): New near the end of the header file.
6442 * data/yacc.c: Clean up some m4 quoting especially in the header file.
6443 (b4_token_enums_defines): In the code file, move to right before
6444 YYSTYPE for consistency with the header file.
6445 (b4_before_definitions): New right before b4_token_enums_defines in
6446 both the header and code file.
6447 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
6448 header and code file.
6449 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
6450 of prologues for %union dependencies.
6451 (Decl Summary): In %defines description, mention the effect of
6452 %before-definitions and %after-definitions on the header file.
6453 (Calc++ Parser): Forward declare driver in a %before-definitions rather
6454 than in the pre-prologue so that make check succeeds.
6455 (Table of Symbols): Add entries for %before-definitions and
6456 %after-definitions.
6457 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
6458 %before-definitions.
6459 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
6460 (declaration): Parse those declarations and append to
6461 b4_before_definitions and b4_after_definitions, respectively.
6462 * src/reader.c (before_definitions, after_definitions): New bools to
6463 track whether those declarations have been seen.
6464 (prologue_augment): Add to the post-prologue if %union,
6465 %before-definitions, or %after-definitions has been seen.
6466 * src/reader.h (before_definitions, after_definitions): New extern's.
6467 * src/scan-gram.l: Scan the new declarations.
6468 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
6469 prologue block in a %before-definitions or a %after-definitions based
6470 on whether the %union is declared.
6471 * tests/regression.at (Early token definitions with --yacc, Early token
6472 definitions without --yacc): Move tests for token definitions into the
6473 post-prologue since token names are no longer defined in the
6474 pre-prologue.
6475
6476 2006-06-20 Akim Demaille <akim@epita.fr>
6477
6478 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
6479 (symbol_get): Use it.
6480 * src/parse-gram.y: Use it.
6481
6482 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
6483
6484 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
6485 build succeeds when configured with --enable-gcc-warnings.
6486
6487 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
6488
6489 * src/parse-gram.y (char_name): New function.
6490 (CHAR, STRING, string_content): For %printer, properly escape.
6491 (ID): Prefer fputs to fprintf.
6492 (id): Reindent to be consistent with other rules.
6493 Properly quote char.
6494
6495 The Translation Project changed its way of publishing translations
6496 to maintainers. I haven't received any responses to my request
6497 for supporting the old way, or for documenting the new way. I
6498 have modified 'bootstrap' to use screen scraping
6499 (in this case, HTML scraping). This is unreliable and inelegant,
6500 but I don't see any better way. Yuck.
6501 * bootstrap (TP_URL, WGET_COMMAND): New vars.
6502 (get_translations): New function, which uses HTML scraping to
6503 deduce locations of latest translations.
6504 Use this function to grab both bison and bison-runtime .po files.
6505 Don't bother priming the pump for the runtime-po domain any more,
6506 as it's now translated better than bison is.
6507
6508 2006-06-19 Akim Demaille <akim@epita.fr>
6509
6510 * src/scan-gram.l: No longer "parse" things after `%union' until
6511 `{'. Rather, return a single "%union" token.
6512 No longer make symbols: return strings, and leave the conversion
6513 to symbols to the parser.
6514 (SC_PRE_CODE, token_type): Remove.
6515 * src/parse-gram.y (%union): New field `character'.
6516 Sort tokens.
6517 (CHAR): New token.
6518 (ID, ID_COLON): Now that the scanner no longer makes them
6519 identifiers, adjust all uses to invoke symbol_get.
6520 (id_colon): New, wraps the conversion from string to symbol.
6521 (%union): Accept a possible union_name.
6522 (symbol): Now can be a char.
6523 * data/c.m4 (b4_union_name): Leave a default value.
6524 * data/glr.c, data/yacc.c: Use it.
6525
6526 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
6527
6528 For associating token numbers with token names for "yacc.c", don't use
6529 #define statements unless `--yacc' is specified; always use enum
6530 yytokentype. Most important discussions start at:
6531 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
6532 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
6533 and
6534 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
6535 * NEWS (2.3+): Mention.
6536 * data/c.m4 (b4_yacc_if): New.
6537 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
6538 token #define's.
6539 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
6540 on token name definitions.
6541 * src/getargs.c (usage): Capitalize `Yacc' in English.
6542 * src/output.c (prepare): Define b4_yacc_flag.
6543 * tests/regression.at (Early token definitions): Test that tokens names
6544 are defined before the pre-prologue not just before the post-prologue.
6545 Remove this test case and copy to...
6546 (Early token definitions with --yacc): ... this to test #define's.
6547 (Early token definitions without --yacc): ... and this to test enums.
6548
6549 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
6550
6551 * NEWS: Reword the post-2.3 change to not be so optimistic about
6552 removing the old "look-ahead" spelling.
6553 Update previous look-ahead/lookahead change reports.
6554 * REFERENCES: look-ahead -> lookahead (since that's
6555 what he actually wrote).
6556 * doc/refcard.tex: look ahead -> lookahead,
6557 look-ahead -> lookahead
6558
6559 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
6560
6561 For consistency, use `lookahead' instead of `look-ahead' or
6562 `look_ahead'. Discussed starting at
6563 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
6564 and then at
6565 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
6566 * NEWS: For the next release, note the change to `--report'.
6567 * TODO, doc/bison.1: Update English.
6568 * doc/bison.texinfo: Update English.
6569 (Understanding Your Parser, Bison Options): Document as
6570 `--report=lookahead' rather than `--report=look-ahead'.
6571 * src/conflicts.c: Update English in comments.
6572 (lookahead_set): Rename from look_ahead_set.
6573 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
6574 (resolve_sr_conflict): Rename local look_ahead_tokens to
6575 lookahead_tokens, and update other uses.
6576 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
6577 count_rr_conflicts, conflicts_free): Update uses.
6578 * src/getargs.c (report_args): Move "lookahead" before alternate
6579 spellings.
6580 (report_types): Update uses.
6581 (usage): For `--report' usage description, state `lookahead' spelling
6582 rather than `look-ahead'.
6583 * src/getargs.h (report.report_lookahead_tokens): Rename from
6584 report_look_ahead_tokens.
6585 * src/lalr.c: Update English in comments.
6586 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
6587 (state_lookahead_tokens_count): Rename from
6588 state_look_ahead_tokens_count.
6589 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6590 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
6591 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6592 Update other uses.
6593 Update English in output.
6594 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
6595 * src/print.c: Update English in comments.
6596 (lookahead_set): Rename from look_ahead_set.
6597 (print_reduction): Rename argument lookahead_token from
6598 look_ahead_token.
6599 (print_core, state_default_rule, print_reductions, print_results):
6600 Update uses.
6601 * src/print_graph.c: Update English in comments.
6602 (print_core): Update uses.
6603 * src/state.c: Update English in comments.
6604 (reductions_new): Update uses.
6605 (state_rule_lookahead_tokens_print): Rename from
6606 state_rule_look_ahead_tokens_print, and update other uses.
6607 * src/state.h: Update English in comments.
6608 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
6609 (state_rule_lookahead_tokens_print): Rename from
6610 state_rule_look_ahead_tokens_print.
6611 * src/tables.c: Update English in comments.
6612 (conflict_row, action_row): Update uses.
6613 * tests/glr-regression.at
6614 (Incorrect lookahead during deterministic GLR,
6615 Incorrect lookahead during nondeterministic GLR): Rename
6616 print_look_ahead to print_lookahead.
6617 * tests/torture.at: Update English in comments.
6618 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
6619 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
6620 (Many lookahead tokens): Update uses.
6621 * data/glr.c: Update English in comments.
6622 * lalr1.cc: Likewise.
6623 * yacc.c: Likewise.
6624 * src/conflicts.h: Likewise.
6625 * src/lalr.h: Likewise.
6626 * src/main.c: Likewise.
6627 * src/output.c: Likewise.
6628 * src/parse-gram.c: Likewise.
6629 * src/tables.h: Likewise.
6630 * tests/calc.at: Likewise.
6631
6632 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
6633
6634 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
6635
6636 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
6637
6638 * TODO: Add request from Nelson H. F. Beebe to be able to install
6639 Bison without installing the yacc script.
6640
6641 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6642
6643 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
6644 and yytext if they're already #define'd.
6645 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
6646 * src/scan-code-c.c: ... here.
6647 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
6648 <config.h>.
6649
6650 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6651
6652 Get Bison to build again when configured with --enable-gcc-warnings.
6653 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
6654 missing #include's.
6655 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6656 loc argument as it shadows a global.
6657 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6658 invocation.
6659
6660 * src/.cvsignore: Add scan-code.c.
6661
6662 2006-06-07 Akim Demaille <akim@epita.fr>
6663
6664 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6665 to...
6666 * src/scan-code.l: here.
6667 * tests/input.at (Torturing the Scanner): Fix another location
6668 error.
6669
6670 2006-06-07 Akim Demaille <akim@epita.fr>
6671
6672 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6673
6674 2006-06-06 Akim Demaille <akim@epita.fr>
6675
6676 Extract the parsing of user actions from the grammar scanner.
6677 As a consequence, the relation between the grammar scanner and
6678 parser is much simpler. We can also split "composite tokens" back
6679 into simple tokens.
6680 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6681 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6682 rename as...
6683 * src/location.h, src/location.c (add_column_width)
6684 (location_compute): these.
6685 Fix the column count: the initial column is 0.
6686 (location_print): Be robust to ending column being 0.
6687 * src/location.h (boundary_set): New.
6688 * src/main.c: Adjust to scanner_free being renamed as
6689 gram_scanner_free.
6690 * src/output.c: Include scan-code.h.
6691 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6692 Use boundary_set.
6693 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6694 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6695 which is now, again, a separate token.
6696 Adjust all dependencies.
6697 Whereever actions with $ and @ are used, use translate_code.
6698 (action): Remove this nonterminal which is now useless.
6699 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6700 (grammar_current_rule_action_append): Use translate_code.
6701 (packgram): Bound check ruleno, itemno, and rule_length.
6702 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6703 (last_string, last_braced_code_loc, max_left_semantic_context)
6704 (scanner_initialize, scanner_free, scanner_last_string_free)
6705 (gram_out, gram_lineno, YY_DECL_): Move to...
6706 * src/scan-gram.h: this new file.
6707 (YY_DECL): Rename as...
6708 (GRAM_DECL): this.
6709 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6710 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6711 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6712 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6713 Move these declarations, and...
6714 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6715 these to...
6716 * src/flex-scanner.h: this new file.
6717 * src/scan-gram.l (rule_length, rule_length_overflow)
6718 (increment_rule_length): Remove.
6719 (last_braced_code_loc): Rename as...
6720 (gram_last_braced_code_loc): this.
6721 Adjust to the changes of the parser.
6722 Move all the handling of $ and @ into...
6723 * src/scan-code.l: here.
6724 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6725 (handle_action_dollar, handle_action_at): Move to...
6726 * src/scan-code.l: here.
6727 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6728 scan-code.h, scan-code-c.c, scan-gram.h.
6729 (EXTRA_bison_SOURCES): Add scan-code.l.
6730 (BUILT_SOURCES): Add scan-code.c.
6731 (yacc): Be robust to white spaces.
6732
6733 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6734 * tests/regression.at: Adjust the column numbers.
6735 * tests/regression.at: Adjust the error message.
6736
6737 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6738
6739 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6740 Use Akim's wording from
6741 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6742
6743 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6744
6745 Between Bison releases, manually append `+' to the previous Bison
6746 release number, and use that as a signal to automatically print the
6747 ChangeLog's CVS Id keyword from --version. Discussed starting at
6748 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6749 * ChangeLog: Add Id header.
6750 * configure.ac (AC_INIT): Append `+' to `2.3'.
6751 * src/.cvsignore: Add revision.c.
6752 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6753 (BUILT_SOURCES): Add revision.c.
6754 (revision.c): New target rule. This file defines a new global variable
6755 named revision. It initializes it with either the Id from ChangeLog
6756 or, if VERSION doesn't contain `+', with the empty string.
6757 * src/getargs.c (version): Print the value of revision.
6758 * src/revision.h: Extern revision.
6759
6760 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6761
6762 * NEWS: Version 2.3.
6763 * configure.ac (AC_INIT): Likewise.
6764
6765 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6766
6767 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6768 with no arguments, not as an object-like macro. This is for
6769 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6770 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6771 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6772 Document this.
6773
6774 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6775
6776 * src/getargs.c (usage): Back out yesterday's modification of the
6777 --help output so that we don't have to wait for translation before
6778 releasing 2.3.
6779
6780 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6781
6782 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6783 Problem reported by Akim Demaille.
6784
6785 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6786
6787 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6788
6789 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6790
6791 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6792 generated source code. Problem reported by Frans Englich in
6793 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6794
6795 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6796
6797 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6798 shell, not within 'make', so that 'make' by an ordinary builder
6799 (using GNU make) does not worry about configuring gzip. This also
6800 works around a bug reported independently by Keith Thompson and by
6801 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6802 stderr rather than stdout, messing up the build logs.
6803
6804 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6805
6806 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6807 to make sure that YYID will never be unused. This fixes a 'make
6808 maintainer-check' failure caused by the recent changes to the 'Trivial
6809 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6810 not used.
6811 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6812
6813 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6814
6815 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6816 state before an empty RHS is always resolved here. Only the location
6817 of that state is guaranteed to be resolved, and that's enough. This
6818 fixes the remaining bug reported by Derek M. Jones in
6819 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6820 * tests/glr-regression.at (Uninitialized location when reporting
6821 ambiguity): Test the above case.
6822 Also, the embedded comments in this test case claim it checks the case
6823 of an empty RHS that has inherited the initial location. However, the
6824 corresponding LHS was already resolved, so yyresolveLocations didn't
6825 actually have reason to modify it. Fix this by forcing
6826 nondeterministic operation at the beginning of the parse.
6827
6828 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6829
6830 * data/c.m4 (b4_yy_symbol_print_generate):
6831 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6832 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6833 of the bugs reported today by Derek M Jones in
6834 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6835 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6836 defined to be a type name without parens or brackets.
6837 (Location Type): Similarly for YYLTYPE.
6838 * tests/regression.at (Trivial grammars): Put in a test for this
6839 bug that will be caught by 'make maintainer-check' (though not,
6840 alas, by 'make check' unless your compiler is picky).
6841
6842 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6843
6844 * NEWS: Version 2.2.
6845 * configure.ac (AC_INIT): Likewise.
6846
6847 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6848
6849 * data/glr.c (yyreportTree): Make room in yystates for the state
6850 preceding the RHS. This fixes the segmentation fault reported by Derek
6851 M. Jones in
6852 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6853 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6854 to the user. Reported for yyreportTree by Derek M. Jones later in the
6855 same thread.
6856 * THANKS: Add Derek M. Jones.
6857 Update my email address.
6858 Fix typo in Steve Murphy's name.
6859
6860 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6861
6862 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6863 checking against YYLAST that caused the parser to miss a potential
6864 alternative in its diagnostic.
6865 Problem reported by Maria Jose Moron Fernandez in
6866 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6867 * data/lalr1.cc (yysyntax_error_): Likewise.
6868 * data/yacc.c (yysyntax_error): Likewise.
6869 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6870 tokens, in case we run into an older C compiler.
6871 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6872 Use them to check for the off-by-one error fixed above.
6873
6874 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6875 YYSIZE_T, not size_t.
6876 * tests/regression.at (Trivial grammars): New test, to catch
6877 the error fixed by the above patch.
6878
6879 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6880
6881 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6882 scheme.
6883 Reported by Steve Murphy.
6884
6885 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6886
6887 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6888 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6889
6890 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6891
6892 Implement --trace=m4.
6893 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6894 * src/output.c (output_skeleton): When set, pass -dV to m4.
6895
6896 Factor the handling of flags in m4.
6897 * src/output.c (prepare): Rename the muscle names debug, defines,
6898 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6899 * data/c.m4: Adjust.
6900 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6901 Use b4_define_flag_if to define other b4_FLAG_if macros.
6902 (b4_location_if): As a consequence, rename as...
6903 (b4_locations_if): this, for consistency.
6904 Adjust all the skeletons.
6905
6906 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6907
6908 * etc/bench.pm: Shorten bench names.
6909
6910 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6911
6912 * src/output.h, src/output.c (error_verbose): Move to...
6913 * src/getargs.h, src/getargs.c: here.
6914 Sort the flags.
6915 Adjust dependencies.
6916
6917 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6918
6919 * data/c.m4 (b4_copyright): Put the special exception for Bison
6920 skeletons here, so we don't have to put it in each skeleton. All
6921 uses changed. Suggested by Akim Demaille. Also, wrap the
6922 copyright notice, in case it is longer than 80 columns. Replace
6923 comma by newline after title.
6924
6925 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6926
6927 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6928 incompatibility, not a bug. Mention that it wasn't fixed as of
6929 flex 2.5.33.
6930
6931 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6932
6933 * examples/extexi: Enforce the precedence of concatenation over
6934 >>.
6935 Reported by Tommy Nordgren.
6936
6937 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6938
6939 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6940 with the member "token".
6941 Reported by Martin Nylin.
6942
6943 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6944
6945 * data/glr.c: Switch to Bison 2.2 special-exception language in
6946 the copyright notice. Use more-regular format for titles and
6947 copyright notices.
6948 * data/glr.cc: Likewise.
6949 * data/location.cc: Likewise.
6950 * data/yacc.cc: Likewise.
6951 * doc/bison.texinfo (Conditions): Document this.
6952 * NEWS: likewise. Upgrade version to 2.2.
6953
6954 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
6955
6956 * data/glr.cc: Remove dead code.
6957
6958 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6959
6960 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6961 that variable and the line breaks the bootstrap. Problem reported
6962 by Juan M. Guerrero.
6963
6964 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6965
6966 * doc/bison.texinfo (Multiple start-symbols): New.
6967
6968 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6969
6970 * etc/README, etc/bench.pl: New.
6971
6972 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
6973
6974 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6975 rule.
6976 Reported by Mickael Labau.
6977 * tests/input.at (Torturing the Scanner): Test it.
6978
6979 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6980
6981 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6982 Problem reported by Bob Rossi.
6983
6984 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6985
6986 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6987 and didn't really work.
6988 For the index, use @ifnotinfo, not @iftex.
6989 Minor cleanups of spacing and terminology.
6990
6991 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6992
6993 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6994 of AT_NAME_PREFIX when %name-prefix is not used.
6995
6996 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6997
6998 Apply --prefix to C++ skeletons too: they change the namespace.
6999 The test suite already exercize these cases.
7000 * data/c++.m4 (b4_namespace): New.
7001 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
7002 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
7003 * data/yacc.c, data/glr.c: Remove a useless `[]'.
7004 * doc/bison.texinfo: Document it.
7005 (Option Cross Key): Use @multitable in all formats. It looks
7006 nicer, even in TeX outputs.
7007 (Rules): Use the same code whatever the output type is.
7008 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
7009 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
7010 * tests/calc.at: Use it, instead of hard coding `yy'.
7011
7012 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7013
7014 * TODO: Remove dead items.
7015
7016 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7017
7018 * doc/FAQ: Remove, merged into...
7019 * doc/bison.texinfo (FAQ): this.
7020 * doc/Makefile.am (EXTRA_DIST): Adjust.
7021
7022 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7023
7024 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
7025 even if empty.
7026 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
7027 * doc/bison.texinfo (Calc++ Scanner): Use it.
7028
7029 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
7030
7031 Fix two nits reported by twlevo, plus one more that I discovered.
7032
7033 * src/assoc.h (assoc_to_string): Give a name to the arg, as
7034 this is the usual Bison style.
7035 * src/location.h (location_print): Likewise.
7036
7037 * src/reader.h (token_name): Likewise.
7038
7039 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
7040
7041 Fix some nits reported by twlevo.
7042 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
7043 and "POSIX". Use more-modern syntax for URLs. Mention C++
7044 and ask for Java. Don't hardwire OS version numbers. Add
7045 copyright notice.
7046 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
7047 * src/conflicts.c (solved_conflicts_obstack): Now static.
7048
7049 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
7050
7051 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
7052 page. Say "you can use it" not "you may use it" as on the web page;
7053 we're describing capabilities not granting permission.
7054
7055 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
7056
7057 * data/glr.c (yyresolveLocations): Rename local variables to avoid
7058 shadowing warnings. Use usual patter for iterating through RHS.
7059 * tests/glr-regression.at
7060 (Uninitialized location when reporting ambiguity):
7061 Modify yylex so that it uses its argument, rather than trying
7062 to rely on ARGSUSED (which doesn't work for gcc with warnings).
7063 const char -> char const.
7064
7065 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
7066 Don't use tabs inside commands; it messes up 'ps'.
7067 Problem reported by twlevo.
7068
7069 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
7070
7071 * tests/glr-regression.at (Uninitialized location when reporting
7072 ambiguity): New test case.
7073 * data/glr.c (yyresolveLocations): New function, which uses
7074 YYLLOC_DEFAULT.
7075 (yyresolveValue): Invoke yyresolveLocations before reporting an
7076 ambiguity.
7077 * doc/bison.texinfo (Default Action for Locations): Note
7078 YYLLOC_DEFAULT's usage for ambiguity locations.
7079 (GLR Semantic Actions): Cross-reference those notes.
7080
7081 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
7082
7083 * tests/glr-regression.at (Leaked semantic values when reporting
7084 ambiguity): Remove unnecessary union and type declarations.
7085 (Leaked lookahead after nondeterministic parse syntax error): New test
7086 case.
7087 * data/glr.c (yyparse): Check for zero stacks remaining before
7088 attempting to shift the lookahead so that you don't lose it.
7089
7090 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
7091
7092 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
7093 * tests/glr-regression.at (Leaked semantic values when reporting
7094 ambiguity): New test case.
7095 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
7096 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
7097 now unnecessary yystackp parameter.
7098 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
7099 destructors can be called.
7100
7101 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
7102 in existing testcases.
7103
7104 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
7105
7106 Don't leak semantic values for parent RHS when a user action cuts the
7107 parser, and clean up related code a bit.
7108 * tests/glr-regression.at (Leaked merged semantic value if user action
7109 cuts parse): Rename to...
7110 (Leaked semantic values if user action cuts parse): ... this. Add check
7111 for leaked parent RHS values.
7112 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
7113 between an unresolved state (non-empty chain of semantic options) and
7114 an incomplete one (signaled by an empty chain).
7115 (yyresolveStates): Document the interface. Move all manipulation of a
7116 successfully or unsuccessfully resolved yyGLRState to...
7117 (yyresolveValue): ... here so that yyresolveValue always leaves a
7118 yyGLRState with consistent data and thus is easier to understand.
7119 Remove the yyvalp and yylocp parameters since they are always just
7120 taken from the yys parameter. When reporting a discarded merged value
7121 in debugging output, note that it is incompletely merged. Document the
7122 interface.
7123 (yyresolveAction): If resolving any of the RHS states fails, destroy
7124 them all rather than leaking them. Thus, as long as user actions are
7125 written to clean up the RHS correctly, yyresolveAction always cleans up
7126 the RHS of a semantic option. Document the interface.
7127
7128 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
7129
7130 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
7131 led to a segmentation fault in GNU Pascal. Problem reported
7132 by Waldek Hebisch.
7133
7134 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
7135
7136 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
7137 mid-rule action inside a nonterminal symbol in order to declare a
7138 destructor for its semantic value.
7139
7140 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
7141
7142 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
7143 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
7144 __cplusplus && ! defined _STDLIB_H && !
7145 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
7146 defined free))]: Include <stdlib.h> rather than rolling our own
7147 declarations of malloc and free, to avoid problems with
7148 incompatible declarations (using 'throw') C++'s stdlib.h. This
7149 should fix Debian bug 340012
7150 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
7151 reported by Guillaume Melquiond.
7152
7153 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
7154
7155 * NEWS: Clarify symbols versus types in unused-value warnings.
7156
7157 * configure.ac (AC_INIT): Bump version number.
7158
7159 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
7160
7161 * NEWS: Version 2.1a.
7162 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
7163 since C99 requires this.
7164
7165 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
7166
7167 * m4/c-working.m4: New file.
7168 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
7169
7170 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
7171
7172 * Makefile.maint: Merge from coreutils.
7173
7174 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
7175
7176 More portability fixes for problems summarized by Nelson H. F. Beebe.
7177
7178 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
7179 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
7180 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
7181 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
7182 messes up because C++ code is compiled in 32-bit mode but linked
7183 in 64-bit mode.
7184
7185 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
7186
7187 More portability fixes for problems summarized by Nelson H. F. Beebe.
7188
7189 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
7190 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
7191
7192 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
7193 nodist_PROGRAMS, since we don't need to actually compile the
7194 example if we're just doing a plain 'make'. This avoids bothering
7195 the installer unnecessarily about problems due to weird C++
7196 compilers.
7197
7198 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
7199
7200 More portability fixes for problems summarized by Nelson H. F. Beebe.
7201
7202 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
7203 than #include "...", and compile with -I'.'. The old method was
7204 not portable, according to Posix and the C standard, and it does
7205 not work with Sun C 5.7, where previous #line directives affect
7206 the working directory used in later #include "..." directives.
7207
7208 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7209
7210 Various DJGGP specific issues in /djgpp
7211
7212 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
7213
7214 More portability fixes for problems summarized by Nelson H. F. Beebe.
7215
7216 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
7217 '#include <map>' works and that you can apply ++ to iterators.
7218
7219 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
7220
7221 Work around portability problems summarized by Nelson H. F. Beebe in
7222 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
7223
7224 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7225 that '#include <string>' works.
7226
7227 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
7228 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
7229 "warning: sorry: semantics of inline function static data `const
7230 unsigned char translate_table[262]' are wrong (you'll wind up with
7231 multiple copies)".
7232
7233 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
7234 or, xor to not_, and_, or_, and xor_, respectively. This works
7235 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
7236 random system header somewhere that includes the equivalent of
7237 <iso646.h>.
7238
7239 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
7240 -E" works; it apparently doesn't work with PathScale EKO Compiler
7241 Suite Version 2.0.
7242
7243 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
7244
7245 During deterministic GLR operation, user actions should be able to
7246 influence the parse by changing yychar. To make this easier to fix and
7247 to make glr.c easier to evolve in general, don't maintain yytoken in
7248 parallel with yychar; just compute yytoken when needed.
7249 * tests/glr-regression.at (Incorrect lookahead during deterministic
7250 GLR): Check that setting yychar in a user action has the intended
7251 effect.
7252 * data/glr.c (yyGLRStack): Remove yytokenp member.
7253 (yyclearin): Don't set *yytokenp.
7254 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
7255 yychar rather than *yytokenp to determine the current lookahead.
7256 Compute yytoken locally when needed.
7257 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
7258 point to.
7259
7260 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
7261 after `--report' documentation.
7262
7263 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
7264
7265 * src/parse-gram.y (grammar_declaration): Location of printer
7266 symbol is @1, not list->location. Bug reported by twlevo.
7267 * tests/input.at (Incompatible Aliases): Adjust to above change.
7268
7269 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
7270
7271 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
7272 all the test at once. This makes the output easier to read in the
7273 normal case.
7274
7275 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
7276 got from <http://bro-ids.org/download.html>. The bug is that
7277 when two actions appeared in succession, the second one was
7278 scanned before the first one was added to the grammar rule
7279 as a midrule action. Bison then output the incorrect warning
7280 "parse.y:905.17-906.36: warning: unused value: $3".
7281 * src/parse-gram.y (BRACED_CODE, action): These are no longer
7282 associated with a value.
7283 (rhs): Don't invoke grammar_current_rule_action_append.
7284 (action): Invoke it here instead.
7285 * src/reader.c (grammar_midrule_action): Now extern.
7286 (grammar_current_rule_action_append): Don't invoke
7287 grammar_midrule_action; that is now the scanner's job.
7288 * src/reader.h (last_string, last_braced_code_loc):
7289 (grammar_midrule_action): New decls.
7290 * src/scan-gram.l (last_string): Now extern, sigh.
7291 (last_braced_code_loc): New extern variable.
7292 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
7293 rule already has an action.
7294 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
7295 * tests/input.at (AT_CHECK_UNUSED_VALUES):
7296 Add some tests to check that the above changes fixed the bug.
7297
7298 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
7299
7300 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
7301 All used changed. Check whether the symbol has a destructor,
7302 not whether it is typed.
7303 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
7304 that the values are still reported as unused. All line numbers
7305 adjusted.
7306
7307 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
7308
7309 Work around a bug in bro 0.8, which underparenthesizes its
7310 definition of YYLLOC_DEFAULT.
7311 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
7312 their arguments.
7313 * data/lalr1.cc: Likewise.
7314 * data/yacc.cc: Likewise.
7315
7316 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
7317
7318 Work around a bug in Pike 7.0, and give the Pike folks a
7319 better way to override the usual int widths.
7320 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
7321 user can override the types.
7322 (short): #undef, to work around a bug in Pike 7.0.
7323 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
7324 (union yyalloc.yyss): Use yytype_int16 rather than short.
7325 All uses changed.
7326 (yysigned_char): Remove.
7327 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
7328 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
7329 * tests/regression.at (Web2c Actions): Adjust to above changes.
7330
7331 * src/reader.c (check_and_convert_grammar): New function.
7332 (reader): Close the input file even if something went wrong during
7333 parsing. Minor file descriptor leak reported by twlevo.
7334
7335 * src/assoc.c (assoc_to_string): Use a default: abort (); case
7336 to pacify gcc -Wswitch-default.
7337 * src/scan-gram.l (adjust_location): Use a default: break; case
7338 to pacify gcc -Wswitch-default.
7339 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
7340 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7341 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7342 Move these decls to scan-skel.l, since they don't need to be
7343 visible elsewhere.
7344 * src/scan-skel.l: Accept the above decls.
7345 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
7346 is used.
7347
7348 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
7349
7350 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
7351 since we don't want to insist on a version number at the start
7352 of the changelog every time.
7353 * Makefile.maint: Sync from coreutils a bit better.
7354 (sc_trailing_blank): Renamed from sc_trailing_space.
7355 All uses changed.
7356 (sc_no_if_have_config_h, sc_require_config_h):
7357 (sc_prohibit_assert_without_use): New rules.
7358 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
7359 (sc_dd_max_sym_length): Fix leading spaces in rule.
7360 (sc_system_h_headers): Prefix with @.
7361 (sc_useless_cpp_parens, m4-check): Output line numbers.
7362 (changelog-check): Allow version only in head.
7363 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
7364 satisfy new Makefile.maint rule.
7365 * data/glr.c: Likewise.
7366 * data/glr.cc: Likewise.
7367 * data/lalr1.cc: Likewise.
7368 * data/yacc.c: Likewise.
7369 * lib/ebitsetv.c: Likewise.
7370 * lib/lbitset.c: Likewise.
7371 * lib/subpipe.c: Likewise.
7372 * lib/timevar.c: Likewise.
7373 * src/system.h: Likewise.
7374 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
7375 * djgpp/Makefile.maint: Add copyright notice.
7376 * djgpp/README.in: Likewise.
7377 * djgpp/config.bat: Likewise.
7378 * djgpp/config.site: Likewise.
7379 * djgpp/config_h.sed: Likewise.
7380 * djgpp/djunpack.bat: Likewise.
7381 * djgpp/config.sed: Fix copyright notice to match standard format.
7382 * djgpp/subpipe.h: Likewise.
7383 * lib/bitsetv-print.c: Likewise.
7384 * lib/bitsetv.c: Likewise.
7385 * lib/subpipe.h: Likewise.
7386 * lib/timevar.c: Likewise.
7387 * lib/timevar.h: Likewise.
7388 * djgpp/subpipe.c: Use standard recipe for config.h.
7389 * lib/abitset.c: Likewise.
7390 * lib/bitset.c: Likewise.
7391 * lib/bitset_stats.c: Likewise.
7392 * lib/bitsetv-print.c: Likewise.
7393 * lib/bitsetv.c: Likewise.
7394 * lib/ebitsetv.c: Likewise.
7395 * lib/get-errno.c: Likewise.
7396 * lib/lbitset.c: Likewise.
7397 * lib/subpipe.c: Likewise.
7398 * lib/timevar.c: Likewise.
7399 * lib/vbitset.c: Likewise.
7400 * tests/local.at: Likewise.
7401 * src/scan-gram.l: Don't include verify.h, since system.h does
7402 that for us.
7403 * .x-sc_require_config_h: New file.
7404 * .x-sc_unmarked_diagnostics: New file.
7405
7406 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
7407
7408 Be a bit more systematic about using 'abort'.
7409 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
7410 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
7411 Put 'default: abort ();' before some other case, to satisfy older
7412 pedantic compilers.
7413 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7414 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
7415 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
7416 * src/conflicts.c (resolve_sr_conflict): Likewise.
7417 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
7418 (get_decision_str, get_orientation_str, get_node_alignment_str):
7419 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
7420 (get_linestyle_str, get_arrowstyle_str): Likewise.
7421 * src/conflicts.c (resolve_sr_conflict):
7422 Use a default case rather than one for the one remaining enum
7423 value, to catch invalid enum values as well.
7424 * src/lalr.c (set_goto_map, map_goto):
7425 Prefer "assert (FOO);" to "if (!FOO) abort ();".
7426 * src/nullable.c (nullable_compute, token_definitions_output):
7427 Likewise.
7428 * src/reader.c (packgram, reader): Likewise.
7429 * src/state.c (transitions_to, state_new, state_reduction_find):
7430 Likewise.
7431 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
7432 (symbol_pack): Likewise.
7433 * src/tables.c (conflict_row, pack_vector): Likewise.
7434 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
7435 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
7436 * src/system.h: Don't include <assert.h>.
7437 (assert): New macro.
7438
7439 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
7440 (Destructor Decl, Parser Function, Pure Calling):
7441 Describe rules for braces inside C code more carefully.
7442
7443 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
7444
7445 Fix some porting glitches found by Nelson H. F. Beebe.
7446 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
7447 compilers that don't understand that abort () does not return.
7448 * src/state.c (transitions_to): Likewise.
7449 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7450 that '#include <cstdlib>' works.
7451 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
7452 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
7453 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
7454 for the benefit of some pre-C99 compilers.
7455
7456 * bootstrap: Undo changes to gnulib files that autoreconf made.
7457
7458 Minor fixups to get 'make maintainer-check' to work.
7459 * configure.ac: Don't use -Wnested-externs, as it's incompatible
7460 with the new verify.h implementation.
7461 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
7462 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
7463 * data/yacc.c (YYUSE): Likewise.
7464 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
7465 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
7466 * src/parse-gram.y (declaration): Don't pass a string constant
7467 to a function that expects char *, since GCC might complain
7468 about the constant value.
7469 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
7470 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
7471 before #defining them.
7472 * tests/glr-regression.at
7473 (Incorrectly initialized location for empty right-hand side in GLR):
7474 In yyerror, use the msg arg.
7475 (Corrupted semantic options if user action cuts parse):
7476 (Incorrect lookahead during deterministic GLR):
7477 (Incorrect lookahead during nondeterministic GLR):
7478 Don't name a local var 'index'; it shadows string.h's 'index'.
7479
7480 2006-01-19 Akim Demaille <akim@epita.fr>
7481
7482 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
7483 location, not just parts of it.
7484
7485 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
7486
7487 * NEWS: Document the fact that multiple %unions are now allowed.
7488 * doc/bison.texinfo (Union Decl): Likewise.
7489 * TODO: This feature is now implemented, so remove it from
7490 the wishlist.
7491
7492 * Makefile.maint: Merge with coreutils Makefile.maint.
7493 (CVS_LIST): Use build-aux version if available.
7494 (VERSION_REGEXP): New macro.
7495 (syntax-check-rules): Add sc_no_if_have_config_h,
7496 sc_prohibit_assert_without_use, sc_require_config_h,
7497 sc_useless_cpp_parens.
7498 (sc_obsolete_symbols): Check for O_NDELAY.
7499 (sc_dd_max_sym_length): Track coreutils.
7500 (sc_unmarked_diagnostics): Look in all files, not just *.c.
7501 (sc_useless_cpp_parens): New rule.
7502 (news-date-check): Look for version or today's date.
7503 (changelog-check): Don't require version number near head.
7504 (copyright-check): Use current year instead of hardwiring 2005.
7505 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
7506 (announcement): Add --gpg-key-ID.
7507
7508 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
7509 with "file system".
7510
7511 Avoid undefined behavior that addressed just before the start of an
7512 array. Problem reported by twlevo.
7513 * src/reader.c (packgram): Prepend a new sentinel before ritem.
7514 * src/lalr.c (build_relations): Rely on new sentinel.
7515 * src/gram.c (gram_free): Adjust to new sentinel.
7516
7517 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
7518
7519 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
7520 yylookaheadNeeds. All uses updated.
7521 (yysplitStack): Rename local yynewLookaheadStatuses to
7522 yynewLookaheadNeeds.
7523 * data/glr-regression.at (Incorrect lookahead during nondeterministic
7524 GLR): In comments, change `lookahead status' to `lookahead need'.
7525
7526 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7527
7528 * data/glr.c (yysplitStack): A little stylistic rewrite.
7529
7530 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7531
7532 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
7533
7534 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
7535
7536 * doc/bison.texinfo: Fix some typos.
7537 (GLR Semantic Actions): New subsection discussing special
7538 considerations because GLR semantic actions might be deferred.
7539 (Actions): Mention look-ahead usage of yylval.
7540 (Actions and Locations): Mention look-ahead usage of yylloc.
7541 (Special Features for Use in Actions): Add YYEOF entry and mention it
7542 in the yychar entry.
7543 In the yychar entry, remove mention of the local yychar case (pure
7544 parser) since this is irrelevant information when writing semantic
7545 actions and since it's already discussed in `Table of Symbols' where
7546 yychar is otherwise described as an external variable.
7547 In the yychar entry, don't call it the `current' look-ahead since it
7548 isn't when semantic actions are deferred.
7549 In the yychar and yyclearin entries, add note about deferred semantic
7550 actions.
7551 Add yylloc and yylval entries discussing look-ahead usage.
7552 (Look-Ahead Tokens): When discussing yychar, don't call it the
7553 `current' look-ahead, and do mention yylval and yylloc.
7554 (Error Recovery): Cross-reference `Action Features' when mentioning
7555 yyclearin.
7556 (Table of Symbols): In the yychar entry, don't call it the `current'
7557 look-ahead.
7558 In the yylloc and yylval entries, mention look-ahead usage.
7559
7560 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7561
7562 * tests/glr-regression.at: Update copyright year to 2006.
7563
7564 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7565
7566 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
7567 use during nondeterministic operation to track which stacks have
7568 actually needed the current lookahead.
7569 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
7570 Allocate, deallocate, resize, and otherwise shuffle space for
7571 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
7572 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
7573 appropriately during nondeterministic operation.
7574 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
7575 members to store the current lookahead to be used by the deferred
7576 user action.
7577 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
7578 from which the RHS is taken. Set the lookahead members of the new
7579 yySemanticOption according to the lookahead status for stack yyk.
7580 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
7581 yyaddDeferredAction.
7582 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
7583 members of yySemanticOption before invoking yyuserAction, and then set
7584 them back to their current values afterward.
7585 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
7586 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
7587 * tests/glr-regression.at: Remove `.' from the ends of recent test case
7588 titles for consistency.
7589 (Leaked merged semantic value if user action cuts parse): In order to
7590 suppress lint warnings, use arguments in merge function, and assign
7591 char value < 128 in main.
7592 (Incorrect lookahead during deterministic GLR): New test case.
7593 (Incorrect lookahead during nondeterministic GLR): New test case.
7594
7595 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7596
7597 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
7598 !yyvaluep as signal that no semantic value is available to print.
7599 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
7600 to print a semantic value.
7601
7602 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7603
7604 * tests/glr-regression.at: For consistency with my newer test cases,
7605 don't thank myself.
7606
7607 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7608
7609 * data/glr.c (yyresolveValue): When merging semantic options, if at
7610 least one user action succeeds but a later one cuts the parse, then
7611 destroy the semantic value before returning rather than leaking it.
7612 (yyresolveStates): If a user action cuts the parse and thus
7613 yyresolveValue fails, ignore the (unset) semantic value rather than
7614 corrupting the yyGLRState, and empty the semantic options list since
7615 the user actions should have called all necessary destructors.
7616 Simplify code with YYCHK.
7617 * tests/glr-regression.at (Corrupted semantic options if user action
7618 cuts parse): New test case.
7619 (Undesirable destructors if user action cuts parse): New test case.
7620 Before applying any of this patch, this test case never actually failed
7621 for me... but only because the corrupted semantic options usually
7622 masked this bug.
7623 (Leaked merged semantic value if user action cuts parse): New test
7624 case.
7625
7626 2006-01-05 Akim Demaille <akim@epita.fr>
7627
7628 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
7629
7630 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
7631
7632 * data/c.m4 (b4_c_modern): New macro, with a new provision for
7633 _MSC_VER. Problem reported by Cenzato Marco.
7634 (b4_c_function_def): Use it.
7635 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
7636 b4_c_modern.
7637 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
7638 than rolling our own.
7639
7640 2006-01-04 Akim Demaille <akim@epita.fr>
7641
7642 Also warn about non-used mid-rule values.
7643 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
7644 member.
7645 (symbol_list_new): Adjust.
7646 * src/reader.c (symbol_typed_p): New.
7647 (grammar_rule_check): Use it.
7648 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
7649 Check its rule.
7650 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
7651 Use it.
7652 * tests/actions.at (Exotic Dollars): Adjust.
7653
7654 2006-01-04 Akim Demaille <akim@epita.fr>
7655
7656 * src/reader.c (grammar_midrule_action): If $$ is set in a
7657 mid-rule, move the `used' bit to its lhs.
7658 * tests/input.at (Unused values): New.
7659 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7660
7661 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7662
7663 * doc/bison.texinfo (Bison Options): Say more accurately what
7664 --yacc does.
7665 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7666 about declarations in the grammar when in Yacc mode, as POSIX does
7667 not require a diagnostic when the grammar uses extensions.
7668
7669 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7670
7671 Warn about dubious constructions like "%token T T".
7672 Reported by twlevo.
7673 * src/symtab.h (struct symbol.declared): New member.
7674 * src/symtab.c (symbol_new): Initialize it to false.
7675 (symbol_class_set): New arg DECLARING, specifying whether
7676 this is a declaration that we want to warn about, if there
7677 is more than one of them. All uses changed.
7678
7679 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7680 Allow multiple %union directives, whose contents concatenate.
7681 * src/parse-gram.y (grammar_declaration): Likewise.
7682 Use muscle_code_grow, so that we don't need stype_line any more.
7683 All uses changed.
7684
7685 * src/muscle_tab.c (muscle_grow): Fix comment.
7686
7687 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7688 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7689 Update copyright year to 2006.
7690
7691 2006-01-03 Akim Demaille <akim@epita.fr>
7692
7693 Have glr.cc pass (some of) the calc.at tests.
7694 * data/glr.cc (b4_parse_param_orig): New.
7695 (b4_parse_param): Improve its definition, and bound it more
7696 clearly in the skeleton.
7697 (b4_epilogue): Append, instead of prepending, in order to keep
7698 #line consistency.
7699 Simplify the generation of auxiliary functions: locations and
7700 purity are mandated.
7701 (b4_global_tokens_and_yystype): Honor it.
7702 * data/location.cc (c++.m4): Don't include it.
7703 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7704 and AT_SKEL_CC_IF.
7705 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7706 AT_LALR1_CC_IF.
7707 Be sure to initialize the first position's filename.
7708 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7709 mandated anyway.
7710 (AT_CHECK_CALC_GLR_CC): New.
7711 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7712
7713 2006-01-02 Akim Demaille <akim@epita.fr>
7714
7715 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7716 c.m4.
7717 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
7718 * data/glr.cc: Do not include stack.hh.
7719
7720 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7721
7722 * data/glr.c: Reformat whitespace with tabs.
7723 (b4_lpure_formals): Remove this unused m4 macro.
7724 * tests/cxx-type.at: Reformat whitespace with tabs.
7725 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7726 since it's a member. Rename type to isNterm for clarity.
7727
7728 2005-12-29 Akim <akim@sulaco.local>
7729
7730 Let glr.cc catch up with symbol_value_print.
7731 * data/glr.cc (b4_yysymprint_generate): Replace by...
7732 (b4_yy_symbol_print_generate): this.
7733 (yy_symbol_print, yy_symbol_value_print): Declare them.
7734
7735 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7736
7737 * src/location.h (boundary): Note that a line or column equal
7738 to INT_MAX indicates an overflow.
7739 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7740 (rule_length_overflow, increment_rule_length, add_column_width):
7741 New functions.
7742 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7743 (<SC_BRACED_CODE>"}"):
7744 Use increment_rule_length rather than incrementing it by hand.
7745 (adjust_location, handle_syncline): Diagnose overflow.
7746 (handle_action_dollar, handle_action_at):
7747 Fix bug with monstrosities like $-2147483648.
7748 Remove now-unnecessary checks.
7749 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7750 (convert_ucn_to_byte): Verify assumptions.
7751 (handle_syncline): New arg LOC. All callers changed.
7752 Don't store through a value derived from char const * pointer.
7753
7754 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7755 GCC warnings.
7756
7757 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7758
7759 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7760 Remove unnecessary forward static decls.
7761
7762 2005-12-27 Akim Demaille <akim@epita.fr>
7763
7764 * src/reader.c (grammar_current_rule_check): Also check that $$
7765 is used.
7766 Take the rule to check as argument, hence rename as...
7767 (grammar_rule_check): this.
7768 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7769 Rename as...
7770 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7771 (grammar_midrule_action, grammar_symbol_append): Now static.
7772 * tests/torture.at (input): Don't rely on the default action
7773 being always performed.
7774 * tests/calc.at: "Set" $$ even when the action is "cut" with
7775 YYERROR or other.
7776 * tests/actions.at (Exotic Dollars): Instead of using unused
7777 values, check that the warning is issued.
7778
7779 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7780
7781 * NEWS: Improve wording for unused-value warnings.
7782
7783 2005-12-22 Akim Demaille <akim@epita.fr>
7784
7785 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7786 (b4_yysymprint_generate): Rename as...
7787 (b4_yy_symbol_print_generate): this.
7788 Generate yy_symbol_print instead of yysymprint.
7789 Generate also yy_symbol_value_print, and use it.
7790
7791 2005-12-22 Akim Demaille <akim@epita.fr>
7792
7793 * NEWS: Warn about unused values.
7794 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7795 a `used' member.
7796 (symbol_list_n_get, symbol_list_n_used_set): New.
7797 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7798 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7799 * src/reader.c (grammar_current_rule_check): Check that values are
7800 used.
7801 * src/symtab.c (symbol_print): Accept 0.
7802 * tests/existing.at: Remove the type information.
7803 Empty the actions.
7804 Remove useless actions (beware of mid-rule actions: perl -000
7805 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7806 * tests/actions.at (Exotic Dollars): Use unused values.
7807 * tests/calc.at: Likewise.
7808 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7809 Likewise.
7810
7811 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7812 rule_useful_p.
7813
7814 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7815
7816 Undo 2005-12-01 tentative license wording change. The wording is
7817 still being reviewed by the lawyers, and we don't want to wait for
7818 them before publishing a test release. For now, revert to the
7819 previous wording.
7820 * NEWS: Undo 2005-12-01 change.
7821 * data/glr.c: Revert to previous license wording.
7822 * data/glr.cc: Likewise.
7823 * data/lalr1.cc: Likewise.
7824 * data/location.cc: Likewise.
7825 * data/yacc.c: Likewise.
7826
7827 * NEWS: Reword %destructor vs YYABORT etc.
7828 * data/glr.c: Use American spacing, for consistency.
7829 * data/glr.cc: Likewise.
7830 * data/lalr1.cc: Likewise.
7831 * data/yacc.c: Likewise.
7832 * data/yacc.c: Reformat comments slightly.
7833 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7834 for consistency. Fix some spelling errors and reword recently-included
7835 text slightly.
7836 * tests/cxx-type.at: Cast results of malloc, for C++.
7837
7838 2005-12-21 Joel E. Denny <address@hidden>
7839
7840 * tests/cxx-type.at: Construct a tree, count the parents of shared
7841 nodes, and free each node once and only once. Previously, the memory
7842 for semantic values was leaked instead.
7843
7844 2005-12-21 Joel E. Denny <address@hidden>
7845
7846 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7847 (yylval, yylloc): If pure, #define to yystackp->yyval and
7848 yystackp->yyloc similar to yychar and yynerrs.
7849 (yyparse): If pure, remove local yylval and yylloc. Add local
7850 yystackp to accommodate pure definitions of yylval and yylloc.
7851 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7852 yylvalp and yyllocp to &yylval and &yylloc.
7853 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7854 namespace. Previously, nerrs and char were missing, but lval and lloc
7855 weren't necessary.
7856 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7857 yylvalp and yyllocp parameters since, if pure, these are now always
7858 accessible through yystackp. If not pure, they are still accessible
7859 globally.
7860 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7861 `if (YYID (N))' to pacify lint.
7862
7863 2005-12-21 Akim Demaille <akim@epita.fr>
7864
7865 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7866 destroy the RHS symbols of a rule.
7867 * data/yacc.c (yylen): Initialize to 0.
7868 Keep its value to the number of items to possibly shift.
7869 In particular, a regular successful parse that ends on YYFINAL by
7870 a (internal) YYACCEPT must not have yylen != 0.
7871 (yyerrorlab, yyreturn): Pop the RHS.
7872 Reorder a bit to emphasize the `shifting' bits of code.
7873 (YYPOPSTACK): Now accept a number of items to pop.
7874 * data/lalr1.cc: Likewise.
7875 * data/glr.c: Formatting changes.
7876 Use goto instead of fall through.
7877 * doc/bison.texinfo (Destructor Decl): Complete.
7878
7879 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7880
7881 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7882 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7883 * djgpp/config.bat: Replace every occurence of the file name
7884 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7885 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7886 * djgpp/config.sed: Replace every occurence of the file name
7887 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7888 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7889 * djgpp/djunpack.bat: DJGPP specific file.
7890 * djgpp/fnchange.lst: DJGPP specific file.
7891 * djgpp/README.in: Add new information about how to unpack the bison
7892 source on MSDOS and other systems which have 8.3 file name restrictions
7893 using djunpack.bat and fnchange.lst.
7894
7895 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7896
7897 * bootstrap (build_cvs_prefix): Remove; unused.
7898 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7899 when getting gnulib.
7900
7901 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7902
7903 * data/glr.c: Reorder typedef declarations for structs to match order
7904 of struct declarations.
7905 Rename yystack everywhere to yystackp except in yyparse where it's not
7906 a pointer.
7907 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7908 consistency.
7909 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7910 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7911 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7912 lint.
7913
7914 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7915
7916 * tests/sets.at (Accept): Fix typos in regular expression used to
7917 sed out the final state number.
7918
7919 Work around portability problem on Solaris 10: flex-generated
7920 files include <stdio.h> before <config.h>, which messes up
7921 because the latter defines __EXTENSIONS__. Address the problem
7922 by creating two new little files that include <config.h> first,
7923 then include the flex-generated files. Rewrite everyone else
7924 to include <config.h> first, as well.
7925 * lib/timevar.c: Always include "config.h".
7926 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7927 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7928 (EXTRA_bison_SOURCES): New macro.
7929 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7930 * src/system.h: Don't include config.h.
7931 * src/LR0.c: Include <config.h> first.
7932 * src/assoc.c: Likewise.
7933 * src/closure.c: Likewise.
7934 * src/complain.c: Likewise.
7935 * src/conflicts.c: Likewise.
7936 * src/derives.c: Likewise.
7937 * src/files.c: Likewise.
7938 * src/getargs.c: Likewise.
7939 * src/gram.c: Likewise.
7940 * src/lalr.c: Likewise.
7941 * src/location.c: Likewise.
7942 * src/main.c: Likewise.
7943 * src/muscle_tab.c: Likewise.
7944 * src/nullable.c: Likewise.
7945 * src/output.c: Likewise.
7946 * src/parse-gram.y: Likewise.
7947 * src/print.c: Likewise.
7948 * src/print_graph.c: Likewise.
7949 * src/reader.c: Likewise.
7950 * src/reduce.c: Likewise.
7951 * src/relation.c: Likewise.
7952 * src/state.c: Likewise.
7953 * src/symlist.c: Likewise.
7954 * src/symtab.c: Likewise.
7955 * src/tables.c: Likewise.
7956 * src/uniqstr.c: Likewise.
7957 * src/vcg.c: Likewise.
7958
7959 * src/parse-gram.y: Fix minor problems uncovered by lint.
7960 (current_lhs, current_lhs_location): Now static.
7961 (current_assoc): Remove unused variable.
7962
7963 Cleanups so that Bison-generated parsers have less lint.
7964 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7965 Prepend /*ARGSUSED*/, for lint's sake.
7966 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7967 definition if 'lint' is defined.
7968 (YYID): New macro (or function, if lint).
7969 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7970 * data/yacc.c: Likewise.
7971 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7972 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7973 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7974 is C++ only.
7975 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7976 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7977 Use YYID(0) rather than 0, for lint.
7978 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7979 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7980
7981 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7982
7983 * tests/glr-regression.at
7984 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7985 Close memory leak reported by twlevo.
7986
7987 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7988
7989 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7990 all stacks.
7991 (yyparse): Iterate another stack in order to call user destructors.
7992 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7993 New test case.
7994 (Duplicated user destructor for lookahead): This test now is expected
7995 to succeed.
7996
7997 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7998
7999 * NEWS: Document the following change.
8000 * data/yacc.c: Say "parser skeleton" rather than "file", since
8001 it's no longer just a file.
8002 * data/glr.c: Grant a special exception for C GLR parsers, that
8003 reads like the already-existing exception for C LALR(1) parsers.
8004 * data/glr.cc: Likewise.
8005 * data/lalr1.cc: Likewise.
8006 * data/location.cc: Likewise.
8007 * data/yacc.c: Reword the "written by" statement to clarify that
8008 it was the parser skeleton, not the entire output file.
8009 * data/glr.c: Written by Paul Hilfinger.
8010 * data/glr.cc: Written by Akim Demaille.
8011 * data/lalr1.cc: Likewise.
8012
8013 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
8014
8015 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
8016 Fix typos in previous change that broke 'make check'.
8017 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
8018 supported in C.
8019 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
8020 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
8021 We can revert this once things settle down.
8022
8023 * src/conflicts.c (conflicts_print): Don't print file name twice
8024 when %expect fails because there were no conflicts.
8025 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
8026 change.
8027 * tests/conflicts.at (%expect not enough, %expect too much):
8028 (%expect with reduce conflicts): Adjust to new behavior.
8029
8030 2005-11-18 Akim Demaille <akim@epita.fr>
8031
8032 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
8033 errors.
8034 * NEWS: Document this.
8035 * doc/bison.texinfo (Expect Decl): Likewise.
8036
8037 2005-11-16 Akim Demaille <akim@epita.fr>
8038
8039 Generalize the display of semantic values and locations in traces.
8040 * data/glr.c (yy_reduce_print): Fix indices (again).
8041 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
8042 literal integers.
8043 * data/lalr1.cc (yyreduce_print): Rename as...
8044 (yy_reduce_print): this.
8045 Display values and locations.
8046 * data/yacc.c (yy_reduce_print): Likewise.
8047 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
8048 (yysymprint): Move higher to be visible from yy_reduce_print).
8049 (yyparse): Adjust.
8050 * tests/calc.at: Adjust the expected length of the traces.
8051
8052 2005-11-14 Akim Demaille <akim@epita.fr>
8053
8054 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
8055 from 1 to N, while values and location start at 0.
8056 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
8057
8058 2005-11-14 Akim Demaille <akim@epita.fr>
8059
8060 * data/glr.c (yy_reduce_print): Fix the $ number.
8061
8062 2005-11-14 Akim Demaille <akim@epita.fr>
8063
8064 "Use" parse parameters.
8065 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
8066 * data/glr.c, data/glr.cc: Use them.
8067 * data/glr.c (YYUSE): Have a C++ definition that supports
8068 non-pointer types.
8069
8070 2005-11-14 Akim Demaille <akim@epita.fr>
8071
8072 * data/glr.c (yyexpandGLRStack): Declare only if defined.
8073
8074 2005-11-14 Akim Demaille <akim@epita.fr>
8075
8076 * data/glr.cc: New.
8077 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
8078
8079 2005-11-12 Akim Demaille <akim@epita.fr>
8080
8081 Let position and location be PODs.
8082 * data/location.cc (position::initialize, location::initialize): New.
8083 (position::position, location::location): Define only if
8084 b4_location_constructors is defined.
8085 * data/lalr1.cc (b4_location_constructors): Define it for backward
8086 compatibility.
8087 * doc/bison.texinfo (Initial Action Decl): Use initialize.
8088
8089 2005-11-12 Akim Demaille <akim@epita.fr>
8090
8091 * data/lalr1.cc: Move the body of the ctor and dtor into the
8092 parser file (instead of the header).
8093 Wrap the implementations in a "namespace yy".
8094
8095 2005-11-12 Akim Demaille <akim@epita.fr>
8096
8097 Have glr.c include its header file when created.
8098 * data/glr.c (b4_shared_declarations): New.
8099 Output them verbatim in the parser if !%defines, otherwise
8100 output then in the header file, and include it instead.
8101
8102 2005-11-11 Akim Demaille <akim@epita.fr>
8103
8104 * data/glr.c: Comment changes.
8105
8106 2005-11-11 Akim Demaille <akim@epita.fr>
8107
8108 When yydebug, report semantic and location values for reductions.
8109 * data/glr.c (yy_reduce_print): Report the semantic values and the
8110 locations.
8111 (YY_REDUCE_PRINT): Adjust.
8112 (yyglrReduce): Use them.
8113 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
8114 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
8115 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
8116 traces.
8117
8118 2005-11-10 Akim Demaille <akim@epita.fr>
8119
8120 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
8121 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
8122 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
8123
8124 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
8125
8126 * m4/cxx.m4, examples/Makefile.am: Don't build
8127 examples/calc++ if no C++ compiler is available. (trivial change)
8128
8129 2005-11-09 Akim Demaille <akim@epita.fr>
8130
8131 * src/scan-skel.l: Use a couple of asserts.
8132
8133 2005-11-03 Akim Demaille <akim@epita.fr>
8134
8135 In some (weird) cases, the final state number is incorrect.
8136 Reported by Alexandre Duret-Lutz.
8137 * src/LR0.c (state_list_append): Remove the computation of
8138 final_state.
8139 (save_reductions): Do it here.
8140 (get_state): Alpha conversion.
8141 (generate_states): Use a for loop.
8142 * src/gram.h (item_number_is_rule_number)
8143 (item_number_is_symbol_number): New.
8144 * src/state.c: Use assert.
8145 * src/system.h: Include assert.h.
8146 * tests/sets.at (Accept): New.
8147
8148 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8149
8150 * data/glr.c (yyfill): Adjust comment.
8151 (yyresolveAction): Initialize default location properly
8152 for empty right-hand sides.
8153 (yydoAction): Ditto.
8154 Add comment explaining apparently dead code.
8155 * tests/glr-regression.at
8156 (Incorrectly initialized location for empty right-hand side in GLR):
8157 New test.
8158
8159 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
8160
8161 * bootstrap (cleanup_gnulib): New function. Use it to clean up
8162 gnulib when interrupted. This fixes some race conditions and
8163 works around some portability problems (one noted by Paul
8164 Hilfinger).
8165
8166 2005-10-22 Akim <akim@epita.fr>
8167
8168 * Makefile.cfg: Adjust to config -> build-aux.
8169 Reported by twledo.
8170
8171 2005-10-21 Akim Demaille <akim@epita.fr>
8172
8173 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
8174 the %parse-params.
8175 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
8176 * data/yacc.c (b4_Pure_if): Rename as...
8177 (b4_yacc_pure_if): this.
8178 (YY_SYMBOL_PRINT, yyparse): Adjust.
8179 * doc/bison.texinfo: Formatting changes.
8180
8181 2005-10-21 Akim Demaille <akim@epita.fr>
8182
8183 Finish the transition config -> build-aux.
8184 * configure.ac, Makefile.am: Use build-aux.
8185 * config/prev-version, config/announce-gen, config/Makefile.am:
8186 Move to...
8187 * build-aux/prev-version, build-aux/announce-gen,
8188 * build-aux/Makefile.am: here.
8189
8190 2005-10-14 Akim Demaille <akim@epita.fr>
8191
8192 * examples/calc++/test: Use set -x only when VERBOSE.
8193
8194 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
8195
8196 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
8197 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
8198
8199 2005-10-13 Akim Demaille <akim@epita.fr>
8200
8201 * src/scan-skel.l: Output the base name parts of the parser and
8202 header file names.
8203 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
8204 additional checks.
8205 Use this to exercise C++ outputs in subdirs.
8206 Reported by Oleg Smolsky.
8207
8208 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
8209
8210 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
8211 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
8212 Problem reported by John P. Hartmann.
8213 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
8214 already defined it.
8215
8216 2005-10-12 Akim Demaille <akim@epita.fr>
8217
8218 * src/parse-gram.y (version_check): Exit 63 to please missing
8219 (stands for "version mismatch).
8220 * tests/input.at, doc/bison.texinfo: Adjust.
8221
8222 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
8223
8224 Work around portability problems with Visual Age C compiler
8225 (xlc and xlC_r) reported by John P. Hartmann.
8226 * data/location.cc (initial_column, initial_line): Remove.
8227 All uses replaced by 0 and 1.
8228 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
8229 that xlc complains about.
8230 * src/scan-skel.l (skel_wrap): Likewise.
8231 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
8232 as __STDC__.
8233 * data/yacc.c (YYMODERN_C): New macro, which also looks at
8234 __STDC_VERSION__. Use it everywhere instead of looking at
8235 __STDC__ and __cplusplus.
8236
8237 2005-10-10 Akim Demaille <akim@epita.fr>
8238
8239 * examples/calc++/test: Be quiet unless VERBOSE.
8240
8241 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
8242
8243 * data/c.m4 (yydestruct, yysymprint):
8244 Use YYUSE instead of casting to void.
8245 * data/glr.c (YYUSE): New macro.
8246 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
8247 Use it instead of rolling our own.
8248 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
8249 (YYCHK1):
8250 Use /*CONSTCOND*/ to suppress lint warnings.
8251 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
8252 (YY_STACK_PRINT): Use 'false' not '0'.
8253 (YYUSE): New macro.
8254 (yysymprint_, yydestruct_): Use it instead of rolling our own.
8255 * data/yacc.c (YYUSE): New macro.
8256 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
8257 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
8258 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
8259
8260
8261 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
8262 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
8263
8264 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
8265
8266 Undo the parts of the unlocked-I/O change that substituted
8267 putc or puts for printf. This might hurt performance a bit,
8268 but some people prefer the printf style.
8269 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
8270 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
8271 All uses replaced by YYFPRINTF and YYDPRINTF.
8272 * data/yacc.c: Likewise.
8273 * lib/bitset.c (bitset_print): Likewise.
8274 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
8275 putc and puts.
8276 * lib/lbitset.c (debug_lbitset): Likewise.
8277 * src/closure.c (print_firsts, print_fderives): Likewise.
8278 * src/gram.c (grammar_dump): Likewise.
8279 * src/lalr.c (look_ahead_tokens_print): Likewise.
8280 * src/output.c (escaped_output): Likewise.
8281 (user_actions_output): Break apart two printfs.
8282 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
8283 * src/reduce.c (reduce_print): Likewise.
8284 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
8285 * src/system.h: Include unlocked-io.h rathe than stdio.h.
8286
8287 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
8288 Use assignments rather than casts-to-void to suppress
8289 unused-variable warnings. This pacifies 'lint'.
8290 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
8291 unused-variable warnings.
8292
8293 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8294
8295 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
8296
8297 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
8298
8299 Use unlocked I/O for a minor performance improvement on hosts like
8300 GNU/Linux and Solaris that support unlocked I/O. The basic idea
8301 is to use the gnlib unlocked-io module, and to prefer putc and
8302 puts to printf when either will work (since the latter doesn't
8303 come in an unlocked flavor).
8304 * bootstrap (gnulib_modules): Add unlocked-io.
8305 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
8306 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
8307 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
8308 and similarly for puts and putc and printf.
8309 * data/yacc.c: Likewise.
8310 * lib/bitset.c (bitset_print): Likewise.
8311 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
8312 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
8313 to printf.
8314 * lib/lbitset.c (debug_lbitset): Likewise.
8315 * src/closure.c (print_firsts, print_fderives): Likewise.
8316 * src/gram.c (grammar_dump): Likewise.
8317 * src/lalr.c (look_ahead_tokens_print): Likewise.
8318 * src/output.c (escaped_output): Likewise.
8319 (user_actions_output): Coalesce two printfs.
8320 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
8321 * src/reduce.c (reduce_print): Likewise.
8322 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
8323 * src/system.h: Include unlocked-io.h rather than stdio.h.
8324
8325 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
8326 this confuses xgettext.
8327
8328 2005-10-02 Akim Demaille <akim@epita.fr>
8329
8330 * bootstrap (gnulib_modules): Add strverscmp.
8331 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
8332 * m4/.cvsignore: Add strverscmp.m4.
8333 * src/parse-gram.y (%require): New token, new rule.
8334 (version_check): New.
8335 * src/scan-gram.l (%require): Adjust.
8336 * tests/input.at (AT_REQUIRE): New.
8337 Use it.
8338 * doc/bison.texinfo (Require Decl): New.
8339 (Calc++ Parser): Use %require.
8340
8341 2005-10-02 Akim Demaille <akim@epita.fr>
8342
8343 * data/location.cc: New.
8344
8345 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
8346 Akim Demaille <akim@epita.fr>
8347
8348 Make sure -odir/foo.cc creates dir/location.hh etc.
8349 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
8350 (spec_file_prefix, spec_verbose_file, spec_graph_file)
8351 (spec_defines_file): Now const.
8352 (dir_prefix): New.
8353 (short_base_name): Remove.
8354 * src/files.c: Adjust.
8355 (dirname.h): Include.
8356 (base_name): Don't prototype it.
8357 (finput): Remove, duplicates gram_in.
8358 (full_base_name, short_base_name): Replace by...
8359 (all_but_ext, all_but_tab_ext): these.
8360 (compute_base_names): Rename as...
8361 (compute_file_name_parts): this.
8362 Update to compute the new variables, including dir_prefix.
8363 Adjust dependencies.
8364 * src/output.c (prepare): Output them.
8365 * src/reader.c: Adjust to use gram_in, not finput.
8366 * src/scan-skel.l (@dir_prefix@): New.
8367
8368 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8369
8370 * lib/subpipe.c: New function end_of_output_subpipe() added
8371 to allow support for non-posix systems. This is a no-op function
8372 for posix systems.
8373
8374 * lib/subpipe.h: New function end_of_output_subpipe() added
8375 to allow support for non-posix systems. This is a no-op function
8376 for posix systems.
8377
8378 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
8379 handle the lack of pipe/fork functionality on non-posix systems.
8380
8381 * djgpp/Makefile.maint: DJGPP specific file.
8382
8383 * djgpp/README.in: DJGPP specific file.
8384
8385 * djgpp/config.bat: DJGPP specific configuration file.
8386
8387 * djgpp/config.sed: DJGPP specific configuration file.
8388
8389 * djgpp/config.site: DJGPP specific configuration file.
8390
8391 * djgpp/config_h.sed: DJGPP specific configuration file.
8392
8393 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
8394
8395 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
8396
8397 2005-10-02 Akim Demaille <akim@epita.fr>
8398
8399 * data/location.cc: New, extract from...
8400 * data/lalr1.cc: here.
8401 (location.hh): Include it after the user prologue, in case the
8402 filename type is defined by the user.
8403 Forward declation location and position before the pre-prologue.
8404 (yyresult_): Rename as...
8405 (yyresult): this, it's a local variable, not an attribute.
8406 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
8407
8408 2005-10-01 Akim Demaille <akim@epita.fr>
8409
8410 * examples/extexi: Restore the #line generation.
8411
8412 2005-09-30 Akim Demaille <akim@epita.fr>,
8413 Alexandre Duret-Lutz <adl@gnu.org>
8414
8415 Move the token type and YYSTYPE in the parser class.
8416 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
8417 (parser::token): New, from the moved free definition of tokens.
8418 (parser::semantic_value): Now a full definition instead of an
8419 indirection to YYSTYPE.
8420 (b4_post_prologue): No longer included in the header file, but
8421 in the implementation file.
8422 * doc/bison.texi (C+ Language Interface): Update.
8423 * src/parse-gram.y: Support unary %define.
8424 * tests/actions.at: Define global_tokens_and_yystype for backward
8425 compatibility until we update the tests.
8426 * tests/calc.at: Idem.
8427 (first_line, first_column, last_line, last_column): Define for lalr1.cc
8428 to simplify the code.
8429
8430 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
8431
8432 Port to SunOS 4.1.4, which lacks strtoul and strerror.
8433 Ah, the good old days! Problem reported by Peter Klein.
8434 * bootstrap (gnulib_modules): Add strerror, strtoul.
8435 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
8436 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
8437
8438 2005-09-29 Akim Demaille <akim@epita.fr>
8439
8440 * data/c.m4 (b4_error_verbose_if): New.
8441 * data/lalr1.cc: Use it.
8442 (YYERROR_VERBOSE_IF): Remove.
8443 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
8444 parser members, replaced by...
8445 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
8446 local variables.
8447 (yysyntax_error_): Takes the state number as argument.
8448 (yyreduce_print_): Use the argument yyrule, not the former
8449 attribute yyn_.
8450
8451 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
8452
8453 * bootstrap (gnulib_modules): Add verify.
8454 * lib/.cvsignore: Add verify.h.
8455 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
8456 * src/system.h (verify): Remove.
8457 Include verify.h instead.
8458 * src/tables.c (tables_generate): Use new API for 'verify'.
8459
8460 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
8461
8462 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
8463 local variables whose names begin with 'yy'.
8464 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
8465 Trivial changes from Joel E. Denny.
8466
8467 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
8468 it itself.
8469 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
8470 don't use alloca any more.
8471
8472 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
8473 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
8474 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
8475 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
8476 to match yacc.c, to test more hosts.
8477
8478 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
8479
8480 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
8481 doesn't affect behavior.
8482 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
8483 Solaris, AIX, MSC.
8484 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
8485 This works a bit better with glibc, if user code has already included
8486 stdlib.h.
8487 * doc/bison.texinfo (Bison Parser): Document that users can't
8488 arbitrarily use malloc and free for other purposes. Document
8489 that <alloca.h> and <malloc.h> might be included.
8490 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
8491 user must declare alloca.
8492
8493 * HACKING (release): Forwarn the Translation Project about
8494 stable releses.
8495
8496 2005-09-20 Akim Demaille <akim@epita.fr>
8497
8498 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
8499
8500 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
8501
8502 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
8503 (YYSTACK_ALLOC_MAXIMUM): Use it.
8504 (yysyntax_error): New function.
8505 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
8506 multiple syntax errors are reported, and alloca is being used.
8507 Instead, reallocate buffers twice as big each time, so that
8508 we waste at most half the allocated memory. Start with a small
8509 (128-byte) buffer that will suffice in most cases anyway.
8510 Use yysyntax_error to do most of the work.
8511
8512 * doc/bison.texinfo (Error Reporting, Table of Symbols):
8513 yynerrs is the number of errors reported, not the number of
8514 errors encountered.
8515
8516 * tests/glr-regression.at (Duplicated user destructor for lookahead):
8517 Mark it as expected to fail.
8518 Cast result of malloc; problem reported by twlevo@xs4all.nl.
8519 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
8520 Don't start user-code symbols with "yy", to avoid name space problems.
8521
8522 2005-09-19 Akim Demaille <akim@epita.fr>
8523
8524 Remove the traits, failed experiment.
8525 It never proved useful, and anyway because of the current
8526 definition, it was not possible to have several specialization of
8527 this traits, making it useless.
8528 * data/lalr1.cc (yy:traits): Remove.
8529 Inline its definitions in the parser class.
8530
8531 2005-09-19 Akim Demaille <akim@epita.fr>
8532
8533 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
8534 least Mac OSX with a /usr/local install of gettext.
8535
8536 2005-09-19 Akim Demaille <akim@epita.fr>
8537
8538 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
8539 and yytoken for similarity with the other skeletons.
8540
8541 2005-09-19 Akim Demaille <akim@epita.fr>
8542
8543 * NEWS, configure.ac: update version number to 2.1a.
8544
8545 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
8546
8547 * NEWS: Version 2.1.
8548
8549 * NEWS: Remove notice of yytname change, since it was never in an
8550 official release.
8551 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
8552 diagnostic.
8553 * src/output.c (prepare): Likewise.
8554 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
8555 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
8556 is not defined. This is an awful hack, but it's enough for now.
8557 All callers changed.
8558 * tests/glr-regression-at (make_value): Args are const pointers now,
8559 to avoid GCC warning.
8560 (Duplicated user destructor for lookahead): New test. Currently
8561 skipped. It fails on my host but I'm not sure it'll always fail.
8562
8563 2005-09-16 Akim Demaille <akim@epita.fr>
8564
8565 * src/symtab.h (struct symbol): Declare the printer and destructor
8566 as const, to avoid accidental calls to free.
8567 (symbol_destructor_set, symbol_printer_set): Adjust.
8568 * src/symtab.c: Adjust.
8569
8570 2005-09-16 Akim Demaille <akim@epita.fr>
8571
8572 * data/c.m4 (b4_token_enums): New.
8573 (b4_token_defines): Rename as...
8574 (b4_token_enums_defines): this.
8575 (b4_token_defines): New, output only the #defines.
8576 * data/yacc.c, data/glr.c: Adjust.
8577 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
8578 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
8579 as default values.
8580
8581 2005-09-16 Akim Demaille <akim@epita.fr>
8582
8583 * data/lalr1.cc (yylex_): Remove, inline its code.
8584 (yyreport_syntax_error_): Remove, replaced by...
8585 (yysyntax_error_): this which returns a string and leaves to the
8586 caller the call to the users' error function.
8587 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
8588 Move from members of the parser object...
8589 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
8590 to local variables of the parse function.
8591
8592 2005-09-16 Akim Demaille <akim@epita.fr>
8593
8594 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
8595 since it's in Bison's name space.
8596
8597 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
8598
8599 * data/glr.c (yyresolveValue): Add default case to pacify
8600 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
8601
8602 * NEWS: Document when yyparse started to return 2.
8603 * doc/bison.texinfo (Parser Function): Document when yyparse
8604 returns 2.
8605
8606 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
8607 (b4_filename_type): Renamed back from b4_file_name_type. All uses
8608 changed.
8609 (class position): file_name -> filename (reverting). All uses changed.
8610
8611 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
8612
8613 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
8614 do anything if $@ exists. This reverts part of the 2005-07-07
8615 patch.
8616
8617 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
8618
8619 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
8620 contains obsolete information and isn't worth distributing as a
8621 separate file anyway.
8622 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
8623 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
8624 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
8625 (yyparse): Abort if user code uses longjmp to throw an unexpected
8626 value.
8627
8628 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
8629
8630 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
8631 Suggested by twlevo@xs4all.nl.
8632
8633 * data/glr.c (YYCHK1): Do not assume YYE is in range.
8634 This avoids a diagnostic from gcc -Wswitch-enum.
8635 Problem reported by twlevo@xs4all.nl.
8636
8637 * doc/bison.texinfo: Don't use "filename", as per GNU coding
8638 standards. Use "file name" or "file" or "name", depending on
8639 the context.
8640 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
8641 not to hack/foo.tab.c.
8642 (Calc++ Top Level): 2nd arg of main is not const.
8643 * data/glr.c: b4_filename -> b4_file_name.
8644 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
8645 All uses changed.
8646 (class position): filename -> file_name. All uses changed.
8647 * data/yacc.c: b4_filename -> b4_file_name.
8648 * lib/bitset.h: filename -> file_name in local vars.
8649 * lib/bitset_stats.c: Likewise.
8650 * src/files.c: Likewise.
8651 * src/scan-skel.l ("@output ".*\n): Likewise.
8652 * src/files.c (file_name_split): Renamed from filename_split.
8653 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
8654
8655 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8656
8657 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8658 to accommodate latest gnulib.
8659
8660 * tests/glr-regression.at (Duplicate representation of merged trees):
8661 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8662
8663 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8664 needed.
8665
8666 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8667
8668 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8669 All uses changed. Invoke user destructor after an error during a
8670 split parse (trivial change from Joel E. Denny).
8671
8672 * tests/glr-regression.at
8673 (User destructor after an error during a split parse): New test case.
8674 Problem reported by Joel E. Denny in:
8675 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8676
8677 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8678
8679 * README-cvs: Give URLs for recommended tools.
8680 Mention Gzip version problem, and bootstrapping issues.
8681 Remove troubleshooting section, as it's somewhat obsolete.
8682
8683 * bootstrap (no_cache): New var, to accommodate different wget
8684 variants. Use it instead of '-C off'. Problem reported by
8685 twlevo@xs4all.nl.
8686
8687 * data/glr.c (yydestroyStackItem): New function.
8688 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8689 debugging information. Problem reported by Joel E. Denny.
8690
8691 2005-08-25 Akim Demaille <akim@epita.fr>
8692
8693 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8694
8695 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8696
8697 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8698 Don't invoke destructor on unresolved entries.
8699 * tests/glr-regression.at
8700 (User destructor for unresolved GLR semantic value): New test case.
8701 Problem reported by Joel E. Denny in:
8702 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8703
8704 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8705
8706 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8707 Add strnlen.c.
8708 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8709 lib-prefix.m4, po.m4.
8710
8711 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8712 in yydestruct diagnostic, since it might not be an error.
8713 Problem reported by Joel Denny near end of
8714 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8715 * data/lalr1.cc (yyerturn): Likewise.
8716 * data/yacc.c (yyreturn): Likewise.
8717 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8718
8719 * src/files.c: Remove obsolete FIXME comment.
8720
8721 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8722 with the other templates, and to fix bogus run-on messages such
8723 as the one reported at the end of
8724 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8725 All callers changed to avoid the newline.
8726 (yyprocessOneStack): Output two lines rather than one, to accommodate
8727 the above change. This changes the debug output format slightly.
8728
8729 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8730 reported by Joel E. Denny in
8731 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8732 (trivial change).
8733 * tests/glr-regression.at (Duplicate representation of merged trees):
8734 New test, from Joel E. Denny in:
8735 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8736 * THANKS: Add Joel E. Denny.
8737
8738 * configure.ac (AC_INIT): Bump to 2.0c.
8739
8740 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8741
8742 * NEWS: Version 2.0b.
8743
8744 * Makefile.am (SUBDIRS): Put examples before tests, so that
8745 "make check" doesn't finish with "All 1 tests passed".
8746
8747 * tests/regression.at (Token definitions): Don't rely on
8748 AT_PARSER_CHECK for data that contains backslashes. It currently
8749 uses 'echo', and 'echo' isn't portable if its argument contains
8750 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8751 that the byte '\0xff' is not printable in the C locale; it is,
8752 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8753 not printable, so use '\0x81' to test.
8754
8755 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8756 version of GCC, since the macro is used with non-GCC compilers.
8757
8758 Fix core dump reported by Pablo De Napoli in
8759 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8760 * tests/regression.at (Invalid inputs with {}): New test.
8761 * src/parse-gram.y (token_name): Translate type before using
8762 it as an index.
8763
8764 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8765 the user's name space. All uses changed to __attribute__
8766 ((__unused__)).
8767 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8768 Add __attribute__ ((__noreturn__)).
8769
8770 * etc/clcommit: Remove. We weren't using it, and it failed
8771 "make maintainer-distcheck".
8772 * Makefile.maint: Merge from coreutils.
8773 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8774 (syntax-check-rules): Change list of rules as described below.
8775 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8776 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8777 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8778 (sc_trailing_space): New rules.
8779 (sc_xalloc_h_in_src): Remove.
8780 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8781 (sc_space_tab, sc_error_exit_success, sc_changelog):
8782 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8783 (makefile-check, po-check, author_mark_check):
8784 (makefile_path_separator_check, copyright-check):
8785 Use grep -n, to make it easier to find violations.
8786 Use CVS_LIST and CVS_LIST_EXCEPT.
8787 (header_regexp, h_re): Remove.
8788 (dd_c): New macro.
8789 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8790 (my-distcheck): Use more-modern GCC flags.
8791 (signatures, %.asc): Remove.
8792 (rel-files, announcement): Remove signatures.
8793 Restore old updating code, even though we don't use it, so
8794 that we're the same as coreutils.
8795 (alpha, beta, major): Depend on news-date-check.
8796 Make the upload commands.
8797
8798 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8799 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8800 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8801 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8802 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8803 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8804 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8805 * tests/sets.at: Likewise.
8806
8807 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8808 we comment out the Autoconf version number.
8809 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8810 it's error-prone and "make maintainer-distcheck" rejects it.
8811
8812 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8813 Indent calls to "error" to pacify "make maintainer-distcheck",
8814 when the calls are not intended to be translated.
8815 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8816
8817 * src/Makefile.am (DEFS): Use +=, to pacify
8818 "make maintainer-distcheck".
8819 (bison_SOURCES): Add scan-skel.h.
8820 (sc_tight_scope): New rule, from coreutils.
8821
8822 * src/files.c (src_extension, header_extension):
8823 Now static, not extern.
8824 * src/getargs.c (short_options): Likewise.
8825 * src/muscle_tab.c (muscle_table): Likewise.
8826 * src/parse-gram.y (current_class, current_type, current_prec):
8827 Likewise.
8828 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8829 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8830 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8831 void, to avoid warning when NLS is disabled.
8832 * src/output.c: Include scan-skel.h.
8833 (scan_skel): Remove decl, since scan-skel.h does this.
8834 (output_skeleton):
8835 Indent calls to "error" to pacify "make maintainer-distcheck".
8836 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8837 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8838 "make maintainer-distcheck".
8839 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8840 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8841 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8842 (skel_lex_destroy, scan_skel): Move these decls to...
8843 * src/scan-skel.h: New file.
8844 * src/uniqstr.c (uniqstr_assert):
8845 Indent calls to "error" to pacify "make maintainer-distcheck".
8846
8847 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8848 not @VAR@.
8849
8850 * tests/torture.at: Revamp to avoid misuse of atoi that
8851 "make maintainer-distcheck" complained about.
8852
8853 * examples/extexi (message): Don't print a message more than once,
8854 and omit line-number decoration that makes Emacs compile think
8855 that informative messages are worth worrying about.
8856
8857 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8858
8859 * configure.ac: Update version number.
8860
8861 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8862 accidentally.
8863 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8864 autogenerated by the maintainer.
8865 * examples/calc++/.cvsignore: Add *.yy.
8866
8867 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8868 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8869 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8870
8871 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8872
8873 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8874 from maintainer-distcheck about casting the argument of 'free'.
8875
8876 * NEWS: Mention recent yytname changes.
8877 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8878
8879 * bootstrap: For translations that have not yet been upgraded to
8880 the new runtime-po domain, prime the pump by extracting the
8881 relevant strings from the obsolete translations. This code can be
8882 removed once the bison-runtime domain has been translated by each
8883 team.
8884
8885 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8886 now that token names are already quoted.
8887
8888 Fix problem reported by Anthony Heading.
8889 * data/glr.c (YYTOKEN_TABLE): New macro.
8890 (yytname): Define if YYTOKEN_TABLE.
8891 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8892 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8893 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8894 * src/output.c (prepare_symbols): Output token_table_flag.
8895
8896 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8897
8898 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8899 again if the first call fails.
8900
8901 * data/glr.c (yytnamerr): New function.
8902 (yyreportSyntaxError): Use it to dequote most string literals.
8903 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8904 with other skeletons. All uses changed.
8905 (yytnameerr_): New function.
8906 (yyreport_syntax_error): Use it to dequote most string literals.
8907 * data/yacc.c (yytnamerr): New function.
8908 (yyerrlab): Use it to decode most string literals.
8909 * doc/bison.texinfo (Decl Summary, Calling Convention):
8910 Clarify quoting convention of yytname.
8911 * src/output.c (prepare_symbols): Quote all names. This undoes
8912 the 2005-04-17 change, which is now accomplished (mostly) via
8913 changes in the parsers as described above.
8914 * tests/regression.at (Token definitions, Web2c Actions):
8915 Undo most 2005-04-17 change here, too.
8916
8917 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8918
8919 Fix more problems reported by twlevo@xs4all.nl.
8920 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8921 remove trailing spaces. This loses the exit status of ./types,
8922 and isn't needed since ./types shouldn't be emitting trailing
8923 spaces.
8924 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8925 as the stack isn't valid in that case.
8926
8927 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8928 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8929 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8930 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8931 is used.
8932 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8933 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8934 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8935 Likewise.
8936
8937 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8938 overly-picky compilers that reject 'char *foo = "bar";'.
8939
8940 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8941 to FILE * parameter, not to stderr. This fixes a typo introduced
8942 in the 2005-07-12 change.
8943
8944 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8945 warnings from GCC 4.
8946
8947 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8948 (yyglrShiftDefer, yysplitStack):
8949 Remove unused parameters b4_pure_formals. All uses changed.
8950 (yyglrShift): Remove unused parameters b4_user_formals.
8951 All uses changed.
8952 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8953
8954 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8955
8956 Destructor cleanups and regularization among the three skeletons.
8957 * NEWS: Document the behavior changes.
8958 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8959 stack before failing, as the cleanup code will do it for us now.
8960 * data/lalr1.cc (yyerrlab): Likewise.
8961 * data/glr.c (yyparse): Pop everything off the stack before
8962 freeing it, so that destructors get called properly.
8963 * data/lalr1.cc (yyreturn): Likewise.
8964 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8965 This is more consistent.
8966 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8967 why destructors might be called. 1.875 -> 2.1.
8968 (Destructor Decl, Decl Summary, Table of Symbols):
8969 Some English-language cleanups for %destructor.
8970 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8971 Add output line for destructor of start symbol.
8972 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8973 because of that same extra output line.
8974
8975 * NEWS: Document minor wording changes in diagnostics of
8976 Bison-generated parsers.
8977 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8978 Remove unused formals. All uses changed.
8979 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8980 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8981 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8982 Rename yyoverflowab to yyexhaustedlab.
8983 When memory exhaustion occurs during syntax-error reporting,
8984 report it separately rather than in a single diagnostic; this
8985 eases translation.
8986 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8987 (Memory Exhausted): Renamed from Parser Stack Overflow.
8988 Revamp wording slightly to prefer "memory exhaustion".
8989 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8990
8991 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8992
8993 Add i18n support to the GLR skeleton. Partially fix the C++
8994 skeleton; a C++ expert needs to finish this. Remove debugging
8995 msgids; there's little point to having them translated, since they
8996 can be understood only by someone who can read the
8997 (English-language) source code.
8998
8999 Generate runtime-po/bison-runtime.pot automatically, so that we
9000 don't have to worry about garbage getting in that file. We'll
9001 make sure after the next official release that old msgids don't
9002 get lost. See
9003 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
9004
9005 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
9006 Now auto-generated.
9007 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
9008 Fix typos in explanations of the runtime file.
9009 * bootstrap: Change gettext keyword from YYI18N to YY_.
9010 Use standard Makefile.in.in in runtime-po, since we'll arrange
9011 for backward-compatible bison-runtime.po files in a different way.
9012 * data/glr.c (YY_): New macro, from yacc.c.
9013 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
9014 Translate messages intended for users.
9015 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
9016 the wording in the other skeletons. We don't know that the memory
9017 is virtual.
9018 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
9019 Use same method that yacc.c uses.
9020 Don't translate debugging messages.
9021 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
9022 it doesn't work (yet), and requires C++ expertise to fix.
9023 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
9024 Move defn to a more logical place, to be consistent with other
9025 skeletons.
9026 Don't translate debugging messages.
9027 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
9028 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
9029 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
9030 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
9031
9032 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
9033 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
9034 void, not int.
9035 * tests/glr-regression.at (Badly Collapsed GLR States):
9036 Likewise.
9037 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9038 yylex should return 0 at EOF rather than aborting.
9039
9040 Improve tests for stack overflow in GLR parser.
9041 Problem reported by twlevo@xs4all.nl.
9042 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
9043 All uses removed.
9044 (yyStackOverflow): Just longjmp, but with value 2 so that caller
9045 can handle the problem.
9046 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
9047 (yyparse): New local variable yyresult to record the result.
9048 Use result of setjmp to set it, rather than storing itinto
9049 struct.
9050 (yyDone): Remove label.
9051 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
9052 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
9053 if YYABORT is used).
9054 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
9055 yyparse status; put status > 1 into diagnostic.
9056 Check that status==2 works.
9057 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
9058 Use exit status 3 for failure to open (which shouldn't happen).
9059
9060 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
9061
9062 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
9063 1 on syntax error; just let yyparse do its thing.
9064 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
9065 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
9066 (Exploding the Stack Size with Alloca):
9067 (Exploding the Stack Size with Malloc):
9068 Expect exit status 2, not 1, since the parser is supposed to blow
9069 its stack. Problem reported by twlevo@xs4all.nl.
9070
9071 * data/glr.c (yyparse): Don't assume that the initial calls
9072 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
9073 Print a stack-overflow message and fail instead.
9074 Initialize the line-number information before creating the stack,
9075 so that the stack-overflow message can report line zero safely.
9076
9077 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
9078
9079 Fix problems reported by twlevo@xs4all.nl.
9080 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
9081 (yyuserMerge): Provide a default case if b4_mergers is empty.
9082 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
9083 * tests/glr-regression.at
9084 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9085 Add casts to pacify C++ compilers.
9086 * tests/glr-regression.at (Improper merging of GLR delayed action
9087 sets): Declare yylex before using it.
9088 * tests/Makefile.am (maintainer-check-g++): Fix a stray
9089 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
9090 test for valgrind; valgrind is independent of g++.
9091 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
9092 for compatibility with POSIX 1003.1-2001 (if running coreutils).
9093 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
9094 Use a destructor, so that we can expand the stack. Change
9095 YYSTYPE to char * so that we can free it. Cast result of malloc.
9096
9097 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9098
9099 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
9100 a valgrind failure. Problem reported by twlevo@xs4all.nl.
9101
9102 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
9103
9104 * PACKAGING: New file, suggested by Bruno Haible and taken from
9105 similar wording in gettext's PACKAGING file.
9106 * NEWS: Mention PACKAGING.
9107 * Makefile.am (EXTRA_DIST): Add PACKAGING.
9108
9109 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
9110
9111 * NEWS: Document recent i18n improvements.
9112 * bootstrap: Get runtime translations into runtime-po.
9113 Create runtime-po files automatically, if possible.
9114 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
9115 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
9116 does not infringe on the user's name space.
9117 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
9118 * doc/bison.texinfo (Internationalization): Revamp the English
9119 and Texinfo syntax a bit, to try to make it clearer.
9120 (Bison Options, Option Cross Key): Mention --print-localedir.
9121 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
9122 YYENABLE_NLS. Quote a bit more.
9123 * runtime-po/.cvsignore: New file.
9124 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
9125 * runtime-po/Rules-quot: Remove; now created by bootstrap.
9126 * runtime-po/quot.sed: Likewise.
9127 * runtime-po/boldquot.sed: Likewise.
9128 * runtime-po/en@quot.header: Likewise.
9129 * runtime-po/en@boldquot.header: Likewise.
9130 * runtime-po/insert-header.sin: Likewise.
9131 * runtime-po/remove-potcdate.sin: Likewise.
9132 * runtime-po/Makevars: Likewise.
9133 * runtime-po/LINGUAS: Likewise.
9134 * runtime-po/de.po: Likewise; we will rely on the translation project
9135 to maintain this, so "bootstrap" should get it.
9136 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
9137 its value.
9138 * src/main.c (main): Bind the bison-runtime domain, too.
9139
9140 2005-07-12 Bruno Haible <bruno@clisp.org>
9141
9142 * data/yacc.c: Include <libintl.h> when NLS is enabled.
9143 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
9144 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
9145 * runtime-po: New directory.
9146 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
9147 $(DOMAIN).pot-update rule, so that old messages are never dropped.
9148 * runtime-po/Rules-quot: New file, copied from po/.
9149 * runtime-po/quot.sed: Likewise.
9150 * runtime-po/boldquot.sed: Likewise.
9151 * runtime-po/en@quot.header: Likewise.
9152 * runtime-po/en@boldquot.header: Likewise.
9153 * runtime-po/insert-header.sin: Likewise.
9154 * runtime-po/remove-potcdate.sin: Likewise.
9155 * runtime-po/Makevars: New file.
9156 * runtime-po/POTFILES.in: New file.
9157 * runtime-po/LINGUAS: New file.
9158 * runtime-po/bison-runtime.pot: New file.
9159 * runtime-po/de.po: New file.
9160 * m4/bison.m4: New file.
9161 * Makefile.am (SUBDIRS): Add runtime-po.
9162 (aclocaldir, aclocal_DATA): New variables.
9163 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
9164 Define aclocaldir.
9165 * src/getargs.c (usage): Document --print-localedir option.
9166 (PRINT_LOCALEDIR_OPTION): New enum item.
9167 (long_options): Add --print-localedir option.
9168 (getargs): Handle --print-localedir option.
9169 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
9170 (Internationalization): New section.
9171
9172 2005-07-12 Akim Demaille <akim@epita.fr>
9173
9174 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
9175 for consistency with the rest of the code.
9176 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
9177 Add separators.
9178
9179 2005-07-12 Akim Demaille <akim@epita.fr>
9180
9181 * src/parse-gram.y: Use %printer instead of YYPRINT.
9182
9183 2005-07-12 Akim Demaille <akim@epita.fr>
9184
9185 * src/symtab.h, src/symtab.c (symbol_print): New.
9186 * src/symlist.h, src/symlist.c (symbol_list_print): New.
9187 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
9188
9189 2005-07-12 Akim Demaille <akim@epita.fr>
9190
9191 * data/glr.c (b4_syncline): Fix (swap) the definitions of
9192 b4_at_dollar and b4_dollar_dollar.
9193
9194 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
9195
9196 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
9197 and Pennello's paper.
9198
9199 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
9200
9201 * data/yacc.c (yyparse): Undo previous patch. Instead,
9202 set yylsp[0] and yyvsp[0] only if the initial action
9203 sets yylloc and yylval, respectively.
9204
9205 * data/yacc.c (yyparse): In the initial action, set
9206 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
9207 This avoids the use of undefined variables if the initial
9208 action does not set yylloc and/or yylval.
9209
9210 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
9211
9212 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
9213 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
9214 Remove from CVS. These files are automatically generated.
9215 * examples/extexi: Clarify that this file is now part of Bison,
9216 not GNU M4, and that it works with any POSIX-compatible Awk.
9217 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
9218 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
9219 so that we also get calc++-parser.yy. Geneate it.
9220 Use $(AWK), not gawk, since any conforming Awk will do.
9221 Put comment before action, since older 'make' can't handle comment
9222 in action.
9223 $(BUILT_SOURCES): List all built sources, not just some of them.
9224 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
9225 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
9226 $($(calc_sources_generated)): Remove unnecessary test for existence
9227 of target. (This had a shell syntax error anyway; a stray "x".)
9228 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
9229 calc++-parser.yy.
9230 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
9231
9232 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
9233 implied by the other modules.
9234
9235 2005-07-06 Akim Demaille <akim@epita.fr>
9236
9237 Bind examples/calc++ to the package.
9238 * examples/calc++/Makefile: Remove, replaced by...
9239 * examples/calc++/Makefile.am: ... this new file.
9240 * examples/calc++/test: Remove input.
9241 * examples/calc++/compile: Remove.
9242 * examples/Makefile.am: New.
9243 * configure.ac, Makefile.am: Adjust.
9244 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
9245
9246 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
9247
9248 * data/glr.c (yyFail): Drastically simplify; since the format argument
9249 never had any % directives, we can simply pass it to yyerror.
9250 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
9251 be modified later, as that is the usual style in glr.c.
9252 Problems reported by Paul Hilfinger.
9253
9254 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
9255 and size overflow errors.
9256 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
9257 in case the user prolog sets feature-test macros like _GNU_SOURCE.
9258 (YYSIZEMAX): New macro.
9259 (yystpcpy): New function, taken from yacc.c.
9260 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
9261 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
9262 so that we don't have to maintain their signatures.
9263 (yyFail): Check for buffer overflow, by using vsnprintf rather
9264 than vsprintf. Allocate a bigger buffer if possible.
9265 Report an error if buffer allocation fails.
9266 (yyStackOverflow): New function.
9267 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
9268 the initialization was successful. It might fail if storage was
9269 exhausted.
9270 (yyexpandGLRStack): Add more checks for storage allocation failure.
9271 Use yyStackOverflow to report failures.
9272 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
9273 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
9274 Don't assume stack number fits in int.
9275 (yysplitStack): Check for storage allocation failure.
9276 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
9277 can print diagnostics on storage allocation failure. All callers
9278 changed.
9279 (yyresolveValue): Use yybool for boolean.
9280 (yyreportSyntaxError): Check for size-calculation overflow.
9281 This code is taken from yacc.c.
9282 (yyparse): Check for storage allocation errors when allocating
9283 the initial stack.
9284
9285 2005-07-05 Akim Demaille <akim@epita.fr>
9286
9287 Extract calc++ from the documentation.
9288 * doc/bison.texinfo (Calc++): Add the extraction marks.
9289 * examples/extexi: New, from the aborted GNU Programming 2E.
9290 Separate the different paragraph of a file with empty lines.
9291 * examples/Makefile: Use it to extract the whole calc++ example.
9292
9293 2005-06-24 Akim Demaille <akim@epita.fr>
9294
9295 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
9296 class typedefs.
9297
9298 2005-06-22 Akim Demaille <akim@epita.fr>
9299
9300 * doc/bison.texinfo (C++ Language Interface): First stab.
9301 (C++ Parsers): Remove.
9302
9303 2005-06-22 Akim Demaille <akim@epita.fr>
9304
9305 * data/lalr1.cc (yylex_): Honor %lex-param.
9306
9307 2005-06-22 Akim Demaille <akim@epita.fr>
9308
9309 Start a set of simple examples.
9310 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
9311 * examples/calc++/calc++-driver.hh,
9312 * examples/calc++/calc++-parser.yy,
9313 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
9314 * examples/calc++/compile, examples/calc++/test: New.
9315
9316 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
9317
9318 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
9319 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
9320 which stems from the 2005-05-27 patch.
9321
9322 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9323
9324 * data/glr.c: Modify treatment of unused parameters to permit use
9325 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
9326
9327 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
9328
9329 Fix infringement on user name space reported by Janos Zoltan Szabo.
9330 * data/yacc.c (yyparse): strlen -> yystrlen.
9331
9332 2005-05-30 Akim Demaille <akim@epita.fr>
9333
9334 * data/lalr1.cc (_): New.
9335 Translate the various messages.
9336
9337 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
9338
9339 Fix infringement on user name space reported by Bruno Haible.
9340 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
9341 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
9342 the user's name space.
9343 (alloca): Include <stdlib.h> to get it, if it's not built in.
9344 (YYMALLOC, YYFREE): Define only if needed.
9345 (malloc, free): Declare, but only if needed, as this infringes on
9346 the user name space.
9347
9348 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
9349
9350 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
9351 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
9352 with %d format.
9353 * lib/ebitset.c (min, max): Undef before defining.
9354 * lib/vbitset.c (min, max): Likewise.
9355 * lib/subpipe.c (create_subpipe): Save local variables in case
9356 vfork clobbers them.
9357
9358 2005-05-24 Bruno Haible <bruno@clisp.org>
9359
9360 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
9361 error message syntax used by gcc-4.0.
9362
9363 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
9364
9365 * README: Mention m4 1.4.3. Remove obsolete advice about
9366 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
9367
9368 * bootstrap: Remove workaround for problem I encountered with
9369 gettext 0.14.1; it seems to be fixed now.
9370
9371 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
9372
9373 * NEWS: Version 2.0a.
9374
9375 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
9376 the previous change.
9377
9378 Various maintainer cleanups.
9379 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
9380 conftest*, for benefit of CVS commands run at the same time as
9381 "configure". Add build-aux, since "bootstrap" now creates it and
9382 its subfiles.
9383 * Makefile.cfg (move_if_change): Remove.
9384 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
9385 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
9386 (po_repo, do-po-update, po-update, wget_files, get-targets):
9387 (config.guess-url_prefix, config.sub-url_prefix):
9388 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
9389 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
9390 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
9391 Remove.
9392 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
9393 this is now the recommended name.
9394 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
9395 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
9396 ylwrap. These files now go into build-aux.
9397 * config/move-if-change: Remove.
9398 * config/prev-version.txt: Bump from 1.75 to 2.0.
9399
9400 * bootstrap: Add stdio-safer, unistd-safer modules.
9401 Remove m4/glibc2.m4 (introduced by latest gnulib, but
9402 we don't need it).
9403 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
9404 fopen-safer.c, stdio-safer.h, unistd-safer.h.
9405 * lib/subpipe.c: Include "unistd-safer.h".
9406 (create_subpipe): Make sure all the newly-created
9407 file descriptors are > 2, so that diagnostics don't
9408 get sent down them (which might cause Bison to hang, in theory).
9409 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
9410 * src/files.c (xfopen): Use fopen_safer, not fopen.
9411
9412 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
9413 yesterday's yacc.c fix.
9414
9415 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
9416
9417 * data/glr.c, data/lalr1.cc: Update copyright date.
9418
9419 Fix a destructor bug reported by Wolfgang Spraul in
9420 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
9421 * data/yacc.c (yyabortlab): Don't call destructor, and
9422 don't set yychar to EMPTY.
9423 (yyoverflowlab): Don't call destructor.
9424 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
9425 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
9426 since we no longer output the message "discarding lookahead token
9427 end of input ()".
9428
9429 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9430
9431 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
9432 fix a small glitch in debugging output.
9433 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
9434 after YY_SYMBOL_PRINT where needed.
9435
9436 (struct yyGLRState): Add some comments.
9437 (struct yySemanticOption): Add some comments.
9438 (union yyGLRStackItem): Add comment.
9439
9440 (yymergeOptionSets): Correct this to properly perform the union,
9441 avoiding infinite reported by Michael Rosien.
9442 Update comment.
9443
9444 * tests/glr-regression.at: Add test for GLR merging error reported
9445 by M. Rosien.
9446
9447 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
9448
9449 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
9450 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
9451 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
9452 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
9453 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
9454 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
9455 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
9456 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
9457 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
9458 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
9459 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
9460 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
9461 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
9462 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
9463 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
9464 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
9465 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
9466 src/derives.h, src/files.c, src/files.h, src/getargs.c,
9467 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
9468 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
9469 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
9470 src/output.h, src/parse-gram.c, src/parse-gram.h,
9471 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
9472 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
9473 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
9474 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
9475 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
9476 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
9477 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
9478 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
9479 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
9480 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
9481 tests/reduce.at, tests/regression.at, tests/sets.at,
9482 tests/synclines.at, tests/testsuite.at, tests/torture.at:
9483 Update FSF postal mail address.
9484
9485 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
9486
9487 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
9488 Problem reported by Ralf Menzel.
9489
9490 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
9491
9492 * tests/actions.at: Test that stack overflow invokes destructors.
9493 From Marcus Holland-Moritz.
9494 * data/yacc.c (yyerrlab): Move the code that destroys the stack
9495 from here....
9496 (yyreturn): to here. That way, destructors are called properly
9497 even if the stack overflows, or the user calls YYACCEPT or
9498 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
9499 (yyoverflowlab): Destroy the lookahead.
9500
9501 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
9502
9503 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
9504
9505 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
9506
9507 * NEWS: Bison-generated C parsers no longer quote literal strings
9508 associated with tokens.
9509 * src/output.c (prepare_symbols): Don't escape strings,
9510 since users don't want to see C escapes.
9511 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
9512 in diagnostics.
9513 * tests/input.at (Torturing the Scanner): Likewise.
9514 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
9515
9516 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
9517
9518 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
9519 the data size is known to be too small and we can't increase it.
9520 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
9521
9522 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
9523
9524 * src/parse-gram.y: Include quotearg.h.
9525 (string_as_id): Quote $1 before using it as a key, since the
9526 lexer no longer quotes it for us.
9527 (string_content): Don't strip quotes, since lexer no longer
9528 quotes it for us.
9529 * src/scan-gram.l: Include quotearg.h.
9530 ("\""): Omit quote.
9531 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
9532 a key, since the rest of the lexer doesn't quote it.
9533 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
9534 * tests/regression.at (Token definitions): Check for backslashes
9535 in token strings.
9536
9537 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
9538 (YYSIZE_T): Define to unsigned long int when using an older compiler.
9539 (yyparse): Revamp code to generate long syntax error message, to
9540 make it easier to translate, and to avoid problems with arithmetic
9541 overflow. Change "virtual memory" to "memory" in diagnostic, since
9542 we don't know whether the memory is virtual.
9543
9544 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
9545
9546 * NEWS: Bison-generated C parsers now use the _ macro to
9547 translate strings.
9548 * data/yacc.c (_) [!defined _]: New macro.
9549 All English strings wrapped inside this macro.
9550 * doc/bison.texinfo (Bison Parser): Document _.
9551 * po/POTFILES.in: Include src/parse-gram.c, since it now
9552 includes translateable strings that parse-gram.y doesn't.
9553
9554 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
9555
9556 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
9557 reverting the 2004-10-11 change to this function.
9558 (symbol_check_alias_consistency): Don't call symbol_type_set
9559 if the type name is already correct.
9560 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
9561
9562 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
9563
9564 * tests/regression.at (Token definitions): Don't use a token named
9565 c, as that generates a "#define c ..." that runs afoul of buggy
9566 stdlib.h that uses the identifier c as a member of struct
9567 drand48_data. Problem reported by Horst Wente.
9568
9569 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
9570
9571 * bootstrap: Change translation URL from
9572 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
9573 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
9574 redirection glitches. Problem reported by twlevo@xs4all.nl.
9575
9576 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
9577
9578 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
9579 after operands; POSIX says this isn't portable for the c99 command.
9580
9581 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
9582
9583 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
9584 immediately if a data overrun has occurred; this may help us track
9585 down what may be a spurious failure on MacOS.
9586
9587 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
9588
9589 Respond to problems reported by twlevo@xs4all.nl.
9590
9591 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
9592
9593 * src/vcg.h: Comment fix.
9594 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
9595 (G_CMAX): Change to -1 instead of INT_MAX.
9596
9597 * data/yacc.c (yyparse): Omit spaces before #line.
9598
9599 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
9600
9601 * src/tables.c (state_number_to_vector_number): Put it inside an
9602 "#if 0", since it's not currently used. Problem reported by
9603 Roland McGrath.
9604
9605 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
9606
9607 * src/output.c (escaped_output): Renamed from
9608 escaped_file_name_output, since we now use it for symbol tags as
9609 well. All uses changed.
9610 (symbol_destructors_output, symbol_printers_output):
9611 Escape symbol tags too.
9612 Problem reported by Matyas Forstner in
9613 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
9614
9615 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
9616 not needed.
9617 * src/output.c (user_actions_output, token_definitions_output,
9618 symbol_destructors_output, symbol_printers_output): Likewise.
9619 * src/reader.c (prologue_augment): Likewise.
9620 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
9621
9622 * src/vcg.c (output_edge): Don't quote linestyle arg.
9623 Problem reported by twlevo@xs4all.nl.
9624
9625 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
9626
9627 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
9628 example, reported by Derek M Jones. Also, make the example even
9629 more outrageous, to better illustrate how bad the problem is.
9630
9631 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
9632
9633 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
9634 putsym. Typo reported by Sebastian Piping.
9635
9636 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
9637
9638 * doc/bison.texinfo (Language and Grammar): some -> same
9639 (Epilogue): int he -> in the
9640 Typos reported by Sebastian Piping via Justin Pence.
9641
9642 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
9643
9644 * tests/glr-regression.at (Improper handling of embedded actions
9645 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
9646 embedded actions and $-N in GLR parsers", work around an Autoconf bug
9647 with dollar signs in test names.
9648 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
9649 for a similar reason.
9650
9651 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
9652
9653 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
9654 wants to redefine G_VIEW.
9655
9656 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9657
9658 * src/vcg.c (get_view_str): Remove case for normal_view.
9659 Problem reported by twlevo@xs4all.nl.
9660
9661 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9662
9663 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9664 Problem reported by twlevo@xs4all.nl.
9665
9666 * doc/bison.texinfo: Change @dircategory from "GNU programming
9667 tools" to "Software development". Requested by Richard Stallman
9668 via Karl Berry.
9669
9670 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9671
9672 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9673 Problem reported by twlevo@xs4all.nl.
9674
9675 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9676
9677 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9678 keyword; it's not needed with modern compilers, and it doesn't
9679 affect correctness with older compilers. Suggested by
9680 twlevo@xs4all.nl.
9681
9682 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9683
9684 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9685 gcc -Wswitch-default.
9686 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9687 * data/yacc.c (yyparse): Likewise.
9688
9689 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9690
9691 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9692 already. Let config.h define any nonstandard values.
9693
9694 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9695
9696 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9697 for the benefit of slower hosts. Problem reported by
9698 Nelson H. F. Beebe.
9699
9700 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9701
9702 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9703 being defined and not used.
9704 * data/lalr1.cc (yyparse): Likewise.
9705 Use "if (false)" rather than "if (0)".
9706
9707 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9708
9709 * TODO: Mention that we should allow NUL bytes in tokens.
9710
9711 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9712
9713 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9714 Problem reported by Hans Aberg.
9715
9716 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9717
9718 * src/getargs.c (version): Happy new year; update overall
9719 program copyright date from 2004 to 2005.
9720
9721 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9722 Problem reported by Hans Aberg.
9723 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9724 (Output file names.): Add a test for the case when standard output
9725 is closed.
9726
9727 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9728
9729 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9730 to fix an oversight in the Bison 2.0 manual.
9731
9732 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9733
9734 * NEWS: Version 2.0. Reformat the existing news items since
9735 1.875, so that related items are grouped together.
9736 * configure.ac (AC_INIT): Bump version to 2.0.
9737 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9738
9739 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9740 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9741 otherwise, we're not testing alloca. Unfortunately there's no
9742 simple way to consult HAVE_ALLOCA here.
9743
9744 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9745 for yymsg, too.
9746
9747 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9748 hand. This avoids a warning about comparing int to size_t when
9749 GCC warnings are enabled.
9750
9751 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9752
9753 * NEWS: Bison-generated parsers no longer default to using the
9754 alloca function (when available) to extend the parser stack, due
9755 to widespread problems in unchecked stack-overflow detection.
9756 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9757 responsibility to set it to a positive value. This lets the user
9758 specify a value that is not a preprocessor constant.
9759 * data/yacc.c (YYMAXDEPTH): Likewise.
9760 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9761 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9762 to be a compile-time constant. However, explain the constraints on it.
9763 Also, explain the constraints on YYINITDEPTH.
9764 (Table of Symbols): Explain that alloca is no longer the default.
9765 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9766 to 1.
9767
9768 * doc/bison.texinfo (Location Default Action): Mention that n must
9769 be zero when k is zero. Suggested by Frank Heckenbach.
9770
9771 2004-12-22 Akim Demaille <akim@epita.fr>
9772
9773 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9774 (parser::state_type, parser::semantic_type, parser::location_type):
9775 Private, not public.
9776 (parser::parse): Return ints, not bool.
9777 Returning a bool introduces a problem: 0 corresponds to false, and
9778 it seems weird to return false on success. Returning true changes
9779 the conventions for yyparse.
9780 Alternatively we could return void and send an exception.
9781 There is no clear consensus (yet?).
9782 (state_stack, semantic_stack, location_stack): Rename as...
9783 (state_stack_type, semantic_stack_type, location_stack_type): these.
9784 Private, not public.
9785 * tests/c++.at: New.
9786 * tests/testsuite.at, tests/Makefile.am: Adjust.
9787
9788 2004-12-21 Akim Demaille <akim@epita.fr>
9789
9790 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9791
9792 2004-12-21 Akim Demaille <akim@epita.fr>
9793
9794 Don't impose std::string for filenames.
9795
9796 * data/lalr1.cc (b4_filename_type): New.
9797 (position::filename): Use it.
9798 (parser.hh): Move the inclusion of stack.hh and location.hh below
9799 the user code, so that needed headers for the filename type can be
9800 included first.
9801 Forward declare them before the user code.
9802 * tests/Makefile.am (check-local, installcheck-local): Pass
9803 TESTSUITEFLAGS to the TESTSUITE.
9804
9805 2004-12-20 Akim Demaille <akim@epita.fr>
9806
9807 Use more STL like names: my_class instead of MyClass.
9808
9809 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9810 (SemanticStack, SemanticType, StateStack, StateType)
9811 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9812 (Parser::value): Rename as...
9813 (location_stack, location_type, rhs_number_type, semantic_stack)
9814 (semantic_type, state_stack, state_type, token_number_type, stack)
9815 (slice, traits, parser::yylloc, parser::yylval): these.
9816
9817 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9818
9819 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9820
9821 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9822 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9823
9824 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9825
9826 Remove uses of 'short int' and 'unsigned short int'. This raises
9827 some arbitrary limits. It uses more memory but nowadays that's
9828 not much of an issue.
9829
9830 This change does not affect the generated parsers; that's a different
9831 task, as some users will want to conserve memory there.
9832
9833 Ideally we should use size_t to represent all object counts, and
9834 something like ptrdiff_t to represent signed differences of object
9835 counts; but that will require more code-cleanup than I have the
9836 time to do right now.
9837
9838 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9839 Use size_t, not int or short int, to count objects.
9840 * src/closure.c (nritemset, closure): Likewise.
9841 * src/closure.h (nritemset, closure): Likewise.
9842 * src/nullable.c (nullable_compute): Likewise.
9843 * src/print.c (print_core): Likewise.
9844 * src/print_graph.c (print_core): Likewise.
9845 * src/state.c (state_compare, state_hash): Likewise.
9846 * src/state.h (struct state): Likewise.
9847 * src/tables.c (default_goto, goto_actions): Likewise.
9848
9849 * src/gram.h (rule_number, rule): Use int, not short int.
9850 * src/output.c (prepare_rules): Likewise.
9851 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9852 errs, reductions): Likewise.
9853 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9854 Likewise.
9855 * src/tables.c (vector_number, tally, action_number,
9856 ACTION_NUMBER_MINIMUM): Likewise.
9857 * src/output.c (muscle_insert_short_int_table): Remove.
9858
9859 2004-12-17 Akim Demaille <akim@epita.fr>
9860
9861 * data/lalr1.cc: Extensive Doxygenation.
9862 (error_): Rename as...
9863 (error): this, since it is visible to the user.
9864 Adjust callers.
9865 (Parser::message): Now an automatic variable from...
9866 (Parser::yyreport_syntax_error_): here.
9867 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9868 Parser::error.
9869 * tests/input.at: Escape $.
9870
9871 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9872
9873 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9874 Parenthesize rhs to avoid obscure problems with mistakes like
9875 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9876 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9877 b4_rhs_location): Likewise.
9878 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9879 b4_rhs_location): Likewise.
9880
9881 2004-12-16 Akim Demaille <akim@epita.fr>
9882
9883 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9884 yacc.c: be sure to stay within yycheck_.
9885 * tests/actions.at: Re-enable C++ tests.
9886
9887 2004-12-16 Akim Demaille <akim@epita.fr>
9888
9889 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9890 real.
9891
9892 2004-12-16 Akim Demaille <akim@epita.fr>
9893
9894 Use #define to handle the %name-prefix.
9895
9896 * data/glr.c, data/yacc.c: Comment changes.
9897 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9898 so that one can refer to yylex in the parser file, and have it
9899 renamed, as is the case with other skeletons.
9900
9901 2004-12-16 Akim Demaille <akim@epita.fr>
9902
9903 Move lalr1.cc internals into yy*.
9904
9905 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9906 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9907 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9908 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9909 (empty_, final_, terror_, errcode_, ntokens_)
9910 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9911 (looka_, ilooka_, error_range_, nerrs_):
9912 Rename as...
9913 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9914 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9915 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9916 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9917 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9918 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9919 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9920 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9921 these.
9922
9923 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9924
9925 Fix some problems reported by twlevo at xs4all.
9926 * src/symtab.c (symbol_new): Report an error if the input grammar
9927 contains too many symbols. This is better than calling abort() later.
9928 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9929 (struct node, struct graph):
9930 Rename member expand to stretch. All uses changed.
9931 (struct graph): Remove member layoutalgorithm. All uses removed.
9932 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9933 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9934 All uses changed.
9935 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9936
9937 2004-12-15 Akim Demaille <akim@epita.fr>
9938
9939 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9940 Add more Doxygen comments.
9941 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9942 (report_syntax_error_, translate_): Rename as...
9943 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9944 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9945
9946 2004-12-15 Akim Demaille <akim@epita.fr>
9947
9948 * data/lalr1.cc (lex_): Rename as...
9949 (yylex_): this.
9950 Move the trace here.
9951 Take the %name-prefix into account.
9952 Reported by Alexandre Duret-Lutz.
9953
9954 2004-12-15 Akim Demaille <akim@epita.fr>
9955
9956 Simplify the C++ parser constructor.
9957
9958 * data/lalr1.cc (debug_): Rename as...
9959 (yydebug_): so that the parser's internals are always in the yy*
9960 pseudo namespace.
9961 Adjust uses.
9962 (b4_parse_param_decl): Remove the leading comma as it is now only
9963 called as unique argument list.
9964 (Parser::Parser): Remove the constructor accepting a location and
9965 an initial debugging level.
9966 Remove from the other ctor the argument for the debugging level.
9967 (debug_level_type, debug_level, set_debug_level): New.
9968
9969 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9970 constructor calls.
9971
9972 2004-12-15 Akim Demaille <akim@epita.fr>
9973
9974 Remove b4_root related material: failure experiment
9975 (which goal was to allow to derive from a class).
9976
9977 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9978 definitions and uses.
9979
9980 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9981
9982 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9983 not 2, since it's not portable to subtract 1 from the start of an
9984 array. The new item 0 is never set or used. All uses changed.
9985
9986 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9987 the default definition of YYLLOC_DEFAULT. Problem reported
9988 by Frank Heckenbach.
9989
9990 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9991
9992 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9993 the normal case and one for the error case. Just use the
9994 first one uniformly. Problem reported by Frank Heckenbach.
9995 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9996 use exactly the same macro in both places.
9997 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9998 so that the normal-case YYRHSLOC works for the error case too.
9999 All uses changed.
10000 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
10001 (YYLLOC_DEFAULT): Use the same macro as glr.c.
10002 * doc/bison.texinfo (Location Default Action): Don't claim that
10003 we have an array of locations. Use the same macro for both glr
10004 and lalr parsers. Mention YYRHSLOC. Mention what happens when
10005 the index is 0.
10006
10007 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
10008
10009 * HACKING: Update email addresses to send announcements to.
10010
10011 * configure.ac (AC_INIT): Bump version to 1.875f.
10012
10013 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
10014
10015 * NEWS: Version 1.875e.
10016 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
10017
10018 * src/scan-skel.l: Include "complain.h", for "fatal".
10019
10020 * src/relation.h (relation_print, relation_digraph):
10021 Relation sizes are of type relation_node, not size_t (this is
10022 merely a doc fix, since the two types are equivalent).
10023 (relation_transpose): Relation sizes are of type relation_node,
10024 not int.
10025 * src/relation.c: Likewise.
10026 (top, infinity): Now of type relation_node, not int.
10027 (traverse, relation_transpose): Use relation_node, not int.
10028
10029 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
10030 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
10031 (yyparse): Remove unused local introduced in 2004-10-25 patch.
10032
10033 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
10034 specifying whether the test should be skipped. Use it tp
10035 specify that the [%defines %skeleton "lalr1.cc"] tests currently
10036 fail on some hosts, and should be skipped.
10037
10038 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
10039
10040 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
10041 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
10042 unless otherwise specified below.
10043
10044 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
10045 to allocate kernel_base, kernel_items, kernel_size, since
10046 they needn't be initialized to 0.
10047 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
10048 * src/closure.c (new_closure): Likewise, for itemset.
10049 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
10050 * src/lalr.c (set_goto_map): Likewise, for temp_map.
10051 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
10052 (build_relations): Likewise for edge, states1, includes.
10053 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
10054 * src/reader.c (packgram): Likewise, for ritem, rules.
10055 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
10056 * src/relation.c (relation_digraph): Likewise for VERTICES.
10057 (relation_transpose): Likewise for new_R, end_R.
10058 * src/symtab.c (symbols_token_translations_init): Likewise for
10059 token_translations.
10060 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
10061 (token_actions): Likewise for yydefact, actrow, conflrow,
10062 conflict_list.
10063 (save_column): Likewise for froms[symno], tos[symno].
10064 (goto_actions): Likewise for state_count.
10065 (pack_table): Likewise for base, pos, check.
10066 (tables_generate): Likewise for width.
10067
10068 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
10069 for initial core. Just have a separate core, so we needn't worry
10070 about whether kernel_size and kernel_base are initialized.
10071
10072 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
10073 kernel_size, kernel_items): Remove unnecessary initialization.
10074 * src/conflicts.c (conflicts): Likewise.
10075 * src/derives.c (derives): Likewise.
10076 * src/muscle_tablc (muscle_insert): Likewise.
10077 * src/relation.c (relation_digraph): Likewise.
10078 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
10079 conflrow, conflict_table, conflict_list, table, check):
10080 Likewise.
10081
10082 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
10083 This is because all callers pass unsigned int.
10084 * src/closure.h (new_closure): Likewise.
10085
10086 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
10087 (build_relations): Initialize includes[i] in all cases.
10088 * src/reader.c (packgram): Always initialize rules[ruleno].prec
10089 and rules[ruleno].precsym. Initialize members in order.
10090 * src/relation.c (relation_transpose): Always initialize new_R[i]
10091 and end_R[i].
10092 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
10093
10094 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
10095 conflict_list[0] was always 0, but now it isn't initialized.
10096
10097 * src/table.c (table_grow): When conflict_table grew, the grown
10098 area wasn't cleared. Fix this.
10099
10100 * lib/.cvsignore: Add strdup.c, strdup.h.
10101 * m4/.cvsignore: Add strdup.m4.
10102
10103 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
10104
10105 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
10106 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
10107 GOTO_NUMBER_MAXIMUM, since we occasionally compute
10108 ngotos + 1 without checking for overflow.
10109 (build_relations): Use END_NODE, not -1, to denote end of edges.
10110 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
10111 build_relations): Use goto_number, not int, for goto numbers.
10112 * src/tables.c (save_column, default_goto): Likewise.
10113
10114 2004-11-23 Akim Demaille <akim@epita.fr>
10115
10116 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
10117 of #defining from yystype.
10118 Don't typedef yystype, C++ does not need it.
10119 This lets it possible to forward declare it as union.
10120
10121 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
10122
10123 * bootstrap (gnulib_modules): Add extensions.
10124 Problem reported by Jim Meyering.
10125
10126 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
10127
10128 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
10129 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
10130 src/system.h, src/tables.c: XFREE -> free, to accommodate
10131 recent change to gnulib xalloc.h.
10132 Problem reported by Jim Meyering.
10133
10134 2004-11-17 Akim Demaille <akim@epita.fr>
10135
10136 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
10137
10138 2004-11-17 Akim Demaille <akim@epita.fr>,
10139 Alexandre Duret-Lutz <adl@gnu.org>
10140
10141 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
10142 changes.
10143 (YYCDEBUG): Adjust.
10144 Use it instead of cdebug_.
10145 (Parser::debug_stream, Parser::set_debug_stream): New.
10146 (Parser::symprint_): Define cdebug_ for temporary backward
10147 compatibility.
10148 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
10149 debug_stream ().
10150
10151 2004-11-17 Akim Demaille <akim@epita.fr>
10152
10153 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
10154 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
10155 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
10156 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
10157
10158 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
10159
10160 * data/glr.c (yyloc_default): Remove; not used.
10161 Problem reported by Frank Heckenbach.
10162
10163 2004-10-25 Akim Demaille <akim@epita.fr>
10164
10165 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
10166 Introduce another definition to address simple location arrays.
10167 (yyGLRStack): New member: yyerror_range.
10168 (yyrecoverSyntaxError, yyparse): Update it.
10169 (yyrecoverSyntaxError): Use it when shifting the error token to
10170 have an accurate range, equivalent to the one computed by both
10171 yacc.c and lalr1.cc.
10172 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
10173 that column numbers start at column 0, as per GNU Coding
10174 Standards, the others tests, and the doc.
10175 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
10176 Adjust to the above change (first column is 0).
10177 And adjust the location of the "<error>", now covering the whole
10178 line.
10179
10180 2004-10-22 Akim Demaille <akim@epita.fr>
10181 and Paul Eggert <eggert@cs.ucla.edu>
10182
10183 Remove some arbitrary limits on goto numbers and relations.
10184 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
10185 initial values, since they're never used.
10186 (set_goto_map): ngotos is now unsigned, so test for overflow
10187 by seeing whether it wraps around to zero.
10188 * src/lalr.h (goto_number): Now size_t, not short int.
10189 (GOTO_NUMBER_MAXIMUM): Remove.
10190 * src/relation.c (relation_print, traverse, relation_transpose):
10191 Check for END_NODE rather than looking at sign.
10192 * src/relation.h (END_NODE): New macro.
10193 (relation_node): Now size_t, not short int.
10194
10195 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
10196
10197 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
10198 keyword, not an identifier. Problem reported by Baron Schwartz in
10199 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
10200
10201 2004-10-11 Akim Demaille <akim@epita.fr>
10202
10203 * src/symtab.c (symbol_check_alias_consistency): Also check
10204 type names, destructors, and printers.
10205 Reported by Alexandre Duret-Lutz.
10206 Recode the handling of associativity and precedence in terms
10207 of symbol_precedence_set.
10208 Accept no redeclaration at all, not even equal to the previous
10209 value.
10210 (redeclaration): New.
10211 Use it to factor redeclaration complaints.
10212 (symbol_make_alias): Don't set the type of the alias, let
10213 symbol_check_alias_consistency do it as for other features.
10214 * src/symtab.h (symbol): Add new member prec_location, and
10215 type_location.
10216 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
10217 * tests/input.at (Incompatible Aliases): New.
10218
10219 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
10220
10221 .cvsignore fixes to accommodate gnulib changes,
10222 and the practice of naming build directories "_build".
10223 * .cvsignore: Add "_*". Sort.
10224 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
10225 * m4/.cvsignore: Add "*_gl.m4".
10226
10227 2004-10-06 Akim Demaille <akim@epita.fr>
10228
10229 * src/parse-gram.y (add_param): Fix the truncation of trailing
10230 spaces.
10231
10232 2004-10-05 Akim Demaille <akim@epita.fr>
10233
10234 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
10235 whether the reducion was empty or not. This leaves room to
10236 improve the use of YYLLOC_DEFAULT in such a case.
10237 lalr1.cc is still experimental, so changing this is acceptable.
10238 And finally, there are probably not many users who changed the
10239 handling of locations in GLR, so changing is admissible too.
10240
10241 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
10242 empty reduction, set @$ to an empty location ending the previously
10243 stacked symbol.
10244 Adjust uses to make sure the code is triggered on empty
10245 reductions.
10246 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
10247 expected output: empty reductions have empty locations.
10248
10249 2004-09-29 Akim Demaille <akim@epita.fr>
10250
10251 * data/lalr1.cc: Move towards a more standard C++ coding style
10252 for templates: Class < T > -> Class<T>.
10253
10254 2004-09-29 Akim Demaille <akim@epita.fr>
10255
10256 * data/lalr1.cc: Reinstall the former ctor, for sake of
10257 compatibility, but warn it will be removed.
10258 Move towards a more standard C++ coding style (i.e., type *var ->
10259 type* var).
10260
10261 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
10262
10263 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
10264 since it's less likely to work if NULs are involved in the future.
10265
10266 2004-09-27 Akim Demaille <akim@epita.fr>
10267
10268 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
10269
10270 2004-09-27 Akim Demaille <akim@epita.fr>
10271
10272 * data/lalr1.cc (b4_parse_param_decl_1): New.
10273 (b4_parse_param_decl): Use it to have different names between attribute
10274 and argument names.
10275 (b4_cc_constructor_call): Likewise.
10276
10277 2004-09-24 Akim Demaille <akim@epita.fr>
10278
10279 * src/parse-gram.y (add_param): Strip the leading and trailing
10280 blanks from a formal argument declaration.
10281 (YY_LOCATION_PRINT): New.
10282
10283 2004-09-24 Akim Demaille <akim@epita.fr>
10284
10285 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
10286 after the location.
10287
10288 2004-09-24 Akim Demaille <akim@epita.fr>
10289
10290 * doc/bison.texinfo (Table of Symbols): Sort.
10291
10292 2004-09-21 Akim Demaille <akim@epita.fr>
10293
10294 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
10295 the useless parentheses.
10296 Suggested by Paul Eggert.
10297
10298 2004-09-20 Akim Demaille <akim@epita.fr>
10299
10300 Let the initial-action act on the look-ahead, and use it for the
10301 "initial push" (corresponding to an hypothetical beginning-of-file).
10302 And let lalr1.cc honor %initial-action.
10303
10304 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
10305 example.
10306 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
10307 (Parser::Parser): Remove the ctor that used to initialize it.
10308 (Parser::parse): Like in the other skeletons, issue the "starting
10309 parse" message before any action.
10310 Honor %initial-action.
10311 Initialize the stacks with the lookahead.
10312 * data/yacc.c: Let $$ and @$ in %initial-action designate the
10313 look-ahead.
10314 Push them in the stacks.
10315 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
10316
10317 2004-09-20 Akim Demaille <akim@epita.fr>
10318
10319 * doc/bison.texinfo (Initial Action Decl): New.
10320
10321 2004-09-20 Akim Demaille <akim@epita.fr>
10322
10323 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
10324 clearer criterion to define it.
10325 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
10326 When reducing on an empty RHS, use the latest stacked location as
10327 location.
10328 yylloc is not always available.
10329 * data/glr.c: Likewise.
10330 Also, honor initial-actions.
10331
10332 2004-09-20 Akim Demaille <akim@epita.fr>
10333
10334 * data/yacc.c (YY_LOCATION_PRINT): New.
10335 Define when we know YYLTYPE's structure, i.e., when the default
10336 YYLLOC_DEFAULT is used.
10337 * data/c.m4 (b4_yysymprint_generate): Use it.
10338 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
10339 value of the result.
10340 (error_start_): Replace with...
10341 (error_range_): this location array.
10342 This allows to replace code relying on the implementation of
10343 locations by portable code.
10344 * data/yacc.c (yylerrsp): Replace with...
10345 (yyerror_range): this.
10346 Every time a token is popped, update yyerror_range[0], to have an
10347 accurate location for the error token.
10348 * data/glr.c (YY_LOCATION_PRINT): New.
10349 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
10350 deference a pointer.
10351 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
10352 report the location in %printers.
10353
10354 * src/scan-skel.l: Instead of abort, report error messages to ease
10355 understanding skeleton scanning failures.
10356
10357 2004-09-16 Akim Demaille <akim@epita.fr>
10358
10359 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
10360 (iterator, const_iterator): these, to be more in the C++ spirit.
10361 Also, return reverse iterators so that when displaying the stack
10362 we display its bottom first.
10363 (Parser::stack_print_, Parser::reduce_print_): Match the messages
10364 from yacc.c.
10365 We should probably use vector here though.
10366
10367 2004-09-16 Akim Demaille <akim@epita.fr>
10368
10369 Have more complete shift traces.
10370
10371 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
10372 to report Shifts instead of ad hoc YYDPRINTF invocations,
10373 including for the error token.
10374 * data/lalr1.cc (symprint_): Output the location.
10375 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
10376 output the location within the %printer.
10377 Activate GLR tests, at least to make sure they compile properly.
10378 They still don't pass though.
10379 * tests/calc.at: Adjust expect verbose output, since now "Entering
10380 state..." is on a different line than the "Shifting" message.
10381
10382 2004-09-08 Akim Demaille <akim@epita.fr>
10383
10384 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
10385 Bison directive from the Bison file to the invocation of this
10386 macro, so that these directives are passed to
10387 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
10388 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
10389 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
10390 the extra Bison directives instead of the whole series.
10391 Change the grammar so that there are recoverable errors, and
10392 unrecoverable errors. Now we can have the parser give up before
10393 consuming the whole input. As a result we now can observe that
10394 the lookahead is freed when needed.
10395 Change the parser source to parse argv[1] instead of a hard coded
10396 string.
10397 Simplify yylex, and give a value and location to EOF.
10398 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
10399 passed directives already coded in the file.
10400 Add some tests to check the location of "error".
10401 For some tests, the C++ parser is correct, and not yacc.c.
10402 For other tests, they provide different, but unsatisfying, values,
10403 so keep the C++ value so that at least one parser is "correct"
10404 according to the test suite.
10405 (Actions after errors): Remove, this is subsumed by the
10406 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
10407
10408 2004-09-06 Akim Demaille <akim@epita.fr>
10409
10410 * data/lalr1.cc: Adjust the indentation of the labels.
10411 (Parser::pop): New.
10412 Use it.
10413
10414 2004-09-06 Akim Demaille <akim@epita.fr>
10415
10416 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
10417 argument, an informative message.
10418 Call YY_SYMBOL_PRINT.
10419 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
10420 * data/lalr1.cc (destruct_): Likewise.
10421 In addition, no longer depend on b4_yysymprint_generate and
10422 b4_yydestruct_generate to generate these functions, do it "by
10423 hand".
10424
10425 2004-09-03 Akim Demaille <akim@epita.fr>
10426
10427 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
10428 invoked, yydestruct the lookahead.
10429 * tests/calc.at (Calculator $1): Update the expected lengths of
10430 traces: there is an added line for the discarded lookahead.
10431 * doc/bison.texinfo (Destructor Decl): Some rewording.
10432 Define "discarded" symbols.
10433
10434 2004-09-02 Akim Demaille <akim@epita.fr>
10435
10436 * data/lalr1.cc (translate_, destruct_): No reason to be static.
10437
10438 2004-09-02 Akim Demaille <akim@epita.fr>
10439
10440 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
10441 (YYDSYMPRINTF): Rename as...
10442 (YY_SYMBOL_PRINT): this.
10443 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
10444 two.
10445 Use it instead of direct symprint_ calls.
10446 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
10447 one.
10448
10449 2004-09-02 Akim Demaille <akim@epita.fr>
10450
10451 * data/lalr1.cc (b4_yysymprint_generate): New.
10452 (symprint_): New member function, defined when YYDEBUG.
10453 Use it consistently instead of token/nterm debugging output by
10454 hand.
10455 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
10456 %printer calls to use cdebug_ when using lalr1.cc.
10457
10458 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
10459
10460 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
10461 with #ifdef YYDEBUG.
10462
10463 2004-08-26 Akim Demaille <akim@epita.fr>
10464
10465 * doc/bison.texinfo (Implementing Loops): Rename as...
10466 (Implementing Gotos/Loops): this.
10467
10468 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
10469
10470 Adjust to latest gnulib.
10471 * bootstrap (gnulib_modules): Add xalloc-die.
10472 Set LC_ALL=C so that file names sort consistently.
10473 Prefer the gnulib copies of gettext.m4, glibc21.m4,
10474 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
10475 uintmax_t.m4, ulonglong.m4.
10476 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
10477 po.m4 since we are now using _gl.m4 instead.
10478
10479 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
10480
10481 * src/scan-action.l: Remove. Scanning of semantic actions is
10482 handled in scan-gram.l.
10483
10484 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
10485
10486 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
10487
10488 * src/location.h (struct): The file member is a uniqstr.
10489 (equal_boundaries): Use UNIQSTR_EQ for comparison.
10490
10491 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
10492
10493 Fix bug with non-%union parsers that have printers or destructors,
10494 which led to a Bison core dump. Reported by Peter Fales in
10495 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
10496
10497 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
10498 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
10499 not to our own type.
10500 * src/output.c (symbol_destructors_output, symbol_printers_output):
10501 Don't assume %union.
10502 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
10503 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
10504 UNION-FLAG. All callers changed.
10505 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
10506 Use type char, not unsigned int, when declaring an array of char;
10507 this lets us remove a cast.
10508 (Printers and Destructors): Add non-%union test cases.
10509
10510 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10511
10512 * doc/bison.texinfo: Minor editorial changes, mostly to the new
10513 GLR writeups. E.g., avoid frenchspacing and the future tense,
10514 change "lookahead" to "look-ahead", and change "wrt" to "with
10515 respect to".
10516
10517 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10518
10519 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
10520 New sections, split off from the GLR Parsers section. Put the new
10521 Simple GLR Parser near the start of the GLR section, for clarity.
10522 Rewrite connective text.
10523
10524 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
10525
10526 * doc/bison.texinfo (Simple GLR Parsers): New section.
10527
10528 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10529
10530 * NEWS, TODO, doc/bison.texinfo:
10531 Use "look-ahead" instead of "lookahead", to be consistent.
10532 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
10533 while we're fixing "look-ahead".
10534 * src/conflicts.c (shift_set): Renamed from shiftset.
10535 (look_ahead_set): Renamed from lookaheadset.
10536 * src/print.c: Likewise.
10537 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
10538 name for "lookahead".
10539 (report_types, usage): Likewise.
10540 * src/getargs.h (report_look_ahead_tokens): Renamed from
10541 report_lookaheads.
10542 * src/lalr.c (compute_look_ahead_tokens): Renamed from
10543 compute_lookaheads.
10544 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
10545 (look_ahead_tokens_print): Renamed from lookaheads_print.
10546 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
10547 state_rule_lookaheads_print.
10548 * src/state.h: Likewise.
10549 (reductions.look_ahead_tokens): Renamed from lookaheads.
10550 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
10551 AT_DATA_LOOKAHEADS_GRAMMAR.
10552
10553 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
10554
10555 * README: Update location of patched M4 distribution.
10556
10557 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
10558
10559 Don't assume the C++ compiler takes the same arguments as the C compiler
10560 (trivial change).
10561 * configure.ac (O0CXXFLAGS): New var.
10562 * tests/atlocal.in (CXXFLAGS): Use it.
10563
10564 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
10565
10566 Fix some "make check" problems with C++ reported by
10567 Albert Chin-A-Young for Tru64 C++ in this thread:
10568 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
10569
10570 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
10571 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10572 Output to a .cc file for C++, not to a .c file.
10573 * tests/calc.at (AT_CHECK_CALC): Likewise.
10574 * tests/regression.at (AT_CHECK_DANCER): Likewise.
10575 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
10576
10577 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
10578
10579 * tests/calc.at, tests/actions.at: Workaround for SGI
10580 C++ compiler. (trivial change)
10581
10582 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
10583
10584 Spent a few hours checking out which prerequisite versions the
10585 current sources actually require. I went all the way back to
10586 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
10587 a seemingly endless set of combinations of versions more recent
10588 than that. The bottom line is that the current sources require
10589 fairly recent versions of the build tools, and it'll be some work
10590 to change this.
10591 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
10592 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
10593 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
10594 Add comments explaining why those particular versions are
10595 currently needed.
10596
10597 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
10598 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
10599 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
10600
10601 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
10602 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
10603
10604 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
10605
10606 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
10607 0.11.5. Suggested by Bruno Haible.
10608 * bootstrap: Remove gettext version checking.
10609
10610 * doc/bison.texinfo (Decl Summary): Also mention that %union
10611 can depend on prerequisite types. Problem reported by Tim
10612 Van Holder.
10613
10614 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
10615
10616 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
10617 * README-alpha: Don't tell people not to package this.
10618
10619 * bootstrap: Don't assume $(...) works; use `...` instead.
10620 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
10621 gettext better.
10622
10623 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
10624 put into the -d output file, and mention what to do if YYSTYPE is
10625 defined as a macro.
10626
10627 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
10628
10629 Undo change made earlier today: it caused autopoint to not bring
10630 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
10631 autopoint's.
10632
10633 * bootstrap: Check that gettext version matches what's in
10634 configure.ac. Warn users to ignore robots.txt ERROR 404.
10635 * bootstrap: Undo today's earlier change (logged below).
10636 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
10637
10638 The gettext version checking is causing more trouble than it's
10639 curing; remove it. Problem reported by Paul Hilfinger.
10640
10641 * bootstrap: Issue a warning that one can expect a message
10642 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
10643 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
10644
10645 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
10646
10647 Ensure that the C++ compiler used for testing actually works on a
10648 simple test program; if not, skip the C++-related tests. Problem
10649 reported by Vin Shelton in:
10650 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
10651
10652 * m4/cxx.m4: New file.
10653 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
10654 * tests/atlocal.in (BISON_CXX_WORKS): Add.
10655 * tests/local.at (AT_COMPILE_CXX): Use it.
10656
10657 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10658
10659 * data/glr.c (yylloc): Output this macro even if locations are not
10660 being generated, as the GLR parser needs it even in that case.
10661 Problem reported by Troy A. Johnson
10662 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10663
10664 * configure.ac (AC_INIT): Update to 1.875e.
10665
10666 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10667
10668 * NEWS: Version 1.875d.
10669 * configure.ac (AC_INIT): Likewise.
10670 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10671
10672 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10673 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10674 lalr1.cc runs afoul of the first, and the last two are no longer
10675 supported by GCC 3.4.0.
10676 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10677 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10678
10679 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10680
10681 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10682 unsigned int, for compatibility with latest gnulib hash module.
10683 * src/state.c (state_hash, state_hasher): Likewise.
10684 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10685 * src/uniqstr.c (hash_uniqstr): Likewise.
10686
10687 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10688
10689 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10690
10691 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10692 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10693 character and string literals.
10694 (unexpected_end): New function.
10695 (unexpected_eof): Use it.
10696 (unexpected_newline): New function.
10697 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10698 actions.
10699
10700 * NEWS: Document %expect-rr.
10701
10702 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10703 Fix typo by replacing $1 with $option.
10704 Remove more 'intl'-related files.
10705 Don't DEFUN AM_INTL_SUBDIR twice.
10706
10707 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10708 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10709 strtoul.c.
10710 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10711 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10712 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10713 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10714 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10715 * src/.cvsignore: Add *.output.
10716
10717 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10718 gets copied to the output file.
10719
10720 2004-04-28 Paul Eggert <eggert@twinsun.com>
10721
10722 Get files from the gnulib and po repositories, instead of relying
10723 on them being in our CVS. Upgrade to latest versions of gnulib
10724 and Automake.
10725
10726 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10727 * bootstrap: Bootstrap from gnulib and po repositories.
10728 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10729 * README-cvs: Document these changes. Remove version numbers from
10730 mentions of build tools, since they change so often. Mention Flex.
10731
10732 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10733 (gl_USE_SYSTEM_EXTENSIONS): Add.
10734 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10735 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
10736 does this for us.
10737 (AC_ISC_POSIX): Remove; we no longer support this
10738 ancient OS, as it gets in the way of latest Autoconf & gnulib.
10739 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10740 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10741 Do not check for C89 headers, except for locale.h which is used
10742 by the Yacc library and must port to K&R hosts.
10743 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10744 Do not check for C89 functions, except for setlocale which is
10745 used by the Yacc library.
10746 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10747 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10748 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10749 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10750 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10751 AM_GNU_GETTEXT): Remove; now done by:
10752 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10753 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10754 for us.
10755
10756 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10757 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10758 Define to empty, as gnulib.mk will do the rest for us.
10759 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10760 for us.
10761 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10762 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10763
10764 * src/files.c: Include gnulib's xstrndup.h.
10765
10766 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10767 (REALLOC): Use xnrealloc, for likewise.
10768 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10769 (strnlen, memrchr): Remove decls; functions no longer used.
10770 Include <stpcpy.h>.
10771
10772 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10773 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10774 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10775 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10776 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10777 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10778 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10779 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10780 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10781 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10782 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10783 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10784 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10785 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10786 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10787 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10788 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10789 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10790 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10791 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10792 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10793 Remove, as these files are now generated automatically
10794 by bootstrap or automake.
10795
10796 * po/ChangeLog: Remove: all but one entry was a duplicate
10797 of this file, and I moved that 2000-11-02 entry here.
10798
10799 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10800 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10801 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10802 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10803 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10804 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10805 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10806 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10807 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10808 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10809 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10810 xstrndup.h.
10811 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10812 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10813 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10814 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10815 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10816 * src/.cvsignore: Remove *_.c.
10817
10818
10819 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10820 support it. (The latest stable gzip doesn't.)
10821
10822 2004-04-27 Paul Eggert <eggert@twinsun.com>
10823
10824 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10825 case, as stos_ is now used by destructors due to the 2004-02-09
10826 change.
10827
10828 Remove more K&R C support.
10829 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10830 * lib/subpipe.c (errno): Remove decl.
10831 Include <stdlib.h> unconditionally.
10832 (EXIT_FAILURE): Remove macro.
10833 * src/complain.c (vfprintf, strerror): Remove.
10834 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10835 unconditionally.
10836 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10837 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10838 (strchr, strspn, memchr): Remove decls.
10839 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10840 unconditionally. Do not declare perror.
10841 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10842 unconditionally.
10843
10844 * src/complain.c (_): Remove useless defn, as system.h defines this.
10845
10846 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10847 with latest obstack.h.
10848 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10849 to procedure types, as obstack.h now does that for us.
10850 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10851
10852 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10853 so that this include file can stand alone.
10854 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10855 does this now. Include subpipe.h first after config.h, to
10856 test whether it can stand alone.
10857
10858 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10859 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10860 unused declaration.
10861
10862 * tests/synclines.at (%union synch line): Put a dummy member in
10863 the union, because empty unions aren't allowed in C. Caught
10864 by GCC 3.4.0.
10865
10866 2004-04-13 Jim Meyering <jim@meyering.net>
10867
10868 * src/conflicts.c (conflicts_print): Correct format string typo:
10869 use `%%' to produce literal `%'. (trivial change)
10870
10871 2004-03-30 Paul Eggert <eggert@twinsun.com>
10872
10873 * src/getargs.c (version): Update copyright year to 2004.
10874
10875 * data/c.m4 (b4_int_type): Use 'short int' rather than
10876 'short', and similarly for 'long', 'unsigned', etc.
10877 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10878 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10879 yy_yypstack, yydumpstack): Likewise.
10880 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10881 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10882 Likewise.
10883 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10884 yy_stack_print, yyparse): Likewise.
10885 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10886 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10887 * lib/bitset.c (bitset_print): Likewise.
10888 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10889 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10890 * lib/bitsetv.c (bitsetv_dump): Likewise.
10891 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10892 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10893 Likewise.
10894 * src/LR0.c (allocate_itemsets): Likewise.
10895 * src/gram.h (rule_number, rule): Likewise.
10896 * src/lalr.h (goto_number): Likewise.
10897 * src/nullable.c (nullable_compute): Likewise.
10898 * src/output.c (prepare_rules): Likewise.
10899 * src/relation.c (relation_print, relation_digraph): Likewise.
10900 * src/relation.h (relation_node): Likewise.
10901 * src/state.h (state_number, transitions, errs, reductions,
10902 struct state): Likewise.
10903 * src/symtab.h (symbol_number, struct symbol): Likewise.
10904 * src/tables.c (vector_number, tally, action_number,
10905 default_goto, goto_actions): Likewise.
10906 * tests/existing.at (GNU Cim Grammar): Likewise.
10907 * tests/regression.at (Web2c Actions): Likewise.
10908
10909 * src/output.c (muscle_insert_short_int_table): Renamed from
10910 muscle_insert_short_table. All uses changed.
10911
10912 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10913
10914 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10915 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10916 Add %expect-rr rule.
10917
10918 * src/scan-gram.l: Recognize %expect-rr.
10919
10920 * src/conflicts.h (expected_sr_conflicts): Rename from
10921 expected_conflicts.
10922 (expected_rr_conflicts): Declare.
10923
10924 * src/conflicts.c (expected_sr_conflicts): Rename from
10925 expected_conflicts.
10926 (expected_rr_conflicts): Define.
10927 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10928 for GLR parsers.
10929 Use expected_sr_conflicts in place of expected_conflicts.
10930 Warn if expected_rr_conflicts used in non-GLR parser.
10931
10932 * doc/bison.texinfo: Add documentation for %expect-rr.
10933
10934 2004-03-08 Paul Eggert <eggert@gnu.org>
10935
10936 Add support for hex token numbers. Suggested by Odd Arild Olsen in
10937 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
10938
10939 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10940 in lalr1.cc.
10941 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10942 * src/scan-gram.l (scan_integer): New function.
10943 ({int}): Use it.
10944 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10945 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10946 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10947 Say "long int", not "long", for uniformity with GNU style.
10948
10949 2004-02-25 Paul Eggert <eggert@twinsun.com>
10950
10951 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10952 compilers. This fixes a problem with Intel's C++ compiler being
10953 chatty, reported by Guido Trentalancia in
10954 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
10955
10956 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10957
10958 Support %destructor and merge error locations in lalr1.cc.
10959
10960 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10961 (Parser::stos_): Define unconditionally.
10962 (Parser::destruct_): New method. Generate its body with
10963 b4_yydestruct_generate.
10964 (Parser::error_start_): New attribute.
10965 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10966 token which are discarded.
10967 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10968 error_start_ when erroneous token are discarded.
10969 (Parser::parse) <yyerrlab1>: Compute the location of the error
10970 token so that it covers all the discarded tokens.
10971 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10972 it can be called with `%skeleton "lalr1.cc"', and do that.
10973
10974 2004-02-02 Paul Eggert <eggert@twinsun.com>
10975
10976 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10977 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10978 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10979 There's no need to mention top_builddir since Automake does that
10980 for us.
10981 (INCLUDES): Remove, as Automake says it's obsolescent.
10982 Contents migrated into AM_CPPFLAGS as described above.
10983 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10984
10985 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10986
10987 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10988 (yyreportSyntaxError): Handle case where lookahead token is
10989 YYEMPTY.
10990
10991 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10992
10993 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10994 resulting parsers are compilable with C++.
10995
10996 2003-12-23 Paul Eggert <eggert@twinsun.com>
10997
10998 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10999 * src/output.c (output_skeleton): Rename local var.
11000 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
11001 Bison tokens, as this runs afoul of the 2003-10-07 change that
11002 disallowed NUL bytes in character constants or string literals.
11003
11004 * tests/local.at: Require Autoconf 2.59's Autotest.
11005 * tests/testsuite.at: Don't include local.at, since we now assume
11006 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
11007 including it.
11008 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
11009 multiple inclusion warnings.
11010
11011 2003-12-02 Akim Demaille <akim@epita.fr>
11012
11013 * doc/bison.texinfo (How Can I Reset the Parser): More about start
11014 conditions.
11015 From Bruno Haible.
11016
11017 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
11018
11019 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
11020
11021 2003-10-07 Paul Eggert <eggert@twinsun.com>
11022
11023 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
11024 if testsuite doesn't exist.
11025
11026 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
11027 literals, unfortunately.
11028 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
11029 Complain about NUL bytes in character constants or string literals.
11030
11031 2003-10-05 Paul Eggert <eggert@twinsun.com>
11032
11033 * NEWS: Don't document %no-default-prec, as it's still
11034 too experimental.
11035 * doc/bison.texinfo: Document %no-default-prec only if
11036 the defaultprec flag is set. Normally it's not.
11037
11038 2003-10-04 Paul Eggert <eggert@twinsun.com>
11039
11040 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
11041 non-modifiable lvalue, instead of a modifiable one.
11042 * doc/bison.texinfo (Actions): Document that $$ can
11043 be assigned to. Do not claim that $$ and $N are
11044 array element references: user code should not rely on this.
11045
11046 2003-10-01 Paul Eggert <eggert@twinsun.com>
11047
11048 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
11049 (grammar_declaration): Use it.
11050 * src/scan-gram.l: New token %no-default-prec.
11051 * tests/conflicts.at: Revamp tests to use %no-default-prec.
11052 * NEWS, doc/bison.texinfo: Document the above.
11053
11054 2003-10-01 Akim Demaille <akim@epita.fr>
11055
11056 VCG no longer supports long_straight_phase.
11057
11058 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
11059 * src/print_graph.c (print_graph): Adjust.
11060
11061 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
11062 and Paul Eggert <eggert@twinsun.com>
11063
11064 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
11065 Table of Symbols): Document %default-prec.
11066 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
11067 (grammar_declaration): Set default_prec on %default-prec.
11068 * src/scan-gram.l (%default-prec): New token.
11069 * src/reader.h (default_prec): New flag.
11070 * src/reader.c: Likewise.
11071 (packgram): Handle it.
11072 * tests/conflicts.at (%default-prec without %prec,
11073 %default-prec with %prec, %default-prec 1): New tests.
11074
11075 2003-09-30 Paul Eggert <eggert@twinsun.com>
11076
11077 * tests/testsuite.at: Include local.at, not input.at, fixing
11078 a typo in the 2003-08-25 patch.
11079
11080 2003-08-27 Akim Demaille <akim@epita.fr>
11081
11082 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
11083 GCC warnings.
11084
11085 2003-08-26 Akim Demaille <akim@epita.fr>
11086
11087 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
11088 "<\#" to avoid magic from Gnus when posting parts of this script.
11089
11090 2003-08-26 Akim Demaille <akim@epita.fr>
11091
11092 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
11093 (Parser::parse): here.
11094 Adjust: nerrs and errstatus is now replaced by...
11095 (Parser::nerrs_, Parser::errstatus_): New.
11096
11097 2003-08-25 Akim Demaille <akim@epita.fr>
11098
11099 * config/announce-gen, Makefile.cfg: New.
11100 * Makefile.am: Adjust.
11101 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
11102 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
11103
11104 2003-08-25 Akim Demaille <akim@epita.fr>
11105
11106 When reducing initial empty rules, Bison parser read an initial
11107 location that is not defined. This results in garbage, and that
11108 affects Bison's own parser. Therefore we need (i) to extend Bison
11109 to support a means to initialize this location, and (ii) to use
11110 this CVS Bison to fix CVS Bison's parser.
11111
11112 * src/reader.h, reader.c (epilogue_augment): Remove, replace
11113 with...
11114 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
11115 * src/parse-gram.y: Adjust.
11116 (%initial-action): New.
11117 (%error-verbose): Since we require CVS Bison, there is no reason
11118 not to use it.
11119 * src/scan-gram.l: Adjust.
11120 * src/Makefile.am (YACC): New, to make sure we use our own parser.
11121 * data/yacc.c (yyparse): Use b4_initial_action.
11122
11123 2003-08-25 Akim Demaille <akim@epita.fr>
11124
11125 * doc/bison.texinfo: Don't promote stdout for error messages.
11126
11127 2003-08-25 Akim Demaille <akim@epita.fr>
11128
11129 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
11130 From Alexandre Duret-Lutz.
11131
11132 2003-08-25 Akim Demaille <akim@epita.fr>
11133
11134 Version 1.875c.
11135
11136 2003-08-25 Akim Demaille <akim@epita.fr>
11137
11138 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
11139 Use them.
11140
11141 2003-08-25 Akim Demaille <akim@epita.fr>
11142
11143 * data/lalr1.cc (Parser::reduce_print_): New.
11144 Use it.
11145
11146 2003-08-25 Akim Demaille <akim@epita.fr>
11147
11148 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
11149 error recovery loops. This patch is based on
11150 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
11151 Also, augment the similarity between lalr1.cc and yacc.c.
11152 Note: the locations of error recovery rules are not correct yet.
11153
11154 * data/lalr1.cc: Comment changes to augment the similarity between
11155 lalr1.cc and yacc.c.
11156 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
11157 (yyerrlab1): Remove, but where it used to be (now the bottom part of
11158 yyerrlab), when hitting EOF, pop the whole stack here instead of
11159 merely falling thru the default error handling mechanism.
11160 (yyerrorlab): New label, with the old contents of YYERROR,
11161 plus the following change: pop the stack of rhs corresponding
11162 to the production that invoked YYERROR. That is how Yacc
11163 behaves (required by POSIX).
11164 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
11165 fail.
11166
11167 2003-08-25 Akim Demaille <akim@epita.fr>
11168
11169 Tune local.at so that people can "autom4te -l autotest calc.at -o
11170 calc" for instance, to extract a sub test suite.
11171
11172 * tests/testsuite.at: Move the initialization, Autotest version
11173 requirement, and AT_TESTED invocation into...
11174 * tests/local.at: here.
11175 * tests/testsuite.at: Include it for compatibility with Autoconf
11176 2.57.
11177 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
11178 be ignore.
11179
11180 2003-08-04 Paul Eggert <eggert@twinsun.com>
11181
11182 Rework code slightly to avoid gcc -Wtraditional warnings.
11183 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
11184 The returned value is now stored in *YY0. All callers changed.
11185 * src/output.c (merge_output): Adjust to the above change.
11186
11187 2003-07-26 Paul Eggert <eggert@twinsun.com>
11188
11189 * data/glr.c (YYASSERT): New macro.
11190 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
11191 yyresolveStates, yyprocessOneStack):
11192 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
11193 Derived from a suggestion by Frank Heckenbach.
11194
11195 2003-07-25 Paul Eggert <eggert@twinsun.com>
11196
11197 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
11198 for portability to K&R C (after ansi2knr, presumably). See
11199 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
11200 by Frank Heckenbach, though I have omitted the structure-initialization
11201 part of his glr-knr.diff patch since I recall that the Portable
11202 C Compiler didn't require that change.
11203
11204 Let the user specify how to allocate and free memory.
11205 Derived from a suggestion by Frank Heckenbach in
11206 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
11207 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
11208 All uses of free, malloc, realloc changed to use these macros,
11209 and unnecessary casts removed.
11210 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
11211
11212 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
11213
11214 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
11215 use s.empty() rather than s == "" to test for empty string; see
11216 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
11217 (trivial change)
11218
11219 2003-06-25 Akim Demaille <akim@epita.fr>
11220
11221 * config/depcomp, config/install-sh: Update from masters.
11222
11223 2003-06-20 Paul Eggert <eggert@twinsun.com>
11224
11225 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
11226 and return properly parenthesized result.
11227 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
11228 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
11229 Remove unnecessary parentheses from uses.
11230 * doc/bison.texinfo (Location Default Action): Describe the
11231 conventions for parentheses.
11232
11233 2003-06-19 Paul Eggert <eggert@twinsun.com>
11234
11235 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
11236 yyreportTree): Do not assume that size_t is the same width as int,
11237 when printing sizes. Print sizes using an unsigned format.
11238 Problem reported by Frank Heckenbach in
11239 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
11240
11241 Port to Forte Developer 7 C compiler.
11242 * data/glr.c (struct YYLTYPE): If locations are not being used,
11243 declare a single dummy member, as empty structs do not conform
11244 to the C standard.
11245 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
11246 the Forte Developer 7 C compiler complains that end-of-loop
11247 code is not reached.
11248
11249 2003-06-17 Paul Eggert <eggert@twinsun.com>
11250
11251 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
11252 avoid warnings from picky compilers about redefinition of PARAMS.
11253
11254 2003-06-17 Paul Eggert <eggert@twinsun.com>
11255
11256 Version 1.875b.
11257
11258 * NEWS: Document 1.875b.
11259
11260 * lib/bbitset.h: Do not include config.h; that's the includer's job.
11261 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
11262 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
11263 Don't use 'index' in comments, as it's a builtin fn on some hosts.
11264 * lib/bitset_stats.c: Include gettext.h unconditionally, as
11265 per recent gettext manual's suggestion.
11266 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
11267 Use prototypes, not old-style definitions.
11268 * lib/lbitset.c (lbitset_unused_clear): Likewise.
11269 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
11270 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
11271 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
11272 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
11273 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
11274 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
11275 vbitset_or_and_cmp, vbitset_copy): Likewise.
11276
11277 * lib/libiberty.h: Do not include config.h; that's the includer's job.
11278 Do not include <stdlib.h>.
11279 (PARAMS): Define unconditionally for C89.
11280 (ATTRIBUTE_NORETURN): Remove.
11281 (ATTRIBUTE_UNUSED): Define unconditionally.
11282
11283 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
11284 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
11285 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
11286 * lib/vbitset.c, lib/vbitset.h: New files.
11287 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
11288 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
11289 from libbitset.
11290
11291 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
11292 `How Can I Reset @code{yyparse}', since texinfo does not allow
11293 arbitrary @ in node names.
11294
11295 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
11296 shouldn't be needed according to the gettext 0.12.1 documentation
11297 but which seem to be needed anyway: codeset.m4 glibc21.m4
11298 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
11299 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
11300 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
11301
11302 * lib/.cvsignore: Add stdbool.h.
11303 * m4/.cvsignore: Add nls.m4, po.m4.
11304
11305 Upgrade to CVS gnulib.
11306 * stdbool_.h: File renamed from stdbool.h.in.
11307 * configure.ac (AM_STDBOOL_H): Invoke this instead of
11308 AC_HEADER_STDBOOL.
11309 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
11310 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
11311 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
11312 (MOSTLYCLEANFILES): New var.
11313 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
11314 (stdbool.h): New rule.
11315 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
11316 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
11317 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
11318 m4/quote.m4: Upgrade to today's gnulib.
11319
11320 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
11321 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
11322 the tests right now.
11323 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
11324 yyerror are declared before use; C99 requires this.
11325
11326 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11327
11328 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
11329 first.
11330 (yyrecoverSyntaxError): Correct the logic for setting and testing
11331 yyerrState.
11332 Correct comment on handling EOF.
11333 Allow states with only a default reduction, rather than failing
11334 (I can't quite reconstruct why these were not allowed before).
11335
11336 Fixes to avoid problem that $-N rules in GLR parsers can cause
11337 buffer overruns, corrupting state.
11338
11339 * src/output.c (prepare_rules): Output max_left_semantic_context
11340 definition.
11341 * src/reader.h (max_left_semantic_context): New variable declaration.
11342 * src/scan-gram.l (max_left_semantic_context): Define.
11343 (handle_action_dollar): Update max_left_semantic_context.
11344 * data/glr.c (YYMAXLEFT): New definition.
11345 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
11346 (yyresolveAction): Ditto.
11347
11348 Fixes to problems with location handling in GLR parsers reported by
11349 Frank Heckenbach (2003/06/05).
11350
11351 * data/glr.c (YYLTYPE): Make trivial if locations not used.
11352 (YYRHSLOC): Add parentheses, and define only if locations used.
11353 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
11354 locations not used.
11355 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
11356 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
11357
11358 * tests/cxx-type.at: Exercise location information; update tests
11359 to differentiate output with and without locations.
11360 Remove forward declarations of yylex and yyerror---caused errors
11361 because default YYLTYPE not yet defined.
11362 Change semantic actions to compute strings, rather than printing
11363 them directly (to test proper passing of semantics values). Change
11364 output to prefix notation and update test data and expected results.
11365 (yylex): Track locations.
11366 (stmtMerge): Return value rather than printing, and include arguments
11367 in value.
11368
11369 2003-06-03 Paul Eggert <eggert@twinsun.com>
11370
11371 Avoid warnings generated by GCC 2.95.4 when Bison is
11372 configured with --enable-gcc-warnings.
11373 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
11374 yy::]b4_parser_class_name[::translate_,
11375 yy::Stack::operator[] (unsigned),
11376 yy::Stack::operator[] (unsigned) const,
11377 yy::Slice::operator[] (unsigned),
11378 yy::Slice::operator[] (unsigned) const):
11379 Rename local vars to avoid warnings.
11380 * tests/glr-regression.at (Improper handling of embedded actions
11381 and $-N in GLR parsers): Remove unused local variable from yylex.
11382 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
11383 (void) as arg when not pure, since we now assume C89 when building
11384 Bison. Pacify GCC by using parameter.
11385
11386 2003-06-02 Paul Eggert <eggert@twinsun.com>
11387
11388 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
11389 yy::Location::lines, yy::Location::columns): Rename arguments
11390 to avoid shadowing; this removes a warning generated by GCC 3.3.
11391
11392 2003-06-01 Paul Eggert <eggert@twinsun.com>
11393
11394 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
11395 to g++, as GCC 3.3 complains if you do it.
11396 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
11397 everything that WARNING_CFLAGS has, except omit warnings
11398 not suitable for C++.
11399 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
11400 * tests/atlocal.in (CXXFLAGS): New var.
11401 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
11402
11403 Fix a GLR parser bug I reported in February; see
11404 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
11405 The problem was that GLR parsers did not conform to the C standard,
11406 because actions like { $1 = $2 + $3; } expanded to expressions
11407 that invoked YYFILL in separate subexpressions, and YYFILL assigned
11408 to a local variable. The C standard says that expressions
11409 like (var = f ()) + (var = f ()) have undefined behavior.
11410 Another problem was that GCC sometimes issues warnings that
11411 yyfill and its parameters are unused.
11412
11413 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
11414 as possibly unused.
11415 (yyfill): New function.
11416 (YYFILL): Use it.
11417 (yyuserAction): Change type of yynormal to bool, so that it matches
11418 the new yyfill signature. Mark it as possibly unused.
11419
11420
11421 Follow up on a bug I reported in February, where a Bison-generated
11422 parser can loop. Provide a test case and a fix for yacc.c. I
11423 don't have a fix for lalr1.cc or for glr.c, unfortunately.
11424 The original bug report is in:
11425 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
11426
11427 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
11428 macro's size was becoming unwieldy.
11429 (yyerrlab): Do not discard an empty lookahead symbol, as this
11430 might destroy garbage.
11431 (yyerrorlab): New label, with the old contents of YYERROR,
11432 plus the following change: pop the stack of rhs corresponding
11433 to the production that invoked YYERROR. That is how Yacc
11434 behaves, and POSIX requires this behavior.
11435 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
11436 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
11437 Define 'alarm' to do nothing if unistd.h is not available.
11438 Add a new rule "exp: '-' error;" to test the above change to
11439 data/yacc.c. Use 'alarm' to abort any test taking longer than
11440 10 seconds, as it's probably looping.
11441 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
11442 Also, the new yacc.c generates two fewer diagnostics for an
11443 existing test.
11444
11445 2003-05-24 Paul Eggert <eggert@twinsun.com>
11446
11447 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
11448 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
11449 This fixes a problem reported by John Bowman when the Compaq/HP
11450 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
11451 -ansi -Wall -gall).
11452 * data/yacc.c (union yyalloc): Likewise.
11453 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
11454
11455 Switch from 'int' to 'bool' where that makes sense.
11456
11457 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
11458 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
11459 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
11460 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
11461 Return or accept bool, not int. All callers changed.
11462 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
11463 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
11464 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
11465 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
11466 bitset_or_and_cmp_): Likewise.
11467 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
11468 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
11469 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
11470 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
11471 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
11472 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
11473 bitset_stats_or_and_cmp): Likewise.
11474 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
11475 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
11476 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
11477 ebitset_xor_cmp): Likewise.
11478 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
11479 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
11480 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
11481 lbitset_xor_cmp): Likewise.
11482 * lib/bbitset.h: Include <stdbool.h>.
11483 (struct bitset_vtable): The following members now return bool, not
11484 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
11485 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
11486 or_and_cmp).
11487 * src/conflicts.c (count_rr_conflicts): Likewise.
11488 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
11489 All uses changed.
11490 * lib/ebitset.c (ebitset_obstack_init): Likewise.
11491 * lib/lbitset.c (lbitset_obstack_init): Likewise.
11492 * src/getargs.c (debug_flag, defines_flag, locations_flag,
11493 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11494 graph_flag): Likewise.
11495 * src/getargs.h (debug_flag, defines_flag, locations_flag,
11496 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11497 graph_flag): Likewise.
11498 * src/output.c (error_verbose): Likewise.
11499 * src/output.h (error_verbose): Likewise.
11500 * src/reader.c (start_flag, typed): Likewise.
11501 * src/reader.h (typed): Likewise.
11502 * src/getargs.c (LOCATIONS_OPTION): New constant.
11503 (long_options, getargs): Use it.
11504 * src/lalr.c (build_relations): Use bool, not int.
11505 * src/nullable.c (nullable_compute): Likewise.
11506 * src/print.c (print_reductions): Likewise.
11507 * src/tables.c (action_row, pack_vector): Likewise.
11508 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
11509 * src/output.c (prepare): Use it.
11510 * src/output.c (token_definitions_output,
11511 symbol_destructors_output, symbol_destructors_output): Use string,
11512 not boolean integer, to keep track of whether to output separator.
11513 * src/print_graph.c (print_core): Likewise.
11514 * src/state.c (state_rule_lookaheads_print): Likewise.
11515
11516 * config/install-sh: Sync from automake 1.7.5.
11517
11518 2003-05-14 Paul Eggert <eggert@twinsun.com>
11519
11520 * src/parse-gram.y (rules_or_grammar_declaration): Require a
11521 semicolon after a grammar declaration, in the interest of possible
11522 future changes to the Bison input language.
11523 Do not allow a stray semicolon at the start of the grammar.
11524 (rhses.1): Allow one or more semicolons after any rule, including
11525 just before "|" as required by POSIX.
11526 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
11527 grammar.
11528
11529 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
11530
11531 %parse-param support for lalr1.cc.
11532
11533 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
11534 b4_cc_constructor_calls, b4_cc_constructor_call,
11535 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
11536 definitions.
11537 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
11538 parse-param arguments.
11539 (yy::b4_parser_class_name): Declare instance variables to
11540 hold parse-param arguments.
11541 * tests/calc.at: s/value/semantic_value/ because value clashes
11542 with a member of yy::b4_parser_class_name. Adjust C++ code
11543 to handle %parse-param. Enable %parse-param test in C++.
11544
11545 2003-05-12 Paul Eggert <eggert@twinsun.com>
11546
11547 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
11548 English a bit. Fix fclose typo. Change "const char" to "char
11549 const", and use ANSI C rather than K&R for "main". Suggest
11550 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
11551 and suggest yy_switch_to_buffer.
11552
11553 2003-05-05 Paul Eggert <eggert@twinsun.com>
11554
11555 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
11556 C89. This avoids a diagnostic on compilers that define __STDC__
11557 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
11558 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11559
11560 2003-05-03 Paul Eggert <eggert@twinsun.com>
11561
11562 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
11563 Do not overrun array bounds.
11564 This should fix a bug reported today by Olatunji Oluwabukunmi in
11565 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
11566
11567 2003-04-29 Akim Demaille <akim@epita.fr>
11568
11569 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
11570 * src/getargs.c, src/getargs.h: here, as bool, not int.
11571 (nondeterministic_parser): New.
11572 * src/parse-gram.y, src/scan-gram.l: Support
11573 %nondeterministic-parser.
11574 * src/output.c (prepare): Use nondeterministic_parser instead
11575 of glr_parser where appropriate.
11576 * src/tables.c (conflict_row, action_row, save_row)
11577 (token_actions, token_actions, pack_vector): Ditto.
11578
11579 2003-04-29 Akim Demaille <akim@epita.fr>
11580
11581 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
11582
11583 2003-04-29 Akim Demaille <akim@epita.fr>
11584
11585 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
11586 with %pure-parser and %locations to exercise the patch from Yakov
11587 Markovitch below.
11588
11589 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
11590
11591 * data/yacc.c: (b4_lex_param): Corrected for the case where
11592 %lex-param is provided and %pure-parser isn't.
11593
11594 2003-04-27 Paul Eggert <eggert@twinsun.com>
11595
11596 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
11597 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
11598 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
11599 if it is not defined.
11600 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
11601
11602 2003-04-26 Paul Eggert <eggert@twinsun.com>
11603
11604 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
11605 Declare to be of type suitable for the ninf value itself, not of
11606 type suitable for the corresponding table, since the latter might
11607 be unsigned but the ninf value might be negative. This fixes a
11608 bug reported by Alexandre Duret-Lutz in
11609 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
11610
11611 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
11612 invokes it. We shouldn't invoke it twice because it will attempt
11613 to put error.o in the archive twice. This fixes a glitch reported
11614 by Martin Mokrejs in
11615 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11616
11617 2003-04-21 Paul Eggert <eggert@twinsun.com>
11618
11619 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
11620 to gnulib.
11621
11622 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
11623
11624 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
11625 Fix obvious typo that results in uncompilable GLR parsers
11626 when both %pure-parser and %locations are used. (trivial change)
11627
11628 2003-04-17 Paul Eggert <eggert@twinsun.com>
11629
11630 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
11631 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
11632 Do not insert the expected token via unput, as this runs afoul
11633 of a POSIX-compatibility bug in flex 2.5.31.
11634 All uses changed to BEGIN the parent state,
11635 since we no longer insert the expected token via unput.
11636 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
11637 that is no longer emitted after the above change.
11638
11639 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
11640 the first one. This change is from Paul Hilfinger, and it fixes
11641 regression reported by Werner Lemberg in
11642 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
11643
11644 (resolve_sr_conflict): Don't invoke state_errs_set
11645 unless one or more tokens have been explicitly made errors.
11646 Otherwise, the above change causes Bison to abort.
11647
11648 * tests/existing.at (GNU pic Grammar): New test case, taken from
11649 Lemberg's email.
11650
11651 2003-03-31 Akim Demaille <akim@epita.fr>
11652
11653 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
11654
11655 2003-03-31 Akim Demaille <akim@epita.fr>
11656
11657 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11658 output.
11659
11660 2003-03-31 Akim Demaille <akim@epita.fr>
11661
11662 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11663 From Paul Hilfinger.
11664
11665 2003-03-29 Akim Demaille <akim@epita.fr>
11666
11667 * m4/error.m4: Do not put under dynamic conditions some code which
11668 expansion is under static control.
11669
11670 2003-03-29 Akim Demaille <akim@epita.fr>
11671
11672 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11673
11674 2003-03-29 Akim Demaille <akim@epita.fr>
11675
11676 * doc/bison.texinfo (Strings are Destroyed): New.
11677
11678 2003-03-13 Paul Eggert <eggert@twinsun.com>
11679
11680 * .cvsignore: Add configure.lineno.
11681 * src/.cvsignore: Add yacc.
11682 * tests/.cvsignore: Add testsuite.log.
11683 * doc/fdl.texi: Sync with latest FSF version.
11684
11685 2003-03-12 Paul Eggert <eggert@twinsun.com>
11686
11687 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11688 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11689 cursor, instead of leaving it undefined. This fixes a bug
11690 reported by Tim Van Holder in
11691 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
11692 * tests/input.at (Torturing the Scanner): Test the scanner on
11693 an empty input file, which was Tim Van Holder's test case.
11694
11695 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11696 <sys/resource.h> can be included, include sys/time.h and
11697 sys/times.h first, if available. This works around the SunOS
11698 4.1.4 porting bug reported by Bruce Becker in
11699 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
11700
11701 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11702 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11703 AC_HEADER_SYS_WAIT.
11704
11705 Merge changes from gnulib. This was prompted because the CVS
11706 snapshot didn't build on Solaris 7 due to strnlen problems.
11707
11708 These changes need to be merged back into gnulib:
11709 * lib/hash.c: Include <stdbool.h> unconditionally.
11710 * m4/onceonly.m4 (m4_quote): New macro.
11711 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11712 Quote AC_FOREACH variable-expansions properly.
11713 The 2003-01-03 obstack.h change also needs merging.
11714 {end of changes requiring merging}
11715
11716 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11717 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11718 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11719 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11720 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11721 New files, imported from gnulib.
11722 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11723 above.
11724
11725 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11726 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11727 gnulib sources.
11728
11729 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11730 Add.
11731 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11732 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11733 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11734 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11735 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11736 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11737 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11738 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11739 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11740 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11741 (jm_PREREQ_ARGMATCH): Remove.
11742 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11743 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11744
11745 * src/system.h: Include <stdbool.h> unconditionally.
11746
11747 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11748 assuming at least C89 in the bitset code for some time now.
11749
11750 2003-03-03 Akim Demaille <akim@epita.fr>
11751
11752 * ro.po: New.
11753
11754 2003-03-02 Akim Demaille <akim@epita.fr>
11755
11756 * doc/bison.texinfo (Table of Symbols): Reactivate the
11757 documentation for %lex-param, and %parse-param.
11758
11759 2003-03-02 Akim Demaille <akim@epita.fr>
11760
11761 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11762 generate verbose error messages.
11763 Use the number of tokens as an upper bound in yytname, as it
11764 cannot be a non terminal.
11765
11766 2003-03-02 Akim Demaille <akim@epita.fr>
11767
11768 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11769 message.
11770
11771 2003-03-02 Akim Demaille <akim@epita.fr>
11772
11773 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11774 Use them to exercise yycheck overrun.
11775 Based on Andrew Suffield's grammar.
11776
11777 2003-03-02 Akim Demaille <akim@epita.fr>
11778
11779 Create tests/local.at for Bison generic testing macros.
11780
11781 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11782 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11783 This new file.
11784 * tests/calc.at (AT_CHECK_CALC): Adjust.
11785 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11786 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11787 * tests/local.at: here.
11788 (AT_COMPILE_CXX): Tags the tests using it as c++.
11789 Ignore the test if CXX is not functional.
11790
11791 2003-03-01 Paul Eggert <eggert@twinsun.com>
11792
11793 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11794 not loc->end, since loc->end might contain garbage and this leads
11795 to undefined behavior on some platforms.
11796 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11797 depend on *loc, so that the reader doesn't give the the false
11798 impression that *loc is initialized.
11799 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11800 does not survive the return.
11801
11802 2003-03-01 Akim Demaille <akim@epita.fr>
11803
11804 * src/scan-gram.l (code_start): Always initialize it when entering
11805 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11806 yylex invocation. An alternative would be making it static, but
11807 then it starts with the second %%'s beginning, instead of its end.
11808
11809 2003-02-28 Paul Eggert <eggert@twinsun.com>
11810
11811 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11812 around a UnixWare 7.1.1 porting bug reported by John Hughes in
11813 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
11814
11815 2003-02-26 Paul Eggert <eggert@twinsun.com>
11816
11817 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11818 Remove Sequent/Pyramid discussion (nobody uses them any more).
11819 Merge VMS and MS-DOS discussion; these ports may well be dead
11820 but let's keep mentioning them for now. Put <> around email
11821 addresses. Add copyright notice.
11822
11823 2003-02-24 Paul Eggert <eggert@twinsun.com>
11824
11825 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11826 to avoid collision with flex use of yylineno.
11827 Problem reported by Bruce Lilly in
11828 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
11829 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11830 * data/yacc.c (yy_reduce_print): Likewise.
11831
11832 * config/depcomp: Sync with Automake 1.7.3.
11833
11834 2003-02-21 Akim Demaille <akim@epita.fr>
11835
11836 * data/lalr1.cc: Use temporary variables instead of casts to
11837 change integer types.
11838 Suggested by Paul Eggert.
11839
11840 2003-02-21 Akim Demaille <akim@epita.fr>
11841
11842 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11843 to avoid confusions with lalr1.cc's notion of Position.
11844 Suggested by Paul Eggert.
11845
11846 2003-02-20 Akim Demaille <akim@epita.fr>
11847
11848 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11849 before initial_columns.
11850 (location.hh): Use consistent variable names when defining the
11851 operator<<.
11852 Use "last" so that we subtract from Positions, not from unsigned.
11853
11854 2003-02-20 Akim Demaille <akim@epita.fr>
11855
11856 * data/lalr1.cc (position.hh): New subfile, including the extended
11857 and Doxygen'ed documentation of class Position.
11858 (location.hh): Use it.
11859 Document a` la Doxygen.
11860 With the help of Benoit Perrot.
11861
11862 2003-02-20 Akim Demaille <akim@epita.fr>
11863
11864 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11865 AT_YACC_IF.
11866 Redefine AT_YYERROR_SEES_LOC_IF using it.
11867 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11868 not defined.
11869 Don't use the location in yy::Parser::error_ and
11870 yy::Parser::print_ when not %locations.
11871 Activate more lalr1.cc tests.
11872
11873 2003-02-19 Akim Demaille <akim@epita.fr>
11874
11875 * data/lalr1.cc: When displaying a line number, be sure to make it
11876 an int.
11877
11878 2003-02-19 Akim Demaille <akim@epita.fr>
11879
11880 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11881 Remove, useless.
11882 (YYABORT, YYACCEPT, YYERROR): New.
11883 * tests/calc.at: Renable the lalr1.cc test.
11884
11885 2003-02-19 Akim Demaille <akim@epita.fr>
11886
11887 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11888 error recovery, mixing with/without pops and discarding of the
11889 lookahead.
11890 Exercise YYERROR.
11891 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11892
11893 2003-02-17 Paul Eggert <eggert@twinsun.com>
11894
11895 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11896 * tests/testsuite.at (AT_COMPILE): Use them.
11897 This fixes the testsuite problem reported by Robert Lentz in
11898 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
11899
11900 2003-02-12 Paul Eggert <eggert@twinsun.com>
11901
11902 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11903 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
11904 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
11905 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11906 Check for malloc failure, for consistency with yacc.c.
11907 (yytname_size): Remove, for consistency with yacc.c.
11908
11909 The bug still remains in data/lalr1.cc, as I didn't have time
11910 to fix it there.
11911
11912 2003-02-06 Akim Demaille <akim@epita.fr>
11913
11914 * configure.ac (GXX): Rename as...
11915 (CXX): this, to keep the original Autoconf semantics.
11916 Require 2.57.
11917 * data/lalr1.cc: Fix b4_copyright invocations.
11918 If YYDEBUG is not defined, don't depend upon name_ being defined.
11919 (location.hh): Include string and iostream.
11920 (Position::filename): New member.
11921 (Position::Position ()): New.
11922 (operator<< (Position)): New.
11923 (operator- (Position, int)): New.
11924 (Location::first, Location::last): Rename as...
11925 (Location::begin, Location::end): these, to mock the conventional
11926 iterator names.
11927 (operator<< (Location)): New.
11928 * tests/atlocal.in (CXX): New.
11929 * tests/testsuite.at (AT_COMPILE_CXX): New.
11930 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11931 locations in a more synthetic way.
11932 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11933 lalr1.cc is used.
11934 Adjust the C locations to match those from Emacs: first column is
11935 column 0.
11936 Change all the expected results.
11937 Conform to the GCS: simplify the locations when applicable.
11938 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11939 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11940 these CPP macros with the m4 macros new defined by...
11941 (AT_CHECK_PUSHDEFS): this, i.e.:
11942 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
11943 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
11944 New macros.
11945 (AT_CHECK_POPDEFS): Undefine them.
11946 (AT_CHECK_CALC_LALR1_CC): New.
11947 Use it for the first lalr1.cc test.
11948
11949 2003-02-04 Akim Demaille <akim@epita.fr>
11950
11951 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11952 Location as is defined.
11953
11954 2003-02-04 Akim Demaille <akim@epita.fr>
11955
11956 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11957 name_ being defined.
11958
11959 2003-02-03 Paul Eggert <eggert@twinsun.com>
11960
11961 * src/gram.h (start_symbol): Remove unused decl.
11962
11963 Use more-consistent naming conventions for local vars.
11964
11965 * src/derives.c (derives_compute): Change type of local var from
11966 int to rule_number.
11967 * src/gram.c (grammar_rules_partial_print): Likewise.
11968 * src/print.c (print_core): Likewise.
11969 * src/reduce.c (reduce_grammar_tables): Likewise.
11970
11971 * src/gram.c (grammar_dump): Change name of item_number *
11972 local var from r to rp.
11973 * src/nullable.c (nullable_compute): Likewise.
11974
11975 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11976
11977 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11978 for symbol or symbol_number var.
11979 * src/reader.c (grammar_start_symbol_set): Likewise.
11980 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11981 Likewise.
11982 * src/state.c (transitions_to): Likewise.
11983 * src/state.h: Likewise.
11984 * src/tables.c (symbol_number_to_vector_number): Likewise.
11985
11986 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11987 char * var.
11988
11989 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11990 var.
11991
11992 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11993 var.
11994
11995 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11996 Use str, not s, for char * var. Use ch, not c, for character var.
11997 Use size for size var.
11998
11999 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
12000 char * var.
12001 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
12002 uniqstr var.
12003 * src/uniqstr.h: Likewise.
12004
12005 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12006 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12007 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
12008 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
12009 param to have same name as that of enum, so that we don't use
12010 "s" to stand for a non-state.
12011
12012 2003-02-02 Akim Demaille <akim@epita.fr>
12013
12014 * src/scan-skel.l: Scan more than one inert character per yylex
12015 invocation.
12016
12017 2003-02-01 Paul Eggert <eggert@twinsun.com>
12018
12019 Version 1.875a.
12020
12021 * po/LINGUAS: Add ms.
12022
12023 2003-01-30 Akim Demaille <akim@epita.fr>
12024
12025 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
12026
12027 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12028
12029 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
12030 of $1.
12031
12032 Changes in response to error report by S. Eken: GLR mode does not
12033 handle negative $ indices or $ indices in embedded rules correctly.
12034 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
12035
12036 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
12037 (b4_rhs_location): Ditto.
12038 (yyfill): New function to copy from stack tree into array
12039 incrementally.
12040 (yyuserAction): Modify to allow incremental move of semantic values
12041 to rhs array when in GLR mode.
12042 Define YYFILL to use in user-defined actions to fill semantic array
12043 as needed.
12044 Remove dummy use of yystack, as there is now a guaranteed use.
12045 (yydoAction): Modify to allow incremental move of semantic values
12046 to rhs array when in GLR mode.
12047 (yyresolveAction): Ditto.
12048 (yyglrShiftDefer): Update comment.
12049 (yyresolveStates): Use X == NULL for pointers, not !X.
12050 (yyglrReduce): Ditto.
12051 (yydoAction): Ditto
12052
12053 * tests/glr-regr1.at: Rename to ...
12054 * tests/glr-regression.at: Add new regression test for the problems
12055 described above (adapted from S. Eken).
12056 Update copyright notice.
12057 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
12058 * tests/Makefile.am: Ditto.
12059
12060 2003-01-28 Paul Eggert <eggert@twinsun.com>
12061
12062 * data/lalr1.cc: Do not use @output_header_name@ unless
12063 b4_defines_flag is set. This fixes two bugs reported by
12064 Tim Van Holder in
12065 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
12066 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
12067
12068 2003-01-21 Paul Eggert <eggert@twinsun.com>
12069
12070 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
12071 we don't need to worry about yyerrlab1 being reported as an
12072 "unused label" by non-GCC C compilers. The downside is that if
12073 locations are used then a couple of statements are duplicated each
12074 time YYERROR is invoked, but the upside is that the warnings
12075 should vanish.
12076 (yyerrlab1): Move code to YERROR.
12077 (yyerrlab2): Remove. Change uses back to yyerrlab1.
12078 This reverts some of the 2002-12-27 change.
12079
12080 2003-01-17 Paul Eggert <eggert@twinsun.com>
12081
12082 * src/output.c (symbol_printers_output): Fix typo that led
12083 to core dump. Problem reported by Antonio Rus in
12084 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
12085
12086 2003-01-13 Akim Demaille <akim@epita.fr>,
12087 Quoc Peyrot <chojin@lrde.epita.fr>,
12088 Robert Anisko <anisko_r@lrde.epita.fr>
12089
12090 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
12091 when the stacks contain one element, as the loop would otherwise
12092 free the last state, and then use the top state (the one we just
12093 popped). This means that the initial elements will not be freed
12094 explicitly, as is the case in yacc.c; it is not a problem, as
12095 these elements have fake values.
12096
12097 2003-01-11 Paul Eggert <eggert@twinsun.com>
12098
12099 * NEWS: %expect-violations are now just warnings, reverting
12100 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
12101 bootstrapping problem reported by Matthias Klose; see
12102 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
12103 * src/conflicts.c (conflicts_print): Likewise.
12104 * tests/conflicts.at (%expect not enough, %expect too much,
12105 %expect with reduce conflicts): Likewise.
12106 * doc/bison.texinfo (Expect Decl): Document this. Also mention
12107 that the warning is enabled if the number of conflicts changes
12108 (not necessarily increases).
12109
12110 * src/getargs.c (version): Update copyright year.
12111
12112 2003-01-09 Akim Demaille <akim@epita.fr>
12113
12114 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
12115
12116 2003-01-08 Paul Eggert <eggert@twinsun.com>
12117
12118 * Makefile.maint (WGETFLAGS):
12119 New macro, containing "-C off" to disable proxy caches.
12120 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
12121 (rel-check): Use $(WGET) instead of wget.
12122
12123 2003-01-06 Paul Eggert <eggert@twinsun.com>
12124
12125 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
12126 the GLR paper of Scott, Johnstone and Hussain.
12127
12128 2003-01-04 Paul Eggert <eggert@twinsun.com>
12129
12130 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
12131 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
12132 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
12133 (EXTRA_LIBRARIES): New var, for liby.a.
12134 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
12135 (EXTRA_SCRIPTS): New var, for yacc.
12136
12137 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
12138 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
12139 Problem reported by Nelson H. F. Beebe.
12140
12141 2003-01-03 Paul Eggert <eggert@twinsun.com>
12142
12143 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
12144 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
12145 when compiling Bison 1.875's `bitset bset = obstack_alloc
12146 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
12147
12148 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
12149 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
12150 grow to a huge size with typical invocation.
12151
12152 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
12153 Use the pattern recommended by Autoconf 2.57, except also protect
12154 against double-definition.
12155 * src/system.h: Likewise.
12156 Portability issues reported by Nelson H. F. Beebe.
12157
12158 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
12159 All uses changed. Provide a definition in both C and C++.
12160 (yytrue, yyfalse): Define even if defined (__cplusplus).
12161
12162 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
12163 Reported by Nelson H. F. Beebe.
12164
12165 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
12166
12167 2003-01-02 Paul Eggert <eggert@twinsun.com>
12168
12169 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
12170 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
12171 Bug reported by Nelson H. F. Beebe.
12172
12173 2003-01-01 Paul Eggert <eggert@twinsun.com>
12174
12175 * Version 1.875.
12176
12177 2002-12-30 Paul Eggert <eggert@twinsun.com>
12178
12179 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
12180 Moved here from...
12181 (<INITIAL>","): Here. This causes stray "," to be treated
12182 more uniformly.
12183
12184 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
12185 last brace in braced code when not in Yacc mode, for compatibility
12186 with Bison 1.35. This resurrects the 2001-12-15 patch to
12187 src/reader.c.
12188
12189 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
12190 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
12191
12192 2002-12-28 Paul Eggert <eggert@twinsun.com>
12193
12194 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
12195 that of SYM's type. This fixes Debian bug 168069, reported by
12196 Thomas Olsson.
12197
12198 2002-12-28 Paul Eggert <eggert@twinsun.com>
12199
12200 Version 1.75f.
12201
12202 Switch back to the Yacc style of conflict reports, undoing some
12203 of the 2002-07-30 change.
12204 * doc/bison.texinfo (Understanding): Use Yacc style for
12205 conflict reports. Also, use new way of locating rules.
12206 * src/conflicts.c (conflict_report):
12207 Renamed from conflict_report_yacc, removing the old
12208 'conflict_report'. Translate the entire conflict report at once,
12209 so that we don't assume that "," has the same interpretation in
12210 all languages.
12211 (conflicts_output): Use Yacc-style conflict report for each state,
12212 instead of our more-complicated style.
12213 (conflicts_print): Use Yacc-style conflict report, except print
12214 the input file name when not emulating Yacc.
12215 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
12216 Conflicted Reduction, %expect not enough, %expect too much,
12217 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
12218 * tests/existing.at (GNU Cim Grammar): Likewise.
12219 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
12220
12221 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
12222 fatal): Don't invoke fflush; it's not needed and it might even be
12223 harmful for stdout, as stdout might not be open.
12224 * src/reduce.c (reduce_print): Likewise.
12225
12226 2002-12-27 Paul Eggert <eggert@twinsun.com>
12227
12228 Fix a bug where error locations were not being recorded correctly.
12229 This problem was originally reported by Paul Hilfinger in
12230 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
12231
12232 * data/yacc.c (yyparse): New local var yylerrsp, to record the
12233 top of the location stack's error locations.
12234 (yyerrlab): Set it. When discarding a token, push its location
12235 onto yylerrsp so that we don't lose track of the error's end.
12236 (yyerrlab1): Now is only the target of YYERROR, so that we can
12237 properly record the location of the action that failed. For GCC
12238 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
12239 GCC warning about yyerrlab1 being unused if YYERROR is unused.
12240 (yyerrlab2): New label, which yyerrlab now falls through to.
12241 Compute the error's location by applying YYLLOC_DEFAULT to
12242 the locations of all the symbols that went into the error.
12243 * doc/bison.texinfo (Location Default Action): Mention that
12244 YYLLOC_DEFAULT is also invoked for syntax errors.
12245 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
12246 Error locations include the locations of all the tokens that were
12247 discarded, not just the last token.
12248
12249 2002-12-26 Paul Eggert <eggert@twinsun.com>
12250
12251 * src/files.c: Include quote.h.
12252 (compute_output_file_names): Warn if we detect conflicting
12253 outputs to the same file. This should catch the misunderstanding
12254 exemplified by Debian Bug 165349, reported by Bruce Stephens..
12255
12256 * src/conflicts.c (conflicts_print): If the user specifies
12257 "%expect N", report an error if there are any reduce/reduce
12258 conflicts. This is what the manual says should happen.
12259 This fixes Debian bug 130890, reported by Anthony DeRobertis.
12260 * tests/conflicts.at (%expect with reduce conflicts): New test.
12261
12262 Don't use m4_include on relative file names, as it doesn't work as
12263 desired if there happens to be a file with that name under ".".
12264
12265 * m4sugar/version.m4: Remove; it was included but it wasn't used.
12266 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
12267 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
12268 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
12269 * src/output.c (output_skeleton): Use full path names when
12270 specifying a file to include; don't rely on include path, as
12271 it's unreliable when the working file contains a file with
12272 that name.
12273
12274 2002-12-25 Paul Eggert <eggert@twinsun.com>
12275
12276 Remove obsolete references to bison.simple and bison.hairy.
12277 Problem mentioned by Aubin Mahe in
12278 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
12279 * data/glr.c: Comment fix.
12280 * doc/bison.1: Remove references. Also, mention "yacc".
12281
12282 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
12283 with -g option.
12284
12285 * src/parse-gram.y (declaration): Use enum "report_states" rather
12286 than its numeric value 1.
12287
12288 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
12289 opening a new one. This fixes Debian bug 165349, reported by
12290 Bruce Stephens.
12291
12292 2002-12-24 Paul Eggert <eggert@twinsun.com>
12293
12294 Version 1.75e.
12295
12296 * Makefile.maint (cvs-update): Don't assume that the shell
12297 supports $(...), as Solaris sh doesn't.
12298
12299 * src/parse-gram.y (lloc_default): Remove test for empty
12300 nonterminals at the end, since it didn't change the result.
12301
12302 2002-12-24 Paul Eggert <eggert@twinsun.com>
12303
12304 If the user does not define YYSTYPE as a macro, Bison now declares it
12305 using typedef instead of defining it as a macro. POSIX requires this.
12306 For consistency, YYLTYPE is also declared instead of defined.
12307
12308 %union directives can now have a tag before the `{', e.g., the
12309 directive `%union foo {...}' now generates the C code
12310 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
12311 The default union tag is `YYSTYPE', for compatibility with Solaris 9
12312 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
12313 instead of `yyltype'.
12314
12315 `yystype' and `yyltype' are now obsolescent macros instead of being
12316 typedefs or tags; they are no longer documented and will be
12317 withdrawn in a future release.
12318
12319 * data/glr.c (b4_location_type): Remove.
12320 (YYSTYPE): Renamed from yystype.
12321 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
12322 (struct YYLTYPE): Renamed from struct yyltype.
12323 (YYLTYPE): Renamed from yyltype.
12324 (yyltype, yystype): New (and obsolescent) macros,
12325 for backward compatibility.
12326 * data/yacc.c: Likewise.
12327
12328 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
12329 does not specify a union tag. This is for compatibility with
12330 Solaris 9 yacc.
12331
12332 * src/parse-gram.y (add_param): 2nd arg is now char * not char
12333 const *, since it is now modified by stripping surrounding { }.
12334 (current_braced_code): Remove.
12335 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
12336 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
12337 trailing " {...}". Now of type <chars>.
12338 (grammar_declaration): Adjust to bundled tokens.
12339 (code_content): Remove; stripping is now done by add_param.
12340 (print_token_value): Print contents of bundled tokens.
12341 (token_name): New function.
12342
12343 * src/reader.h (braced_code, current_braced_code): Remove.
12344 (token_name): New decl.
12345
12346 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
12347 token_type, not braced_code code_kind. All uses changed.
12348 (SC_PRE_CODE): New state, for scanning after a keyword that
12349 has (or usually has) an immediately-following braced code.
12350 (token_type): New local var, to keep track of which token type
12351 to return when scanning braced code.
12352 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
12353 <INITIAL>"%parse-param", <INITIAL>"%printer",
12354 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
12355 instead of returning a token type immediately.
12356 (<INITIAL>"{"): Set token type.
12357 (<SC_BRACED_CODE>"}"): Use it.
12358 (handle_action_dollar, handle_action_at): Now returns bool
12359 indicating success. Fail if ! current_rule; this prevents a core dump.
12360 (handle_symbol_code_dollar, handle_symbol_code_at):
12361 Remove; merge body into caller.
12362 (handle_dollar, handle_at): Complain in invalid contexts.
12363
12364 * NEWS, doc/bison.texinfo: Document the above.
12365 * NEWS: Fix years and program names in copyright notice.
12366
12367 2002-12-17 Paul Eggert <eggert@twinsun.com>
12368
12369 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
12370 Reporting, Table of Symbols): Omit mentions of %lex-param and
12371 %parse-param from the documentation for now.
12372
12373 2002-12-15 Paul Eggert <eggert@twinsun.com>
12374
12375 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
12376 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
12377 lookahead symbol, and which sets yychar in parser actions) and it
12378 disagreed with the Bison documentation. Bug
12379 reported by Andrew Walrond.
12380
12381 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
12382 as the caller now does that.
12383 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
12384 (YYEMPTY): Parenthesize right hand side, since others use it.
12385 (yyparse): Don't assume that our generated code is the only code
12386 that sets yychar.
12387
12388 2002-12-13 Paul Eggert <eggert@twinsun.com>
12389
12390 Version 1.75d.
12391
12392 POSIX requires a "yacc" command.
12393 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
12394 (MOSTLYCLEANFILES): Add yacc.
12395 (yacc): New rule.
12396 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
12397 as an alias for bison y.
12398
12399 * po/LINGUAS: Add da.
12400
12401 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
12402 problem with latest <getopt.h>.
12403 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
12404
12405 * doc/fdl.texi: Upgrade to 1.2.
12406 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
12407 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
12408 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
12409 gnulib.
12410 * config/install-sh: Sync with autotools.
12411
12412 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
12413 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12414 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
12415 locations are requested.
12416 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
12417 locations are requested.
12418
12419 2002-12-12 Paul Eggert <eggert@twinsun.com>
12420
12421 Remove unportable casts and storage allocation tricks.
12422 While we're at it, remove almost all casts, since they
12423 usually aren't needed and are a sign of trouble.
12424
12425 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
12426
12427 * src/derives.c (derives_compute): Do not subtract NTOKENS from
12428 the pointer DSET returned by malloc; this isn't portable.
12429 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
12430 Similarly for DERIVES.
12431 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
12432 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
12433 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
12434
12435 * src/derives.c (derives_compute): Do not bother invoking
12436 int_of_rule_number, since rule numbers are integers.
12437
12438 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
12439 rather than XMALLOC (char, N).
12440
12441 * src/files.c (filename_split): Rewrite to avoid cast.
12442
12443 * src/gram.h (symbol_number_as_item_number,
12444 item_number_as_symbol_number, rule_number_as_item_number,
12445 item_number_as_rule_number):
12446 Now inline functions rather than macros, to avoid casts.
12447 * src/state.h (state_number_as_int): Likewise.
12448 * src/tables.c (state_number_to_vector_number,
12449 symbol_number_to_vector_number): Likewise.
12450
12451 * src/gram.h (int_of_rule_number): Remove; no longer used.
12452
12453 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
12454 since the resulting storage is always stored into.
12455
12456 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
12457 where it's needed.
12458
12459 * src/muscle_tab.c (muscle_m4_output):
12460 Now inline. Return bool, not int.
12461 * src/state.c (state_compare): Likewise.
12462 * src/symtab.c (symbol_check_defined,
12463 symbol_check_alias_consistency, symbol_pack, symbol_translation,
12464 hash_compare_symbol, hash_symbol):
12465 Likewise.
12466 * src/uniqstr.c (uniqstr_print): Likewise.
12467 * src/muscle_tab.c (muscle_m4_output_processor):
12468 New function, to avoid casts.
12469 * src/state.c (state_comparator, stage_hasher): Likewise.
12470 * src/symtab.c (symbol_check_defined_processor,
12471 symbol_check_alias_consistency_processor, symbol_pack_processor,
12472 symbol_translation_processor, hash_symbol_comparator,
12473 hash_symbol_hasher): Likewise.
12474 * src/uniqstr.c (uniqstr_print_processor): Likewise.
12475 * src/muscle_tab.c (muscles_m4_output):
12476 Use new functions instead of casting old functions unportably.
12477 * src/state.c (state_hash_new): Likewise.
12478 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
12479 symbols_token_translations_init):
12480 Likewise.
12481 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
12482
12483 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
12484 var instead of casting to long, to avoid casts.
12485 (prepare_states): Use MALLOC rather than alloca, so that we don't
12486 have to worry about alloca.
12487 * src/state.c (state_hash_lookup): Likewise.
12488
12489 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
12490 local var instead of casting to unsigned char, to avoid casts.
12491
12492 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
12493 STATE_ALLOC): Remove.
12494 (transitions_new, errs_new, reductions_new, state_new): Use malloc
12495 rather than calloc, and use offsetof to avoid allocating slightly
12496 too much storage.
12497 (state_new): Initialize all members.
12498
12499 * src/state.c (state_hash): Use unsigned accumulator, not signed.
12500
12501 * src/symtab.c (symbol_free): Remove; unused.
12502 (symbol_get): Remove cast in lhs of assignment.
12503 (symbols_do): Now static. Accept generic arguments, not
12504 hashing-related ones.
12505
12506 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
12507 (symbol_processor): Remove.
12508 (symbols_do): Remove decl; now static.
12509
12510 * src/system.h (alloca): Remove; decl no longer needed.
12511 (<stddef.h>): Include, for offsetof.
12512 (<inttypes.>, <stdint.h>): Include if available.
12513 (uintptr_t): New type, if system lacks it.
12514 (CALLOC, MALLOC, REALLOC): New macros.
12515 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
12516 new macros.
12517
12518 * src/tables.c (table_size): Now int, to pacify GCC.
12519 (table_grow, table_ninf_remap): Use signed table size.
12520 (save_row): Don't bother initializing locals when not needed.
12521 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
12522 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
12523
12524 * src/vcg.h: Correct misspellings.
12525
12526 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
12527
12528
12529 * src/getargs.c (getargs): Don't assume EOF == -1.
12530
12531 2002-12-09 Paul Eggert <eggert@twinsun.com>
12532
12533 Change identifier spellings to avoid collisions with names
12534 that are reserved by POSIX.
12535
12536 Don't use names ending in _t, since POSIX reserves them.
12537 For consistency, remove _e and _s endings -- they're weren't
12538 needed to remove ambiguity. All uses changed.
12539 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
12540 turn was just renamed from struniq_t.
12541 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
12542 which in turn was just renamed from struniq_processor_t.
12543 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
12544 in turn was renamed from hash_compare_struniq_t.
12545 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
12546 (state_list): Renamed from state_list_t.
12547 * src/assoc.h (assoc): Renamed from assoc_t.
12548 * src/conflicts.c (enum conflict_resolution): Renamed from
12549 enum conflict_resolution_e.
12550 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
12551 (rule_list): Renamed from rule_list_t.
12552 * src/getargs.h (enum trace): Renamed from enum trace_e.
12553 (enum report): Renamed from enum report_e.
12554 * src/gram.h (item_number): Renamed from item_number_t.
12555 (rule_number): Renamed from rule_number_t.
12556 (struct rule_s): Remove the "rule_s" part; not used.
12557 (rule): Renamed from rule_t.
12558 (rule_filter): Renamed from rule_filter_t.
12559 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
12560 (goto_list): Renamed from goto_list_t.
12561 * src/lalr.h (goto_number): Renamed from goto_number_t.
12562 * src/location.h (location): Renamed from location_t.
12563 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
12564 and moved here from:
12565 * src/muscle_tab.h (muscle_entry_t): here.
12566 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
12567 (rule_list): Renamed from rule_list_t.
12568 * src/print_graph.c (static_graph): Renamed from graph.
12569 * src/reader.h (braced_code): Renamed from braced_code_t.
12570 Remove brace_code_e tag.
12571 * src/relation.h (relation_node): Renamed from relation_node_t.
12572 (relation_nodes): Renamed from relation_nodes_t.
12573 (relation): Renamed from relation_t.
12574 * src/state.h (state_number): Renamed from state_number_t.
12575 (struct state): Renamed from struct state_s.
12576 (state): Renamed from state_t.
12577 (transitions): Renamed from transitions_t. Unused (and
12578 misspelled) transtion_s tag removed.
12579 (errs): Renamed from errs_t. Unused errs_s tag removed.
12580 (reductions): Renamed from reductions_t. Unused tag
12581 reductions_s removed.
12582 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
12583 (struct symbol_list): Renamed from struct symbol_list_s.
12584 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
12585 (struct symbol): Renamed from struct symbol_s.
12586 (symbol): Renamed from symbol_t.
12587 * src/tables.c (vector_number): Renamed from vector_number_t.
12588 (action_number): Renamed from action_t.
12589 * src/tables.h (base_number): Renamed from base_t.
12590 * src/vcg.h (enum color): Renamed from enum color_e.
12591 (enum textmode): Renamed from enum textmode_e.
12592 (enum shape): Renamed from enum shape_e.
12593 (struct colorentry): Renamed from struct colorentry_s.
12594 (struct classname): Renamed from struct classname_s.
12595 (struct infoname): Renamed from struct infoname_s.
12596 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
12597 (enum decision): Renamed from enum decision_e.
12598 (enum orientation): Renamed from enum orientation_e.
12599 (enum alignment): Renamed from enum alignment_e.
12600 (enum arrow_mode): Renamed from enum arrow_mode_e.
12601 (enum crossing_type): Renamed from enum crossing_type_e.
12602 (enum view): Renamed from enum view_e.
12603 (struct node): Renamed from struct node_s.
12604 (node): Renamed from node_t.
12605 (enum linestyle): Renamed from enum linestyle_e.
12606 (enum arrowstyle): Renamed from enum arrowstyle_e.
12607 (struct edge): Renamed from struct edge.
12608 (edge): Renamed from edge_t.
12609 (struct graph): Renamed from struct graph_s.
12610 (graph): Renamed from graph_t.
12611 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
12612 Rename value_t -> value.
12613 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
12614 value_t_as_yystype -> value_as_yystype.
12615
12616 Don't include <errno.h> in the mainstream code, since it
12617 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
12618 * lib/get-errno.c, lib/get-errno.h: New files.
12619 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
12620 get-errno.c.
12621 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
12622 * src/output.c (output_skeleton): Likewise.
12623 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
12624 instead of errno.
12625 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
12626 Likewise.
12627 (handle_action_dollar, handle_action_at): Likewise.
12628 * src/system.h: Do not include <errno.h>.
12629 (TAB_EXT): Renamed from EXT_TAB.
12630 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
12631
12632 Avoid str[a-z]*, since <string.h> reserves that name space.
12633 Change all instances of "struniq" in names to "uniqstr", and
12634 likewise for "STRUNIQ" and "UNIQSTR".
12635 * src/uniqstr.c: Renamed from src/struniq.c.
12636 * src/uniqstr.h: Renamed from src/struniq.h.
12637 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
12638 * src/files.c (strsuffix): Remove; unused.
12639 (concat2): Renamed from stringappend. Now static.
12640 * src/files.h (strsuffix, stringappend): Remove; unused.
12641 * src/parse-gram.y (<chars>): Renamed from <string>.
12642 (<uniqstr>): Renamed from <struniq>.
12643 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
12644 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
12645 (struct graph_s.expand): Renamed from struct graph_s.stretch.
12646 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
12647 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
12648 (N_EXPAND): Renamed from N_STRETCH.
12649
12650 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
12651 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
12652 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
12653 Remove; unused.
12654 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
12655 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12656 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12657 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12658 (BASE_MAXIMUM): Renamed from BASE_MAX.
12659 (BASE_MINIMUM): Renamed from BASE_MIN.
12660 (ACTION_MAX): Remove; unused.
12661 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12662 Unnecessary casts removed from above defines.
12663
12664
12665 Fix misspelling in names.
12666 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12667 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12668 G_NODE_ALIGNEMENT.
12669
12670
12671 * lib/timevar.c (timevar_report): Renamed from time_report,
12672 for consistency with other names.
12673 * lib/timevar.h (timevar_report): New decl.
12674 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12675
12676
12677 Sort include-file uses.
12678
12679 Reorder all include files under src to be in the order "system.h".
12680 then the ../lib include files in angle brackets (alphabetized),
12681 then the . include files in double-quotes (alphabetized). Fix
12682 dependency breakages encountered in this process, as follows:
12683 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12684 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12685 * src/state.h: Include "symtab.h".
12686
12687 2002-12-08 Paul Eggert <eggert@twinsun.com>
12688
12689 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12690 since this causes problems when __file__ contains character
12691 sequences like "@" that are treated specially by src/scan-skel.l.
12692 Instead, just use the file's basename. This fixes the bug
12693 reported by Martin Mokrejs in
12694 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
12695
12696 2002-12-06 Paul Eggert <eggert@twinsun.com>
12697
12698 Add support for rules that do not have trailing semicolons, as
12699 POSIX requires. Improve the quality of locations in Bison
12700 diagnostics.
12701
12702 * src/location.c: Include <quotearg.h>.
12703 (empty_location): Now const.
12704 (location_print): New function. Follow the recommendation of the
12705 GNU Coding Standards for locations that span file boundaries.
12706 * src/location.h: Do not include <quotearg.h>; no longer needed.
12707 (boundary): New type.
12708 (location_t): Use it. This allows locations to span file boundaries.
12709 All member uses changed: file -> start.file or end.file (as needed),
12710 first_line -> start.line, first_column -> start.column,
12711 last_line -> end.line, last_column -> end.column.
12712 (equal_boundaries): New function.
12713 (LOCATION_RESET, LOCATION_STEP): Remove.
12714 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12715 (empty_location): Now const.
12716 (location_print): New decl.
12717 * src/parse-gram.y (lloc_default): New function, which handles
12718 empty locations more accurately.
12719 (YYLLOC_DEFAULT): Use it.
12720 (%token COLON): Remove.
12721 (%token ID_COLON): New token.
12722 (rules): Use it.
12723 (declarations, rules): Remove trailing semicolon.
12724 (declaration, rules_or_grammar_declaration):
12725 Allow empty (";") declaration.
12726 (symbol_def): Remove empty actions; no longer needed.
12727 (rules_or_grammar_declaration): Remove trailing semicolon.
12728 (semi_colon.opt): Remove.
12729 * src/reader.h: Include location.h.
12730 (scanner_cursor): New decl.
12731 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12732 rolling our own.
12733 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12734 of *loc.
12735 (STEP): Remove. No longer needed, now that adjust_location does
12736 the work. All uses removed.
12737 (scanner_cursor): New var.
12738 (adjust_location): Renamed from extend_location. It now sets
12739 *loc and adjusts the scanner cursor. All uses changed.
12740 Don't bother testing for CR.
12741 (handle_syncline): Remove location arg; now updates scanner cursor.
12742 All callers changed.
12743 (unexpected_end_of_file): Now accepts start boundary of token or
12744 comment, not location. All callers changed. Update scanner cursor,
12745 not the location.
12746 (SC_AFTER_IDENTIFIER): New state.
12747 (context_state): Renamed from c_context. All uses changed.
12748 (id_loc, code_start, token_start): New local vars.
12749 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12750 processing of Yacc white space and equivalents here.
12751 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12752 instead of returning ID immediately, since we need to search for
12753 a subsequent colon.
12754 (<INITIAL>"'", "\""): Save token_start.
12755 (<INITIAL>"%{", "{", "%%"): Save code_start.
12756 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12757 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12758 BEGIN context_state at end, not INITIAL.
12759 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12760 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12761 Return correct token start.
12762 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12763 the start of a character, string or multiline comment is found.
12764 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12765 Reduction): Adjust reported locations to match the more-precise
12766 results now expected.
12767 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12768 * tests/reduce.at (Useless Rules, Reduced Automaton,
12769 Underivable Rules): Likewise.
12770 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12771 or "|"' now that so many other tokens are allowed by the new grammar.
12772
12773 * src/complain.h (current_file): Remove duplicate decl;
12774 current_file is now owned by files.h.
12775 * src/complain.c, src/scan-gram.l: Include files.h.
12776
12777 2002-12-06 Paul Eggert <eggert@twinsun.com>
12778
12779 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12780 promotes to int; it might be unsigned int.
12781 * data/yacc.c (yy_reduce_print): Likewise.
12782
12783 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12784 be #defined in the prologue, not in the Bison declarations.
12785 This fixes Debian Bug 102878, reported by Shaul Karl.
12786
12787 2002-12-02 Paul Eggert <eggert@twinsun.com>
12788
12789 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12790 * lib/strtoul.c: New file, from gnulib.
12791 This fixes a porting bug reported by Peter Klein in
12792 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
12793
12794 2002-11-30 Paul Eggert <eggert@twinsun.com>
12795
12796 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12797 and put only a forward declaration in the prologue. This is for
12798 consistency with the other scanner helper functions.
12799
12800 Type clashes now generate warnings, not errors, since it
12801 appears that POSIX may allow some grammars with type clashes.
12802 * src/reader.c (grammar_current_rule_check): Warn about
12803 type clashes instead of complaining.
12804 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12805
12806 Add Yacc library, since POSIX requires it.
12807 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12808 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12809 * lib/main.c, lib/yyerror.c: New files.
12810
12811 gram_error can be static; it need not be extern.
12812 * src/reader.h (gram_error): Remove decl.
12813 * src/parse-gram.y (gram_error): Now static. Add static decl.
12814 (print_token_value): Omit parameter names from forward decl,
12815 for consistency.
12816
12817 2002-11-29 Paul Eggert <eggert@twinsun.com>
12818
12819 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12820 be declared before being used. E.g., one should typically
12821 declare them in the prologue. Use GNU coding style in examples.
12822 Put "const" consistently after the type it modifies. Mention
12823 that C99 supports "inline". Mention that yyerror traditionally
12824 returns "int".
12825
12826 %parse-param and %lex-param now take just one argument, the
12827 declaration; the argument name is deduced from the declaration.
12828
12829 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12830 Reporting, Table of Symbols): Document this.
12831 * src/parse-gram.y (add_param): New function.
12832 (COMMA): Remove.
12833 (declaration): Implement new rule for %parse-param and %lex-param.
12834 * src/scan-gram.l: "," now elicits a warning, rather than being
12835 a token; this is more compatible with byacc.
12836 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12837
12838 2002-11-27 Paul Eggert <eggert@twinsun.com>
12839
12840 Rename identifiers to avoid real and potential collisions.
12841
12842 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12843 to avoid collision with lex macro described by Bruce Lilly in
12844 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12845 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12846 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12847 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12848 All uses changed.
12849 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12850 The name "yycontrol" violates the name space rules, and this stuff
12851 wasn't being used anyway.
12852 (input): Remove action; this stuff wasn't being used.
12853 (gram_error): Rename local variable yylloc -> loc.
12854 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12855 (YY_DECL): Don't use "yy" at start of local variables.
12856 All uses changed, e.g., yylloc -> loc.
12857 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12858 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12859 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12860 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12861
12862 * src/parse-gram.y (gram_error): loc is now const *.
12863 * src/reader.h (gram_error): Likewise.
12864
12865 2002-11-24 Paul Eggert <eggert@twinsun.com>
12866
12867 Version 1.75c.
12868
12869 * tests/actions.at (Actions after errors): Use an output format
12870 more similar to that of the Printers and Destructors test.
12871 Test the position of the ';' token too.
12872 (Printers and Destructors): Likewise.
12873 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12874 unnecessarily alarming people when the test fails.
12875
12876 * data/yacc.c (yyerrlab1): Move this label down, so that the
12877 parser does not discard the lookahead token if the user code
12878 invokes YYERROR. This change is required for POSIX conformance.
12879
12880 * lib/error.c: Sync with gnulib.
12881
12882 2002-11-22 Paul Eggert <eggert@twinsun.com>
12883
12884 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12885 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12886 * lib/xmalloc.c: Likewise.
12887
12888 2002-11-20 Paul Eggert <eggert@twinsun.com>
12889
12890 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12891
12892 2002-11-20 Paul Eggert <eggert@twinsun.com>
12893
12894 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12895 should use `if (! x) abort ();' rather than `assert (x);', and
12896 anyway it's one less thing to worry about configuring.
12897
12898 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12899 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12900 and replace all instances of assert with abort.
12901 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12902 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12903
12904 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12905 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12906 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12907 hash_find_entry, hash_rehash, hash_insert): Likewise.
12908 * src/conflicts.c (resolve_sr_conflict): Likewise.
12909 * src/lalr.c (set_goto_map, map_goto): Likewise.
12910 * src/nullable.c (nullable_compute): Likewise.
12911 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12912 * src/reader.c (packgram, reader): Likewise.
12913 * src/state.c (state_new, state_free, state_transitions_set,
12914 state_reduction_find): Likewise.
12915 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12916 symbol_pack): Likewise.
12917 * src/tables.c (conflict_row, pack_vector): Likewise.
12918 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12919 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12920 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12921 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12922
12923 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12924 (ARGMATCH_CONSTRAINT): New macro.
12925 (ARGMATCH_ASSERT): Use it.
12926
12927 * src/system.h (verify): New macro.
12928 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12929 rather than assert.
12930 * src/tables.c (tables_generate): Likewise.
12931
12932 * src/struniq.c (struniq_assert): Now returns void, and aborts
12933 if the assertion is false.
12934 (struniq_assert_p): Remove.
12935 * src/struniq.h: Likewise.
12936
12937 2002-11-18 Paul Eggert <eggert@twinsun.com>
12938
12939 * data/glr.c (yygetLRActions): Replace `yyindex' with
12940 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12941 This fixes the regression with Sun ONE Studio 7 cc that I reported in
12942 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
12943
12944 2002-11-18 Akim Demaille <akim@epita.fr>
12945
12946 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12947 space.
12948 From Tim Van Holder.
12949
12950 2002-11-17 Paul Eggert <eggert@twinsun.com>
12951
12952 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12953 to "SyntaxError" for consistency with my 2002-11-15 change.
12954
12955 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12956 not define to {}, since this breaks the common use of `YYDPRINTF
12957 ((...));' if a single statement is desired (e.g. before `else').
12958 Work around GCC warnings by surrounding corresponding calls with
12959 {} if needed.
12960 (yyhasResolvedValue): Remove unused function.
12961 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12962 loop body.
12963 (yyreportSyntaxError): Renamed from yyreportParseError.
12964 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12965 All uses changed.
12966 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12967 extern when possible. Remove unused initializations.
12968
12969 2002-11-16 Akim Demaille <akim@epita.fr>
12970
12971 Augment the similarity between GLR and LALR traces.
12972
12973 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12974 (YY_REDUCE_PRINT): New.
12975 (yyparse): Use them.
12976 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12977 YYDPRINT here.
12978 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12979 state reached after the reduction/recovery, since...
12980 (yyparse, yyprocessOneStack): Report the state we are entering in.
12981
12982 2002-11-16 Akim Demaille <akim@epita.fr>
12983
12984 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12985 Add support for --trace=skeleton.
12986 * src/scan-skel.l: %option debug.
12987 Scan strings of non-@ or \n instead of character by character.
12988 (scan_skel): Handle trace_skeleton.
12989 (QPUTS): New.
12990 (@output_parser_name@, @output_header_name@): ``Restore'' their
12991 support (used to be M4 macros).
12992 * data/yacc.c: Quote larger chunks, a la glr.c.
12993 * data/lalr1.cc: Likewise.
12994 The header guards are no longer available, so use some other
12995 string than `YYLSP_NEEDED'.
12996
12997 2002-11-16 Akim Demaille <akim@epita.fr>
12998
12999 Make the ``Printers and Destructors'' test more verbose, taking
13000 `yacc.c''s behavior as (possibly wrong) reference.
13001
13002 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
13003 instead of fprint on stdout.
13004 Set and report the last_line of the symbols.
13005 Consistently display values and locations.
13006
13007 2002-11-16 Paul Eggert <eggert@twinsun.com>
13008
13009 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
13010
13011 2002-11-15 Paul Eggert <eggert@twinsun.com>
13012
13013 * tests/actions.at (Actions after errors): New test case.
13014
13015 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
13016 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
13017 tests/action.at, tests/calc.at, tests/conflicts.at,
13018 tests/cxx-type.at, tests/regression.at:
13019 "parse error" -> "syntax error" for POSIX compatibility.
13020 "parsing stack overflow..." -> "parser stack overflow" so
13021 that code matches Bison documentation.
13022
13023 2002-11-15 Akim Demaille <akim@epita.fr>
13024
13025 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
13026 take two BRACED_CODE, not two string_content.
13027 Free the scanner's obstack when we are done.
13028 (code_content): New.
13029 * tests/calc.at: Adjust.
13030 * doc/bison.texinfo: Adjust.
13031 Also, make sure to include the `,' for these declarations.
13032
13033 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
13034
13035 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
13036 definition; avoids potential autoreconf problems.
13037
13038 2002-11-15 Akim Demaille <akim@epita.fr>
13039
13040 Always check the value returned by yyparse.
13041
13042 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
13043 returned by yyparse.
13044 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
13045 Adjust calls.
13046 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
13047 returned by yyparse.
13048
13049 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13050
13051 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
13052 on input.at test.
13053
13054 2002-11-14 Paul Eggert <eggert@twinsun.com>
13055
13056 * src/output.c (output_skeleton): Call xfopen instead of
13057 duplicating xfopen's body.
13058
13059 Fix bugs reported by Nelson H. F. Beebe in
13060 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
13061
13062 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
13063 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
13064 Group compiler. Instead, use "$CC -E bar.c". Include the .h
13065 file twice in the grammar, as an extra check.
13066
13067 * tests/input.at (Torturing the Scanner): Surround the
13068 backslash-newline tests with "#if 0", to make it less likely that
13069 we'll run into compiler bugs. Bring back solitary \ inside
13070 comment, but add a closing comment to work around HP C bug. Don't
13071 test backslash-newline in C character constant.
13072
13073 2002-11-14 Akim Demaille <akim@epita.fr>
13074
13075 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
13076 status of the compiler.
13077 Calling `exit 1' is no longer needed.
13078 Reported by Nelson H. F. Beebe.
13079
13080 2002-11-14 Akim Demaille <akim@epita.fr>
13081
13082 * tests/atlocal.in (CPPFLAGS): We have config.h.
13083 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
13084 New.
13085 * tests/actions.at, tests/calc.at, tests/conflicts.at,
13086 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
13087 * tests/regression.at, tests/torture.at: Use them for all the
13088 grammars that are to be compiled.
13089 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
13090 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
13091 * doc/bison.texinfo (GLR Parsers): Document `inline'.
13092
13093 2002-11-14 Akim Demaille <akim@epita.fr>
13094
13095 * doc/bison.texinfo: Various formatting changes (alignments in
13096 samples, additional @group/@end group, GCS in samples.
13097 Use @deffn instead of simple @table to define the directives,
13098 macros, variables etc.
13099
13100 2002-11-13 Paul Eggert <eggert@twinsun.com>
13101
13102 Fix some bugs reported by Albert Chin-A-Young in
13103 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
13104
13105 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
13106 -o c"; the HP C compiler chatters during compilation.
13107 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
13108 * tests/headers.at (export YYLTYPE): Likewise.
13109
13110 * tests/input.at (Torturing the Scanner): Remove lines containing
13111 solitary backslashes, as they tickle a bug in the HP C compiler.
13112
13113 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
13114 comments, since they're not portable. Use GNU coding style.
13115
13116 2002-11-13 Akim Demaille <akim@epita.fr>
13117
13118 * data/yacc.c: Leave bigger chunks of quoted text.
13119 (YYDSYMPRINTF): New.
13120 Use it to report symbol activities.
13121 * data/glr.c (YYDSYMPRINTF): New.
13122 Use it.
13123
13124 2002-11-12 Paul Eggert <eggert@twinsun.com>
13125
13126 Version 1.75b.
13127
13128 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
13129 (yyglrReduce): Return yyok, not 0.
13130 This should avoid the enumerated-type warnings reported
13131 by Nelson H. F. Beebe in
13132 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
13133
13134 * lib/bbitset.h (BITSET_INLINE): Remove.
13135 * lib/bitset.h [! BITSET_INLINE]: Remove.
13136 (bitset_set, bitset_reset, bitset_test): Rename local vars
13137 to avoid shadowing warnings by GCC.
13138
13139 * data/glr.c (inline): Remove #define. It's the user's
13140 responsibility to #define it away, just like 'const'.
13141 This fixes one of the bugs reported by Nelson H. F. Beebe in
13142 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
13143
13144 * Makefile.maint (po-check): Scan .l and .y files instead of the
13145 .c and the .h files that they generate. This fixes the bug
13146 reported by Tim Van Holder in:
13147 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
13148 Look for N_ as well as for _. Try to avoid matching #define for
13149 N_ and _.
13150 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
13151 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
13152 * src/scan-gram.l: Revamp regular expressions so that " and '
13153 do not confuse xgettext.
13154
13155 * src/struniq.h (struniq_new): Do not declare the return type
13156 to be 'const'; this violates the C standard.
13157 * src/struniq.c (struniq_new): Likewise.
13158
13159 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
13160
13161 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
13162 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
13163 linker.
13164
13165 2002-11-12 Akim Demaille <akim@epita.fr>
13166
13167 * Makefile.maint: Sync with Autoconf:
13168 (local_updates): New.
13169
13170 2002-11-12 Akim Demaille <akim@epita.fr>
13171
13172 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
13173
13174 2002-11-12 Akim Demaille <akim@epita.fr>
13175
13176 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
13177 locations.
13178
13179 2002-11-12 Akim Demaille <akim@epita.fr>
13180
13181 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
13182 not yyvalue.
13183
13184 2002-11-12 Akim Demaille <akim@epita.fr>
13185
13186 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
13187 Use it to test the GLR parser.
13188
13189 2002-11-12 Akim Demaille <akim@epita.fr>
13190
13191 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
13192 defines it.
13193 * data/glr.c (yystos): New.
13194 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
13195 (YYDSYMPRINT): New.
13196 (yyval): Don't define it, it is handled via M4.
13197 (yyrecoverParseError): Free verbosely the discarded symbols.
13198 * data/yacc.c (yysymprint): Remove, rather...
13199 (b4_yysymprint_generate): invoke.
13200 * data/c.m4 (b4_yysymprint_generate): New.
13201 Accept pointers as arguments, as opposed to the version from
13202 yacc.c.
13203 (b4_yydestruct_generate): Likewise.
13204 * tests/cations.at (Printers and Destructors): Use Bison directives
13205 instead of CPP macros.
13206 Don't rely on internal details.
13207
13208 2002-11-12 Akim Demaille <akim@epita.fr>
13209
13210 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
13211 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
13212 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
13213 it against YYEMPTY and so forth), work on yytoken (i.e., set
13214 it to YYEMPTY etc.).
13215 (yydestruct): Replace with a b4_yydestruct_generate invocation.
13216 (b4_symbol_actions): Remove.
13217 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
13218 for 0, end-of-input.
13219
13220 2002-11-12 Akim Demaille <akim@epita.fr>
13221
13222 * doc/bison.texinfo (Destructor Decl): New.
13223
13224 2002-11-12 Akim Demaille <akim@epita.fr>
13225
13226 * src/tables.c (tables_generate): Use free for pointers that
13227 cannot be NULL, not XFREE.
13228 (pack_vector): Use assert, not fatal, for bound violations.
13229 * src/state.c (state_new): Likewise.
13230 * src/reader.c (reader): Likewise.
13231 * src/lalr.c (set_goto_map): Likewise.
13232 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
13233 the file name.
13234
13235 2002-11-12 Akim Demaille <akim@epita.fr>
13236
13237 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
13238 Restore.
13239 * src/scan-gram.l (last_string): Is global to the file, not to
13240 yylex.
13241 * src/parse-gram.y (input): Don't append the epilogue here,
13242 (epilogue.opt): do it here, and free the scanner's obstack.
13243 * src/reader.c (epilogue_set): Rename as...
13244 (epilogue_augment): this.
13245 * data/c.m4 (b4_epilogue): Defaults to empty.
13246
13247 2002-11-12 Akim Demaille <akim@epita.fr>
13248
13249 * src/getargs.c (long_options): Remove duplicates.
13250 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
13251 Remove.
13252 * doc/bison.rnh: Remove.
13253 * doc/bison.texinfo (VMS Invocation): Remove.
13254
13255 2002-11-12 Akim Demaille <akim@epita.fr>
13256
13257 * src/struniq.h, src/struniq.c (struniq_t): Is const.
13258 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
13259
13260 Use struniq for symbols.
13261
13262 * src/symtab.h (symbol_t): The tag member is a struniq.
13263 (symbol_type_set): Adjust.
13264 * src/symtab.c (symbol_new): Takes a struniq.
13265 (symbol_free): Don't free the tag member.
13266 (hash_compare_symbol_t, hash_symbol_t): Rename as...
13267 (hash_compare_symbol, hash_symbol): these.
13268 Use the fact that tags as struniqs.
13269 (symbol_get): Use struniq_new.
13270 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
13271 Returns a strniq.
13272 * src/reader.h (merger_list, grammar_currentmerge_set): The name
13273 and type members are struniqs.
13274 * src/reader.c (get_merge_function)
13275 (grammar_current_rule_merge_set): Adjust.
13276 (TYPE, current_type): Are struniq.
13277
13278 Use struniq for file names.
13279
13280 * src/files.h, src/files.c (infile): Split into...
13281 (grammar_file, current_file): these.
13282 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
13283 * src/reduce.c (reduce_print): Likewise.
13284 * src/getargs.c (getargs): Likewise.
13285 * src/complain.h, src/complain.c: Likewise.
13286 * src/main.c (main): Call struniqs_new early enough to use it for
13287 file names.
13288 Don't free the input file name.
13289
13290 2002-11-12 Akim Demaille <akim@epita.fr>
13291
13292 * src/symtab.c (symbol_free): Remove dead deactivated code:
13293 type_name are properly removed.
13294 Don't use XFREE to free items that cannot be NULL.
13295 * src/struniq.h, src/struniq.c: New.
13296 * src/main.c (main): Initialize/free struniqs.
13297 * src/parse-gram.y (%union): Add astruniq member.
13298 (yyprint): Adjust.
13299 * src/scan-gram.l (<{tag}>): Return a struniq.
13300 Free the obstack bit that used to store it.
13301 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
13302
13303 2002-11-11 Paul Eggert <eggert@twinsun.com>
13304
13305 Revamp to fix many (but not all) of the C- and M4-related quoting
13306 problems. Among other things, this fixes the Bison bug reported
13307 by Jan Hubicka when processing the Bash grammar; see:
13308 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
13309
13310 Use new @ escapes consistently. Represent brackets with @{ and @}
13311 rather than @<:@ and @:>@, since this works a bit better with dumb
13312 editors like vi. Represent @ with @@, since @ is now consistently
13313 an escape. Use @oline@ and @ofile@ rather than __oline__ and
13314 __ofile__, to avoid unexpected expansions. Similarly, use @output
13315 rather than #output.
13316
13317 * data/c.m4 (b4_copyright): Omit file name from comment, since
13318 the file name could contain "*/".
13319 (b4_synclines_flag): Don't quote the 2nd argument; it should already
13320 be quoted. All uses changed.
13321
13322 * data/glr.c: Use new @ escapes consistently.
13323 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
13324 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
13325 Remove, since they couldn't handle arbitrary characters in file
13326 names.
13327 * data/lalr1.cc: Likewise.
13328 * data/yacc.c: Likewise.
13329
13330 * src/files.c (output_infix): Remove; all uses removed.
13331 * src/files.h: Likewise.
13332
13333 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
13334 mishandled funny characters in file names, and anyway it isn't
13335 needed any more.
13336 * data/yacc.c: Likewise.
13337 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
13338
13339 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
13340 * data/yacc.c: Likewise.
13341
13342 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
13343 strings now.
13344 (muscle_init): Quote filename as a C string.
13345 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
13346 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
13347 * src/output.c (escaped_file_name_output): New function.
13348 (prepare_symbols): Quote tokens for M4.
13349 (prepare): Don't insert output_infix, output_prefix,
13350 output_parser_name, output_header_name; this is now down by scan-skel.
13351 Insert skeleton as a C string.
13352
13353 * src/output.c (user_actions_output, symbol_destructors_output,
13354 symbol_printers_output): Quote filenames for C and M4.
13355 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13356
13357 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
13358 escapes other than \\ and \'; this simplifies the code.
13359 (<SC_STRING>): Likewise, for \\ and \".
13360 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
13361 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
13362 Use new escapes @{ and @} for [ and ].
13363
13364 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
13365 them with auto vars.
13366 Switch to new escape scheme, where @ is the escape character uniformly.
13367 Abort if a stray escape character is found. Avoid unbounded input
13368 buffer when parsing non-escaped text.
13369
13370 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
13371 __oline__, #output, $@, and @{ do not have unintended meanings.
13372
13373 2002-11-09 Paul Eggert <eggert@twinsun.com>
13374
13375 Fix the test failure due to GCC warnings described in
13376 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
13377 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
13378 evaluate to 0 if it's impossible for NINF to be in the respective
13379 table.
13380 (yygetLRActions, yyrecoverParseError): Use them.
13381
13382 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
13383 counted in the token inserted at end of file. Now takes
13384 location_t *, not location_t, so that the location can be
13385 adjusted. All uses changed.
13386
13387 * tests/regression.at (Invalid inputs): Adjust wording in
13388 diagnostic to match the new behavior.
13389
13390 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
13391 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
13392 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
13393 abort ();'. This reduces the runtime of the "Many lookaheads"
13394 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
13395 GCC 3.2.
13396
13397 2002-11-07 Paul Eggert <eggert@twinsun.com>
13398
13399 * src/parse-gram.y (CHARACTER): Remove unused token.
13400 All uses removed.
13401
13402 * src/scan-gram.l: Remove stack option. We no longer use the
13403 stack, since the stack was never deeper than 1; instead, use the
13404 new auto var c_context to record the stacked value.
13405
13406 Remove nounput option. At an unexpected end of file, we now unput
13407 the minimal input necessary to end cleanly; this simplifies the
13408 code.
13409
13410 Avoid unbounded token sizes where this is easy.
13411
13412 (unexpected_end_of_file): New function.
13413 Use it to systematize the error message on unexpected EOF.
13414 (last-string): Now auto, not static.
13415 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
13416 (scanner_last_string_free): Remove; not used.
13417 (percent_percent_count): Move decl to just before use.
13418 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
13419 not the (never otherwised-used) CHARACTER.
13420
13421 2002-11-07 Akim Demaille <akim@epita.fr>
13422
13423 Let yyerror always receive the msg as last argument, so that
13424 yyerror can be variadic.
13425
13426 * data/yacc.c (b4_yyerror_args): New.
13427 Use it when calling yyerror.
13428 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
13429 Use it when calling yyerror.
13430 * doc/bison.texinfo (Error Reporting): Adjust.
13431 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
13432 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
13433
13434 2002-11-06 Akim Demaille <akim@epita.fr>
13435
13436 #line should have quoted strings.
13437 Ideally, this should be done by m4_quotearg.
13438
13439 * src/scan-skel.l: Include quotearg.h.
13440 Quote __ofile__.
13441 * src/output.c (symbol_printers_output)
13442 (symbol_destructors_output): Quote the file name.
13443
13444 2002-11-06 Akim Demaille <akim@epita.fr>
13445
13446 * tests/regression.at (Invalid inputs): Adjust to the recent
13447 messages.
13448
13449 2002-11-06 Akim Demaille <akim@epita.fr>
13450
13451 Restore --no-lines.
13452 Reported by Jim Kent.
13453
13454 * data/c.m4 (b4_syncline): New.
13455 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
13456 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
13457 * src/output.c (user_actions_output): Likewise.
13458 (prepare): Define 'b4_synclines_flag'.
13459 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
13460
13461 2002-11-06 Akim Demaille <akim@epita.fr>
13462
13463 * src/main.c (main): Free `infile'.
13464 * src/scan-gram.l (handle_syncline): New.
13465 Recognize `#line'.
13466 * src/output.c (user_actions_output, symbol_destructors_output)
13467 (symbol_printers_output): Use the location's file name, not
13468 infile.
13469 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13470
13471 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13472
13473 * src/tables.c (matching_state): Don't allow states to match if
13474 either has GLR conflict entries.
13475
13476 2002-11-05 Paul Eggert <eggert@twinsun.com>
13477
13478 * src/scan-gram.l: Use more accurate diagnostics, e.g.
13479 "integer out of range" rather than "invalid value".
13480 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
13481 accordingly.
13482
13483 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
13484 Also, remove one static variable in the scanner.
13485
13486 * src/scan-gram.l (braces_level): Now auto, not static.
13487 Initialize to zero if the compiler is being picky.
13488 (INITIAL): Clear braces_level instead of incrementing it.
13489 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
13490 as POSIX 1003.1-2001 requires.
13491 * src/system.h (IF_LINT): New macro, taken from coreutils.
13492 * configure.ac: Define "lint" if --enable-gcc-warnings.
13493
13494 2002-11-05 Akim Demaille <akim@epita.fr>
13495
13496 * src/scan-gram.l: When it starts with `%', complain about the
13497 whole directive, not just that `invalid character: %'.
13498
13499 2002-11-04 Akim Demaille <akim@epita.fr>
13500
13501 * Makefile.maint: Update from Autoconf.
13502 (update, cvs-update, po-update, do-po-update): New.
13503
13504 2002-11-04 Akim Demaille <akim@epita.fr>
13505
13506 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
13507 and yyerror.
13508 Have yyerror `use' its arguments.
13509 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
13510 returns true when location & yacc & pure & parse-param.
13511 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
13512
13513 2002-11-04 Akim Demaille <akim@epita.fr>
13514
13515 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
13516 clashes.
13517 * src/scan-gram.l: Use [\'] instead of ['] to pacify
13518 font-lock-mode.
13519 Use complain_at.
13520 Use quote, not quote_n since LOCATION_PRINT no longer uses the
13521 slot 0.
13522
13523 2002-11-03 Paul Eggert <eggert@twinsun.com>
13524
13525 * src/reader.c (get_merge_function, grammar_current_rule_check):
13526 Use consistent diagnostics for reporting type name clashes.
13527 Quote the types with <>, for consistency with Yacc.
13528 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
13529
13530 2002-11-03 Akim Demaille <akim@epita.fr>
13531
13532 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
13533 New.
13534 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
13535 (b4_parse_param): Remove.
13536 Use b4_identification.
13537 Propagate b4_pure_args where needed to pass them to yyerror.
13538 * data/glr.m4 (b4_parse_param): Remove.
13539 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
13540 (b4_lpure_formals): New.
13541 Use b4_identification.
13542 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
13543 b4_user_formals and b4_user_args.
13544 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
13545 (yyreportAmbiguity): When using a pure parser, also need
13546 the location, and the parse-params.
13547 Adjust callers.
13548 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
13549 When using a pure parser, also need the parse-params.
13550 Adjust callers.
13551 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
13552 (%pure-parser + %parse-param) LALR and GLR parsers.
13553 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
13554 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
13555 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
13556 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
13557 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
13558 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
13559 * doc/bison.texinfo: Untabify the whole file.
13560 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
13561 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
13562 (Error Reporting): Adjust to these new directives.
13563 Document %error-verbose, deprecate YYERROR_VERBOSE.
13564
13565 2002-11-03 Akim Demaille <akim@epita.fr>
13566
13567 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
13568 AT_CHECK_CALC_GLR invocations to use % directives, instead of
13569 command line options.
13570 * tests/cxx-type.at: Formatting changes.
13571
13572 2002-11-03 Paul Eggert <eggert@twinsun.com>
13573
13574 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
13575 to count columns correctly, and to check for invalid inputs.
13576
13577 Use mbsnwidth to count columns correctly. Account for tabs, too.
13578 Include mbswidth.h.
13579 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
13580 (extend_location): New function.
13581 (YY_LINES): Remove.
13582
13583 Handle CRLF in C code rather than in Lex code.
13584 (YY_INPUT): New macro.
13585 (no_cr_read): New function.
13586
13587 Scan UCNs, even though we don't fully handle them yet.
13588 (convert_ucn_to_byte): New function.
13589
13590 Handle backslash-newline correctly in C code.
13591 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
13592 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
13593 all uses changed.
13594 (tag, splice): New EREs. Do not allow NUL or newline in tags.
13595 Use {splice} wherever C allows backslash-newline.
13596 YY_STEP after space, newline, vertical-tab.
13597 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
13598
13599 (letter, id): Don't assume ASCII; e.g., spell out a-z.
13600
13601 ({int}, handle_action_dollar, handle_action_at): Check for integer
13602 overflow.
13603
13604 (YY_STEP): Omit trailing semicolon, so that it's more like C.
13605
13606 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
13607 as well as \000. Check for UCHAR_MAX, not 255.
13608 Allow \x with an arbitrary positive number of digits, as in C.
13609 Check for overflow here.
13610 Allow \? and UCNs, for compatibility with C.
13611
13612 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
13613 with quote slot used by complain_at.
13614
13615 * tests/input.at: Add tests for backslash-newline, m4 quotes
13616 in symbols, long literals, and funny escapes in strings.
13617
13618 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
13619 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
13620 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
13621 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
13622 * m4/mbswidth.m4: New file, from GNU coreutils.
13623
13624 * doc/bison.texinfo (Grammar Outline): Document // comments.
13625 (Symbols): Document that trigraphs have no special meaning in Bison,
13626 nor is backslash-newline allowed.
13627 (Actions): Document that trigraphs have no special meaning.
13628
13629 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
13630 no longer used.
13631
13632 2002-11-02 Paul Eggert <eggert@twinsun.com>
13633
13634 * src/reader.c: Don't include quote.h; not needed.
13635 (get_merge_function): Reword warning to be consistent with
13636 type clash diagnostic in grammar_current_rule_check.
13637
13638 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
13639 bug in trigraph handling.
13640
13641 * src/output.c (prepare_symbols): When printing token names,
13642 escape "[" as "@<:@" and likewise for "]".
13643
13644 * src/system.h (errno): Remove declaration, as we are now
13645 assuming C89 or better, and C89 guarantees errno.
13646
13647 2002-10-30 Paul Eggert <eggert@twinsun.com>
13648
13649 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
13650 Check for close failures.
13651 * src/files.h (xfclose): Return void, not int, since it always
13652 returned zero.
13653 * src/files.c (xfclose): Likewise. Report I/O error if ferror
13654 indicates one.
13655 * src/output.c (output_skeleton): Use xfclose rather than fclose
13656 and ferror. xfclose now checks ferror.
13657
13658 * data/glr.c (YYLEFTMOST_STATE): Remove.
13659 (yyreportTree): Use a stack-based leftmost state. This avoids
13660 our continuing battles with bogus warnings about initializers.
13661
13662 2002-10-30 Akim Demaille <akim@epita.fr>
13663
13664 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13665 #if.
13666
13667 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13668
13669 * tests/glr-regr1.at: New test for reported regressions.
13670 * tests/testsuite.at: Add glr-regr1.at test.
13671 * tests/Makefile.am: Add glr-regr1.at test.
13672
13673 2002-10-24 Paul Eggert <eggert@twinsun.com>
13674
13675 Version 1.75a.
13676
13677 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13678 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13679 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13680 Don't assume strdup exists; POSIX says its an XSI extension.
13681 Check for buffer overflow on input.
13682
13683 2002-10-24 Akim Demaille <akim@epita.fr>
13684
13685 * src/output.c (output_skeleton): Don't disable M4sugar comments
13686 too soon: it results in comments being expanded.
13687 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13688 first output.
13689
13690 2002-10-24 Akim Demaille <akim@epita.fr>
13691
13692 * data/yacc.c (m4_int_type): New.
13693 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13694 char' as only yacc.c wants K&R portability.
13695 * data/glr.c (yysigned_char): Remove.
13696 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13697 Reported by Quoc Peyrot.
13698
13699 2002-10-23 Paul Eggert <eggert@twinsun.com>
13700
13701 * src/main.c (main): With --trace=time, report times even if a
13702 non-fatal error occurs. Formerly, the times were reported in some
13703 such cases but not in others.
13704 * src/reader.c (reader): Just return if a complaint has been issued,
13705 instead of exiting, so that 'main' can report times.
13706
13707 2002-10-22 Akim Demaille <akim@epita.fr>
13708
13709 * src/system.h: Include sys/types.
13710 Reported by Bert Deknuydt.
13711
13712 2002-10-23 Paul Eggert <eggert@twinsun.com>
13713
13714 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13715 Suggested by Art Haas.
13716
13717 2002-10-22 Paul Eggert <eggert@twinsun.com>
13718
13719 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13720 decl; not needed any more.
13721 * src/main.c (main): Use return to exit, undoing yesterday's change.
13722 The last OS that we could find where this wouldn't work is
13723 SunOS 3.5, and that's too old to worry about now.
13724
13725 * data/glr.c (struct yyltype): Define members even when not
13726 doing locations. This is more consistent with yacc.c, and it
13727 works around the following bug reports:
13728 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13729 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
13730
13731 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13732 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13733 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13734
13735 2002-10-22 Akim Demaille <akim@epita.fr>
13736
13737 * data/README: New.
13738
13739 2002-10-21 Paul Eggert <eggert@twinsun.com>
13740
13741 Be consistent about 'bool'; the old code used an enum in one
13742 module and an int in another, and this violates the C standard.
13743 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13744 * configure.ac (AC_HEADER_STDBOOL): Add.
13745 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13746 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13747 * src/symtab.c (hash_compare_symbol_t): Likewise.
13748 * src/system.h (bool, false, true): Use a definition consistent
13749 with ../lib/hash.c. All uses changed.
13750
13751 * src/complain.c (warning_issued): Renamed from warn_message_count,
13752 so that we needn't worry about integer overflow (!).
13753 Now of type bool. All uses changed.
13754 (complaint_issued): Renamed from complain_message_count; likewise.
13755
13756 * src/main.c (main): Use exit to exit with failure.
13757
13758 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13759 rather than 1 and 0.
13760 * src/main.c (main): Likewise.
13761 * src/getargs.c (getargs): Likewise.
13762 * src/reader.c (reader): Likewise.
13763
13764 * src/getarg.c (getargs): Remove duplicate code for
13765 "Try `bison --help'".
13766
13767 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13768 What was that "2" for?
13769
13770 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13771 * src/getargs.c (usage): Likewise.
13772
13773 * src/getargs.c (getargs): When there are too few operands, report
13774 the last one. When there are too many, report the first extra
13775 one. This is how diffutils does it.
13776
13777 2002-10-20 Paul Eggert <eggert@twinsun.com>
13778
13779 Remove K&R vestiges.
13780 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13781 * src/complain.c (VA_START): Remove. Assume prototypes.
13782 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13783 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13784 fatal): Assume prototypes.
13785 * src/complain.h: Assume prototypes.
13786 * src/system.h (PARAMS): Remove.
13787 Include <limits.h> unconditionally, since it's guaranteeed even
13788 for a freestanding C89 compiler.
13789 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13790 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
13791
13792 2002-10-20 Akim Demaille <akim@epita.fr>
13793
13794 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13795 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13796 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13797 (yyresolveStates, yyresolveAction, yyresolveStack)
13798 (yyprocessOneStack): Use them.
13799 (yy_reduce_print): New.
13800 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13801
13802 2002-10-20 Akim Demaille <akim@epita.fr>
13803
13804 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13805 arguments and output `void'.
13806 (b4_c_function): Rename as...
13807 (b4_c_function_def): this.
13808 (b4_c_function_decl, b4_c_ansi_function_def)
13809 (b4_c_ansi_function_decl): New.
13810 Change the interpretation of the arguments: before `int, foo', now
13811 `int foo, foo'.
13812 * data/yacc.c (yyparse): Prototype and define thanks to these.
13813 Adjust b4_c_function_def uses.
13814 * data/glr.c (yyparse): Likewise, but ANSI only.
13815
13816 2002-10-20 Akim Demaille <akim@epita.fr>
13817
13818 * src/output.c (prepare): Move the definition of `tokens_number',
13819 `nterms_number', `undef_token_number', `user_token_number_max'
13820 to...
13821 (prepare_tokens): Here.
13822 (prepare_tokens): Rename as...
13823 (prepare_symbols): this.
13824 (prepare): Move the definition of `rules_number' to...
13825 (prepare_rules): here.
13826 (prepare): Move the definition of `last', `final_state_number',
13827 `states_number' to...
13828 (prepare_states): here.
13829 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13830
13831 2002-10-20 Akim Demaille <akim@epita.fr>
13832
13833 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13834
13835 2002-10-20 Akim Demaille <akim@epita.fr>
13836
13837 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13838 * data/c.m4: here.
13839
13840 2002-10-20 Akim Demaille <akim@epita.fr>
13841
13842 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13843 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13844 `pair'.
13845 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13846 `name' to...
13847 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13848 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13849 These.
13850
13851 2002-10-19 Paul Eggert <eggert@twinsun.com>
13852
13853 Do not create a temporary file, as that involves security and
13854 cleanup headaches. Instead, use a pair of pipes.
13855 Derived from a suggestion by Florian Krohm.
13856 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13857 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13858 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13859 (BISON_PREREQ_SUBPIPE): Add.
13860 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13861 Add subpipe.h, subpipe.c.
13862 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13863 * po/POTFILES.in: Add lib/subpipe.c.
13864 * src/output.c: Include "subpipe.h".
13865 (m4_invoke): Remove decl.
13866 (scan_skel): New decl.
13867 (output_skeleton): Use pipe rather than temporary file for m4 input.
13868 Check that m4sugar.m4 is readable, to avoid deadlock.
13869 Check for pipe I/O error.
13870 * src/scan-skel.l (readpipe): Remove decl.
13871 (scan_skel): New function, to be used in place of m4_invoke.
13872 Read from stream rather than file.
13873
13874 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13875 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13876 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13877 this generates a more-accurate value anyway.
13878
13879 * lib/timevar.c (timervar_accumulate): Rename locals to
13880 avoid confusion with similarly-named more-global.
13881 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13882
13883 * src/output.c (prepare): Use xstrdup to convert char const *
13884 to char *, to avoid GCC warning.
13885
13886 2002-10-19 Akim Demaille <akim@epita.fr>
13887
13888 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13889 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13890 Use them to have `calc.y' ready for %pure-parser.
13891 * data/yacc.c (YYLEX): Pass a yylex return type to
13892 b4_c_function_call.
13893
13894 2002-10-19 Akim Demaille <akim@epita.fr>
13895
13896 Prototype support of %lex-param and %parse-param.
13897
13898 * src/parse-gram.y: Add the definition of the %lex-param and
13899 %parse-param tokens, plus their rules.
13900 Drop the `_' version of %glr-parser.
13901 Add the "," token.
13902 * src/scan-gram.l (INITIAL): Scan them.
13903 * src/muscle_tab.c: Comment changes.
13904 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13905 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13906 (muscle_entry_s): The `value' member is no longer const.
13907 Adjust all dependencies.
13908 * src/muscle_tab.c (muscle_init): Adjust: use
13909 MUSCLE_INSERT_STRING.
13910 Initialize the obstack earlier.
13911 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13912 (muscle_pair_list_grow): New.
13913 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13914 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13915 * tests/calc.at: Use %locations, not --locations.
13916 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13917
13918 2002-10-19 Akim Demaille <akim@epita.fr>
13919
13920 * src/getargs.c (usage): Take status as argument and exit
13921 accordingly.
13922 Report the traditional `Try ... --help' message when status != 0.
13923 (usage, version): Don't take a FILE * as arg, it is pointless.
13924 (getargs): When there is an incorrect number of arguments, make it
13925 an error, and report it GNUlically thanks to `usage ()'.
13926
13927 2002-10-18 Paul Eggert <eggert@twinsun.com>
13928
13929 * data/glr.c (yyreportParseError): Don't assume that sprintf
13930 yields the length of the printed string, as this is not true
13931 on SunOS 4.1.4. Reported by Peter Klein.
13932
13933 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13934 * tests/conflicts.at (%nonassoc and eof): Likewise.
13935 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13936
13937 2002-10-17 Akim Demaille <akim@epita.fr>
13938
13939 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13940 * src/getargs.c (trace_types, trace_args): Adjust.
13941 * src/reader.c (grammar_current_rule_prec_set)
13942 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13943 Standardize error messages.
13944 And s/@prec/%prec/!
13945 (reader): Use trace_flag to enable scanner/parser debugging,
13946 instead of an adhoc scheme.
13947 * src/scan-gram.l: Remove trailing debugging code.
13948
13949 2002-10-16 Paul Eggert <eggert@twinsun.com>
13950
13951 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13952 MUSCLE_TAB_H.
13953
13954 * NEWS: Officially drop support for building Bison with K&R C,
13955 since it didn't work anyway and it's not worth worrying about.
13956 * Makefile.maint (wget_files): Remove ansi2knr.c.
13957 (ansi2knr.c-url_prefix): Remove.
13958 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13959 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13960 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13961
13962 2002-10-15 Paul Eggert <eggert@twinsun.com>
13963
13964 Stop using the "enum_" trick for K&R-style function definitions;
13965 it confused me, and I was the author! Instead, assume that people
13966 who want to use K&R C compilers (when using these modules in GCC,
13967 perhaps?) will run ansi2knr.
13968
13969 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13970 All uses of "enum_" changed to "enum ".
13971 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13972 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13973
13974 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13975 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13976 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13977 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13978 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13979 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13980 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13981 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13982 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13983 Use function prototypes; this removes the need for declaring
13984 static functions simply to provide their prototypes.
13985 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13986 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13987 bitset_count_, bitset_create, bitset_dump, bitset_first,
13988 bitset_free, bitset_init, bitset_last, bitset_next,
13989 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13990 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13991 bitset_print, bitset_release_memory, bitset_toggle_,
13992 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13993 debug_bitset): Likewise.
13994 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13995 * lib/bitset_stats.c (bitset_log_histogram_print,
13996 bitset_percent_histogram_print, bitset_stats_and,
13997 bitset_stats_and_cmp, bitset_stats_and_or,
13998 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13999 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
14000 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
14001 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
14002 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
14003 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
14004 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
14005 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
14006 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
14007 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
14008 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
14009 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
14010 bitset_stats_zero): Likewise.
14011 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
14012 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
14013 bitsetv_dump, debug_bitsetv): Likewise.
14014 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
14015 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
14016 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
14017 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
14018 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
14019 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
14020 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
14021 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
14022 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
14023 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
14024 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
14025 Likewise.
14026 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
14027 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
14028 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
14029 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
14030 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
14031 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
14032 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
14033 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
14034 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
14035 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
14036 lbitset_xor_cmp, lbitset_zero): Likewise.
14037
14038 2002-10-14 Akim Demaille <akim@epita.fr>
14039
14040 Version 1.75.
14041
14042 2002-10-14 Akim Demaille <akim@epita.fr>
14043
14044 * tests/Makefile.am (maintainer-check-posix): New.
14045
14046 2002-10-14 Akim Demaille <akim@epita.fr>
14047
14048 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
14049 member.
14050
14051 2002-10-14 Akim Demaille <akim@epita.fr>
14052
14053 * src/tables.c (table_ninf_remap): base -> tab.
14054 Reported by Matt Rosing.
14055
14056 2002-10-14 Paul Eggert <eggert@twinsun.com>
14057
14058 * tests/action.at, tests/calc.at, tests/conflicts.at,
14059 tests/cxx-type.at, tests/headers.at, tests/input.at,
14060 tests/regression.at, tests/synclines.at, tests/torture.at:
14061 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
14062 so that the tests still work even if POSIXLY_CORRECT is set.
14063 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
14064
14065 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
14066 for portability to K&R hosts. Fix typo: signed char is guaranteed
14067 only to 127, not to 128.
14068 * data/glr.c (yysigned_char): New type.
14069 * data/yacc.c (yysigned_char): Likewise.
14070 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
14071
14072 2002-10-13 Paul Eggert <eggert@twinsun.com>
14073
14074 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
14075 true due to limited range of data type" warning from GCC.
14076
14077 * data/c.m4 (b4_token_defines): Protect against double-inclusion
14078 by wrapping enum yytokentype's definition inside #ifndef
14079 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
14080
14081 2002-10-13 Akim Demaille <akim@epita.fr>
14082
14083 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
14084 Un yy- yyrhs to avoid the name clash with the global YYRHS.
14085
14086 2002-10-13 Akim Demaille <akim@epita.fr>
14087
14088 * Makefile.maint: Update from Autoconf 2.54.
14089 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
14090
14091 2002-10-13 Akim Demaille <akim@epita.fr>
14092
14093 * src/print.c (print_state): Separate the list of solved conflicts
14094 from the other items.
14095 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
14096
14097 2002-10-13 Akim Demaille <akim@epita.fr>
14098
14099 Let nondeterministic skeletons be usable with deterministic
14100 tables.
14101
14102 With the patch, GAWK compiled by GCC without -O2 passes its test
14103 suite using a GLR parser driven by LALR tables. It fails with -O2
14104 because `struct stat' gives two different answers on my machine:
14105 88 (definition of an auto var) and later 96 (memset on this var).
14106 Hence the stack is badly corrumpted. The headers inclusion is to
14107 blame: if I move the awk.h inclusion before GLR's system header
14108 inclusion, the two struct stat have the same size.
14109
14110 * src/tables.c (pack_table): Always create conflict_table.
14111 (token_actions): Always create conflict_list.
14112 * data/glr.c (YYFLAG): Remove, unused.
14113
14114 2002-10-13 Akim Demaille <akim@epita.fr>
14115
14116 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
14117 (O0FLAGS): New.
14118 (VALGRIND, GXX): New.
14119 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
14120 * tests/bison.in: Run $PREBISON a pre-command.
14121 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
14122 (maintainer-check-g++): New.
14123 * Makefile.am (maintainer-check): New.
14124
14125 2002-10-13 Akim Demaille <akim@epita.fr>
14126
14127 * data/glr.c: Formatting changes.
14128 Tweak some trace messages to match yacc.c's.
14129
14130 2002-10-13 Akim Demaille <akim@epita.fr>
14131
14132 GLR parsers sometimes raise parse errors instead of performing the
14133 default reduction.
14134 Reported by Charles-Henry de Boysson.
14135
14136 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
14137 check the length of the traces when %glr.
14138 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
14139 GLR's traces.
14140 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
14141 Test GLR parsers.
14142 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
14143 (yyltype): Remove the yy prefix from the member names.
14144 (yytable): Complete its comment.
14145 (yygetLRActions): Map error action number from YYTABLE from
14146 YYTABLE_NINF to 0.
14147 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
14148 (which was a bug: it should have been YYTABEL_NINF, and yet it was
14149 not satisfying as we could compare an YYACTION computed from
14150 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
14151 only value for error actions.
14152 (yyreportParseError): In verbose parse error messages, don't issue
14153 `error' in the list of expected tokens.
14154 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
14155 next action to perform to match glr.c's decoding.
14156 (yytable): Complete its comment.
14157
14158 2002-10-13 Paul Eggert <eggert@twinsun.com>
14159
14160 Fix problem reported by Henrik Grubbstroem in
14161 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
14162 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
14163 because the Bison parser reads the second action before reducing
14164 the first one.
14165 * src/scan-gram.l (rule_length): New static var.
14166 Use it to keep track of the rule length in the scanner, since
14167 we can't expect the parser to be in lock-step sync with the scanner.
14168 (handle_action_dollar, handle_action_at): Use this var.
14169 * tests/actions.at (Exotic Dollars): Test for the problem.
14170
14171 2002-10-12 Paul Eggert <eggert@twinsun.com>
14172
14173 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
14174 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
14175 Include <sys/time.h> when checking for clock_t and struct tms.
14176 Use same include order as source.
14177 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
14178 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
14179
14180 * lib/timevar.c: Update copyright date and clarify comments.
14181 (get_time) [IN_GCC]: Keep the GCC version for reference.
14182
14183 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
14184 GCC version as of today, then merge Bison's changes.
14185 Change "GCC" to "Bison" in copyright notice. timevar.def's
14186 author is Akim, so change that too.
14187
14188 * src/reader.c (grammar_current_rule_check):
14189 Don't worry about the default action if $$ is untyped.
14190 Prevents bogus warnings reported by Jim Gifford in
14191 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
14192
14193 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
14194 * data/glr.c, data/lalr1.cc, data/yacc.c:
14195 Output token definitions before the first part of user declarations.
14196 Fixes compatibility problem reported by Jim Gifford for kbd in
14197 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14198
14199 2002-10-11 Paul Eggert <eggert@twinsun.com>
14200
14201 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
14202 (yyparse): here. This undoes some of the 2002-07-25 change.
14203 Compatibility problem reported by Ralf S. Engelschall with
14204 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
14205
14206 2002-10-11 Akim Demaille <akim@epita.fr>
14207
14208 * tests/regression.at Characters Escapes): New.
14209 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
14210 characters.
14211 Reported by Jan Nieuwenhuizen.
14212
14213 2002-10-11 Akim Demaille <akim@epita.fr>
14214
14215 * po/id.po: New.
14216
14217 2002-10-10 Paul Eggert <eggert@twinsun.com>
14218
14219 Portability fixes for bitsets; this also avoids several GCC
14220 warnings.
14221
14222 * lib/abitset.c: Include <stddef.h>, for offsetof.
14223 * lib/lbitset.c: Likewise.
14224
14225 * lib/abitset.c (abitset_bytes): Return a size that is aligned
14226 properly for vectors of objects. Do not assume that adding a
14227 header size to a multiple of a word size yields a value that is
14228 properly aligned for the whole union.
14229 * lib/bitsetv.c (bitsetv_alloc): Likewise.
14230
14231 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
14232 unique names for structures.
14233 * lib/ebitset.c (ebitset_bytes): Likewise.
14234 * lib/lbitset.c (lbitset_bytes): Likewise.
14235
14236 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
14237 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
14238 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
14239 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
14240 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
14241 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
14242 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
14243 to improve the type-checking that GCC can do.
14244 * lib/bitset.c (bitset_op4_cmp): Likewise.
14245 * lib/bitset_stats.c (bitset_stats_count,
14246 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
14247 bitset_stats_copy, bitset_stats_disjoint_p,
14248 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
14249 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
14250 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
14251 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
14252 bitset_stats_and_or_cmp, bitset_stats_andn_or,
14253 bitset_stats_andn_or_cmp, bitset_stats_or_and,
14254 bitset_stats_or_and_cmp): Likewise.
14255 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
14256 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
14257 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
14258 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
14259
14260 * lib/abitset.h: Include bitset.h, not bbitset.h.
14261 * lib/ebitset.h: Likewise.
14262 * lib/lbitset.h: Likewise.
14263
14264 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
14265 All instances of parameters of type enum bitset_opts are now of
14266 type enum_bitset_opts, to conform to the C Standard, and similarly
14267 for enum_bitset_type.
14268 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
14269 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
14270
14271 Do not use "struct bitset_struct" to mean different things in
14272 different modules. Not only is this confusing, it violates
14273 the C Standard, which requires that structure types in different
14274 modules must be compatible if one is to be passed to the other.
14275 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
14276 All instances of "struct bitset_struct *" replaced with "bitset".
14277 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
14278 (union bitset_union, struct abitset_struct, struct ebitset_struct,
14279 struct lbitset_struct, struct bitset_stats_struct): New types.
14280 All uses of struct bitset_struct changed to union bitset_union,
14281 etc.
14282 * lib/abitset.c (struct abitset_struct, abitset,
14283 struct bitset_struct): Remove.
14284 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
14285 struct bitset_struct): Remove.
14286 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
14287 bitset_struct): Remove.
14288 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
14289 Likewise.
14290
14291 Do not call a function of type T using a call that assumes the
14292 function is of a different type U. Standard C requires that a
14293 function must be called with a type that is compatible with its
14294 definition.
14295 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
14296 New decls.
14297 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
14298 New functions.
14299 * lib/ebitset.c (PFV): Remove.
14300 * lib/lbitset.c (PFV): Likewise.
14301 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
14302 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
14303 decls.
14304 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
14305 (ebitset_vtable): Use them.
14306 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
14307 lbitset_xor): New functions.
14308 (lbitset_vtable): Use them.
14309
14310 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
14311 Declare.
14312
14313 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
14314 GCC warning.
14315 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
14316 Use offsetof, for simplicity.
14317
14318 2002-10-06 Paul Eggert <eggert@twinsun.com>
14319
14320 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
14321 the same width as int. This reapplies a hunk of the 2002-08-12 patch
14322 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
14323 which was inadvertently undone by the 2002-09-30 patch.
14324 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
14325 the same width as int.
14326
14327 2002-10-04 Paul Eggert <eggert@twinsun.com>
14328
14329 Version 1.50.
14330
14331 * configure.ac (AC_INIT), NEWS: Increment version number.
14332
14333 * doc/bison.texinfo: Minor spelling, grammar, and white space
14334 fixes.
14335 (Symbols): Mention that any negative value returned from yylex
14336 signifies end-of-input. Warn about negative chars. Mention
14337 the portable Standard C character set.
14338
14339 The GNU coding standard says CFLAGS and YFLAGS are reserved
14340 for the installer to set.
14341 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
14342 * src/Makefile.am (AM_CFLAGS): Likewise.
14343 (AM_YFLAGS): Renamed from YFLAGS.
14344
14345 Fix some MAX and MIN problems.
14346 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
14347 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
14348 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
14349 * src/reader.c (reader): Use it.
14350
14351 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
14352 POSIX 1003.1-2001 has removed fgrep.
14353
14354 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
14355
14356 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
14357 interpreted as signed.
14358 * lib/ebitset.c (ebitset_list): Fix bug.
14359
14360 2002-10-01 Paul Eggert <eggert@twinsun.com>
14361
14362 More fixes for 64-bit hosts and large bitsets.
14363
14364 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
14365 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
14366 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
14367 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
14368 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
14369 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
14370 bitset_count_): Likewise.
14371 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
14372 bitset_first, bitset_last): Likewise.
14373 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
14374 bitset_stats_list_reverse, bitset_stats_size,
14375 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
14376 Likewise.
14377 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14378 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
14379 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
14380 bitsetv_reflexive_transitive_closure): Likewise.
14381 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
14382 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
14383 Likewise.
14384 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
14385 Likewise.
14386
14387 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
14388 Use size_t, not unsigned int, to count bytes.
14389 * lib/abitset.h (abitset_bytes): Likewise.
14390 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
14391 Likewise.
14392 * lib/bitset.h (bitset_bytes): Likewise.
14393 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
14394 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
14395 * lib/bitsetv.c (bitsetv_alloc): Likewise.
14396 * lib/ebitset.c (ebitset_bytes): Likewise.
14397 * lib/ebitset.h (ebitset_bytes): Likewise.
14398 * lib/lbitset.c (lbitset_bytes): Likewise.
14399 * lib/lbitset.h (lbitset_bytes): Likewise.
14400
14401 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
14402 abitset_subset_p, abitset_disjoint_p, abitset_and,
14403 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
14404 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
14405 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
14406 abitset_or_and, abitset_or_and_cmp):
14407 Use bitset_windex instead of unsigned int.
14408 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14409 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
14410 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
14411 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
14412 Likewise.
14413 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
14414
14415 * lib/bitset.c (bitset_print):
14416 Use proper printf formats for widths of integer types.
14417 * lib/bitset_stats.c (bitset_percent_histogram_print,
14418 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
14419 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14420 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14421 * lib/lbitset.c (lbitset_bytes): Likewise.
14422
14423 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
14424 BITSET_SIZE_MAX): New macros.
14425 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
14426 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
14427 to BITSET_WINDEX_MAX.
14428
14429 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
14430 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
14431 since we now return the bitset_bindex type (not int).
14432
14433 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
14434 when computing sizes.
14435 * lib/ebitset.c (ebitset_elts_grow): Likewise.
14436
14437 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
14438 and avoid cast to unsigned.
14439
14440 2002-09-30 Akim Demaille <akim@epita.fr>
14441
14442 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
14443 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
14444 Updates from Michael Hayes.
14445
14446 2002-09-30 Art Haas <ahaas@neosoft.com>
14447
14448 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
14449 invocations.
14450 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
14451 defined.
14452
14453 2002-09-27 Akim Demaille <akim@epita.fr>
14454
14455 Version 1.49c.
14456
14457 2002-09-27 Akim Demaille <akim@epita.fr>
14458
14459 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
14460 (Because of AC_LIBSOURCE).
14461
14462 2002-09-27 Akim Demaille <akim@epita.fr>
14463
14464 Playing with Autoscan.
14465
14466 * configure.ac: Remove the old LIBOBJ tweaks.
14467 (AC_REPLACE_FUNCS): Add strrchr and strtol.
14468 * lib/strrchr.c: New.
14469 * lib/strtol.c: New, from the Coreutils 4.5.1.
14470
14471 2002-09-27 Akim Demaille <akim@epita.fr>
14472
14473 Playing with Autoscan.
14474
14475 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
14476 * lib/Makefile.am (libbison_a_SOURCES): No longer include
14477 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
14478 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
14479 Coreutils 4.5.1.
14480
14481 2002-09-24 Akim Demaille <akim@epita.fr>
14482
14483 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
14484 (Frequently Asked Questions, Parser Stack Overflow): New.
14485
14486 2002-09-13 Akim Demaille <akim@epita.fr>
14487
14488 Playing with autoscan.
14489
14490 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
14491 * src/files.c (skeleton_find): Remove, unused.
14492 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
14493 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
14494
14495 2002-09-13 Akim Demaille <akim@epita.fr>
14496
14497 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
14498 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
14499
14500 2002-09-13 Akim Demaille <akim@epita.fr>
14501
14502 * configure.ac: Require 2.54.
14503 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
14504 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
14505 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
14506 Remove, provided by Autoconf macros.
14507
14508 2002-09-12 Akim Demaille <akim@epita.fr>
14509
14510 * m4/prereq.m4: Update, from Coreutils 4.5.1.
14511
14512 2002-09-12 Akim Demaille <akim@epita.fr>
14513
14514 * m4/prereq.m4: Update, from Fileutils 4.1.5.
14515 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
14516 Reported by Martin Mokrejs.
14517
14518 2002-09-10 Akim Demaille <akim@epita.fr>
14519
14520 * src/parse-gram.y: Associate a human readable string to each
14521 token type.
14522 * tests/regression.at (Invalid inputs): Adjust.
14523
14524 2002-09-10 Gary V. Vaughan <gary@gnu.org>
14525
14526 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
14527 with an Autoconf-2.5x style configure.ac.
14528
14529 2002-09-06 Paul Eggert <eggert@twinsun.com>
14530
14531 * doc/bison.texinfo (Conditions): Make explicit that the GPL
14532 exception applies only to yacc.c. This is a modification of a
14533 patch originally suggested by Akim Demaille.
14534
14535 2002-09-06 Akim Demaille <akim@epita.fr>
14536
14537 * data/c.m4 (b4_copyright): Move the GPL exception comment from
14538 here to...
14539 * data/yacc.c: here.
14540
14541 * data/lalr1.cc (struct yyltype): Don't define it, since we use
14542 LocationType.
14543 (b4_ltype): Default to yy::Location from location.hh.
14544
14545 2002-09-04 Jim Meyering <jim@meyering.net>
14546
14547 * data/yacc.c: Guard the declaration of yytoknum also with
14548 `#ifdef YYPRINT', so it is declared only when used.
14549
14550 2002-09-04 Akim Demaille <akim@epita.fr>
14551
14552 * configure.in: Rename as...
14553 * configure.ac: this.
14554 Bump to 1.49c.
14555
14556 2002-09-04 Akim Demaille <akim@epita.fr>
14557
14558 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
14559 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
14560 translate maintainer only messages.
14561
14562 2002-08-12 Paul Eggert <eggert@twinsun.com>
14563
14564 Version 1.49b.
14565
14566 * Makefile.am (SUBDIRS): Remove intl.
14567 (DISTCLEANFILES): Remove.
14568 * NEWS: Mention that GNU M4 is now required. Clarify what is
14569 meant by "larger grammars". Mention the pt_BR translation.
14570 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
14571 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
14572 Bump version from 0.11.2 to 0.11.5.
14573 (BISON_PREREQ_STAGE): Remove.
14574 (AM_GNU_GETTEXT): Use external gettext.
14575 (AC_OUTPUT): Remove intl/Makefile.
14576
14577 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
14578
14579 * data/glr.c: Include string.h, for strlen.
14580 (yyreportParseError): Use size_t for yysize.
14581 (yy_yypstack): No longer nested inside yypstates, as nested
14582 functions are not portable. Do not assume size_t is the
14583 same width as int.
14584 (yypstates): Do not assume that ptrdiff_t is the same width
14585 as int, and similarly for yyposn and YYINDEX.
14586
14587 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
14588
14589 * lib/Makefile.am (INCLUDES): Do not include from the intl
14590 directory, which has been removed.
14591 * src/Makefile.am (INCLUDES): Likewise.
14592
14593 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
14594 (bitsets_sources, additional_bitsets_sources, timevars_sources):
14595 New vars.
14596
14597 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
14598 * tests/Makefile.am (EXTRA_DIST): Likewise.
14599
14600 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
14601 Do not assume that bitset_windex is the same width as unsigned.
14602
14603 * lib/abitset.c (abitset_unused_clear): Do not assume that
14604 bitset_word is the same width as int.
14605 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
14606 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
14607 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
14608 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
14609 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
14610
14611 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
14612 portability to one's complement hosts!).
14613 * lib/ebitset.c (ebitset_op1): Likewise.
14614 * lib/lbitset.c (lbitset_op1): Likewise.
14615
14616 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
14617 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
14618 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
14619 Sync with fileutils.
14620 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
14621 lib/gettext.h: Sync with diffutils.
14622
14623 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
14624 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
14625
14626 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
14627 PROTOTYPES to check for prototypes, and "defined __STDC__" to
14628 check for void *.
14629
14630 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
14631 size_t; the old version tried to do this but casted improperly.
14632 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
14633 (bitset_test): Now returns int, not unsigned long.
14634
14635 * lib/bitset_stats.c: Include "gettext.h".
14636 (_): New macro.
14637 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
14638 name locals "index", as it generates unnecessary warnings on some
14639 hosts that have an "index" function.
14640
14641 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
14642 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
14643 they need translation.
14644 * src/LR0.c (state_list_append, new_itemsets, get_state,
14645 append_states, generate_states): Likewise.
14646 * src/assoc.c (assoc_to_string): Likewise.
14647 * src/closure.c (print_closure, set_firsts, closure): Likewise.
14648 * src/gram.c (grammar_dump): Likewise.
14649 * src/injections.c (injections_compute): Likewise.
14650 * src/lalr.c (lookaheads_print): Likewise.
14651 * src/relation.c (relation_transpose): Likewise.
14652 * src/scan-gram.l: Likewise.
14653 * src/tables.c (table_grow, pack_vector): Likewise.
14654
14655 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14656 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14657 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14658 * m4/mbstate_t.m4: Sync with fileutils.
14659 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14660
14661 * po/LINGUAS: Add pt_BR.
14662 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14663 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14664 lib/timevar.c.
14665 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14666 manual recommends.
14667 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14668
14669 * src/complain.c (strerror_r): Remove decl; not needed.
14670 (strerror): Use same pattern as ../lib/error.c.
14671
14672 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14673
14674 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14675
14676 * src/main.c (main): Cast result of bindtextdomain and textdomain
14677 to void, to avoid a GCC warning when --disable-nls is in effect.
14678
14679 * src/scan-gram.l: Use strings rather than escapes when possible,
14680 to minimize the number of warnings from xgettext.
14681 (handle_action_dollar, handle_action_at): Don't use isdigit,
14682 as it mishandles negative chars and it may not work as expected
14683 outside the C locale.
14684
14685 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14686 this is a GCC extension and is not portable to other compilers.
14687
14688 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14689 Do not include <ctype.h>; no longer needed.
14690 Do not include <malloc.h>; no longer needed (and generates
14691 warnings on OpenBSD 3.0).
14692
14693 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14694 it's not portable.
14695
14696 * tests/regression.at: Do not use 'cc -c input.c -o input';
14697 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14698
14699 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14700 exit status as failure, not just exit status 1. Sun C exits
14701 with status 2 sometimes.
14702
14703 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14704 Use it for the two large tests.
14705
14706 2002-08-02 Akim Demaille <akim@epita.fr>
14707
14708 * src/conflicts.c (conflicts_output): Don't output rules never
14709 reduced here, since anyway that computation doesn't work.
14710 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14711 (rule_useless_p, rule_never_reduced_p): New.
14712 (grammar_rules_partial_print): Use a filter instead of a range.
14713 Display the title only if needed.
14714 (grammar_rules_print): Adjust.
14715 (grammar_rules_never_reduced_report): New.
14716 * src/tables.c (action_row): Move the computation of rules never
14717 reduced to...
14718 (token_actions): here.
14719 * src/main.c (main): Make the parser before making the report, so
14720 that rules never reduced are computed.
14721 Call grammar_rules_never_reduced_report.
14722 * src/print.c (print_results): Report rules never reduced.
14723 * tests/conflicts.at, tests/reduce.at: Adjust.
14724
14725 2002-08-01 Akim Demaille <akim@epita.fr>
14726
14727 Instead of attaching lookaheads and duplicating the rules being
14728 reduced by a state, attach the lookaheads to the reductions.
14729
14730 * src/state.h (state_t): Remove the `lookaheads',
14731 `lookaheads_rule' member.
14732 (reductions_t): Add a `lookaheads' member.
14733 Use a regular array for the `rules'.
14734 * src/state.c (reductions_new): Initialize the lookaheads member
14735 to 0.
14736 (state_rule_lookaheads_print): Adjust.
14737 * src/state.h, src/state.c (state_reductions_find): New.
14738 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14739 (count_rr_conflicts): Adjust.
14740 * src/lalr.c (LArule): Remove.
14741 (add_lookback_edge): Adjust.
14742 (state_lookaheads_count): New.
14743 (states_lookaheads_initialize): Merge into...
14744 (initialize_LA): this.
14745 (lalr_free): Adjust.
14746 * src/main.c (main): Don't free nullable and derives too early: it
14747 is used by --verbose.
14748 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14749
14750 2002-08-01 Akim Demaille <akim@epita.fr>
14751
14752 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14753 `rule_number_t**'.
14754 (set_derives, free_derives): Rename as...
14755 (derives_compute, derives_free): this.
14756 Adjust all dependencies.
14757 * src/nullable.c (set_nullable, free_nullable): Rename as...
14758 (nullable_compute, nullable_free): these.
14759 (rule_list_t): Store rule_t *, not rule_number_t.
14760 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14761 pointers, instead of their numbers.
14762 * src/main.c (main): Call nullable_free, and derives_free earlier,
14763 as they were lo longer used.
14764
14765 2002-08-01 Akim Demaille <akim@epita.fr>
14766
14767 * lib/timevar.c (get_time): Include children time.
14768 * src/lalr.h (LA, LArule): Don't export them: used with the
14769 state_t.
14770 * src/lalr.c (LA, LArule): Static.
14771 * src/lalr.h, src/lalr.c (lalr_free): New.
14772 * src/main.c (main): Call it.
14773 * src/tables.c (pack_vector): Check whether loc is >= to the
14774 table_size, not >.
14775 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14776 (tables_generate): do it, since that's also it which allocates
14777 them.
14778 Don't free LA and LArule, main does.
14779
14780 2002-07-31 Akim Demaille <akim@epita.fr>
14781
14782 Separate parser tables computation and output.
14783
14784 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14785 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14786 (yydefgoto, yydefact, high): Move to...
14787 * src/tables.h, src/tables.c: here.
14788 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14789 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14790 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14791 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14792 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14793 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14794 (action_row, save_row, token_actions, save_column, default_goto)
14795 (goto_actions, sort_actions, matching_state, pack_vector)
14796 (table_ninf_remap, pack_table, prepare_actions): Move to...
14797 * src/tables.c: here.
14798 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14799 * src/output.c (token_actions, output_base, output_conflicts)
14800 (output_check): Merge into...
14801 (prepare_actions): this.
14802 (actions_output): Rename as...
14803 (user_actions_output): this.
14804 * src/main.c (main): Call tables_generate and tables_free.
14805
14806 2002-07-31 Akim Demaille <akim@epita.fr>
14807
14808 Steal GCC's --time-report support.
14809
14810 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14811 stolen/adjusted from GCC.
14812 * m4/stage.m4: Remove time related checks.
14813 * m4/timevar.m4: New.
14814 * configure.in: Adjust.
14815 * src/system.h: Adjust to using timevar.h.
14816 * src/getargs.h, src/getargs.c: Support trace_time for
14817 --trace=time.
14818 * src/main.c (stage): Remove.
14819 (main): Replace `stage' invocations with timevar calls.
14820 * src/output.c: Insert pertinent timevar calls.
14821
14822 2002-07-31 Akim Demaille <akim@epita.fr>
14823
14824 Let --trace have arguments.
14825
14826 * src/getargs.h (enum trace_e): New.
14827 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14828 (long_options, short_options): --trace/-T takes an optional
14829 argument.
14830 Change all the uses of trace_flag to reflect the new flags.
14831 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14832
14833 Strengthen `stage' portability.
14834
14835 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14836 * configure.in: Use it.
14837 Don't check for malloc.h and sys/times.h.
14838 * src/system.h: Include them when appropriate.
14839 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14840 times and struct tms are available.
14841
14842 2002-07-30 Akim Demaille <akim@epita.fr>
14843
14844 In verbose parse error message, don't report `error' as an
14845 expected token.
14846 * tests/actions.at (Printers and Destructors): Adjust.
14847 * tests/calc.at (Calculator $1): Adjust.
14848 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14849 error message, do not report the parser accepts the error token in
14850 that state.
14851
14852 2002-07-30 Akim Demaille <akim@epita.fr>
14853
14854 Normalize conflict related messages.
14855
14856 * src/complain.h, src/complain.c (warn, complain): New.
14857 * src/conflicts.c (conflicts_print): Use them.
14858 (conflict_report_yacc): New, extracted from...
14859 (conflicts_print): here.
14860 * tests/conflicts.at, tests/existing.at: Adjust.
14861
14862 2002-07-30 Akim Demaille <akim@epita.fr>
14863
14864 Report rules which are never reduced by the parser: those hidden
14865 by conflicts.
14866
14867 * src/LR0.c (save_reductions): Don't make the final state too
14868 different: save its reduction (accept) instead of having a state
14869 without any action (no shift or goto, no reduce).
14870 Note: the final state is now a ``regular'' state, i.e., the
14871 parsers now contain `reduce 0' as default reduction.
14872 Nevertheless, since they decide to `accept' when yystate =
14873 final_state, they still will not reduce rule 0.
14874 * src/print.c (print_actions, print_reduction): Adjust.
14875 * src/output.c (action_row): Track reduced rules.
14876 (token_actions): Report rules never reduced.
14877 * tests/conflicts.at, tests/regression.at: Adjust.
14878
14879 2002-07-30 Akim Demaille <akim@epita.fr>
14880
14881 `stage' was accidently included in a previous patch.
14882 Initiate its autoconfiscation.
14883
14884 * configure.in: Look for malloc.h and sys/times.h.
14885 * src/main.c (stage): Adjust.
14886 Report only when trace_flag.
14887
14888 2002-07-29 Akim Demaille <akim@epita.fr>
14889
14890 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14891 state_number_t.
14892 (errs_t): symbol_t*, not symbol_number_t.
14893 (reductions_t): rule_t*, not rule_number_t.
14894 (FOR_EACH_SHIFT): New.
14895 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14896 * src/print.c, src/print_graph.c: Adjust.
14897
14898 2002-07-29 Akim Demaille <akim@epita.fr>
14899
14900 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14901
14902 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14903 (endtoken, accept): these.
14904 * src/reader.c (reader): Set endtoken's default tag to "$end".
14905 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14906 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14907 Adjust.
14908
14909 2002-07-29 Akim Demaille <akim@epita.fr>
14910
14911 * src/reduce.c (reduce_grammar): When the language is empty,
14912 complain about the start symbol, not the axiom.
14913 Use its location.
14914 * tests/reduce.at (Empty Language): New.
14915
14916 2002-07-26 Akim Demaille <akim@epita.fr>
14917
14918 * src/reader.h, src/reader.c (gram_error): ... can't get
14919 yycontrol without making too strong assumptions on the parser
14920 itself.
14921 * src/output.c (prepare_tokens): Use the real 0th value of
14922 token_translations instead of `0'.
14923 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14924 visible here.
14925 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14926 for the time being: %locations ought to provide it to yyerror.
14927
14928 2002-07-25 Akim Demaille <akim@epita.fr>
14929
14930 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14931 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14932 * tests/regression.at (Web2c Actions): Adjust.
14933
14934 2002-07-25 Akim Demaille <akim@epita.fr>
14935
14936 Stop storing rules from 1 to nrules + 1.
14937
14938 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14939 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14940 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14941 Iterate from 0 to nrules.
14942 Use rule_number_as_item_number and item_number_as_rule_number.
14943 Adjust to `derive' now containing possibly 0.
14944 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14945 Handle the `- 1' part in rule numbers from/to item numbers.
14946 * src/conflicts.c (log_resolution): Fix the message which reversed
14947 shift and reduce.
14948 * src/output.c (action_row): Initialize default_rule to -1.
14949 (token_actions): Adjust.
14950 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14951 expected output.
14952 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14953
14954 2002-07-25 Akim Demaille <akim@epita.fr>
14955
14956 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14957 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14958 (b4_c_knr_arg_decl): New.
14959 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14960 yyreport_parse_error.
14961
14962 2002-07-25 Akim Demaille <akim@epita.fr>
14963
14964 * data/yacc.c (yyreport_parse_error): New, extracted from...
14965 (yyparse): here.
14966 (yydestruct, yysymprint): Move above yyparse.
14967 Be K&R compliant.
14968
14969 2002-07-25 Akim Demaille <akim@epita.fr>
14970
14971 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14972 replace...
14973 (b4_sint_type, b4_uint_type): these.
14974 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14975 * tests/regression.at (Web2c Actions): Adjust.
14976
14977 2002-07-25 Akim Demaille <akim@epita.fr>
14978
14979 * src/gram.h (TIEM_NUMBER_MAX): New.
14980 (item_number_of_rule_number, rule_number_of_item_number): Rename
14981 as...
14982 (rule_number_as_item_number, item_number_as_rule_number): these.
14983 Adjust dependencies.
14984 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14985 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14986 (symbol_number_to_vector_number): New.
14987 (order): Of vector_number_t* type.
14988 (base_t, BASE_MAX, BASE_MIN): New.
14989 (froms, tos, width, pos, check): Of base_t type.
14990 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14991 (actrow): Of action_number_t type.
14992 (conflrow): Of unsigned int type.
14993 (table_ninf, base_ninf): New.
14994 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14995 (muscle_insert_int_table, muscle_insert_base_table)
14996 (muscle_insert_rule_number_table): New.
14997 (prepare_tokens): Output `toknum' as int_table.
14998 (action_row): Returns a rule_number_t.
14999 Use ACTION_MIN, not SHRT_MIN.
15000 (token_actions): yydefact is rule_number_t*.
15001 (table_ninf_remap): New.
15002 (pack_table): Use it for `base' and `table'.
15003 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
15004 replaced with...
15005 (YYPACT_NINF, YYTABLE_NINF): these.
15006 (yypact, yytable): Compute their types instead of hard-coded
15007 `short'.
15008 * tests/regression.at (Web2c Actions): Adjust.
15009
15010 2002-07-19 Akim Demaille <akim@epita.fr>
15011
15012 * src/scan-gram.l (id): Can start with an underscore.
15013
15014 2002-07-16 Akim Demaille <akim@epita.fr>
15015
15016 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
15017 Adjust all former `associativity' dependencies.
15018 * src/symtab.c (symbol_new): Default associativity is `undef', not
15019 `right'.
15020 (symbol_check_alias_consistence): Adjust.
15021
15022 2002-07-09 Akim Demaille <akim@epita.fr>
15023
15024 * doc/bison.texinfo: Properly set the ``header'' part.
15025 Use @dircategory ``GNU programming tools'' as per Texinfo's
15026 documentation.
15027 Use @copying.
15028
15029 2002-07-09 Akim Demaille <akim@epita.fr>
15030
15031 * lib/quotearg.h: Protect against multiple inclusions.
15032 * src/location.h (location_t): Add a `file' member.
15033 (LOCATION_RESET, LOCATION_PRINT): Adjust.
15034 * src/complain.c (warn_at, complain_at, fatal_at): Drop
15035 `error_one_per_line' support.
15036
15037 2002-07-09 Akim Demaille <akim@epita.fr>
15038
15039 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
15040 * src/reader.c (lineno): Remove.
15041 Adjust all dependencies.
15042 (get_merge_function): Take a location and use complain_at.
15043 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
15044 * tests/regression.at (Invalid inputs, Mixing %token styles):
15045 Adjust.
15046
15047 2002-07-09 Akim Demaille <akim@epita.fr>
15048
15049 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
15050 recovery rule, and forbid extensions when --yacc.
15051 (gram_error): Use complain_at.
15052 * src/reader.c (reader): Exit if there were parse errors.
15053
15054 2002-07-09 Akim Demaille <akim@epita.fr>
15055
15056 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
15057 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
15058 Reported by R Blake <blakers@mac.com>.
15059
15060 2002-07-09 Akim Demaille <akim@epita.fr>
15061
15062 * data/yacc.c: Output the copyright notive in the header.
15063
15064 2002-07-03 Akim Demaille <akim@epita.fr>
15065
15066 * src/output.c (froms, tos): Are state_number_t.
15067 (save_column): sp, sp1, and sp2 are state_number_t.
15068 (prepare): Rename `final' as `final_state_number', `nnts' as
15069 `nterms_number', `nrules' as `rules_number', `nstates' as
15070 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
15071 unused.
15072 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
15073 * data/lalr1.cc (nsym_): Remove, unused.
15074
15075 2002-07-03 Akim Demaille <akim@epita.fr>
15076
15077 * src/lalr.h, src/lalr.c (goto_number_t): New.
15078 * src/lalr.c (goto_list_t): New.
15079 Propagate them.
15080 * src/nullable.c (rule_list_t): New.
15081 Propagate.
15082 * src/types.h: Remove.
15083
15084 2002-07-03 Akim Demaille <akim@epita.fr>
15085
15086 * src/closure.c (print_fderives): Use rule_rhs_print.
15087 * src/derives.c (print_derives): Use rule_rhs_print.
15088 (rule_list_t): New, replaces `shorts'.
15089 (set_derives): Add comments.
15090 * tests/sets.at (Nullable, Firsts): Adjust.
15091
15092 2002-07-03 Akim Demaille <akim@epita.fr>
15093
15094 * src/output.c (prepare_actions): Free `tally' and `width'.
15095 (prepare_actions): Allocate and free `order'.
15096 * src/symtab.c (symbols_free): Free `symbols'.
15097 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
15098 * src/output.c (m4_invoke): Move to...
15099 * src/scan-skel.l: here.
15100 (<<EOF>>): Close yyout, and free its name.
15101
15102 2002-07-03 Akim Demaille <akim@epita.fr>
15103
15104 Fix some memory leaks, and fix a bug: state 0 was examined twice.
15105
15106 * src/LR0.c (new_state): Merge into...
15107 (state_list_append): this.
15108 (new_states): Merge into...
15109 (generate_states): here.
15110 (set_states): Don't ensure a proper `errs' state member here, do it...
15111 * src/conflicts.c (conflicts_solve): here.
15112 * src/state.h, src/state.c: Comment changes.
15113 (state_t): Rename member `shifts' as `transitions'.
15114 Adjust all dependencies.
15115 (errs_new): For consistency, also take the values as argument.
15116 (errs_dup): Remove.
15117 (state_errs_set): New.
15118 (state_reductions_set, state_transitions_set): Assert that no
15119 previous value was assigned.
15120 (state_free): New.
15121 (states_free): Use it.
15122 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
15123 temporary storage: use `errs' and `nerrs' as elsewhere.
15124 (set_conflicts): Allocate and free this `errs'.
15125
15126 2002-07-02 Akim Demaille <akim@epita.fr>
15127
15128 * lib/libiberty.h: New.
15129 * lib: Update the bitset implementation from upstream.
15130 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
15131 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
15132 * src/main.c: Adjust bitset stats calls.
15133
15134 2002-07-01 Paul Eggert <eggert@twinsun.com>
15135
15136 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
15137 char, so that negative chars don't collide with $.
15138
15139 2002-06-30 Akim Demaille <akim@epita.fr>
15140
15141 Have the GLR tests be `warning' checked, and fix the warnings.
15142
15143 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
15144 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
15145 (yyremoveDeletes): `yyi' and `yyj' are size_t.
15146 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
15147 (yyaddDeferredAction): static.
15148 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
15149 (yyreportParseError): yyprefix is const.
15150 yytokenp is used only when verbose.
15151 (yy__GNUC__): Replace with __GNUC__.
15152 (yypdumpstack): yyi is size_t.
15153 (yypreference): Un-yy local variables and arguments, to avoid
15154 clashes with `yyr1'. Anyway, we are not in the user name space.
15155 (yytname_size): be an int, as is compared with ints.
15156 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
15157 Use them.
15158 * tests/cxx-gram.at: Use quotation to protect $1.
15159 Use AT_COMPILE to enable warnings hunts.
15160 Prototype yylex and yyerror.
15161 `Use' argc.
15162 Include `string.h', not `strings.h'.
15163 Produce and prototype stmtMerge only when used.
15164 yylex takes a location.
15165
15166 2002-06-30 Akim Demaille <akim@epita.fr>
15167
15168 We spend a lot of time in quotearg, in particular when --verbose.
15169
15170 * src/symtab.c (symbol_get): Store a quoted version of the key.
15171 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
15172 Adjust all callers.
15173
15174 2002-06-30 Akim Demaille <akim@epita.fr>
15175
15176 * src/state.h (reductions_t): Rename member `nreds' as num.
15177 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
15178 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
15179
15180 2002-06-30 Akim Demaille <akim@epita.fr>
15181
15182 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
15183 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
15184 (shifts_to): Rename as...
15185 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
15186 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
15187 (TRANSITION_IS_DISABLED, transitions_to): these.
15188
15189 2002-06-30 Akim Demaille <akim@epita.fr>
15190
15191 * src/print.c (print_shifts, print_gotos): Merge into...
15192 (print_transitions): this.
15193 (print_transitions, print_errs, print_reductions): Align the
15194 lookaheads columns.
15195 (print_core, print_transitions, print_errs, print_state,
15196 print_grammar): Output empty lines separator before, not after.
15197 (state_default_rule_compute): Rename as...
15198 (state_default_rule): this.
15199 * tests/conflicts.at (Defaulted Conflicted Reduction),
15200 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
15201 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
15202
15203 2002-06-30 Akim Demaille <akim@epita.fr>
15204
15205 Display items as we display rules.
15206
15207 * src/gram.h, src/gram.c (rule_lhs_print): New.
15208 * src/gram.c (grammar_rules_partial_print): Use it.
15209 * src/print.c (print_core): Likewise.
15210 * tests/conflicts.at (Defaulted Conflicted Reduction),
15211 (Unresolved SR Conflicts): Adjust.
15212 (Unresolved SR Conflicts): Adjust and rename as...
15213 (Resolved SR Conflicts): this, as was meant.
15214 * tests/regression.at (Web2c Report): Adjust.
15215
15216 2002-06-30 Akim Demaille <akim@epita.fr>
15217
15218 * src/print.c (state_default_rule_compute): New, extracted from...
15219 (print_reductions): here.
15220 Pessimize, but clarify the code.
15221 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
15222
15223 2002-06-30 Akim Demaille <akim@epita.fr>
15224
15225 * src/output.c (action_row): Let default_rule be always a rule
15226 number.
15227
15228 2002-06-30 Akim Demaille <akim@epita.fr>
15229
15230 * src/closure.c (print_firsts, print_fderives, closure):
15231 Use BITSET_EXECUTE.
15232 * src/lalr.c (lookaheads_print): Likewise.
15233 * src/state.c (state_rule_lookaheads_print): Likewise.
15234 * src/print_graph.c (print_core): Likewise.
15235 * src/print.c (print_reductions): Likewise.
15236 * src/output.c (action_row): Likewise.
15237 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
15238
15239 2002-06-30 Akim Demaille <akim@epita.fr>
15240
15241 * src/print_graph.c: Use report_flag.
15242
15243 2002-06-30 Akim Demaille <akim@epita.fr>
15244
15245 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
15246 to...
15247 * src/relation.h, src/relation.c (traverse, relation_digraph)
15248 (relation_print, relation_transpose): New.
15249
15250 2002-06-30 Akim Demaille <akim@epita.fr>
15251
15252 * src/state.h, src/state.c (shifts_to): New.
15253 * src/lalr.c (build_relations): Use it.
15254
15255 2002-06-30 Akim Demaille <akim@epita.fr>
15256
15257 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
15258 (item_number_of_rule_number, rule_number_of_item_number): New.
15259 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
15260 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
15261 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
15262 Propagate their use.
15263 Much remains to be done, in particular wrt `shorts' from types.h.
15264
15265 2002-06-30 Akim Demaille <akim@epita.fr>
15266
15267 * src/symtab.c (symbol_new): Initialize the `printer' member.
15268
15269 2002-06-30 Akim Demaille <akim@epita.fr>
15270
15271 * src/LR0.c (save_reductions): Remove, replaced by...
15272 * src/state.h, src/state.c (state_reductions_set): New.
15273 (reductions, errs): Rename as...
15274 (reductions_t, errs_t): these.
15275 Adjust all dependencies.
15276
15277 2002-06-30 Akim Demaille <akim@epita.fr>
15278
15279 * src/LR0.c (state_list_t, state_list_append): New.
15280 (first_state, last_state): Now symbol_list_t.
15281 (this_state): Remove.
15282 (new_itemsets, append_states, save_reductions): Take a state_t as
15283 argument.
15284 (set_states, generate_states): Adjust.
15285 (save_shifts): Remove, replaced by...
15286 * src/state.h, src/state.c (state_shifts_set): New.
15287 (shifts): Rename as...
15288 (shifts_t): this.
15289 Adjust all dependencies.
15290 * src/state.h (state_t): Remove the `next' member.
15291
15292 2002-06-30 Akim Demaille <akim@epita.fr>
15293
15294 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
15295 escaped in slot 0.
15296
15297 2002-06-30 Akim Demaille <akim@epita.fr>
15298
15299 Use hash.h for the state hash table.
15300
15301 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
15302 (allocate_storage): Use state_hash_new.
15303 (free_storage): Use state_hash_free.
15304 (new_state, get_state): Adjust.
15305 * src/lalr.h, src/lalr.c (states): Move to...
15306 * src/states.h (state_t): Remove the `link' member, no longer
15307 used.
15308 * src/states.h, src/states.c: here.
15309 (state_hash_new, state_hash_free, state_hash_lookup)
15310 (state_hash_insert, states_free): New.
15311 * src/states.c (state_table, state_compare, state_hash): New.
15312 * src/output.c (output_actions): Do not free states now, since we
15313 still need to know the final_state number in `prepare', called
15314 afterwards. Do it...
15315 * src/main.c (main): here: call states_free after `output'.
15316
15317 2002-06-30 Akim Demaille <akim@epita.fr>
15318
15319 * src/state.h, src/state.c (state_new): New, extracted from...
15320 * src/LR0.c (new_state): here.
15321 * src/state.h (STATE_ALLOC): Move to...
15322 * src/state.c: here.
15323 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
15324 * src/state.h, src/state.c: here.
15325
15326 2002-06-30 Akim Demaille <akim@epita.fr>
15327
15328 * src/reader.c (gensym): Rename as...
15329 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
15330 (getsym): Rename as...
15331 (symbol_get): this.
15332
15333 2002-06-30 Akim Demaille <akim@epita.fr>
15334
15335 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
15336 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
15337 * src/output.c, src/print.c, src/print_graph.c: Propagate.
15338 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
15339
15340 2002-06-30 Akim Demaille <akim@epita.fr>
15341
15342 Make the test suite pass with warnings checked.
15343
15344 * tests/actions.at (Printers and Destructors): Improve.
15345 Avoid unsigned vs. signed issues.
15346 * tests/calc.at: Don't exercise the scanner here, do it...
15347 * tests/input.at (Torturing the Scanner): here.
15348
15349 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15350
15351 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
15352 reorganize first lines parallel to yacc.c.
15353
15354 2002-06-28 Akim Demaille <akim@epita.fr>
15355
15356 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
15357 (b4_token_enum, b4_token_defines): New, factored from...
15358 * data/lalr1.cc, data/yacc.c, glr.c: here.
15359
15360 2002-06-28 Akim Demaille <akim@epita.fr>
15361
15362 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
15363 unused variables.
15364 * src/output.c (merger_output): static.
15365
15366 2002-06-28 Akim Demaille <akim@epita.fr>
15367
15368 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
15369 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
15370 pacify GCC.
15371 * src/output.c (save_row): Initialize all the variables to pacify GCC.
15372
15373 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15374
15375 Accumulated changelog for new GLR parsing features.
15376
15377 * src/conflicts.c (count_total_conflicts): Change name to
15378 conflicts_total_count.
15379 * src/conflicts.h: Ditto.
15380 * src/output.c (token_actions): Use the new name.
15381 (output_conflicts): Change conflp => conflict_list_heads, and
15382 confl => conflict_list for better readability.
15383 * data/glr.c: Use the new names.
15384 * NEWS: Add self to GLR announcement.
15385
15386 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
15387
15388 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
15389 Akim Demaille.
15390
15391 * data/bison.glr: Change name to glr.c
15392 * data/glr.c: Renamed from bison.glr.
15393 * data/Makefile.am: Add glr.c
15394
15395 * src/getargs.c:
15396
15397 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
15398 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
15399
15400 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15401
15402 * data/bison.glr: Be sure to restore the
15403 current #line when returning to the skeleton contents after having
15404 exposed the input file's #line.
15405
15406 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15407
15408 * data/bison.glr: Bring up to date with changes to bison.simple.
15409
15410 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15411
15412 * data/bison.glr: Correct definitions that use b4_prefix.
15413 Various reformatting.
15414 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
15415 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
15416 yytokenp argument; now part of stack.
15417 (yychar): Define to behave as documented.
15418 (yyclearin): Ditto.
15419
15420 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15421
15422 * src/reader.h: Add declaration for free_merger_functions.
15423
15424 * src/reader.c (merge_functions): New variable.
15425 (get_merge_function): New function.
15426 (free_merger_functions): New function.
15427 (readgram): Check for %prec that is not followed by a symbol.
15428 Handle %dprec and %merge declarations.
15429 (packgram): Initialize dprec and merger fields in rules array.
15430
15431 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
15432 conflict_list_cnt, conflict_list_free): New variables.
15433 (table_grow): Also grow conflict_table.
15434 (prepare_rules): Output dprec and merger tables.
15435 (conflict_row): New function.
15436 (action_row): Output conflict lists for GLR parser. Don't use
15437 default reduction in conflicted states for GLR parser so that there
15438 are spaces for the conflict lists.
15439 (save_row): Also save conflict information.
15440 (token_actions): Allocate conflict list.
15441 (merger_output): New function.
15442 (pack_vector): Pack conflict table, too.
15443 (output_conflicts): New function to output yyconflp and yyconfl.
15444 (output_check): Allocate conflict_tos.
15445 (output_actions): Output conflict tables, also.
15446 (output_skeleton): Output b4_mergers definition.
15447 (prepare): Output b4_max_rhs_length definition.
15448 Use 'bison.glr' as default skeleton for GLR parsers.
15449
15450 * src/gram.c (glr_parser): New flag.
15451 (grammar_free): Call free_merger_functions.
15452
15453 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
15454 all pairs of conflicting reductions, rather than just all tokens
15455 causing conflicts. Needed to size conflict tables.
15456 (conflicts_output): Modify call to count_rr_conflicts for new
15457 interface.
15458 (conflicts_print): Ditto.
15459 (count_total_conflicts): New function.
15460
15461 * src/reader.h (merger_list): New type.
15462 (merge_functions): New variable.
15463
15464 * src/lex.h (tok_dprec, tok_merge): New token types.
15465
15466 * src/gram.h (rule_s): Add dprec and merger fields.
15467 (glr_parser): New flag.
15468
15469 * src/conflicts.h (count_total_conflicts): New function.
15470
15471 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
15472
15473 * doc/bison.texinfo (Generalized LR Parsing): New section.
15474 (GLR Parsers): New section.
15475 (Language and Grammar): Mention GLR parsing.
15476 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
15477 Correct typo ("tge" -> "the").
15478
15479 * data/bison.glr: New skeleton for GLR parsing.
15480
15481 * tests/cxx-gram.at: New tests for GLR parsing.
15482
15483 * tests/testsuite.at: Include cxx-gram.at.
15484
15485 * tests/Makefile.am: Add cxx-gram.at.
15486
15487 * src/parse-gram.y:
15488
15489 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
15490
15491 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
15492
15493 2002-06-27 Akim Demaille <akim@epita.fr>
15494
15495 * src/options.h, src/options.c: Remove.
15496 * src/getargs.c (short_options, long_options): New.
15497
15498 2002-06-27 Akim Demaille <akim@epita.fr>
15499
15500 * data/bison.simple, data/bison.c++: Rename as...
15501 * data/yacc.c, data/lalr1.cc: these.
15502 * doc/bison.texinfo (Environment Variables): Remove.
15503
15504 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
15505
15506 * src/getargs.c (report_argmatch): Initialize strtok().
15507
15508 2002-06-20 Akim Demaille <akim@epita.fr>
15509
15510 * data/bison.simple (b4_symbol_actions): New, replaces...
15511 (b4_symbol_destructor, b4_symbol_printer): these.
15512 (yysymprint): Be sure to call YYPRINT only for tokens, and using
15513 user token numbers.
15514
15515 2002-06-20 Akim Demaille <akim@epita.fr>
15516
15517 * data/bison.simple (yydestructor): Rename as...
15518 (yydestruct): this.
15519
15520 2002-06-20 Akim Demaille <akim@epita.fr>
15521
15522 * src/symtab.h, src/symtab.c (symbol_type_set)
15523 (symbol_destructor_set, symbol_precedence_set): The location is
15524 the last argument.
15525 Adjust all callers.
15526
15527 2002-06-20 Akim Demaille <akim@epita.fr>
15528
15529 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
15530 internals.
15531 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
15532 Takes a location.
15533 * src/symtab.h, src/symtab.c (symbol_class_set)
15534 (symbol_user_token_number_set): Likewise.
15535 Adjust all callers.
15536 Promote complain_at.
15537 * tests/input.at (Type Clashes): Adjust.
15538
15539 2002-06-20 Akim Demaille <akim@epita.fr>
15540
15541 * data/bison.simple (YYLEX): Fix the declaration when
15542 %pure-parser.
15543
15544 2002-06-20 Akim Demaille <akim@epita.fr>
15545
15546 * data/bison.simple (yysymprint): Don't print the token number,
15547 just its name.
15548 * tests/actions.at (Destructors): Rename as...
15549 (Printers and Destructors): this.
15550 Also exercise %printer.
15551
15552 2002-06-20 Akim Demaille <akim@epita.fr>
15553
15554 * data/bison.simple (YYDSYMPRINT): New.
15555 Use it to remove many of the #if YYDEBUG/if (yydebug).
15556
15557 2002-06-20 Akim Demaille <akim@epita.fr>
15558
15559 * src/symtab.h, src/symtab.c (symbol_t): printer and
15560 printer_location are new members.
15561 (symbol_printer_set): New.
15562 * src/parse-gram.y (PERCENT_PRINTER): New token.
15563 Handle its associated rule.
15564 * src/scan-gram.l: Adjust.
15565 (handle_destructor_at, handle_destructor_dollar): Rename as...
15566 (handle_symbol_code_at, handle_symbol_code_dollar): these.
15567 * src/output.c (symbol_printers_output): New.
15568 (output_skeleton): Call it.
15569 * data/bison.simple (yysymprint): New. Cannot be named yyprint
15570 since there are already many grammar files with a user `yyprint'.
15571 Replace the calls to YYPRINT to calls to yysymprint.
15572 * tests/calc.at: Adjust.
15573 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
15574 taking advantage of parser very internal details (stack size!).
15575
15576 2002-06-20 Akim Demaille <akim@epita.fr>
15577
15578 * src/scan-gram.l: Complete the scanner with the missing patterns
15579 to pacify Flex.
15580 Use `quote' and `symbol_tag_get' where appropriate.
15581
15582 2002-06-19 Akim Demaille <akim@epita.fr>
15583
15584 * tests/actions.at (Destructors): Augment to test locations.
15585 * data/bison.simple (yydestructor): Pass it the current location
15586 if locations are enabled.
15587 Prototype only when __STDC__ or C++.
15588 Change the argument names to move into the yy name space: there is
15589 user code here.
15590
15591 2002-06-19 Akim Demaille <akim@epita.fr>
15592
15593 * data/bison.simple (b4_pure_if): New.
15594 Use it instead of #ifdef YYPURE.
15595
15596 2002-06-19 Akim Demaille <akim@epita.fr>
15597
15598 * data/bison.simple (b4_location_if): New.
15599 Use it instead of #ifdef YYLSP_NEEDED.
15600
15601 2002-06-19 Akim Demaille <akim@epita.fr>
15602
15603 Prepare @$ in %destructor, but currently don't bind it in the
15604 skeleton, as %location use is not cleaned up yet.
15605
15606 * src/scan-gram.l (handle_dollar, handle_destructor_at)
15607 (handle_action_at): New.
15608 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
15609 a braced_code_t and a location as additional arguments.
15610 (handle_destructor_dollar): Instead of requiring `b4_eval', just
15611 unquote one when outputting `b4_dollar_dollar'.
15612 Adjust callers.
15613 * data/bison.simple (b4_eval): Remove.
15614 (b4_symbol_destructor): Adjust.
15615 * tests/input.at (Invalid @n): Adjust.
15616
15617 2002-06-19 Zack Weinberg <zack@codesourcery.com>
15618
15619 * doc/bison.texinfo: Document ability to have multiple
15620 prologue sections.
15621
15622 2002-06-18 Akim Demaille <akim@epita.fr>
15623
15624 * src/files.c (compute_base_names): When computing the output file
15625 names from the input file name, strip the directory part.
15626
15627 2002-06-18 Akim Demaille <akim@epita.fr>
15628
15629 * data/bison.simple.new: Comment changes.
15630 Reported by Andreas Schwab.
15631
15632 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
15633
15634 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
15635 there are no `label `yyoverflowlab' defined but not used' warnings
15636 when yyoverflow is defined.
15637
15638 2002-06-18 Akim Demaille <akim@epita.fr>
15639
15640 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
15641 new member.
15642 (symbol_destructor_set): Adjust.
15643 * src/output.c (symbol_destructors_output): Output the destructor
15644 locations.
15645 Output the symbol name.
15646 * data/bison.simple (b4_symbol_destructor): Adjust.
15647
15648 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
15649 and Akim Demaille <akim@epita.fr>
15650
15651 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
15652 what's left on the stack when the error recovery hits EOF.
15653 * tests/actions.at (Destructors): Complete to exercise this case.
15654
15655 2002-06-17 Akim Demaille <akim@epita.fr>
15656
15657 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15658 arguments is really empty, not only equal to `[]'.
15659 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15660 member.
15661 (symbol_destructor_set): New.
15662 * src/output.c (symbol_destructors_output): New.
15663 * src/reader.h (brace_code_t, current_braced_code): New.
15664 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15665 (handle_dollar): Rename as...
15666 (handle_action_dollar): this.
15667 (handle_destructor_dollar): New.
15668 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15669 (grammar_declaration): Use it.
15670 * data/bison.simple (yystos): Is always defined.
15671 (yydestructor): New.
15672 * tests/actions.at (Destructors): New.
15673 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15674
15675 2002-06-17 Akim Demaille <akim@epita.fr>
15676
15677 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15678 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15679 rule_length only when needed.
15680 * src/output.c (actions_output, token_definitions_output): Output
15681 the full M4 block.
15682 * src/symtab.c: Don't access directly to the symbol tag, use
15683 symbol_tag_get.
15684 * src/parse-gram.y: Use symbol_list_free.
15685
15686 2002-06-17 Akim Demaille <akim@epita.fr>
15687
15688 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15689 (symbol_list_prepend, get_type_name): Move to...
15690 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15691 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15692 Adjust all callers.
15693 (symbol_list_free): New.
15694 * src/scan-gram.l (handle_dollar): Takes a location.
15695 * tests/input.at (Invalid $n): Adjust.
15696
15697 2002-06-17 Akim Demaille <akim@epita.fr>
15698
15699 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15700 (symbol_list_prepend): New.
15701 * src/parse-gram.y (%union): `list' is a new member.
15702 (symbols.1): New, replaces...
15703 (terms_to_prec.1, nterms_to_type.1): these.
15704 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15705 Take a location as additional argument.
15706 Adjust all callers.
15707
15708 2002-06-15 Akim Demaille <akim@epita.fr>
15709
15710 * src/parse-gram.y: Move %token in the declaration section so that
15711 we don't depend upon CVS Bison.
15712
15713 2002-06-15 Akim Demaille <akim@epita.fr>
15714
15715 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15716 * src/print.c (print_core): Use it.
15717
15718 2002-06-15 Akim Demaille <akim@epita.fr>
15719
15720 * src/conflicts.c (log_resolution): Accept the rule involved in
15721 the sr conflicts instead of the lookahead number that points to
15722 that rule.
15723 (flush_reduce): Accept the current lookahead vector as argument,
15724 instead of the index in LA.
15725 (resolve_sr_conflict): Accept the current number of lookahead
15726 bitset to consider for the STATE, instead of the index in LA.
15727 (set_conflicts): Adjust.
15728 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15729
15730 2002-06-15 Akim Demaille <akim@epita.fr>
15731
15732 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15733 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15734 Adjust all dependencies.
15735 * src/lalr.c (initialize_lookaheads): Split into...
15736 (states_lookaheads_count, states_lookaheads_initialize): these.
15737 (lalr): Adjust.
15738
15739 2002-06-15 Akim Demaille <akim@epita.fr>
15740
15741 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15742 out of...
15743 (grammar_rules_print): here.
15744 * src/reduce.c (reduce_output): Use it.
15745 * tests/reduce.at (Useless Rules, Reduced Automaton)
15746 (Underivable Rules): Adjust.
15747
15748 2002-06-15 Akim Demaille <akim@epita.fr>
15749
15750 Copy BYacc's nice way to report the grammar.
15751
15752 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15753 New.
15754 Don't print the rules' location, it is confusing and useless.
15755 (rule_print): Use grammar_rhs_print.
15756 * src/print.c (print_grammar): Use grammar_rules_print.
15757
15758 2002-06-15 Akim Demaille <akim@epita.fr>
15759
15760 Complete and rationalize `useless thing' warnings.
15761
15762 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15763 (symbol_tag_print): New.
15764 Use them everywhere in place of accessing directly the tag member.
15765 * src/gram.h, src/gram.c (rule_print): New.
15766 Use it where a rule used to be printed `by hand'.
15767 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15768 (reduce_grammar_tables): Report the useless rules.
15769 (reduce_print): Useless things are a warning, not an error.
15770 Report it as such.
15771 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15772 (Reduced Automaton, Underivable Rules): Adjust.
15773 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15774 * tests/conflicts.at (Unresolved SR Conflicts)
15775 (Solved SR Conflicts): Adjust.
15776
15777 2002-06-15 Akim Demaille <akim@epita.fr>
15778
15779 Let symbols have a location.
15780
15781 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15782 (getsym): Adjust.
15783 Adjust all callers.
15784 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15785 Use location_t, not int.
15786 * src/symtab.c (symbol_check_defined): Take advantage of the
15787 location.
15788 * tests/regression.at (Invalid inputs): Adjust.
15789
15790 2002-06-15 Akim Demaille <akim@epita.fr>
15791
15792 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15793 (input): Don't try to initialize yylloc here, do it in the
15794 scanner.
15795 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15796 * src/gram.h (rule_t): Change line and action_line into location
15797 and action_location, of location_t type.
15798 Adjust all dependencies.
15799 * src/location.h, src/location.c (empty_location): New.
15800 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15801 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15802 (grammar_current_rule_symbol_append)
15803 (grammar_current_rule_action_append): Expect a location as argument.
15804 * src/reader.c (grammar_midrule_action): Adjust to attach an
15805 action's location as dummy symbol location.
15806 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15807 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15808 the line numbers.
15809
15810 2002-06-14 Akim Demaille <akim@epita.fr>
15811
15812 Grammar declarations may be found in the grammar section.
15813
15814 * src/parse-gram.y (rules_or_grammar_declaration): New.
15815 (declarations): Each declaration may end with a semicolon, not
15816 just...
15817 (grammar_declaration): `"%union"'.
15818 (grammar): Branch to rules_or_grammar_declaration.
15819
15820 2002-06-14 Akim Demaille <akim@epita.fr>
15821
15822 * src/main.c (main): Invoke scanner_free.
15823
15824 2002-06-14 Akim Demaille <akim@epita.fr>
15825
15826 * src/output.c (m4_invoke): Extracted from...
15827 (output_skeleton): here.
15828 Free tempfile.
15829
15830 2002-06-14 Akim Demaille <akim@epita.fr>
15831
15832 * src/parse-gram.y (directives, directive, gram)
15833 (grammar_directives, precedence_directives, precedence_directive):
15834 Rename as...
15835 (declarations, declaration, grammar, grammar_declaration)
15836 (precedence_declaration, precedence_declarator): these.
15837 (symbol_declaration): New.
15838
15839 2002-06-14 Akim Demaille <akim@epita.fr>
15840
15841 * src/files.c (action_obstack): Remove, unused.
15842 (output_obstack): Remove it, and all its dependencies, as it is no
15843 longer needed.
15844 * src/reader.c (epilogue_set): Build the epilogue in the
15845 muscle_obstack.
15846 * src/output.h, src/output.c (muscle_obstack): Move to...
15847 * src/muscle_tab.h, src/muscle_tab.h: here.
15848 (muscle_init): Initialize muscle_obstack.
15849 (muscle_free): New.
15850 * src/main.c (main): Call it.
15851
15852 2002-06-14 Akim Demaille <akim@epita.fr>
15853
15854 * src/location.h: New, extracted from...
15855 * src/reader.h: here.
15856 * src/Makefile.am (noinst_HEADERS): Merge into
15857 (bison_SOURCES): this.
15858 Add location.h.
15859 * src/parse-gram.y: Use location_t instead of Bison's.
15860 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15861 Use location_t instead of ints.
15862
15863 2002-06-14 Akim Demaille <akim@epita.fr>
15864
15865 * data/bison.simple, data/bison.c++: Be sure to restore the
15866 current #line when returning to the skeleton contents after having
15867 exposed the input file's #line.
15868
15869 2002-06-12 Akim Demaille <akim@epita.fr>
15870
15871 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15872 eager.
15873 * tests/actions.at (Exotic Dollars): New.
15874
15875 2002-06-12 Akim Demaille <akim@epita.fr>
15876
15877 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15878 ['"/] too eagerly.
15879 * tests/input.at (Torturing the Scanner): New.
15880
15881 2002-06-11 Akim Demaille <akim@epita.fr>
15882
15883 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15884 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15885 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15886 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15887 * src/reader.c (reader): Use it.
15888
15889 2002-06-11 Akim Demaille <akim@epita.fr>
15890
15891 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15892 Adjust all callers.
15893 (scanner_last_string_free): New.
15894
15895 2002-06-11 Akim Demaille <akim@epita.fr>
15896
15897 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15898 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15899 (last_string, YY_OBS_FREE): New.
15900 Use them when returning an ID.
15901
15902 2002-06-11 Akim Demaille <akim@epita.fr>
15903
15904 Have Bison grammars parsed by a Bison grammar.
15905
15906 * src/reader.c, src/reader.h (prologue_augment): New.
15907 * src/reader.c (copy_definition): Remove.
15908
15909 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15910 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15911 (grammar_current_rule_prec_set, grammar_current_rule_check)
15912 (grammar_current_rule_symbol_append)
15913 (grammar_current_rule_action_append): Export.
15914 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15915 (symbol_list_action_append): Remove.
15916 Hook the routines from reader.
15917 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15918 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15919
15920 * src/reader.c (read_declarations): Remove, unused.
15921
15922 * src/parse-gram.y: Handle the epilogue.
15923 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15924 (grammar_start_symbol_set): this.
15925 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15926 * src/reader.c (readgram): Remove, unused.
15927 (reader): Adjust to insert eoftoken and axiom where appropriate.
15928
15929 * src/reader.c (copy_dollar): Replace with...
15930 * src/scan-gram.h (handle_dollar): this.
15931 * src/parse-gram.y: Remove `%thong'.
15932
15933 * src/reader.c (copy_at): Replace with...
15934 * src/scan-gram.h (handle_at): this.
15935
15936 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15937 New.
15938
15939 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15940 time being.
15941
15942 * src/reader.h, src/reader.c (grammar_rule_end): New.
15943
15944 * src/parse.y (current_type, current_class): New.
15945 Implement `%nterm', `%token' support.
15946 Merge `%term' into `%token'.
15947 (string_as_id): New.
15948 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15949 type name.
15950
15951 * src/parse-gram.y: Be sure to handle properly the beginning of
15952 rules.
15953
15954 * src/parse-gram.y: Handle %type.
15955 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15956
15957 * src/parse-gram.y: More directives support.
15958 * src/options.c: No longer handle source directives.
15959
15960 * src/parse-gram.y: Fix %output.
15961
15962 * src/parse-gram.y: Handle %union.
15963 Use the prologue locations.
15964 * src/reader.c (parse_union_decl): Remove.
15965
15966 * src/reader.h, src/reader.c (epilogue_set): New.
15967 * src/parse-gram.y: Use it.
15968
15969 * data/bison.simple, data/bison.c++: b4_stype is now either not
15970 defined, then default to int, or to the contents of %union,
15971 without `union' itself.
15972 Adjust.
15973 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15974
15975 * src/output.c (actions_output): Don't output braces, as they are
15976 already handled by the scanner.
15977
15978 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15979 characters to themselves.
15980
15981 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15982 that the epilogue has a proper #line.
15983
15984 * src/parse-gram.y: Handle precedence/associativity.
15985
15986 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15987 a terminal.
15988 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15989 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15990 at all to define terminals that cannot be emitted.
15991
15992 * src/scan-gram.l: Escape M4 characters.
15993
15994 * src/scan-gram.l: Working properly with escapes in user
15995 strings/characters.
15996
15997 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15998 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15999 grammar.
16000 Use more modest sizes, as for the time being the parser does not
16001 release memory, and therefore the process swallows a huge amount
16002 of memory.
16003
16004 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
16005 stricter %token grammar.
16006
16007 * src/symtab.h (associativity): Add `undef_assoc'.
16008 (symbol_precedence_set): Do nothing when passed an undef_assoc.
16009 * src/symtab.c (symbol_check_alias_consistence): Adjust.
16010
16011 * tests/regression.at (Invalid %directive): Remove, as it is now
16012 meaningless.
16013 (Invalid inputs): Adjust to the new error messages.
16014 (Token definitions): The new grammar doesn't allow too many
16015 eccentricities.
16016
16017 * src/lex.h, src/lex.c: Remove.
16018 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
16019 (copy_character, copy_string2, copy_string, copy_identifier)
16020 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
16021 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
16022 (parse_action): Remove.
16023 * po/POTFILES.in: Adjust.
16024
16025 2002-06-11 Akim Demaille <akim@epita.fr>
16026
16027 * src/reader.c (parse_action): Don't store directly into the
16028 rule's action member: return the action as a string.
16029 Don't require `rule_length' as an argument: compute it.
16030 (grammar_current_rule_symbol_append)
16031 (grammar_current_rule_action_append): New, eved out from
16032 (readgram): here.
16033 Remove `action_flag', `rulelength', unused now.
16034
16035 2002-06-11 Akim Demaille <akim@epita.fr>
16036
16037 * src/reader.c (grammar_current_rule_prec_set).
16038 (grammar_current_rule_check): New, eved out from...
16039 (readgram): here.
16040 Remove `xaction', `first_rhs': useless.
16041 * tests/input.at (Type clashes): New.
16042 * tests/existing.at (GNU Cim Grammar): Adjust.
16043
16044 2002-06-11 Akim Demaille <akim@epita.fr>
16045
16046 * src/reader.c (grammar_midrule_action): New, Eved out from
16047 (readgram): here.
16048
16049 2002-06-11 Akim Demaille <akim@epita.fr>
16050
16051 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
16052 New.
16053 (readgram): Use them as replacement of inlined code, crule and
16054 crule1.
16055
16056 2002-06-11 Akim Demaille <akim@epita.fr>
16057
16058 * src/reader.c (grammar_end, grammar_symbol_append): New.
16059 (readgram): Use them.
16060 Make the use of `p' as local as possible.
16061
16062 2002-06-10 Akim Demaille <akim@epita.fr>
16063
16064 GCJ's parser requires the tokens to be defined before the prologue.
16065
16066 * data/bison.simple: Output the token definition before the user's
16067 prologue.
16068 * tests/regression.at (Braces parsing, Duplicate string)
16069 (Mixing %token styles): Check the output from bison.
16070 (Early token definitions): New.
16071
16072 2002-06-10 Akim Demaille <akim@epita.fr>
16073
16074 * src/symtab.c (symbol_user_token_number_set): Don't complain when
16075 assigning twice the same user number to a token, so that we can
16076 use it in...
16077 * src/lex.c (lex): here.
16078 Also use `symbol_class_set' instead of hand written code.
16079 * src/reader.c (parse_assoc_decl): Likewise.
16080
16081 2002-06-10 Akim Demaille <akim@epita.fr>
16082
16083 * src/symtab.c, src/symtab.c (symbol_class_set)
16084 (symbol_user_token_number_set): New.
16085 * src/reader.c (parse_token_decl): Use them.
16086 Use a switch instead of ifs.
16087 Use a single argument.
16088
16089 2002-06-10 Akim Demaille <akim@epita.fr>
16090
16091 Remove `%thong' support as it is undocumented, unused, duplicates
16092 `%token's job, and creates useless e-mail traffic with people who
16093 want to know what it is, why it is undocumented, unused, and
16094 duplicates `%token's job.
16095
16096 * src/reader.c (parse_thong_decl): Remove.
16097 * src/options.c (option_table): Remove "thong".
16098 * src/lex.h (tok_thong): Remove.
16099
16100 2002-06-10 Akim Demaille <akim@epita.fr>
16101
16102 * src/symtab.c, src/symtab.c (symbol_type_set)
16103 (symbol_precedence_set): New.
16104 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
16105 (value_components_used): Remove, unused.
16106
16107 2002-06-09 Akim Demaille <akim@epita.fr>
16108
16109 Move symbols handling code out of the reader.
16110
16111 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
16112 (axiom): Move to...
16113 * src/symtab.h, src/symtab.c: here.
16114
16115 * src/gram.c (start_symbol): Remove: use startsymbol->number.
16116 * src/reader.c (startval): Rename as...
16117 * src/symtab.h, src/symtab.c (startsymbol): this.
16118 * src/reader.c: Adjust.
16119
16120 * src/reader.c (symbol_check_defined, symbol_make_alias)
16121 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16122 (token_translations_init)
16123 Move to...
16124 * src/symtab.c: here.
16125 * src/reader.c (packsymbols): Move to...
16126 * src/symtab.h, src/symtab.c (symbols_pack): here.
16127 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
16128 argument.
16129
16130 2002-06-03 Akim Demaille <akim@epita.fr>
16131
16132 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
16133 then statements.
16134
16135 2002-06-03 Akim Demaille <akim@epita.fr>
16136
16137 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
16138 structs with non literals.
16139 * src/scan-skel.l: never-interactive.
16140 * src/conflicts.c (enum conflict_resolution_e): No trailing
16141 comma.
16142 * src/getargs.c (usage): Split long literal strings.
16143 Reported by Hans Aberg.
16144
16145 2002-05-28 Akim Demaille <akim@epita.fr>
16146
16147 * data/bison.c++: Use C++ ostreams.
16148 (cdebug_): New member.
16149
16150 2002-05-28 Akim Demaille <akim@epita.fr>
16151
16152 * src/output.c (output_skeleton): Be sure to allocate enough room
16153 for `/' _and_ for `\0' in full_skeleton.
16154
16155 2002-05-28 Akim Demaille <akim@epita.fr>
16156
16157 * data/bison.c++: Catch up with bison.simple:
16158 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16159 and Paul Eggert <eggert@twinsun.com>: `error' handing.
16160 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
16161 and popping traces.
16162
16163 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16164
16165 * src/output.c (output_skeleton): Put an explicit path in front of
16166 the skeleton file name, rather than relying on the -I directory,
16167 to partially alleviate effects of having a skeleton file lying around
16168 in the current directory.
16169
16170 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16171
16172 * src/conflicts.c (log_resolution): Correct typo:
16173 obstack_printf should be obstack_fgrow1.
16174
16175 2002-05-26 Akim Demaille <akim@epita.fr>
16176
16177 * src/state.h (state_t): `solved_conflicts' is a new member.
16178 * src/LR0.c (new_state): Set it to 0.
16179 * src/conflicts.h, src/conflicts.c (print_conflicts)
16180 (free_conflicts, solve_conflicts): Rename as...
16181 (conflicts_print, conflicts_free, conflicts_solve): these.
16182 Adjust callers.
16183 * src/conflicts.c (enum conflict_resolution_e)
16184 (solved_conflicts_obstack): New, used by...
16185 (log_resolution): this.
16186 Adjust to attach the conflict resolution to each state.
16187 Complete the description with the precedence/associativity
16188 information.
16189 (resolve_sr_conflict): Adjust.
16190 * src/print.c (print_state): Output its solved_conflicts.
16191 * tests/conflicts.at (Unresolved SR Conflicts)
16192 (Solved SR Conflicts): Exercise --report=all.
16193
16194 2002-05-26 Akim Demaille <akim@epita.fr>
16195
16196 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16197 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16198 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
16199 (token_number_t, item_number_as_token_number)
16200 (token_number_as_item_number, muscle_insert_token_number_table):
16201 Rename as...
16202 (symbol_number_t, item_number_as_symbol_number)
16203 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
16204 these, since it is more appropriate.
16205
16206 2002-05-26 Akim Demaille <akim@epita.fr>
16207
16208 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
16209 `Error:' lines.
16210 * data/bison.simple (yystos) [YYDEBUG]: New.
16211 (yyparse) [YYDEBUG]: Display the symbols which are popped during
16212 error recovery.
16213 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
16214
16215 2002-05-25 Akim Demaille <akim@epita.fr>
16216
16217 * doc/bison.texinfo (Debugging): Split into...
16218 (Tracing): this new section, its former contents, and...
16219 (Understanding): this new section.
16220 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
16221 by...
16222 (report_flag): this.
16223 Adjust all dependencies.
16224 (report_args, report_types, report_argmatch): New.
16225 (usage, getargs): Report/support -r, --report.
16226 * src/options.h
16227 (struct option_table_struct): Rename as..,
16228 (struct option_table_s): this.
16229 Rename the `set_flag' member to `flag' to match with getopt_long's
16230 struct.
16231 * src/options.c (option_table): Split verbose into an entry for
16232 %verbose, and another for --verbose.
16233 Support --report/-r, so remove -r from the obsolete --raw.
16234 * src/print.c: Attach full item sets and lookaheads reports to
16235 report_flag instead of trace_flag.
16236 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
16237
16238 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16239 and Paul Eggert <eggert@twinsun.com>
16240
16241 * data/bison.simple (yyparse): Correct error handling to conform to
16242 POSIX and yacc. Specifically, after syntax error is discovered,
16243 do not reduce further before shifting the error token.
16244 Clean up the code a bit by removing the labels yyerrdefault,
16245 yyerrhandle, yyerrpop.
16246 * NEWS: Document the above.
16247
16248 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16249
16250 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
16251 type; it isn't always big enough, since it doesn't necessarily
16252 include non-terminals.
16253 (yytranslate): Expand definition of yy_token_number_type, so that
16254 the latter can be removed.
16255 (yy_token_number_type): Remove, only one use.
16256 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
16257 don't use TokenNumberType as element type.
16258
16259 * tests/regression.at: Modify expected output to agree with change
16260 to yyr1 and yytranslate.
16261
16262 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
16263
16264 * src/reader.c (parse_action): Use copy_character instead of
16265 obstack_1grow.
16266
16267 2002-05-13 Akim Demaille <akim@epita.fr>
16268
16269 * tests/regression.at (Token definitions): Prototype yylex and
16270 yyerror.
16271
16272 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16273
16274 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
16275 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
16276 32-bit arithmetic.
16277 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
16278
16279 2002-05-07 Akim Demaille <akim@epita.fr>
16280
16281 * tests/synclines.at: Be sure to prototype yylex and yyerror to
16282 avoid GCC warnings.
16283
16284 2002-05-07 Akim Demaille <akim@epita.fr>
16285
16286 Kill GCC warnings.
16287
16288 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
16289 over the RHS of each rule.
16290 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
16291 * src/state.h (state_t): Member `nitems' is unsigned short.
16292 * src/LR0.c (get_state): Adjust.
16293 * src/reader.c (packgram): Likewise.
16294 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
16295 `Type'.
16296 (muscle_insert_int_table): Remove, unused.
16297 (prepare_rules): Remove `max'.
16298
16299 2002-05-06 Akim Demaille <akim@epita.fr>
16300
16301 * src/closure.c (print_firsts): Display of the symbol tags.
16302 (bitmatrix_print): Move to...
16303 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
16304 here.
16305 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
16306
16307 2002-05-06 Akim Demaille <akim@epita.fr>
16308
16309 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
16310 hash_do_for_each.
16311
16312 2002-05-06 Akim Demaille <akim@epita.fr>
16313
16314 * src/LR0.c (new_state, get_state): Instead of using the global
16315 `kernel_size' and `kernel_base', have two new arguments:
16316 `core_size' and `core'.
16317 Adjust callers.
16318
16319 2002-05-06 Akim Demaille <akim@epita.fr>
16320
16321 * src/reader.c (packgram): No longer end `ritem' with a 0
16322 sentinel: it is not used.
16323
16324 2002-05-05 Akim Demaille <akim@epita.fr>
16325
16326 New experimental feature: display the lookaheads in the report and
16327 graph.
16328
16329 * src/print (print_core): When --trace-flag, display the rules
16330 lookaheads.
16331 * src/print_graph.c (print_core): Likewise.
16332 Swap the arguments.
16333 Adjust caller.
16334
16335 2002-05-05 Akim Demaille <akim@epita.fr>
16336
16337 * tests/torture.at (Many lookaheads): New test.
16338
16339 2002-05-05 Akim Demaille <akim@epita.fr>
16340
16341 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
16342 (GENERATE_MUSCLE_INSERT_TABLE): this.
16343 (output_int_table, output_unsigned_int_table, output_short_table)
16344 (output_token_number_table, output_item_number_table): Replace with...
16345 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
16346 (muscle_insert_short_table, muscle_insert_token_number_table)
16347 (muscle_insert_item_number_table): these.
16348 Adjust all callers.
16349 (prepare_tokens): Don't free `translations', since...
16350 * src/reader.h, src/reader.c (grammar_free): do it.
16351 Move to...
16352 * src/gram.h, src/gram.c (grammar_free): here.
16353 * data/bison.simple, data/bison.c++: b4_token_number_max is now
16354 b4_translate_max.
16355
16356 2002-05-05 Akim Demaille <akim@epita.fr>
16357
16358 * src/output.c (output_unsigned_int_table): New.
16359 (prepare_rules): `i' is unsigned.
16360 `prhs', `rline', `r2' are unsigned int.
16361 Rename muscle `rhs_number_max' as `rhs_max'.
16362 Output muscles `prhs_max', `rline_max', and `r2_max'.
16363 Free rline and r1.
16364 * data/bison.simple, data/bison.c++: Adjust to use these muscles
16365 to compute types instead of constant types.
16366 * tests/regression.at (Web2c Actions): Adjust.
16367
16368 2002-05-04 Akim Demaille <akim@epita.fr>
16369
16370 * src/symtab.h (SALIAS, SUNDEF): Rename as...
16371 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
16372 Adjust dependencies.
16373 * src/output.c (token_definitions_output): Be sure not to output a
16374 `#define 'a'' when fed with `%token 'a' "a"'.
16375 * tests/regression.at (Token definitions): New.
16376
16377 2002-05-03 Paul Eggert <eggert@twinsun.com>
16378
16379 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
16380 for K&R C.
16381
16382 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
16383
16384 * Makefile.am (SUBDIRS): Remove intl.
16385 (EXTRA_DIST): Add config/config.rpath.
16386
16387 2002-05-03 Akim Demaille <akim@epita.fr>
16388
16389 * data/bison.simple (m4_if): Don't output empty enums.
16390 And actually, output valid enum definitions :(.
16391
16392 2002-05-03 Akim Demaille <akim@epita.fr>
16393
16394 * configure.bat: Remove, completely obsolete.
16395 * Makefile.am (EXTRA_DIST): Adjust.
16396 Don't distribute config.rpath...
16397 * config/Makefile.am (EXTRA_DIST): Do it.
16398
16399 2002-05-03 Akim Demaille <akim@epita.fr>
16400
16401 * configure.in (GETTEXT_VERSION): New.
16402 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
16403
16404 2002-05-03 Akim Demaille <akim@epita.fr>
16405
16406 * data/bison.simple (b4_token_enum): New.
16407 (b4_token_defines): Use it to output tokens both as #define and
16408 enums.
16409 Suggested by Paul Eggert.
16410 * src/output.c (token_definitions_output): Don't output spurious
16411 white spaces.
16412
16413 2002-05-03 Akim Demaille <akim@epita.fr>
16414
16415 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16416
16417 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
16418
16419 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
16420 Update the stack class, give a try to deque as the default container.
16421
16422 2002-05-02 Akim Demaille <akim@epita.fr>
16423
16424 * data/bison.simple (yyparse): Do not implement @$ = @1.
16425 (YYLLOC_DEFAULT): Adjust to do it.
16426 * doc/bison.texinfo (Location Default Action): Fix.
16427
16428 2002-05-02 Akim Demaille <akim@epita.fr>
16429
16430 * src/reader.c (parse_braces): Merge into...
16431 (parse_action): this.
16432
16433 2002-05-02 Akim Demaille <akim@epita.fr>
16434
16435 * configure.in (ALL_LINGUAS): Remove.
16436 * po/LINGUAS, hr.po: New.
16437
16438 2002-05-02 Akim Demaille <akim@epita.fr>
16439
16440 Remove the so called hairy (semantic) parsers.
16441
16442 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
16443 * src/gram.h, src/gram.c (semantic_parser): Remove.
16444 (rule_t): Remove the guard and guard_line members.
16445 * src/lex.h (token_t): remove tok_guard.
16446 * src/options.c (option_table): Remove %guard and %semantic_parser
16447 support.
16448 * src/output.c, src/output.h (guards_output): Remove.
16449 (prepare): Adjust.
16450 (token_definitions_output): Don't output the `T'
16451 tokens (???).
16452 (output_skeleton): Don't output the guards.
16453 * src/files.c, src/files.c (attrsfile): Remove.
16454 * src/reader.c (symbol_list): Remove the guard and guard_line
16455 members.
16456 Adjust dependencies.
16457 (parse_guard): Remove.
16458 * data/bison.hairy: Remove.
16459 * doc/bison.texinfo (Environment Variables): Remove occurrences of
16460 BISON_HAIRY.
16461
16462 2002-05-02 Akim Demaille <akim@epita.fr>
16463
16464 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
16465 (parse_guard): Rename the formal argument `stack_offset' as
16466 `rule_length', which is more readable.
16467 Adjust callers.
16468 (copy_at, copy_dollar): Instead of outputting the hard coded
16469 values of $$, $n and so forth, output invocation to b4_lhs_value,
16470 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
16471 Note: this patch partially drops `semantic-parser' support: it
16472 always does `rule_length - n', where semantic parsers ought to
16473 always use `-n'.
16474 * data/bison.simple, data/bison.c++ (b4_lhs_value)
16475 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
16476
16477 2002-05-02 Akim Demaille <akim@epita.fr>
16478
16479 * configure.in (AC_INIT): Bump to 1.49b.
16480 (AM_INIT_AUTOMAKE): Short invocation.
16481
16482 2002-05-02 Akim Demaille <akim@epita.fr>
16483
16484 Version 1.49a.
16485
16486 2002-05-01 Akim Demaille <akim@epita.fr>
16487
16488 * src/skeleton.h: Remove.
16489
16490 2002-05-01 Akim Demaille <akim@epita.fr>
16491
16492 * src/skeleton.h: Fix the #endif.
16493 Reported by Magnus Fromreide.
16494
16495 2002-04-26 Paul Eggert <eggert@twinsun.com>
16496
16497 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
16498 Define if we define YYSTYPE and YYLTYPE, respectively.
16499 (YYCOPY): Fix [] quoting problem in the non-GCC case.
16500
16501 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
16502
16503 * src/scan-skel.l: Postprocess quadrigraphs.
16504
16505 * src/reader.c (copy_character): New function, used to output
16506 single characters while replacing `[' and `]' with quadrigraphs, to
16507 avoid troubles with M4 quotes.
16508 (copy_comment): Output characters with copy_character.
16509 (read_additionnal_code): Likewise.
16510 (copy_string2): Likewise.
16511 (copy_definition): Likewise.
16512
16513 * tests/calc.at: Exercise M4 quoting.
16514
16515 2002-04-25 Akim Demaille <akim@epita.fr>
16516
16517 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
16518 between `!' and the command.
16519 Reported by Paul Eggert.
16520
16521 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
16522
16523 * tests/calc.at: Exercise prologue splitting.
16524
16525 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
16526 `b4_post_prologue' instead of `b4_prologue'.
16527
16528 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
16529 muscles.
16530 (output): Free pre_prologue_obstack and post_prologue_obstack.
16531 * src/files.h, src/files.c (attrs_obstack): Remove.
16532 (pre_prologue_obstack, post_prologue_obstack): New.
16533 * src/reader.c (copy_definition): Add a parameter to specify the
16534 obstack to fill, instead of using attrs_obstack unconditionally.
16535 (read_declarations): Pass pre_prologue_obstack to copy_definition if
16536 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
16537
16538 2002-04-23 Paul Eggert <eggert@twinsun.com>
16539
16540 * data/bison.simple: Remove unnecessary commentary and white
16541 space differences from 1_29-branch.
16542 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
16543
16544 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
16545 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
16546 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
16547 constructors or destructors.
16548
16549 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
16550
16551 2002-04-23 Akim Demaille <akim@epita.fr>
16552
16553 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
16554 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
16555 location with columns.
16556 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
16557 All reported by Paul Eggert.
16558
16559 2002-04-22 Akim Demaille <akim@epita.fr>
16560
16561 * src/reduce.c (dump_grammar): Move to...
16562 * src/gram.h, src/gram.c (grammar_dump): here.
16563 Be sure to separate long item numbers.
16564 Don't read the members of a rule's prec if its nil.
16565
16566 2002-04-22 Akim Demaille <akim@epita.fr>
16567
16568 * src/output.c (table_size, table_grow): New.
16569 (MAXTABLE): Remove, replace uses with table_size.
16570 (pack_vector): Instead of dying when the table is too big, grow it.
16571
16572 2002-04-22 Akim Demaille <akim@epita.fr>
16573
16574 * data/bison.simple (yyr1): Its type is that of a token number.
16575 * data/bison.c++ (r1_): Likewise.
16576 * tests/regression.at (Web2c Actions): Adjust.
16577
16578 2002-04-22 Akim Demaille <akim@epita.fr>
16579
16580 * src/reader.c (token_translations_init): 256 is now the default
16581 value for the error token, i.e., it will be assigned another
16582 number if the user assigned 256 to one of her tokens.
16583 (reader): Don't force 256 to error.
16584 * doc/bison.texinfo (Symbols): Adjust.
16585 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
16586 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
16587 etc. instead of 10, 20, 30 (which was used to `jump' over error
16588 (256) and undefined (2)).
16589
16590 2002-04-22 Akim Demaille <akim@epita.fr>
16591
16592 Propagate more token_number_t.
16593
16594 * src/gram.h (token_number_as_item_number)
16595 (item_number_as_token_number): New.
16596 * src/output.c (GENERATE_OUTPUT_TABLE): New.
16597 Use it to create output_item_number_table and
16598 output_token_number_table.
16599 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16600 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
16601 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
16602 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
16603
16604 2002-04-22 Akim Demaille <akim@epita.fr>
16605
16606 * src/output.h, src/output.c (get_lines_number): Remove.
16607
16608 2002-04-19 Akim Demaille <akim@epita.fr>
16609
16610 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
16611 as Lex/Flex'.
16612 (Debugging): More details about enabling the debugging features.
16613 (Table of Symbols): Describe $$, $n, @$, and @n.
16614 Suggested by Tim Josling.
16615
16616 2002-04-19 Akim Demaille <akim@epita.fr>
16617
16618 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
16619
16620 2002-04-10 Akim Demaille <akim@epita.fr>
16621
16622 * src/system.h: Rely on HAVE_LIMITS_H.
16623 Suggested by Paul Eggert.
16624
16625 2002-04-09 Akim Demaille <akim@epita.fr>
16626
16627 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
16628 full stderr, and strip it according to the bison options, instead
16629 of composing the error message from different bits.
16630 This makes it easier to check for several error messages.
16631 Adjust all the invocations.
16632 Add an invocation exercising the error token.
16633 Add an invocation demonstrating a stupid error message.
16634 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
16635 Adjust the tests.
16636 Error message are for stderr, not stdout.
16637
16638 2002-04-09 Akim Demaille <akim@epita.fr>
16639
16640 * src/gram.h, src/gram.c (error_token_number): Remove, use
16641 errtoken->number.
16642 * src/reader.c (reader): Don't specify the user token number (2)
16643 for $undefined, as it uselessly prevents using it.
16644 * src/gram.h (token_number_t): Move to...
16645 * src/symtab.h: here.
16646 (state_t.number): Is a token_number_t.
16647 * src/print.c, src/reader.c: Use undeftoken->number instead of
16648 hard coded 2.
16649 (Even though this 2 is not the same as above: the number of the
16650 undeftoken remains being 2, it is its user token number which
16651 might not be 2).
16652 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
16653 `user_token_number_max'.
16654 Output `undef_token_number'.
16655 * data/bison.simple, data/bison.c++: Use them.
16656 Be sure to map invalid yylex return values to
16657 `undef_token_number'. This saves us from gratuitous SEGV.
16658
16659 * tests/conflicts.at (Solved SR Conflicts)
16660 (Unresolved SR Conflicts): Adjust.
16661 * tests/regression.at (Web2c Actions): Adjust.
16662
16663 2002-04-08 Akim Demaille <akim@epita.fr>
16664
16665 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16666 Adding #line.
16667 Remove the duplicate `typedefs'.
16668 (RhsNumberType): Fix the declaration and various other typos.
16669 Use __ofile__.
16670 * data/bison.simple: Use __ofile__.
16671 * src/scan-skel.l: Handle __ofile__.
16672
16673 2002-04-08 Akim Demaille <akim@epita.fr>
16674
16675 * src/gram.h (item_number_t): New, the type of item numbers in
16676 RITEM. Note that it must be able to code symbol numbers as
16677 positive number, and the negation of rule numbers as negative
16678 numbers.
16679 Adjust all dependencies (pretty many).
16680 * src/reduce.c (rule): Remove this `short *' pointer: use
16681 item_number_t.
16682 * src/system.h (MINSHORT, MAXSHORT): Remove.
16683 Include `limits.h'.
16684 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16685 (shortcpy): Remove.
16686 (MAXTABLE): Move to...
16687 * src/output.c (MAXTABLE): here.
16688 (prepare_rules): Use output_int_table to output rhs.
16689 * data/bison.simple, data/bison.c++: Adjust.
16690 * tests/torture.at (Big triangle): Move the limit from 254 to
16691 500.
16692 * tests/regression.at (Web2c Actions): Ajust.
16693
16694 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16695 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16696 passes, but produces negative #line number, once fixed, GCC is
16697 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16698 C), it passes.
16699 * src/state.h (state_h): Code input lines on ints, not shorts.
16700
16701 2002-04-08 Akim Demaille <akim@epita.fr>
16702
16703 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16704 and then the grammar.
16705
16706 2002-04-08 Akim Demaille <akim@epita.fr>
16707
16708 * src/system.h: No longer using strndup.
16709
16710 2002-04-07 Akim Demaille <akim@epita.fr>
16711
16712 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16713 * src/output.c (output_table_data): Return the longest number.
16714 (prepare_tokens): Output `token_number_max').
16715 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16716 New.
16717 Use them to define yy_token_number_type/TokenNumberType.
16718 Use this type for yytranslate.
16719 * tests/torture.at (Big triangle): Push the limit from 124 to
16720 253.
16721 * tests/regression.at (Web2c Actions): Adjust.
16722
16723 2002-04-07 Akim Demaille <akim@epita.fr>
16724
16725 * tests/torture.at (Big triangle): New.
16726 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16727 * tests/existing.at: here.
16728
16729 2002-04-07 Akim Demaille <akim@epita.fr>
16730
16731 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16732 nritems.
16733 Adjust dependencies.
16734
16735 2002-04-07 Akim Demaille <akim@epita.fr>
16736
16737 * src/reader.c: Normalize increments to prefix form.
16738
16739 2002-04-07 Akim Demaille <akim@epita.fr>
16740
16741 * src/reader.c, symtab.c: Remove debugging code.
16742
16743 2002-04-07 Akim Demaille <akim@epita.fr>
16744
16745 Rename all the `bucket's as `symbol_t'.
16746
16747 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16748 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16749 * src/symtab.c, src/symtab.h (bucket): Rename as...
16750 (symbol_t): this.
16751 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16752 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16753 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16754 (buckets_new, buckets_free, buckets_do): Rename as...
16755 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16756 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16757 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16758 (symbols_new, symbols_free, symbols_do): these.
16759
16760 2002-04-07 Akim Demaille <akim@epita.fr>
16761
16762 Use lib/hash for the symbol table.
16763
16764 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16765 EOF.
16766 * src/lex.c (lex): Set the `number' member of new terminals.
16767 * src/reader.c (bucket_check_defined, bucket_make_alias)
16768 (bucket_check_alias_consistence, bucket_translation): New.
16769 (reader, grammar_free, readgram, token_translations_init)
16770 (packsymbols): Adjust.
16771 (reader): Number the predefined tokens.
16772 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16773 for predefined tokens.
16774 * src/symtab.h (bucket): Remove all the hash table related
16775 members.
16776 * src/symtab.c (symtab): Replace by...
16777 (bucket_table): this.
16778 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16779 (buckets_new, buckets_do): New.
16780
16781 2002-04-07 Akim Demaille <akim@epita.fr>
16782
16783 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16784 (start_symbol, max_user_token_number, semantic_parser)
16785 (error_token_number): Initialize.
16786 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16787 Initialize.
16788 (reader): Don't.
16789 (errtoken, eoftoken, undeftoken, axiom): Extern.
16790
16791 2002-04-07 Akim Demaille <akim@epita.fr>
16792
16793 * src/gram.h (rule_s): prec and precsym are now pointers
16794 to the bucket giving the priority/associativity.
16795 Member `associativity' removed: useless.
16796 * src/reduce.c, src/conflicts.c: Adjust.
16797
16798 2002-04-07 Akim Demaille <akim@epita.fr>
16799
16800 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16801 Properly escape the symbols' TAG when outputting them.
16802
16803 2002-04-07 Akim Demaille <akim@epita.fr>
16804
16805 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16806
16807 2002-04-07 Akim Demaille <akim@epita.fr>
16808
16809 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16810 (LArule): this, which is an array to rule_t*.
16811 * src/print.c, src/conflicts.c: Adjust.
16812
16813 2002-04-07 Akim Demaille <akim@epita.fr>
16814
16815 * src/gram.h (rule_t): Rename `number' as `user_number'.
16816 `number' is a new member.
16817 Adjust dependencies.
16818 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16819
16820 2002-04-07 Akim Demaille <akim@epita.fr>
16821
16822 As a result of the previous patch, it is no longer needed
16823 to reorder ritem itself.
16824
16825 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16826
16827 2002-04-07 Akim Demaille <akim@epita.fr>
16828
16829 Be sure never to walk through RITEMS, but use only data related to
16830 the rules themselves. RITEMS should be banished.
16831
16832 * src/output.c (output_token_translations): Rename as...
16833 (prepare_tokens): this.
16834 In addition to `translate', prepare the muscles `tname' and
16835 `toknum', which were handled by...
16836 (output_rule_data): this.
16837 Remove, and move the remainder of its outputs into...
16838 (prepare_rules): this new routines, which also merges content from
16839 (output_gram): this.
16840 (prepare_rules): Be sure never to walk through RITEMS.
16841 (output_stos): Rename as...
16842 (prepare_stos): this.
16843 (output): Always invoke prepare_states, after all, just don't use it
16844 in the output if you don't need it.
16845
16846 2002-04-07 Akim Demaille <akim@epita.fr>
16847
16848 * src/LR0.c (new_state): Display `nstates' as the name of the
16849 newly created state.
16850 Adjust to initialize first_state and last_state if needed.
16851 Be sure to distinguish the initial from the final state.
16852 (new_states): Create the itemset of the initial state, and use
16853 new_state.
16854 * src/closure.c (closure): Now that the initial state has its
16855 items properly set, there is no need for a special case when
16856 creating `ruleset'.
16857
16858 As a result, now the rule 0, reducing to $axiom, is visible in the
16859 outputs. Adjust the test suite.
16860
16861 * tests/conflicts.at (Solved SR Conflicts)
16862 (Unresolved SR Conflicts): Adjust.
16863 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16864 * tests/conflicts.at (S/R in initial): New.
16865
16866 2002-04-07 Akim Demaille <akim@epita.fr>
16867
16868 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16869 the RHS of the rules.
16870 * src/output.c (output_gram): Likewise.
16871
16872 2002-04-07 Akim Demaille <akim@epita.fr>
16873
16874 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16875 bucket.
16876 Adjust all dependencies.
16877 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16878 `number' of the buckets too.
16879 * src/gram.h: Include `symtab.h'.
16880 (associativity): Move to...
16881 * src/symtab.h: here.
16882 No longer include `gram.h'.
16883
16884 2002-04-07 Akim Demaille <akim@epita.fr>
16885
16886 * src/gram.h, src/gram.c (rules_rhs_length): New.
16887 (ritem_longest_rhs): Use it.
16888 * src/gram.h (rule_t): `number' is a new member.
16889 * src/reader.c (packgram): Set it.
16890 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16891 the end of `rules', and count them out of `nrules'.
16892 (reduce_output, dump_grammar): Adjust.
16893 * src/print.c (print_grammar): It is no longer needed to check for
16894 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16895 * tests/reduce.at (Reduced Automaton): New test.
16896
16897 2002-04-07 Akim Demaille <akim@epita.fr>
16898
16899 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16900 lacking `+ 1' to nrules, Bison reported as useless a token if it
16901 was used solely to set the precedence of the last rule...
16902
16903 2002-04-07 Akim Demaille <akim@epita.fr>
16904
16905 * data/bison.c++, data/bison.simple: Don't output the current file
16906 name in #line, to avoid useless diffs between two identical
16907 outputs under different names.
16908
16909 2002-04-07 Akim Demaille <akim@epita.fr>
16910
16911 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16912 Normalize loops to using `< nrules + 1', not `<= nrules'.
16913
16914 2002-04-07 Akim Demaille <akim@epita.fr>
16915
16916 * TODO: Update.
16917
16918 2002-04-07 Akim Demaille <akim@epita.fr>
16919
16920 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16921 bucket.value as bucket.number.
16922
16923 2002-04-07 Akim Demaille <akim@epita.fr>
16924
16925 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16926 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16927 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16928 RHS, instead of being an index in RITEMS.
16929
16930 2002-04-04 Paul Eggert <eggert@twinsun.com>
16931
16932 * doc/bison.texinfo: Update copyright date.
16933 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16934 (Symbols): Warn about running Bison in one character set,
16935 but compiling and/or running in an incompatible one.
16936 Warn about character code 256, too.
16937
16938 2002-04-03 Paul Eggert <eggert@twinsun.com>
16939
16940 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16941 YYERROR_VERBOSE is nonzero, not whether it is defined.
16942
16943 Merge changes from bison-1_29-branch.
16944
16945 2002-03-20 Paul Eggert <eggert@twinsun.com>
16946
16947 Merge fixes from Debian bison_1.34-1.diff.
16948
16949 * configure.in (AC_PREREQ): 2.53.
16950
16951 2002-03-20 Akim Demaille <akim@epita.fr>
16952
16953 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16954
16955 2002-03-19 Paul Eggert <eggert@twinsun.com>
16956
16957 * src/bison.simple (YYCOPY): New macro.
16958 (YYSTACK_RELOCATE): Use it.
16959 Remove Type arg; no longer needed. All callers changed.
16960 (yymemcpy): Remove; no longer needed.
16961
16962 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16963 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16964
16965 2002-03-19 Akim Demaille <akim@epita.fr>
16966
16967 Test and fix the #line outputs.
16968
16969 * tests/atlocal.at (GCC): New.
16970 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
16971 (Prologue synch line, %union synch line, Postprologue synch line)
16972 (Action synch line, Epilogue synch line): New tests.
16973 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16974 * data/bison.simple, data/bison.c++: Use it.
16975
16976 2002-03-19 Akim Demaille <akim@epita.fr>
16977
16978 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16979 (Solved SR Conflicts, %expect not enough, %expect right)
16980 (%expect too much): Move to...
16981 * tests/conflicts.at: this new file.
16982
16983 2002-03-19 Akim Demaille <akim@epita.fr>
16984
16985 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16986 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16987 that we can move to enums for instance.
16988 * src/output.c (token_definitions_output): Output a list of
16989 `token-name, token-number' instead of the #define.
16990 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16991
16992 2002-03-14 Akim Demaille <akim@epita.fr>
16993
16994 Use Gettext 0.11.1.
16995
16996 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
16997
16998 * data/bison.c++: Make the user able to add members to the generated
16999 parser by subclassing.
17000
17001 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
17002
17003 * src/reader.c (read_additionnal_code): `c' should be an integer, not
17004 a character.
17005 Reported by Nicolas Tisserand and Nicolas Burrus.
17006
17007 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17008
17009 * src/reader.c: Warn about lacking semi-colons, do not complain.
17010
17011 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17012
17013 * data/bison.c++: Remove a debug line.
17014
17015 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17016
17017 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
17018 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
17019 provide a default implementation.
17020
17021 2002-03-04 Akim Demaille <akim@epita.fr>
17022
17023 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
17024 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
17025 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
17026 * tests/semantic.at (Parsing Guards): Similarly.
17027 * src/reader.at (readgram): Complain if the last rule is not ended
17028 with a semi-colon.
17029
17030 2002-03-04 Akim Demaille <akim@epita.fr>
17031
17032 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
17033 * src/closure.c: here.
17034 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
17035 RTC.
17036 * src/warshall.h, src/warshall.c: Remove.
17037 * tests/sets.at (Broken Closure): Adjust.
17038
17039 2002-03-04 Akim Demaille <akim@epita.fr>
17040
17041 * src/output.c (output_skeleton): tempdir is const.
17042 bytes_read is unused.
17043
17044 2002-03-04 Akim Demaille <akim@epita.fr>
17045
17046 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
17047 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
17048 Update.
17049 From Michael Hayes.
17050
17051 2002-03-04 Akim Demaille <akim@epita.fr>
17052
17053 * src/closure.c (closure): `r' is unused.
17054
17055 2002-03-04 Akim Demaille <akim@epita.fr>
17056
17057 * tests/sets.at (Broken Closure): Add the ending `;'.
17058 * src/reader.at (readgram): Complain if a rule is not ended with a
17059 semi-colon.
17060
17061 2002-03-04 Akim Demaille <akim@epita.fr>
17062
17063 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
17064 (count_sr_conflicts): Use bitset_count.
17065 * src/reduce.c (inaccessable_symbols): Ditto.
17066 (bits_size): Remove.
17067 * src/warshall.h, src/warshall.c: Convert to bitsetv.
17068
17069 2002-03-04 Akim Demaille <akim@epita.fr>
17070
17071 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
17072 * src/reduce.c: Remove the `bitset_zero's following the
17073 `bitset_create's, as now it is performed by the latter.
17074
17075 2002-03-04 Akim Demaille <akim@epita.fr>
17076
17077 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
17078 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
17079 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
17080 latest sources from Michael.
17081
17082 2002-03-04 Akim Demaille <akim@epita.fr>
17083
17084 * src/output.c (output): Don't free the grammar.
17085 * src/reader.c (grammar_free): New.
17086 * src/main.c (main): Call it and don't free symtab here.
17087
17088 2002-03-04 Akim Demaille <akim@epita.fr>
17089
17090 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
17091 before returning.
17092 Reported by Benoit Perrot.
17093
17094 2002-03-04 Akim Demaille <akim@epita.fr>
17095
17096 Use bitset operations when possible, not loops over bits.
17097
17098 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
17099 bitset_or.
17100 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
17101 * src/reduce.c (useless_nonterminals): Formatting changes.
17102 * src/warshall.c (TC): Use bitset_or.
17103
17104 2002-03-04 Akim Demaille <akim@epita.fr>
17105
17106 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
17107 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
17108 Ditto.
17109
17110 2002-03-04 Akim Demaille <akim@epita.fr>
17111
17112 * src/lalr.c (F): Now a bitset*.
17113 Adjust all dependencies.
17114
17115 2002-03-04 Akim Demaille <akim@epita.fr>
17116
17117 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
17118 Adjust all dependencies.
17119
17120 2002-03-04 Akim Demaille <akim@epita.fr>
17121
17122 * src/L0.c, src/LR0.h (nstates): Be size_t.
17123 Adjust comparisons (signed vs unsigned).
17124 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
17125 bitset*.
17126 Adjust all dependencies.
17127
17128 2002-03-04 Akim Demaille <akim@epita.fr>
17129
17130 * src/closure.c (firsts): Now, also a bitset.
17131 Adjust all dependencies.
17132 (varsetsize): Remove, now unused.
17133 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
17134
17135 2002-03-04 Akim Demaille <akim@epita.fr>
17136
17137 * src/print.c: Convert to use bitset.h, not hand coded iterations
17138 over ints.
17139
17140 2002-03-04 Akim Demaille <akim@epita.fr>
17141
17142 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
17143
17144 2002-03-04 Akim Demaille <akim@epita.fr>
17145
17146 * src/closure.c (ruleset): Be a bitset.
17147 (rulesetsize): Remove.
17148
17149 2002-03-04 Akim Demaille <akim@epita.fr>
17150
17151 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
17152 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
17153 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
17154 * src/closure.c (fderives): Be an array of bitsets.
17155
17156 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
17157
17158 * data/bison.c++: Merge the two generated headers. Insert a copyright
17159 notice in each output file.
17160
17161 2002-02-28 Akim Demaille <akim@epita.fr>
17162
17163 * data/bison.c++: Copy the prologue of bison.simple to fetch
17164 useful M4 definitions, such as b4_header_guard.
17165
17166 2002-02-25 Akim Demaille <akim@epita.fr>
17167
17168 * src/getargs.c (version): Give the name of the authors, and use a
17169 translator friendly scheme for the bgr
17170 copyright notice.
17171
17172 2002-02-25 Akim Demaille <akim@epita.fr>
17173
17174 * src/output.c (header_output): Remove, now handled completely via
17175 M4.
17176
17177 2002-02-25 Akim Demaille <akim@epita.fr>
17178
17179 * m4/m4.m4: New, from CVS Autoconf.
17180 * configure.in: Invoke it.
17181 * src/output.c (output_skeleton): Use its result instead of the
17182 hard coded name.
17183
17184 2002-02-25 Akim Demaille <akim@epita.fr>
17185
17186 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
17187 Fileutils 4.1.5.
17188 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
17189 * src/output.c (output_skeleton): Use mkstemp to create a real
17190 temporary file.
17191 Move the filling of `skeleton' and its muscle to...
17192 (prepare): here.
17193 (output): Move the definition of the prologue muscle to...
17194 (prepare): here.
17195 * src/system.h (DEFAULT_TMPDIR): New.
17196
17197 2002-02-14 Paul Eggert <eggert@twinsun.com>
17198
17199 Remove the support for C++ namespace cleanliness; it was
17200 causing more problems than it was curing, since it didn't work
17201 properly on some nonstandard C++ compilers. This can wait
17202 for a proper C++ parser.
17203
17204 * NEWS: Document this.
17205 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
17206 of C++, as it's treated like C now.
17207 * src/bison.simple (YYSTD): Remove.
17208 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
17209 Treat C++ just like Standard C instead of trying to support
17210 namespace cleanliness.
17211
17212 2002-02-14 Akim Demaille <akim@epita.fr>
17213
17214 * tests/regression.at (else): Adjust to Andreas' change.
17215
17216 2002-02-14 Akim Demaille <akim@epita.fr>
17217
17218 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
17219
17220 2002-02-13 Andreas Schwab <schwab@suse.de>
17221
17222 * src/output.c (output_rule_data): Don't output NULL, it might
17223 not be defined yet.
17224
17225 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
17226
17227 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
17228 (Copyright notice): Update.
17229
17230 2002-02-11 Akim Demaille <akim@epita.fr>
17231
17232 * tests/regression.at (%nonassoc and eof): Don't include
17233 nonportable headers.
17234
17235 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
17236
17237 * data/bison.c++: Correct error recovery. Make the user able to
17238 initialize the starting location.
17239
17240 2002-02-07 Akim Demaille <akim@epita.fr>
17241
17242 * tests/input.at: New.
17243
17244 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17245
17246 * data/bison.c++: Replace some direct m4 expansions by constants. Be
17247 more consistent when naming methods and variables. Put preprocessor
17248 directives around tables only needed for debugging.
17249
17250 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17251
17252 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
17253 C++ parsers.
17254 (yy::b4_name::parse): Use print_.
17255
17256 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17257
17258 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
17259
17260 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17261
17262 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
17263 C++ parsers.
17264 (yy::b4_name::parse): Build verbose error messages, and use error_.
17265
17266 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
17267
17268 * data/bison.c++: Fix m4 quoting in comments.
17269
17270 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
17271
17272 * data/bison.c++: Adjust the parser code. Fix some muscles that were
17273 not expanded by m4.
17274
17275 2002-02-05 Akim Demaille <akim@epita.fr>
17276
17277 * data/bison.c++: Adjust to the M4 back end.
17278 More is certainly needed.
17279
17280 2002-02-05 Akim Demaille <akim@epita.fr>
17281
17282 Give a try to M4 as a back end.
17283
17284 * lib/readpipe.c: New, from wdiff.
17285 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
17286 BISON_HAIRY.
17287 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
17288 specific values. Now it is m4 that performs the lookup.
17289 * src/parse-skel.y: Remove.
17290 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
17291 * src/output.c (actions_output, guards_output)
17292 (token_definitions_output): No longer keeps track of the output
17293 line number, hence remove the second argument.
17294 (guards_output): Check against the guard member of a rule, not the
17295 action member.
17296 Adjust callers.
17297 (output_skeleton): Don't look for the skeleton location, let m4 do
17298 that.
17299 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
17300 file will be used.
17301 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
17302 (prepare): Given that for the time being changesyntax is not
17303 usable in M4, rename the muscles using `-' to `_'.
17304 Define `defines_flag', `output_parser_name' and `output_header_name'.
17305 * src/output.h (actions_output, guards_output)
17306 (token_definitions_output): Adjust prototypes.
17307 * src/scan-skel.l: Instead of scanning the skeletons, it now
17308 processes the output of m4: `__oline__' and `#output'.
17309 * data/bison.simple: Adjust to be used by M4(sugar).
17310 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
17311 to date.
17312 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
17313 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
17314 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
17315 shamelessly stolen from CVS Autoconf.
17316
17317 2002-02-05 Akim Demaille <akim@epita.fr>
17318
17319 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
17320 * configure.in: Check for the declarations of free and malloc.
17321 * src/muscle_tab.c: Adjust.
17322
17323 2002-02-05 Akim Demaille <akim@epita.fr>
17324
17325 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
17326 which have no values.
17327
17328 2002-02-05 Akim Demaille <akim@epita.fr>
17329
17330 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
17331 * data/: here.
17332
17333 2002-01-29 Paul Eggert <eggert@twinsun.com>
17334
17335 * src/bison.simple (YYSIZE_T): Do not define merely because
17336 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
17337 On some platforms, <alloca.h> does not declare YYSTD (size_t).
17338
17339 2002-01-27 Akim Demaille <akim@epita.fr>
17340
17341 Fix `%nonassoc and eof'.
17342
17343 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
17344 which were not properly copied! Replace
17345 memcpy (res->errs, src->errs, src->nerrs);
17346 with
17347 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
17348 !!!
17349 * tests/regression.at (%nonassoc and eof): Adjust to newest
17350 Autotest: `.' is not in the PATH.
17351
17352 2002-01-27 Akim Demaille <akim@epita.fr>
17353
17354 * tests/sets.at (AT_EXTRACT_SETS): New.
17355 (Nullable): Use it.
17356 (Firsts): New.
17357
17358 2002-01-26 Akim Demaille <akim@epita.fr>
17359
17360 * tests/actions.at, tests/calc.at, tests/headers.at,
17361 * tests/torture.at: Adjust to the newest Autotest which no longer
17362 forces `.' in the PATH.
17363
17364 2002-01-25 Akim Demaille <akim@epita.fr>
17365
17366 * tests/regression.at (%nonassoc and eof): New.
17367 Suggested by Robert Anisko.
17368
17369 2002-01-24 Akim Demaille <akim@epita.fr>
17370
17371 Bison dumps core when trying to complain about broken input files.
17372 Reported by Cris van Pelt.
17373
17374 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
17375 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
17376 into...
17377 (Invalid inputs): Strengthen: exercise parse_percent_token.
17378
17379 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
17380
17381 * src/Makefile.am: Add bison.c++.
17382 * src/bison.c++: New skeleton.
17383
17384 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
17385
17386 * po/it.po: New.
17387
17388 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
17389
17390 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
17391
17392 2002-01-20 Marc Autret <marc@gnu.org>
17393
17394 * src/files.c (compute_output_file_names): Fix
17395
17396 2002-01-20 Marc Autret <marc@gnu.org>
17397
17398 * tests/output.at: New test.
17399 * src/files.c (compute_base_names): Don't map extensions when
17400 the YACC flag is set, use defaults.
17401 Reported by Evgeny Stambulchik.
17402
17403 2002-01-20 Marc Autret <marc@gnu.org>
17404
17405 * src/system.h: Need to define __attribute__ away for non-GCC
17406 compilers as well (i.e., the vendor C compiler).
17407 Suggested by Albert Chin-A-Young.
17408
17409 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
17410
17411 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
17412 canonical definition.
17413 * src/system.h: Use the canonical definition for PARAMS (avoids
17414 a conflict with the macro from lib/hash.h).
17415
17416 2002-01-11 Akim Demaille <akim@epita.fr>
17417
17418 * configure.in: Use AC_FUNC_STRNLEN.
17419 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
17420
17421 2002-01-09 Akim Demaille <akim@epita.fr>
17422
17423 * src/files.c, src/files.h (output_infix): New.
17424 (tab_extension): Remove.
17425 (compute_base_names): Compute the former, drop the latter.
17426 * src/output.c (prepare): Insert the muscles `output-infix', and
17427 `output-suffix'.
17428 * src/parse-skel.y (string, string.1): New.
17429 (section.header): Use it.
17430 (section.yacc): Remove.
17431 (prefix): Remove too.
17432 * src/scan-skel.l: Adjust.
17433 * src/bison.simple, src/bison.hairy: Adjust.
17434
17435 2002-01-09 Akim Demaille <akim@epita.fr>
17436
17437 * configure.in (WERROR_CFLAGS): Compute it.
17438 * src/Makefile.am (CFLAGS): Pass it.
17439 * tests/atlocal.in (CFLAGS): Idem.
17440 * src/files.c: Fix a few warnings.
17441 (get_extension_index): Remove, unused.
17442
17443 2002-01-08 Akim Demaille <akim@epita.fr>
17444
17445 * src/getargs.c (AS_FILE_NAME): New.
17446 (getargs): Use it to convert DOSish file names.
17447 * src/files.c (base_name): Rename as full_base_name to avoid
17448 clashes with `base_name ()'.
17449 (filename_split): New.
17450 (compute_base_names): N-th rewrite, using filename_split.
17451
17452 2002-01-08 Akim Demaille <akim@epita.fr>
17453
17454 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
17455 New, stolen from the Fileutils 4.1.
17456 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17457 * configure.in: Check for the presence of memrchr, and of its
17458 prototype.
17459
17460 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
17461
17462 * lib/hash.h (__P): Added definition for this macro.
17463 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
17464 BUILT_SOURCES, to ensure they are generated first.
17465 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
17466 %error-verbose to allow bootstrapping with bison 1.30x.
17467
17468 2002-01-06 Akim Demaille <akim@epita.fr>
17469
17470 * src/reader.c (parse_braces): Don't fetch the next char, the
17471 convention is to fetch on entry.
17472 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
17473 'switch' without a following semicolon.
17474 * tests/regression.at (braces parsing): New.
17475
17476 2002-01-06 Akim Demaille <akim@epita.fr>
17477
17478 Bison is dead wrong in its RR conflict reports.
17479
17480 * tests/torture.at (GNU Cim Grammar): New.
17481 * src/conflicts.c (count_rr_conflicts): Fix.
17482
17483 2002-01-06 Akim Demaille <akim@epita.fr>
17484
17485 Creating package.m4 from configure.ac causes too many problems.
17486
17487 * tests/Makefile.am (package.m4): Create it by hand,
17488 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
17489
17490 2002-01-06 Akim Demaille <akim@epita.fr>
17491
17492 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
17493 skeleton.h.
17494
17495 2002-01-04 Paul Eggert <eggert@twinsun.com>
17496
17497 * doc/bison.texinfo (Debugging):
17498 Remove YYSTDERR; it's no longer defined or used.
17499 Also, s/cstdio.h/cstdio/.
17500
17501 2002-01-03 Akim Demaille <akim@epita.fr>
17502
17503 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
17504
17505 2002-01-03 Akim Demaille <akim@epita.fr>
17506
17507 * src/parse-skel.y (process_skeleton): Don't bind the parser's
17508 tracing code to --trace, wait for a better --trace option, with
17509 args.
17510
17511 2002-01-03 Akim Demaille <akim@epita.fr>
17512
17513 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
17514 The ISO C++ standard is extremely clear about it: stderr is
17515 considered a macro, not a regular symbol (see table 94 `Header
17516 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
17517 Therefore std:: does not apply to it. It still does with fprintf.
17518 Also, s/cstdio.h/cstdio/.
17519
17520 2002-01-03 Akim Demaille <akim@epita.fr>
17521
17522 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
17523 for non system headers.
17524
17525 2002-01-02 Akim Demaille <akim@epita.fr>
17526
17527 Equip the skeleton chain with location tracking, runtime trace,
17528 pure parser and scanner.
17529
17530 * src/parse-skel.y: Request a pure parser, locations, and prefix
17531 renaming.
17532 (%union): Having several members with the same type does not help
17533 type mismatches, simplify.
17534 (YYPRINT, yyprint): New.
17535 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
17536 (skel_error): this.
17537 Handle locations.
17538 * src/scan-skel.l: Adjust to these changes.
17539 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
17540 (LOCATION_PRINT, skel_control_t): New.
17541
17542 2001-12-30 Akim Demaille <akim@epita.fr>
17543
17544 * src/parse-skel.y: Get rid of the shift/reduce conflict:
17545 replace `gb' with BLANKS.
17546 * src/scan-skel.l: Adjust.
17547
17548 2001-12-30 Akim Demaille <akim@epita.fr>
17549
17550 * src/system.h: We don't need nor want bcopy.
17551 Throw away MS-DOS crap: we don't need getpid.
17552 * configure.in: We don't need strndup. It was even causing
17553 problems: because Flex includes the headers *before* us,
17554 _GNU_SOURCE is not defined by config.h, and therefore strndup was
17555 not visible.
17556 * lib/xstrndup.c: New.
17557 * src/scan-skel.l: Use it.
17558 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
17559 * src/parse-skel.y: Use %directives instead of #defines.
17560
17561 2001-12-30 Akim Demaille <akim@epita.fr>
17562
17563 * src/skeleton.h: New.
17564 * src/output.c (output_parser, output_master_parser): Remove, dead
17565 code.
17566 * src/output.h (get_lines_number, actions_output, guards_output)
17567 (token_definitions_output): Prototype them.
17568 * src/parse-skel.y: Add the license notice.
17569 Include output.h and skeleton.h.
17570 (process_skeleton): Returns void, and takes a single parameter.
17571 * src/scan-skel.l: Add the license notice.
17572 Include skeleton.h.
17573 Don't use %option yylineno: it seems that then Flex imagines
17574 REJECT has been used, and therefore it won't reallocate its
17575 buffers (which makes no other sense to me than a bug). It results
17576 in warnings for `unused: yy_flex_realloc'.
17577
17578 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
17579
17580 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17581 (MUSCLE_INSERT_PREFIX): ...to there.
17582 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17583 (MUSCLE_INSERT_PREFIX): Move from here...
17584
17585 * src/bison.hairy: Add a section directive. Put braces around muscle
17586 names. This parser skeleton is still broken, but Bison should not
17587 choke on a bad muscle 'syntax'.
17588 * src/bison.simple: Add a section directive. Put braces around muscle
17589 names.
17590
17591 * src/files.h (strsuffix, stringappend): Add declarations.
17592 (tab_extension): Add declaration.
17593 (short_base_name): Add declaration.
17594
17595 * src/files.c (strsuffix, stringappend): No longer static. These
17596 functions are used in the skeleton parser.
17597 (tab_extension): New.
17598 (compute_base_names): Use the computations done in this function
17599 to guess if the generated parsers should have '.tab' in their
17600 names.
17601 (short_base_name): No longer static.
17602
17603 * src/output.c (output_skeleton): New.
17604 (output): Disable call to output_master_parser, and give a try to
17605 a new skeleton handling system.
17606 (guards_output, actions_output): No longer static.
17607 (token_definitions_output, get_lines_number): No longer static.
17608
17609 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
17610
17611 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
17612 parse-skel.y.
17613
17614 * src/parse-skel.y: New file.
17615 * src/scan-skel.l: New file.
17616
17617 2001-12-29 Akim Demaille <akim@epita.fr>
17618
17619 %name-prefix is broken.
17620
17621 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
17622 Adjust all dependencies.
17623 * tests/headers.at (export YYLTYPE): Strengthen this test: use
17624 %name-prefix.
17625
17626 Renaming yylval but not yylloc is not consistent. Now we do.
17627
17628 * src/bison.simple: Prefix yylloc if used.
17629 * doc/bison.texinfo (Decl Summary): Document that.
17630
17631 2001-12-29 Akim Demaille <akim@epita.fr>
17632
17633 * doc/bison.texinfo: Promote `%long-directive' over
17634 `%long_directive'.
17635 Remove all references to fixed-output-files, yacc is enough.
17636
17637 2001-12-29 Akim Demaille <akim@epita.fr>
17638
17639 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
17640 user prologue. These are defaults.
17641 * tests/actions.at (Mid-rule actions): Make sure the user can
17642 define YYDEBUG and YYERROR_VERBOSE.
17643
17644 2001-12-29 Akim Demaille <akim@epita.fr>
17645
17646 * src/output.c (header_output): Don't forget to export YYLTYPE and
17647 yylloc.
17648 * tests/headers.at (export YYLTYPE): New, make sure it does.
17649 * tests/regression.at (%union and --defines, Invalid CPP headers):
17650 Move to...
17651 * tests/headers.at: here.
17652
17653 2001-12-29 Akim Demaille <akim@epita.fr>
17654
17655 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17656
17657 2001-12-29 Akim Demaille <akim@epita.fr>
17658
17659 * tests/actions.at (Mid-rule actions): Output on a single line
17660 instead of several.
17661
17662 2001-12-29 Akim Demaille <akim@epita.fr>
17663
17664 * doc/bison.texinfo: Formatting changes.
17665
17666 2001-12-29 Akim Demaille <akim@epita.fr>
17667
17668 Don't store the token defs in a muscle, just be ready to output it
17669 on command. Now possible via `symbols'. Fixes a memory leak.
17670
17671 * src/output.c (token_definitions_output): New.
17672 (output_parser, header_output): Use it.
17673 * src/reader.c (symbols_save): Remove.
17674
17675 2001-12-29 Akim Demaille <akim@epita.fr>
17676
17677 * src/bison.simple: Do not provide a default for YYSTYPE and
17678 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17679 default.
17680
17681 2001-12-29 Akim Demaille <akim@epita.fr>
17682
17683 Mid-rule actions are simply... ignored!
17684
17685 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17686 the empty-rule associated to the dummy symbol, not to the host
17687 rule.
17688 * tests/actions.at (Mid-rule actions): New.
17689
17690 2001-12-29 Akim Demaille <akim@epita.fr>
17691
17692 Memory leak.
17693
17694 * src/reader.c (reader): Free grammar.
17695
17696 2001-12-29 Akim Demaille <akim@epita.fr>
17697
17698 Memory leak.
17699
17700 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17701 since it allocates it for each state, although only one is needed.
17702 (allocate_storage): Do it here.
17703
17704 2001-12-29 Akim Demaille <akim@epita.fr>
17705
17706 * src/options.h, src/options.c (create_long_option_table): Rename
17707 as...
17708 (long_option_table_new): this, with a clearer prototype.
17709 (percent_table): Remove, unused,
17710 * src/getargs.c (getargs): Adjust.
17711
17712 2001-12-29 Akim Demaille <akim@epita.fr>
17713
17714 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17715 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17716 as states.
17717
17718 2001-12-29 Akim Demaille <akim@epita.fr>
17719
17720 * src/lalr.c (build_relations): Rename `states' as `states1'.
17721 Sorry, I don't understand exactly what it is, no better name...
17722
17723 2001-12-29 Akim Demaille <akim@epita.fr>
17724
17725 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17726 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17727 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17728 as rules.
17729
17730 2001-12-29 Akim Demaille <akim@epita.fr>
17731
17732 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17733 ago.
17734
17735 2001-12-29 Akim Demaille <akim@epita.fr>
17736
17737 * src/reader.c, src/reader.h (user_toknums): Remove.
17738 Adjust all users to use symbols[i]->user_token_number.
17739
17740 2001-12-29 Akim Demaille <akim@epita.fr>
17741
17742 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17743 Adjust all users to use symbols[i]->prec or ->assoc.
17744
17745 2001-12-29 Akim Demaille <akim@epita.fr>
17746
17747 * src/reader.c, src/reader.h (tags): Remove.
17748 Adjust all users to use symbols[i]->tag.
17749
17750 2001-12-29 Akim Demaille <akim@epita.fr>
17751
17752 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17753 and rule_table.
17754 * src/reader.c (packsymbols): Fill this table.
17755 Drop sprec.
17756 * src/conflicts.c (resolve_sr_conflict): Adjust.
17757 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17758 single table.
17759 Use symbols[i]->tag instead of tags[i].
17760
17761 2001-12-29 Akim Demaille <akim@epita.fr>
17762
17763 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17764 In addition, put a comment in there, to replace...
17765 * tests/regression.at (%union and C comments): Remove.
17766
17767 2001-12-29 Akim Demaille <akim@epita.fr>
17768
17769 * tests/regression.at (Web2c Actions): Blindly move the actual
17770 output as expected output. The contents *seem* right to me, but I
17771 can't pretend reading perfectly parser tables... Nonetheless, all
17772 the other tests pass correctly, the table look OK, even though the
17773 presence of `$axiom' is to be noted: AFAICS it is useless (but
17774 harmless).
17775
17776 2001-12-29 Akim Demaille <akim@epita.fr>
17777
17778 * src/reader.c (readgram): Don't add the rule 0 if there were no
17779 rules read. In other words, add it _after_ having performed
17780 grammar sanity checks.
17781 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17782
17783 2001-12-29 Akim Demaille <akim@epita.fr>
17784
17785 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17786 visible, and some states have now a different number.
17787
17788 2001-12-29 Akim Demaille <akim@epita.fr>
17789
17790 * src/reader.c (readgram): Bind the initial rule's lineno to that
17791 of the first rule.
17792 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17793 (Solved SR Conflicts): Adjust rule 0's line number.
17794
17795 2001-12-29 Akim Demaille <akim@epita.fr>
17796
17797 Fix the `GAWK Grammar' failure.
17798
17799 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17800 the reductions of the first state which was mistakenly confused
17801 with the final state because precisely final_state was initialized
17802 to 0.
17803 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17804 now noticed by Bison.
17805 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17806 have a reduction on $default.
17807
17808 2001-12-29 Akim Demaille <akim@epita.fr>
17809
17810 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17811 rule line numbers.
17812 * src/closure.c (print_closure): Likewise.
17813 * src/derives.c (print_derives): Likewise.
17814 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17815 now.
17816
17817 2001-12-29 Akim Demaille <akim@epita.fr>
17818
17819 * src/lalr.c (lookaheads_print): New.
17820 (lalr): Call it when --trace-flag.
17821 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17822 are dumped.
17823
17824 2001-12-29 Akim Demaille <akim@epita.fr>
17825
17826 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17827 when walking through ritem, even via rule->rhs.
17828 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17829 (useful_production, useless_nonterminals): Likewise.
17830 (reduce_grammar_tables): Likewise, plus update nritems.
17831 * src/nullable.c (set_nullable): Likewise.
17832 * src/lalr.c (build_relations): Likewise.
17833 * tests/sets.at (Nullable): Adjust.
17834 Fortunately, now, the $axiom is no longer nullable.
17835
17836 2001-12-29 Akim Demaille <akim@epita.fr>
17837
17838 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17839 the 0-sentinel.
17840 * src/gram.c (ritem_longest_rhs): Likewise.
17841 * src/reduce.c (nonterminals_reduce): Likewise.
17842 * src/print_graph.c (print_graph): Likewise.
17843 * src/output.c (output_rule_data): Likewise.
17844 * src/nullable.c (set_nullable): Likewise.
17845
17846 2001-12-29 Akim Demaille <akim@epita.fr>
17847
17848 * src/output.c: Comment changes.
17849
17850 2001-12-27 Paul Eggert <eggert@twinsun.com>
17851
17852 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17853 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17854 Sparc, as they were causing more porting problems than the
17855 (minor) performance improvement was worth.
17856
17857 Also, catch up with 1.31's YYSTD.
17858
17859 2001-12-27 Akim Demaille <akim@epita.fr>
17860
17861 * src/output.c (output_gram): Rely on nritems, not the
17862 0-sentinel. See below.
17863 Use -1 as separator, not 0.
17864 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17865 Rely on -1 as separator in yyrhs, instead of 0.
17866 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17867 twice `Now at end of input', therefore there are two lines less to
17868 expect.
17869
17870 2001-12-27 Akim Demaille <akim@epita.fr>
17871
17872 * tests/regression.at (Unresolved SR Conflicts):
17873 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17874 below.
17875
17876 2001-12-27 Akim Demaille <akim@epita.fr>
17877
17878 * src/LR0.c (new_state): Recognize the final state by the fact it
17879 is reached by eoftoken.
17880 (insert_start_shifting_state, insert_eof_shifting_state)
17881 (insert_accepting_state, augment_automaton): Remove, since now
17882 these states are automatically computed from the initial state.
17883 (generate_states): Adjust.
17884 * src/print.c: When reporting a rule number to the user, substract
17885 1, so that the axiom rule is rule 0, and the first user rule is 1.
17886 * src/reduce.c: Likewise.
17887 * src/print_graph.c (print_core): For the time being, just as for
17888 the report, depend upon --trace-flags to dump the full set of
17889 items.
17890 * src/reader.c (readgram): Once the grammar read, insert the rule
17891 0: `$axiom: START-SYMBOL $'.
17892 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17893 number of the states has changed (the final state is no longer
17894 necessarily the last), catch up.
17895
17896 2001-12-27 Akim Demaille <akim@epita.fr>
17897
17898 Try to make the use of the eoftoken valid. Given that its value
17899 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17900 is used instead of > 0 where appropriate, (ii), depend upon nritems
17901 instead of the 0-sentinel.
17902
17903 * src/gram.h, src/gram.c (nritems): New.
17904 Expected to be duplication of nitems, but for the time being...
17905 * src/reader.c (packgram): Assert nritems and nitems are equal.
17906 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17907 * src/closure.c (print_closure, print_fderives): Likewise.
17908 * src/gram.c (ritem_print): Likewise.
17909 * src/print.c (print_core, print_grammar): Likewise.
17910 * src/print_graph.c: Likewise.
17911
17912 2001-12-27 Akim Demaille <akim@epita.fr>
17913
17914 * src/main.c (main): If there are complains after grammar
17915 reductions, then output the report anyway if requested, then die.
17916 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17917 * src/reader.c (eoftoken): New.
17918 (parse_token_decl): If the token being defined has value `0', it
17919 is the eoftoken.
17920 (packsymbols): No longer hack `tags' to insert `$' by hand.
17921 Be sure to preserve the value of the eoftoken.
17922 (reader): Make sure eoftoken is defined.
17923 Initialize nsyms to 0: now eoftoken is created just like the others.
17924 * src/print.c (print_grammar): Don't special case the eof token.
17925 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17926 lie anyway, albeit pleasant.
17927 * tests/calc.at: Exercise error messages with eoftoken.
17928 Change the grammar so that empty input is invalid.
17929 Adjust expectations.
17930 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17931
17932 2001-12-27 Akim Demaille <akim@epita.fr>
17933
17934 * configure.in: Check the protos of strchr ans strspn.
17935 Replace strchr if needed.
17936 * src/system.h: Provide the protos of strchr, strspn and memchr if
17937 missing.
17938 * lib/strchr.c: New.
17939 * src/reader.c (symbols_save): Use strchr.
17940
17941 2001-12-27 Akim Demaille <akim@epita.fr>
17942
17943 * src/print.c, src/print_graph.c (escape): New.
17944 Use it to quote the TAGS outputs.
17945 * src/print_graph.c (print_state): Now errors are in red, and
17946 reductions in green.
17947 Prefer high to wide: output the state number on a line of its own.
17948
17949 2001-12-27 Akim Demaille <akim@epita.fr>
17950
17951 * src/state.h, src/state.c (reductions_new): New.
17952 * src/LR0.c (set_state_table): Let all the states have a
17953 `reductions', even if reduced to 0.
17954 (save_reductions): Adjust.
17955 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17956 * src/print.c (print_reductions, print_actions): Adjust.
17957 * src/output.c (action_row): Adjust.
17958
17959 2001-12-27 Akim Demaille <akim@epita.fr>
17960
17961 * src/state.h, src/state.c (errs_new, errs_dup): New.
17962 * src/LR0.c (set_state_table): Let all the states have an errs,
17963 even if reduced to 0.
17964 * src/print.c (print_errs, print_reductions): Adjust.
17965 * src/output.c (output_actions, action_row): Adjust.
17966 * src/conflicts.c (resolve_sr_conflict): Adjust.
17967
17968 2001-12-27 Akim Demaille <akim@epita.fr>
17969
17970 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17971
17972 2001-12-27 Akim Demaille <akim@epita.fr>
17973
17974 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17975 * src/print.c: here.
17976 (lookaheadset, shiftset): New, used as additional storage by
17977 print_reductions.
17978 (print_results): Adjust.
17979 (print_shifts, print_gotos, print_errs): New, extracted from...
17980 (print_actions): here.
17981 * src/print_graph.c (print_actions): Remove dead code.
17982
17983 2001-12-27 Akim Demaille <akim@epita.fr>
17984
17985 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17986 `$n' and `@n'.
17987
17988 2001-12-27 Akim Demaille <akim@epita.fr>
17989
17990 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17991 (build_relations): Adjust.
17992
17993 2001-12-27 Akim Demaille <akim@epita.fr>
17994
17995 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17996 duplication.
17997
17998 2001-12-27 Akim Demaille <akim@epita.fr>
17999
18000 * src/reader.c (packgram): Catch nitems overflows.
18001
18002 2001-12-27 Akim Demaille <akim@epita.fr>
18003
18004 * src/files.c, src/files.h (guard_obstack): Remove.
18005 * src/output.c (output): Adjust.
18006 * src/reader.c (parse_braces): New, factoring...
18007 (copy_action, copy_guard): these two which are renamed as...
18008 (parse_action, parse_guard): these.
18009 As a voluntary consequence, using braces around guards is now
18010 mandatory.
18011
18012 2001-12-27 Akim Demaille <akim@epita.fr>
18013
18014 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
18015 * src/reader.c (symbol_list): `guard' and `guard_line' are new
18016 members.
18017 (symbol_list_new): Adjust.
18018 (copy_action): action_line is the first line, not the last.
18019 (copy_guard): Just as for actions, store the `action' only, not
18020 the switch/case/break flesh.
18021 Don't parse the user action that might follow the guard, let...
18022 (readgram): do it, i.e., now, there can be an action after a
18023 guard.
18024 In other words the guard is just explicitly optional.
18025 (packgram): Adjust.
18026 * src/output.c (guards_output): New.
18027 (output_parser): Call it when needed.
18028 (output): Also free the guard and attrs obstacks.
18029 * src/files.c, src/files.h (obstack_save): Remove.
18030 (output_files): Remove.
18031 As a result, if one needs the former `.act' file, using an
18032 appropriate skeleton which requires actions and guards is now
18033 required.
18034 * src/main.c (main): Adjust.
18035 * tests/semantic.at: New.
18036 * tests/regression.at: Use `input.y' as input file name.
18037 Avoid 8+3 problems by requiring input.c when the test needs the
18038 parser.
18039
18040 2001-12-27 Akim Demaille <akim@epita.fr>
18041
18042 * src/reader.c (symbol_list_new): Be sure to initialize all the
18043 fields.
18044
18045 2001-12-27 Akim Demaille <akim@epita.fr>
18046
18047 All the hacks using a final pseudo state are now useless.
18048
18049 * src/LR0.c (set_state_table): state_table holds exactly nstates.
18050 * src/lalr.c (nLA): New.
18051 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
18052 instead of lookaheadsp from the pseudo state (nstate + 1).
18053
18054 2001-12-27 Akim Demaille <akim@epita.fr>
18055
18056 * src/output.c (action_row, token_actions): Use a state_t instead
18057 of a integer, and nlookaheads instead of the following state's
18058 lookaheadsp.
18059
18060 2001-12-27 Akim Demaille <akim@epita.fr>
18061
18062 * src/conflicts.c (log_resolution, flush_shift)
18063 (resolve_sr_conflict, set_conflicts, solve_conflicts)
18064 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
18065 (conflicts_print, print_reductions): Use a state_t instead of an
18066 integer when referring to a state.
18067 As much as possible, depend upon nlookaheads, instead of the
18068 `lookaheadsp' member of the following state (since lookaheads of
18069 successive states are successive, the difference between state n + 1
18070 and n served as the number of lookaheads for state n).
18071 * src/lalr.c (add_lookback_edge): Likewise.
18072 * src/print.c (print_core, print_actions, print_state)
18073 (print_results): Likewise.
18074 * src/print_graph.c (print_core, print_actions, print_state)
18075 (print_graph): Likewise.
18076 * src/conflicts.h: Adjust.
18077
18078 2001-12-27 Akim Demaille <akim@epita.fr>
18079
18080 * src/bison.hairy: Formatting/comment changes.
18081 ANSIfy.
18082 Remove `register' indications.
18083 Add plenty of `static'.
18084
18085 2001-12-27 Akim Demaille <akim@epita.fr>
18086
18087 * src/output.c (prepare): Drop the muscle `ntbase' which
18088 duplicates ntokens.
18089 * src/bison.simple: Formatting/comment changes.
18090 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
18091 is an undocumented synonym.
18092
18093 2001-12-22 Akim Demaille <akim@epita.fr>
18094
18095 * src/output.c (output_table_data): Change the prototype to use
18096 `int' for array ranges: some invocations do pass an int, not a
18097 short.
18098 Reported by Wayne Green.
18099
18100 2001-12-22 Akim Demaille <akim@epita.fr>
18101
18102 Some actions of web2c.y are improperly triggered.
18103 Reported by Mike Castle.
18104
18105 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
18106 * tests/regression.at (Web2c): Rename as...
18107 (Web2c Report): this.
18108 (Web2c Actions): New.
18109
18110 2001-12-22 Akim Demaille <akim@epita.fr>
18111
18112 Reductions in web2c.y are improperly reported.
18113 Reported by Mike Castle.
18114
18115 * src/conflicts.c (print_reductions): Fix.
18116 * tests/regression.at (Web2c): New.
18117
18118 2001-12-18 Akim Demaille <akim@epita.fr>
18119
18120 Some host fail on `assert (!"foo")', which expands to
18121 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
18122 Reported by Nelson Beebee.
18123
18124 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
18125 `#define it_succeeded 0' and `assert (it_succeeded)'.
18126
18127 2001-12-17 Marc Autret <autret_m@epita.fr>
18128
18129 * src/bison.simple: Don't hard code the skeleton line and filename.
18130 * src/output.c (output_parser): Rename 'line' as 'output_line'.
18131 New line counter 'skeleton_line' (skeleton-line muscle).
18132
18133 2001-12-17 Paul Eggert <eggert@twinsun.com>
18134
18135 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
18136 YYDEBUG must be defined to a nonzero value.
18137
18138 * src/bison.simple (yytname): Do not assume that the user defines
18139 YYDEBUG to a properly parenthesized expression.
18140
18141 2001-12-17 Akim Demaille <akim@epita.fr>
18142
18143 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
18144 nlookaheads is a new member.
18145 Adjust all users.
18146 * src/lalr.h (nlookaheads): Remove this orphan declaration.
18147 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
18148 state.
18149
18150 2001-12-17 Akim Demaille <akim@epita.fr>
18151
18152 * src/files.h, src/files.c (open_files, close_files): Remove.
18153 * src/main.c (main): Don't open/close files, nor invoke lex_free,
18154 let...
18155 * src/reader.c (reader): Do it.
18156
18157 2001-12-17 Akim Demaille <akim@epita.fr>
18158
18159 * src/conflicts.c (print_reductions): Formatting changes.
18160
18161 2001-12-17 Akim Demaille <akim@epita.fr>
18162
18163 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
18164 (flush_reduce): New.
18165 (resolve_sr_conflict): Adjust.
18166
18167 2001-12-17 Akim Demaille <akim@epita.fr>
18168
18169 * src/output.c (output_obstack): Be static and rename as...
18170 (format_obstack): this, to avoid any confusion with files.c's
18171 output_obstack.
18172 * src/reader.h (muscle_obstack): Move to...
18173 * src/output.h: here, since it's defined in output.c.
18174
18175 2001-12-17 Akim Demaille <akim@epita.fr>
18176
18177 * src/output.c (action_row, save_column, default_goto)
18178 (sort_actions, matching_state, pack_vector): Better variable
18179 locality.
18180
18181 2001-12-17 Akim Demaille <akim@epita.fr>
18182
18183 * src/output.c: Various formatting changes.
18184
18185 2001-12-17 Akim Demaille <akim@epita.fr>
18186
18187 * src/files.c (output_files): Free the output_obstack.
18188 * src/main.c (main): Call print and print_graph conditionally.
18189 * src/print.c (print): Work unconditionally.
18190 * src/print_graph.c (print_graph): Work unconditionally.
18191 * src/conflicts.c (log_resolution): Output only if verbose_flag.
18192
18193 2001-12-16 Marc Autret <autret_m@epita.fr>
18194
18195 * src/output.c (actions_output): Fix. When we use %no-lines,
18196 there is one less line per action.
18197
18198 2001-12-16 Marc Autret <autret_m@epita.fr>
18199
18200 * src/bison.simple: Remove a useless #line directive.
18201 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
18202 * src/output.c (get_lines_number): New.
18203 (output_parser): Adjust, now takes care about the lines of a
18204 output muscles.
18205 Fix line numbering.
18206 (actions_output): Computes the number of lines taken by actions.
18207 (output_master_parser): Insert new skeleton which is the name of
18208 the output parser file name.
18209
18210 2001-12-15 Marc Autret <autret_m@epita.fr>
18211
18212 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
18213
18214 2001-12-15 Marc Autret <autret_m@epita.fr>
18215
18216 * src/output.c (output_gram): Keep track of the hairy one.
18217
18218 2001-12-15 Akim Demaille <akim@epita.fr>
18219
18220 Make `make distcheck' work.
18221
18222 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
18223 system.h which uses libgettext.h.
18224
18225 2001-12-15 Akim Demaille <akim@epita.fr>
18226
18227 * src/nullable.c (set_nullable): Useless rules must be skipped,
18228 otherwise, since we range over their symbols, we might look at a
18229 nonterminal which no longer ``exists'', i.e., it is not counted in
18230 `nvars', hence we overflow our arrays.
18231
18232 2001-12-15 Akim Demaille <akim@epita.fr>
18233
18234 The header can also be produced directly, without any obstack!
18235 Yahoo!
18236
18237 * src/files.c, src/files.h (defines_obstack): Remove.
18238 (compute_header_macro): Global.
18239 (defines_obstack_save): Remove.
18240 * src/reader.c (parse_union_decl): No longer output to
18241 defines_obstack: its content can be found in the `stype' muscle
18242 anyway.
18243 (output_token_translations): Merge into...
18244 (symbols_output): this.
18245 Rename as...
18246 (symbols_save): this.
18247 (reader): Adjust.
18248 * src/output.c (header_output): New.
18249 (output): Call it.
18250
18251 2001-12-15 Akim Demaille <akim@epita.fr>
18252
18253 * src/reader.c (parse_union_decl): Instead of handling two obstack
18254 simultaneously, use one to define the `stype' muscle, and use the
18255 value of the latter to fill defines_obstack.
18256 (copy_comment): Remove.
18257 (copy_comment2): Work for a single obstack.
18258 Rename as...
18259 (copy_comment): this.
18260
18261 2001-12-15 Akim Demaille <akim@epita.fr>
18262
18263 * src/lex.c, src/lex.h (xgetc): No longer static.
18264 * src/reader.c (parse_union_decl): Revamp.
18265
18266 2001-12-15 Akim Demaille <akim@epita.fr>
18267
18268 Still making progress in separating Bison into (i) input, (ii)
18269 process, (iii) output: now we can directly output the parser file
18270 without using table_obstack at all.
18271
18272 * src/files.c, src/files.h (table_obstack): Bye bye.
18273 (parser_file_name): New.
18274 * src/files.c (compute_output_file_names): Compute it.
18275 * src/output.c (actions_output, output_parser)
18276 (output_master_parser): To a file instead of an obstack.
18277
18278 2001-12-15 Akim Demaille <akim@epita.fr>
18279
18280 Attach actions to rules, instead of pre-outputting them to
18281 actions_obstack.
18282
18283 * src/gram.h (rule_t): action and action_line are new members.
18284 * src/reader.c (symbol_list): Likewise.
18285 (copy_action): Save the actions within the rule.
18286 (packgram): Save them in rule_table.
18287 * src/output.c (actions_output): New.
18288 (output_parser): Use it on `%%actions'.
18289 (output_rule_data): Don't free rule_table.
18290 (output): Do it.
18291 (prepare): Don't save the `action' muscle.
18292 * src/bison.simple: s/%%action/%%actions/.
18293
18294 2001-12-15 Akim Demaille <akim@epita.fr>
18295
18296 * src/reader.c (copy_action): When --yacc, don't append a `;'
18297 to the user action: let it fail if lacking.
18298 Suggested by Arnold Robbins and Tom Tromey.
18299
18300 2001-12-14 Akim Demaille <akim@epita.fr>
18301
18302 * src/lex.c (literalchar): Simply return the char you decoded, non
18303 longer mess around with obstacks and int pointers.
18304 Adjust all callers.
18305
18306 2001-12-14 Akim Demaille <akim@epita.fr>
18307
18308 * src/lex.c (literalchar): Don't escape the special characters,
18309 just decode them, and keep them as char (before, eol was output as
18310 the 2 char string `\n' etc.).
18311 * src/output.c (output_rule_data): Use quotearg to output the
18312 token strings.
18313
18314 2001-12-13 Paul Eggert <eggert@twinsun.com>
18315
18316 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
18317 Do not infringe on the global user namespace when using C++.
18318 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
18319 All uses of `fprintf' and `stderr' changed.
18320
18321 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
18322
18323 2001-12-13 Akim Demaille <akim@epita.fr>
18324
18325 The computation of nullable is broken: it doesn't handle empty
18326 RHS's properly.
18327
18328 * tests/torture.at (GNU AWK Grammar): New.
18329 * tests/sets.at (Nullable): New.
18330 * src/nullable.c (set_nullable): Instead of blindly looping over
18331 `ritems', loop over the rules, and then over their rhs's.
18332
18333 Work around Autotest bugs.
18334
18335 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
18336 frame, because Autotest understand lines starting with a `+' as
18337 traces from the shell. Then, they are not processed properly.
18338 Admittedly an Autotest bug, but we don't have time to wait for
18339 Autotest to catch up.
18340 * tests/regression.at (Broken Closure): Adjust to the new table
18341 frames.
18342 Move to...
18343 * tests/sets.at: here.
18344
18345 2001-12-13 Akim Demaille <akim@epita.fr>
18346
18347 * src/closure.c (closure): Use nrules instead of playing tricks
18348 with BITS_PER_WORD.
18349
18350 2001-12-13 Akim Demaille <akim@epita.fr>
18351
18352 * src/print.c (print_actions): Output the handling of `$' as the
18353 traces do: shifting the token EOF. Before EOF was treated as a
18354 nonterminal.
18355 * tests/regression.at: Adjust some tests.
18356 * src/print_graph.c (print_core): Complete the set of items via
18357 closure. The next-to-final and final states are still unsatisfying,
18358 but that's to be addressed elsewhere.
18359 No longer output the rule numbers, but do output the state number.
18360 A single loop for the shifts + gotos is enough, but picked a
18361 distinct color for each.
18362 (print_graph): Initialize and finalize closure.
18363
18364 2001-12-13 Akim Demaille <akim@epita.fr>
18365
18366 * src/reader.c (readgram): Remove dead code, an strip useless
18367 braces.
18368 (get_type): Remove, unused.
18369
18370 2001-12-12 Akim Demaille <akim@epita.fr>
18371
18372 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
18373 on that of lib/error.c.
18374
18375 2001-12-12 Akim Demaille <akim@epita.fr>
18376
18377 Some hosts don't like `/' in includes.
18378
18379 * src/system.h: Include libgettext.h without qualifying the path.
18380 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
18381 $(top_srcdir).
18382
18383 2001-12-11 Marc Autret <autret_m@epita.fr>
18384
18385 * src/output.c (output_parser): Remove useless muscle.
18386
18387 2001-12-11 Marc Autret <autret_m@epita.fr>
18388
18389 * src/bison.simple: Remove #line just before %%epilogue. It
18390 is now handled in ...
18391 * src/reader.c (read_additionnal_code): Add the output of a
18392 #line for the epilogue.
18393
18394 2001-12-10 Marc Autret <autret_m@epita.fr>
18395
18396 * src/reader.c (copy_definition): Re-use CPP-outed code which
18397 replace precedent remove.
18398 * src/bison.simple: Remove #line before %%prologue because
18399 %%input-line is wrong at this time.
18400
18401 2001-12-10 Marc Autret <autret_m@epita.fr>
18402
18403 * src/reader.c (symbols_output): Clean up.
18404 * src/output.c (output_gram, output): Clean up.
18405
18406 2001-12-10 Akim Demaille <akim@epita.fr>
18407
18408 * src/lalr.c (initialize_lookaheads): New. Extracted from...
18409 * src/LR0.c (set_state_table): here.
18410 * src/lalr.c (lalr): Call it.
18411
18412 2001-12-10 Akim Demaille <akim@epita.fr>
18413
18414 * src/state.h (shifts): Remove the `number' member: shifts are
18415 attached to state, hence no longer need to be labelled with a
18416 state number.
18417
18418 2001-12-10 Akim Demaille <akim@epita.fr>
18419
18420 Now that states have a complete set of members, the linked list of
18421 shifts is useless: just fill directly the state's shifts member.
18422
18423 * src/state.h (shifts): Remove the `next' member.
18424 * src/LR0.c (first_state, last_state): Remove.
18425 Adjust the callers.
18426 (augment_automaton): Don't look for the shifts that must be added
18427 a shift on EOF: it is those of the state we looked for! But now,
18428 since shifts are attached, it is no longer needed to looking
18429 merely by its id: its number.
18430
18431 2001-12-10 Akim Demaille <akim@epita.fr>
18432
18433 * src/LR0.c (augment_automaton): Better variable locality.
18434 Remove an impossible branch: if there is a state corresponding to
18435 the start symbol being shifted, then there is shift for the start
18436 symbol from the initial state.
18437
18438 2001-12-10 Akim Demaille <akim@epita.fr>
18439
18440 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
18441 only when appropriate: when insert_start_shifting_state' is not
18442 invoked.
18443 * tests/regression.at (Rule Line Numbers): Adjust.
18444
18445 2001-12-10 Akim Demaille <akim@epita.fr>
18446
18447 * src/LR0.c (augment_automaton): Now that all states have shifts,
18448 merge the two cases addition shifts to the initial state.
18449
18450 2001-12-10 Akim Demaille <akim@epita.fr>
18451
18452 * src/lalr.c (set_state_table): Move to...
18453 * src/LR0.c: here.
18454 * src/lalr.c (lalr): Don't call it...
18455 * src/LR0.c (generate_states): do it.
18456 * src/LR0.h (first_state): Remove, only the table is used.
18457
18458 2001-12-10 Akim Demaille <akim@epita.fr>
18459
18460 * src/LR0.h (first_shift, first_reduction): Remove.
18461 * src/lalr.c: Don't use first_shift: find shifts through the
18462 states.
18463
18464 2001-12-10 Akim Demaille <akim@epita.fr>
18465
18466 * src/LR0.c: Attach shifts to states as soon as they are
18467 computed.
18468 * src/lalr.c (set_state_table): Instead of assigning shifts to
18469 state, just assert that the mapping was properly done.
18470
18471 2001-12-10 Akim Demaille <akim@epita.fr>
18472
18473 * src/LR0.c (insert_start_shift): Rename as...
18474 (insert_start_shifting_state): this.
18475 (insert_eof_shifting_state, insert_accepting_state): New.
18476 (augment_automaton): Adjust.
18477 Better locality of the variables.
18478 When looking if the start_symbol is shifted from the initial
18479 state, using `while (... symbol != start_symbol ...)' sounds
18480 better than `while (... symbol < start_symbol ...)': If fail
18481 to see how the order between symbols could be relevant!
18482
18483 2001-12-10 Akim Demaille <akim@epita.fr>
18484
18485 * src/getargs.h: Don't declare `spec_name_prefix' and
18486 `spec_file_prefix', declared by src/files.h.
18487 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
18488 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
18489 * src/output.c (prepare): Adjust.
18490 * src/reader.c (symbols_output): Likewise.
18491 * src/vmsgetargs.c: Vaguely adjust, but who cares?
18492
18493 2001-12-10 Akim Demaille <akim@epita.fr>
18494
18495 * src/muscle_tab.c (muscle_init): NULL is a better default than
18496 `"0"'.
18497
18498 2001-12-10 Akim Demaille <akim@epita.fr>
18499
18500 * src/reader.c (reader): Calling symbols_output once is enough.
18501
18502 2001-12-10 Akim Demaille <akim@epita.fr>
18503
18504 Now that states have a complete set of members, the linked list of
18505 reductions is useless: just fill directly the state's reductions
18506 member.
18507
18508 * src/state.h (struct reductions): Remove member `number' and
18509 `next'.
18510 * src/LR0.c (first_reduction, last_reduction): Remove.
18511 (save_reductions): Don't link the new reductions, store them in
18512 this_state.
18513 * src/lalr.c (set_state_table): No need to attach reductions to
18514 states, it's already done.
18515 * src/output.c (output_actions): No longer free the shifts, then
18516 the reductions, then the states: free all the states and their
18517 members.
18518
18519 2001-12-10 Akim Demaille <akim@epita.fr>
18520
18521 * src/options.c (OPTN, DRTV, BOTH): New.
18522 (option_table): Use them.
18523
18524 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
18525 the job of system.h.
18526 * src/options.c: Don't include stdio.h and xalloc.h for the same
18527 reasons.
18528
18529 2001-12-10 Akim Demaille <akim@epita.fr>
18530
18531 * src/output.c (output, prepare): Make sure the values of the
18532 muscles `action' and `prologue' are 0-terminated.
18533
18534 2001-12-10 Akim Demaille <akim@epita.fr>
18535
18536 Clean up GCC warnings.
18537
18538 * src/reader.c (copy_action): `buf' is not used.
18539 (parse_skel_decl): Be static.
18540 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
18541 * src/options.h (create_long_option_table): Have a real prototype.
18542 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
18543 (hash_delete_at): Return const void *.
18544 Adjust casts to preserve the const.
18545
18546 2001-12-10 Akim Demaille <akim@epita.fr>
18547
18548 * configure.in: Require 2.52g.
18549 M4 is not needed, but AUTOM4TE is.
18550 * m4/m4.m4: Remove.
18551 * tests/Makefile.am: Adjust.
18552
18553 2001-12-10 Akim Demaille <akim@epita.fr>
18554
18555 One structure for states is enough, even though theoretically
18556 there are LR(0) states and LALR(1) states.
18557
18558 * src/lalr.h (state_t): Remove.
18559 (state_table): Be state_t **, not state_t *.
18560 * src/state.h (core, CORE_ALLOC): Rename as...
18561 (state_t, STATE_ALLOC): this.
18562 Add the LALR(1) members: shifts, reductions, errs.
18563 * src/LR0.c (state_table): Rename as...
18564 (state_hash): this, to avoid name clashes with the global
18565 `state_table'.
18566 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
18567 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
18568
18569 2001-12-10 Akim Demaille <akim@epita.fr>
18570
18571 Bison dumps core on bash.y.
18572 Reported by Pascal Bart.
18573
18574 * src/warshall.c (bitmatrix_print): New.
18575 (TC): Use it.
18576 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
18577 j must be the outer loop.
18578 * tests/regression.at (Broken Closure): New.
18579
18580 2001-12-05 Akim Demaille <akim@epita.fr>
18581
18582 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
18583 its argument.
18584 Reported by Peter Hamorsky.
18585
18586 2001-12-05 Akim Demaille <akim@epita.fr>
18587
18588 * src/conflicts.c (err_table): Remove.
18589 (resolve_sr_conflict): Adjust.
18590 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
18591 Rename as...
18592 (state_t.reductions, state_t.shifts): this.
18593
18594 2001-12-05 Akim Demaille <akim@epita.fr>
18595
18596 * src/reduce.c (reduce_grammar_tables): No longer disable the
18597 removal of useless rules via CPP but via `if (0)', so that the
18598 compiler still check the code is valid.
18599 For instance, it should have noticed `rline' no longer exists: use
18600 the `line' member of rule_t.
18601 * src/gram.c (dummy, rline): Remove, unused.
18602
18603 2001-12-05 Akim Demaille <akim@epita.fr>
18604
18605 * src/output.c (pack_vector): Use assert, not berror.
18606 * src/main.c (berror): Remove, unused.
18607
18608 2001-12-05 Akim Demaille <akim@epita.fr>
18609
18610 New experimental feature: if --verbose --trace output all the
18611 items of a state, not only its kernel.
18612
18613 * src/print.c (print_core): If `trace_flag', then invoke closure
18614 before outputting the items of the state (print_core is no longer
18615 a correct name them).
18616 (print_results): Invoke new_closure/free_closure if needed.
18617
18618 2001-12-05 Akim Demaille <akim@epita.fr>
18619
18620 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
18621 * src/closure.c, src/closure.h (itemsetsize): Rename as...
18622 (nitemset): for consistency with the rest of the project.
18623
18624 2001-12-05 Akim Demaille <akim@epita.fr>
18625
18626 * src/closure.c (print_closure): Improve.
18627 (closure): Use it for printing input and output.
18628
18629 2001-12-05 Akim Demaille <akim@epita.fr>
18630
18631 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
18632 indexed by nonterminals.
18633
18634 2001-12-05 Akim Demaille <akim@epita.fr>
18635
18636 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
18637 what it was!).
18638 * src/warshall.h: Remove accidental duplication of the content.
18639
18640 2001-12-05 Akim Demaille <akim@epita.fr>
18641
18642 * src/closure.c (set_fderives): De-obfuscate.
18643
18644 2001-12-05 Akim Demaille <akim@epita.fr>
18645
18646 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
18647
18648 2001-12-05 Akim Demaille <akim@epita.fr>
18649
18650 * src/closure.c (set_firsts): De-obfuscate.
18651
18652 2001-12-05 Akim Demaille <akim@epita.fr>
18653
18654 * src/output.c (action_row): De-obfuscate
18655 using the good o' techniques: arrays not pointers, variable
18656 locality, BITISSET, RESETBIT etc.
18657
18658 2001-12-05 Akim Demaille <akim@epita.fr>
18659
18660 Pessimize the code to simplify it: from now on, all the states
18661 have a valid SHIFTS, which NSHIFTS is possibly 0.
18662
18663 * src/LR0.c (shifts_new): Be global and move to..
18664 * src/state.c, src/state.h: here.
18665 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18666 * src/print_graph: Adjust.
18667
18668 2001-12-05 Akim Demaille <akim@epita.fr>
18669
18670 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18671 * src/conflicts.c: Use it.
18672 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18673 incorrectly ``simplified''.
18674
18675 2001-12-05 Akim Demaille <akim@epita.fr>
18676
18677 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18678 using the good o' techniques: arrays not pointers, variable
18679 locality, BITISSET, RESETBIT etc.
18680
18681 2001-12-05 Akim Demaille <akim@epita.fr>
18682
18683 * src/state.h (SHIFT_SYMBOL): New.
18684 * src/conflicts.c: Use it to deobfuscate.
18685
18686 2001-12-05 Akim Demaille <akim@epita.fr>
18687
18688 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18689 (print_reductions): De-obfuscate using the good o' techniques:
18690 arrays not pointers, variable locality, BITISSET.
18691
18692 2001-12-05 Akim Demaille <akim@epita.fr>
18693
18694 * src/conflicts.c (print_reductions): Arrays, not pointers.
18695 Use BITISSET.
18696
18697 2001-12-05 Akim Demaille <akim@epita.fr>
18698
18699 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18700
18701 2001-12-05 Akim Demaille <akim@epita.fr>
18702
18703 * src/conflicts.c (print_reductions): Improve variable locality.
18704
18705 2001-12-05 Akim Demaille <akim@epita.fr>
18706
18707 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18708
18709 2001-12-05 Akim Demaille <akim@epita.fr>
18710
18711 * src/conflicts.c (print_reductions): Improve variable locality.
18712
18713 2001-12-05 Akim Demaille <akim@epita.fr>
18714
18715 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18716 * src/lalr.c: Use them.
18717
18718 2001-12-05 Akim Demaille <akim@epita.fr>
18719
18720 * src/LR0.c (augment_automaton): Formatting changes.
18721 Better variable locality.
18722
18723 2001-12-05 Akim Demaille <akim@epita.fr>
18724
18725 * src/lalr.c (matrix_print): New.
18726 (transpose): Use it.
18727 Use arrays instead of pointers.
18728
18729 2001-12-05 Akim Demaille <akim@epita.fr>
18730
18731 * src/lalr.c (maxrhs): Move to...
18732 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18733 * src/lalr.c (build_relations): Adjust.
18734
18735 2001-12-05 Akim Demaille <akim@epita.fr>
18736
18737 * src/lalr.c (transpose): Free the memory allocated to the
18738 argument, as it is replaced by the results by the unique caller.
18739 (build_relations): Merely invoke transpose: it handles the memory
18740 deallocation.
18741 Improve variable locality.
18742 Avoid variables used as mere abbreviations.
18743 (compute_lookaheads): Use arrays instead of pointers.
18744
18745 2001-12-05 Akim Demaille <akim@epita.fr>
18746
18747 * src/lalr.c (initialize_F): Improve variable locality.
18748 Avoid variables used as mere abbreviations.
18749
18750 2001-12-05 Akim Demaille <akim@epita.fr>
18751
18752 * src/derives.c (print_derives): Display the ruleno.
18753 * src/lalr.c (initialize_F, transpose): Better variable locality
18754 to improve readability.
18755 Avoid variables used as mere abbreviations.
18756
18757 2001-12-05 Akim Demaille <akim@epita.fr>
18758
18759 * src/lalr.c (traverse): Use arrays instead of pointers.
18760
18761 2001-12-05 Akim Demaille <akim@epita.fr>
18762
18763 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18764 the handling of squeue.
18765 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18766
18767 2001-12-05 Akim Demaille <akim@epita.fr>
18768
18769 Because useless nonterminals are now kept alive (instead of being
18770 `destroyed'), we now sometimes examine them, and store information
18771 related to them. Hence we need to know their number, and adjust
18772 memory allocations.
18773
18774 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18775 static.
18776 * src/LR0.c (allocate_itemsets): The memory allocated to
18777 `symbol_count' was used for two different purpose: once to count
18778 the number of occurrences of each symbol, and later reassigned to
18779 `shift_symbol', containing the symbol that can be shifted from a
18780 given state.
18781 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18782 only, and...
18783 (new_itemsets): Allocate `shift_symbol' here.
18784 (allocate_itemsets): symbol_count includes useless nonterminals.
18785 Make room for them.
18786 (free_storage): Use `free', not `XFREE', for pointers that cannot
18787 be null.
18788
18789 2001-12-05 Akim Demaille <akim@epita.fr>
18790
18791 * src/nullable.c (set_nullable): Deobfuscate the handling of
18792 ritem.
18793 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18794
18795 2001-12-05 Akim Demaille <akim@epita.fr>
18796
18797 * src/gram.c, src/gram.h (ritem_print): New.
18798 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18799 (This useless function was defined only to work around VMS linkers
18800 that can't handle compilation units with variables only).
18801 * src/reduce.c (dump_grammar): Use it to trace the construction of
18802 ritem.
18803
18804 2001-12-04 Paul Eggert <eggert@twinsun.com>
18805
18806 * src/bison.simple (union yyalloc): Change member names
18807 to be the same as the stack names.
18808 (yyparse): yyptr is now union yyalloc *, not char *.
18809 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18810 and may generate better code on some machines.
18811 (yystpcpy): Use prototype if __STDC__ is defined, not just
18812 if __cplusplus is defined.
18813
18814 2001-11-30 Akim Demaille <akim@epita.fr>
18815
18816 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18817 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18818 Gettext doesn't compile cleanly, and dies with -Werror.
18819 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18820 Include WARNING_CFLAGS here.
18821 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18822 before being defined.
18823
18824 2001-11-27 Paul Eggert <eggert@twinsun.com>
18825
18826 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18827 First arg is int, not unsigned.
18828 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18829 (SIZE_MAX, UINT_MAX): New macros.
18830 (quotearg_n_options): Abort if N is negative.
18831 Avoid overflow check on hosts where size_t is 64 bits and int
18832 is 32 bits, as overflow is impossible there.
18833 Fix off-by-one typo that caused unnecessary reallocation.
18834
18835 2001-11-29 Paul Eggert <eggert@twinsun.com>
18836
18837 Name space cleanup in generated parser.
18838
18839 * doc/bison.texinfo (Bison Parser): Discuss system headers
18840 and their effect on the user name space.
18841
18842 * src/bison.simple:
18843 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18844 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18845 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18846
18847 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18848 on user names when possible.
18849
18850 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18851 Simplify test for whather <alloca.h> exists.
18852
18853 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18854
18855 (<stdio.h>): Include if YYDEBUG.
18856
18857 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18858 ! defined (yyoverflow) && ! defined (yymemcpy).
18859
18860 (yymemcpy, yyparse): Rename local variables as needed so that
18861 they all begin with 'yy'.
18862
18863 (yystrlen, yystpcpy): New functions.
18864
18865 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18866 All uses changed.
18867
18868 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18869 instead of relying on string.h functions. Use YYSTACK_ALLOC
18870 and YYSTACK_FREE instead of malloc and free.
18871
18872 2001-11-30 Akim Demaille <akim@epita.fr>
18873
18874 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18875 before their first uses.
18876 (YYBISON, YYPURE): Move to the top of the output.
18877
18878 2001-11-30 Akim Demaille <akim@epita.fr>
18879
18880 * tests/reduce.at (Useless Nonterminals): Fix.
18881
18882 2001-11-30 Akim Demaille <akim@epita.fr>
18883
18884 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18885 if body instead of `;' to pacify GCC's warnings.
18886
18887 2001-11-30 Akim Demaille <akim@epita.fr>
18888
18889 Instead of mapping the LHS of unused rules to -1, keep the LHS
18890 valid, but flag the rules as invalid.
18891
18892 * src/gram.h (rule_t): `useful' is a new member.
18893 * src/print.c (print_grammar): Adjust.
18894 * src/derives.c (set_derives): Likewise.
18895 * src/reader.c (packgram, reduce_output): Likewise.
18896 * src/reduce.c (reduce_grammar_tables): Likewise.
18897 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18898
18899 2001-11-30 Akim Demaille <akim@epita.fr>
18900
18901 * src/reduce.c (reduce_output): Formatting changes.
18902 * src/print.c (print_results, print_grammar): Likewise.
18903 * tests/regression.at (Rule Line Numbers)
18904 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18905
18906 2001-11-30 Akim Demaille <akim@epita.fr>
18907
18908 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18909 useless nonterminals, move them at the end of the symbol arrays.
18910 (reduce_output): Adjust.
18911 * tests/reduce.at (Useless Nonterminals): Adjust.
18912
18913 2001-11-30 Akim Demaille <akim@epita.fr>
18914
18915 * src/reduce.c: Various comment/formatting changes.
18916 (nonterminals_reduce): New, extracted from...
18917 (reduce_grammar_tables): here.
18918 (reduce_grammar): Call nonterminals_reduce.
18919
18920 2001-11-29 Paul Eggert <eggert@twinsun.com>
18921
18922 * src/bison.simple (YYSTACK_REALLOC): Remove.
18923 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18924 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18925 New macros.
18926 (union yyalloc): New type.
18927 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18928 an arbitrary restriction on hosts where size_t is wider than int.
18929
18930 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18931 a parser stack overflow. Allocate just one block of memory for all
18932 three stacks, instead of allocating three blocks; this typically is
18933 faster and reduces fragmentation.
18934
18935 Do not limit the number of items in the stack to a value that fits
18936 in 'int', as this is an arbitrary limit on hosts with 64-bit
18937 size_t and 32-bit int.
18938
18939 2001-11-29 Marc Autret <autret_m@epita.fr>
18940
18941 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18942 of defining YYERROR_VERBOSE.
18943 [AT_DATA]: $4 is now out of C declarations in the prologue.
18944
18945 2001-11-28 Marc Autret <autret_m@epita.fr>
18946
18947 * src/reader.c (parse_dquoted_param): New.
18948 (parse_skel_decl): Use it.
18949 * src/lex.h: Add its prototype.
18950 * src/lex.c (literalchar): Become not static.
18951
18952 2001-11-28 Marc Autret <autret_m@epita.fr>
18953
18954 * src/output.h: And put its extern declaration here.
18955 * src/output.c (error_verbose): Define here.
18956 (prepare): Echo name modification.
18957 * src/getargs.h: Clean its extern declaration.
18958 * src/getargs.c (error_verbose_flag): Remove.
18959 (getargs): Remove case 'e'.
18960 * src/options.c (option_table): 'error-verbose' is now seen as simple
18961 percent option.
18962 Include output.h.
18963
18964 * src/reader.c (read_declarations): Remove case tok_include.
18965 (parse_include_decl): Remove.
18966 * src/lex.h (token_t): Remove tok_include.
18967 * src/options.c (option_table): 'include' is now a simple command line
18968 option.
18969
18970 2001-11-28 Marc Autret <autret_m@epita.fr>
18971
18972 * src/bison.simple: Adjust muscle names.
18973 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18974 * src/output.c (prepare): s/_/-/ for the muscles names.
18975 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18976
18977 2001-11-28 Marc Autret <autret_m@epita.fr>
18978
18979 * src/bison.simple: Fix debug.
18980 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18981
18982 2001-11-28 Akim Demaille <akim@epita.fr>
18983
18984 * src/LR0.c (shifts_new): New.
18985 (save_shifts, insert_start_shift, augment_automaton): Use it.
18986
18987 2001-11-28 Akim Demaille <akim@epita.fr>
18988
18989 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18990 keep ruleno only.
18991
18992 2001-11-28 Akim Demaille <akim@epita.fr>
18993
18994 * src/closure.c (closure): Instead of looping over word in array
18995 then bits in words, loop over bits in array.
18996
18997 2001-11-28 Akim Demaille <akim@epita.fr>
18998
18999 * src/closure.c (closure): No longer optimize the special case
19000 where all the bits of `ruleset[r]' are set to 0, to make the code
19001 clearer.
19002
19003 2001-11-28 Akim Demaille <akim@epita.fr>
19004
19005 * src/closure.c (closure): `r' and `c' are new variables, used to
19006 de-obfuscate accesses to RULESET and CORE.
19007
19008 2001-11-28 Akim Demaille <akim@epita.fr>
19009
19010 * src/reduce.c (reduce_print): Use ngettext.
19011 (dump_grammar): Improve the trace accuracy.
19012
19013 2001-11-28 Akim Demaille <akim@epita.fr>
19014
19015 * src/reduce.c (dump_grammar): Don't translate trace messages.
19016
19017 2001-11-28 Akim Demaille <akim@epita.fr>
19018
19019 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
19020 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
19021 as all tags are free'ed afterwards.
19022 From Enrico Scholz.
19023
19024 2001-11-27 Paul Eggert <eggert@twinsun.com>
19025
19026 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
19027 use alloca when we didn't want to, and vice versa.
19028
19029 2001-11-27 Marc Autret <autret_m@epita.fr>
19030
19031 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
19032 initialization.
19033 * src/output.c (prepare): Remove its update.
19034
19035 2001-11-27 Marc Autret <autret_m@epita.fr>
19036
19037 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
19038 Use %error-verbose.
19039
19040 2001-11-27 Marc Autret <autret_m@epita.fr>
19041
19042 * src/bison.simple: Remove YYERROR_VERBOSE using.
19043 Use %%error_verbose.
19044 (yyparse): Likewise.
19045 * src/output.c (prepare): Give its final value.
19046 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
19047 * src/getargs.h: Add its extern declaration.
19048 * src/getargs.c (error_verbose_flag): New int.
19049 (getargs): Update to catch new case.
19050 * src/options.c (option_table): 'error-verbose' is a new option.
19051 (shortopts): Update.
19052
19053 2001-11-27 Akim Demaille <akim@epita.fr>
19054
19055 * src/system.h: Use intl/libgettext.h.
19056 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
19057
19058 2001-11-27 Akim Demaille <akim@epita.fr>
19059
19060 * tests/torture.at (Exploding the Stack Size with Malloc):
19061 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
19062
19063 2001-11-27 Akim Demaille <akim@epita.fr>
19064
19065 * src/files.c: Include error.h.
19066 Reported by Hans Aberg.
19067
19068 2001-11-26 Marc Autret <autret_m@epita.fr>
19069
19070 * src/reader.c (parse_include_decl): New, not yet implemented.
19071 (read_declarations): Add case tok_include.
19072 * src/getargs.h (include): Add its extern definition.
19073 * src/getargs.c (include): New const char *.
19074 (getargs): Add case '-I'.
19075 * src/options.c (option_table): Add include as command line and
19076 percent option.
19077 * src/lex.h (token_t): Add tok_include.
19078
19079 2001-11-26 Akim Demaille <akim@epita.fr>
19080
19081 * src/reader.c (readgram): Make sure rules for mid-rule actions
19082 have a lineno equal to that of their host rule.
19083 Reported by Hans Aberg.
19084 * tests/regression.at (Rule Line Numbers): New.
19085
19086 2001-11-26 Akim Demaille <akim@epita.fr>
19087
19088 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
19089 size_ts.
19090
19091 2001-11-26 Akim Demaille <akim@epita.fr>
19092
19093 * src/complain.c, src/complain.h (error): Remove, provided by
19094 lib/error.[ch].
19095
19096 2001-11-26 Akim Demaille <akim@epita.fr>
19097
19098 * src/reader.c (read_declarations): Don't abort on tok_illegal,
19099 issue an error message.
19100 * tests/regression.at (Invalid %directive): New.
19101 Reported by Hans Aberg.
19102
19103 2001-11-26 Akim Demaille <akim@epita.fr>
19104
19105 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
19106 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19107
19108 2001-11-26 Akim Demaille <akim@epita.fr>
19109
19110 * src/conflicts.c (conflicts_print): Don't complain at all when
19111 there are no reduce/reduce conflicts, and as many shift/reduce
19112 conflicts as expected.
19113 * tests/regression.at (%expect right): Adjust.
19114
19115 2001-11-23 Akim Demaille <akim@epita.fr>
19116
19117 * lib/alloca.c: Update, from fileutils.
19118
19119 2001-11-23 Akim Demaille <akim@epita.fr>
19120
19121 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
19122
19123 2001-11-23 Akim Demaille <akim@epita.fr>
19124
19125 * src/system.h: Include alloca.h.
19126 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
19127
19128 2001-11-23 Akim Demaille <akim@epita.fr>
19129
19130 * src/print_graph.c (print_actions): Remove `rule', unused.
19131 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
19132 pacify GCC's signed < unsigned warnings.
19133 * src/closure.c (itemsetsize): Likewise.
19134 * src/reader.c (symbol_list_new): Static.
19135
19136 2001-11-23 Akim Demaille <akim@epita.fr>
19137
19138 Attaching lineno to buckets is stupid, since only one copy of each
19139 symbol is kept, only the line of the first occurrence is kept too.
19140
19141 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
19142 * src/reader.c (rline_allocated): Remove, unused.
19143 (symbol_list): Have a `line' member.
19144 (symbol_list_new): New.
19145 (readgram): Use it.
19146 * src/print.c (print_grammar): Output the rule line numbers.
19147 * tests/regression.at (Solved SR Conflicts)
19148 (Unresolved SR Conflicts): Adjust.
19149 Reported by Hans Aberg.
19150
19151 2001-11-22 Marc Autret <autret_m@epita.fr>
19152
19153 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
19154
19155 2001-11-22 Marc Autret <autret_m@epita.fr>
19156
19157 * src/muscle_tab.c (muscle_init): Remove initialization of
19158 skeleton muscle.
19159 * src/output.c (output_master_parser): Do it here.
19160
19161 2001-11-20 Akim Demaille <akim@epita.fr>
19162
19163 * po/sv.po: New.
19164 * configure.in (ALL_LINGUAS): Adjust.
19165 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
19166 longer contains strings to translate.
19167
19168 2001-11-19 Akim Demaille <akim@epita.fr>
19169
19170 * src/conflicts.c (conflicts_print): Add a missing \n.
19171
19172 2001-11-19 Akim Demaille <akim@epita.fr>
19173
19174 * src/nullable.c (nullable_print): New.
19175 (set_nullable): Call it when tracing.
19176 Better locality of variables.
19177
19178 2001-11-19 Akim Demaille <akim@epita.fr>
19179
19180 * src/print.c (print_actions): Better locality of variables.
19181
19182 2001-11-19 Akim Demaille <akim@epita.fr>
19183
19184 * src/derives.c (print_derives): Fix and enrich.
19185 * src/closure.c (print_fderives): Likewise.
19186
19187 2001-11-19 Akim Demaille <akim@epita.fr>
19188
19189 * src/closure.c (itemsetend): Remove, replaced with...
19190 (itemsetsize): new.
19191
19192 2001-11-19 Akim Demaille <akim@epita.fr>
19193
19194 * src/LR0.c (kernel_end): Remove, replaced with...
19195 (kernel_size): new.
19196
19197 2001-11-19 Akim Demaille <akim@epita.fr>
19198
19199 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
19200 to clarify.
19201
19202 2001-11-19 Akim Demaille <akim@epita.fr>
19203
19204 * src/closure.c (closure): Use arrays instead of pointers to clarify.
19205
19206 2001-11-19 Akim Demaille <akim@epita.fr>
19207
19208 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
19209 trace messages.
19210 * src/LR0.c: Likewise.
19211 (allocate_itemsets): Use arrays instead of pointers to clarify.
19212
19213 2001-11-19 Akim Demaille <akim@epita.fr>
19214
19215 * src/getargs.c (statistics_flag): Replace with...
19216 (trace_flag): New.
19217 (longopts): Accept --trace instead of --statistics.
19218 * src/getargs.h, src/options.c: Adjust.
19219 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
19220 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
19221
19222 2001-11-19 Akim Demaille <akim@epita.fr>
19223
19224 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
19225 pointers to clarify the code.
19226 (save_reductions, save_shifts): Factor common parts of alternatives.
19227
19228 2001-11-19 Akim Demaille <akim@epita.fr>
19229
19230 * src/LR0.c (new_state, get_state): Complete TRACE code.
19231 * src/closure.c: Include `reader.h' to get `tags', needed by the
19232 trace code.
19233 Rename the conditional DEBUG as TRACE.
19234 Output consistently TRACEs to stderr, not stdout.
19235 * src/derives.c: Likewise.
19236 * src/reduce.c: (inaccessable_symbols): Using if is better style
19237 than goto.
19238 Use `#if TRACE' instead of `#if 0' for tracing code.
19239
19240 2001-11-19 Akim Demaille <akim@epita.fr>
19241
19242 * src/system.h (LIST_FREE, shortcpy): New.
19243 * src/LR0.c: Use them.
19244 * src/output.c (free_itemsets, free_reductions, free_shifts):
19245 Remove, replaced by LIST_FREE.
19246
19247 2001-11-19 Akim Demaille <akim@epita.fr>
19248
19249 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
19250 (REDUCTIONS_ALLOC): New.
19251 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
19252 allocation.
19253
19254 2001-11-19 Akim Demaille <akim@epita.fr>
19255
19256 * src/LR0.c (new_state): Complete trace code.
19257 * src/nullable.c (set_nullable): Don't translate traces.
19258
19259 2001-11-19 Akim Demaille <akim@epita.fr>
19260
19261 * src/print_graph.c (print_core): Better locality of variables.
19262 * src/print.c (print_core): Likewise.
19263
19264 2001-11-19 Akim Demaille <akim@epita.fr>
19265
19266 * src/vcg.c: You do the output, so you are responsible of the
19267 handling of VCG syntax, in particular: use quotearg.
19268 * src/print_graph.c: Don't.
19269 (print_actions): Don't output the actions as part of the nodes,
19270 since that's the job of the edges.
19271 (print_state): Don't output by hand: fill the node description,
19272 and ask for its output.
19273
19274 2001-11-19 Akim Demaille <akim@epita.fr>
19275
19276 * src/bison.simple (yyparse): When verbosely reporting an error,
19277 no longer put additional quotes around token names.
19278 * tests/calc.at: Adjust.
19279
19280 2001-11-19 Akim Demaille <akim@epita.fr>
19281
19282 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
19283 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
19284 * src/output.c: Adjust.
19285
19286 2001-11-19 Akim Demaille <akim@epita.fr>
19287
19288 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
19289 (rule_t): this.
19290 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
19291
19292 2001-11-19 Akim Demaille <akim@epita.fr>
19293
19294 * src/gram.h (rule_t): New.
19295 (rule_table): New.
19296 (rrhs, rlhs): Remove, part of state_t.
19297 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
19298 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
19299 * src/reader.c, src/reduce.c: Adjust.
19300
19301 2001-11-19 Akim Demaille <akim@epita.fr>
19302
19303 * src/reader.c (symbols_output): New, extracted from...
19304 (packsymbols): Here.
19305 (reader): Call it.
19306
19307 2001-11-19 Akim Demaille <akim@epita.fr>
19308
19309 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
19310 (maxrhs): this new function.
19311
19312 2001-11-19 Akim Demaille <akim@epita.fr>
19313
19314 * src/lalr.c (F): New macro to access the variable F.
19315 Adjust.
19316
19317 2001-11-19 Akim Demaille <akim@epita.fr>
19318
19319 * src/lalr.h (LA): New macro to access the variable LA.
19320 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19321 * src/lalr.c: Adjust.
19322
19323 2001-11-19 Akim Demaille <akim@epita.fr>
19324
19325 * src/lalr.c (initialize_LA): Only initialize LA. Let...
19326 (set_state_table): handle the `lookaheads' members.
19327
19328 2001-11-19 Akim Demaille <akim@epita.fr>
19329
19330 * src/lalr.h (lookaheads): Removed array, whose contents is now
19331 a member of...
19332 (state_t): this structure.
19333 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19334 Adjust.
19335
19336 2001-11-19 Akim Demaille <akim@epita.fr>
19337
19338 * src/lalr.h (consistent): Removed array, whose contents is now
19339 a member of...
19340 (state_t): this structure.
19341 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19342 Adjust.
19343
19344 2001-11-19 Akim Demaille <akim@epita.fr>
19345
19346 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
19347 contents are now members of...
19348 (state_t): this structure.
19349 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19350 Adjust.
19351
19352 2001-11-19 Akim Demaille <akim@epita.fr>
19353
19354 * src/lalr.h (state_t): New.
19355 (state_table): Be a state_t * instead of a core **.
19356 (accessing_symbol): Remove, part of state_t.
19357 * src/lalr.c: Adjust.
19358 (set_accessing_symbol): Merge into...
19359 (set_state_table): this.
19360 * src/print_graph.c, src/conflicts.c: Adjust.
19361
19362 2001-11-14 Akim Demaille <akim@epita.fr>
19363
19364 * tests/calc.at, tests/output.at, tests/regression.at,
19365 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
19366 now the tests are run in private dirs, therefore AC_CLEANUP and
19367 family can be simplified to 0-ary.
19368 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
19369 use abs. path to find config.h.
19370 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
19371 stderr, there can be way too much random noise.
19372 Instead pass -Werror to GCC and rely on the exit status.
19373 Reported by Wolfram Wagner.
19374
19375 2001-11-14 Akim Demaille <akim@epita.fr>
19376
19377 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
19378 defined only if yyoverflow is defined, to avoid `warning: unused
19379 variable `yyvs1''.
19380 Reported by The Test Suite.
19381
19382 2001-11-14 Akim Demaille <akim@epita.fr>
19383
19384 * src/print.c: Include reduce.h.
19385 Reported by Hans Aberg.
19386
19387 2001-11-14 Akim Demaille <akim@epita.fr>
19388
19389 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
19390 Revert a previous patch: these are really const.
19391 * src/conflicts.c (conflict_report): Additional useless pair of
19392 braces to pacify GCC's warnings for `if () if () {} else {}'.
19393 * src/lex.c (parse_percent_token): Replace equal_offset with
19394 arg_offset.
19395 arg is const.
19396 Be sure to strdup `arg' when used, since there is no reason for
19397 token_buffer not to change.
19398
19399 2001-11-14 Akim Demaille <akim@epita.fr>
19400
19401 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
19402 definition.
19403 * src/main.c (main): Use them.
19404 Suggested by Hans Aberg.
19405
19406 2001-11-12 Akim Demaille <akim@epita.fr>
19407
19408 * src/system.h (ngettext): Now that we use ngettext, be sure to
19409 provide a default definition when NLS are not used.
19410
19411 2001-11-12 Akim Demaille <akim@epita.fr>
19412
19413 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
19414 Use @kbd to denote user input.
19415 (Language and Grammar): ANSIfy the example.
19416 Adjust its layout for info/notinfo.
19417 (Location Tracking Calc): Output error messages to stderr.
19418 Output locations in a more GNUtically correct way.
19419 Fix a couple of Englishos.
19420 Adjust @group/@end group pairs.
19421
19422 2001-11-12 Akim Demaille <akim@epita.fr>
19423
19424 %expect was not functioning at all.
19425
19426 * src/conflicts.c (expected_conflicts): Set to -1.
19427 (conflict_report): Use ngettext.
19428 (conflicts_print): Check %expect and make its violation an error.
19429 * doc/bison.texinfo (Expect Decl): Adjust.
19430 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
19431 * tests/regression.at (%expect not enough, %expect right)
19432 (%expect too much): New.
19433
19434 2001-11-12 Akim Demaille <akim@epita.fr>
19435
19436 * tests/regression.at (Conflicts): Rename as...
19437 (Unresolved SR Conflicts): this.
19438 (Solved SR Conflicts): New.
19439
19440 2001-11-12 Akim Demaille <akim@epita.fr>
19441
19442 * src/reduce.c (print_results): Rename as...
19443 (reduce_output): This.
19444 Output to OUT, passed as argument, instead of output_obstack.
19445 (dump_grammar): Likewise.
19446 (reduce_free): New.
19447 Also free V1.
19448 (reduce_grammar): No longer call reduce_output, since...
19449 * src/print.c (print_results): do it.
19450 * src/main.c (main): Call reduce_free;
19451
19452 2001-11-12 Akim Demaille <akim@epita.fr>
19453
19454 * src/conflicts.c (print_reductions): Accept OUT as argument.
19455 Output to it, not to output_obstack.
19456 * src/print.c (print_actions): Adjust.
19457
19458 2001-11-12 Akim Demaille <akim@epita.fr>
19459
19460 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
19461 the result instead of using...
19462 (src_total, rrc_total, src_count, rrc_count): Remove.
19463 (any_conflicts): Remove.
19464 (print_conflicts): Split into...
19465 (conflicts_print, conflicts_output): New.
19466 * src/conflicts.h: Adjust.
19467 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
19468 * src/print.c (print_grammar): Issue `\n' between two rules.
19469 * tests/regression.at (Conflicts): New.
19470 Reported by Tom Lane.
19471
19472 2001-11-12 Akim Demaille <akim@epita.fr>
19473
19474 * tests/regression.at (Invalid input): Remove, duplicate with
19475 ``Invalid input: 1''.
19476
19477 2001-11-12 Akim Demaille <akim@epita.fr>
19478
19479 * tests/torture.at (AT_DATA_STACK_TORTURE)
19480 (Exploding the Stack Size with Alloca)
19481 (Exploding the Stack Size with Malloc): New.
19482
19483 2001-11-12 Akim Demaille <akim@epita.fr>
19484
19485 * src/bison.simple (YYSTACK_REALLOC): New.
19486 (yyparse) [!yyoverflow]: Use it and free the old stack.
19487 Reported by Per Allansson.
19488
19489 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
19490
19491 * src/bison.simple: Define type yystype instead of YYSTYPE, and
19492 define CPP macro, which substitute YYSTYPE by yystype.
19493 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
19494 with yyltype/YYLTYPE. This allows inclusion of the generated
19495 header within the parser if the compiler, such as GGC, accepts
19496 multiple equivalent #defines.
19497 From Akim.
19498
19499 2001-11-05 Akim Demaille <akim@epita.fr>
19500
19501 * src/reader.c (symbols_output): New, extracted from...
19502 (packsymbols): here.
19503 (reader): Adjust.
19504
19505 2001-11-05 Akim Demaille <akim@epita.fr>
19506
19507 * src/lex.c (parse_percent_token): s/quotearg/quote/.
19508
19509 2001-11-05 Akim Demaille <akim@epita.fr>
19510
19511 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
19512 pattern.
19513
19514 2001-11-05 Akim Demaille <akim@epita.fr>
19515
19516 * src/options.h (struct option_table_struct): set_flags is void*.
19517 * src/options.c (longopts): Support `--output' and `%output'.
19518 (usage): Adjust.
19519 * src/lex.h (tok_setopt): Remove, replaced with...
19520 (tok_intopt, tok_stropt): these new guys.
19521 * src/lex.c (getopt.h): Not needed.
19522 (token_buffer, unlexed_token_buffer): Not const.
19523 (percent_table): Promote `-' over `_' in directive names.
19524 Active `%name-prefix', `file-prefix', and `output'.
19525 (parse_percent_token): Accept possible arguments to directives.
19526 Promote `-' over `_' in directive names.
19527
19528 2001-11-04 Akim Demaille <akim@epita.fr>
19529
19530 * doc/bison.texinfo (Decl Summary): Split the list into
19531 `directives for grammars' and `directives for bison'.
19532 Sort'em.
19533 Add description of `%name-prefix', `file-prefix', and `output'.
19534 Promote `-' over `_' in directive names.
19535 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
19536 Simplify the description of `--name-prefix'.
19537 Promote `-' over `_' in directive names.
19538 Promote `--output' over `--output-file'.
19539 Fix the description of `--defines'.
19540 * tests/output.at: Exercise %file-prefix and %output.
19541
19542 2001-11-02 Akim Demaille <akim@epita.fr>
19543
19544 * doc/refcard.tex: Update.
19545
19546 2001-11-02 Akim Demaille <akim@epita.fr>
19547
19548 * src/symtab.h (SUNDEF): New.
19549 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
19550 stand for `uninitialized', instead of 0.
19551 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
19552 * src/lex.c (lex): Adjust.
19553
19554 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
19555 Number it 0.
19556 Let yylex return it instead of a plain 0.
19557 Reported by Dick Streefland.
19558
19559 2001-11-02 Akim Demaille <akim@epita.fr>
19560
19561 * tests/regression.at (Mixing %token styles): New test.
19562
19563 2001-11-02 Akim Demaille <akim@epita.fr>
19564
19565 * src/reader.c (parse_thong_decl): Formatting changes.
19566 (token_translations_init): New, extracted from...
19567 (packsymbols): Here.
19568 Adjust.
19569
19570 2001-11-01 Akim Demaille <akim@epita.fr>
19571
19572 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
19573 Check that `9foo.y' produces correct cpp guards.
19574 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
19575 guards.
19576 Reported by Wwp.
19577
19578 2001-11-01 Akim Demaille <akim@epita.fr>
19579
19580 * tests/regression.at (Invalid input: 2): New.
19581 * src/lex.c (unlexed_token_buffer): New.
19582 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
19583 too.
19584 Reported by Wwp.
19585
19586 2001-11-01 Akim Demaille <akim@epita.fr>
19587
19588 * tests/calc.at: Catch up with 1.30.
19589 * configure.in: Bump to 1.49a.
19590 Adjust to newer Autotest.
19591
19592 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
19593
19594 * src/conflicts.c: Move global variables rrc_total and src_total ...
19595 (print_conflicts): here.
19596 * src/output.c (output): Free global variable user_toknums.
19597 * src/lex.c (token_obstack): Become static.
19598
19599 2001-10-18 Akim Demaille <akim@epita.fr>
19600
19601 * tests/atlocal.in (GCC): Add.
19602 * tests/calc.at: s/m4_match/m4_bmatch/.
19603 s/m4_patsubst/m4_bpatsubst/.
19604 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
19605 * configure.in: AC_SUBST(GCC).
19606
19607 2001-10-14 Marc Autret <autret_m@epita.fr>
19608
19609 * src/options.c (create_long_option_table): Fix.
19610
19611 2001-10-10 Akim Demaille <akim@epita.fr>
19612
19613 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
19614
19615 2001-10-04 Akim Demaille <akim@epita.fr>
19616
19617 * src/reader.c (parse_union_decl): Push the caracters in
19618 union_obstack, not attrs_obstack.
19619
19620 2001-10-04 Akim Demaille <akim@epita.fr>
19621
19622 Merge in the branch 1.29.
19623
19624 * src/reader.c (packsymbols): Use a temporary obstack for
19625 `%%tokendef', since output_stack is already used elsewhere.
19626
19627 2001-10-02 Akim Demaille <akim@epita.fr>
19628
19629 Bump 1.29d.
19630
19631 2001-10-02 Akim Demaille <akim@epita.fr>
19632
19633 Version 1.29c.
19634
19635 2001-10-02 Akim Demaille <akim@epita.fr>
19636
19637 * tests/regression.at (Invalid CPP headers): New.
19638 From Alexander Belopolsky.
19639 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
19640
19641 2001-10-02 Akim Demaille <akim@epita.fr>
19642
19643 * tests/regression.at (Invalid input): New.
19644 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
19645 Reported by Shura.
19646
19647 2001-10-02 Akim Demaille <akim@epita.fr>
19648
19649 * tests/calc.at: Now that --debug works, the tests must be adjusted.
19650
19651 2001-10-02 Akim Demaille <akim@epita.fr>
19652
19653 * src/output.c (output_parser): Assert `skeleton'.
19654 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19655 systems.
19656 From Shura.
19657
19658 2001-10-01 Marc Autret <autret_m@epita.fr>
19659
19660 * src/lex.h: Echo modifications.
19661 * src/lex.c (unlex): Parameter is now token_t.
19662 From Hans Aberg.
19663
19664 2001-10-01 Marc Autret <autret_m@epita.fr>
19665
19666 * src/main.c: Include lex.h.
19667 From Hans Aberg.
19668
19669 2001-09-29 Akim Demaille <akim@epita.fr>
19670
19671 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19672
19673 2001-09-28 Akim Demaille <akim@epita.fr>
19674
19675 * tests/testsuite.at: Update to newer Autotest.
19676 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19677
19678 2001-09-27 Akim Demaille <akim@epita.fr>
19679
19680 Position independent wrapper.
19681
19682 * tests/bison: Remove.
19683 * tests/bison.in: New.
19684 * configure.in: Adjust.
19685
19686 2001-09-27 Paul Eggert <eggert@twinsun.com>
19687
19688 Port quotearg fixes from tar 1.13.24.
19689
19690 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19691 tm to be declared.
19692 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19693 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19694
19695 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19696 * m4/mbrtowc.m4: New file.
19697 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19698 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19699
19700 2001-09-27 Akim Demaille <akim@epita.fr>
19701
19702 Bump to 1.29c.
19703
19704 2001-09-27 Akim Demaille <akim@epita.fr>
19705
19706 Version 1.29b.
19707
19708 2001-09-25 Akim Demaille <akim@epita.fr>
19709
19710 * src/system.h: Include `xalloc.h'.
19711 Remove it from the C files.
19712 * src/files.c (output_files): Free the obstacks.
19713 * src/lex.c (init_lex): Rename as...
19714 (lex_init): this.
19715 (lex_free): New.
19716 * src/main.c (main): Use it.
19717
19718 2001-09-24 Marc Autret <autret_m@epita.fr>
19719
19720 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19721 to output informations in fout (FILE*).
19722 (open_graph, close_graph): Likewise.
19723 (output_graph, output_edge, output_node): Likewise.
19724 * src/vcg.h: Update function prototypes.
19725 * src/print_graph.c (print_graph): Open output graph file.
19726 (print_actions): Adjust.
19727 * src/files.h: Remove extern declaration.
19728 * src/files.c: Remove graph_obstack declaration.
19729 (open_files): Remove graph_obstack initialization.
19730 (output_files): Remove graph_obstack saving.
19731
19732 2001-09-24 Marc Autret <autret_m@epita.fr>
19733
19734 * src/files.c (compute_output_file_names): Fix.
19735
19736 2001-09-24 Marc Autret <autret_m@epita.fr>,
19737 Akim Demaille <akim@epita.fr>
19738
19739 * src/reader.c (reader): Remove call to free_symtab ().
19740 * src/main.c (main): Call it here.
19741 Include symtab.h.
19742 * src/conflicts.c (initialize_conflicts): Rename as...
19743 (solve_conflicts): this.
19744 * src/print.c (print_core, print_actions, print_state)
19745 (print_grammar): Dump to a file instead a `output_obstack'.
19746 (print_results): Dump `output_obstack', and then proceed with the
19747 FILE *.
19748 * src/files.c (compute_output_file_names, close_files): New.
19749 (output_files): Adjust.
19750 * src/main.c (main): Adjust.
19751
19752 2001-09-23 Marc Autret <autret_m@epita.fr>
19753
19754 * src/files.c (compute_header_macro): Computes header macro name
19755 from spec_defines_file when given.
19756
19757 2001-09-23 Marc Autret <autret_m@epita.fr>
19758
19759 * src/files.c (output_files): Add default extensions.
19760
19761 2001-09-22 Akim Demaille <akim@epita.fr>
19762
19763 * src/conflicts.c (finalize_conflicts): Rename as...
19764 (free_conflicts): this.
19765
19766 2001-09-22 Akim Demaille <akim@epita.fr>
19767
19768 * src/gram.c (gram_free): Rename back as...
19769 (dummy): this.
19770 (output_token_translations): Free `token_translations'.
19771 * src/symtab.c (free_symtab): Free the tag field.
19772
19773 2001-09-22 Akim Demaille <akim@epita.fr>
19774
19775 Remove `translations' as it is always set to true.
19776
19777 * src/gram.h: Adjust.
19778 * src/reader.c (packsymbols, parse_token_decl): Adjust
19779 * src/print.c (print_grammar): Adjust.
19780 * src/output.c (output_token_translations): Adjust.
19781 * src/lex.c (lex): Adjust.
19782 * src/gram.c: Be sure the set pointers to NULL.
19783 (dummy): Rename as...
19784 (gram_free): this.
19785
19786 2001-09-22 Akim Demaille <akim@epita.fr>
19787
19788 * configure.in: Invoke AM_LIB_DMALLOC.
19789 * src/system.h: Use dmalloc.
19790 * src/LR0.c: Be sure to have pointers initialized to NULL.
19791 (allocate_itemsets): Allocate kernel_items only if needed.
19792
19793 2001-09-22 Akim Demaille <akim@epita.fr>
19794
19795 * configure.in: Bump to 1.29b.
19796 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19797 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19798 need xmalloc.c in calc.y.
19799 From Pascal Bart.
19800
19801 2001-09-21 Akim Demaille <akim@epita.fr>
19802
19803 Version 1.29a.
19804 * Makefile.maint, config/config.guess, config/config.sub,
19805 * config/missing: Update from masters.
19806 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19807 upon package.m4.
19808 * configure.in (ALL_LINGUAS): Add `tr'.
19809
19810 2001-09-21 Akim Demaille <akim@epita.fr>
19811
19812 * tests/Makefile.am (package.m4): Move to...
19813 ($(srcdir)/$(TESTSUITE)): here.
19814
19815 2001-09-20 Akim Demaille <akim@epita.fr>
19816
19817 * src/complain.c: No longer try to be standalone: use system.h.
19818 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19819 * src/complain.h: Likewise.
19820 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19821 Remove the unused variable `n'.
19822 From Albert Chin-A-Young.
19823
19824 2001-09-18 Marc Autret <autret_m@epita.fr>
19825
19826 * doc/bison.1: Update.
19827 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19828 descriptions.
19829 (Option Cross Key): Update.
19830 Add --graph.
19831
19832 2001-09-18 Marc Autret <autret_m@epita.fr>
19833
19834 * tests/regression.at: New test (comment in %union).
19835
19836 2001-09-18 Marc Autret <autret_m@epita.fr>
19837
19838 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19839 do that.
19840 Reported by Keith Browne.
19841
19842 2001-09-18 Marc Autret <autret_m@epita.fr>
19843
19844 * tests/output.at: Add tests for --defines and --graph.
19845
19846 2001-09-18 Marc Autret <autret_m@epita.fr>
19847
19848 * tests/output.at: Removes tests of %{header,src}_extension features.
19849
19850 2001-09-18 Akim Demaille <akim@epita.fr>
19851
19852 * tests/Makefile.am (package.m4): New.
19853 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19854 (_AT_CHECK_CALC_ERROR): Likewise.
19855 Factor the `, ' part of verbose error messages.
19856
19857 2001-09-18 Marc Autret <autret_m@epita.fr>
19858
19859 * src/getargs.c (longopts): Declare --defines and --graph as options
19860 with optional arguments.
19861 * src/files.h: Add extern declarations.
19862 * src/files.c (spec_graph_file, spec_defines_file): New.
19863 (output_files): Update.
19864 Remove CPP-outed code.
19865
19866 2001-09-18 Marc Autret <autret_m@epita.fr>
19867
19868 Turn off %{source,header}_extension feature.
19869
19870 * src/files.c (compute_exts_from_gf): Update.
19871 (compute_exts_from_src): Update.
19872 (output_files): CPP-out useless code.
19873 * src/files.h: Remove {header,source}_extension extern declarations.
19874 * src/reader.c (parse_dquoted_param): CPP-out.
19875 (parse_header_extension_decl): Remove.
19876 (parse_source_extension_decl): Remove.
19877 (read_declarations): Remove cases tok_{hdrext,srcext}.
19878 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19879 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19880
19881 2001-09-10 Akim Demaille <akim@epita.fr>
19882
19883 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19884 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19885 (AT_CHECK_OUTPUT): this.
19886 Merely check ls' exit status, its output is useless.
19887
19888 2001-09-10 Akim Demaille <akim@epita.fr>
19889
19890 * tests/calc.at: Use m4_match.
19891 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19892
19893 2001-09-10 Marc Autret <autret_m@epita.fr>,
19894 Akim Demaille <akim@epita.fr>
19895
19896 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19897 enum color_e.
19898 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19899 to `normal'.
19900 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19901 * src/lex.h: Adjust prototype.
19902 (token_t): Add `tok_undef'.
19903 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19904 (parse_percent_token): Now returns token_t.
19905 Add default statement in switch.
19906 (lex): Separate `c' as an input variable, from the token_t result
19907 part.
19908 (unlexed): Is a token_t.
19909
19910 2001-09-10 Akim Demaille <akim@epita.fr>
19911
19912 * configure.in: Bump to 1.29a.
19913
19914 2001-09-07 Akim Demaille <akim@epita.fr>
19915
19916 Version 1.29.
19917
19918 2001-08-30 Akim Demaille <akim@epita.fr>
19919
19920 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19921 * m4/atconfig.m4: Remove.
19922 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19923 * tests/bison: New.
19924 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19925 m4_if, m4_patsubst, and m4_regexp.
19926 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19927 `input' file instead of echo.
19928
19929 2001-08-29 Akim Demaille <akim@epita.fr>
19930
19931 Bump to 1.28e.
19932
19933 2001-08-29 Akim Demaille <akim@epita.fr>
19934
19935 Version 1.28d.
19936
19937 2001-08-29 Paul Eggert <eggert@twinsun.com>
19938
19939 * src/bison.simple (yyparse): Don't take the address of an
19940 item before the start of an array, as that doesn't conform to
19941 the C Standard.
19942
19943 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19944
19945 * doc/bison.texinfo (Location Tracking Calc): New node.
19946
19947 2001-08-29 Paul Eggert <eggert@twinsun.com>
19948
19949 * src/output.c (output): Do not define const, as this now
19950 causes more problems than it cures.
19951
19952 2001-08-29 Akim Demaille <akim@epita.fr>
19953
19954 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19955 the nodes.
19956 Be sure to tag the `detailmenu'.
19957
19958 2001-08-29 Akim Demaille <akim@epita.fr>
19959
19960 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19961 download in a tmp dir.
19962
19963 2001-08-28 Marc Autret <autret_m@epita.fr>
19964
19965 * config/depcomp: New file.
19966
19967 2001-08-28 Marc Autret <autret_m@epita.fr>
19968
19969 * doc/bison.1 (mandoc): Adjust.
19970 From Juan Manuel Guerrero.
19971
19972 2001-08-28 Marc Autret <autret_m@epita.fr>
19973
19974 * src/print_graph.c (print_state): Fix.
19975
19976 2001-08-27 Marc Autret <autret_m@epita.fr>
19977
19978 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19979 char * members.
19980 Echo modifications to the functions prototypes.
19981 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19982
19983 2001-08-27 Marc Autret <autret_m@epita.fr>
19984
19985 * src/vcg.c: Include `xalloc.h'.
19986 (add_colorentry): New.
19987 (add_classname): New.
19988 (add_infoname): New.
19989 * src/vcg.h: Add new prototypes.
19990
19991 2001-08-27 Akim Demaille <akim@epita.fr>
19992
19993 * Makefile.maint: Sync. again with CVS Autoconf.
19994
19995 2001-08-27 Akim Demaille <akim@epita.fr>
19996
19997 * Makefile.maint: Formatting changes.
19998 (po-update, cvs-update, update): New targets.
19999 (AMTAR): Remove.
20000
20001 2001-08-27 Akim Demaille <akim@epita.fr>
20002
20003 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
20004 * Makefile.maint: Sync. with CVS Autoconf.
20005
20006 2001-08-27 Marc Autret <autret_m@epita.fr>
20007
20008 * src/vcg.h (struct infoname_s): New.
20009 (struct colorentry_s): New.
20010 (graph_s): New fields {vertical,horizontal}_order in structure.
20011 Add `infoname' field.
20012 Add `colorentry' field;
20013 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
20014 (G_HORIZONTAL_ORDER): New.
20015 (G_INFONAME): New.
20016 (G_COLORENTRY): New.
20017 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
20018 Add output of `infoname'.
20019 Add output of `colorentry'.
20020
20021 2001-08-27 Marc Autret <autret_m@epita.fr>
20022
20023 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
20024 This one shadowed a global parameter.
20025
20026 2001-08-24 Marc Autret <autret_m@epita.fr>
20027
20028 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
20029 instead of `unsigned'.
20030 (print_state): Do not call obstack_object_size () in obstack_grow ()
20031 to avoid macro variables shadowing.
20032
20033 2001-08-23 Marc Autret <autret_m@epita.fr>
20034
20035 * src/lex.c (percent_table): Typo: s/naem/name/.
20036 Add graph option.
20037 Normalize new options declarations.
20038
20039 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
20040
20041 * tests/suite.at: Exercise %header_extension and %source_extension.
20042
20043 2001-08-16 Marc Autret <autret_m@epita.fr>
20044
20045 * src/reader.c (parse_dquoted_param): New.
20046 (parse_header_extension_decl): Use it.
20047 (parse_source_extension_decl): Likewise.
20048
20049 2001-08-16 Marc Autret <autret_m@epita.fr>
20050
20051 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
20052 (get_xxxx_str): Use assert () instead of complain ().
20053 Remove return invokations in default cases.
20054 (get_decision_str): Modify default behaviour. Remove second argument.
20055 Echo modifications on calls.
20056 (output_graph): Fix.
20057
20058 2001-08-16 Marc Autret <autret_m@epita.fr>
20059
20060 * src/getargs.c (usage): Update with ``-g, --graph''.
20061
20062 2001-08-16 Marc Autret <autret_m@epita.fr>
20063
20064 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
20065 (Option Cross Key): Likewise.
20066 * doc/bison.1: Update.
20067
20068 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
20069
20070 * src/output.c (output_master_parser): Don't finish action_obstack.
20071 (output_parser): Don't care about the muscle action, here.
20072 (prepare): Copy the action_obstack in the action muscle.
20073 (output): Free action_obstack.
20074
20075 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
20076
20077 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
20078 will contain `%union' declaration.
20079 (parse_union_decl): Delete #line directive output.
20080 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
20081 informations about %union.
20082 (parse_union_decl): Copy the union_obstack in the muscle stype.
20083 * src/bison.simple: Add new #line directive.
20084 Add typdef %%stype YYSTYPE.
20085
20086 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
20087
20088 * src/bison.simple: Add new `#line' directive.
20089
20090 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
20091
20092 * src/bison.simple: New `#line' directive.
20093 * src/output.c (output_parser): Support new dynamic muscle input_line.
20094
20095 2001-09-22 Marc Autret <autret_m@epita.fr>
20096
20097 * src/output.c (output_master_parser): New.
20098 (output_parser): Be more re-entrant.
20099
20100 2001-09-21 Marc Autret <autret_m@epita.fr>
20101
20102 * src/reader.c (copy_definition, parse_union_decl): Update and use
20103 `linef' muscle.
20104 (copy_action): Likewise.
20105 Use obstack_1grow ().
20106 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
20107
20108 2001-09-21 Marc Autret <autret_m@epita.fr>
20109
20110 * src/options.c (option_table): Adjust.
20111 * src/lex.c (parse_percent_token): Fix.
20112
20113 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
20114
20115 * src/options.c (symtab.h): Include it, need by lex.h.
20116
20117 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
20118
20119 * src/lex.c (parse_percent_token): Change type of variable `tx', which
20120 is now an option_table_struct*.
20121 (option_strcmp): New function option_strcmp.
20122 (parse_percent_token): Call option_strcmp.
20123 * src/getargs.c (xalloc.h, options.h): Include it.
20124 (getargs): Call create_long_option_table.
20125 (getargs): Free longopts at the end of the function.
20126 (shortopts): Move in options.c.
20127 * src/options.c (create_long_option_table): New function. Convert
20128 information from option_table to option structure.
20129 * src/reader.c (options.h): Include it.
20130
20131 * src/Makefile.am: Adjust.
20132 * src/options.c (option_table): Create from longopts and percent_table.
20133 * src/getargs.c (longopts): Delete.
20134 * src/lex.c (struct percent_table_struct): Delete.
20135 (percent_table): Delete.
20136 (options.h): Include it.
20137 * src/options.c: Create.
20138 * src/options.h: Create.
20139 Declare enum opt_access_e.
20140 Define struct option_table_struct.
20141
20142 2001-09-20 Marc Autret <autret_m@epita.fr>
20143
20144 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
20145 sections of Bison.
20146
20147 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
20148
20149 * src/bison.simple: s/%%filename/%%skeleton.
20150 * src/muscle_tab.c (getargs.h): Include it.
20151 (muscle_init): Insert new muscle skeleton.
20152
20153 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
20154
20155 * src/output.c (output_parser): Delete unused variable actions_dumped.
20156
20157 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
20158
20159 * src/output.c (output): Delete call to reader_output_yylsp.
20160 * src/reader.c (reader): Likewise.
20161 * src/reader.h: Delete declaration of reader_output_yylsp.
20162
20163 2001-09-02 Marc Autret <autret_m@epita.fr>
20164
20165 * src/reader.c: Include muscle_tab.h.
20166 (parse_union_decl): Update.
20167 (parse_macro_decl): Rename parse_muscle_decl.
20168 Update to use renamed functions and variable.
20169 (read_declarations, copy_action, read_additionnal_code, : Updated
20170 with correct variables and functions names.
20171 (packsymbols, reader): Likewise.
20172
20173 * src/reader.h (muscle_obstack): Extern declaration update.
20174
20175 * src/output.c: Include muscle_tab.h
20176 In all functions using macro_insert, change by using muscle_insert ().
20177 (macro_obstack): Rename muscle_obstack.
20178 Echo modifications in the whole file.
20179 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
20180 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
20181 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
20182
20183 * src/muscle_tab.h: Update double inclusion macros.
20184 (macro_entry_s): Rename muscle_entry_s.
20185 Update prototypes.
20186
20187 * src/muscle_tab.c: Include muscle_tab.h.
20188 Rename macro_tabble to muscle_table.
20189 (mhash1, mhash2, mcmp): Use muscle_entry.
20190 (macro_init): Rename muscle_init. Update.
20191 (macro_insert): Rename muscle_insert. Update.
20192 (macro_find): Rename muscle_find. Update.
20193
20194 * src/main.c: Include muscle_tab.h.
20195 (main): Call muscle_init ().
20196 * src/Makefile.am (bison_SOURCES): Echo modifications.
20197
20198 2001-09-02 Marc Autret <autret_m@epita.fr>
20199
20200 Now the files macro_tab.[ch] are named muscle_tab.[ch].
20201
20202 * src/muscle_tab.c, src/muscle_tab.h: Add files.
20203
20204 2001-09-02 Marc Autret <autret_m@epita.fr>
20205
20206 * src/macrotab.c, src/macrotab.h: Remove.
20207
20208 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
20209
20210 * src/reader.c (copy_guard): Use muscle to specify the `#line'
20211 filename.
20212
20213 2001-09-01 Marc Autret <autret_m@epita.fr>
20214
20215 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
20216 to an explicit value to activate the feature. We do it here.
20217
20218 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20219
20220 * src/output.c (prepare): Delete the `filename' muscule insertion.
20221 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
20222 (parse_union_decl): Likewise.
20223 * src/macrotab.c (macro_init): Initialize filename by infile.
20224
20225 2001-08-31 Marc Autret <autret_m@epita.fr>
20226
20227 * src/bison.simple (YYLSP_NEEDED): New definition.
20228 * src/output.c (prepare): Add macro insertion of `locations_flag'
20229
20230 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20231
20232 * src/output.c (prepare): Delete insertion of previous muscles,
20233 and insert the `prefix' muscles.
20234 * src/macrotab.c (macro_init): Likewise.
20235 (macro_init): Initialization prefix directive by `yy'.
20236 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
20237 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
20238 yylval, yydebug, yyerror, yynerrs and yyparse.
20239 New directive `#define' to substitute yydebug, ... with option
20240 name_prefix.
20241
20242 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20243
20244 * src/main.c (main): Standardize.
20245 * src/output.c (output_table_data, output_parser): Likewise.
20246 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
20247
20248 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
20249
20250 * src/reader.c (read_additionnal_code): Rename %%user_code to
20251 %%epilogue.
20252 * src/output.c (output): Rename %%declarations to %%prologue.
20253 * src/bison.simple: Echo modifications.
20254
20255 2001-08-31 Marc Autret <autret_m@epita.fr>
20256
20257 * src/reader.c (readgram): CleanUp.
20258 (output_token_defines): Likewise.
20259 (packsymbols): Likewise.
20260 (reader): Likewise.
20261 * src/output.c (output): CPP-out useless code.
20262
20263 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20264
20265 * src/reader.c (reader): Delete obsolete call to function
20266 output_trailers and output_headers.
20267 * src/output.h: Remove obsolete functions prototypes of output_headers
20268 and output_trailers.
20269
20270 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
20271
20272 * src/main.c: Include macrotab.h.
20273 * src/macrotab.h (macro_entry_s): Constify fields.
20274 Adjust functions prototypes.
20275 * src/macrotab.c (macro_insert): Constify key and value.
20276 (macro_find): Constify key.
20277 (macro_insert): Include 'xalloc.h'
20278 (macro_insert): Use XMALLOC.
20279 (macro_find): Constify return value.
20280 * src/output.c (output_table_data): Rename table to table_data.
20281 (output_parser): Constify macro_key, macro_value.
20282
20283 2001-08-30 Marc Autret <autret_m@epita.fr>
20284
20285 * src/reader.c (parse_skel_decl): New.
20286 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
20287 * src/lex.h (token_t): New token `tok_skel'.
20288 * src/lex.c (percent_table): Add skeleton option entry.
20289 Standardize.
20290
20291 2001-08-29 Marc Autret <autret_m@epita.fr>
20292
20293 * src/bison.simple: Add %%user_code directive at the end.
20294 * src/reader.c (read_additionnal_code): New.
20295 (reader): Use it.
20296 * src/output.c (output_program): Remove.
20297 (output): Update.
20298
20299 2001-08-28 Marc Autret <autret_m@epita.fr>
20300
20301 * src/output.c (output_actions): Clean up.
20302 (output_gram): CPP-out useless code.
20303 * src/reader.c (reader): Clean up, CPP-out useless code.
20304
20305 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
20306
20307 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
20308 directive.
20309 * src/bison.simple: Add `%%definitions'.
20310
20311 2001-08-28 Marc Autret <autret_m@epita.fr>
20312
20313 * config/depcomp: New file.
20314
20315 2001-08-27 Paul Eggert <eggert@twinsun.com>
20316
20317 * src/bison.simple (yyparse): Don't take the address of an
20318 item before the start of an array, as that doesn't conform to
20319 the C Standard.
20320
20321 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
20322
20323 * src/output.c (output): Remove the initialization of the macro
20324 obstack. It was done too late here.
20325
20326 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
20327 completely wrong.
20328 (reader): Initialize the macro obstack here, since we need it to grow
20329 '%define' directives.
20330
20331 * src/reader.h: Declare the macro obstack as extern.
20332
20333 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
20334
20335 * src/output.c (output_parser): Fix. Store single '%' characters in
20336 the output obstack instead of throwing them away.
20337
20338 2001-08-27 Akim Demaille <akim@epita.fr>
20339
20340 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
20341
20342 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20343
20344 * lib/Makefile.am: Adjust.
20345
20346 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20347
20348 * src/bison.simple: Update and add '%%' directives.
20349
20350 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20351
20352 * src/reader.c (reader): Remove calls to 'output_headers' and
20353 'output_trailers'. Remove some C output.
20354 (readgram): Disable a piece of code that was writing a default
20355 definition for 'YYSTYPE'.
20356 (reader_output_yylsp): Remove.
20357 (packsymbols): Output token defintions to a macro.
20358 (copy_definition): Disable C output.
20359
20360 * src/reader.c (parse_macro_decl): New function used to parse macro
20361 declarations.
20362 (copy_string2): Put the body of copy_string into this new function.
20363 Add a parameter to let the caller choose whether he wants to copy the
20364 string delimiters or not.
20365 (copy_string): Be a simple call to copy_string2 with the last argument
20366 bound to true.
20367 (read_declarations): Add case for macro definition.
20368 (copy_identifier): New.
20369 (parse_macro_decl): Read macro identifiers using copy_identifier
20370 rather than lex.
20371
20372 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20373
20374 * src/output.c (prepare): Add prefixed names.
20375 (output_parser): Output semantic actions.
20376 (output_parser): Fix bug on '%%line' directives.
20377
20378 * src/output.c (output_headers): Remove. The C code printed by this
20379 function should now be in the skeletons.
20380 (output_trailers): Remove.
20381 (output): Disable call to 'reader_output_yylsp'.
20382 (output_rule_data): Do not output tables to the table obstack.
20383
20384 * src/output.c: Remove some C dedicated output.
20385 Improve the use of macro and output obstacks.
20386 (output_defines): Remove.
20387
20388 * src/output.c (output_token_translations): Associate 'translate'
20389 table with a macro. No output to the table obstack.
20390 (output_gram): Same for 'rhs' and 'prhs'.
20391 (output_stos): Same for 'stos'.
20392 (output_rule_data): Same for 'r1' and 'r2'.
20393 (token_actions): Same for 'defact'.
20394 (goto_actions): Same for 'defgoto'.
20395 (output_base): Same for 'pact' and 'pgoto'.
20396 (output_table): Same for 'table'.
20397 (output_check): Same for 'check'.
20398
20399 * src/output.c (output_table_data): New function.
20400 (output_short_table): Remove.
20401 (output_short_or_char_table): Remove.
20402
20403 * src/output.c (output_parser): Replace most of the skeleton copy code
20404 with something new. Skeletons are now processed character by character
20405 rather than line by line, and Bison looks for '%%' macros. This is the
20406 first step in making Bison's output process (a lot) more flexible.
20407 (output_parser): Use the macro table.
20408
20409 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20410
20411 * src/main.c (main): Initialize the macro table.
20412
20413 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20414
20415 * src/lex.c (percent_table): Add tok_define.
20416 * src/lex.h: Add tok_define.
20417
20418 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20419
20420 * src/macrotab.c: New file.
20421 * src/macrotab.h: New file.
20422 * src/Makefile.am: Update.
20423
20424 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20425
20426 * lib/hash.c: New file.
20427 * lib/hash.h: New file.
20428 * lib/Makefile.am: Update.
20429
20430 2001-08-15 Akim Demaille <akim@epita.fr>
20431
20432 Version 1.28c.
20433
20434 2001-08-15 Marc Autret <autret_m@epita.fr>
20435
20436 * src/reader.c (readgram): Indent output macro YYSTYPE.
20437 (packsymbols): Likewise.
20438 (output_token_defines): Likewise.
20439 * src/files.c: Standardize.
20440 (compute_header_macro): New.
20441 (defines_obstack_save): New. Use compute_header_macro.
20442 (output_files): Update. Use defines_obstack_save.
20443
20444 2001-08-15 Akim Demaille <akim@epita.fr>
20445
20446 * doc/bison.texinfo (Table of Symbols): Document
20447 YYSTACK_USE_ALLOCA.
20448
20449 2001-08-15 Akim Demaille <akim@epita.fr>
20450
20451 * missing: Update from CVS Automake.
20452 * config/config.guess, config/config.sub, config/texinfo.tex:
20453 Update from gnu.org.
20454
20455 2001-08-15 Akim Demaille <akim@epita.fr>
20456
20457 * Makefile.maint: Sync with CVS Autoconf.
20458
20459 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
20460
20461 * doc/bison.texinfo: Include GNU Free Documentation License from
20462 `fdl.texi'.
20463 * doc/fdl.texi: Add to package.
20464
20465 2001-08-14 Marc Autret <autret_m@epita.fr>
20466
20467 Turn on %{source,header}_extension features.
20468
20469 * src/lex.c (percent_table): Un-CPP out header_extension and
20470 source_extension.
20471 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
20472 (compute_exts_from_src): Remove conditions. It restores priorities
20473 between options.
20474
20475 2001-08-14 Marc Autret <autret_m@epita.fr>
20476
20477 * src/files.c (compute_base_names): Add extensions computing when
20478 `--file-prefix' used.
20479 Standardize function calls.
20480
20481 2001-08-13 Marc Autret <autret_m@epita.fr>
20482
20483 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
20484 defining it (defined but null disables alloca).
20485
20486 2001-08-13 Marc Autret <autret_m@epita.fr>
20487
20488 * src/bison.simple (_yy_memcpy): CPP reformat.
20489
20490 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
20491
20492 * tests/atconfig.in (CPPFLAGS): Fix.
20493
20494 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
20495
20496 * doc/bison.texinfo: Include GNU General Public License from
20497 `gpl.texi'.
20498 * doc/gpl.texi: Add to package.
20499
20500 2001-08-10 Marc Autret <autret_m@epita.fr>
20501
20502 * src/print_graph.h: Fix.
20503 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
20504
20505 2001-08-10 Akim Demaille <akim@epita.fr>
20506
20507 * src/system.h: Provide default declarations for stpcpy, strndup,
20508 and strnlen.
20509
20510 2001-08-10 Robert Anisko <anisko_r@epita.fr>
20511
20512 * doc/bison.texinfo (Locations): Update @$ stuff.
20513
20514 2001-08-09 Robert Anisko <anisko_r@epita.fr>
20515
20516 * src/bison.simple (YYLLOC_DEFAULT): Update.
20517 (yyparse): Adjust.
20518
20519 2001-08-08 Marc Autret <autret_m@epita.fr>
20520
20521 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
20522 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
20523 Reported by Fabrice Bauzac.
20524
20525 2001-08-08 Marc Autret <autret_m@epita.fr>
20526
20527 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
20528 * src/vcg.c (output_node): Fix.
20529 * src/vcg.h: Cleanup.
20530 * src/print_graph.c: Add comments.
20531 (node_output_size): New global variable. Simplify the formatting of
20532 the VCG graph output.
20533 (print_actions): Unused code is now used. It notifies the final state
20534 and no action states in the VCG graph. It also give the reduce actions.
20535 The `shift and goto' edges are red and the `go to state' edges are
20536 blue.
20537 Get the current node name and node_obstack by argument.
20538 (node_obstack): New variable.
20539 (print_state): Manage node_obstack.
20540 (print_core): Use node_obstack given by argument.
20541 A node is not only computed here but in print_actions also.
20542 (print_graph): CPP out useless code instead of commenting it.
20543
20544 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
20545
20546 * tests/atconfig.in (CPPFLAGS): Fix.
20547
20548 2001-08-07 Akim Demaille <akim@epita.fr>
20549
20550 * src/print_graph.c (quote): New.
20551 (print_core): Use it.
20552
20553 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
20554
20555 * src/vcg.c (complain.h): Include it.
20556 Unepitaize `return' invocations.
20557 [NDEBUG] (main): Remove.
20558 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
20559 * src/files.c (open_files): Initialize graph_obstack.
20560 * src/print_graph.c (print_actions): CPP out useless code.
20561 (print_core): Don't output the last `\n' in labels.
20562 Use `quote'.
20563 * src/files.c (output_files): Output the VCG file.
20564 * src/main.c (main): Invoke print_graph ();
20565
20566 2001-08-06 Marc Autret <autret_m@epita.fr>
20567
20568 Automaton VCG graph output.
20569 Using option ``-g'' or long option ``--graph'', you can generate
20570 a gram_filename.vcg file containing a VCG description of the LALR (1)
20571 automaton of your grammar.
20572
20573 * src/main.c: Call to print_graph() function.
20574 * src/getargs.h: Update.
20575 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
20576 (graph_flag): New flag.
20577 (longopts): Update.
20578 (getargs): Add case `g'.
20579 * src/files.c (graph_obstack): New obstack struct.
20580 (open_files): Initialize new obstack.
20581 (output_files): Saves graph_obstack if required.
20582 * src/files.h (graph_obstack): New extern declaration.
20583 * src/Makefile.am: Add new source files.
20584
20585 2001-08-06 Marc Autret <autret_m@epita.fr>
20586
20587 * src/print_graph.c, src/print_graph.h (graph): New.
20588 * src/vcg.h: New file.
20589 * src/vcg.c: New file, VCG graph handling.
20590
20591 2001-08-06 Marc Autret <autret_m@epita.fr>
20592
20593 Add of %source_extension and %header_extension which specify
20594 the source or/and the header output file extension.
20595
20596 * src/files.c (compute_base_names): Remove initialisation of
20597 src_extension and header_extension.
20598 (compute_exts_from_gf): Update.
20599 (compute_exts_from_src): Update.
20600 (output_files): Update.
20601 * src/reader.c (parse_header_extension_decl): New.
20602 (parse_source_extension_decl): New.
20603 (read_declarations): New case statements for the new tokens.
20604 * src/lex.c (percent_table): Add entries for %source_extension
20605 and %header_extension.
20606 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
20607
20608 2001-08-06 Marc Autret <autret_m@epita.fr>
20609
20610 * configure.in: Bump to 1.28c.
20611 * doc/bison.texinfo: Texinfo thingies.
20612
20613 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
20614
20615 * tests/atconfig.in (CPPFLAGS): Add.
20616 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
20617
20618 2001-08-03 Akim Demaille <akim@epita.fr>
20619
20620 Version 1.28b.
20621
20622 2001-08-03 Akim Demaille <akim@epita.fr>
20623
20624 * tests/Makefile.am (check-local): Ship testsuite.
20625 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
20626 Include `string.h'.
20627
20628 2001-08-03 Akim Demaille <akim@epita.fr>
20629
20630 * configure.in: Try using -Wformat when compiling.
20631
20632 2001-08-03 Akim Demaille <akim@epita.fr>
20633
20634 * configure.in: Bump to 1.28b.
20635
20636 2001-08-03 Akim Demaille <akim@epita.fr>
20637
20638 * src/complain.c: Adjust strerror_r portability issues.
20639
20640 2001-08-03 Akim Demaille <akim@epita.fr>
20641
20642 Version 1.28a.
20643
20644 2001-08-03 Akim Demaille <akim@epita.fr>
20645
20646 * src/getargs.c, src/getarg.h (skeleton)): Constify.
20647 * src/lex.c (literalchar): Avoid name clashes on `buf'.
20648 * src/getargs.c: Include complain.h.
20649 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
20650 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
20651
20652 2001-08-03 Akim Demaille <akim@epita.fr>
20653
20654 * src/reader.c (readgram): Display hidden chars in error messages.
20655
20656 2001-08-03 Akim Demaille <akim@epita.fr>
20657
20658 Update to gettext 0.10.39.
20659
20660 2001-08-03 Akim Demaille <akim@epita.fr>
20661
20662 * lib/strspn.c: New.
20663
20664 2001-08-01 Marc Autret <autret_m@epita.fr>
20665
20666 * doc/bison.texinfo: Update.
20667 * doc/bison.1 (mandoc): Update.
20668 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20669 * src/files.c: Support output files extensions computing.
20670 (src_extension): New static variable.
20671 (header_extension): New static variable.
20672 (tr): New function.
20673 (get_extension_index): New function, gets the index of an extension
20674 filename in a string.
20675 (compute_exts_from_gf): New function, computes extensions from the
20676 grammar file extension.
20677 (compute_exts_from_src): New functions, computes extensions from the
20678 C source file extension, file given by ``-o'' option.
20679 (compute_base_names): Update.
20680 (output_files): Update.
20681
20682 2001-08-01 Robert Anisko <anisko_r@epita.fr>
20683
20684 * doc/bison.texi: Document @$.
20685 (Locations): New section.
20686
20687 2001-07-18 Akim Demaille <akim@epita.fr>
20688
20689 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20690 * config/prev-version.txt, config/move-if-change: New.
20691 * Makefile.am: Adjust.
20692
20693 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
20694
20695 * src/bison.simple (yyparse): Suppress warning `comparaison
20696 between signed and unsigned'.
20697
20698 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
20699
20700 * src/getargs.h (raw_flag): Remove.
20701 * src/getargs.c: Die on `-r'/`--raw'.
20702 * src/lex.c (parse_percent_token): Die on `%raw'.
20703 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20704 * tests/calc.at: Suppress test with option `--raw'.
20705
20706 2001-07-14 Akim Demaille <akim@epita.fr>
20707
20708 * config/: New.
20709 * configure.in: Require Autoconf 2.50.
20710 Update to gettext 0.10.38.
20711
20712 2001-03-16 Akim Demaille <akim@epita.fr>
20713
20714 * doc/bison.texinfo: ANSIfy the examples.
20715
20716 2001-03-16 Akim Demaille <akim@epita.fr>
20717
20718 * getargs.c (skeleton): New variable.
20719 (longopts): --skeleton is a new option.
20720 (shortopts, getargs): -S is a new option.
20721 * getargs.h: Declare skeleton.
20722 * output.c (output_parser): Use it.
20723
20724 2001-03-16 Akim Demaille <akim@epita.fr>
20725
20726 * m4/strerror_r.m4: New.
20727 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20728 * lib/error.h, lib/error.c: Update.
20729
20730 2001-03-16 Akim Demaille <akim@epita.fr>
20731
20732 * src/getargs.c (longopts): Clean up.
20733
20734 2001-02-21 Akim Demaille <akim@epita.fr>
20735
20736 * src/reader.c (gensym): `gensym_count' is your own.
20737 Use a static buf to create the symbol name, as token_buffer is no
20738 longer a buffer.
20739
20740 2001-02-08 Akim Demaille <akim@epita.fr>
20741
20742 * src/conflicts.c (conflict_report): Be sure not to append to res
20743 between two calls, which could happen if both first sprintf were
20744 skipped, but not the first cp += strlen.
20745
20746 2001-02-08 Akim Demaille <akim@epita.fr>
20747
20748 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20749 New, from fileutils 4.0.37.
20750 * configure.in: Require Autoconf 2.49c. I took some time before
20751 making this decision. This is the only way out for portability
20752 issues in Bison, it would mean way too much duplicate effort to
20753 import in Bison features implemented in 2.49c since 2.13.
20754 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20755
20756 2001-02-02 Akim Demaille <akim@epita.fr>
20757
20758 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
20759 * lib/xalloc.h, lib/xmalloc.c: Update.
20760
20761 2001-01-19 Akim Demaille <akim@epita.fr>
20762
20763 Get rid of the ad hoc handling of token_buffer in the scanner: use
20764 the obstacks.
20765
20766 * src/lex.c (token_obstack): New.
20767 (init_lex): Initialize it. No longer call...
20768 (grow_token_buffer): this. Remove it.
20769 Adjust all the places which used it to use the obstack.
20770
20771 2001-01-19 Akim Demaille <akim@epita.fr>
20772
20773 * src/lex.h: Rename all the tokens:
20774 s/\bENDFILE\b/tok_eof/g;
20775 s/\bIDENTIFIER\b/tok_identifier/g;
20776 etc.
20777 Let them be enums, not #define, to ease debugging.
20778 Adjust all the code.
20779
20780 2001-01-18 Akim Demaille <akim@epita.fr>
20781
20782 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20783 * src/lex.c (maxtoken, grow_token_buffer): Static.
20784
20785 2001-01-18 Akim Demaille <akim@epita.fr>
20786
20787 Since we now use obstacks, more % directives can be enabled.
20788
20789 * src/lex.c (percent_table): Also accept `%yacc',
20790 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20791 `%debug'.
20792 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20793 instead of returning a token.
20794 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20795 * src/reader.c (read_declarations): Adjust.
20796 * src/files.c (open_files): Don't call `compute_base_names', don't
20797 compute `attrsfile' since they depend upon data which might be
20798 *in* the input file now.
20799 (output_files): Do it here.
20800 * src/output.c (output_headers): Document the fact that this patch
20801 introduces a guaranteed SEGV for semantic parsers.
20802 * doc/bison.texinfo: Document them.
20803 * tests/suite.at: Exercise these %options.
20804
20805 2000-12-20 Akim Demaille <akim@epita.fr>
20806
20807 Also handle the output file (--verbose) with obstacks.
20808
20809 * files.c (foutput): Remove.
20810 (output_obstack): New.
20811 Adjust all dependencies.
20812 * src/conflicts.c: Return a string.
20813 * src/system.h (obstack_grow_string): Rename as...
20814 (obstack_sgrow): this. Be ready to work with non literals.
20815 (obstack_fgrow4): New.
20816
20817 2000-12-20 Akim Demaille <akim@epita.fr>
20818
20819 * src/files.c (open_files): Fix the computation of short_base_name
20820 in the case of `-o foo.tab.c'.
20821
20822 2000-12-20 Akim Demaille <akim@epita.fr>
20823
20824 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20825 (copy_dollar): Now that everything uses obstacks, get rid of the
20826 FILE * parameters.
20827
20828 2000-12-20 Akim Demaille <akim@epita.fr>
20829
20830 * src/files.c (open_files): Actually the `.output' file is based
20831 on the short_base_name, not base_name.
20832 * tests/suite.at (Checking output file names): Adjust.
20833
20834 2000-12-20 Akim Demaille <akim@epita.fr>
20835
20836 * src/bison.s1: Remove, we now use directly...
20837 * src/bison.simple: this.
20838 * src/Makefile.am: Use pkgdata instead of data.
20839
20840 2000-12-20 Akim Demaille <akim@epita.fr>
20841
20842 * src/files.c (guard_obstack): New.
20843 (open_files): Initialize it.
20844 (output_files): Dump it...
20845 * src/files.h: Export it.
20846 * src/reader.c (copy_guard): Use it.
20847
20848 2000-12-19 Akim Demaille <akim@epita.fr>
20849
20850 * src/files.c (outfile, defsfile, actfile): Removed as global
20851 vars.
20852 (open_files): Don't compute them.
20853 (output_files): Adjust.
20854 (base_name, short_base_name): Be global.
20855 Adjust dependencies.
20856
20857 2000-12-19 Akim Demaille <akim@epita.fr>
20858
20859 * src/files.c (strsuffix): New.
20860 (stringappend): Be just like strcat but allocate.
20861 (base_names): Eve out from open_files.
20862 Try to simplify the rather hairy computation of base_name and
20863 short_base_name.
20864 (open_files): Use it.
20865 * tests/suite.at (Checking output file names): New test.
20866
20867 2000-12-19 Akim Demaille <akim@epita.fr>
20868
20869 * src/system.h (obstack_grow_literal_string): Rename as...
20870 (obstack_grow_string): this.
20871 * src/output.c (output_parser): Recognize `%% actions' instead of
20872 `$'.
20873 * src/bison.s1: s/$/%% actions/.
20874 * src/bison.hairy: Likewise.
20875
20876 2000-12-19 Akim Demaille <akim@epita.fr>
20877
20878 * src/output.c (output_parser): Compute the `#line' lines when
20879 there are.
20880 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20881 Suggested by Hans Aberg.
20882
20883 2000-12-19 Akim Demaille <akim@epita.fr>
20884
20885 Let the handling of the skeleton files be local to the procedures
20886 that use it.
20887
20888 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20889 longer static.
20890 (fparser, open_extra_files): Remove.
20891 (open_files, output_files): Don't take care of fparser.
20892 * src/files.h: Adjust.
20893 * src/output.c (output_parser): Open and close the file to the
20894 skeleton.
20895 * src/reader.c (read_declarations): When %semantic_parser, open
20896 fguard.
20897
20898 2000-12-19 Akim Demaille <akim@epita.fr>
20899
20900 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20901 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20902
20903 2000-12-19 Akim Demaille <akim@epita.fr>
20904
20905 * src/files.c (open_files): Yipee! We no longer need all the code
20906 looking for `/tmp' since we have no tmp file.
20907
20908 2000-12-19 Akim Demaille <akim@epita.fr>
20909
20910 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20911 New macros.
20912 * src/files.c (open_files): Less dependency on MSDOS etc.
20913
20914 2000-12-14 Akim Demaille <akim@epita.fr>
20915
20916 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20917 Provide a default definition.
20918 Use it when executing the default @ action.
20919 * src/reader.c (reader_output_yylsp): No longer include
20920 `timestamp' and `text' in the default YYLTYPE.
20921
20922 2000-12-12 Akim Demaille <akim@epita.fr>
20923
20924 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20925 (copy_guard): Quote the file names.
20926 Reported by Laurent Mascherpa.
20927
20928 2000-12-12 Akim Demaille <akim@epita.fr>
20929
20930 * src/output.c (output_headers, output_program, output): Be sure
20931 to escape special characters when outputting filenames.
20932 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20933 (output_headers): Don't depend on them, Use ACTSTR.
20934
20935 2000-11-17 Akim Demaille <akim@epita.fr>
20936
20937 * lib/obstack.h: Formatting changes.
20938 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20939 prevents type checking.
20940 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20941 cast the value to (void *): assigning a `foo *' to a `void *'
20942 variable is valid.
20943 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20944 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20945 append characters.
20946
20947 2000-11-17 Akim Demaille <akim@epita.fr>
20948
20949 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20950 as...
20951 (suite.m4, regression.m4, calc.m4): these.
20952 * tests/atgeneral.m4: Update from CVS Autoconf.
20953
20954 2000-11-17 Akim Demaille <akim@epita.fr>
20955
20956 * tests/regression.m4 (%union and --defines): New test,
20957 demonstrating a current bug in the obstack implementation.
20958
20959 2000-11-17 Akim Demaille <akim@epita.fr>
20960
20961 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20962 macros.
20963 Use them to declare the variables which are global or local to
20964 `yyparse'.
20965
20966 2000-11-17 Akim Demaille <akim@epita.fr>
20967
20968 * acconfig.h: Remove, no longer used.
20969
20970 2000-11-07 Akim Demaille <akim@epita.fr>
20971
20972 * src: s/Copyright (C)/Copyright/g.
20973
20974 2000-11-07 Akim Demaille <akim@epita.fr>
20975
20976 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20977 defining.
20978 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20979
20980 2000-11-07 Akim Demaille <akim@epita.fr>
20981
20982 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20983 Merge in a single CPP if/else.
20984
20985 2000-11-07 Akim Demaille <akim@epita.fr>
20986
20987 * src/output.c (output): Remove useless variables.
20988 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20989 argument `data' for consistency with the prototypes.
20990 Qualify it `const'.
20991 (obstack_copy, obstack_copy0): Rename the second argument as
20992 `address' for consistency. Qualify it `const'.
20993 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20994 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20995 `const' their input argument (`data' or `address').
20996 Adjust the corresponding macros to include `const' in casts.
20997
20998 2000-11-03 Akim Demaille <akim@epita.fr>
20999
21000 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
21001 s/PFILE1/BISON_HAIRY/.
21002 Adjust dependencies.
21003
21004 2000-11-03 Akim Demaille <akim@epita.fr>
21005
21006 For some reason, this was not applied.
21007
21008 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
21009 `unlink': it's no longer used.
21010
21011 2000-11-03 Akim Demaille <akim@epita.fr>
21012
21013 * src/files.c (skeleton_find): New function, eved out of...
21014 (open_files, open_extra_files): here.
21015
21016 2000-11-03 Akim Demaille <akim@epita.fr>
21017
21018 Don't use `atexit'.
21019
21020 * src/files.c (obstack_save): New function.
21021 (done): Rename as...
21022 (output_files): this.
21023 Use `obstack_save'.
21024 * src/main.c (main): Don't use `atexit' to register `done', since
21025 it no longer has to remove tmp files, just call `output_files'
21026 when there are no errors.
21027
21028 2000-11-02 Akim Demaille <akim@epita.fr>
21029
21030 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
21031 `unlink': it's no longer used.
21032 * src/files.h: Formatting changes.
21033
21034 2000-11-02 Akim Demaille <akim@epita.fr>
21035
21036 Remove the last uses of mktemp and unlink/delete.
21037
21038 * src/files.c (fdefines, ftable): Removed.
21039 (defines_ostack, table_obstack): New.
21040 Adjust dependencies of the former into uses of the latter.
21041 * src/output.c (output_short_or_char_table, output_short_table):
21042 Convert to using obstacks.
21043 * src/reader.c (copy_comment2): Accept one FILE * and two
21044 obstacks.
21045 (output_token_defines, reader_output_yylsp): Use obstacks.
21046 * src/system.h (obstack_fgrow3): New.
21047 * po/POTFILES.in: Adjust.
21048
21049 2000-11-01 Akim Demaille <akim@epita.fr>
21050
21051 Change each use of `fattrs' into a use of `attrs_obstack'.
21052
21053 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
21054 * src/files.c (fattrs): Remove.
21055 (attrs_obstack): New.
21056 Adjust all dependencies.
21057 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
21058
21059 2000-11-01 Akim Demaille <akim@epita.fr>
21060
21061 Introduce obstacks.
21062 Change each use of `faction' into a use of `action_obstack'.
21063
21064 * lib/obstack.h, lib/obstack.c: New files.
21065 * src/files.c (faction): Remove.
21066 (action_obstack): New.
21067 Adjust all dependencies.
21068
21069 2000-10-20 Akim Demaille <akim@epita.fr>
21070
21071 * lib/quote.h (PARAMS): New macro. Use it.
21072
21073 2000-10-16 Akim Demaille <akim@epita.fr>
21074
21075 * src/output.c (output_short_or_char_table): New function.
21076 (output_short_table, output_token_translations): Use it.
21077 (goto_actions): Use output_short_table.
21078
21079 2000-10-16 Akim Demaille <akim@epita.fr>
21080
21081 * src/symtab.c (bucket_new): New function.
21082 (getsym): Use it.
21083
21084 * src/output.c (output_short_table): New argument to display the
21085 comment associated with the table.
21086 Adjust dependencies.
21087 (output_gram): Use it.
21088 (output_rule_data): Nicer output layout for YYTNAME.
21089
21090 2000-10-16 Akim Demaille <akim@epita.fr>
21091
21092 * src/lex.c (read_typename): New function.
21093 (lex): Use it.
21094 * src/reader.c (copy_dollar): Likewise.
21095
21096 2000-10-16 Akim Demaille <akim@epita.fr>
21097
21098 * src/reader.c (copy_comment2): Expect the input stream to be on
21099 the `/' which is suspected to open a comment, instead of being
21100 called after `//' or `/*' was read.
21101 (copy_comment, copy_definition, parse_union_decl, copy_action)
21102 (copy_guard): Adjust.
21103
21104 2000-10-16 Akim Demaille <akim@epita.fr>
21105
21106 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
21107 `read_signed_integer'.
21108
21109 2000-10-16 Akim Demaille <akim@epita.fr>
21110
21111 * src/reader.c (copy_dollar): New function.
21112 (copy_guard, copy_action): Use it.
21113
21114 2000-10-16 Akim Demaille <akim@epita.fr>
21115
21116 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
21117 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
21118 New files, from Fileutils 4.0.27.
21119 * src/main.c (printable_version): Remove.
21120 * src/lex.c, src/reader.c: Use `quote'.
21121
21122 2000-10-04 Akim Demaille <akim@epita.fr>
21123
21124 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
21125
21126 2000-10-04 Akim Demaille <akim@epita.fr>
21127
21128 * doc/bison.texinfo: Various typos spotted by Neil Booth.
21129
21130 2000-10-04 Akim Demaille <akim@epita.fr>
21131
21132 When a literal string is used to define two different tokens,
21133 `bison -v' segfaults.
21134 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
21135
21136 * tests/regression.m4: New file.
21137 Include the core of the sample provided by Piotr Gackiewicz.
21138 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
21139 properly.
21140
21141 2000-10-04 Akim Demaille <akim@epita.fr>
21142
21143 * src/reader.c (parse_expect_decl): Keep `count' within the size
21144 of `buffer'.
21145 From Neil Booth.
21146
21147 2000-10-02 Paul Eggert <eggert@twinsun.com>
21148
21149 * bison.s1 (yyparse): Assign the default value
21150 unconditionally, to avoid a GCC warning and make the parser a
21151 tad smaller.
21152
21153 2000-10-02 Akim Demaille <akim@epita.fr>
21154
21155 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
21156 options.
21157
21158 2000-10-02 Akim Demaille <akim@epita.fr>
21159
21160 * src/derives.c, src/print.c, src/reduce.c: To ease the
21161 translation, move some `\n' out of the translated strings.
21162
21163 2000-10-02 Akim Demaille <akim@epita.fr>
21164
21165 The location tracking mechanism is precious for parse error
21166 messages. Nevertheless, it is enabled only when `@n' is used in
21167 the grammar, which is a different issue (you can use it in error
21168 message, but not in the grammar per se). Therefore, there should
21169 be another means to enable it.
21170
21171 * src/getargs.c (getargs): Support `--locations'.
21172 (usage): Report it.
21173 * src/getargs.h (locationsflag): Export it.
21174 * src/lex.c (percent_table): Support `%locations'.
21175 * src/reader.c (yylsp_needed): Remove this variable, now replaced
21176 with `locationsflag'.
21177 * doc/bison.texinfo: Document `--locations' and `%locations'.
21178 Sort the options.
21179 * tests/calc.m4: Test it.
21180
21181 For regularity of the names, replace each
21182 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
21183 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
21184 In addition replace each `flag' with `_flag'.
21185
21186 2000-10-02 Akim Demaille <akim@epita.fr>
21187
21188 Also test parse error messages, including with YYERROR_VERBOSE.
21189
21190 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
21191 associative).
21192 Use it to check the computations.
21193 Use it to check `nonassoc' is honored.
21194 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
21195 `--yyerror-verbose'.
21196 (_AT_CHECK_CALC): Adjust to this option.
21197 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
21198
21199 2000-10-02 Akim Demaille <akim@epita.fr>
21200
21201 Test also `--verbose', `--defines' and `--name-prefix'. Testing
21202 the latter demonstrates a flaw in the handling of non debugging
21203 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
21204 was used in order to simplify:
21205
21206 #if YYDEBUG
21207 if (yydebug)
21208 {
21209 ...
21210 }
21211 #endif
21212
21213 into
21214
21215 if (yydebug)
21216 {
21217 ...
21218 }
21219
21220 unfortunately this leads to a CPP conflict when
21221 `--name-prefix=foo' is used since it produces `#define yydebug
21222 foodebug'.
21223
21224 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
21225 (YYDPRINTF): New macro.
21226 Spread its use.
21227 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
21228 the bison options.
21229 Also test `--verbose', `--defines' and `--name-prefix'.
21230
21231 2000-10-02 Akim Demaille <akim@epita.fr>
21232
21233 Improve the readability of the produced parsers.
21234
21235 * src/bison.s1: Formatting changes.
21236 Improve the comment related to the `$' mark.
21237 (yydefault): Don't fall through to `yyresume': `goto' there.
21238 * src/output.c (output_parser): When the `$' is met, skip the end
21239 of its line.
21240 New variable, `number_of_dollar_signs', to check there's exactly
21241 one `$' in the parser skeleton.
21242
21243 2000-10-02 Akim Demaille <akim@epita.fr>
21244
21245 * lib/xstrdup.c: New file, from the fileutils.
21246 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
21247 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
21248 instead of strlen + xmalloc + strcpy.
21249 * src/symtab.c (copys): Remove, use xstrdup instead.
21250
21251 2000-10-02 Akim Demaille <akim@epita.fr>
21252
21253 * src/gram.h (associativity): New enum type which replaces the
21254 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
21255 `right_assoc', `left_assoc' and `non_assoc'.
21256 Adjust all dependencies.
21257 * src/reader.c: Formatting changes.
21258 (LTYPESTR): Don't define it, use it as a literal in
21259 `reader_output_yylsp'.
21260 * src/symtab.h (symbol_class): New enum type which replaces the
21261 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
21262 `sunknown', `stoken and `snterm'.
21263
21264 2000-10-02 Akim Demaille <akim@epita.fr>
21265
21266 * src/getargs.c (fixed_outfiles): Rename as...
21267 (yaccflag): for consistency and accuracy.
21268 Adjust dependencies.
21269
21270 2000-10-02 Akim Demaille <akim@epita.fr>
21271
21272 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
21273 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
21274 difficult and introduced a lot of core dump. It turns out that
21275 Bison used an implementation of `xmalloc' based on `calloc', and
21276 at various places it does depend upon the initialization to 0. I
21277 have not tried to isolate the pertinent places, and all the former
21278 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
21279 someone should address this issue.
21280
21281 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
21282 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
21283 files.
21284 Adjust dependencies.
21285 * src/warshall.h: New file.
21286 Propagate.
21287
21288 2000-10-02 Akim Demaille <akim@epita.fr>
21289
21290 Various anti-`extern in *.c' changes.
21291
21292 * src/system.h: Include `assert.h'.
21293
21294 2000-10-02 Akim Demaille <akim@epita.fr>
21295
21296 * src/state.h (nstates, final_state, first_state, first_shift)
21297 (first_reduction): Move their exportation from here...
21298 * src/LR0.h: to here.
21299 Adjust dependencies.
21300 * src/getargs.c (statisticsflag): New variable.
21301 Add support for `--statistics'.
21302 Adjust dependencies.
21303
21304 Remove a lot of now useless `extern' statements in most files.
21305
21306 2000-10-02 Akim Demaille <akim@epita.fr>
21307
21308 * src/LR0.h: New file.
21309 Propagate its use.
21310
21311 2000-10-02 Akim Demaille <akim@epita.fr>
21312
21313 * src/print.h: New file.
21314 Propagate its use.
21315 * src/print.c: Formatting and ordering changes.
21316 (verbose, terse): Replace with...
21317 (print_results): this new function.
21318 Adjust dependencies.
21319
21320 2000-10-02 Akim Demaille <akim@epita.fr>
21321
21322 * src/conflicts.c (conflict_report): New function.
21323 (conflict_log, verbose_conflict_log): Replace with...
21324 (print_conflicts): this function.
21325 Adjust dependencies.
21326 * src/conflicts.h: New file.
21327 Propagate its inclusion.
21328
21329 2000-10-02 Akim Demaille <akim@epita.fr>
21330
21331 * src/nullable.h: New file.
21332 Propagate its inclusion.
21333 * src/nullable.c: Formatting changes.
21334
21335 2000-10-02 Akim Demaille <akim@epita.fr>
21336
21337 * src/reduce.h: New file.
21338 Propagate its inclusion.
21339 * src/reduce.c: Topological sort and other formatting changes.
21340 (bool, TRUE, FALSE): Move their definition to...
21341 * src/system.h: here.
21342
21343 2000-10-02 Akim Demaille <akim@epita.fr>
21344
21345 * src/files.c: Formatting changes.
21346 (tryopen, tryclose, openfiles): Rename as...
21347 (xfopen, xfclose, open_files): this.
21348 (stringappend): static.
21349 * src/files.h: Complete the list of exported symbols.
21350 Propagate its use.
21351
21352 2000-10-02 Akim Demaille <akim@epita.fr>
21353
21354 * src/reader.h: New file.
21355 Propagate its use instead of tedious list of `extern' and
21356 prototypes.
21357 * src/reader.c: Formatting changes, topological sort,
21358 s/register//.
21359
21360 2000-10-02 Akim Demaille <akim@epita.fr>
21361
21362 * src/lex.h: Prototype `lex.c' exported functions.
21363 * src/reader.c: Adjust.
21364 * src/lex.c: Formatting changes.
21365 (safegetc): Rename as...
21366 (xgetc): this.
21367
21368 2000-10-02 Akim Demaille <akim@epita.fr>
21369
21370 * src/lalr.h: New file.
21371 Propagate its inclusion instead of prototypes and `extern'.
21372 * src/lalr.c: Formatting changes, topological sorting etc.
21373
21374 2000-10-02 Akim Demaille <akim@epita.fr>
21375
21376 * src/output.c (token_actions): Introduce a temporary array,
21377 YYDEFACT, that makes it possible for this function to use
21378 output_short_table.
21379
21380 2000-10-02 Akim Demaille <akim@epita.fr>
21381
21382 `user_toknums' is output as a `short[]' in `output.c', while it is
21383 defined as a `int[]' in `reader.c'. For consistency with the
21384 other output tables, `user_toknums' is now defined as a table of
21385 shorts.
21386
21387 * src/reader.c (user_toknums): Be a short table instead of an int
21388 table.
21389 Adjust dependencies.
21390
21391 Factor the short table outputs.
21392
21393 * src/output.c (output_short_table): New function.
21394 * src/output.c (output_gram, output_stos, output_rule_data)
21395 (output_base, output_table, output_check): Use it.
21396
21397 2000-10-02 Akim Demaille <akim@epita.fr>
21398
21399 * src/output.c (output): Topological sort of the functions, in
21400 order to get rid of the `static' prototypes.
21401 No longer use `register'.
21402 * src/output.h: New file.
21403 Propagate its inclusion in files explicitly prototyping functions
21404 from output.c.
21405
21406 2000-09-21 Akim Demaille <akim@epita.fr>
21407
21408 * src/atgeneral.m4: Update from Autoconf.
21409
21410 2000-09-21 Akim Demaille <akim@epita.fr>
21411
21412 * src/closure.h: New file.
21413 * src/closure.c: Formatting changes, topological sort over the
21414 functions, use of closure.h.
21415 (initialize_closure, finalize_closure): Rename as...
21416 (new_closure, free_closure): these. Adjust dependencies.
21417 * src/LR0.c: Formatting changes, topological sort, use of
21418 cloture.h.
21419 (initialize_states): Rename as...
21420 (new_states): this.
21421 * src/Makefile.am (noinst_HEADERS): Adjust.
21422
21423 2000-09-20 Akim Demaille <akim@epita.fr>
21424
21425 * src/acconfig.h: Don't protect config.h against multiple
21426 inclusion.
21427 Don't define PARAMS.
21428 * src/system.h: Define PARAMS.
21429 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
21430 purpose of config.h. system.h must not try to fix wrong
21431 definitions in config.h.
21432
21433 2000-09-20 Akim Demaille <akim@epita.fr>
21434
21435 * src/derives.h: New file.
21436 * src/main.c, src/derives.h: Use it.
21437 Formatting changes.
21438 * src/Makefile.am (noinst_HEADERS): Adjust.
21439
21440 2000-09-20 Akim Demaille <akim@epita.fr>
21441
21442 * tests/atgeneral.m4: Update from Autoconf.
21443 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
21444 (AT_CHECK_CALC): New macros.
21445 Use these macros to test bison with options `', `--raw',
21446 `--debug', `--yacc', `--yacc --debug'.
21447
21448 2000-09-19 Akim Demaille <akim@epita.fr>
21449
21450 * src/output.c: Formatting changes.
21451 * src/machine.h: Remove, leaving its contents in...
21452 * src/system.h: here.
21453 Include stdio.h.
21454 Adjust all dependencies on stdio.h and machine.h.
21455 * src/getargs.h: New file.
21456 Let all `extern' declarations about getargs.c be replaced with
21457 inclusion of `getargs.h'.
21458 * src/Makefile.am (noinst_HEADERS): Adjust.
21459
21460 * tests/calc.m4 (yyin): Be initialized in main, not on the global
21461 scope.
21462 (yyerror): Returns void, not int.
21463 * doc/bison.texinfo: Formatting changes.
21464
21465 2000-09-19 Akim Demaille <akim@epita.fr>
21466
21467 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
21468 portable.
21469
21470 2000-09-18 Akim Demaille <akim@epita.fr>
21471
21472 * configure.in: Append WARNING_CFLAGS to CFLAGS.
21473 * src/Makefile.am (INCLUDES): Don't.
21474 Be ready to fetch headers in lib/.
21475
21476 2000-09-18 Akim Demaille <akim@epita.fr>
21477
21478 * doc/bison.texinfo: Update the copyright.
21479 ANSIfy and GNUify the examples.
21480 Remove the old menu.
21481
21482 2000-09-18 Akim Demaille <akim@epita.fr>
21483
21484 First set of tests: use the `calc' example from the documentation.
21485
21486 * src/bison.s1 (yyparse): Condition the code using `yytname' which
21487 is defined only when YYDEBUG is.
21488 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
21489 * src/files.c (tryopen, tryclose): Formatting changes.
21490 Move to the top and be static.
21491 * src/reader.c (read_signed_integer): Likewise.
21492 * tests/calc.m4: New file.
21493 * Makefile.am, suite.m4: Adjust.
21494 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
21495
21496 2000-09-18 Akim Demaille <akim@epita.fr>
21497
21498 Add support for an Autotest test suite for Bison.
21499
21500 * m4/m4.m4, m4/atconfig.m4: New files.
21501 * m4/Makefile.am (EXTRA_DIST): Adjust.
21502 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
21503 files.
21504 * src/getargs.c: Display a more standard --version message.
21505 * src/reader.c (reader): Formatting changes.
21506 No longer depend upon VERSION_STRING.
21507 * configure.in: No longer use `dnl'.
21508 Set up the test suite and the new directory `tests/.
21509 (VERSION_STRING): Remove.
21510
21511 2000-04-14 Akim Demaille <akim@epita.fr>
21512
21513 * src/reader.c (copy_comment2): New function, same as former
21514 `copy_comment', but outputs into two FILE *.
21515 (copy_comment): Use it.
21516 (parse_union_decl): Use it.
21517 (get_type, parse_start_decl): Use the same `invalid' message.
21518 (parse_start_decl, parse_union_decl): Use the same `multiple'
21519 message.
21520 (parse_union_decl, copy_guard, copy_action): Use the same
21521 `unmatched' message.
21522 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
21523
21524 2000-03-31 Akim Demaille <akim@epita.fr>
21525
21526 * src/files.c (tryopen, tryclose): Move to the top.
21527 Be static.
21528
21529 2000-03-31 Akim Demaille <akim@epita.fr>
21530
21531 * src/main.c (main): Don't call `done', exit does it.
21532
21533 2000-03-31 Akim Demaille <akim@epita.fr>
21534
21535 * allocate.c: s/return (foo)/return foo/.
21536 * lalr.c: Likewise.
21537 * LR0.c: Likewise.
21538 * output.c: Likewise.
21539 * reader.c: Likewise.
21540 * symtab.c: Likewise.
21541 * vmsgetargs.c: Likewise.
21542
21543 2000-03-31 Akim Demaille <akim@epita.fr>
21544
21545 Clean up the error reporting functions.
21546
21547 * src/report.c: New file.
21548 * src/report.h: Likewise.
21549 * src/Makefile.am: Adjust.
21550 * m4/error.m4: New file.
21551 * m4/Makefile.am: Adjust.
21552 * configure.in (jm_PREREQ_ERROR): Call it.
21553 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
21554 Remove.
21555 (fatal, fatals): Remove. All callers use complain.c::fatal.
21556 (warn, warni, warns, warnss, warnss): Remove. All callers use
21557 complain.c::complain.
21558 (toomany): Remove, use fatal instead.
21559 * src/files.c (done): No argument, use complain_message_count.
21560 * src/main.c (main): Register `done' to `atexit'.
21561
21562 * src/getargs.c (usage): More `fputs', less `fprintf'.
21563
21564 2000-03-28 Akim Demaille <akim@epita.fr>
21565
21566 * lib/: New directory.
21567 * Makefile.am (SUBDIRS): Adjust.
21568 * configure.in: Adjust.
21569 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
21570 useless.
21571 * src/alloca.c: Moved to lib/.
21572 * src/getopt.c: Likewise.
21573 * src/getopt1.c: Likewise.
21574 * src/getopt.h: Likewise.
21575 * src/ansi2knr.c: Likewise.
21576 * src/ansi2knr.1: Likewise.
21577 * src/Makefile.am: Adjust.
21578 * lib/Makefile.am: New file.
21579
21580 2000-03-28 Akim Demaille <akim@epita.fr>
21581
21582 * src/getargs.c (usage): Refresh the help message.
21583
21584 2000-03-17 Akim Demaille <akim@epita.fr>
21585
21586 * src/getopt1.c: Updated from textutils 2.0e
21587 * src/getopt.c: Likewise.
21588 * src/getopt.h: Likewise.
21589
21590 2000-03-17 Akim Demaille <akim@epita.fr>
21591
21592 * src/Makefile.am (bison.simple): Fix the awk program: quote only
21593 the file name, not the whole `#line LINE FILE'.
21594
21595 2000-03-17 Akim Demaille <akim@epita.fr>
21596
21597 On syntax errors, report the token on which we choked.
21598
21599 * src/bison.s1 (yyparse): In the label yyerrlab, when
21600 YYERROR_VERBOSE, add yychar in msg.
21601
21602 2000-03-17 Akim Demaille <akim@epita.fr>
21603
21604 * src/reader.c (copy_at): New function.
21605 (copy_guard): Use it.
21606 (copy_action): Use it.
21607
21608 2000-03-17 Akim Demaille <akim@epita.fr>
21609
21610 Be kind to translators, save some useless translations.
21611
21612 * src/main.c (banner): New function.
21613 (fatal_banner): Use it.
21614 (warn_banner): Use it.
21615
21616 2000-03-17 Akim Demaille <akim@epita.fr>
21617
21618 * src/reader.c (copy_definition): Use copy_string and
21619 copy_comment. Removed now unused `match', `ended',
21620 `cplus_comment'.
21621 (copy_comment, copy_string): Moved, to be visible from
21622 copy_definition.
21623
21624 2000-03-17 Akim Demaille <akim@epita.fr>
21625
21626 * src/reader.c (copy_string): Declare `static inline'. No
21627 problems with inline, since it is checked by configure.
21628 (copy_comment): Likewise.
21629
21630 2000-03-17 Akim Demaille <akim@epita.fr>
21631
21632 * src/reader.c (packsymbols): Formatting changes.
21633
21634 2000-03-17 Akim Demaille <akim@epita.fr>
21635
21636 * src/reader.c (copy_comment): New function, factored out from:
21637 (copy_action): Use it. Removed now unused `match', `ended',
21638 `cplus_comment'.
21639 (copy_guard): Likewise.
21640
21641 2000-03-17 Akim Demaille <akim@epita.fr>
21642
21643 * src/reader.c (copy_string): New function, factored out from:
21644 (copy_action): Use it.
21645 (copy_guard): Likewise.
21646
21647 2000-03-17 Akim Demaille <akim@epita.fr>
21648
21649 Change the handling of @s so that they behave exactly like $s.
21650 There is now a pseudo variable @$ (readble and writable), location
21651 of the lhs of the rule (by default ranging from the location of
21652 the first symbol of the rhs, to the location of the last symbol,
21653 or, if the rhs is empty, YYLLOC).
21654
21655 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21656 yyval.
21657 (yyparse): When providing a default semantic action, provide a
21658 default location action.
21659 (after the $): No longer change `*YYLSP', just stack YYLOC the
21660 same way you stack YYVAL.
21661 * src/reader.c (read_declarations): Use warns.
21662 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21663 (copy_action, case '@'): Likewise.
21664 Use a standard error message, to save useless work from
21665 translators.
21666
21667 2000-03-17 Akim Demaille <akim@epita.fr>
21668
21669 * src/bison.s1: Formatting and cosmetics changes.
21670 * src/reader.c: Likewise.
21671 Update the Copyright notice.
21672
21673 2000-03-17 Akim Demaille <akim@epita.fr>
21674
21675 * src/bison.s1 (#line): All set to `#line' only, since the
21676 Makefile now handles them.
21677
21678 2000-03-16 Akim Demaille <akim@epita.fr>
21679
21680 * src/output.c (output_rule_data): Output the documentation of
21681 some of the tables.
21682 (Copyright notice): Update.
21683 Formatting changes.
21684
21685 2000-03-16 Akim Demaille <akim@epita.fr>
21686
21687 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21688 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21689 One `#if YYDEBUG' remains, since it uses variables which are
21690 defined only if `YYDEBUG != 0'.
21691
21692 2000-03-16 Akim Demaille <akim@epita.fr>
21693
21694 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21695 and related variables so that the similarities are highlighted.
21696
21697 2000-03-16 Akim Demaille <akim@epita.fr>
21698
21699 * src/bison.s1: Properly indent CPP directives.
21700
21701 2000-03-16 Akim Demaille <akim@epita.fr>
21702
21703 * src/bison.s1: Properly indent the `alloca' CPP section.
21704
21705 2000-03-16 Akim Demaille <akim@epita.fr>
21706
21707 Do not hard code values of directories in `configure.in'.
21708 Update the `configure' tool chain.
21709
21710 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21711 src/makefile.am.
21712 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21713 (AC_OUTPUT): Add m4/Makefile.
21714 Bump to bison 1.28a, 1.29 has never been released.
21715 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21716 handled via src/Makefile.am.
21717 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21718 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21719 autoheader.
21720 * Makefile.am (SUBDIRS): Add m4.
21721 (ACLOCAL_AM_FLAGS): New variable.
21722 (AUTOMAKE_OPTIONS): Add check-news.
21723 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21724 the proper line number and file name.
21725 (DEFS): Propagate the location of bison library files and of the
21726 locale files.
21727 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21728 builddir.
21729 * acinclude.m4: Remove, replaced by the directory m4.
21730 * m4/Makefile.am (EXTRA_DIST): New variable.
21731 * m4/gettext.m4: New file, from the fileutils.
21732 * m4/lcmessage.m4: Likewise
21733 * m4/progtest.m4: Likewise.
21734 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21735
21736 2000-03-10 Akim Demaille <akim@epita.fr>
21737
21738 * src/closure.c:
21739 Formatting changes of various comments.
21740 Respect the GNU coding standards at various places.
21741 Don't use `_()' when no translation is needed.
21742
21743 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21744
21745 * src/files.c:
21746 OS/2 honors TMPDIR environment variable.
21747
21748 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21749
21750 * doc/bison.texinfo: Tweaked spelling and grammar.
21751 Updated ISBN.
21752 Removed reference to price of printed copy.
21753 Mention BISON_SIMPLE and BISON_HAIRY.
21754
21755 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21756
21757 * configure.in, NEWS:
21758 Bison 1.29 released.
21759
21760 1999-10-27 Jesse Thilo <jthilo@gnu.org>
21761
21762 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21763 Added reference card.
21764
21765 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21766
21767 * po/ru.po: Added Russian translation.
21768
21769 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21770
21771 * configure.in: Added Russian translation.
21772
21773 1999-07-06 Jesse Thilo <jthilo@gnu.org>
21774
21775 * configure.in, NEWS, README:
21776 Released version 1.28.
21777
21778 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21779
21780 * src/system.h:
21781 Squashed redefinition warning on some systems.
21782
21783 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21784 Have configure build version string instead of relying on ANSI string
21785 concatentation.
21786
21787 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21788
21789 * po/POTFILES.in: Got rid of version.c.
21790
21791 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21792
21793 * acconfig.h, configure.in:
21794 Have configure build version string instead of relying on ANSI string
21795 concatentation.
21796
21797 1999-06-08 Jesse Thilo <jthilo@gnu.org>
21798
21799 * doc/bison.1:
21800 Dropped mention of `+' for long-named options.
21801
21802 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21803
21804 * src/files.c: Added <unistd.h> for unlink().
21805
21806 * src/Makefile.am, src/system.h:
21807 I18n fixes.
21808
21809 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21810
21811 * README: Added a FAQ list.
21812
21813 * configure.in, acconfig.h:
21814 I18n fixes.
21815
21816 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21817
21818 * doc/FAQ, doc/Makefile.am:
21819 Added a FAQ list.
21820
21821 1999-05-19 Jesse Thilo <jthilo@gnu.org>
21822
21823 * src/alloc.h, src/symtab.h, src/version.c:
21824 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21825
21826 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21827
21828 * src/.cvsignore, src/Makefile.am:
21829 Reorganized: sources in `src', documentation in `doc'.
21830
21831 * src/lex.c (literalchar):
21832 fixed the code for escaping double quotes (thanks
21833 Jonathan Czisny.)
21834
21835 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21836
21837 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21838 Adjusted paths to reflect directory reorganization.
21839
21840 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21841
21842 * doc/.cvsignore, doc/Makefile.am:
21843 Reorganized: sources in `src', documentation in `doc'.
21844
21845 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21846
21847 * configure.in:
21848 Updated AC_INIT file to reflect directory reorganization.
21849
21850 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21851 Reorganized: sources in `src', documentation in `doc'.
21852
21853 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21854
21855 * src/allocate.c:
21856 Don't declare calloc() and realloc() if not necessary.
21857
21858 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21859
21860 * configure.in, acconfig.h, acinclude.m4:
21861 Don't declare calloc() and realloc() if not necessary.
21862
21863 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21864
21865 * po/.cvsignore: Added i18n support.
21866
21867 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21868
21869 * acconfig.h, configure.in, Makefile.am:
21870 Added i18n support.
21871
21872 1999-03-22 Jesse Thilo <jthilo@gnu.org>
21873
21874 * src/bison.s1: Fixed #line numbers.
21875
21876 1999-03-15 Jesse Thilo <jthilo@gnu.org>
21877
21878 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21879 Added PO files from Translation Project.
21880
21881 1999-03-03 Jesse Thilo <jthilo@gnu.org>
21882
21883 * Makefile.am:
21884 Added support for non-ANSI compilers (ansi2knr).
21885
21886 1999-02-16 Jesse Thilo <jthilo@gnu.org>
21887
21888 * configure.in: Bumped version number to 1.27.
21889
21890 * Makefile.am:
21891 Added `bison.simple' to list of files removed by `make distclean'.
21892
21893 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21894
21895 * src/files.c, src/files.h:
21896 Defined locations of parser files in config.h instead of Makefile.
21897
21898 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21899
21900 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21901 Defined locations of parser files in config.h instead of Makefile.
21902
21903 1999-02-09 Jesse Thilo <jthilo@gnu.org>
21904
21905 * Makefile.am:
21906 Removed inappropriate use of $< macro.
21907
21908 1999-02-05 Jesse Thilo <jthilo@gnu.org>
21909
21910 * po/Makefile.in.in, po/POTFILES.in:
21911 Add `po' directory skeleton.
21912
21913 1999-01-27 Jesse Thilo <jthilo@gnu.org>
21914
21915 * README: Document help-bison list.
21916
21917 * configure.in: Add check for mkstemp().
21918
21919 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21920
21921 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21922 Hush a few compiler warnings.
21923
21924 * src/files.c:
21925 Add tryclose(), which verifies that fclose was successful.
21926 Hush a couple of compiler warnings.
21927
21928 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21929
21930 * Makefile.am, OChangeLog:
21931 ChangeLog is now automatically generated. Include the old version as
21932 OChangeLog.
21933
21934 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21935
21936 * 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:
21937 Update FSF address.
21938
21939 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21940
21941 * doc/bison.texinfo: Fix formatting glitch.
21942
21943 * doc/bison.texinfo: Update FSF address.
21944
21945 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21946
21947 * acconfig.h: Update FSF address.
21948
21949 1999-01-08 Jesse Thilo <jthilo@gnu.org>
21950
21951 * src/system.h:
21952 Don't define PACKAGE here, since config.h defines it.
21953
21954 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21955
21956 * src/reader.c: Update copyright date.
21957
21958 * src/main.c:
21959 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21960 favor of output directly to stderr (avoids buffer overruns).
21961
21962 * src/reader.c: Some checks for premature EOF.
21963
21964 * 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:
21965 Use prototypes if the compiler understands them.
21966
21967 * src/files.c: Honor TMPDIR on Unix hosts.
21968 Use prototypes if the compiler understands them.
21969
21970 * src/reader.c:
21971 Fix a couple of buffer overrun bugs.
21972 Use prototypes if the compiler understands them.
21973
21974 * src/system.h: Include unistd.h and ctype.h.
21975 Use #ifdef instead of #if for NLS symbols.
21976
21977 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21978
21979 * doc/bison.texinfo:
21980 Delete comment "consider using @set for edition number, etc..." since
21981 we now are doing so.
21982
21983 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21984
21985 * configure.in:
21986 Use prototypes if the compiler understands them.
21987
21988 * NEWS: Document 1.26 highlights.
21989
21990 * Makefile.am: Require Automake 1.3 or later.
21991
21992 * acconfig.h:
21993 Use prototypes if the compiler understands them.
21994
21995 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21996
21997 * src/version.c:
21998 Use VERSION symbol from automake for version number.
21999
22000 1998-12-29 Jesse Thilo <jthilo@gnu.org>
22001
22002 * acconfig.h, configure.in, version.cin:
22003 Use VERSION symbol from automake for version number.
22004
22005 1998-11-28 Jesse Thilo <jthilo@gnu.org>
22006
22007 * Makefile.am:
22008 Distribute original version of simple parser (bison.s1), not built
22009 version (bison.simple).
22010
22011 1998-11-28 Jesse Thilo <jthilo@gnu.org>
22012
22013 * doc/bison.texinfo: Add info dir entry.
22014
22015 * doc/bison.texinfo:
22016 Let automake put version number into documentation.
22017
22018 1998-11-26 Jesse Thilo <jthilo@gnu.org>
22019
22020 * src/bison.cld, src/build.com, src/vmshlp.mar:
22021 Add non-RCS files from /gd/gnu/bison.
22022
22023 1998-11-26 Jesse Thilo <jthilo@gnu.org>
22024
22025 * doc/bison.1:
22026 Document the BISON_HAIRY and BISON_SIMPLE variables.
22027
22028 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22029
22030 * src/version.c: Build version.c automatically.
22031
22032 * src/reader.c:
22033 Fix token numbering (used to start at 258, not 257).
22034
22035 * src/system.h: Include config.h.
22036
22037 * src/getargs.c: Update bug report address.
22038
22039 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
22040 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
22041
22042 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22043
22044 * Makefile.am:
22045 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
22046
22047 * configure.in, version.cin:
22048 Build version.c automatically.
22049
22050 * AUTHORS: Add AUTHORS file.
22051
22052 * README: Update bug report address.
22053
22054 * bison.simple:
22055 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
22056
22057 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
22058 Add automake stuff.
22059
22060 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22061
22062 * doc/bison.texinfo: Clean up some formatting.
22063
22064 1998-05-05 Richard Stallman <rms@gnu.org>
22065
22066 * doc/bison.texinfo:
22067 Explain better why to make a pure parser.
22068
22069 1998-01-05 Richard Stallman <rms@gnu.org>
22070
22071 * src/files.c (openfiles):
22072 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
22073 find a temporary directory, if possible. Do not unlink files while
22074 they are open.
22075
22076 1997-08-25 Richard Stallman <rms@gnu.org>
22077
22078 * src/reader.c (stack_offset;):
22079 Change some warni to warns.
22080
22081 * src/lex.c (literalchar): Use warns, not warni.
22082
22083 1997-06-28 Richard Stallman <rms@gnu.org>
22084
22085 * src/bison.s1: Add a Bison version comment.
22086
22087 * src/main.c (fatal, warn, berror):
22088 Use program_name.
22089
22090 1997-06-28 Richard Stallman <rms@gnu.org>
22091
22092 * Makefile.in (bison_version): New variable.
22093 (dist): Use that variable.
22094 (bison.s1): Substitute the Bison version into bison.simple.
22095
22096 * bison.simple: Add a Bison version comment.
22097
22098 1997-06-18 Richard Stallman <rms@gnu.org>
22099
22100 * src/main.c (fatal, warn, berror):
22101 Make error messages standard.
22102 (toomany): Improve error message text.
22103
22104 * 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:
22105 new.h renamed to alloc.h.
22106
22107 1997-06-18 Richard Stallman <rms@gnu.org>
22108
22109 * Makefile.in: new.h renamed to alloc.h.
22110
22111 1997-05-24 Richard Stallman <rms@gnu.org>
22112
22113 * src/lex.c (literalchar):
22114 Fix the code for escaping \, " and '.
22115
22116 (lex): Avoid trouble when there are many chars
22117 to discard in a char literal with just several chars in it.
22118
22119 1997-05-17 Richard Stallman <rms@gnu.org>
22120
22121 * src/bison.s1:
22122 Use malloc, if using alloca is troublesome.
22123 (YYSTACK_USE_ALLOCA): New flag macro.
22124 Define it for some systems and compilers.
22125 (YYSTACK_ALLOC): New macro.
22126 (yyparse): Use YYSTACK_ALLOC to allocate stack.
22127 If it was malloc'd, free it.
22128
22129 1997-05-17 Richard Stallman <rms@gnu.org>
22130
22131 * bison.simple:
22132 Use malloc, if using alloca is troublesome.
22133 (YYSTACK_USE_ALLOCA): New flag macro.
22134 Define it for some systems and compilers.
22135 (YYSTACK_ALLOC): New macro.
22136 (yyparse): Use YYSTACK_ALLOC to allocate stack.
22137 If it was malloc'd, free it.
22138
22139 1997-04-23 Richard Stallman <rms@gnu.org>
22140
22141 * src/bison.s1:
22142 (alloca) [__hpux]: Always define as __builtin_alloca.
22143
22144 1997-04-23 Richard Stallman <rms@gnu.org>
22145
22146 * bison.simple:
22147 (alloca) [__hpux]: Always define as __builtin_alloca.
22148
22149 1997-04-22 Richard Stallman <rms@gnu.org>
22150
22151 * src/bison.s1:
22152 [__hpux]: Include alloca.h (right for HPUX 10)
22153 instead of declaring alloca (right for HPUX 9).
22154
22155 * src/bison.s1 (__yy_memcpy):
22156 Declare arg `count' as unsigned int.
22157 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
22158
22159 1997-04-22 Richard Stallman <rms@gnu.org>
22160
22161 * bison.simple:
22162 [__hpux]: Include alloca.h (right for HPUX 10)
22163 instead of declaring alloca (right for HPUX 9).
22164
22165 * bison.simple (__yy_memcpy):
22166 Declare arg `count' as unsigned int.
22167 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
22168
22169 1997-01-03 Richard Stallman <rms@gnu.org>
22170
22171 * src/allocate.c: [__STDC__ or _MSC_VER]:
22172 Declare calloc and realloc to return void *.
22173
22174 1997-01-02 Richard Stallman <rms@gnu.org>
22175
22176 * src/system.h:
22177 [_MSC_VER]: Include stdlib.h and process.h.
22178 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
22179
22180 * src/main.c (main): Return FAILURE as a value.
22181 (printable_version): Declare arg as int, not char.
22182
22183 1997-01-02 Richard Stallman <rms@gnu.org>
22184
22185 * Makefile.in (dist):
22186 Explicitly check for symlinks, and copy them.
22187
22188 1996-12-19 Richard Stallman <rms@gnu.org>
22189
22190 * src/files.c:
22191 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
22192
22193 1996-12-18 Paul Eggert <eggert@gnu.org>
22194
22195 * src/bison.s1 (yyparse):
22196 If __GNUC__ and YYPARSE_PARAM are both defined,
22197 declare yyparse to have a void * argument.
22198
22199 1996-12-18 Paul Eggert <eggert@gnu.org>
22200
22201 * bison.simple (yyparse):
22202 If __GNUC__ and YYPARSE_PARAM are both defined,
22203 declare yyparse to have a void * argument.
22204
22205 1996-12-17 Richard Stallman <rms@gnu.org>
22206
22207 * src/reduce.c (nbits): Add some casts.
22208
22209 1996-08-12 Richard Stallman <rms@gnu.org>
22210
22211 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
22212
22213 1996-08-12 Richard Stallman <rms@gnu.org>
22214
22215 * bison.simple: Test _MSDOS as well as _MSDOS_.
22216
22217 1996-07-31 Richard Stallman <rms@gnu.org>
22218
22219 * src/bison.s1:
22220 [__sun && __i386]: Include alloca.h.
22221
22222 1996-07-31 Richard Stallman <rms@gnu.org>
22223
22224 * bison.simple:
22225 [__sun && __i386]: Include alloca.h.
22226
22227 1996-07-30 Richard Stallman <rms@gnu.org>
22228
22229 * src/bison.s1: Comment change.
22230
22231 * src/bison.s1: Test _MSDOS_, not MSDOS.
22232
22233 1996-07-30 Richard Stallman <rms@gnu.org>
22234
22235 * bison.simple: Comment change.
22236
22237 * bison.simple: Test _MSDOS_, not MSDOS.
22238
22239 1996-06-01 Richard Stallman <rms@gnu.org>
22240
22241 * 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:
22242 Insert `_' macro around many string constants.
22243
22244 * src/main.c:
22245 Insert `_' macro around many string constants.
22246
22247 (main): Call setlocale, bindtextdomain and textdomain.
22248
22249 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
22250 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
22251 [ENABLE_NLS]: Include libintl.h.
22252 [ENABLE_NLS] (gettext): Define.
22253 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
22254 (N_, PACKAGE, LOCALEDIR): New macros.
22255
22256 1996-06-01 Richard Stallman <rms@gnu.org>
22257
22258 * POTFILES.in: New file.
22259
22260 * Makefile.in (allocate.o):
22261 Define target explicitly.
22262
22263 * Makefile.in (CFLAGS): Set to @CFLAGS@.
22264 (LDFLAGS): Set to @LDFLAGS@.
22265 (configure): Run autoconf only if preceding `cd' succeeds.
22266 (bison.s1): Redirect output to temporary file then move the
22267 temporary to the target, rather than redirecting directly to bison.s1.
22268 (clean): Remove config.status and config.log.
22269 (distclean): Don't remove config.status here.
22270
22271 1996-05-12 Richard Stallman <rms@gnu.org>
22272
22273 * src/bison.s1:
22274 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
22275
22276 1996-05-12 Richard Stallman <rms@gnu.org>
22277
22278 * bison.simple:
22279 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
22280
22281 1996-05-11 Richard Stallman <rms@gnu.org>
22282
22283 * src/bison.s1 (__yy_memcpy):
22284 Really reorder the args, as was supposedly done on Feb 14 1995.
22285 (yyparse): Calls changed accordingly.
22286
22287 1996-05-11 Richard Stallman <rms@gnu.org>
22288
22289 * Makefile.in (dist): Don't use $(srcdir).
22290
22291 * bison.simple (__yy_memcpy):
22292 Really reorder the args, as was supposedly done on Feb 14 1995.
22293 (yyparse): Calls changed accordingly.
22294
22295 1996-01-27 Richard Stallman <rms@gnu.org>
22296
22297 * src/output.c (output_rule_data):
22298 Test YYERROR_VERBOSE in the conditional
22299 around the definition of ttyname.
22300
22301 1995-12-29 Richard Stallman <rms@gnu.org>
22302
22303 * src/bison.s1:
22304 Fix line numbers in #line commands.
22305
22306 1995-12-29 Richard Stallman <rms@gnu.org>
22307
22308 * bison.simple:
22309 Fix line numbers in #line commands.
22310
22311 1995-12-27 Richard Stallman <rms@gnu.org>
22312
22313 * src/bison.s1 (YYPARSE_PARAM_DECL):
22314 In C++, make it always null.
22315 (YYPARSE_PARAM_ARG): New macro.
22316 (yyparse): Use YYPARSE_PARAM_ARG.
22317
22318 1995-12-27 Richard Stallman <rms@gnu.org>
22319
22320 * bison.simple (YYPARSE_PARAM_DECL):
22321 In C++, make it always null.
22322 (YYPARSE_PARAM_ARG): New macro.
22323 (yyparse): Use YYPARSE_PARAM_ARG.
22324
22325 1995-11-29 Richard Stallman <rms@gnu.org>
22326
22327 * doc/bison.texinfo:
22328 Describe literal string tokens, %raw, %no_lines, %token_table.
22329
22330 1995-11-29 Daniel Hagerty <hag@gnu.org>
22331
22332 * doc/bison.texinfo: Fixed update date
22333
22334 1995-10-16 Richard Stallman <rms@gnu.org>
22335
22336 * src/version.c: Version 1.25.
22337
22338 1995-10-16 Richard Stallman <rms@gnu.org>
22339
22340 * NEWS: *** empty log message ***
22341
22342 1995-10-16 Richard Stallman <rms@gnu.org>
22343
22344 * doc/bison.1, doc/bison.rnh:
22345 Add new options.
22346
22347 1995-10-15 Richard Stallman <rms@gnu.org>
22348
22349 * src/vmsgetargs.c, src/getargs.c:
22350 Added -n, -k, and -raw switches.
22351 (noparserflag, toknumflag, rawtoknumflag): New variables.
22352
22353 * src/symtab.h (SALIAS):
22354 New #define for adding aliases to %token.
22355 (struct bucket): Added `alias' field.
22356
22357 * src/reduce.c (reduce_grammar):
22358 Revise error message.
22359 (print_notices): Remove final `.' from error message.
22360
22361 * src/reader.c (reader_output_yylsp):
22362 New function.
22363 (readgram): Use `#if 0' around code that accepted %command
22364 inside grammar rules: The documentation doesn't allow it,
22365 and it will fail since the %command processors scan for the next %.
22366 (parse_token_decl): Extended the %token
22367 declaration to allow a multi-character symbol as an alias.
22368 (parse_thong_decl): New function.
22369 (read_declarations): Added %thong declarations.
22370 (read_declarations): Handle NOOP to deal with allowing
22371 % declarations as another means to specify the flags.
22372 (readgram): Allow %prec prior to semantics embedded in a rule.
22373 (skip_to_char, read_declarations, copy_definition)
22374 (parse_token_decl, parse_start_decl, parse_type_decl)
22375 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
22376 (get_type_name, copy_guard, copy_action, readgram)
22377 (get_type, packsymbols): Revised most error messages.
22378 Changed `fatal' to `warnxxx' to avoid aborting for error.
22379 Revised and use multiple warnxxx functions to avoid using VARARGS1.
22380 (read_declarations): Improve the error message for
22381 an invalid character. Do not abort.
22382 (read_declarations, copy_guard, copy_action): Use
22383 printable_version to avoid unprintable characters in printed output.
22384 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
22385 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
22386 Allow the type of a non-terminal can be given
22387 more than once, as long as all specifications give the same type.
22388
22389 * src/output.c:
22390 (output_headers, output_trailers, output, output_gram)
22391 (output_rule_data): Implement noparserflag variable.
22392 Implement toknumflag variable.
22393 (output): Call reader_output_yylsp to output LTYPESTR.
22394
22395 * src/main.c (main):
22396 If reader sees an error, don't process the grammar.
22397 (fatals): Updated to not use VARARGS1.
22398 (printable_version, int_to_string, warn, warni, warns, warnss)
22399 (warnsss): New error reporting functions. Avoid abort for error.
22400
22401 * src/lex.h:
22402 Added THONG and NOOP for alias processing.
22403 Added SETOPT for the new code that allows setting options with %flags.
22404
22405 * src/lex.c:
22406 Include getopt.h. Add some extern decls.
22407 (safegetc): New function to deal with EOF gracefully.
22408 (literalchar); new function to deal with reading \ escapes.
22409 (lex): Use literalchar.
22410 (lex): Implemented "..." tokens.
22411 (literalchar, lex, parse_percent_token): Made tokenbuffer
22412 always contain the token. This includes growing the token
22413 buffer while reading an integer.
22414 (parse_percent_token): Replaced if-else statement with percent_table.
22415 (parse_percent_token): Added % declarations as another
22416 way to specify the flags -n, -l, and -r. Also added hooks for
22417 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
22418 major changes to files.c.
22419 (lex) Retain in the incoming stream a character following
22420 an incorrect '/'.
22421 (skip_white_space, lex): Revised most error messages
22422 and changed fatal to warn to avoid aborting.
22423 (percent_table): Added %thong declarations.
22424
22425 * src/gram.h: Comment changes.
22426
22427 * src/files.c (openfiles, open_extra_files, done):
22428 Add faction flag
22429 and actfile file. Handle noparserflag. Both for -n switch.
22430
22431 * src/conflicts.c (resolve_sr_conflict):
22432 Remove use of alloca.
22433
22434 1995-06-01 Jim Meyering <meyering@gnu.org>
22435
22436 * doc/bison.texinfo: *** empty log message ***
22437
22438 1995-05-06 Richard Stallman <rms@gnu.org>
22439
22440 * src/bison.s1: Comment change.
22441
22442 1995-05-06 Richard Stallman <rms@gnu.org>
22443
22444 * bison.simple: Comment change.
22445
22446 1995-05-03 Richard Stallman <rms@gnu.org>
22447
22448 * src/version.c: Version now 1.24.
22449
22450 * src/bison.s1: Change distribution terms.
22451
22452 * src/version.c: Version now 1.23.
22453
22454 1995-05-03 Richard Stallman <rms@gnu.org>
22455
22456 * doc/bison.texinfo:
22457 Rewrite "Conditions for Using Bison".
22458 Update version to 1.24.
22459
22460 1995-05-03 Richard Stallman <rms@gnu.org>
22461
22462 * bison.simple: Change distribution terms.
22463
22464 1995-02-23 Richard Stallman <rms@gnu.org>
22465
22466 * src/files.c: Test __VMS_POSIX as well as VMS.
22467
22468 1995-02-14 Jim Meyering <meyering@gnu.org>
22469
22470 * src/bison.s1 (__yy_memcpy):
22471 Renamed from __yy_bcopy to avoid
22472 confusion. Reverse FROM and TO arguments to be consistent with
22473 those of memcpy.
22474
22475 1995-02-14 Jim Meyering <meyering@gnu.org>
22476
22477 * bison.simple (__yy_memcpy):
22478 Renamed from __yy_bcopy to avoid
22479 confusion. Reverse FROM and TO arguments to be consistent with
22480 those of memcpy.
22481
22482 1994-11-10 David J. MacKenzie <djm@gnu.org>
22483
22484 * NEWS: reformat
22485
22486 * NEWS: New file.
22487
22488 * Makefile.in (DISTFILES): Include NEWS.
22489
22490 * Makefile.in (DISTFILES):
22491 Include install-sh, not install.sh.
22492
22493 * configure.in: Update to Autoconf v2 macro names.
22494
22495 1994-10-05 David J. MacKenzie <djm@gnu.org>
22496
22497 * Makefile.in: fix typo
22498
22499 * Makefile.in (prefix, exec_prefix):
22500 Let configure set them.
22501
22502 1994-09-28 David J. MacKenzie <djm@gnu.org>
22503
22504 * Makefile.in: Set datadir to $(prefix)/share.
22505
22506 1994-09-15 Richard Stallman <rms@gnu.org>
22507
22508 * src/bison.s1:
22509 Update copyright notice and GPL version.
22510
22511 1994-09-15 Richard Stallman <rms@gnu.org>
22512
22513 * bison.simple:
22514 Update copyright notice and GPL version.
22515
22516 1994-07-12 Richard Stallman <rms@gnu.org>
22517
22518 * src/reduce.c, src/reader.c:
22519 entered into RCS
22520
22521 1994-05-05 David J. MacKenzie <djm@gnu.org>
22522
22523 * Makefile.in: entered into RCS
22524
22525 1994-03-26 Richard Stallman <rms@gnu.org>
22526
22527 * src/bison.s1: entered into RCS
22528
22529 1994-03-26 Richard Stallman <rms@gnu.org>
22530
22531 * bison.simple: entered into RCS
22532
22533 1994-03-25 Richard Stallman <rms@gnu.org>
22534
22535 * src/main.c: entered into RCS
22536
22537 1994-03-24 Richard Stallman <rms@gnu.org>
22538
22539 * src/conflicts.c: entered into RCS
22540
22541 1994-01-02 Richard Stallman <rms@gnu.org>
22542
22543 * Makefile.in: *** empty log message ***
22544
22545 1993-11-21 Richard Stallman <rms@gnu.org>
22546
22547 * src/bison.s1: *** empty log message ***
22548
22549 1993-11-21 Richard Stallman <rms@gnu.org>
22550
22551 * doc/bison.texinfo: entered into RCS
22552
22553 * doc/bison.texinfo: *** empty log message ***
22554
22555 1993-11-21 Richard Stallman <rms@gnu.org>
22556
22557 * bison.simple: *** empty log message ***
22558
22559 1993-10-25 David J. MacKenzie <djm@gnu.org>
22560
22561 * doc/bison.texinfo: *** empty log message ***
22562
22563 1993-10-19 Richard Stallman <rms@gnu.org>
22564
22565 * src/bison.s1: *** empty log message ***
22566
22567 1993-10-19 Richard Stallman <rms@gnu.org>
22568
22569 * bison.simple: *** empty log message ***
22570
22571 1993-10-14 Richard Stallman <rms@gnu.org>
22572
22573 * src/bison.s1: *** empty log message ***
22574
22575 1993-10-14 Richard Stallman <rms@gnu.org>
22576
22577 * bison.simple: *** empty log message ***
22578
22579 1993-09-14 David J. MacKenzie <djm@gnu.org>
22580
22581 * doc/bison.texinfo: *** empty log message ***
22582
22583 1993-09-13 Noah Friedman <friedman@gnu.org>
22584
22585 * Makefile.in: *** empty log message ***
22586
22587 1993-09-10 Richard Stallman <rms@gnu.org>
22588
22589 * src/conflicts.c: *** empty log message ***
22590
22591 * src/system.h: entered into RCS
22592
22593 1993-09-10 Richard Stallman <rms@gnu.org>
22594
22595 * doc/bison.1: entered into RCS
22596
22597 1993-09-06 Noah Friedman <friedman@gnu.org>
22598
22599 * src/version.c: entered into RCS
22600
22601 1993-09-06 Noah Friedman <friedman@gnu.org>
22602
22603 * Makefile.in: *** empty log message ***
22604
22605 1993-07-30 David J. MacKenzie <djm@gnu.org>
22606
22607 * Makefile.in: *** empty log message ***
22608
22609 1993-07-24 Richard Stallman <rms@gnu.org>
22610
22611 * src/bison.s1: *** empty log message ***
22612
22613 1993-07-24 Richard Stallman <rms@gnu.org>
22614
22615 * bison.simple: *** empty log message ***
22616
22617 1993-07-08 David J. MacKenzie <djm@gnu.org>
22618
22619 * Makefile.in: *** empty log message ***
22620
22621 1993-07-04 Richard Stallman <rms@gnu.org>
22622
22623 * src/bison.s1: *** empty log message ***
22624
22625 1993-07-04 Richard Stallman <rms@gnu.org>
22626
22627 * bison.simple: *** empty log message ***
22628
22629 1993-06-26 David J. MacKenzie <djm@gnu.org>
22630
22631 * src/getargs.c: entered into RCS
22632
22633 1993-06-26 David J. MacKenzie <djm@gnu.org>
22634
22635 * doc/bison.texinfo: *** empty log message ***
22636
22637 * doc/bison.1: New file.
22638
22639 1993-06-25 Richard Stallman <rms@gnu.org>
22640
22641 * src/getargs.c: New file.
22642
22643 1993-06-16 Richard Stallman <rms@gnu.org>
22644
22645 * src/bison.s1: *** empty log message ***
22646
22647 1993-06-16 Richard Stallman <rms@gnu.org>
22648
22649 * bison.simple: *** empty log message ***
22650
22651 1993-06-03 Richard Stallman <rms@gnu.org>
22652
22653 * src/bison.s1: New file.
22654
22655 1993-06-03 Richard Stallman <rms@gnu.org>
22656
22657 * doc/bison.texinfo: *** empty log message ***
22658
22659 1993-06-03 Richard Stallman <rms@gnu.org>
22660
22661 * bison.simple: New file.
22662
22663 1993-05-19 Richard Stallman <rms@gnu.org>
22664
22665 * doc/bison.texinfo: New file.
22666
22667 1993-05-07 Noah Friedman <friedman@gnu.org>
22668
22669 * Makefile.in: *** empty log message ***
22670
22671 1993-04-28 Noah Friedman <friedman@gnu.org>
22672
22673 * src/reader.c: *** empty log message ***
22674
22675 1993-04-23 Noah Friedman <friedman@gnu.org>
22676
22677 * src/alloc.h: entered into RCS
22678
22679 1993-04-20 David J. MacKenzie <djm@gnu.org>
22680
22681 * src/version.c: *** empty log message ***
22682
22683 * src/files.c, src/allocate.c:
22684 entered into RCS
22685
22686 * src/reader.c: *** empty log message ***
22687
22688 * src/lex.c: entered into RCS
22689
22690 * src/conflicts.c: New file.
22691
22692 * src/symtab.c: entered into RCS
22693
22694 * src/alloc.h: New file.
22695
22696 * src/LR0.c: entered into RCS
22697
22698 1993-04-18 Noah Friedman <friedman@gnu.org>
22699
22700 * src/reader.c: New file.
22701
22702 * src/version.c: *** empty log message ***
22703
22704 1993-04-18 Noah Friedman <friedman@gnu.org>
22705
22706 * Makefile.in: *** empty log message ***
22707
22708 1993-04-17 Noah Friedman <friedman@gnu.org>
22709
22710 * Makefile.in: *** empty log message ***
22711
22712 1993-04-15 Richard Stallman <rms@gnu.org>
22713
22714 * src/main.c, src/files.c:
22715 New file.
22716
22717 1993-04-15 Noah Friedman <friedman@gnu.org>
22718
22719 * configure.in: entered into RCS
22720
22721 * configure.in: *** empty log message ***
22722
22723 * configure.in: New file.
22724
22725 1993-04-14 Richard Stallman <rms@gnu.org>
22726
22727 * Makefile.in: New file.
22728
22729 1993-04-13 Richard Stallman <rms@gnu.org>
22730
22731 * src/version.c: New file.
22732
22733 1993-03-25 Richard Stallman <rms@gnu.org>
22734
22735 * src/output.c: entered into RCS
22736
22737 1992-09-25 Richard Stallman <rms@gnu.org>
22738
22739 * configure.bat: entered into RCS
22740
22741 1992-06-22 Richard Stallman <rms@gnu.org>
22742
22743 * src/vmsgetargs.c: entered into RCS
22744
22745 1992-06-22 Richard Stallman <rms@gnu.org>
22746
22747 * doc/bison.rnh: entered into RCS
22748
22749 1992-04-20 David J. MacKenzie <djm@gnu.org>
22750
22751 * README: entered into RCS
22752
22753 1992-01-22 Richard Stallman <rms@gnu.org>
22754
22755 * src/machine.h: entered into RCS
22756
22757 1991-12-21 Richard Stallman <rms@gnu.org>
22758
22759 * src/lalr.c, src/closure.c:
22760 entered into RCS
22761
22762 1991-12-20 Richard Stallman <rms@gnu.org>
22763
22764 * src/state.h: entered into RCS
22765
22766 1991-12-18 Richard Stallman <rms@gnu.org>
22767
22768 * src/print.c, src/nullable.c, src/derives.c:
22769 entered into RCS
22770
22771 1991-11-03 David J. MacKenzie <djm@gnu.org>
22772
22773 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22774 entered into RCS
22775
22776 1988-09-09 Richard Stallman <rms@gnu.org>
22777
22778 * src/bison.hairy: entered into RCS
22779
22780 1987-12-16 Richard Stallman <rms@gnu.org>
22781
22782 * REFERENCES: entered into RCS
22783
22784
22785 -----
22786
22787 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
22788 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
22789 2007, 2008, 2009 Free Software Foundation, Inc.
22790
22791 Copying and distribution of this file, with or without
22792 modification, are permitted provided the copyright notice and this
22793 notice are preserved.