]> git.saurik.com Git - bison.git/blob - ChangeLog
doc: comment changes.
[bison.git] / ChangeLog
1 2009-09-16 Akim Demaille <demaille@gostai.com>
2
3 doc: comment changes.
4 * doc/bison.texinfo: Comment changes.
5
6 2009-09-16 Akim Demaille <demaille@gostai.com>
7
8 doc: spell checking.
9 * doc/bison.texinfo: here.
10
11 2009-09-19 Alex Rozenman <rozenman@gmail.com>
12
13 Keep sub-messages aligned. Fix strings for translation.
14 * src/location.h: (location_print): Add return value.
15 * src/location.c: (location_print): Return number of printed
16 characters.
17 * src/complain.h: Two new functions (complain_at_indent,
18 warn_at_indent).
19 * src/complain.cpp: Implement the alignment mechanism. Add new
20 static variable (indent_ptr). Use and update it (error_message,
21 complain_at_indent, warn_at_indent).
22 * src/scan-code.l: Fix strings for translations. Use new *_indent
23 functions (parse_ref, show_sub_messages).
24 * tests/named-ref.at: Adjust testcases.
25 * NEWS (2.5): Add an announcement about named references.
26
27 2009-09-13 Joel E. Denny <jdenny@clemson.edu>
28
29 tests: clean up push.at test group titles.
30 * tests/push.at: Remove "Push Parsing: " from test group titles
31 because these are already under the banner "Push Parsing Tests".
32
33 2009-09-12 Alex Rozenman <rozenman@gmail.com>
34
35 Provide an additional sub-message for clarity.
36 Add "symbol not found in production" error message when
37 an "invalid reference" is detected in named references
38 resolution.
39 * src/scan-code.l: Update "invalid reference" case.
40 * tests/named-ref.at: Adjust test-cases.
41
42 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
43
44 Clean up yacc.c a little.
45 * data/yacc.c: Clean up M4 for readability, and make output
46 whitespace more consistent. For the main parse function
47 comment, instead of saying "yyparse or yypush_parse", say either
48 "yyparse" or "yypush_parse" depending on which it actually is.
49
50 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
51
52 Complain about unused %define variables and %code qualifiers.
53 * NEWS (2.5): Document.
54 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
55 * doc/bison.texinfo (Decl Summary): Document complaint, and
56 improve %define documentation a little otherwise.
57 * tests/input.at (Reject unused %code qualifiers): Update.
58 (%define errors): Update.
59 (%define, --define, --force-define): Update.
60 (%define backward compatibility): Update.
61 (Unused %define api.pure): Update.
62 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
63
64 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
65
66 Use aver not assert.
67 * src/output.c: Don't include assert.h.
68 (output_skeleton): Use aver not assert.
69 * src/system.h (aver): In documentation of why, add links to
70 Paul Eggert's explanations in the mailing lists.
71
72 2009-09-05 Alex Rozenman <rozenman@gmail.com>
73
74 Use "Unresolved reference" error message when no symbols were found
75 in a symbolic reference resolution. Remove .expr and -expr from
76 the shown reference when the reference is unresolved.
77 * src/scan-code.l: Change the error message, adjust location columns,
78 rename variable "exact_mode" to "explicit_bracketing".
79 * tests/named-ref.at: Adjust existing tests and add a new one.
80
81 2009-09-03 Akim Demaille <demaille@gostai.com>
82
83 * NEWS (2.4.2): Add "Internationalization" item.
84
85 2009-09-03 Akim Demaille <demaille@gostai.com>
86
87 bootstrap: fix/improve find_tool.
88 * bootstrap (find_tool): Improve error messages.
89 Fix typo about find_tool_names.
90
91 2009-08-29 Joel E. Denny <jdenny@clemson.edu>
92
93 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
94 See
95 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
96 * src/scan-code.h (code_props_rule_action_init): Rename
97 named_ref arg to name so it doesn't shadow named_ref type. This
98 makes it consistent with the function definition in scan-code.l
99 anyway.
100
101 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
102
103 %define: accept unquoted values.
104 * NEWS (2.5): Group all %define changes together, and document
105 this one. Remove quotes in IELR and canonical LR entry.
106 * doc/bison.texinfo: Remove quotes in most examples throughout.
107 (Decl Summary): Update %define documentation.
108 (Table of Symbols): Likewise.
109 * src/ielr.c (LrType): Update documentation.
110 * src/parse-gram.y (content.opt): Add production for ID.
111 * tests/calc.at: Remove quotes in most tests.
112 * tests/existing.at: Likewise.
113 * tests/input.at: Likewise.
114 * tests/local.at: Likewise.
115 * tests/push.at: Likewise.
116 * tests/reduce.at: Likewise.
117 * tests/torture.at: Likewise.
118
119 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
120
121 %define lr.type: make values lowercase IDs.
122 That is, "LALR" => "lalr", "IELR" => "ielr", and
123 "canonical LR" => "canonical-lr".
124 * NEWS (2.5): Update documentation.
125 * doc/bison.texinfo (Decl Summary): Likewise.
126 * src/ielr.c (ielr): Use new values.
127 * src/ielr.h (ielr): Update documentation.
128 * src/reader.c (prepare_percent_define_front_end_variables): Use
129 and validate new values.
130 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
131 grammars.
132 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
133
134 2009-08-27 Eric Blake <ebb9@byu.net>
135
136 scan-gram: avoid portability trap with ctype usage.
137 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
138 Avoid compiler warning.
139
140 2009-08-27 Joel E. Denny <jdenny@clemson.edu>
141
142 tests: use perl for printing special sequences to files.
143 And skip tests if perl is not available. This is better than
144 playing tricks with shell portability. Suggested by Akim
145 Demaille.
146 * tests/input.at (Bad character literals): Use it here for
147 omitting final newlines.
148 (Bad escapes in literals): Use it here for special characters.
149
150 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
151
152 tests: show a use of %define lr.default-reductions "consistent"
153 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
154 prevents the omission of expected tokens for %error-verbose.
155
156 2009-08-26 Akim Demaille <demaille@gostai.com>
157
158 tests: portability fix.
159 * tests/input.at (Bad escapes in literals): Don't expect "echo
160 '\0'" to output \ then 0.
161
162 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
163
164 Actually handle the yytable zero value correctly this time.
165 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Don't
166 mention zero values in the YYTABLE comments.
167 * data/glr.c (yytable_value_is_error): Don't check for zero
168 value.
169 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
170 * data/yacc.c (yytable_value_is_error): Likewise.
171 * data/lalr1.java (yy_table_value_is_error_): Likewise.
172 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
173 * src/tables.h: In header comments, explain why it's useless to
174 check for a zero value in yytable.
175
176 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
177
178 More fixes related to last two patches.
179 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
180 defined.
181 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Fix
182 yytable comments: zero indicates syntax error not default
183 action.
184 * data/glr.c (yyis_pact_ninf): Rename to...
185 (yypact_value_is_default): ... this.
186 (yyisDefaultedState): Update for rename.
187 (yyis_table_ninf): Rename to...
188 (yytable_value_is_error): ... this, and check for value zero
189 besides just YYTABLE_NINF.
190 (yygetLRActions): Check for default value from yypact. It
191 appears that this check is always performed before this function
192 is invoked, and so adding the check here is probably redundant.
193 However, the code may evolve after this subtlety is forgotten.
194 Also, update for rename to yytable_value_is_error. Because that
195 macro now checks for zero, a different but equivalent branch of
196 the if-then-else here is evaluated.
197 (yyreportSyntaxError): Update for rename to
198 yytable_value_is_error. The zero condition was mishandled
199 before.
200 (yyrecoverSyntaxError): Update for renames. No behavioral
201 changes.
202 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
203 New function.
204 (yy_table_value_is_error_): New function.
205 (parse): Use new functions where possible. No behavioral
206 changes.
207 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
208 The zero condition was mishandled before.
209 * data/yacc.c (yyis_pact_ninf): Rename to...
210 (yypact_value_is_default): ... this.
211 (yyis_table_ninf): Rename to...
212 (yytable_value_is_error): ... this, and check for value zero
213 besides just YYTABLE_NINF.
214 (yysyntax_error): Update for rename to yytable_value_is_error.
215 The zero condition was mishandled before.
216 (yyparse): Update for renames. No behavioral changes.
217 * src/tables.h: Improve comments about yypact, yytable, etc.
218 more. Most importantly, say yytable value of zero means syntax
219 error not default action.
220
221 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
222
223 Fix %error-verbose for conflicts resolved by %nonassoc.
224 * NEWS (2.5): Document.
225 * data/glr.c (yyreportSyntaxError): Fix this by checking
226 yyis_table_ninf.
227 * data/yacc.c (yysyntax_error): Likewise.
228 * data/lalr1.cc (yysyntax_error_): Fix this by checking
229 yytable_ninf_.
230 * data/lalr1.java (yysyntax_error): Likewise.
231 * tests/conflicts.at (%nonassoc and eof): Update expected output
232 and remove FIXME.
233
234 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
235
236 Some code and documentation improvements.
237 * data/c.m4 (b4_table_value_equals): New macro to capture
238 some repeated code.
239 * data/glr.c (yyis_pact_ninf): Use it here.
240 (yyis_table_ninf): Likewise.
241 (yyreportSyntaxError): Improve internal comments.
242 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
243 Use it everywhere possible.
244 (yyis_table_ninf): Likewise.
245 (yysyntax_error): Improve internal comments.
246 * data/lalr1.cc (yysyntax_error_): Likewise.
247 * data/lalr1.java (yysyntax_error): Likewise.
248 * src/tables.h: Improve comments about yypact, yytable, etc.
249
250 2009-08-21 Joel E. Denny <jdenny@clemson.edu>
251
252 Use locale when quoting.
253 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
254 quote rather than implementing quoting here.
255
256 2009-08-20 Eric Blake <ebb9@byu.net>
257
258 Make previous patch more robust.
259 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
260 argmatch.h.
261 (output_skeleton): Use it.
262 Suggested by Akim Demaille.
263
264 Import latest m4/m4.m4.
265 * submodules/autoconf: Update to autoconf 2.64.
266 * configure.ac (M4_GNU_OPTION): New define.
267 * src/output.c (output_skeleton): Use it to resolve FIXME.
268 * NEWS: Mention this.
269
270 2009-08-19 Joel E. Denny <jdenny@clemson.edu>
271
272 Fix complaints about escape sequences.
273 Discussed starting at
274 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
275 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
276 For a \0 and similar escape sequences meaning the null
277 character, report an invalid escape sequence instead of an
278 invalid null character because the latter does not actually
279 appear in the user's input.
280 In all escape sequence complaints, don't escape the initial
281 backslash, and don't quote when the sequence appears at the end
282 of the complaint line unless there's whitespace that quotearg
283 won't escape.
284 Consistently say "invalid" not "unrecognized".
285 Consistently prefer "empty character literal" over "extra
286 characters in character literal" warning for invalid escape
287 sequences; that is, consistently discard those sequences.
288 * tests/input.at (Bad escapes in literals): New.
289
290 2009-08-19 Akim Demaille <demaille@gostai.com>
291
292 doc: fixes.
293 * doc/bison.texinfo: Fix minor Texinfo errors.
294
295 2009-08-19 Akim Demaille <demaille@gostai.com>
296
297 doc: %initial-action to initialize yylloc.
298 Reported by Bill Allombert.
299 * doc/bison.texinfo: Set fill-column to 76.
300 (Location Type): Document the use of %initial-action to initialize
301 yylloc.
302
303 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
304
305 maint: update for gnulib's recent update-copyright changes
306 * gnulib: Update.
307 * .x-update-copyright (COPYING): Add as it's no longer implied
308 when .x-update-copyright is present.
309 * cfg.mk (update-copyright-local): Remove, now ignored.
310 (update-copyright): Declare update-b4-copyright as a dependency.
311
312 2009-08-17 Akim Demaille <demaille@gostai.com>
313
314 build: require gettext 0.17.
315
316 Suggested by Bruno Haible.
317 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
318 * configure.ac: require gettext 0.17 to ensure compatibility with
319 gnulib.
320
321 2009-08-17 Akim Demaille <demaille@gostai.com>
322
323 build: lower gettext requirements.
324
325 Bison was uselessly requiring the formatstring macros from
326 gettext, which resulted in mo files not being installed on systems
327 that perfectly supported Bison mo files. Lower the requirement.
328 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
329
330 * configure.ac: Require need-ngettext instead of
331 need-formatstring-macros.
332 Reported by Martin Jabocs.
333 Suggested by Bruno Haible.
334 * INSTALL: Restructure.
335 (Internationalization): New.
336
337 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
338
339 maint: fix use of copyright year intervals.
340 * gnulib: Update.
341 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
342 as now recommended in gnulib/NEWS.
343 * build-aux/update-b4-copyright: Fix.
344 * cfg.mk (update-copyright-env): Configure update-copyright.
345
346 2009-08-13 Joel E. Denny <jdenny@clemson.edu>
347
348 Make it easier to write deterministic tests.
349 Continues Akim's work from his 2009-06-10 commits.
350 * src/reader.c (check_and_convert_grammar): Don't add any
351 symbols after the first symbols_do invocation.
352 * src/symtab.c (symbols_sorted): New static global.
353 (user_token_number_redeclaration): Update comments.
354 (symbol_from_uniqstr): If a new symbol is being created, assert
355 that symbols_sorted hasn't been allocated yet.
356 (symbols_free): Free symbols_sorted.
357 (symbols_cmp, symbols_cmp_qsort): New functions.
358 (symbols_do): Sort symbol_table into symbols_sorted on first
359 invocation.
360 * tests/input.at (Numbered tokens): Recombine tests now that the
361 output should be deterministic across multiple numbers.
362
363 2009-08-12 Akim Demaille <demaille@gostai.com>
364
365 distcheck: fix.
366
367 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
368
369 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
370
371 * tests/Makefile.am (TESTSUITE_AT): Add named-refs.at.
372
373 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
374
375 Miscellaneous code readability improvements.
376
377 * src/reader.c (reader): Move %define front-end variable
378 defaults and checking into...
379 (prepare_percent_define_front_end_variables): ... this new
380 function.
381
382 * src/scan-gram.l (INITIAL): For consistency with string
383 literals, don't store open quote on character literal. It's
384 discarded before returning anyway.
385 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
386 Make length test more readable, and make the character stored
387 for an empty literal more obvious while consistent with the
388 previous behavior.
389
390 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
391 USER_NUMBER_HAS_STRING_ALIAS throughout.
392 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
393 that is repeated in symtab.h. Improve argument names to make it
394 clear which side of the symbol-string alias pair is which.
395 (symbol_check_alias_consistency): Improve local variable names
396 for the same purpose.
397 * src/symtab.h (struct symbol): Make comments about aliases
398 clearer.
399 (symbol_make_alias): Improve comments and argument name.
400 * src/output.c (token_definitions_output): Update for rename to
401 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
402
403 2009-08-08 Alex Rozenman <rozenman@gmail.com>
404
405 Convert "misleading reference" messages to warnings.
406 * src/scan-code.l: New function 'show_sub_messages', more
407 factoring.
408 * tests/named-ref.at: Adjust tests.
409
410 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
411
412 maint: run "make update-copyright"
413
414 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
415
416 maint: make update-b4-copyright easier to use
417 * build-aux/update-b4-copyright: In warnings, report line
418 numbers rather than character positions.
419 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
420 that update-copyright runs it.
421 * gnulib: Update.
422
423 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
424
425 maint: clean up update-b4-copyright code
426 * build-aux/update-b4-copyright: Do not accept 2-digit
427 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
428 Don't accept a `[' in a b4_copyright argument.
429 Format code more consistently.
430 Don't assume b4*copyright never occurs.
431
432 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
433
434 maint: automate b4_copyright updates.
435 * Makefile.am (update-b4-copyright): New target rule.
436 * build-aux/Makefile.am (EXTRA_DIST): Add update-b4-copyright.
437 * build-aux/update-b4-copyright: New.
438 * data/yacc.c: Remove stray characters around b4_copyright
439 invocations.
440
441 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
442
443 maint: automate annual package-wide copyright-year update.
444 * .x-update-copyright: New.
445 * Makefile.am (EXTRA_DIST): Remove maint.mk.
446 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
447 update-copyright. Remove gnumakefile, which is implied by
448 maintainer-makefile.
449 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
450 * gnulib: Update.
451 * maint.mk: Remove, now copied from gnulib.
452 * examples/extexi: Add missing "(C)" in copyright statement so
453 update-copyright can recognize it.
454 * src/LR0.h: Likewise.
455 * src/print.h: Likewise.
456 * src/print_graph.h: Likewise.
457 * src/gram.c: Add missing comma in copyright statement.
458 * src/gram.h: Likewise.
459
460 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
461
462 Fix "make distcheck".
463 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
464 of just calc.stamp.
465
466 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
467
468 Pacify "gcc -Wunused" for the input function from Flex.
469 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
470 and later.
471 * src/scan-code.l: Add "%option noinput", which I cannot find in
472 the Flex manual, but which Flex has supported since at least as
473 far back as 2.5.4. However, if any of our developers still use
474 Flex 2.5.4, they'll need to stop configuring with
475 --enable-gcc-warnings because "%option noinput" didn't work
476 correctly until Flex 2.5.6.
477 * src/scan-gram.l: Likewise.
478 * src/scan-skel.l: Likewise.
479
480 2009-07-31 Alex Rozenman <rozenman@gmail.com>
481
482 Fix --enable-gcc-warnings problems.
483 * src/reader.c: Adjust variable names.
484 * src/scan-code.l: Fix prototypes and adjust names.
485 * src/named-ref.c: Remove redundant "if".
486
487 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
488
489 Fix a --enable-gcc-warnings problem.
490 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
491 variable.
492
493 2009-07-24 Alex Rozenman <rozenman@gmail.com>
494
495 Fix some memory leaks.
496 * src/named-ref.c: Add a pointer check (named_ref_free).
497 * src/scan-code.l: New function (variant_table_free). Called in
498 code_scanner_free.
499 * src/symlist.c: Call to named_ref_free (symbol_list_free).
500
501 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
502
503 Warn about character literals not of length one.
504 * NEWS (2.5): Document.
505 * src/scan-gram.l (INITIAL): Remove comment that we don't check
506 the length.
507 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
508 * tests/input.at (Bad character literals): New test group.
509
510 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
511
512 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
513
514 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
515
516 Some M4 cleanup in the testsuite.
517 Suggested by Eric Blake at
518 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
519 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
520 complicate the code by distinguishing between a missing value
521 and an empty string value for an optional argument. This fix is
522 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
523 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
524 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
525 arguments are not needed because of the following changes.
526 Fix stale comments.
527 Bison developers should use GNU M4 and should not use
528 POSIXLY_CORRECT when building the test suite, so do not
529 complicate the code by avoiding $10 and above.
530 Do not quote an empty string value for an optional argument, and
531 do not distinguish between a missing value and an empty string
532 value.
533
534 2009-07-21 Joel E. Denny <jdenny@ces.clemson.edu>
535
536 * m4/m4.m4: Make it a sym link to submodules/autoconf/m4/m4.m4.
537
538 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
539
540 Revert unnecessary column realignment in --help output.
541 Reported by Akim Demaille at
542 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
543 * src/getargs.c (usage): Here.
544
545 2009-07-04 Alex Rozenman <rozenman@gmail.com>
546
547 Alphabetical order in src/Makefile.am.
548 * src/Makefile.am: Adjust.
549
550 2009-07-04 Alex Rozenman <rozenman@gmail.com>
551
552 Style changes and factoring.
553 * src/named-ref.h: Add comments.
554 * src/parse-gram.y: Readability and style changes.
555 * src/reader.c: Factoring: assign_named_ref function.
556 * src/scan-code.l: Factoring and style changes. Rename
557 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
558 Use "unsigned" type for variant index. Improve readablity.
559 * src/scan-gram.l: Change error messages and add comments.
560 * src/symlist.h: symbol_list_null: New function decl.
561 * src/symlist.c: symbol_list_null: Implement here.
562 * tests/named-refs.at: Adjust for new error messages.
563
564 2009-06-29 Eric Blake <ebb9@byu.net>
565
566 scan-code: avoid compiler warnings
567 * src/scan-code.l (parse_named_ref): Use correct specifiers.
568
569 2009-06-29 Akim Demaille <demaille@gostai.com>
570
571 build: avoid concurrent extraction of calc++.
572 * examples/calc++/Makefile.am (calc.stamp): New.
573 Depend on it to create the sources of calc++ so that concurrent
574 builds don't launch several "extexi" in parallel.
575 Not only this is inefficient, this also builds incorrect sources
576 with several extractions mixed together.
577
578 2009-06-27 Alex Rozenman <rozenman@gmail.com>
579
580 Implement support for named symbol references.
581 * src/parse-gram.y: Add new syntax (named_ref.opt).
582 * src/reader.c: Store named refs in symbol lists.
583 * src/reader.h: New argument for symbol_append and
584 action_append functions.
585 * src/scan-code.h: Add new field (named_ref) into
586 code_props data structure. Keeps named ref of midrule
587 actions.
588 * src/scan-code.l: Support for named refs in semantic
589 action code. New function 'parse_named_ref'.
590 * src/scan-gram.l: Support bracketed id.
591 * src/symlist.c: Store named refs in symbol lists.
592 * src/symlist.h: New field in symbol list: named_ref.
593 * src/named-ref.h: New file, a struct for named_ref.
594 * src/named-ref.cp: New file, named_ref_new function.
595 * src/local.mk: Add two new files.
596 * tests/testsuite.at: Include new test group:
597 * tests/named-refs.at: this new file.
598
599 2009-06-25 Akim Demaille <demaille@gostai.com>
600
601 hash: check insertion for memory exhaustion.
602 * src/uniqstr.c (uniqstr_new): New.
603
604 2009-06-11 Akim Demaille <demaille@gostai.com>
605
606 style changes.
607 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
608 * src/print-xml.c: Style changes.
609 * tests/conflicts.at: Comment changes.
610
611 2009-06-11 Akim Demaille <demaille@gostai.com>
612
613 xml: beware of user strings used to give a %prec to rules.
614 * tests/conflicts.at (%prec with user strings): New.
615 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
616 XML output.
617
618 2009-06-11 Akim Demaille <demaille@gostai.com>
619
620 hash: check insertion for memory exhaustion.
621 * src/muscle-tab.c (muscle_insert, muscle_grow)
622 * src/state.c (state_hash_insert): Check the return value of
623 hash_insert.
624
625 2009-06-10 Akim Demaille <demaille@gostai.com>
626
627 deterministic test suite.
628 Some consistency checks on symbols are performed after all the
629 symbols were read, by an iteration over the symbol table. This
630 traversal is nondeterministic, which can be a problem for test
631 cases.
632 Avoid this.
633 Addresses another form of nondeterminism reported by Joel E. Denny.
634 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
635
636 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
637 test in two.
638 Use different file names for the three tests to make the
639 maintenance easier.
640
641 2009-06-10 Akim Demaille <demaille@gostai.com>
642
643 deterministic user-token-number redeclaration errors.
644 Address nondeterminism reported by Joel E. Denny.
645 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
646
647 * src/uniqstr.h: Comment changes.
648 * src/location.h (boundary_cmp, location_cmp): New.
649 * src/symtab.c (user_token_number_redeclaration): New.
650 (symbol_translation): Use it.
651 * tests/input.at (Numbered tokens): Adjust the expected output.
652
653 2009-05-25 Akim Demaille <demaille@gostai.com>
654
655 gnulib: update.
656 * gnulib: Update to latest.
657 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
658 * m4/.gitignore: Regen.
659 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
660 Call xalloc_die on hash_insert failures.
661 Requested by the new __warn_unused_result__ attribute of
662 hash_insert.
663
664 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
665
666 Convert multiple variable definition warnings to complaints.
667 * NEWS (2.5): Add a new entry for that change.
668 * doc/bison.texinfo (Decl Summary): Update %define entry.
669 (Bison Options): Update -D/--define/-F/--force-define entry.
670 * src/muscle_tab.c (muscle_percent_define_insert): Implement.
671 * src/muscle_tab.h (muscle_percent_define_insert): Update
672 comments.
673 * tests/input.at (`%define errors'): Update.
674 (`%define, --define, --force-define'): Update.
675
676 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
677
678 -F/--force-define and relative %define/-D/--define priorities.
679 * NEWS (2.5): Add documentation to -D/--define entry.
680 * build-aux/cross-options.pl: Hard-code association of
681 --force-define with %define.
682 * doc/bison.texinfo (Decl Summary): In %define entry,
683 cross-reference command-line options.
684 (Bison Options): Add documentation to -D/--define entry.
685 (Option Cross Key): Widen column for --force-define row.
686 * src/getargs.c (usage): Document -F/--force-define. Realign
687 options in output.
688 (short_options, long_options, getargs): Parse -F/--force-define,
689 and update muscle_percent_define_insert invocation.
690 * src/muscle_tab.h (muscle_percent_define_how): New enum type.
691 (muscle_percent_define_insert): Add argument with that type.
692 * src/muscle_tab.c (muscle_percent_define_insert): Implement
693 -F/--force-define behavior and priorities.
694 * src/parse-gram.y (prologue_declaration): Update
695 muscle_percent_define_insert invocations.
696 * tests/input.at (`%define, --define'): Rename to...
697 (`%define, --define, --force-define'): ... this and extend.
698
699 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
700
701 Update some comments to make sense for -D.
702 * data/bison.m4 (b4_check_user_names): In header comments, say
703 "user occurrence" instead of "grammar occurrence".
704 * src/muscle_tab.h (muscle_percent_define_insert): Likewise.
705 (muscle_percent_code_grow): Likewise just for consistency.
706
707 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
708
709 * data/c++.m4: Update copyright year.
710
711 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
712
713 * data/c++.m4 (b4_namespace_close): Simplify slightly.
714
715 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
716
717 Handle a trailing `:' in a user-supplied C++ namespace better.
718 * data/c++.m4 (b4_namespace_close): Don't let it be printed
719 among the closing braces here. This fix might make the
720 generated code easier to debug, but otherwise it should be
721 insignificant because a trailing `:' is a C++ error already.
722
723 2009-05-19 Akim Demaille <demaille@gostai.com>
724
725 remove useless variable.
726 * src/getargs.c (skeleton_arg): Remove now useless variable.
727 Should help the compiler see that this printf-like call is sane.
728
729 2009-05-11 Akim Demaille <demaille@gostai.com>
730
731 doc: use C++ headers.
732 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
733 headers.
734
735 2009-05-05 Akim Demaille <demaille@gostai.com>
736
737 fix hexadecimal token number support.
738 * src/scan-gram.l: Catch incorrect ids after hexadecimal numbers.
739
740 2009-05-05 Akim Demaille <demaille@gostai.com>
741
742 tests: check token numbers.
743 * tests/input.at (Numbered tokens): New.
744
745 2009-05-04 Akim Demaille <demaille@gostai.com>
746
747 bison: catch bad symbol names.
748 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
749 * tests/input.at: Adjust.
750
751 2009-05-04 Akim Demaille <demaille@gostai.com>
752
753 space changes.
754 * src/scan-gram.l: Untabify to be robust to zealous editors.
755
756 2009-05-04 Akim Demaille <demaille@gostai.com>
757
758 identifiers: dashes are letters.
759 Dashes can now start identifiers (symbols and directives).
760
761 * src/scan-gram.l ({letter}): Add dash.
762 ({id}): Remove it.
763 * tests/input.at (Symbols): Adjust.
764 Remove stray comment.
765 * tests/regression.at (Invalid inputs): Adjust error message.
766 * doc/bison.texinfo (Symbols): Update.
767
768 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
769
770 Declare %code to be a permanent feature.
771 * NEWS (2.4.2): Here.
772 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
773 experimental.
774 (Decl Summary): Likewise.
775
776 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
777
778 Convert underscores to dashes in some %define variable names.
779 For now, just api.push-pull and lr.keep-unreachable-states.
780 Maintain old names for backward compatibility.
781 * NEWS (2.5): Document.
782 * data/c.m4 (b4_identification): Update comment.
783 * data/yacc.c: Update access.
784 * doc/bison.texinfo: Update.
785 * etc/bench.pl.in (bench_grammar): Update use.
786 * src/files.c (tr): Move to...
787 * src/getargs.c, src/getargs.h (tr): ... here because I can't
788 think of a better place to expose it. My logic is that, for all
789 uses of tr so far, command-line arguments can be involved, and
790 getargs.h is already included.
791 * src/main.c (main): Update access.
792 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
793 variable names to new variable names before assigning value.
794 * src/reader.c (reader): Update setting default.
795 * tests/calc.at: Update uses.
796 * tests/conflicts.at (Unreachable States After Conflict
797 Resolution): Update use.
798 * tests/input.at (%define enum variables): Update use.
799 (%define backward compatibility): New test group.
800 * tests/push.at: Update uses.
801 * tests/reduce.at: Update uses.
802 * tests/torture.at: Update uses.
803
804 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
805
806 Set all front-end %define defaults in one place.
807 * src/main.c (main): Move lr.keep_unreachable_states default...
808 * src/reader.c (reader): ... to here.
809
810 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
811
812 Rename lr.default_reductions to lr.default-reductions.
813 * NEWS (2.5): Here.
814 * doc/bison.texinfo: Here.
815 * src/lalr.c (initialize_LA): Here.
816 * src/print.c (print_reductions): Here.
817 * src/reader.c (reader): Here.
818 * src/tables.c (action_row): Here.
819 * tests/input.at (%define enum variables): Here.
820 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
821
822 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
823
824 Pacify ./configure --enable-gcc-warnings.
825 * tests/input.at (Symbols): Prototype yyerror and yylex.
826
827 2009-04-21 Akim Demaille <demaille@gostai.com>
828
829 tests: check the use of dashes and periods in symbols.
830 * tests/input.at (Symbol): New test group.
831
832 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
833
834 Document how `%define "var" "value"' is not M4-friendly.
835 * src/parse-gram.y (variable): In comments here.
836
837 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
838
839 Add copyright updates missed during previous cherry pick.
840 * src/output.c: Here.
841 * src/parse-gram.y: Here.
842 * src/scan-gram.l: Here.
843
844 2009-04-20 Akim Demaille <demaille@gostai.com>
845
846 variables: accept dashes.
847 * src/scan-gram.l ({id}): Also accept dashes after the initial
848 letter.
849 ({directive}): Use {id}.
850 * src/parse-gram.y: Comment and formatting changes.
851 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
852 symbols.
853 * src/complain.h, src/complain.c (yacc_at): New.
854 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
855 symbol names.
856 * src/output.c (token_definitions_output): Do not #define token
857 names with dashes.
858
859 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
860
861 Clean up recent patches a little.
862 Reported by Akim Demaille.
863 * doc/bison.texinfo (Understanding): Fix typos.
864 * src/print.c (print_reductions): Don't use negated variable.
865
866 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
867
868 List accepted values for a %define enum variable with an invalid value.
869 Suggested by Akim Demaille at
870 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
871 * data/bison.m4 (_b4_percent_define_check_values): Implement.
872 * src/muscle_tab.c (muscle_percent_define_check_values): Implement.
873 * tests/input.at (%define lr.default_reductions invalid values): Merge
874 into...
875 (%define enum variables): ... here, and update output.
876
877 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
878
879 Rename "default rule" to "default reduction".
880 This includes changing variable names in code, changing
881 comments, and renaming %define lr.default_rules to %define
882 lr.default_reductions.
883 * NEWS (2.5): Update IELR documentation.
884 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c:
885 Adjust YYDEFACT and yydefact_ documentation.
886 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
887 and lr.type documentation. Make some other wording
888 improvements.
889 (Glossary): Adjust cross-references and Default Reduction
890 definition.
891 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
892 Remove a confusing comment pointed out by Akim Demaille.
893 (initialize_LA): Adjust code.
894 * src/print-xml.c (print_reductions): Adjust code.
895 * src/print.c (print_reductions): Adjust code.
896 * src/reader.c (reader): Adjust code.
897 * src/tables.c (action_row): Adjust code.
898 (token_actions): Adjust code.
899 * src/tables.h: Adjust YYDEFACT documentation.
900 * tests/input.at (%define lr.default_rules invalid values):
901 Rename test group to...
902 (%define lr.default_reductions invalid values): ... this, and
903 update grammar file and expected output.
904 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
905 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
906
907 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
908
909 Document %define lr.type and lr.default_rules.
910 * NEWS (2.5): Add an entry.
911 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
912 besides just LALR(1) and GLR(1).
913 * doc/bison.texinfo (Introduction): Likewise.
914 (Language and Grammar): Bison is no longer limited to LALR(1)
915 restrictions.
916 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
917 when trying to distinguish from GLR. Talk about LR(1) grammars
918 rather than LALR(1) grammars.
919 (Decl Summary): In %define api.push_pull entry, say it applies
920 to deterministic parsers in C rather than LALR(1) parsers in C.
921 Add lr.default_rules entry.
922 Add lr.type entry.
923 (Mystery Conflicts): Bison is no longer limited to LALR(1)
924 restrictions.
925 (Generalized LR Parsing): Same changes as for the previous GLR
926 section.
927 (Memory Management): Say deterministic rather than LALR(1).
928 (Understanding): Correct some bison output.
929 Index discussion of "accepting state".
930 Say deterministic rather than LALR(1).
931 (Bison Options): In --yacc entry, say deterministic rather than
932 LALR(1).
933 In --report, --graph, and --xml entries, just don't mention
934 LALR(1).
935 (C++ Parsers): Say deterministic rather than LALR(1).
936 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
937 (Glossary): Add Accepting State, Consistent State, Default Rule,
938 and IELR(1) definitions.
939 In Generalized LR (GLR) definition, make same changes as in
940 previous GLR sections.
941 In LALR(1) definition, say Bison uses LALR(1) by default rather
942 than implying Bison is limited to LALR(1).
943 (LocalWords): Add IELR.
944
945 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
946
947 Finish implementing %define lr.type.
948 Its value can be "LALR", "IELR", or "canonical LR".
949 * lib/timevar.def (TV_IELR_PHASE1): New var.
950 (TV_IELR_PHASE2): New var.
951 (TV_IELR_PHASE3): New var.
952 (TV_IELR_PHASE4): New var.
953 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
954 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
955 Sbitset.h, ielr.h, and ielr.c.
956 * src/getargs.h, src/getargs.c (enum trace, trace_args,
957 trace_types): Add trace_ielr.
958 * src/lalr.h, src/lalr.c (ngotos): Export it.
959 (F): Rename to...
960 (goto_follows): ... this, update all uses, and export it.
961 (set_goto_map): Export it.
962 (map_goto): Export it.
963 (compute_lookahead_tokens): Don't free goto_follows yet. Now
964 handled in ielr.
965 (initialize_LA): Export it. Move lookback allocation to...
966 (lalr): ... here because, for canonical LR, initialize_LA must
967 be invoked but lookback and much of the rest of LALR isn't
968 needed.
969 * main.c (main): Instead of lalr, invoke ielr, which invokes
970 lalr.
971 * src/reader.c (reader): Default lr.type to "LALR".
972 Default lr.default_rules to "accepting" if lr.type is "canonical
973 LR". Leave the default as "all" otherwise.
974 Check for a valid lr.type value.
975 * src/state.h, src/state.c (struct state_list): Add state_list
976 member.
977 (state_new): Initialize state_list member to NULL.
978 (state_new_isocore): New function, exported.
979 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
980 exercises all values of lr.type.
981 (GNU AWK Grammar): Rename test group to...
982 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
983 AT_TEST_EXISTING_GRAMMAR.
984 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
985 (GNU pic Grammar): Rename test group to...
986 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
987 AT_TEST_EXISTING_GRAMMAR.
988 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
989 all values of lr.type.
990 (Single State Split): New test groups using AT_TEST_LR_TYPE.
991 (Lane Split): Likewise.
992 (Complex Lane Split): Likewise.
993 (Split During Added Lookahead Propagation): Likewise.
994
995 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
996
997 Add new files for IELR and canonical LR implementation.
998 * src/AnnotationList.c: New.
999 * src/AnnotationList.h: New.
1000 * src/InadequacyList.c: New.
1001 * src/InadequacyList.h: New.
1002 * src/Sbitset.c: New.
1003 * src/Sbitset.h: New.
1004 * src/ielr.c: New.
1005 * src/ielr.h: New.
1006
1007 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1008
1009 Implement %define lr.default_rules.
1010 Its value describes the states that are permitted to contain
1011 default rules: "all", "consistent", or "accepting".
1012 * src/reader.c (reader): Default lr.default_rules to "all".
1013 Check for a valid lr.default_rules value.
1014 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
1015 is "accepting", then only mark the accepting state as
1016 consistent.
1017 (initialize_LA): Tell state_lookahead_tokens_count whether
1018 lr.default_rules is "accepting".
1019 * src/tables.c (action_row): If lr.default_rules is not "all",
1020 then disable default rules in inconsistent states.
1021 * src/print.c (print_reductions): Use this opportunity to
1022 perform some assertions about whether lr.default_rules was
1023 obeyed correctly.
1024 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
1025 helps with checking the parser tables for a grammar.
1026 * tests/input.at (%define lr.default_rules invalid values): New
1027 test group.
1028 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
1029 AT_TEST_TABLES_AND_PARSE.
1030 (`no %define lr.default_rules'): New test group generated by
1031 AT_TEST_LR_DEFAULT_RULES.
1032 (`%define lr.default_rules "all"'): Likewise.
1033 (`%define lr.default_rules "consistent"'): Likewise.
1034 (`%define lr.default_rules "accepting"'): Likewise.
1035
1036 2009-04-20 Akim Demaille <demaille@gostai.com>
1037
1038 Consistently refer to Yacc, not YACC.
1039 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
1040
1041 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
1042
1043 Pacify make maintainer-check-posix.
1044 * tests/input.at (%define, --define): Move bison command-line
1045 options before grammar file name.
1046
1047 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1048
1049 Document semicolon warnings.
1050 * NEWS (2.5): Here.
1051
1052 2008-12-08 Akim Demaille <demaille@gostai.com>
1053
1054 Fix portability issue in the test suite.
1055 * tests/local.at (AT_MATCHES_CHECK): New.
1056 Based on Perl instead of Sed. Sed has too many portability
1057 pitfalls, not ever Sed is GNU Sed.
1058 * tests/actions.at (Fix user actions without a trailing semicolon):
1059 Use it.
1060
1061 2008-12-07 Di-an Jan <dianj@freeshell.org>
1062
1063 Implement the FIXME that ends an user action with a semicolon
1064 if it seems necessary.
1065 * src/scan-code.l (flex rules section): Flag cpp directive from
1066 any `#' to the first unescaped end-of-line. Semicolon is not
1067 needed after `;', `{', '}', or cpp directives and is needed after
1068 any other token (whitespaces and comments have no effect).
1069 * tests/actions.at (Fix user actions without a trailing semicolon):
1070 New test.
1071 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
1072 to make user actions complete statements.
1073 Adjust column numbers in error messages.
1074 * tests/regression.at (Fix user actions without a trailing semicolon):
1075 Remove. Covered by new test.
1076
1077 2009-04-14 Akim Demaille <demaille@gostai.com>
1078
1079 doc: minor fixes.
1080 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
1081 (Table of Symbols): Remove duplicate entry for %debug.
1082
1083 2009-04-10 Eric Blake <ebb9@byu.net>
1084
1085 submodules: update to latest
1086 * submodules/autoconf: Use latest upstream Autoconf.
1087
1088 2009-04-06 Eric Blake <ebb9@byu.net>
1089
1090 Work around autoconf 2.63b bug in testsuite.
1091 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
1092 autoconf bug related to # in test.
1093
1094 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1095
1096 * NEWS (2.5): Describe new -D/--define feature.
1097
1098 2008-11-10 Akim Demaille <demaille@gostai.com>
1099
1100 --trace=muscles
1101 * src/getargs.h, src/getargs.c (trace_muscle): New.
1102 (trace_types, trace_args): Support it.
1103 * src/output.c (output_skeleton): Use it.
1104
1105 2008-11-10 Akim Demaille <demaille@gostai.com>
1106
1107 muscles_output.
1108 * src/output.c (muscles_output): New, extracted from...
1109 (output_skeleton): here.
1110 Adjust.
1111
1112 2008-11-21 Akim Demaille <demaille@gostai.com>
1113
1114 Display the changes in cross-options.texi.
1115 * build-aux/cross-options.pl ($sep): New, to separate items.
1116 * doc/Makefile.am ($(srcdir)/cross-options.texi): Use diff to display
1117 the changes.
1118
1119 2008-11-20 Di-an Jan <dianj@freeshell.org>
1120
1121 Improves options in the manual.
1122 * doc/bison.texinfo (-g, -x): Add space before argument.
1123 (Option Cross Key): Implement FIXME: listing directives also.
1124 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
1125 (Short Option): Special case -d. Put arguments inside @option.
1126 (Bison Directive): Add column, automatically extracted from
1127 src/scan-gram.l (actual name passed as the first argument)
1128 with special case for %define.
1129 * doc/Makefile.am (doc/cross-options.texi): Pass src/scan-gram.l
1130 to build-aux/cross-options.pl.
1131 * src/getargs.c (usage): Document limitations of cross-options.pl.
1132 * src/scan-gram.l: Likewise.
1133
1134 2009-02-25 Akim Demaille <demaille@gostai.com>
1135
1136 Copyright years.
1137 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
1138
1139 2008-12-08 Akim Demaille <demaille@gostai.com>
1140
1141 Install autoconf as a submodule to get m4sugar.
1142 * .gitmodules: Add submodules/autoconf.
1143 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
1144 submodules/autoconf.
1145
1146 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1147
1148 Simplify last patch slightly.
1149 * src/getargs.c (getargs): Here.
1150
1151 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1152
1153 Fix last warning from --enable-gcc-warnings.
1154 * src/getargs.c (getargs): Don't assign const address to non-const
1155 pointer.
1156
1157 2008-11-17 Di-an Jan <dianj@freeshell.org>
1158
1159 Handle --enable-gcc-warnings.
1160 * src/getargs.c (command_line_location): Set parameters to void.
1161
1162 2008-11-11 Akim Demaille <demaille@gostai.com>
1163
1164 AT_FULL_COMPILE.
1165 * tests/actions.at, tests/regression.at: Use it.
1166
1167 2008-11-07 Akim Demaille <demaille@gostai.com>
1168
1169 Pass command line location to skeleton_arg and language_argmatch.
1170 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
1171 The location argument is now mandatory.
1172 Adjust all dependencies.
1173 (getargs): Use command_line_location.
1174
1175 2008-11-07 Akim Demaille <demaille@gostai.com>
1176
1177 -D, --define.
1178 * src/getargs.c (usage): Document -D.
1179 Fix help string for --locations.
1180 (command_line_location): New.
1181 (short_options, long_options, getargs): Support -D, --define.
1182 (getargs): Move -d support at the right place.
1183 * doc/bison.texinfo (Bison Options): Update.
1184 * tests/input.at (%define, --define): New.
1185
1186 2008-11-07 Akim Demaille <demaille@gostai.com>
1187
1188 Initialize the muscle table before parsing the command line.
1189 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
1190 (getargs): Define file_name.
1191 * src/main.c (main): Initialize muscle_tab before calling
1192 getargs.
1193 * src/muscle_tab.c (muscle_init): No longer define file_name, as
1194 its value is not available yet.
1195
1196 2008-11-09 Akim Demaille <demaille@gostai.com>
1197
1198 Require the generation of parse-gram.output.
1199 * src/Makefile.am (YACC): Pass --report=all.
1200
1201 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1202
1203 * NEWS (2.5): New stub.
1204
1205 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1206
1207 Fix options documentation.
1208 * build-aux/cross-options.pl: As in --help output, write optional
1209 arguments as [=ARG] not =[ARG].
1210 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
1211
1212 2008-11-07 Akim Demaille <demaille@gostai.com>
1213
1214 Fix --help.
1215 * src/getargs.c (usage): Fix help string for -W.
1216
1217 2008-11-07 Akim Demaille <demaille@gostai.com>
1218
1219 Handle more general types of option arguments.
1220 * build-aux/cross-options.pl: The argument ends at the first
1221 space, not the first non-symbol character.
1222 Use @var for each word appearing the argument description.
1223
1224 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1225
1226 Remove spurious initial empty lines.
1227 * data/location.cc: End the @output lines with an @.
1228
1229 2008-11-04 Akim Demaille <demaille@gostai.com>
1230
1231 Remove spurious initial empty lines.
1232 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1233 * data/yacc.c: End the @output lines with an @.
1234
1235 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1236
1237 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
1238 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
1239 requirements for a correct m4 are stricter.
1240 * m4/m4.m4: Replace with Autoconf 2.63's m4/m4.m4.
1241 * configure.ac: Update to use AC_PROG_GNU_M4.
1242 Reported by Eric Blake.
1243
1244 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1245
1246 Help with updating web manual.
1247 * HACKING: Incorporate instructions from gnulib/doc/README.
1248 * bootstrap.conf (gnulib_modules): Add gendocs.
1249
1250 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1251
1252 Fix strange %define locations for default values.
1253 Reported by Akim Demaille at
1254 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
1255 and discussed again starting at
1256 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
1257 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
1258 because location information is bogus.
1259 Use angle brackets to delimit fake file name because square brackets
1260 look like underexpanded m4. Choose a better fake file name.
1261 Use negative line numbers.
1262 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
1263 * src/location.c (location_print): If line for a boundary is negative,
1264 only print that boundary's file name.
1265 * src/location.h: Document that.
1266 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1267 defaults): Update output.
1268
1269 2008-11-07 Akim Demaille <demaille@gostai.com>
1270
1271 Locations without columns for command line arguments.
1272 * src/location.c (location_print): Don't display negative columns.
1273 * src/location.h: Document this.
1274
1275 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
1276
1277 Add reminder about uploading public key to keys.gnupg.net.
1278 * HACKING (Release Procedure): Here.
1279
1280 2009-03-31 Akim Demaille <demaille@gostai.com>
1281
1282 bootstrap: --help to stdout.
1283 * bootstrap (usage): Don't send --help to stderr.
1284 Use a here doc instead of a long string.
1285
1286 2009-03-31 Akim Demaille <demaille@gostai.com>
1287
1288 bootstrap: README-hacking no longer exists
1289 * bootstrap (checkout_only_file): Set to HACKING.
1290
1291 2009-03-26 Akim Demaille <demaille@gostai.com>
1292
1293 doc: merge HACKING and README-hacking.
1294 Two files is confusing.
1295 Reported by Alexandre Duret-Lutz.
1296
1297 * README-hacking: Merge into...
1298 * HACKING (Working from the repository): here.
1299
1300 2009-03-26 Akim Demaille <demaille@gostai.com>
1301
1302 doc: update README-hacking.
1303 * README-hacking: We now use git and git submodules.
1304 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
1305
1306 2009-03-26 Akim Demaille <demaille@gostai.com>
1307
1308 lalr1.cc: avoid GCC 4.3 warnings.
1309 GCC 4.3 now warns about "a || b && c" and asks for explicit
1310 parentheses.
1311 Reported by Alexandre Duret-Lutz.
1312 * data/location.cc: Update copyright years.
1313 (Position::operator==): Use parens to make precedence explicit.
1314 Compare lines and columns first, as they are more likely to be
1315 different, and they are faster to compare.
1316
1317 2009-03-26 Akim Demaille <demaille@gostai.com>
1318
1319 gnulib: update.
1320 * gnulib: Update to latest.
1321 * lib/Makefile.am (AM_CPPFLAGS): It is now defined by gnulib, so
1322 use +=.
1323
1324 2009-01-08 Akim Demaille <demaille@gostai.com>
1325
1326 Fix grep portability issues.
1327 Grep on Solaris does not support -q.
1328 Reported by Summum Bonum.
1329
1330 * NEWS: Add a stub for 2.4.2.
1331 * THANKS: Add Summum Bonum.
1332 * tests/atlocal.in (EGREP): New.
1333 (CC, CXX, XSLTPROC): Make it possible to override them via
1334 envvars.
1335 * tests/java.at: Use $EGREP instead of egrep.
1336 Use AT_CHECK's ignore instead of grep's -q.
1337
1338 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1339
1340 Version 2.4.1.
1341 * NEWS: Set version and date.
1342 * lib/Makefile.am: Update copyright year.
1343 * tests/atlocal.in: Update copyright year.
1344
1345 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1346
1347 Semicolon feature removal is not about future language support.
1348 * NEWS: The semicolon feature is no longer active for newer languages,
1349 so don't claim that it causes trouble for them.
1350
1351 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1352
1353 * gnulib: Update submodule to HEAD.
1354
1355 2008-12-09 Akim Demaille <demaille@gostai.com>
1356
1357 Update data/README.
1358 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
1359
1360 2008-12-05 Eric Blake <ebb9@byu.net>
1361
1362 Build testsuite with newer autoconf.
1363 * tests/output.at (m4_expand): Don't override in newer autoconf,
1364 where the underlying implementation changed.
1365 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
1366 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
1367 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
1368 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
1369 since some of them contain unbalanced ')'.
1370
1371 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
1372
1373 * NEWS: Clarify a little.
1374
1375 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
1376
1377 * NEWS: Update for recent changes.
1378
1379 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1380
1381 Fix unexpanded macros in GLR defines file.
1382 Reported by Csaba Raduly at
1383 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
1384 * THANKS (Csaba Raduly): Add.
1385 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
1386 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
1387 lexer in a separate module that includes the defines file.
1388 (AT_CHECK_CALC): Use AT_FULL_COMPILE and request compilation of lexer
1389 source.
1390 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
1391 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
1392 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
1393 (AT_DATA_SOURCE_PROLOGUE): New.
1394 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
1395 (AT_DATA_SOURCE): New.
1396 (AT_FULL_COMPILE): New, copied from master branch and extended to
1397 support an additional source file.
1398
1399 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1400
1401 Don't let maintainer-*-check targets force a version update.
1402 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
1403 handled.
1404
1405 2008-11-17 Di-an Jan <dianj@freeshell.org>
1406
1407 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
1408 Align menus. Adjust word wrapping. Use node names for menu names.
1409 (Examples): Don't abbreviate node names.
1410 (LocalWords): Remove abbreviations.
1411 (Copying): Make description a sentence.
1412 (Java Action Features): Remove period to match the rest of menu.
1413
1414 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
1415
1416 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
1417 * configure.ac: Adjust usage.
1418 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1419 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1420 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
1421
1422 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1423
1424 Don't add a semicolon to actions for %skeleton or %language.
1425 It breaks Java test cases as reported by Akim Demaille.
1426 * src/scan-code.l: Implement.
1427
1428 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1429
1430 Clean up %skeleton and %language priority implementation.
1431 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
1432 remove static qualifier because others will soon need to see it.
1433 (language_prio): Likewise.
1434 (getargs): Use command_line_prio rather than 0.
1435 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
1436 enum fields.
1437 (skeleton_prio): Extern it.
1438 (language_prio): Extern it.
1439 * src/parse-gram.y: Use grammar_prio rather than 1.
1440
1441 2008-11-04 Akim Demaille <demaille@gostai.com>
1442
1443 * NEWS: Mention the trailing semicolon in action.
1444
1445 2008-11-04 Akim Demaille <demaille@gostai.com>
1446
1447 Reformat NEWS.
1448 * NEWS: Use more outline-mode markup.
1449 Suggested by Jim Meyering.
1450
1451 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
1452
1453 Fix user actions without a trailing semicolon.
1454 Reported by Sergei Steshenko at
1455 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
1456 * THANKS (Sergei Steshenko): Add.
1457 * src/scan-code.l (SC_RULE_ACTION): Fix it.
1458 * tests/regression.at (Fix user actions without a trailing semicolon):
1459 New test case.
1460
1461 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1462
1463 Initiate further development.
1464 * NEWS: Create an empty section for new entries.
1465 * gnulib: Update submodule to HEAD.
1466
1467 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1468
1469 * NEWS: Version 2.4.
1470
1471 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1472
1473 Prepare for next release.
1474 * NEWS: Briefly mention changes since 2.3b.
1475 * README: Say GNU m4 1.4.6, which we've been requiring in release
1476 announcements already, not 1.4.3, which breaks the build.
1477
1478 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1479
1480 Say %language is experimental.
1481 We're thinking of extending it's effect on output file naming. See the
1482 thread at
1483 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1484 * NEWS: Say it's experimental.
1485 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1486 recommend it over %skeleton for now.
1487 (Bison Options): Likewise.
1488 (C++ Bison Interface): Use %skeleton not %language.
1489 (Calc++ Parser): Use %skeleton not %language.
1490 * src/getargs.c (usage): Say it's experimental.
1491
1492 2008-11-01 Di-an Jan <dianj@freeshell.org>
1493 Paolo Bonzini <bonzini@gnu.org>
1494
1495 Support all Java parser class modifiers.
1496 * data/java.m4 (b4_percent_define_get3): New.
1497 (b4_final_if, b4_strictfp_if): New.
1498 * data/lalr1.java (final, strictfp, extends, implements): Support.
1499 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1500 documentation.
1501 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1502 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1503 (AT_CHECK_JAVA_GREP): New.
1504 (Java parser class modifiers): New test.
1505 (Java parser class extends and implements): New test.
1506
1507 Model exception propagation better with throws and lex_throws.
1508 * data/java.m4 (b4_list2): New.
1509 (throws): Change default.
1510 * data/lalr1.java (yyaction): Add throws.
1511 (parse): Add lex_throws in addition to throws.
1512 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1513 * tests/java.at (Java throws specifications): New test.
1514
1515 Improve documentation for Java parsers.
1516 * doc/bison.texinfo (Java Parsers): Add subsections.
1517 Don't quote first argument of %define.
1518 (Java Bison Interface): Document output files. Move documentation
1519 of parser class and merge into Java Parser Interface. Document
1520 features that error out. Document directives with no effect.
1521 Move note about Javadoc higher.
1522 (Java Semantic Values): Explicitly mention stype.
1523 Document that generic types cannot be used.
1524 (Java Location Values): Use @deftypeivar. Document constructors.
1525 Correct return value for toString.
1526 (Java Parser Interface): List undocumented constants/fields.
1527 Move documentation of fields added by %parse-param closer to list
1528 of members. Document that token names are added as fields.
1529 Document constructors accurately. Remove error method.
1530 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1531 Interface. Describe %code lexer and yylex accutately.
1532 Remove documentation that does not match the code.
1533 (Java Action Features): New.
1534 (Java Differences): Add reference. Add item on semantic values.
1535 Add note about @{ ... @}. Clarify %% epilogue placement.
1536 (Java Declarations Summary): New.
1537
1538 Fix Java skeleton.
1539 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1540 (b4_remove_comma): Quote test argument.
1541 (b4_identification): Remove "bison" field.
1542 * tests/java.at (Java parser class and package names): New test.
1543 (Java %parse-param and %lex-param): New test.
1544 (Java stype, position_class and location_class): New test.
1545
1546 2008-10-31 Di-an Jan <dianj@freeshell.org>
1547
1548 * data/lalr1.jave: Update copyright years.
1549 (YYParser): Correct name of "generated from" file in Javadoc:
1550 use b4_file_name instead of @ofile@.
1551 (Location constructor): Correct Javadoc parameter name.
1552 (yylloc): Add missing opening m4 quote after b4_location_if.
1553 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1554 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1555 (YYParser constructor): Correct Javadoc parameter name.
1556
1557 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1558
1559 Always put auxiliary code files in the same dir as other output files.
1560 * src/files.c (compute_file_name_parts): When the user specifies
1561 --output but not --file-prefix, extract the directory prefix from the
1562 file prefix not from the grammar file name. This affects the location
1563 of files like location.hh generated by the C++ skeleton. The includes
1564 in the other output files require this fix.
1565 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1566 for expected output files.
1567 (Output files): Add a test for the above.
1568
1569 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1570
1571 * gnulib: Update submodule to HEAD.
1572
1573 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1574
1575 Update copyright year.
1576 * src/files.c: Here.
1577
1578 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1579
1580 Don't overwrite the input file.
1581 * src/files.c (output_file_name_check): Fatal error if using input file
1582 for output.
1583 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1584 argument.
1585 (Conflicting output files): Add test.
1586
1587 2008-10-28 Akim Demaille <demaille@gostai.com>
1588
1589 Space changes.
1590 * data/lalr1.cc: Formatting changes.
1591
1592 2008-10-28 Akim Demaille <demaille@gostai.com>
1593
1594 Don't define debugging functions when !YYDEBUG.
1595 * data/lalr1.cc (debug_stream, set_debug_stream)
1596 (debug_level_type, debug_level, set_debug_level): Don't
1597 declare them when YYDEBUG is not defined.
1598 The implementation are already YYDEBUG-aware.
1599
1600 2008-10-28 Akim Demaille <demaille@gostai.com>
1601
1602 Prefer "continue" for empty loop bodies.
1603 * etc/bench.pl.in: Use "continue" instead of {}.
1604
1605 2008-10-28 Akim Demaille <demaille@gostai.com>
1606
1607 Space and comments changes.
1608 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1609 * data/c.m4, data/lalr1.cc: Space changes.
1610
1611 2008-10-28 Akim Demaille <demaille@gostai.com>
1612
1613 Make gnulib a submodule.
1614 * gnulib: New.
1615 * .gitmodules (gnulib): New.
1616
1617 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1618
1619 Fix yyerror_range for user-defined location type in C++. Reported by
1620 Georg Sauthoff at
1621 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1622 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1623 * THANKS (Georg Sauthoff): Add.
1624
1625 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1626
1627 Update several administrative files mainly to facilitate releasing.
1628 * HACKING (Administrivia): Make the git-merge-changelog notes more
1629 helpful.
1630 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1631 (Release Procedure): Update for git and add numerous details that were
1632 previously missing.
1633 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1634 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1635 that announcements don't claim we bootstrapped with whatever bison
1636 happened to be in PATH. Add flex as a bootstrap tool.
1637 * Makefile.maint: Remove, previously replaced by maint.mk.
1638 * Makefile.cfg: Remove, and migrate settings to...
1639 * cfg.mk: ... here for the sake of `make announcement'.
1640 * bootstrap.conf (gnulib_modules): Add announce-gen.
1641 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1642 Berry.
1643
1644 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1645
1646 Small but important bugfixes for the Java skeleton.
1647 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1648 (yy_symbol_print): Call toString on yyvaluep.
1649
1650 2008-08-29 Akim Demaille <demaille@gostai.com>
1651
1652 Clarify UPDATED use.
1653 * doc/bison.texinfo: It refers to the last edition of this file,
1654 not to the release date of Bison.
1655 Reported by Joel E. Denny.
1656
1657 2008-08-29 Akim Demaille <demaille@gostai.com>
1658
1659 * README: Update FAQ pointer.
1660 Reported by Joel E. Denny.
1661
1662 2008-08-27 Eric Blake <ebb9@byu.net>
1663
1664 Resync m4sugar from autoconf.
1665 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
1666 (m4_init): Adjust to latest m4.git changes.
1667 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
1668 effects.
1669 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
1670 (_m4_list_cmp): Reduce side effects.
1671
1672 2008-08-27 Akim Demaille <demaille@gostai.com>
1673
1674 Check yyerrok in calc.at.
1675 * tests/calc.at (calc.y): Use yyerrok on "( error )".
1676 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
1677 expected.
1678
1679 2008-08-27 Akim Demaille <demaille@gostai.com>
1680
1681 Support yyerrok in lalr1.cc.
1682 YYBACKUP is still to import back into lalr1.cc.
1683 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
1684
1685 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1686
1687 For maintainer-check*, don't recompile for a $(VERSION) update.
1688 * cfg.mk: New file.
1689 (_is-dist-target): Override the one in GNUmakefile.
1690 * Makefile.am (EXTRA_DIST): Add cfg.mk.
1691
1692 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1693
1694 Update for recent change to gnulib.
1695 * src/parse-gram.y: Don't include strverscmp.h. It comes from
1696 string.h now.
1697
1698 2008-08-15 Eric Blake <ebb9@byu.net>
1699
1700 Remaining m4sugar merge from autoconf.
1701 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
1702 * data/m4sugar/foreach.m4: New file, copied from autoconf.
1703 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
1704 * src/output.c (output_skeleton): Tell m4 how to find it.
1705
1706 Partial m4sugar merge from autoconf: m4_map.
1707 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
1708 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
1709 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
1710 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
1711 for empty list.
1712 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
1713 Likewise.
1714 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
1715 declares it.
1716
1717 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
1718
1719 Keep .version and PACKAGE_VERSION in sync.
1720 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
1721 dependency, and add comments justifying this in more detail. Discussed
1722 starting at
1723 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
1724
1725 2008-08-06 Eric Blake <ebb9@byu.net>
1726
1727 Partial m4sugar merge from autoconf: m4_shiftn.
1728 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
1729 (m4_shift2, m4_shift3): New macros.
1730 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
1731 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
1732 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
1733 * data/java.m4 (b4_remove_comma): Likewise.
1734
1735 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
1736 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
1737 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
1738 (m4_init): Consolidate wrapped text into single m4_wrap.
1739 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
1740 in wrapped text.
1741
1742 2008-08-05 Eric Blake <ebb9@byu.net>
1743
1744 Partial m4sugar merge from autoconf: builtins, version.m4.
1745 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
1746 (m4_prepend): Remove, as it is unused and inherently quadratic,
1747 whereas m4_append is linear in newer m4.
1748 (m4_mkstemp): New builtin.
1749 (m4_symbols): Make rename conditional.
1750 (m4_version_prereq): Ensure fatal error if used in bison, which
1751 intentionally lacks version.m4.
1752
1753 Fix comments in m4sugar.
1754 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
1755
1756 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1757
1758 Update for recent .gitignore fix in Gnulib.
1759 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
1760 anchored .gitignore entries.
1761
1762 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1763
1764 Set gnu or gnits strictness.
1765 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
1766 development and gnits strictness for releases. Based on Eric Blake's
1767 suggestion at
1768 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
1769
1770 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1771
1772 * NEWS: Clarify documentation of %language.
1773
1774 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1775
1776 Support usage of git-merge-changelog.
1777 * .gitattributes: New.
1778 * HACKING: Document usage of git-merge-changelog.
1779 * bootstrap: Install git-merge-changelog entries in .git/config
1780 if appropriate.
1781
1782 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1783
1784 Remove remaining dependence on CVS Id keyword.
1785 * ChangeLog: For the sake of people still using CVS, don't use dollars
1786 when mentioning Id.
1787 * data/xslt/bison.xsl: Remove Id from header comments, where it was
1788 unusual anyway.
1789 * data/xslt/xml2dot.xsl: Likewise.
1790 * data/xslt/xml2text.xsl: Likewise.
1791 * data/xslt/xml2xhtml.xsl: Likewise.
1792 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
1793 * doc/Makefile.am (neutralize): Remove, no longer needed.
1794 (.x.1): Don't use neutralize.
1795 (edit): Don't substitute for ID.
1796 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
1797
1798 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1799
1800 Fix dependence on computed configure variables.
1801 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
1802 $(top_srcdir)/configure.ac so that changes to computed variables, such
1803 as PACKAGE_VERSION, are seen.
1804 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
1805
1806 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
1807
1808 Update copyright dates for recent changes.
1809 * Makefile.am: Here.
1810 * src/Makefile.am: Here.
1811 * src/reduce.c: Here.
1812 * tests/reduce.at: Here.
1813
1814 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
1815
1816 Use git-version-gen for version names between releases.
1817 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
1818 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
1819 * .prev-version: New.
1820 * .version.in: Remove.
1821 * ChangeLog: Remove the Id previously used for capturing the CVS
1822 revision.
1823 * GNUmakefile: Remove, now copied from Gnulib.
1824 * Makefile.am: Add code suggested by comments in
1825 build-aux/git-version-gen.
1826 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
1827 .prev-version, and .version.
1828 * NEWS (2.3b+): Rename to...
1829 (?.?): ... this because we're dropping the "+" version naming scheme,
1830 but, in general, we still can't be sure of our next release name.
1831 * bootstrap: Add a quick hack to remove from .gitignore the
1832 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
1833 entry. This should really be fixed in gnulib instead.
1834 * bootstrap.conf (gnulib_modules): Add gnumakefile.
1835 * configure.ac (AC_INIT): Set version name by invoking
1836 build-aux/git-version-gen.
1837 (AC_CONFIG_FILES): Remove .version, now generated by
1838 build-aux/git-version-gen.
1839 * maint.mk: New, copied from coreutils.
1840 * doc/.cvsignore (bison.1): Add.
1841 * doc/.gitignore (/bison.1): Add.
1842 * doc/bison.1: Remove, generated.
1843 * src/.cvsignore (revision.c): Remove.
1844 * src/.gitignore (/revision.c): Remove.
1845 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
1846 (BUILT_SOURCES): Remove revision.c.
1847 (revision.c): Remove.
1848 * src/getargs.c (version): Don't print revision after the VERSION.
1849 * src/revision.h: Remove.
1850
1851 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1852
1853 Fix untranslatable composition of sentences. Reported by Goran
1854 Uddeborg at
1855 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
1856 * THANKS (Goran Uddeborg): Add.
1857 * src/reduce.c (reduce_print): Report the number of nonterminals and
1858 rules useless in the grammar in separate sentences.
1859 * tests/reduce.at (Useless Rules): Update output.
1860 (Reduced Automaton): Likewise.
1861 (Underivable Rules): Likewise.
1862 (Empty Language): Likewise.
1863
1864 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1865
1866 Fix some .gitignore and .cvsignore problems.
1867 * bootstrap (insert_sorted_if_absent): Replace all uses with...
1868 (insert_vc_ignore): ... this new function, which prepends `/' to all
1869 .gitignore entries before passing them to insert_sorted_if_absent.
1870 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
1871 .cvsignore files are maintained even though Bison developers run
1872 bootstrap while using Git.
1873 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
1874 unneeded by Bison.
1875 (gnulib): Add.
1876 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
1877 unneeded. Reported by Eric Blake.
1878 * lib/.gitignore (/*~): Add.
1879 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
1880 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
1881 Blake.
1882 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
1883
1884 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1885
1886 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
1887 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
1888 * bootstrap.conf (gnulib_modules): Add unsetenv.
1889 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
1890 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
1891 (/setenv.m4): Add.
1892 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
1893 the first argument because it may become position-dependent, and unset
1894 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
1895 Add comments explaining these issues in more detail.
1896
1897 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
1898
1899 Add .gitignore everywhere based on .cvsignore.
1900 * .gitignore: New.
1901 * build-aux/.gitignore: New.
1902 * data/.gitignore: New.
1903 * doc/.gitignore: New.
1904 * etc/.gitignore: New.
1905 * examples/.gitignore: New.
1906 * examples/calc++/.gitignore: New.
1907 * lib/.gitignore: New.
1908 * m4/.gitignore: New.
1909 * po/.gitignore: New.
1910 * runtime-po/.gitignore: New.
1911 * src/.gitignore: New.
1912 * tests/.gitignore: New.
1913
1914 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1915
1916 * NEWS (2.3b+): New section, empty for now.
1917 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
1918
1919 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1920
1921 * NEWS (2.3b): Update release date since there has been a delay in
1922 getting the announcements and tarballs out.
1923
1924 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1925
1926 * NEWS: Version 2.3b.
1927 * configure.ac (AC_INIT): Likewise.
1928 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
1929
1930 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1931
1932 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
1933 been doing it for years.
1934 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
1935 (Release Procedure): Add FIXME about make alpha being unmaintained.
1936
1937 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
1938
1939 * data/yacc.c: Reformat m4 a little for readability.
1940 * src/lalr.c (build_relations): Correct comment.
1941
1942 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1943
1944 DJGPP specific issue.
1945 * djgpp/config.sed: Fixes required to run configure scripts generated
1946 by autoconf 2.62.
1947
1948 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1949
1950 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
1951 coordinator@translationproject.org.
1952
1953 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1954
1955 * THANKS: Add Eric Blake.
1956
1957 2008-04-23 Eric Blake <ebb9@byu.net>
1958
1959 Revert prior patch, by working around autoconf regression.
1960 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
1961 ("Output file name: ("): Uncomment test.
1962 ("Output file name: )"): Likewise.
1963 Based on an idea from Noah Misch.
1964
1965 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1966
1967 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
1968 2.61. Reported by Juan Manuel Guerrero at
1969 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
1970 * tests/output.at ("Output file name: ("): Comment out test case for
1971 now.
1972 ("Output file name: )"): Likewise.
1973
1974 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1975
1976 * GNUmakefile: Update git-version-gen invocation so make dist
1977 succeeds.
1978
1979 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1980
1981 Update to the current gnulib CVS repository, and fix trigraph handling
1982 in Bison.
1983 * bootstrap: Update gnulib CVS repository URL.
1984 (symlink_to_dir): Encapsulate the code that guarantees the destination
1985 directory exists into...
1986 (check_dst_dir): ... this new function, and...
1987 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
1988 fail when copying files into lib/uniwidth/.
1989 * src/output.c (prepare_symbols): When writing yytname muscles, where
1990 symbol names will be encoded in C-string literals, tell quotearg to
1991 escape trigraphs. This used to be the default in gnulib.
1992 * tests/regression.at (Token definitions): Because of the change in
1993 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
1994 escapes trigraphs in symbol names. Thus, yytname no longer has
1995 trigraphs unnecessarily doubly escaped. Update test case output.
1996 Extend test case to be sure Bison's own error messages will no longer
1997 have trigraphs in symbol names unnecessarily escaped once.
1998
1999 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2000
2001 Fix make dist infinite loop reported by Juan Manuel Guerrero at
2002 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
2003 * .cvsignore: Add .version.
2004 * .version.in: New.
2005 * bootstrap.conf (gnulib_modules): Add git-version-gen.
2006 * configure.ac (AC_CONFIG_FILES): Add .version.
2007 * build-aux/.cvsignore: Add git-version-gen.
2008
2009 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
2010
2011 * NEWS (2.3a+): Mention that -g now takes an argument.
2012 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
2013 consistency. Update the -g and -x entries now that they take
2014 arguments. Use brackets to indicate optional arguments.
2015 * src/getargs.c (usage): Explain the relationship between arguments of
2016 long and short options more completely. Document --defines and -d
2017 separately since the former takes an argument but, for POSIX Yacc, the
2018 latter does not.
2019 (short_options): Let -W take an optional argument like --warnings.
2020 (getargs): Sort cases.
2021
2022 2008-02-28 Akim Demaille <demaille@gostai.com>
2023
2024 * doc/bison.texinfo: Fix a few typos.
2025
2026 2008-02-28 Akim Demaille <akim@epita.fr>
2027
2028 * doc/bison.texinfo (Bison Options): Document -W.
2029 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
2030
2031 2008-02-28 Akim Demaille <akim@epita.fr>
2032
2033 * src/getargs.c (short_options): Split and sort for readability.
2034 -g and -x take optional arguments, just like their long options.
2035 * build-aux/cross-options.pl: Use /x to make the regexp easier to
2036 understand.
2037 Fix the handling of $opt which resulted in all the argument to be
2038 considered as optional.
2039
2040 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
2041
2042 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
2043 say its interface is experimental.
2044 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
2045 Java.
2046 (Bison Options): In the -L and --language entry, mention Java.
2047 (Java Bison Interface): Say the interface is experimental.
2048 * src/getargs.c (usage): Mention -L and --language.
2049
2050 * NEWS (2.3a+): Say the push parsing interface is experimental.
2051 * doc/bison.texinfo (Push Decl): Likewise.
2052 (Decl Summary): Likewise in the "%define api.push_pull" entry.
2053 (Push Parser Function): Likewise.
2054 (Pull Parser Function): Likewise.
2055 (Parser Create Function): Likewise.
2056 (Parser Delete Function): Likewise.
2057 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
2058 yypull_parse, and yypush_parse entries.
2059
2060 * NEWS (2.3a+): Mention XML support, and say the schema is
2061 experimental.
2062 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
2063 * src/getargs.c (usage): Say the XML schema is experimental.
2064
2065 * NEWS (2.3a+): Say option instead of flag.
2066
2067 2008-02-21 Wojciech Polak <polak@gnu.org>
2068
2069 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
2070 text.
2071
2072 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
2073
2074 Fix impure push parser compile error reported by Bob Rossi at
2075 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
2076 * data/yacc.c: Clean up whitespace in the output a little.
2077 (yypstate_allocated): Define for impure push parsers regardless of
2078 whether the pull interface is also requested.
2079 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
2080 check impure push parsers without the pull interface.
2081
2082 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
2083 yyerror takes arguments specified by %parse-param while yypstate_new
2084 does not.
2085 * doc/bison.texinfo (Parser Create Function): Document that
2086 yypstate_new returns 0 for multiple impure parser instances.
2087 * tests/push.at (Push Parsing: Multiple impure instances): Update
2088 expected stderr output.
2089
2090 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2091
2092 * runtime-po/POTFILES.in (push.c): Remove.
2093
2094 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2095
2096 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
2097 * data/push.c: Rename to...
2098 * data/yacc.c: ... this, overwriting it.
2099 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
2100 `%push-pull-parser' -> `%define api.push_pull "both"'.
2101 Remove old yacc.c tests, and update push.c tests to yacc.c.
2102
2103 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2104
2105 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
2106 `"%code top" blocks' instead of `%code "top" blocks'.
2107 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
2108 Clean up whitespace in the output a little.
2109
2110 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2111
2112 Fix documentation problems reported by Tim Josling at
2113 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
2114 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
2115 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
2116 integers. Explain the effect of literal string aliases on error
2117 messages. Copy token 0 documentation from the C++ skeleton
2118 documentation.
2119
2120 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2121
2122 Accept a token number in a %left, %right, or %nonassoc for POSIX
2123 conformance. Reported by Tim Josling at
2124 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
2125 * NEWS (2.3a+): Mention.
2126 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
2127 and code numbers are treated by precedence declarations.
2128 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
2129 of symbols.1.
2130 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
2131 of symbol.
2132 (symbol.prec): New, just like symbol but allows INT.
2133 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
2134 longer holds.
2135 * tests/regression.at (Token number in precedence declaration): New
2136 test case.
2137
2138 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2139
2140 DJGPP specific issues.
2141 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
2142 be changed. Copyright timestamp adjusted.
2143 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
2144 be changed. Copyright timestamp adjusted.
2145 * djgpp/config.site: Copyright timestamp adjusted.
2146 * djgpp/config_h.sed: Copyright timestamp adjusted.
2147 * djgpp/djunpack.bat: Copyright timestamp adjusted.
2148 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
2149 filename translation list.
2150 * djgpp/subpipe.c (init_subpipe): Check the environment variables
2151 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
2152 files shall be created. Before trying to use the temp dir where the
2153 environment variable points to check that the dir really exists. If
2154 not default to the cwd as temp dir. Copyright timestamp adjusted.
2155 * djgpp/subpipe.h: Copyright timestamp adjusted.
2156 * djgpp/testsuite.sed: Copyright timestamp adjusted.
2157
2158 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
2159
2160 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
2161
2162 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
2163
2164 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
2165 Problem reported by Claudio Saavedra in
2166 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
2167
2168 2008-01-05 Wojciech Polak <polak@gnu.org>
2169
2170 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
2171 document's title with the input grammar file name.
2172
2173 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
2174
2175 Automate regression testing of the XML/XSLT implementation. Discussed
2176 starting at
2177 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
2178 * configure.ac (XSLTPROC): New substitution.
2179 * Makefile.am (maintainer-xml-check): New phony target invoking...
2180 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
2181 invoking make maintainer-check with BISON_TEST_XML=1.
2182 * tests/atlocal.in (XSLTPROC): New.
2183 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
2184 not to report reachable memory when Bison is expected to have a
2185 non-zero exit status and (2) to compare XML/XSLT output with --graph
2186 and --report=all output for every working grammar when
2187 BISON_TEST_XML=1.
2188 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
2189 (AT_BISON_CHECK_XML): New.
2190 (AT_QUELL_VALGRIND): New.
2191 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
2192 (AT_CHECK): ... don't redefine this since this was the old way to
2193 quell Valgrind.
2194 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
2195 AT_BISON_CHECK invocations.
2196 * tests/c++.at: Likewise.
2197 * tests/calc.at: Likewise.
2198 * tests/conflicts.at: Likewise.
2199 * tests/cxx-type.at: Likewise.
2200 * tests/existing.at: Likewise.
2201 * tests/glr-regression.at: Likewise.
2202 * tests/headers.at: Likewise.
2203 * tests/input.at: Likewise.
2204 * tests/java.at: Likewise.
2205 * tests/output.at: Likewise.
2206 * tests/push.at: Likewise.
2207 * tests/reduce.at: Likewise.
2208 * tests/regression.at: Likewise.
2209 * tests/sets.at: Likewise.
2210 * tests/skeletons.at: Likewise.
2211 * tests/synclines.at: Likewise.
2212 * tests/torture.at: Likewise.
2213 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
2214 tends to hang xsltproc.
2215 (Big horizontal): Likewise.
2216
2217 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2218
2219 In XML output, remove redundant class attribute on symbol element.
2220 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
2221 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
2222 look up a symbol to determine whether it's a nonterminal or terminal.
2223 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
2224 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
2225
2226 Add prec/assoc information to XML output.
2227 * src/gram.c (grammar_rules_print_xml): For each rule that has a
2228 %prec, add a percent_prec attribute.
2229 * src/print-xml.c (print_grammar): For each terminal that has a
2230 precedence or associativity, add a prec or assoc attribute.
2231 (xml_indent): New.
2232 (xml_puts): Use xml_indent.
2233 (xml_printf): Use xml_indent.
2234 * src/print-xml.h (xml_indent): Prototype.
2235
2236 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
2237 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
2238
2239 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2240
2241 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
2242 (bison:ruleByNumber): ... this for clarity.
2243 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
2244 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
2245 (xsl:template match="reduction"): Update.
2246 (xsl:template match="item"): Update.
2247 (xsl:template match="reduction"): Update.
2248
2249 In the XML output, don't print the list of rules where symbols appear.
2250 Compute it in XSLT instead. Discussed at
2251 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
2252 * data/xslt/bison.xsl (bison:ruleByLhs): New.
2253 (bison:ruleByRhs): New.
2254 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
2255 bison:ruleByRhs.
2256 (xsl:template match="terminal/rule"): Remove.
2257 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2258 bison:ruleByRhs.
2259 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2260 Remove.
2261 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
2262 bison:ruleByRhs and mode="number-link" for rule template.
2263 (xsl:template match="terminal/rule"): Remove.
2264 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2265 bison:ruleByRhs and mode="number-link" for rule template.
2266 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2267 Rewrite as...
2268 (xsl:template match="rule" mode="number-link"): ... this.
2269 * src/print-xml.c (print_grammar): Don't print the list of rules.
2270
2271 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
2272
2273 Don't let --report affect XML output; always print all information.
2274 Discussed at
2275 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
2276 * src/conflicts.c (log_resolution): Implement.
2277 * src/print-xml.c (print_core): Implement.
2278 (print_state): Implement.
2279 (print_xml): Implement.
2280
2281 * NEWS (2.3a+): Fix quotes.
2282 * src/parse-gram.y (prologue_declaration): For consistency with -v,
2283 don't let %verbose clear the list specified by --report.
2284
2285 2007-11-26 Akim Demaille <akim@epita.fr>
2286
2287 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
2288
2289 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
2290
2291 In the XML output, list useless and unused symbols and rules with the
2292 useful ones and add a "usefulness" attribute. Discussed starting at
2293 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
2294 * src/gram.c (grammar_rules_partial_print_xml): Remove.
2295 (grammar_rules_print_xml): Print all rules instead of just those
2296 useful in the grammar, and add a "usefulness" attribute.
2297 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
2298 * src/print-xml.c (print_rules_useless_in_parser): Remove.
2299 (print_grammar): Print all nonterminals instead of just useful ones,
2300 and add a "usefulness" attribute to nonterminals and terminals.
2301 (print_xml): Don't print a separate "reductions" or
2302 "rules-useless-in-parser" element.
2303 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
2304 (reduce_xml): Remove.
2305 (reduce_token_unused_in_grammar): New.
2306 (reduce_nonterminal_useless_in_grammar): New.
2307 * src/reduce.h (reduce_xml): Remove prototype.
2308 (reduce_token_unused_in_grammar): Add prototype.
2309 (reduce_nonterminal_useless_in_grammar): Add prototype.
2310 * data/xslt/xml2text.xsl: Update for XML changes.
2311 * data/xslt/xml2xhtml.xsl: Update for XML changes.
2312 * tests/reduce.at (Useless Terminals): Update output.
2313 (Useless Rules): Update output.
2314 (Reduced Automaton): Update output.
2315
2316 Say "Terminals unused in grammar" instead of "Unused terminals".
2317 * NEWS (2.3a+): Update.
2318 * doc/bison.texinfo (Understanding): Update example output.
2319 * src/reduce.c (reduce_output): Implement.
2320 * data/xslt/xml2text.xsl: Implement.
2321 * data/xslt/xml2xhtml.xsl: Implement.
2322
2323 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2324
2325 Accept --report-file=FILE to override the default `.output' filename.
2326 * NEWS (2.3a+): Mention.
2327 * doc/bison.texinfo (Bison Options): Add an entry.
2328 * src/files.c (compute_output_file_names): Don't override
2329 spec_verbose_file if already set.
2330 * src/getargs.c (usage): Document --report-file.
2331 (REPORT_FILE_OPTION): New anonymous enum member.
2332 (long_options): Add entry for it.
2333 (getargs): Add case for it setting spec_verbose_file.
2334
2335 * build-aux/cross-options.pl: Don't record a short option just because
2336 there's an arg.
2337 * doc/.cvsignore: Add yacc.1.
2338
2339 2007-11-14 Akim Demaille <akim@epita.fr>
2340
2341 * doc/yacc.1.in: New.
2342 * configure.ac, doc/Makefile.am: Adjust.
2343 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2344 config.h symbol.
2345 Use AC_SUBST for assignments too.
2346 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2347
2348 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2349
2350 * src/gram.c: Remove comments that duplicate comments in gram.h.
2351
2352 When reporting useless rules and nonterminals, say "useless in grammar"
2353 instead of "useless", and say "useless in parser" instead of "never
2354 reduced". Discussed starting at
2355 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2356 * NEWS (2.3a+): Mention this change.
2357 * data/xslt/xml2text.xsl: Update output text and expected input XML
2358 element names to match changes below.
2359 * data/xslt/xml2xhtml.xsl: Likewise.
2360 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2361 Contents: "Rules useless in parser due to conflicts".
2362 * doc/bison.texinfo (Decl Summary): Reword a little.
2363 (Understanding): Update example output for changes below.
2364 * src/gram.c: (rule_useful_p): Rename to...
2365 (rule_useful_in_grammar_p): ... this.
2366 (rule_useless_p): Rename to...
2367 (rule_useless_in_grammar_p): ... this.
2368 (rule_never_reduced_p): Rename to...
2369 (rule_useless_in_parser_p): ... this.
2370 (grammar_rules_print): Update for renames.
2371 (grammar_rules_print_xml): Update for renames.
2372 (grammar_rules_never_reduced_report): Rename to...
2373 (grammar_rules_useless_report): ... this since it is used for either
2374 kind of useless rule.
2375 * src/gram.h: Reword comments and update function names in prototypes.
2376 * src/main.c (main): Say "rule useless in parser due to conflicts".
2377 * src/print-xml.c (print_rules_never_reduced): Rename to...
2378 (print_rules_useless_in_parser): ... this, and rename output XML
2379 element "rules-never-reduced" to "rules-useless-in-parser".
2380 (print_xml): Update for rename.
2381 * src/print.c (print_results): Say "Rules useless in parser due to
2382 conflicts".
2383 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2384 (nonterminals_reduce): Say "nonterminal useless in grammar".
2385 (reduce_output): Say "Nonterminals useless in grammar".
2386 Say "Rules useless in grammar".
2387 (reduce_xml): Rename output XML element "useless" to
2388 "useless-in-grammar".
2389 (reduce_print): Don't report the count of grammatically useless rules
2390 as "rules never reduced" just because %yacc is specified.
2391 In the correct report of this count, say nonterminal(s) and rule(s)
2392 "useless in grammar".
2393 * tests/conflicts.at (S/R in initial): Update expected output.
2394 (Defaulted Conflicted Reduction): Likewise.
2395 (Unreachable States After Conflict Resolution): Likewise.
2396 * tests/existing.at (GNU pic Grammar): Likewise.
2397 * tests/reduce.at (Useless Nonterminals): Likewise.
2398 (Useless Rules): Likewise.
2399 (Reduced Automaton): Likewise.
2400 (Underivable Rules): Likewise.
2401 (Empty Language): Likewise.
2402
2403 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2404
2405 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2406 here document and before the EOF so that BSD's implementation of Bourne
2407 shell doesn't parse the delimiter as part of the here document.
2408 * doc/.cvsignore: Add cross-options.texi.
2409 * src/getargs.c (usage): Add a blank line after the warning categories.
2410
2411 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
2412
2413 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2414
2415 2007-11-05 Akim Demaille <akim@epita.fr>
2416
2417 Remove Id: from bison.1.
2418 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2419 (perl -0777 -pi -e 's/\.PP\nId): New.
2420 (.x.1): Use it to ignore the version control revision.
2421
2422 2007-11-05 Akim Demaille <demaille@gostai.com>
2423
2424 * build-aux/Makefile.am: Ship cross-options.pl.
2425 * doc/Makefile.am: Always refer to cross-options.texi with
2426 $(srcdir).
2427 (MAINTAINERCLEANFILES): Add it.
2428
2429 2007-11-04 Akim Demaille <demaille@gostai.com>
2430
2431 Generate the long/short option cross-table.
2432 * build-aux/cross-options.pl: New.
2433 * doc/Makefile.am (cross-options.texi): New.
2434 * doc/bison.texinfo: Use it.
2435
2436 2007-11-04 Akim Demaille <demaille@gostai.com>
2437
2438 Generate bison.1 using help2man.
2439 * doc/common.x, doc/bison.x: New.
2440 * doc/Makefile.am (bison.1, .x.1): New.
2441 The code is taken from autoconf-2.61/man/Makefile.am.
2442 * configure.ac: Look for help2man.
2443
2444 2007-11-04 Akim Demaille <demaille@gostai.com>
2445
2446 Complete --help.
2447 * src/getargs.c (usage): Document -W, make it clear that -d,
2448 -g and -x have optional arguments.
2449
2450 2007-11-04 Akim Demaille <demaille@gostai.com>
2451
2452 Find sha1sum when named gsha1sum.
2453 * bootstrap (find_tool): New.
2454 ($SHA1SUM): New.
2455
2456 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2457
2458 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2459 at
2460 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2461 * NEWS (2.3a+): Mention.
2462 * data/bison.m4 (b4_pure_if): Don't define it here.
2463 * data/c.m4 (b4_identification): Depend on individual skeletons to
2464 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2465 values of the %define variables api.pure or api.push_pull. Define
2466 YYPURE, YYPUSH, and YYPULL accordingly.
2467 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2468 glr.cc has already defined b4_pure_flag.
2469 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2470 Remove YYPUSH and YYPULL since they're back in b4_identification again.
2471 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
2472 * doc/bison.texinfo (Pure Decl): Update.
2473 (Push Decl): Update.
2474 (Decl Summary): Add api.pure to %define entry.
2475 In %pure-parser entry, say it's deprecated and reference %define.
2476 (Pure Calling): Update.
2477 (Error Reporting): Update.
2478 (C++ Scanner Interface): Update.
2479 (How Can I Reset the Parser): Update.
2480 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2481 reference %define.
2482 * src/getargs.c (pure_parser): Remove global variable.
2483 * src/getargs.h (pure_parser): Remove extern.
2484 * src/output.c (prepare): Don't define pure_flag muscle.
2485 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2486 wrapper around `%define api.pure'.
2487 * tests/calc.at (Simple LALR Calculator): Update.
2488 (Simple GLR Calculator): Update.
2489 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2490 Update.
2491 (GLR: Resolve ambiguity, pure, locations): Update.
2492 (GLR: Merge conflicting parses, pure, no locations): Update.
2493 (GLR: Merge conflicting parses, pure, locations): Update.
2494 * tests/glr-regression.at (Uninitialized location when reporting
2495 ambiguity): Update
2496 * tests/input.at (Unused %define api.pure): New test case.
2497 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2498 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2499 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2500
2501 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2502
2503 %define push_pull -> %define api.push_pull. Discussed starting at
2504 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2505 * data/push.c: Expect the new name.
2506 * data/yacc.c: Likewise.
2507 * doc/bison.texinfo (Push Decl): Update.
2508 (Decl Summary): Update %define entry.
2509 (Push Parser Function): Update.
2510 (Pull Parser Function): Update.
2511 (Parser Create Function): Update.
2512 (Parser Delete Function): Update.
2513 * tests/calc.at (Simple LALR Calculator): Update.
2514 * tests/input.at (%define enum variables): Update.
2515 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2516 (Push Parsing: Multiple impure instances): Update.
2517 (Push Parsing: Unsupported Skeletons): Update.
2518 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2519 (Exploding the Stack Size with Malloc): Update.
2520
2521 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2522 other entries some.
2523
2524 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2525
2526 For the XML output's terminal element, rename @number to @token-number,
2527 and add @symbol-number. In the nonterminal element, rename @number to
2528 @symbol-number. Discussed starting at
2529 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2530 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2531 renames.
2532 (xsl:template match="nonterminal"): Likewise.
2533 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2534 (xsl:template match="nonterminal"): Likewise.
2535 * src/print-xml.c (print_grammar): Implement.
2536
2537 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2538
2539 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2540 2007-10-11 change, the child elements here are items not rules.
2541 (xsl:template match="item"): New.
2542 (xsl:template match="rule"): Update for new reduced itemset.
2543 (xsl:template match="point"): Remove.
2544 (xsl:template match="empty"): For consistency with --graph, don't
2545 output "/* empty */".
2546 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2547 line-wrap, don't pass a negative value as first-line-length since this
2548 won't work with the following changes.
2549 (xsl:template name="line-wrap"): Simplify slightly.
2550 (xsl:template name="ws-search"): Eliminate recursion.
2551 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2552 set next to an item whose dot is not at the end of the RHS even if it
2553 happens to be associated with the same rule.
2554
2555 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2556
2557 Add %define lr.keep_unreachable_states.
2558 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2559 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2560 * src/main.c (main): Implement it.
2561 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2562 Extend to test it, and fix a typo.
2563
2564 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2565
2566 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
2567 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2568 the example .output text.
2569 * tests/regression.at (Extra lookahead sets in report): Improve wording
2570 of comments.
2571
2572 2007-10-17 Wojciech Polak <polak@gnu.org>
2573
2574 * src/print-xml.c (print_grammar): Renamed
2575 <terminal> and <nonterminal> attributes:
2576 "type" to "number" and "symbol" to "name".
2577 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2578 Use new attribute names.
2579 (xsl:template match="nonterminal"): Likewise.
2580 * data/xslt/xml2xhtml.xsl: Likewise.
2581
2582 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2583
2584 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2585 (Option Cross Key): Likewise.
2586
2587 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2588 next to an item whose dot is not at the end of the RHS even if it
2589 happens to be associated with the same rule.
2590 * src/print.c (print_core): Likewise.
2591 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2592 (Resolved SR Conflicts): Update output.
2593 * tests/regression.at (Extra lookahead sets in report): New test case.
2594
2595 2007-10-11 Wojciech Polak <polak@gnu.org>
2596
2597 * src/print-xml.c (print_core): Remove item set
2598 redundancy.
2599 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2600 Improve processing time. Suggested by Joel E. Denny.
2601 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2602 Write xsl:param "required" attribute as comment.
2603 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2604 (xsl:template match="rule"): Support new reduced itemset.
2605 (xsl:template match="point"): Remove.
2606 * data/xslt/xml2xhtml.xsl: Likewise.
2607
2608 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2609
2610 * src/getargs.c (version): Update copyright year.
2611
2612 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2613
2614 Make xml2dot.xsl and --graph produce the same output.
2615 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
2616 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2617 escaped later.
2618 (xsl:template name="output-node"): Use the new escape template instead
2619 of the string-replace template directly.
2620 (xsl:template name="output-edge"): Likewise.
2621 (xsl:template name="escape"): New, escapes backslashes and newlines in
2622 addition to quotation marks.
2623 * src/graphviz.c (start_graph, output_node, output_edge): Add
2624 whitespace to output for legibility.
2625
2626 Make xml2text.xsl and --report produce the same output, and remove the
2627 XML "conflicts" element since a conflict summary is easily extracted
2628 from the automaton.
2629 * data/xslt/bison.xsl: New.
2630 (xsl:template match="state" mode="bison:count-conflicts): New.
2631 * data/xslt/xml2text.xsl: Import bison.xsl.
2632 (xsl:template match="bison-xml-report"): Instead of styling the
2633 "conflicts" element, style the "automaton" element with mode
2634 "conflicts". Unlike the former, the latter lists S/R and R/R
2635 conflicts for a state on the same line.
2636 (xsl:template match="conflicts"): Remove.
2637 (xsl:template match="conflict"): Remove.
2638 (xsl:template match="terminal"): Line-wrap the list of rules in which
2639 the terminal is used.
2640 (xsl:template match="nonterminal"): Likewise for nonterminals.
2641 (xsl:template match="automaton" mode="conflicts"): New.
2642 (xsl:template match="state" mode="conflicts"): New.
2643 (xsl:template name="line-wrap"): New.
2644 (xsl:template name="ws-search"): New.
2645 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2646 (xsl:template match="bison-xml-report"): Instead of styling the
2647 "conflicts" element, style the "automaton" element with mode
2648 "conflicts."
2649 (xsl:template match="conflicts"): Remove.
2650 (xsl:template match="conflict"): Remove.
2651 (xsl:template match="automaton" mode="conflicts"): New.
2652 (xsl:template match="state" mode="conflicts): New.
2653 * src/conflicts.c (conflicts_output_xml): Remove.
2654 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2655 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2656 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2657 the corresponding XSLT is easier. Also, never wrap between a word and
2658 the comma that follows it.
2659
2660 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2661
2662 Improve C++ namespace support. Discussed starting at
2663 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
2664 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
2665 b4_namespace_close): New macros that interpret the %define variable
2666 "namespace" so its value can contain "::" to indicate nested
2667 namespaces.
2668 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
2669 the above macros.
2670 * data/lalr1.cc (b4_namespace): Likewise.
2671 * data/location.cc (b4_namespace): Likewise.
2672 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
2673 inside a new table in the general %define entry. Document `%define
2674 namespace' there as well. Point the %name-prefix entry to it since it
2675 explains it more completely in the case of C++.
2676 (C++ Bison Interface): Mention `%define namespace' instead of
2677 %name-prefix.
2678 (Table of Symbols): Remove the `%define push_pull' entry. The %define
2679 entry suffices.
2680 * tests/c++.at (Relative namespace references): New test case.
2681 (Absolute namespace references): New test case.
2682 (Syntactically invalid namespace references): New test case.
2683 * tests/input.at (C++ namespace reference errors): New test case.
2684
2685 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2686
2687 Add syncline support and location accessor to internal %define
2688 interfaces.
2689 * data/bison.m4 (b4_percent_define_get_loc): New.
2690 (b4_percent_define_get_syncline): New.
2691 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
2692 (b4_percent_define_default): Record defining location as line 1 rather
2693 than 0 for the sake of synchronizing #line's, and define
2694 b4_percent_define_syncline(VARIABLE).
2695 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
2696 * src/muscle_tab.c (muscle_syncline_grow): New.
2697 (muscle_code_grow): Use muscle_syncline_grow.
2698 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
2699 define b4_percent_define_syncline(VARIABLE).
2700 (muscle_percent_define_get_loc): New.
2701 (muscle_percent_define_get_syncline): New.
2702 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
2703 remove some unused variables.
2704 (muscle_percent_define_default): Record defining location as line 1
2705 rather than 0 for the sake of synchronizing #line's, and define
2706 b4_percent_define_syncline(VARIABLE).
2707 (muscle_percent_define_check_values): Use
2708 muscle_percent_define_get_loc.
2709 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
2710 (muscle_percent_define_get_syncline): Prototype.
2711 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2712 defaults): Update output for location change.
2713 (Complaining during macro argument expansion): Extend to test
2714 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
2715
2716 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
2717
2718 Fix some error-reporting macro bugs.
2719 * data/bison.m4 (b4_cat): New.
2720 (b4_error, b4_error_at): Use b4_cat to send error directives directly
2721 to stdout so they don't become arguments to other macros. Update
2722 comments and add examples.
2723 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
2724 add examples.
2725 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
2726 after printing the error directive so that M4 doesn't report subsequent
2727 problems that are induced by this problem.
2728 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
2729 instead of just in them. Recognize @\n in both places. Both expand to
2730 the empty string. Needed by b4_cat.
2731 * tests/skeletons.at (Complaining during macro argument expansion):
2732 New test case.
2733 (Fatal errors make M4 exit immediately): New test case.
2734
2735 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
2736
2737 Implement --print-datadir.
2738 * src/getargs.c (usage): Mention.
2739 (PRINT_DATADIR_OPTION): New anonymous enum member.
2740 (long_options): Add entry for it.
2741 (getargs): Add case for it calling compute_pkgdatadir.
2742 * src/output.c (output_skeleton): Encapsulate data directory
2743 computation from here...
2744 (prepare): ... and from here...
2745 (compute_pkgdatadir): ... into this new function.
2746 * src/output.h (compute_pkgdatadir): Prototype.
2747
2748 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
2749
2750 * src/print-xml.c (escape_bufs): New static global variable
2751 replacing...
2752 (xml_escape_n): ... the static local variable buf here.
2753 (print_xml): Free memory for escape_bufs.
2754 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
2755
2756 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
2757
2758 Replace `%push-parser' and `%push-pull-parser' with
2759 `%define push_pull "push"' and `%define push_pull "both"'.
2760 `%define push_pull "pull"' is the default.
2761 * doc/bison.texinfo (Push Decl, Push Parser Function,
2762 Pull Parser Function, Parser Create Function, Parser Delete Function):
2763 Update declarations.
2764 (Decl Summary, Table of Symbols): Replace %push-parser and
2765 %push-pull-parser entries with a %define push_pull entry.
2766 * data/bison.m4 (b4_percent_define_check_values): New macro.
2767 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
2768 definitions...
2769 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
2770 definitions...
2771 * data/push.c: ... to here and compute them from the value of the
2772 %define variable push_pull.
2773 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
2774 parsing requests here...
2775 * data/yacc.c: ... hack this to switch to push.c any time
2776 b4_use_push_pull_flag or the %define variable push_pull is set. This
2777 will go away when we mv push.c yacc.c.
2778 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
2779 push parsing is not supported since unused %define variables are
2780 reported anyway.
2781 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
2782 * src/muscle_tab.h (muscle_percent_define_check_values): Update
2783 comments for consistency with b4_percent_define_check_values.
2784 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
2785 muscles.
2786 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
2787 Remove.
2788 (prologue_declaration): Remove %push-parser and %push-pull-parser
2789 rules.
2790 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
2791 * tests/calc.at: Update declarations.
2792 * tests/input.at (%define enum variables): New test case.
2793 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
2794 declaration.
2795 (Push Parsing: Multiple impure instances): Update declaration.
2796 (Push Parsing: Unsupported Skeletons): New test case.
2797 * tests/torture.at (Exploding the Stack Size with Alloca): Update
2798 declaration.
2799 (Exploding the Stack Size with Malloc): Update declaration.
2800
2801 2007-09-24 Wojciech Polak <polak@gnu.org>
2802
2803 Add XSLT transformations.
2804
2805 * data/xslt/xml2dot.xsl: Transform XML into DOT.
2806 * data/xslt/xml2text.xsl: Transform XML into plain text.
2807 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
2808 * data/Makefile.am (xsltdir): New variable.
2809 (dist_xslt_DATA): Add xslt/*.xsl files.
2810
2811 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
2812
2813 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
2814 Problem reported by Wojciech Polak.
2815 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
2816 (xml_printf): Undo change I made on 21 September; that is,
2817 indent 2 spaces, not 1.
2818
2819 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
2820
2821 Pacify ./configure --enable-gcc-warnings.
2822 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
2823 `char const *' instead of `char *'.
2824 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
2825 local variable `sep'.
2826
2827 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2828
2829 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
2830 elsewhere.
2831 * src/print-xml.c: Prefer "const" after types; that's more consistent.
2832 (xml_printf): Indent just 1 space for level.
2833 (e_char, xlate_char): Remove.
2834 (xml_escape_string): Rewrite to avoid undefined behavior (used
2835 storage that was freed from the stack).
2836 (xml_escape_n): Don't bother checking for subscript error.
2837
2838 2007-09-21 Wojciech Polak <polak@gnu.org>
2839
2840 Add Bison XML Automaton Report.
2841
2842 Add support for an -x option to generate an XML report.
2843 It is not documented yet.
2844 * src/print-xml.c: New file.
2845 * src/print-xml.h: Likewise.
2846 * lib/timevar.def (TV_XML): New var.
2847 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
2848 * src/conflicts.c: Include print-xml.h.
2849 (solved_conflicts_xml_obstack): New var.
2850 (log_resolution, conflicts_solve, conflicts_free):
2851 Add support for XML report.
2852 (conflicts_output_val): New function.
2853 * src/conflicts.h (conflicts_output_val): New decl.
2854 * src/files.c (spec_xml_file): New var.
2855 (compute_output_file_names, output_file_names_free): Add XML support.
2856 * src/files.h (spec_xml_file): New decl.
2857 * src/getargs.c (xml_flag): New var.
2858 (usage, short_options, long_options, getargs): Add XML support.
2859 * src/getargs.h (xml_flag): New decl.
2860 * src/gram.c: Include print-xml.h.
2861 (rule_lhs_print_xml, rule_rhs_print_xml):
2862 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
2863 New functions.
2864 * src/gram.h: Declare external ones.
2865 * src/main.c: Include print-xml.h.
2866 (main): Add XML support.
2867 * src/reduce.c: Include print-xml.h.
2868 (reduce_xml): New function.
2869 * src/reduce.h: Declare it.
2870 * src/state.c: Include print-xml.h.
2871 (state_new): Add XML support.
2872 (state_rule_lookahead_tokens_print_xml): New function.
2873 * src/state.h: Declare it.
2874 (struct state): New member solved_conflicts_xml.
2875 * src/symtab.c (symbol_class_get_string): New function.
2876 * src/symtab.h: Declare it.
2877
2878 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2879
2880 * GNUmakefile: Switch to coreutils's version.
2881 * bootstrap: Likewise.
2882 * Makefile.cfg: Adjust to new GNUmakefile.
2883 * README-hacking: Likewise.
2884
2885 Import from gnulib:
2886
2887 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
2888 Bruno Haible <bruno@clisp.org>
2889
2890 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
2891 and is a script that invokes bison. Tighten the code. Add comments.
2892
2893 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
2894
2895 Spell "boolean" as "Boolean". Reported by Akim Demaille.
2896 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
2897 * doc/bison.texinfo (Decl Summary): Fix.
2898 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
2899 * tests/input.at (Boolean %define variables): Update output.
2900 * tests/skeletons.at (%define boolean variables: invalid skeleton
2901 defaults): Rename to...
2902 (%define Boolean variables: invalid skeleton defaults): ... this and
2903 update output.
2904
2905 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
2906
2907 In impure push mode, don't allow more than one yypstate to be allocated
2908 since multiple impure parsers would corrupt yynerrs.
2909 * data/push.c (yypstate_allocated): New static global variable
2910 initialized to 0.
2911 (yypull_parse): If yypstate_new returns 0, don't report it as memory
2912 exhaustion if yypstate_allocated is 1, but still return 2.
2913 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
2914 already 1. Otherwise, set it to 1.
2915 (yypstate_delete): Set it to 0.
2916 * tests/push.at (Push Parsing: Multiple impure instances): New test
2917 case.
2918
2919 2007-08-17 Bob Rossi <bob@brasko.net>
2920
2921 * doc/bison.texinfo (Push Decl): Document the push parser.
2922 (Table of Symbols): Ditto.
2923 (Pure Decl): Ditto.
2924 (Decl Summary): Ditto.
2925 (Multiple Parsers, Push Parser Function, Pull Parser Function,
2926 Parser Create Function, Parser Delete Function):
2927 Add new push parser symbols.
2928 (Table of Symbols): Document push-parser, push-pull-parser,
2929 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
2930
2931 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
2932
2933 Update to GPLv3.
2934 * doc/gpl-3.0.texi: New file.
2935 * doc/gpl.texi: Remove.
2936 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
2937 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
2938 * README-hacking, TODO, bootstrap, bootstrap.conf:
2939 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
2940 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
2941 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
2942 * data/lalr1.cc, data/lalr1.java, data/location.cc:
2943 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
2944 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
2945 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
2946 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
2947 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
2948 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
2949 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
2950 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
2951 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
2952 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
2953 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
2954 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
2955 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
2956 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
2957 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
2958 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
2959 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
2960 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
2961 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
2962 * src/complain.c, src/complain.h, src/conflicts.c:
2963 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
2964 * src/files.h, src/flex-scanner.h, src/getargs.c:
2965 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
2966 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
2967 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
2968 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
2969 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
2970 * src/print.c, src/print.h, src/print_graph.c:
2971 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
2972 * src/reduce.h, src/relation.c, src/relation.h:
2973 * src/revision.h, src/scan-code.h, src/scan-code.l:
2974 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
2975 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
2976 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
2977 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
2978 * tests/Makefile.am, tests/actions.at, tests/c++.at:
2979 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
2980 * tests/existing.at, tests/glr-regression.at:
2981 * tests/headers.at, tests/input.at, tests/java.at:
2982 * tests/local.at, tests/output.at, tests/push.at:
2983 * tests/reduce.at, tests/regression.at, tests/sets.at:
2984 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
2985 * tests/torture.at:
2986 Update to GPLv3.
2987
2988 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2989
2990 Get rid of broken %no-parser, -n, and --no-parser implementation and
2991 documentation.
2992 * TODO: Don't mention them.
2993 * doc/bison.1: Likewise.
2994 * doc/bison.texinfo (Decl Summary): Likewise.
2995 (Bison Options): Likewise.
2996 (Option Cross Key): Likewise.
2997 * src/getargs.c (no_parser_flag): Remove global variable.
2998 (usage): Don't print description of -n and --no-parser.
2999 (long_options): Remove --no-parser entry here.
3000 (getargs): Remove -n case in the switch here.
3001 * src/getargs.h (no_parser_flag): Remove extern.
3002 * tests/regression.at (Web2c Actions): Remove comment that mentions
3003 --no-parser.
3004
3005 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3006
3007 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
3008 name user variables starting with `yy'. Just pass NULL instead of a
3009 dummy local &yylval to yypush_parse.
3010 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
3011 starting with `yy'.
3012
3013 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
3014
3015 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
3016 true since it's then always used regardless of whether yyoverflow is
3017 defined. Reported by Christian Burger at
3018 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
3019 * THANKS: Add Christian Burger.
3020
3021 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3022 node names: say "Decl Summary" not "Bison Declaration Summary".
3023
3024 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
3025
3026 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
3027 determine whether this function has already complained about an invalid
3028 value for a %define boolean variable, don't check whether Bison has
3029 ever examined the value. As written, the check was a tautology.
3030 Instead, record and check for this complaint using a separate muscle.
3031
3032 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3033
3034 Fix push parsing memory leak reported by Brandon Lucia at
3035 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
3036 * THANKS: Add Brandon Lucia.
3037 * data/push.c (yypstate_delete): Free the stack if it was reallocated
3038 but the parse never completed and thus freed it.
3039 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
3040 * tests/testsuite.at: Include push.at.
3041 * test/push.at: New.
3042 (Push Parsing: Memory Leak for Early Deletion): New test case.
3043
3044 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
3045
3046 Improve handling of multiple S/R conflicts in the same state and of S/R
3047 conflicts involving multiple reductions.
3048 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
3049 set for a state here or Bison will abort if it is reassigned on a
3050 later conflicted reduction in the same state.
3051 Similarly, don't finalize and assign the solved conflicts report here
3052 or it will be lost if it is reassigned on a later conflicted reduction
3053 in the same state.
3054 (set_conflicts): Instead, assign them both here after all S/R conflicts
3055 in the state have been fully examined.
3056 * src/print.c (shift_set): Rename to...
3057 (no_reduce_set): ... this.
3058 (print_reductions): Update for rename, and add %nonassoc error action
3059 tokens to no_reduce_set so that, when printing the first remaining
3060 reduction on an error action token, the reduction is enclosed in
3061 brackets.
3062 (print_results): Update for rename.
3063 * tests/conflicts.at (Solved conflicts report for multiple reductions
3064 in a state): New test case.
3065 (%nonassoc error actions for multiple reductions in a state): New test
3066 case.
3067
3068 * src/main.c (main): Don't depend on C99 features.
3069
3070 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3071
3072 * build-aux/.cvsignore: Add compile.
3073 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
3074 uniwidth.
3075
3076 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
3077
3078 * bootstrap (slurp): Create target directories that don't exist.
3079 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
3080
3081 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
3082
3083 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
3084 than item number.
3085 * closure.c (closure): Likewise.
3086 * state.h (reductions): Comment sorting of rules.
3087 (state): Comment sorting of items.
3088
3089 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
3090
3091 Fix C++ test cases after recent Gnulib changes. Discussed starting at
3092 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
3093 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
3094 definition in order to avoid Gnulib headers since we don't use config.h
3095 here.
3096 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
3097 rather than AT_DATA so that config.h is included.
3098
3099 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
3100
3101 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
3102 instead of fprintf. Guard these functions with #if YYDEBUG instead of
3103 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
3104 and so that YYFPRINTF is guaranteed to be defined here.
3105
3106 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
3107
3108 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
3109 with...
3110 (muscle_percent_define_check_values): ... this more helpful function.
3111 Again, it's not used yet, but it will be.
3112 * src/muscle_tab.h: Likewise.
3113
3114 Improve some comments in parser table construction.
3115 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
3116 (generate_states): Don't mention ruleset, which is internal to closure.
3117 * src/closure.c (closure): Explain sorting of core and itemset, which
3118 is required for this function to behave correctly.
3119 * src/closure.h (closure): Mention sorting.
3120
3121 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
3122
3123 * src/lalr.c (state_lookahead_tokens_count): For code readability,
3124 move the check for disabled transitions to an aver since conflict
3125 resolution hasn't happened yet.
3126
3127 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
3128 labels a state as inconsistent just because it has error transitions.
3129 The original form of this check appeared in revision 1.1 of lalr.c,
3130 which was committed on 1991-12-21. Now (at least), changing the
3131 consistency label on such a state appears to have no useful effect in
3132 any of the places it is examined, which I enumerate below. The key
3133 point to understanding each item in this enumeration is that a state
3134 with an error transition is labelled consistent in the first place only
3135 if it has no rules, so the check cannot matter for states that have
3136 rules. (1) Labelling a state as inconsistent will cause set_conflicts
3137 to try to identify its conflicts, and a state must have *rules* to have
3138 conflicts. (2) Labelling a state as inconsistent will affect how
3139 action_row sets the default *rule* for the state. (3) Labelling a
3140 state as inconsistent will cause build_relations to add lookback edges
3141 to *rules* in that state.
3142 * src/state.h (struct state): Word the comment for member consistent
3143 more carefully.
3144
3145 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3146
3147 Don't depend on C99 features.
3148 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
3149 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
3150 * src/reader.c (check_and_convert_grammar): Fix for-loop.
3151 * src/state.c (state_mark_reachable_states): Fix for-loop.
3152 (state_remove_unreachable_states): Fix for-loop.
3153
3154 Don't widen struct state with member reachable just to temporarily
3155 record reachability. Instead, use a local bitset.
3156 * src/state.h (struct state): Remove member.
3157 * src/state.c (state_new): Don't initialize it.
3158 (state_mark_reachable_states): Rename to...
3159 (state_record_reachable_states): ... this, and use bitset.
3160 (state_remove_unreachable_states): Use bitset.
3161
3162 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
3163
3164 * src/Makefile.am (yacc): Quote target action commands properly so
3165 that the yacc script isn't corrupt. Reported by Hans Aberg at
3166 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
3167
3168 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
3169 the case of pure parsers. Reported by Frans Englich at
3170 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
3171 * THANKS: Add Frans Englich.
3172
3173 * NEWS (2.3a+): In the %code entry, reference section `Bison
3174 Declaration Summary' from the manual now since the %code summary has
3175 moved there.
3176 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
3177 in the rules section must be terminated by semicolons.
3178
3179 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
3180
3181 Extend the front-end API for %define variables to more completely
3182 mirror the back-end. This will be useful in the future.
3183 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
3184 Update comments to mention the new front-end counterparts of these
3185 macros.
3186 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
3187 for muscle_string_decode and muscle_location_decode.
3188 (muscle_string_decode): New static function.
3189 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
3190 (muscle_percent_define_get, muscle_percent_define_ifdef): New
3191 functions.
3192 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
3193 muscle_percent_define_get to mimic the b4_percent_define_flag_if
3194 implementation more closely.
3195 (muscle_percent_define_invalid_value): New function.
3196 * src/muscle_tab.h (muscle_percent_define_get,
3197 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
3198 Prototype.
3199
3200 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3201
3202 * NEWS (2.3a+): Mention yesterday's state-removal change.
3203 (2.3a): Remove the %language entry, which was added after 2.3a.
3204 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
3205 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
3206 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
3207 tests/existing.at: Update copyright date.
3208
3209 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3210
3211 If conflict resolution makes states unreachable, remove those states,
3212 report rules that are then unused, and don't report conflicts in those
3213 states.
3214 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
3215 New global function.
3216 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
3217 function.
3218 * src/main.c (main): After conflict resolution, remove the unreachable
3219 states and update all data structures that reference states by number.
3220 * src/state.c (state_new): Initialize each state's reachable member to
3221 false.
3222 (state_mark_reachable_states): New static function.
3223 (state_remove_unreachable_states): New global function.
3224 * src/state.h (struct state): Add member bool reachable.
3225 (state_remove_unreachable_states): Prototype.
3226 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3227 New test case.
3228 * tests/existing.at (GNU pic Grammar): Update test case output now that
3229 an unused rule is discovered.
3230
3231 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3232
3233 Minor code cleanup in parser table construction.
3234 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
3235 (new_itemsets, save_reductions): Update for rename to nitemset.
3236 * src/closure.c (nritemset): Rename to...
3237 (nitemset): ... this since the "r" appears to meaningless and isn't
3238 used in the comments.
3239 (closure): Update for rename.
3240 * src/closure.h (nritemset): Update extern to...
3241 (nitemset): ... this.
3242 * src/lalr.c (LA): Fix a typo in comments.
3243 * src/print.c (print_core): Update for rename to nitemset.
3244 * src/print_graph.c (print_graph): Likewise.
3245 * src/state.h: Fix some typos in header comments.
3246
3247 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
3248
3249 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
3250 still sticks to ASCII. Sorry!
3251
3252 * README-hacking: New file, taken mostly from coreutils, with changes
3253 for Bison. Contains much of the contents of:
3254 * README-cvs: Remove.
3255 * bootstrap: Sync from gnulib.
3256 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
3257 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
3258
3259 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
3260
3261 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
3262 Setzer.
3263 (Java Differences): Fix some typos.
3264 * THANKS: Add Sebastian Setzer.
3265
3266 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
3267
3268 * data/java.m4 (b4_single_class_if): Remove.
3269 (b4_abstract_if): Look at "%define abstract".
3270 (b4_lexer_if): New.
3271 (b4_union_name): Rename...
3272 (b4_yystype): ... to this. Map to "%define stype".
3273 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
3274 b4_maybe_throws): Fix quoting.
3275 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
3276 * data/lalr1.java (Lexer interface): Always define.
3277 (Lexer interface within parser class): Remove.
3278 (YYLexer class): New, used when "%code lexer" is present.
3279 (constructor): When "%code lexer" is used, pass %lex-param
3280 to the lexer constructor.
3281 (yylex, yyparse): Remove %lex-param from method invocations
3282 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
3283
3284 * doc/bison.texinfo (Java Bison Interface): Mention "%define
3285 abstract". Rename "%define union_name" to "%define stype".
3286 Rename method names according to previous patch.
3287 (Java Scanner Interface): Describe "%code lexer" instead of
3288 "%pure-parser" and "%define single_class".
3289 (Java Differences): Mention "%code lexer".
3290
3291 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
3292 Include scanner here, using macros from tests/local.at.
3293 (AT_DATA_CALC_Y): Remove final argument.
3294 (_AT_CHECK_JAVA_CALC): Likewise.
3295 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
3296 of %locations and %error-verbose.
3297 (main): Test with and without %lex-param.
3298 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
3299 (AT_BISON_OPTION_POPDEFS): Pop it.
3300
3301 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3302
3303 DJGPP spefic issue. Inhibit the use of disallowed characters for
3304 file name genertion on Win98, WinXP, etc. These are |<>":?*\
3305 and concern testsuite case 46.
3306 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
3307 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
3308 * djgpp/config.bat: Inhibit the use of disallowed characters.
3309
3310 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3311
3312 Miscellaneous %define and %code cleanup.
3313 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
3314 values are interpreted.
3315 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3316 documentation a little more.
3317 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3318 muscle_percent_define_insert, muscle_percent_code_grow): New
3319 functions/macros.
3320 * src/muscle_tab.h (muscle_percent_define_insert,
3321 muscle_percent_code_grow): Prototype.
3322 * src/parse-gram.y (prologue_declaration): Use
3323 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3324 %define and %code directives.
3325
3326 Make it easy to share %define boolean variables between the front-end
3327 and back-end. Though not used yet, this will be useful in the future.
3328 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3329 Bison uses of names rather than just skeleton uses of names.
3330 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3331 b4_percent_define_skeleton_variables(VARIABLE) to
3332 b4_percent_define_bison_variables(VARIABLE).
3333 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3334 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3335 b4_percent_code_bison_qualifiers(QUALIFIER).
3336 (b4_check_user_names_wrap): Update for renames.
3337 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3338 muscle_percent_define_default): New functions mimicking
3339 b4_percent_define_flag_if and b4_percent_define_default.
3340
3341 For %define variables, report locations for invalid values and
3342 redefinitions.
3343 * data/bison.m4 (b4_percent_define_flag_if): Read
3344 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3345 value for VARIABLE.
3346 (b4_percent_define_default): Save a special location in
3347 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3348 must later be reported as invalid.
3349 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3350 functions.
3351 (muscle_percent_define_insert): Record the location of VARIABLE in
3352 muscle percent_define_loc(VARIABLE), and use it to report the previous
3353 location for a redefinition.
3354 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3355 (muscle_percent_define_default): Update like b4_percent_define_default.
3356 (muscle_grow_user_name_list): Rename to...
3357 (muscle_user_name_list_grow): ... this for consistency and use
3358 muscle_location_grow.
3359 * src/muscle_tab.h (muscle_location_grow): Prototype.
3360 * tests/input.at (%define errors): Update expected output.
3361 * tests/skeletons.at (%define boolean variables: invalid skeleton
3362 defaults): New test case.
3363
3364 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3365
3366 * src/print.c (lookahead_set, state_default_rule): Remove.
3367 (print_reductions): Replace state_default_rule invocation with
3368 equivalent use of yydefact, which was computed in token_actions in
3369 tables.c.
3370 (print_results): Don't allocate lookahead_set.
3371
3372 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
3373
3374 * data/lalr1.java: Prefix all private members with yy.
3375
3376 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3377
3378 Use YYFPRINTF instead of fprintf where appropriate. Reported by
3379 Sebastien Fricker at
3380 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
3381 * THANKS: Add Sebastien Fricker.
3382 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3383 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3384 accept a variable number of arguments.
3385
3386 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3387
3388 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3389
3390 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3391
3392 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3393 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3394 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3395
3396 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3397
3398 Undo my 2007-02-07 change, switching back to the c-strcase module
3399 introduced in the 2007-02-03 change. Bruno Haible reported that
3400 the 2007-02-07 change would be dangerous in Turkish if we add a
3401 language whose name contains "i", since "i" is not lowercase "I"
3402 in Turkish.
3403 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3404 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3405 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3406 * m4/.cvsignore: Remove strcase.m4.
3407 * src/getargs.c: Revert 2007-02-07 change, as follows.
3408 Include c-strcase.h.
3409 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3410
3411 2007-02-11 Bruno Haible <bruno@clisp.org>
3412
3413 Enable the Java related testsuite tests when the only Java compiler
3414 found is a gcj < 4.3. Discussed at
3415 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3416 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3417
3418 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3419
3420 * data/Makefile.am: Update copyright date.
3421 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3422 yypstate_new returns NULL.
3423 (yypstate_new): Return NULL if malloc does.
3424 * src/reader.c (packgram): Move translation of rule actions from the
3425 beginning of packgram to...
3426 (check_and_convert_grammar): ... here right before packgram is invoked
3427 so it's easier to write more complete comments, and remove redundant
3428 code.
3429
3430 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3431
3432 As in semantic actions, make @$ in %initial-action, %destructor, and
3433 %printer imply %locations.
3434 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3435 scanning @$.
3436 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3437 (@$ in %initial-action implies %locations,
3438 @$ in %destructor implies %locations,
3439 @$ in %printer implies %locations): ... these new test cases.
3440
3441 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3442
3443 Undo most of the 2007-02-03 change, switching to the strcase module
3444 now that gnulib strcase has been fixed.
3445 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3446 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3447 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3448 * m4/.cvsignore: Add strcase.m4.
3449 * src/getargs.c: Revert 2007-02-03 change, as follows.
3450 Don't include c-strcase.h.
3451 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3452 strcasecmp has "unspecified behavior" outside the POSIX locale,
3453 but it works fine in practice if at least one argument is ASCII,
3454 as is the case in Bison.
3455
3456 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
3457
3458 * tests/java.at: Skip tests if only one of javac/java is present.
3459 Reported by Joel E. Denny.
3460 * tests/atlocal.in: Adjust copyright years.
3461
3462 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
3463
3464 * data/lalr1.java (Stack): Work around old verifiers that disallow
3465 access to the private fields of an inner class, from the outer class.
3466 We can make Stack's fields public because user code doesn't have access
3467 to the instance of Stack used by parse(). Reported by Paul Eggert.
3468
3469 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3470
3471 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3472 the right spot for these files?
3473 * bootstrap.conf (gnulib_modules): Add c-strcase.
3474 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3475 c-strncasecmp.c.
3476 * src/getargs.c: Include c-strcase.h.
3477 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3478 to avoid unspecified behavior.
3479
3480 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3481
3482 * doc/bison.texinfo (Decl Summary): Correct typo.
3483
3484 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
3485
3486 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3487 Complain if the value does not match empty, "true" or "false".
3488 * data/c++.m4: Adjust default definitions of %define variables.
3489 * data/java.m4: Adjust default definitions of %define variables.
3490 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3491 to above behavior.
3492 * tests/input.at (Boolean %define variables): Test new behavior.
3493
3494 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
3495
3496 * NEWS: Mention java.
3497 * TODO: Remove things that are done.
3498 * bootstrap.conf: Add javacomp-script and javaexec-script.
3499 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3500
3501 * data/Makefile.am: Add new files.
3502 * data/java-skel.m4: New.
3503 * data/java.m4: New.
3504 * data/lalr1.java: New.
3505
3506 * doc/bison.texinfo: Put "A Complete C++ Example" under
3507 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3508 under Other Languages.
3509
3510 * src/getargs.c (valid_languages): Add Java.
3511 * src/getargs.h (struct bison_language): Update size of string fields.
3512
3513 * tests/Makefile.am: Add java.at.
3514 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3515 * tests/java.at: New.
3516 * tests/testsuite.at: Include it.
3517
3518 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3519
3520 Clean up.
3521 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3522 at_directive_argv arguments so these no longer have to be global
3523 variables. Also, update the implementation for the following changes.
3524 (fail_for_at_directive_too_many_args,
3525 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3526 (at_directive_name): Remove as at_directive_argv[0] will be used for
3527 this now.
3528 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3529 for the directive name.
3530 (at_directive_argc, at_directive_argv): Make these local within
3531 skel_lex instead of global.
3532 (INITIAL): Update directive start action for above changes.
3533 (SC_AT_DIRECTIVE_ARG): Rename to...
3534 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3535 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3536 (scan_skel): Move yylex_destroy to...
3537 (skel_scanner_free): ... here.
3538 * tests/skeletons.at (installed skeleton file name): Rename to...
3539 (installed skeleton file names): ... this.
3540
3541 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3542
3543 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3544 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3545 Summary" not "Directives".
3546 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3547 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3548 since the former is now the more complete one.
3549 (Prologue Alternatives): Likewise and do the same for %defines.
3550 (Table of Symbols): Add summary of %code, add summary of %define, and
3551 move full %code documentation to...
3552 (Decl Summary): ... here for consistency with other entries in these
3553 sections.
3554 Move %define entry in order to keep this list alphabetized.
3555 Reword %define entry a little to put less emphasis on the skeleton
3556 concept, which most users shouldn't have to think about.
3557
3558 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3559
3560 Adjust to recent gnulib changes.
3561 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3562 Add string.h, string_.h, unistd_.h, wchar_.h.
3563 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3564 * src/system.h: Don't include <stpcpy.h>; this is now done by
3565 <string.h>.
3566
3567 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
3568
3569 Simplify implementation of unqualified %code, implement macros for
3570 uniform treatment of boolean %define flags. Document %define.
3571 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3572 b4_percent_code_ifdef): New.
3573 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3574 * data/c++.m4: Define default value for global_tokens_and_yystype.
3575 * data/glr.cc: Likewise.
3576 * data/location.cc: Use b4_percent_define_flag_if.
3577
3578 * doc/bison.texinfo (Decl Summary): Document %define.
3579
3580 * src/parse-gram.y (Unqualified %code): Change muscle name to
3581 b4_percent_code().
3582 (content.opt): Default to empty.
3583
3584 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3585
3586 Implement support for relative and absolute skeleton file names.
3587 Discussed starting at
3588 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3589 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3590 (Bison Options): Document in --skeleton entry.
3591 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3592 full_skeleton can't necessarily hold all of pkgdatadir.
3593 If the specified skeleton file name contains a `/', don't prepend
3594 pkgdatadir.
3595 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3596 file name contains a `/', prepend the grammar file directory.
3597 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3598 * skeletons.at: New file.
3599 (relative skeleton file names): New test case.
3600 (installed skeleton file names): New test case.
3601 * tests/testsuite.at: Include skeletons.at.
3602
3603 * bootstrap: Update copyright to 2007.
3604
3605 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
3606
3607 * bootstrap: Remove occurrences of .#bootmp from the files.
3608
3609 2007-01-17 Akim Demaille <akim@epita.fr>
3610
3611 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3612 nonterminals.
3613 Use per-type %printer.
3614
3615 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3616
3617 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3618 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3619 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3620 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3621 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3622 tests/glr-regression.at, tests/input.at, tests/local.at,
3623 tests/output.at, tests/torture.at: Update copyright to 2007.
3624
3625 2007-01-16 Akim Demaille <akim@epita.fr>
3626
3627 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3628 error code.
3629 (Calc++ Scanner): Exit with failure if we can't open the input
3630 file.
3631 Accept "-" standing for stdin.
3632 (Calc++ Top Level): Print the result only if the parsing was
3633 successful.
3634
3635 2007-01-16 Akim Demaille <akim@epita.fr>
3636
3637 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3638
3639 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
3640 and Joel E. Denny <jdenny@ces.clemson.edu>
3641
3642 Clean up %define and %code implementation in M4 some. Most
3643 importantly, rename all related macros to be in the b4_percent_define
3644 and b4_percent_code namespaces. Also, complete support for `.' in
3645 %define variable names and %code qualifiers.
3646 * data/bison.m4 (b4_check_user_names): Check for special
3647 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3648 m4_foreach loops.
3649 (b4_get_percent_define, b4_get_percent_code): Rename to...
3650 (b4_percent_define_get, b4_percent_code_get): ... these.
3651 Extend documentation with examples.
3652 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3653 b4_percent_define_skeleton_variables and
3654 b4_percent_code_skeleton_qualifiers.
3655 Expect any value for the %define variable `foo' to be stored in the
3656 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3657 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3658 expect any unqualified %code blocks to be stored in a macro named
3659 `b4_percent_code_unqualified'.
3660 Use m4_indir so that %define variable names and %code qualifiers can
3661 contain `.', which is allowed by the grammar parser.
3662 (b4_percent_define_default): New macro to set a default value for a
3663 %define variable.
3664 (m4_wrap): Update wrapped code, and fix some underquoting.
3665 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
3666 Expect grammar uses of %define variables and %code qualifiers to be
3667 defined in b4_percent_define_user_variables and
3668 b4_percent_code_user_qualifiers.
3669 * data/c++.m4: Use b4_percent_define_default rather than
3670 m4_define_default. Fix some underquoting. Skeleton usage of %define
3671 variable define_location_comparison now implies skeleton usage of
3672 %define variable filename_type.
3673 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3674 data/push.c, data/yacc.c: Update macro names.
3675 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
3676 muscle names.
3677
3678 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3679
3680 DJGPP specific issues.
3681
3682 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
3683 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
3684
3685 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3686
3687 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
3688 run parsers in all tests so that Valgrind is invoked during
3689 maintainer-check-valgrind.
3690 (Duplicate representation of merged trees): Free all semantic values.
3691 (Duplicated user destructor for lookahead): Likewise.
3692
3693 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3694
3695 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
3696 command-line prefix.
3697 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
3698 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
3699 miss Valgrind messages.
3700 (Exploding the Stack Size with Malloc): Likewise.
3701
3702 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3703
3704 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
3705 locals. Reported by Juan Manuel Guerrero at
3706 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
3707 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
3708 Fix some indentation also.
3709 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
3710 explaining this issue.
3711
3712 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
3713 and Joel E. Denny <jdenny@ces.clemson.edu>
3714
3715 Simplify union and prologue handling, and escape union and lex/parse
3716 params with digraphs.
3717 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
3718 values to the empty string since these are no longer guaranteed
3719 initialized by the front-end.
3720 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
3721 braces around b4_user_stype since this is no longer done by the
3722 front-end.
3723 * src/files.c, src/files.h (pre_prologue_obstack,
3724 post_prologue_obstack): Remove.
3725 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
3726 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
3727 with digraphs. This fixes lex params and parse params.
3728 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
3729 * src/output.c (prepare): Remove muscle insertion of the prologues.
3730 (output): Remove freeing of pre_prologue_obstack and
3731 post_prologue_obstack.
3732 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
3733 than prologue_augment for prologue parsing so you don't need prologue
3734 obstacks.
3735 (grammar_declaration): For %union RHS, use `braceless' instead of
3736 "{...}" so that braces are already stripped and code is escaped with
3737 digraphs.
3738 * src/reader.c (prologue_augment): Remove.
3739 (reader): Remove initialization of pre_prologue_obstack and
3740 post_prologue_obstack.
3741 * src/reader.h (prologue_augment): Remove.
3742
3743 * data/c.m4: Remove stray parenthesis.
3744
3745 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3746
3747 Remove quotes from variables names in %define directives and from
3748 qualifiers in %code directives, and restrict the characters that are
3749 allowed in them to M4-friendly ones. For %define, continue to support
3750 the quoted form as a deprecated feature. Discussed starting at
3751 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
3752 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
3753 %code.
3754 * doc/bison.texinfo (Prologue Alternatives): Update.
3755 (Decl Summary): In %defines entry, update mention of `%code requires'
3756 and `%code provides'.
3757 (C++ Location Values): Update %define uses.
3758 (Calc++ Parser Interface): Likewise.
3759 (Calc++ Parser): Likewise, and update `%code requires' uses.
3760 (Table of Symbols): Update %code documentation.
3761 * src/parse-gram.y (prologue_declaration): For %define variables, use
3762 `variable' instead of `STRING'.
3763 (grammar_declaration): For %code qualifiers, use `ID' instead of
3764 `STRING'.
3765 (variable): New nonterminal that takes an `ID' or a `STRING'.
3766 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
3767 and %define uses.
3768 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
3769 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
3770 (%define errors): Update %define uses.
3771
3772 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3773
3774 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
3775 instead of muscle_insert for %define values so that M4-special
3776 characters are replaced with digraphs.
3777 * tests/input.at (%define errors): Extend to check weird values.
3778
3779 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3780
3781 Instead of having skeletons declare all valid %define variables and
3782 %code qualifiers, provide macros that retrieve the associated values
3783 and build these lists automatically. Thus Bison will now warn when a
3784 variable or qualifier is not used by the skeleton in the current
3785 invocation regardless of whether it might sometimes be used by that
3786 skeleton in other invocations. Also, move all %define value macros to
3787 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
3788 form, which is replaced by %code.
3789 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
3790 (b4_check_user_names): ... this, and change the series of valid name
3791 arguments to a single list argument for names used in the skeleton
3792 similar to the existing list argument for names used in the grammar.
3793 Warn instead of complaining.
3794 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
3795 values and %code code, to format %code code properly, and to build
3796 lists of all %define variables and %code qualifiers used in the
3797 skeleton: b4_skeleton_percent_define_variables and
3798 b4_skeleton_percent_code_qualifiers.
3799 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
3800 Remove, and...
3801 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
3802 the skeleton names lists can finish building first. In place of
3803 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
3804 expect the lists b4_user_percent_define_variables and
3805 b4_user_percent_code_qualifiers.
3806 * data/c++.m4: Where setting default values for b4_parser_class_name,
3807 b4_location_type, b4_filename_type, b4_namespace, and
3808 b4_define_location_comparison, update their names to the
3809 b4_percent_define_ namespace.
3810 * data/glr.c: Don't use b4_check_percent_define_variables and
3811 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3812 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
3813 (b4_parser_class_name, b4_namespace): Define these using
3814 b4_get_percent_define for parser_class_name and namespace.
3815 * data/location.cc: Use b4_get_percent_define.
3816 * data/push.c: Don't use b4_check_percent_define_variables and
3817 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3818 * data/yacc.c: Likewise, and don't call m4_exit in
3819 b4_use_push_for_pull_if or m4_wrap code will never execute.
3820 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
3821 Rename to...
3822 (muscle_grow_user_name_list): ... this for consistency with the
3823 terminology used in bison.m4.
3824 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
3825 %define variable names, and rename muscle used_percent_define_variables
3826 to user_percent_define_variables.
3827 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
3828 user_percent_code_qualifiers.
3829 (content): Remove.
3830 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
3831 {CODE} form is no longer accepted.
3832 * tests/input.at (Reject bad %code qualifiers): Rename to...
3833 (Reject unused %code qualifiers): ... this, and update test output.
3834 (%define error): Update test output.
3835
3836 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
3837
3838 Check for unrecognized %define variables similar to checking for
3839 unrecognized %code qualifiers. Check for redefined %define variables.
3840 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
3841 generalizes...
3842 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
3843 (b4_check_percent_define_variables): New, also wraps it.
3844 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
3845 variables using b4_check_percent_define_variables.
3846 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
3847 all those exercised in the test suite and all those listed in the
3848 `Default values' section of c++.m4. Are there others?
3849 * data/push.c, data/yacc.c: Declare no valid %define variables.
3850 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
3851 similar to muscle_find, but it works even when the muscle stores a
3852 const value.
3853 (muscle_grow_used_name_list): New function for constructing the used
3854 name list muscles that b4_check_for_unrecognized_names requires.
3855 * src/parse-gram.y (prologue_declaration): Warn if a variable is
3856 %define'd more than once. Define the b4_used_percent_define_variables
3857 muscle with muscle_grow_used_name_list.
3858 (grammar_declaration): Abbreviate %code code with
3859 muscle_grow_used_name_list.
3860 * tests/input.at (%define errors): New.
3861
3862 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3863
3864 Provide warn_at, complain_at, and fatal_at function callbacks to the
3865 skeletons, and use this for %code qualifier complaints.
3866 * data/bison.m4 (b4_error_at): New, invoked by...
3867 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
3868 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
3869 @fatal_at(...@) directives.
3870 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
3871 qualifiers in b4_used_percent_code_qualifiers and to use
3872 b4_complain_at.
3873 * src/location.c, src/location.h (boundary_set_from_string): New global
3874 function.
3875 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
3876 function.
3877 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
3878 to b4_used_percent_code_qualifiers.
3879 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
3880 function.
3881 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
3882 (lineno): Rename to...
3883 (out_lineno): ... this so I don't misunderstand it again.
3884 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
3885 here; these newlines are in the input but not the output file.
3886 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
3887 (at_directive_perform): ... this new static function, and add handling
3888 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
3889 directives.
3890 * tests/input.at (Reject bad %code qualifiers): Update test output with
3891 locations and extend.
3892
3893 * tests/output.at (Output file name: [, Output file name: ]): Remove
3894 bogus comment about these tests failing.
3895
3896 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3897
3898 Clean up b4_check_percent_code_qualifiers a little.
3899 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
3900 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
3901 documentation and add examples.
3902 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
3903 qualifiers here.
3904
3905 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
3906
3907 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
3908 unreliable -- especially when they're hidden inside another macro.
3909 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
3910 data/c.m4: Remove m4_divert(-1).
3911 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3912 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
3913 m4_divert_push(0) and m4_divert_pop(0).
3914 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
3915 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
3916 pushed and popped by m4sugar, should be first on the stack.
3917
3918 Provide warn, complain, and fatal function callbacks to the skeletons.
3919 This provides more flexibility than m4_fatal, improves the error
3920 message format, and captures messages for translation. Discussed
3921 starting at
3922 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
3923 * data/bison.m4 (b4_error): New, invoked by...
3924 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
3925 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
3926 directives. Because these M4 macros might be called when the current
3927 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
3928 the previous removal of uses of m4_divert, which caused trouble.
3929 (b4_check_percent_code_qualifiers): Use b4_complain instead of
3930 m4_fatal to report unrecognized %code qualifiers.
3931 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
3932 push parser requests.
3933 * data/glr.c: Use b4_complain instead of m4_fatal to report
3934 non-deterministic push parser requests.
3935 Update @output usage to @output(...@) form.
3936 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
3937 report missing %defines. Update @output usage to @output(...@) form.
3938 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
3939 @output(...@) form.
3940 * src/main.c (main): Invoke skel_scanner_free.
3941 * src/scan-skel.h (skel_scanner_free): Prototype new function.
3942 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
3943 obstack_for_string from flex-scanner.h.
3944 (YY_DECL): Use to declare skel_lex static.
3945 (decode_at_digraphs): Remove; now handled in the new
3946 SC_AT_DIRECTIVE_ARG start condition.
3947 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
3948 functions.
3949 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
3950 at_directive_argv): New static globals.
3951 (INITIAL): Use fail_for_invalid_at.
3952 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
3953 recognize the start of a generalized `@directive(...@)' form and
3954 start...
3955 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
3956 directive args (using the new obstack_for_string), to decode the
3957 contained @ diagraphs, and to perform the directive. It recognizes
3958 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
3959 @output(...@).
3960 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
3961 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
3962 `@,'.
3963 (scan_skel): Initialize obstack_for_string on the first call.
3964 (skel_scanner_free): New function to free obstack_for_string.
3965 * tests/input.at (Reject bad %code qualifiers): Update test output.
3966
3967 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
3968
3969 Consolidate the 4 prologue alternative directives (%code, %requires,
3970 %provides, and %code-top) into a single %code directive with an
3971 optional qualifier field. Discussed at
3972 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
3973 * NEWS (2.3a+): Rewrite the existing entry for the prologue
3974 alternatives.
3975 * doc/bison.texinfo (Prologue Alternatives): Update.
3976 (Decl Summary): Update to %code "requires" and %code "provides".
3977 (Calc++ Parser): Update to %code "requires".
3978 (Table of Symbols): Remove entries for %requires, %provides, and
3979 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
3980 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
3981 are replaced by b4_percent_code_provides and b4_percent_code_requires,
3982 which are skeleton-specific.
3983 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
3984 declare what %code qualifiers it supports and to complain if any other
3985 qualifiers were used in the grammar.
3986 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
3987 and b4_user_code([b4_percent_code_provides]) in place of
3988 b4_user_requires and b4_user_provides.
3989 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
3990 Add b4_user_code([b4_percent_code_top]) and
3991 b4_user_code([b4_percent_code]).
3992 Invoke b4_check_percent_code_qualifiers.
3993 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3994 PERCENT_REQUIRES): Remove.
3995 (grammar_declaration): Remove RHS's for %code-top, %provides, and
3996 %requires. Rewrite the %code RHS as the unqualified form defining the
3997 muscle b4_percent_code. Add another RHS for the qualified %code form,
3998 which defines muscles of the form b4_percent_code_QUALIFIER and the
3999 b4_used_percent_code_qualifiers muscle.
4000 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4001 PERCENT_REQUIRES): Remove.
4002 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
4003 %code "requires" and %code "provides".
4004 * tests/input.at (Reject bad %code qualifiers): New.
4005
4006 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4007
4008 Use the new code_props interface for destructors and printers.
4009 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
4010 printer_location members, and change the type of the destructor and
4011 printer members to code_props.
4012 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
4013 symbol_printer_get, semantic_type_destructor_set,
4014 semantic_type_printer_set, default_tagged_destructor_set,
4015 default_tagless_destructor_set, default_tagged_printer_set,
4016 default_tagless_printer_set): Use code_props in arguments and return
4017 types in place of char const * and location.
4018 (symbol_destructor_location_get, symbol_printer_location_get): Remove
4019 since the locations are now contained in the return of
4020 symbol_destructor_get and symbol_printer_get.
4021 * src/output.c (symbol_destructors_output, symbol_printers_output):
4022 Replace with...
4023 (symbol_code_props_output): ... this to eliminate duplicate code.
4024 (output_skeleton): Update to use symbol_code_props_output.
4025 * src/reader.c (symbol_should_be_used): Update use of
4026 symbol_destructor_get.
4027 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
4028 Update uses of the various _destructor_set and _printer_set functions.
4029 * src/symtab.c: (default_tagged_destructor_location,
4030 default_tagless_destructor_location, default_tagged_printer_location,
4031 default_tagless_printer_location): Remove since we...
4032 (default_tagged_destructor, default_tagless_destructor,
4033 default_tagged_printer, default_tagless_printer): ... change the type
4034 of these to code_props.
4035 (symbol_new, semantic_type_new, symbol_destructor_set,
4036 semantic_type_destructor_set, symbol_destructor_get,
4037 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
4038 symbol_check_alias_consistency, default_tagged_destructor_set,
4039 default_tagless_destructor_set, default_tagged_printer_set,
4040 default_tagless_printer_set): Update.
4041 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
4042 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
4043 code_props members.
4044 (symbol_print): Use SYMBOL_CODE_PRINT.
4045
4046 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4047
4048 Use the new code_props interface for rule actions.
4049 * src/symlist.h (symbol_list): Replace action, action_location, and
4050 used members with a code_props action_props member.
4051 * src/reader.c (symbol_should_be_used, grammar_rule_check,
4052 grammar_midrule_action, grammar_current_rule_merge_set,
4053 grammar_current_rule_symbol_append, packgram): Update.
4054 * src/scan-code.h (translate_rule_action): Remove, no longer used.
4055 * src/scan-code.l (handle_action_dollar): Update.
4056 (translate_rule_action): Remove, no longer used.
4057 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
4058
4059 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4060
4061 Use the new code_props interface in parse-gram.y.
4062 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
4063 Update all uses of translate_* functions to use the new code_props
4064 interface and to use gram_scanner_last_string_free and
4065 code_scanner_last_string_free where possible.
4066 (grammar_declaration): symbol_list_destructor_set and
4067 symbol_list_printer_set now perform the translation, so don't do it
4068 here. Use gram_scanner_last_string_free where possible.
4069 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
4070 translate_code): Remove, no longer used.
4071 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
4072 symbol_list_printer_set): Perform code translation here rather than
4073 depending on the caller to do so.
4074
4075 * src/symlist.h (struct symbol_list): Correct some documentation typos.
4076 * src/scan-gram.h (gram_last_string): Remove declaration.
4077 * src/scan-gram.l (last_string): Declare it static.
4078
4079 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4080
4081 Encapsulate code properties and related functionality for the various
4082 destructors, printers, and actions into a code_props structure and
4083 interface. This patch merely implements code_props in scan-code.h and
4084 scan-code.l. Future patches will rewrite other modules to use it.
4085 Discussed starting at
4086 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
4087 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
4088 consistently initialize const structs that have an empty location
4089 field.
4090 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
4091 to ensure consistency.
4092 * src/scan-code.h (code_props): New structure.
4093 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
4094 function, macro, and const global variable for initializing a
4095 code_props with no code.
4096 (code_props_plain_init, code_props_symbol_action_init,
4097 code_props_rule_action_init, code_props_translate_code): The rest of
4098 the new code_props functional interface. Among other things, the init
4099 functions set the code_props kind field so that
4100 code_props_translate_code will know whether to behave like
4101 translate_symbol_action, translate_rule_action, or translate_code.
4102 These old translate functions must remain until all other modules are
4103 updated to use the new code_props interface.
4104 (code_scanner_last_string_free): New function similar to
4105 gram_scanner_last_string_free.
4106 (code_scanner_free): Add documentation.
4107 * src/scan-code.l: Implement the new interface.
4108 (code_lex): Make it static, add a code_props* argument, and remove the
4109 rule argument.
4110 (last_string): New static global similar to the one in scan-gram.l.
4111 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
4112 instead of rule.
4113 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
4114 code_props since Bison may one day use this information for destructors
4115 and printers.
4116 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
4117 (handle_action_dollar): Use symbol_list_n_get and set used flag
4118 directly since symbol_list_n_used_set is removed.
4119 (translate_action): Add a code_props* argument and remove the rule,
4120 action, and location arguments. Pass the code_props* on to code_lex.
4121 (translate_rule_action, translate_symbol_action, translate_code):
4122 Rewrite as wrappers around the new code_props interface.
4123 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
4124 it would eventually need to break the encapsulation of code_props.
4125
4126 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4127
4128 * etc/.cvsignore: New.
4129
4130 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4131
4132 Add maintainer-push-check to run maintainer-check using push parsing in
4133 place of pull parsing where available.
4134 * Makefile.am (maintainer-push-check): New.
4135 * data/bison.m4 (b4_use_push_for_pull_if): New.
4136 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
4137 appropriately based on their existing values.
4138 (yypush_parse): Don't print push-parser-specific diagnostics if push
4139 parsing is being used in place of pull parsing.
4140 * data/yacc.c: If push parsing should replace pull parsing, redirect to
4141 push.c.
4142 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
4143 variable, and insert b4_use_push_for_pull_flag into muscles.
4144 * tests/Makefile.am (maintainer-push-check): New.
4145
4146 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4147
4148 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
4149 (whether successful or failed) so that yypush_parse can be invoked
4150 again to start a new parse using the same yypstate.
4151 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
4152 check multiple yypull_parse invocations on the same yypstate. For pull
4153 mode, extend to check multiple yyparse invocations.
4154 (Exploding the Stack Size with Alloca): Extend to try with
4155 %push-pull-parser.
4156 (Exploding the Stack Size with Malloc): Likewise.
4157
4158 * tests/calc.at (Simple LALR Calculator): Don't specify
4159 %skeleton "push.c" since %push-pull-parser implies that now.
4160 * tests/headers.at (export YYLTYPE): Don't check for the push
4161 declarations. Otherwise, this test case can't be used to see if push
4162 mode can truly emulate pull mode.
4163 * tests/input.at (Torturing the Scanner): Likewise.
4164 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
4165 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
4166 AT_YACC_IF, which now includes the case of push mode since %skeleton
4167 need not be used for push mode. This will be more intuitive once
4168 push.c is renamed to yacc.c.
4169
4170 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4171
4172 For push mode, convert yyparse from a macro to a function, invoke yylex
4173 instead of passing a yylexp argument to yypull_parse, and don't
4174 generate yypull_parse or yyparse unless %push-pull-parser is declared.
4175 Discussed starting at
4176 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
4177 * data/bison.m4 (b4_pull_if): New.
4178 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
4179 * data/push.c: Improve M4 quoting a little.
4180 (b4_generate_macro_args, b4_parenthesize): Remove.
4181 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
4182 any time a pull parser is requested.
4183 Don't #define this as a wrapper around yypull_parse. Instead, when
4184 both push and pull are requested, make it a function that does that
4185 same thing.
4186 (yypull_parse): If there's a b4_prefix, #define this to
4187 b4_prefix[pull_parse] when both push and pull are requested.
4188 Don't define this as a function unless both push and pull are
4189 requested.
4190 Remove the yylexp argument and hard-code yylex invocation instead.
4191 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
4192 %push-parser.
4193 * src/getargs.c (pull_parser): New global initialized to true.
4194 * getargs.h (pull_parser): extern it.
4195 * src/output.c (prepare): Insert pull_flag muscle.
4196 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
4197 (prologue_declaration): Set both push_parser and pull_parser = true for
4198 %push-pull-parser. Set push_parser = true and pull_parser = false for
4199 %push-parser.
4200 * src/scan-gram.l: Don't accept %push_parser as an alternative to
4201 %push-parser since there's no backward-compatibility concern here.
4202 Scan %push-pull-parser.
4203 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
4204 instead of %push-parser.
4205 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
4206 prototype it in the module that calls yyparse.
4207 * tests/input.at (Torturing the Scanner): Likewise.
4208 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
4209
4210 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
4211
4212 Update etc/bench.pl. Optimize push mode a little (the yyn change
4213 deserves most of the credit).
4214 * Makefile.am (SUBDIRS): Add etc subdirectory.
4215 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
4216 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
4217 yytoken, yyval, and yyloc declarations to...
4218 (yyparse or yypush_parse): ... here to improve performance. For
4219 yypush_parse invocations after the first, be sure to assign yyn its old
4220 value again.
4221 (yypstate_new): Don't bother initializing the yyresult field since the
4222 initial value isn't used.
4223 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
4224 remove the #define that, in push mode, set it to yyps->NAME.
4225 * etc/Makefile.am: New.
4226 * etc/bench.pl: Remove and build it instead from...
4227 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
4228 "tests/bison" from the build directory by default rather than just
4229 invoking "bison" from $PATH.
4230 (calc_grammar): Update push parser code: don't declare yylval globally,
4231 don't define yyparse_wrapper, and don't #define yyparse.
4232 (bench_grammar): Update to check all working combinations of yacc.c,
4233 push.c, impure, pure, pull, and push.
4234
4235 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4236
4237 For push mode, add pull wrappers around yypush_parse.
4238 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
4239 (yypull_parse): New function wrapping yypush_parse.
4240 (yyparse): New #define wrapping yypull_parse.
4241 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
4242 is declared.
4243 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
4244 prototype yylex in the module that calls yyparse, and don't prototype
4245 yyparse there. Otherwise, the yyparse expansion won't compile.
4246 * tests/input.at (Torturing the Scanner): Likewise.
4247
4248 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4249
4250 Enable push parsers to operate in impure mode. Thus, %push-parser no
4251 longer implies %pure-parser. The point of this change is to move
4252 towards being able to test the push parser code by running the entire
4253 test suite as if %push-parser had been declared.
4254 * data/push.c (yypush_parse): For impure mode, remove the
4255 yypushed_char, yypushed_val, and yypushed_loc arguments.
4256 Instead, declare these as local variables initialized to the global
4257 yychar, yylval, and yylloc.
4258 For the first yypush_parse invocation only, restore the initial values
4259 of these global variables when it's time to read a token since they
4260 have been overwritten.
4261 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
4262 %push-parser.
4263 * tests/calc.at (Simple LALR(1) Calculator): Always declare
4264 %pure-parser along with %push-parser since this test case was designed
4265 for pure push parsers.
4266 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
4267 (AT_YACC_OR_PUSH_IF): New.
4268 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
4269 add a note that it's still wrong for some cases (as it has been for a
4270 while).
4271 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
4272 %push-parser no longer implies %pure-parser.
4273
4274 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4275
4276 Remove some unnecessary differences between the pull parser code and
4277 the push parser code. This patch enables yynerrs in push mode.
4278 * data/push.c: Reformat M4 a little.
4279 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
4280 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
4281 because push mode is on. Instead, if pure mode is on, move yynerrs
4282 to...
4283 (b4_declare_parser_state_variables): ... here.
4284 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
4285 to yyps->NAME so it can be used in yypush_parse.
4286 (yypush_parse): Don't omit uses of yynerrs in push mode.
4287
4288 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4289
4290 Fix bug such that the first pushed token's value and location are
4291 sometimes overwritten (sometimes by %initial-action) before being used.
4292 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
4293 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
4294 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
4295 more closely mimic the pull parser logic.
4296 Don't copy the pushed token to yychar, yylval, and yylloc until it's
4297 time to read a token, which is after any initialization of yylval and
4298 yylloc.
4299 (gottoken): Rename label to...
4300 (yyread_pushed_token): ... for clarity and to avoid infringing on the
4301 user namespace.
4302
4303 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4304
4305 Rearrange initialization of the parser state variables so that the
4306 skeleton doesn't have to have a copy for pull mode and another for push
4307 mode. This patch also fixes at least a bug such that yylloc was not
4308 initialized (with b4_location_initial_line and
4309 b4_location_initial_column) upon calling yypush_parse. However, that
4310 initialization now overwrites the first token's location;
4311 %initial-action assigning @$ already did the same thing, and both bugs
4312 will be fixed in a later patch.
4313 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
4314 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4315 yyss, yyvs, yyls, and yystacksize.
4316 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4317 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4318 yylsp.
4319 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4320 yyps->NAME so it can be used in yypush_parse.
4321 (yyparse or yypush_parse): For yypush_parse, don't print the
4322 "Starting parse" diagnostic for invocations after the first.
4323 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4324 yypush_parse, only do it for the first invocation.
4325 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4326 initialization to occur in yypush_parse but only on the first
4327 invocation.
4328
4329 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4330
4331 * data/push.c: Add CPP guards around push parser declarations in both
4332 the header and the code file.
4333 In the code file, move the push parser declarations to the same place
4334 they appear in the header file.
4335 Clean up the M4 some, especially the inconsistent underquoting in
4336 some b4_c_function_def and b4_c_function_decl uses.
4337
4338 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4339
4340 Encapsulate the push parser state variables into an M4 macro so the
4341 push skeleton doesn't have to list them again for pull mode's yyparse.
4342 For push mode, remove yypush_parse's local equivalents of these
4343 variables to eliminate unnecessary copying between the two sets at
4344 run-time. This patch also fixes at least a bug related to multiple
4345 %initial-action invocations in push mode.
4346 * data/push.c (b4_declare_parser_variables): Rename to...
4347 (b4_declare_scanner_communication_variables): ... this for clarity and
4348 update both uses.
4349 (b4_declare_yyparse_variables): Remove and move its contents to the one
4350 spot where it was invoked.
4351 (b4_declare_parser_state_variables): New macro containing the parser
4352 state variables required by push mode.
4353 (struct yypstate): Replace all fields but yynew with
4354 b4_declare_parser_state_variables.
4355 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4356 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4357 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4358 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4359 parser state variable declarations with
4360 b4_declare_parser_state_variables.
4361 Don't initialize parser state variables when calling yypush_parse since
4362 yypstate_new already does that.
4363 Invoke the user's initial action only upon the first yypush_parse
4364 invocation.
4365 Remove all code that copies between the local parser state variables
4366 and the yypstate.
4367
4368 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4369
4370 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4371 prevent a name collision in a future patch where these names will
4372 sometimes be #define'd.
4373 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4374 since it no longer has the same name as the existing argument.
4375 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4376
4377 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
4378 and Joel E. Denny <jdenny@ces.clemson.edu>
4379
4380 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4381 that the argument is case-insensitive, and there's no `=' here.
4382 For the %skeleton entry, mention that %language is better.
4383 (Bison Options): Likewise for --language and --skeleton. Move the
4384 --skeleton entry so that the `Tuning the parser' section is sorted
4385 alphabetically on long options.
4386 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4387 %language directive in detail here; cross-reference the %language
4388 documentation instead.
4389 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4390 `%require "2.3b"' so that the example is always up-to-date.
4391 (Table of Symbols): Add entries for %language and %skeleton.
4392 * examples/extexi (normalize): Instead of replacing every %require
4393 argument with the current Bison version, just substitute for
4394 `@value{VERSION}'. This guarantees that we're testing what actually
4395 appears in the documentation.
4396 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4397 rather than `@VERSION@'.
4398
4399 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4400
4401 * NEWS: Reword the %language news a bit, and put it earlier.
4402
4403 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4404 Rewrite to simplify the logic.
4405 (language_argmatch): Likewise.
4406 (program_name): We now own this var.
4407 * src/getargs.h (struct bison_language): Use char[] rather than
4408 const char *.
4409
4410 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4411 Java is supported.
4412 * src/complain.c (program_name): Remove decl; no longer needed.
4413 * src/main.c (program_name): Remove; now belongs to getargs.
4414
4415 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
4416
4417 * NEWS: Document %language.
4418
4419 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4420
4421 * data/c-skel.m4, data/c++-skel.m4: New files.
4422 * data/glr.c: Complain on push parsers.
4423
4424 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4425 over %skeleton.
4426 (Decl Summary): Document %language and %skeleton.
4427 (Command line): Document -L.
4428
4429 * examples/extexi: Rewrite %require directive.
4430 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4431
4432 * src/files.c (compute_exts_from_gc): Look in language structure
4433 for .y extension.
4434 (compute_file_name_parts): Check whether .tab should be added.
4435 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4436 (language, skeleton_arg, language_argmatch): New.
4437 (long_options): Add --language.
4438 (getargs): Use skeleton_arg, add -L/--language.
4439 * src/getargs.h: Include location.h.
4440 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4441 * src/output.c (prepare): Pick default skeleton from struct language.
4442 Don't dispatch C skeletons here.
4443 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4444 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4445 * src/scan-gram.l ("%language"): New rule.
4446
4447 * tests/calc.at: Test %skeleton and %language.
4448 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4449 (AT_GLR_IF): Look for %skeleton "glr.cc".
4450 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4451 (AT_YACC_IF): Reject %language.
4452
4453 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4454
4455 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4456 since it wasn't used; only the typedef name 'semantic_type' is needed.
4457 Also, omit trailing white space.
4458
4459 * bootstrap: Sync from coreutils.
4460 (gnulib_extra_files): Add build-aux/announce.gen.
4461 (slurp): Adjust .gitignore files like .cvsignore files.
4462 * build-aux/announce-gen: Remove from CVS, since bootstrap
4463 now creates this.
4464
4465 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4466
4467 Make %push-parser imply %pure-parser. This fixes several bugs; see
4468 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4469 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4470 pure_parser = true.
4471 * data/push.c: Don't bother testing b4_push_if when deciding whether
4472 to expand b4_declare_parser_variables globally.
4473 (yypush_parse): Likewise in here.
4474
4475 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4476 (yy_reduce_print): Reformat M4 for readability.
4477
4478 2006-12-15 Bob Rossi <bob@brasko.net>
4479 and Joel Denny <jdenny@ces.clemson.edu>
4480
4481 * data/push.c (yypstate): Add typedef, and update all uses of
4482 struct yypstate to just yypstate.
4483 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4484
4485 2006-12-14 Bob Rossi <bob@brasko.net>
4486
4487 * data/push.c (yypush_parse): Declare prototype regardless of
4488 %locations option.
4489
4490 2006-12-14 Bob Rossi <bob@brasko.net>
4491
4492 * data/push.c (yyparse): Remove the prototype and the #define when in
4493 push-parser mode.
4494
4495 2006-12-13 Bob Rossi <bob@brasko.net>
4496
4497 * data/push.c (yypstate_init): Rename to...
4498 (yypstate_new): ... this and use b4_c_function_def.
4499 (yypstate_delete): New.
4500 (yypush_parse): Change parameters yynval and yynlloc to be const.
4501 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4502 yypstate_delete functions.
4503
4504 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4505
4506 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4507 strange test case titles. Reported by Bob Rossi.
4508
4509 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4510
4511 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4512 of potential ambiguities in GLR grammers.
4513
4514 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4515
4516 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4517 `bison ', use m4_index instead of m4_substr since chopping up a string
4518 containing M4-special characters causes problems here.
4519
4520 Fix a couple of bugs related to special characters in user-specified
4521 file names, and make it easier for skeletons to compute output file
4522 names with the same file name prefix as Bison-computed output file
4523 names.
4524 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4525 b4_parser_file_name and b4_spec_defines_file instead of
4526 @output_parser_name@ and @output_header_name@, which are now redundant.
4527 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4528 b4_parser_file_name, b4_spec_defines_file, and the new
4529 @basename(FILENAME@) instead of @output_parser_name@ and
4530 @output_header_name@, which inappropriately escaped the file names as
4531 C string literals.
4532 * src/files.c (all_but_ext): Remove static qualifier.
4533 (compute_output_file_names): Move `free (all_but_ext)' to...
4534 (output_file_names_free): ... here since all_but_ext is needed later.
4535 * src/files.h (all_but_ext): Extern.
4536 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4537 exactly what MUSCLE_INSERT_STRING used to do.
4538 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4539 characters are escaped properly.
4540 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4541 all_but_ext.
4542 For pkgdatadir muscle, maintain previous functionality by using
4543 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4544 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4545 digraphs would never be expanded. Hopefully no one has M4-special
4546 characters in his Bison installation path.
4547 * src/scan-skel.l: Don't parse @output_header_name@ and
4548 @output_parser_name@ anymore since they're now redundant.
4549 In @output, use decode_at_digraphs.
4550 Parse a new @basename command that invokes last_component.
4551 (decode_at_digraphs): New.
4552 (BASE_QPUTS): Remove unused.
4553 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4554 (Output file name): New tests.
4555
4556 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4557
4558 Warn about output files that are generated by the skeletons and that
4559 conflict with other output files.
4560 * data/glr.c: Don't generate the header file here when glr.cc does.
4561 * src/files.c (file_names, file_names_count): New static globals.
4562 (compute_output_file_names): Invoke output_file_name_check for files
4563 not generated by the skeletons and remove existing checks.
4564 (output_file_name_check): New function that warns about conflicting
4565 output file names.
4566 (output_file_names_free): Free file_names.
4567 * src/files.h (output_file_name_check): Declare.
4568 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4569 the skeletons.
4570 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4571 (Conflicting output files): New tests.
4572
4573 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4574
4575 * doc/bison.texinfo: Fix a couple of typos.
4576
4577 2006-12-08 Bob Rossi <bob@brasko.net>
4578
4579 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4580 Rename to...
4581 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4582 update all uses.
4583 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4584 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4585 local pv.
4586 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4587 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4588
4589 2006-12-07 Bob Rossi <bob@brasko.net>
4590 and Joel Denny <jdenny@ces.clemson.edu>
4591
4592 * data/push.c (yypvarsinit): Change return type from void* to struct
4593 yypvars*. No longer cast to void* on return.
4594 (struct yypvars): Remove yylen since it need not be remembered between
4595 yypushparse invocations.
4596 (yypushparse): Don't copy between yylen and pv->yylen.
4597
4598 2006-12-05 Bob Rossi <bob@brasko.net>
4599
4600 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4601 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4602 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4603 (struct yypvars): Remove b4_declare_parser_variables.
4604 (yypvarsinit): Remove init code for removed variables.
4605 (global scope): Do not declare b4_declare_parser_variables if
4606 push or pure mode.
4607 (yypushparse): Add b4_declare_parser_variables.
4608 Init new local variables, and remove init code for removed
4609 yypvars variables.
4610 (yyparse): Delete.
4611 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4612 and yyparse for other modes.
4613 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4614 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4615 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4616 (AT_PURE_LEX_IF): True if pure or push parser.
4617
4618 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4619
4620 Document Yacc prologue alternatives and default %destructor's and
4621 %printer's as experimental. Don't mention Java yet. Discussed at
4622 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4623 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4624 (2.3a): Annotate this entry to say the old forms of these features were
4625 also experimental.
4626 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
4627 Table of Symbols): Say they're experimental. Comment out any mention
4628 of Java (we'll want this back eventually).
4629
4630 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4631
4632 Support a file name argument to %defines. Deprecate `=' in
4633 %file-prefix, %name-prefix, and %output. Discussed at
4634 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4635 * NEWS (2.3a+): Mention.
4636 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
4637 form of %defines, and remove `=' from entries for %file-prefix,
4638 %name-prefix, and %output.
4639 * src/parse-gram.y (prologue_declaration): Implement.
4640 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4641 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4642 all but one occurrence of %name-prefix.
4643 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4644 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4645 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4646 occurrence of each of %file-prefix and %output. Add check for %defines
4647 with argument.
4648 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4649 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4650 Remove the `=' from %output.
4651
4652 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4653
4654 Don't escape $ in test case titles since Autoconf 2.61 now does that
4655 correctly.
4656 * tests/actions.at (Default %printer and %destructor are not for error
4657 or $undefined): Here.
4658 (Default %printer and %destructor are not for $accept): Here.
4659 * tests/input.at (Invalid $n and @n): Here.
4660
4661 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
4662
4663 Rename <!> to <>. Discussed starting at
4664 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
4665 * NEWS (2.3a+): Update.
4666 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
4667 Update.
4668 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
4669 * src/scan-gram.l (INITIAL): Implement.
4670 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
4671 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
4672 comment.
4673 * tests/actions.at (Default tagless %printer and %destructor,
4674 Default tagged and per-type %printer and %destructor,
4675 Default %printer and %destructor are not for error or $undefined,
4676 Default %printer and %destructor are not for $accept,
4677 Default %printer and %destructor for mid-rule values): Update.
4678 * tests/input.at (Default %printer and %destructor redeclared,
4679 Unused values with default %destructor): Update.
4680
4681 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4682
4683 Don't let %prec take a nonterminal.
4684 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
4685 token.
4686 * tests/input.at (%prec takes a token): New test checking that %prec
4687 won't take a nonterminal.
4688
4689 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4690
4691 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
4692 it was double-quoted.
4693 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
4694 grammar is maintained with Bison's highest standards.
4695 * src/getargs.c: Fix some typos in Doxygen comments.
4696
4697 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4698
4699 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
4700 later. Reported by Paul Eggert in
4701 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
4702 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
4703 * src/scan-code.l (translate_action): Don't bother invoking
4704 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
4705 (code_scanner_free): Instead of invoking
4706 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
4707 which frees more.
4708 * src/scan-gram.l (gram_scanner_free): Likewise.
4709 * src/scan-skel.l (scan_skel): Likewise.
4710
4711 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4712
4713 * src/files.c (tr): Change return type to void.
4714 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
4715 has been called previously for the same key.
4716 (muscle_find): Return storage instead of value so that
4717 --enable-gcc-warnings doesn't produce warnings that the return discards
4718 const. aver that the value and storage are the same since storage
4719 could potentially be NULL when value is not.
4720 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
4721 same as 0.
4722
4723 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4724
4725 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
4726 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
4727 us a slightly cleaner distribution, and also works.
4728 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
4729 gnulib changes.
4730
4731 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
4732 and Paul Eggert <eggert@cs.ucla.edu>
4733
4734 Don't let Bison leak memory except when it complains.
4735 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
4736 (spec_defines_file, dir_prefix): Now char *, not const char *,
4737 since they are freed.
4738 * src/files.c: Likewise.
4739 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
4740 Likewise.
4741 (tr): Now operates in-place. All uses changed.
4742 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
4743 values.
4744 (compute_file_name_parts, compute_output_file_names): Don't store
4745 read-only data in variables that will be freed.
4746 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
4747 src_extension, and header_extension.
4748 (output_file_names_free): New public function to free
4749 spec_verbose_file, spec_graph_file, spec_defines_file,
4750 parser_file_name, and dir_prefix.
4751 * src/getargs.c (getargs): Don't store read-only data in variables that
4752 will be freed.
4753 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
4754 (which previously existed but was unused), and quotearg_free.
4755 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
4756 * src/muscle_tab.c: Likewise.
4757 (muscle_entry): Make the value char const *,
4758 and add a new storage member that is char * and can be freed.
4759 (muscle_entry_free): New private function.
4760 (muscle_init): Use it instead of free.
4761 (muscle_insert, muscle_grow): Update and use new storage member.
4762 (muscle_code_grow): Free the string passed to muscle_grow
4763 since it's not needed anymore.
4764 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
4765 add a new `char *code' member.
4766 ("{...}"): Declare semantic type as code.
4767 * src/scan-code.h (translate_rule_action):
4768 (translate_symbol_action, translate_code, translate_action): Return
4769 `char const *' rather than `char *' since external code should not free
4770 these strings.
4771 * src/scan-code.l: Likewise.
4772 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
4773 which is "{...}" in the parser.
4774 * tests/Makefile.am (maintainer-check-valgrind): Set
4775 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
4776 Valgrind.
4777 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
4778 complain.
4779 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
4780 expecting a non-zero exit status sets --leak-check=summary and
4781 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
4782 this case, and we don't want to hear about it.
4783
4784 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4785
4786 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
4787 instead of from the template, to simplify configuration a bit.
4788 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
4789 and m4/wint_t.m4, as they are needed with the latest gnulib.
4790
4791 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4792
4793 Disable unset/unused mid-rule value warnings by default, and recognize
4794 --warnings=midrule-values to enable them. Discussed starting at
4795 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
4796 * NEWS (2.3a+): Mention.
4797 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
4798 warnings): Add entry for midrule-values subargument.
4799 * src/reader.c (symbol_should_be_used): Don't return true just because
4800 the value is a set/used mid-rule value unless
4801 --warnings=midrule-values was specified.
4802 * tests/input.at (Unused values, Unused values before symbol
4803 declarations): Run tests with and without --warnings=midrule-values.
4804
4805 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
4806 than LIST_FREE directly.
4807
4808 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4809
4810 Finish implementing --warnings=error, which should not be implied by
4811 --warnings=all (or by its synonyms -W and --warnings without
4812 subarguments).
4813 * src/complain.c (set_warning_issued): New function to report that
4814 warnings are being treated as errors and to record an error if so.
4815 Invoke...
4816 (warn_at, warn): ... here.
4817 * src/getargs.c (warnings_args, warnings_types): Reorder so that
4818 "error - warnings are errors" does not appear above "all - all of the
4819 above".
4820 (getargs): For -W and --warnings without subarguments, don't let
4821 FLAGS_ARGMATCH set warnings_error in warnings_flag.
4822 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
4823
4824 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4825
4826 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
4827 empty subargument list. For example: `bison --warnings= parser.y'.
4828
4829 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4830
4831 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
4832 the parser header file so that gcc doesn't warn.
4833
4834 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4835
4836 Split the default %destructor/%printer into two kinds: <*> and <!>.
4837 Discussed starting at
4838 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
4839 * NEWS (2.3a+): Mention.
4840 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
4841 previous change today related to mid-rules.
4842 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
4843 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
4844 (TYPE_TAG_ANY): Add as <*>.
4845 (TYPE_TAG_NONE): Add as <!>.
4846 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
4847 for <*> and <!>.
4848 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
4849 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
4850 * src/symlist.c (symbol_list_default_new): Split into tagged and
4851 tagless versions.
4852 (symbol_list_destructor_set, symbol_list_printer_set): Split
4853 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
4854 SYMLIST_DEFAULT_TAGLESS.
4855 * src/symlist.h: Update symbol_list_default*_new prototypes.
4856 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
4857 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
4858 * src/symtab.c (default_destructor, default_destructor_location,
4859 default_printer, default_printer_location): Split each into tagged and
4860 tagless versions.
4861 (symbol_destructor_get, symbol_destructor_location_get,
4862 symbol_printer_get, symbol_printer_location_get): Implement tagged
4863 default and tagless default cases.
4864 (default_destructor_set, default_printer_set): Split each into tagged
4865 and tagless versions.
4866 * src/symtab.h: Update prototypes.
4867 * tests/actions.at (Default %printer and %destructor): Rename to...
4868 (Default tagless %printer and %destructor): ... this, and extend.
4869 (Per-type %printer and %destructor): Rename to...
4870 (Default tagged and per-type %printer and %destructor): ... this, and
4871 extend.
4872 (Default %printer and %destructor for user-defined end token): Extend.
4873 (Default %printer and %destructor are not for error or $undefined):
4874 Update.
4875 (Default %printer and %destructor are not for $accept): Update.
4876 (Default %printer and %destructor for mid-rule values): Extend.
4877 * tests/input.at (Default %printer and %destructor redeclared): Extend.
4878 (Unused values with default %destructor): Extend.
4879
4880 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4881
4882 Don't apply the default %destructor/%printer to an unreferenced midrule
4883 value. Mentioned at
4884 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
4885 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
4886 like $@n instead of just @n so that the default %destructor/%printer
4887 logic doesn't see them as user-defined symbols.
4888 (symbol_is_dummy): Check for both forms of the name.
4889 * src/reader.c (packgram): Remove the `$' from each midrule symbol
4890 name for which the midrule value is referenced in any action.
4891 * tests/actions.at (Default %printer and %destructor for mid-rule
4892 values): New test.
4893 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
4894 for change to dummy symbol names.
4895
4896 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4897
4898 Warn about unset midrule $$ if the corresponding $n is used.
4899 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
4900 $n usage.
4901 (packgram): Before invoking grammar_rule_check on any rule, make sure
4902 all actions have already been scanned in order to set `used' flags.
4903 Otherwise, checking that a midrule's $$ is set will not always work
4904 properly because the midrule check must forward-reference the midrule's
4905 parent rule.
4906 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
4907 warning.
4908
4909 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4910
4911 More improvements to the documentation of the prologue alternatives:
4912 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
4913 Bison manual.
4914 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
4915 some text to clarify the relative importance of the new directives and
4916 to show how these directives may be viewed as code labels.
4917
4918 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
4919
4920 Similar to the recently removed %before-header, add %code-top as the
4921 alternative to the pre-prologue. Mentioned at
4922 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
4923 Also, let the prologue alternatives appear in the grammar section.
4924 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
4925 (prologue_declaration): Move the existing prologue alternatives to...
4926 (grammar_declaration): ... here and add %code-top.
4927 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
4928
4929 Clean up and extend documentation for the prologue alternatives.
4930 * NEWS (2.3a+): Describe prologue alternatives.
4931 * doc/bison.texinfo (Prologue): Move discussion of prologue
4932 alternatives to...
4933 (Prologue Alternatives): ... this new section, and extend it to discuss
4934 all 4 directives in detail.
4935 (Table of Symbols): Clean up discussion of prologue alternatives and
4936 add %code-top.
4937
4938 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4939
4940 DJGPP specific issues.
4941
4942 * djgpp/config.bat: config.hin has been moved to lib. Adjust
4943 config.bat accordingly.
4944 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
4945 * djgpp/config.site: Likewise.
4946
4947 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
4948
4949 Replace %*-header with %provides, %requires, %code. See discussion at
4950 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
4951
4952 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
4953 (b4_user_start_header): Remove.
4954 * data/glr.c: Use new macros instead of b4_*start_header
4955 and b4_*end_header.
4956 * data/glr.cc: Likewise.
4957 * data/lalr1.cc: Likewise.
4958 * data/push.c: Likewise.
4959 * data/yacc.c: Likewise.
4960
4961 * doc/bison.texinfo: Remove %before-header, rename
4962 %{start,end,after}-header to %requires, %provides, %code.
4963
4964 * src/parse-gram.y: Likewise (also rename token names accordingly).
4965 * src/scan-gram.l: Likewise.
4966 * tests/actions.at: Likewise.
4967
4968 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
4969
4970 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
4971 Problem reported by Joel E. Denny.
4972
4973 2006-10-14 Jim Meyering <jim@meyering.net>
4974
4975 (Sync from coreutils.)
4976 Work also when the working directory (with e.g. coreutils sources)
4977 is version controlled with git, rather than CVS.
4978 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
4979 rather than CVS.
4980 In messages and comments, say e.g., "checked-out sources",
4981 rather than "CVS sources".
4982 (version_controlled_file): New function. Work for git as well as
4983 for CVS. Don't use grep's -q option.
4984 (slurp): Call it here, in place of CVS-specific code.
4985
4986 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
4987
4988 Fix testsuite for ./configure --enable-gcc-warnings:
4989 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
4990 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
4991 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
4992 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
4993 * test/regression.at (Diagnostic that expects two alternatives):
4994 Likewise.
4995
4996 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4997
4998 * bootstrap.conf (gnulib_modules): Add config-h.
4999 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
5000 worry about HAVE_CONFIG_H.
5001 * lib/abitset.c: Likewise.
5002 * lib/bitset.c: Likewise.
5003 * lib/bitset_stats.c: Likewise.
5004 * lib/bitsetv-print.c: Likewise.
5005 * lib/bitsetv.c: Likewise.
5006 * lib/ebitset.c: Likewise.
5007 * lib/get-errno.c: Likewise.
5008 * lib/lbitset.c: Likewise.
5009 * lib/subpipe.c: Likewise.
5010 * lib/timevar.c: Likewise.
5011 * lib/vbitset.c: Likewise.
5012 * lib/bitset.c: Include "bitset.h" first, to test interface.
5013 * lib/bitset_stats.c: Include "bitset_stats.h" first.
5014 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
5015 * lib/bitsetv.c: Include "bitsetv.h" first.
5016 * lib/get-errno.c: Include "get-errno.h" first.
5017 * m4/.cvsignore: Add config-h.m4.
5018 * tests/actions.at (Default %printer and %destructor for ...):
5019 Adjust expected line numbers in output to reflect removal of #if
5020 HAVE_CONFIG_H lines.
5021 * tests/glr-regression.at (Missed %merge type warnings when ...):
5022 Likewise.
5023 * tests/regression.at (Braced code in declaration in rules section):
5024 Likewise.
5025 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
5026 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
5027 Include <config.h> unconditionally.
5028
5029 * bootstrap: Sync from coreutils, as follows:
5030
5031 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5032
5033 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
5034 variable was sometimes used without being initialized. This
5035 messed up the installation of the INSTALL file in some cases.
5036
5037 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5038
5039 * bootstrap (usage, main program, symlink_to_gnulib): Add option
5040 --copy. Inspired by a suggestion from Bruno Haible.
5041
5042 2006-10-03 Jim Meyering <jim@meyering.net>
5043
5044 * bootstrap: Undo last change to this file, since now gnulib-tool
5045 sticks with the automake default in generating dependencies.
5046
5047 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5048
5049 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
5050 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
5051
5052 * doc/bison.1: Add copyright notice.
5053
5054 * data/glr.c: Don't include <stdarg.h>; not used.
5055
5056 * NEWS: The -g and --graph options now output graphs in Graphviz
5057 DOT format, not VCG format.
5058 * doc/bison.1: Likewise.
5059 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
5060 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
5061 of this change in
5062 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
5063 * TODO: Remove Graphviz entry.
5064 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
5065 remove vcg.c, vcg.h, vcg_defaults.h.
5066 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
5067 * src/graphviz.c, src/graphviz.h: New files.
5068 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
5069 * src/files.h: Make comment more generic.
5070 * src/main.c (main): Likewise.
5071 * src/print_graph.h: Likewise.
5072 * src/getargs.c (usage): Make usage description more generic.
5073 * src/print_graph.c: Include graphviz.h rather than vcg.h.
5074 (static_graph, fgraph): Remove. All uses changed to pass
5075 arguments instead of sharing a static var.
5076 (print_core, print_actions, print_state, print_graph):
5077 Output graphviz format rather than VCG format.
5078 * tests/.cvsignore: Remove *.vcg; add *.dot.
5079 * tests/output.at: Expect *.dot files, not *.vcg files.
5080
5081 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
5082 accommodates the 2006-10-08 change.
5083
5084 2006-10-11 Bob Rossi <bob@brasko.net>
5085
5086 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
5087 (b4_yyssa, b4_yyerror_range): New macros.
5088 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
5089 (yypvarsinit): Remove init of removed fields.
5090 (yypushparse): Remove use of removed fields; use new macros instead.
5091
5092 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5093
5094 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
5095 in a push parser. Reindent slightly to match yacc.c better.
5096
5097 2006-10-11 Bob Rossi <bob@brasko.net>
5098
5099 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
5100 yymsg_alloc fields.
5101 (yypvarsinit, yypushparse): Remove init of removed fields.
5102 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
5103
5104 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5105
5106 * THANKS: Add Paolo Bonzini and Bob Rossi.
5107
5108 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
5109
5110 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
5111 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
5112 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
5113 b4_define_user_cde and uses): Remove.
5114 (b4_comment, b4_prefix, b4_sync_start): New.
5115 * data/bison.m4: New file, with most of the content removed from c.m4.
5116 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
5117 * src/output.c (output_skeleton): Pass bison.m4.
5118 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
5119 only if specified.
5120
5121 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
5122
5123 Fix test failure reported by Tom Lane in
5124 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
5125 and try to make such failures easier to catch in the future.
5126 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
5127 that's now the caller's responsibility.
5128 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
5129 Set yychar = YYEOF if it's negative.
5130 * tests/actions.at (yylex): Abort if asked to read past EOF.
5131 * tests/conflicts.at (yylex): Likewise.
5132 * tests/cxx-type.at (yylex): Likewise.
5133 * tests/glr-regression.at (yylex): Likewise.
5134 * tests/input.at (yylex): Likewise.
5135 * tests/regression.at (yylex): Likewise.
5136 * tests/torture.at (yylex): Likewise.
5137
5138 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
5139
5140 Fix problems with translating English-language diagnostics.
5141 * bootstrap: Fix bug introduced in recent bootstrap changes, with
5142 respect to bison-runtime pot generation. The YY_ stuff
5143 wasn't being captured.
5144 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
5145 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
5146 * runtime-po/POTFILES.in: Add data/push.c.
5147
5148 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
5149
5150 Merge bootstrap changes from coreutils.
5151
5152 2006-09-28 Jim Meyering <jim@meyering.net>
5153
5154 Automatically generated dependencies are important even
5155 when all of the sources in a directory come from gnulib.
5156 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
5157 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
5158
5159 2006-09-23 Jim Meyering <jim@meyering.net>
5160
5161 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
5162
5163 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5164
5165 * bootstrap: Add support for --force.
5166 (usage): New function. Describe usage less tersely.
5167 (CVS_only_file): New var.
5168
5169 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
5170
5171 * data/push.c (YYPUSH_MORE): Make it an enum instead.
5172 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
5173 Adjust white space and comments to match GNU style better.
5174
5175 2006-09-20 Bob Rossi <bob@brasko.net>
5176
5177 * data/push.c (yyresult_get): Remove function.
5178 (YYPUSH_MORE): Add #define.
5179 (yypushparse): Modify return value.
5180
5181 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5182
5183 * stamp-h.in: Remove; no longer needed.
5184 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
5185 Remove config.h, config.hin, intl (no longer created).
5186 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
5187 stamp-h1.
5188
5189 Sync bootstrap from coreutils, as follows:
5190
5191 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
5192
5193 * bootstrap (symlink_to_gnulib): New function.
5194 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
5195 to copies-of-gnulib.
5196 (cp_mark_as_generated, slurp, gnulib_files):
5197 Avoid making a copy if it's the same as the old version.
5198 (gnulib_files): Add support for this variable (used by Bison).
5199
5200 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5201
5202 * src/getargs.c (usage): Rework to use conventions similar to
5203 coreutils, to make translation a bit easier and the code a bit
5204 smaller. Problem reported by Tim Van Holder.
5205
5206 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
5207
5208 Use some of gnulib's new modules, taken from coreutils.
5209
5210 * bootstrap: Sync from coreutils, except add support for gnulib_files.
5211 * bootstrap.conf: New file.
5212 (gnulib_modules): Add configmake, inttypes, unistd.
5213 (XGETTEXT_OPTIONS): Add complain, complain_at,
5214 fatal, fatal_at, warn, warn_at, unexpected_end.
5215 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
5216 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
5217 (gl_EARLY): Add.
5218 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
5219 (gl_INIT): Add
5220 (GNULIB_AUTOCONF_SNIPPET): Remove.
5221 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
5222 the pickiest.
5223 * lib/.cvsignore: Add inttypes_.h.
5224 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
5225 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
5226 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
5227 no-longer-necessary initializations.
5228 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
5229 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
5230 use the unistd module.
5231 * src/system.h: Likewise.
5232 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
5233 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
5234 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
5235 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
5236 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
5237 * src/system.h: Include inttypes.h unconditionally, now that we
5238 use the inttypes module. Don't bother to include stdint.h, since
5239 inttypes.h now does that for us.
5240 (LOCALEDIR): Remove, now that we use the configmake module.
5241 * src/getargs.c: Include configmake.h.
5242 * src/main.c: Likewise.
5243 * src/output.c: Likewise.
5244 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
5245 not from $abs_top_builddir, since config.h moved.
5246
5247
5248 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
5249 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
5250
5251 * src/parse-gram.y (symbol_declaration): Don't put statements
5252 before declarations; it's not portable to C89.
5253 * src/scan-code.l (handle_action_at): Likewise.
5254
5255 * src/scan-code.l: Always initialize braces_level; the old code
5256 left it uninitialized and therefore had undefined behavior.
5257
5258 Don't attempt to redefine 'assert', since it runs afoul of
5259 systems where standard headers (mistakenly) include <assert.h>.
5260 Instead, define and use our own alternative, called 'aver'.
5261 * src/reader.c: Don't include assert.h, since we no longer
5262 use assert.
5263 * src/scan-code.l: Likewise.
5264 * src/system.h (assert): Remove, replacing with....
5265 (aver): New function, taking a bool arg. All uses changed.
5266 * src/tables.c (pack_vector): Ensure that aver arg is bool,
5267 not merely an integer.
5268
5269 2006-09-15 Bob Rossi <bob@brasko.net>
5270
5271 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
5272 * data/c.m4 (YYPUSH): New.
5273 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
5274 * src/getargs.c (push_parser): New var.
5275 * src/getargs.h (push_parser): New declaration.
5276 * src/output.c (prepare): Add macro insertion of `push_flag'.
5277 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
5278 (prologue_declaration): Parse %push-parser.
5279 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
5280 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
5281 list of removed lines from the traces observed.
5282 (AT_CHECK_CALC_LALR): Added push parser tests.
5283
5284 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
5285
5286 * NEWS: Version 2.3a.
5287 * configure.ac (AC_INIT): Likewise.
5288
5289 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
5290 "#define YYSTYPE int" that caused "make maintainer-check" to fail
5291 due to header ordering dependencies. I don't know why the #define
5292 was there.
5293
5294 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
5295 runtime cost when YYDEBUG is not defined, and so that some tests
5296 that used to fail now work. Problem and initial suggestion by
5297 Paolo Bonzini.
5298 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
5299 * data/glr.cc (b4_parser_class_name):
5300 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
5301 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
5302 (yydebug_) [YYDEBUG]: New member.
5303 (yycdebug_): Now defined only if YYDEBUG.
5304 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
5305 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
5306 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
5307 if YYYDEBUG.
5308 (debug_stream, set_debug_stream, debug_level, set_debug_level):
5309 Define only if YYDEBUG.
5310 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
5311 set_debug_level.
5312 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
5313 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
5314 AT_CHECK_CALC_GLR_CC that are working now.
5315
5316 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5317
5318 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5319 We don't need them in glr.cc, and glr.c defines them.
5320 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5321 assumes that defining it to anything is the same as defining
5322 it to 1. Problem reported by Paolo Bonzini.
5323
5324 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5325
5326 * data/c.m4 (b4_null, b4_case): Define.
5327 * src/output.c (prepare_symbols): Use b4_null.
5328 (user_actions_output): Use b4_case.
5329
5330 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5331
5332 * data/glr.c (b4_shared_declarations): Put start-header first,
5333 before any #includes that we generate, so that feature-test
5334 macros work. Problem reported by Michael Deutschmann in
5335 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5336 * data/lalr1.cc: Likewise.
5337 * doc/bison.texinfo (Prologue): Document that feature-test macros
5338 should be defined before any Bison declarations.
5339 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5340 that depend on location.hh after, not before, Bison decls, since
5341 we now include location.hh after the first user prologue.
5342
5343 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5344 Sander Brandenburg in
5345 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5346 Also, fix minor white space and comment issues.
5347 (Prologue): Mention that it's better to define feature-test macros
5348 before Bison declarations. Problem reported by Michael Deutschmann.
5349
5350 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5351 by Jim Meyering.
5352 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5353 This adjusts to recent gnulib changes.
5354
5355 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5356
5357 Finish implementation of per-type %destructor/%printer. Discussed
5358 starting at
5359 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5360 and
5361 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5362 * NEWS (2.3+): Add a description of this feature to the default
5363 %destructor/%printer description.
5364 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5365 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5366 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5367 list node contains a semantic type.
5368 * src/symtab.c, src/symtab.h: Extend with a table that associates
5369 semantic types with their %destructor's and %printer's.
5370 (semantic_type_from_uniqstr, semantic_type_get,
5371 semantic_type_destructor_set, semantic_type_printer_set): New functions
5372 composing the public interface of that table.
5373 (symbol_destructor_get, symbol_destructor_location_get,
5374 symbol_printer_get, symbol_printer_location_get): If there's no
5375 per-symbol %destructor/%printer, look up the per-type before trying
5376 the default.
5377 * tests/actions.at (Per-type %printer and %destructor): New test case.
5378 * tests/input.at (Default %printer and %destructor redeclared):
5379 Extend to check that multiple occurrences of %symbol-default in a
5380 single %destructor/%printer declaration is an error.
5381 (Per-type %printer and %destructor redeclared, Unused values with
5382 per-type %destructor): New test cases.
5383
5384 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5385
5386 Require default %destructor/%printer to be declared using
5387 %symbol-default instead of an empty symbol list, and start working on
5388 new per-type %destructor/%printer. Discussed at
5389 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5390 * NEWS (2.3+): Add %symbol-default to example.
5391 * bison.texinfo (Freeing Discarded Symbols): Likewise.
5392 (Table of Symbols): Add entry for %symbol-default.
5393 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5394 (generic_symlist, generic_symlist_item): New nonterminals for creating
5395 a list in which each item is a symbol, semantic type, or
5396 %symbol-default.
5397 (grammar_declaration): Use generic_symlist in %destructor and %printer
5398 declarations instead of symbols.1 or an empty list.
5399 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5400 for changes to symbol_list.
5401 * src/reader.c: Update for changes to symbol_list.
5402 * src/scan-code.l: Likewise.
5403 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5404 * src/symlist.c, src/symlist.h: Extend such that a list node may
5405 represent a semantic type or a %symbol-default in addition to just an
5406 ordinary symbol. Add switched functions for setting %destructor's and
5407 %printer's.
5408 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5409 %destructor/%printer declarations.
5410
5411 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5412
5413 Whether the default %destructor/%printer applies to a particular symbol
5414 isn't a question of whether the user *declares* that symbol (in %token,
5415 for example). It's a question of whether the user by any means
5416 *defines* the symbol at all (by simply using a char token, for
5417 example). $end is defined by Bison whereas any other token with token
5418 number 0 is defined by the user. The error token is always defined by
5419 Bison regardless of whether the user declares it with %token, but we
5420 may one day let the user define error as a nonterminal instead.
5421 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5422 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5423 the meaning of "user-defined".
5424 * tests/actions.at (Default %printer and %destructor for user-declared
5425 end token): Rename to...
5426 (Default %printer and %destructor for user-defined end token): ...
5427 this.
5428
5429 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5430 computation of whether to apply the default, don't maintain a list of
5431 every Bison-defined symbol. Instead, just check for a first character
5432 of '$', which a user symbol cannot have, and check for the error token.
5433
5434 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5435
5436 Don't apply the default %destructor or %printer to the error token,
5437 $undefined, or $accept. This change fits the general rule that the
5438 default %destructor and %printer are only for user-declared symbols,
5439 and it solves several difficulties that are described in the new test
5440 cases listed below.
5441 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5442 * tests/actions.at (Default %printer and %destructor are not for error
5443 or $undefined, Default %printer and %destructor are not for $accept):
5444 New test cases.
5445
5446 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5447
5448 Allow %start after the first rule.
5449 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5450 when parsing the first rule.
5451 (check_and_convert_grammar): Search for it here after all grammar
5452 declarations have been parsed. Skip midrules, which have dummy LHS
5453 nonterminals.
5454 * src/symtab.c (symbol_is_dummy): New function.
5455 * src/symtab.h (symbol_is_dummy): Declare it.
5456 * tests/input.at (%start after first rule): New test.
5457
5458 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5459
5460 Redo some of the previous commit: add back the ability to use
5461 non-aliased/undeclared string literals since it might be useful to
5462 those declaring %token-table.
5463 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5464 commit: don't worry about complaints from symbols_pack.
5465 * src/symtab.c (symbol_new, symbol_class_set,
5466 symbol_check_alias_consistency): Undo changes in previous commit: count
5467 each string literal as a new symbol and token, assign it a symbol
5468 number, and don't complain about non-aliased string literals.
5469 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5470 and token counts but does still set aliased tokens to the same number,
5471 symbol_pack_processor now leaves empty slots in the symbols array.
5472 Remove those slots.
5473 * tests/regression.at (Undeclared string literal): Remove test case
5474 added in previous commit since non-aliased string literals are allowed
5475 again.
5476 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5477 remove unnecessary string literal declarations.
5478 * tests/sets.at (Firsts): Likewise.
5479
5480 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5481
5482 Don't allow an undeclared string literal, but allow a string literal to
5483 be used before its declaration.
5484 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5485 symbols_pack complained.
5486 * src/symtab.c (symbol_new): Don't count a string literal as a new
5487 symbol.
5488 (symbol_class_set): Don't count a string literal as a new token, and
5489 don't assign it a symbol number since symbol_make_alias does that.
5490 (symbol_make_alias): It's not necessary to decrement the symbol and
5491 token counts anymore. Don't assume that an alias declaration occurs
5492 before any uses of the identifier or string, and thus don't assert that
5493 one of them has the highest symbol number so far.
5494 (symbol_check_alias_consistency): Complain if there's a string literal
5495 that wasn't declared as an alias.
5496 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5497 symbol_pack asserts that every token has been assigned a symbol number
5498 although undeclared string literals have not.
5499 * tests/regression.at (String alias declared after use, Undeclared
5500 string literal): New test cases.
5501 (Characters Escapes, Web2c Actions): Declare string literals as
5502 aliases.
5503 * tests/sets.at (Firsts): Likewise.
5504
5505 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5506
5507 In the grammar scanner, STRING_FINISH unclosed constructs and return
5508 them to the parser in order to improve error messages.
5509 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5510 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5511 * tests/input.at (Unclosed constructs): New test case.
5512 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5513 seen.
5514
5515 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5516 unused global.
5517
5518 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5519
5520 Handle string aliases for character tokens correctly.
5521 * src/symtab.c (symbol_user_token_number_set): If the token has an
5522 alias, check and set its alias's user token number instead of its own,
5523 which is set to indicate the alias. Previously, every occurrence of
5524 the character token in the grammar overwrote that alias indicator with
5525 the character code.
5526 * tests/input.at (String aliases for character tokens): New test.
5527
5528 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5529
5530 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5531
5532 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5533
5534 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5535 to prevent failures when building on older platforms.
5536 Check for autopoint failure.
5537 Set XGETTEXT_OPTIONS to values that check for C format strings,
5538 so that translators are warned about them (this also helps
5539 prevent core dumps).
5540
5541 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5542 function, since it simplifies our code a bit.
5543
5544 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5545 rather than -W, so we don't get bogus warnings about sign comparisons.
5546 Add -Wpointer-arith, since that warning is useful (it reports code
5547 that does not conform to C89 and that some compilers reject).
5548 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5549 since it's no longer needed.
5550
5551 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5552
5553 Clean up scanners a bit.
5554 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5555 definitions so gcc won't warn when obstack_for_string is unused.
5556 * src/scan-code.l: config.h and system.h are already #include'd by
5557 scan-code-c.c, so get rid of them here.
5558 * src/scan-gram.l: Likewise.
5559 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5560 definitions rather than duplicating the rest of it.
5561 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5562
5563 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5564
5565 Suppress signed/unsigned comparison warnings for yycheck.
5566 * data/c.m4 (b4_safest_int_type): New macro.
5567 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5568 a signed int type, cast it to b4_safest_int_type first.
5569 * data/yacc.c: Likewise.
5570 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5571 also overwritten.
5572
5573 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5574
5575 * doc/bison.texinfo: Fix some typos.
5576
5577 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5578
5579 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5580 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5581
5582 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5583 the latest gnulib does this a different way.
5584 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5585 translation was patched, so stop omitting it.
5586
5587 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5588
5589 Enable declaration of default %printer/%destructor. Make the parser
5590 use these for all user-declared grammar symbols for which the user does
5591 not declare a specific %printer/%destructor. Thus, the parser uses it
5592 for token 0 if the user declares it but not if Bison generates it as
5593 $end. Discussed starting at
5594 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5595 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5596 and
5597 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5598 * NEWS (2.3+): Mention.
5599 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5600 declare a %destructor for a mid-rule's semantic value. It's just
5601 impossible to declare one specific to it.
5602 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5603 code. Describe default %destructor form.
5604 * src/parse-gram.y (grammar_declaration): Parse default
5605 %printer/%destructor declarations.
5606 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5607 and symbol_destructor_location_get rather than accessing the destructor
5608 and destructor_location members of struct symbol.
5609 (symbol_printers_output): Likewise but for %printer's.
5610 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5611 again.
5612 * src/symtab.c (default_destructor, default_destructor_location,
5613 default_printer, default_printer_location): New static global
5614 variables to record the default %destructor and %printer.
5615 (symbol_destructor_get, symbol_destructor_location_get,
5616 symbol_printer_get, symbol_printer_location_get): New functions to
5617 compute the appropriate %destructor and %printer for a symbol.
5618 (default_destructor_set, default_printer_set): New functions to set the
5619 default %destructor and %printer.
5620 * src/symtab.h: Prototype all those new functions.
5621 * tests/actions.at (Default %printer and %destructor): New test to
5622 check that the right %printer and %destructor are called, that they're
5623 not called for $end, and that $$ and @$ work correctly.
5624 (Default %printer and %destructor for user-declared end token): New
5625 test to check that the default %printer and %destructor are called for
5626 a user-declared end token.
5627 * tests/input.at (Default %printer and %destructor redeclared, Unused
5628 values with default %destructor): New tests to check related grammar
5629 warnings and errors.
5630
5631 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5632
5633 Clean up handling of %destructor for the end token (token 0).
5634 Discussed starting at
5635 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5636 and
5637 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5638
5639 Make the skeletons consistent in how they pop the end token and invoke
5640 its %destructor.
5641 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5642 state, which has token number 0, since this would invoke the
5643 %destructor for the end token.
5644 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5645 until after shifting the end token, or else it won't be popped.
5646 * data/yacc.c (yyparse): Likewise.
5647
5648 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5649 it's the end token. Upon termination, destroy an unshifted lookahead
5650 even when it's the end token.
5651 * data/lalr1.cc (yy::parser::parse): Likewise.
5652 * data/yacc.c (yyparse): Likewise.
5653
5654 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5655 value warnings for the end token when the user gives the end token a
5656 %destructor.
5657
5658 * tests/actions.at (Printers and Destructors): Test all the above.
5659
5660 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
5661
5662 Update to latest gnulib and gettext versions.
5663 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
5664 Add fopen-safer.
5665 (gnulib_files): Add m4/warning.m4. Don't worry about files
5666 overwritten by autopoint.
5667 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
5668 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
5669 rejects them.
5670 Don't use autoreconf; instead, invoke autopoint etc. by hand,
5671 so that we can remove the intl files at a better time.
5672 (intl_files_to_remove): Remove aclocal.m4, since it gets
5673 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
5674 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
5675 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5676 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
5677 Remove datarootdir hack; no longer needed.
5678 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
5679 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
5680 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
5681 strdup.h.
5682 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
5683 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
5684
5685 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
5686
5687 * bootstrap: Adjust to today's change to gnulib-tool by invoking
5688 it with --assume-autoconf='latest-stable'.
5689
5690 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
5691
5692 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
5693 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
5694 YYSTYPE' and `{'.
5695 * src/muscle_tab.h (muscle_grow): Replace the header comments with
5696 those from muscle_tab.c since the old ones are misleading.
5697
5698 2006-07-13 Akim Demaille <akim@epita.fr>
5699
5700 Support %define "KEY" {VALUE}.
5701 * src/scan-code.h, src/scan-code.l (translate_action)
5702 (translate_rule_action, translate_symbol_action, translate_code):
5703 Return char *, not const char *.
5704 * src/parse-gram.y (declaration): Rename as...
5705 (prologue_declaration): this.
5706 (string_content): Remove this nonterminal, use STRING.
5707 (braceless, content, content.opt): New nonterminal.
5708 Use them.
5709 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
5710 as value.
5711 * src/scan-gram.l (getargs.h): Don't include it.
5712
5713 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
5714
5715 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
5716 rather than a for-loop that declares a local bool variable. This
5717 should work around a compatibility problem with a Cray x1e C++
5718 compiler reported by Hung Nguyen in
5719 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
5720 The for-loop was introduced in the 2004-11-17 change but I don't
5721 know why it was needed.
5722
5723 2006-07-12 Akim Demaille <akim@epita.fr>
5724
5725 * data/c.m4: Comment changes.
5726
5727 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
5728
5729 * src/complain.c (error_message, ERROR_MESSAGE): New.
5730 To factor...
5731 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
5732 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
5733
5734 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5735
5736 * NEWS: Instead of %union, you can define and use your own union type
5737 YYSTYPE if your grammar contains at least one <type> tag.
5738 Your YYSTYPE need not be a macro; it can be a typedef.
5739 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
5740 (Union Decl, Decl Summary): Document this.
5741 * data/glr.c (YYSTYPE): Implement this.
5742 * data/glr.cc (YYSTYPE): Likewise.
5743 * data/lalr1.cc (YYSTYPE): Likewise.
5744 * data/yacc.c (YYSTYPE): Likewise.
5745 * src/output.c (prepare): Output tag_seen_flag.
5746 * src/parse-gram.y (declaration, grammar_declaration):
5747 Use 'union_seen' rather than 'typed' to determine whether
5748 %union has been seen, since grammars can now be typed without
5749 %union.
5750 (symbol_declaration, type.opt, symbol_def):
5751 Keep track of whether a tag has been seen.
5752 * src/reader.c (union_seen, tag_seen): New vars.
5753 (typed): remove.
5754 * src/reader.h (union_seen, tag_seen, typed): Likewise.
5755 * src/scan-code.l (untyped_var_seen): New variable.
5756 (handle_action_dollar): Adjust to above changes.
5757 (handle_action_dollar, handle_action_at):
5758 Improve overflow checking for outlandish numbers.
5759 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
5760 avoid new diagnostics generated by above changes.
5761 * tests/regression.at (YYSTYPE typedef): Add test to check
5762 for type tags without %union.
5763
5764 * src/symlist.c (symbol_list_length): Return int, not unsigned
5765 int, since callers expect int. This may need to get revisited
5766 once we have proper integer overflow checking.
5767
5768 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
5769 object is now static.
5770
5771 * src/getargs.c (flags_argmatch): Return void, not int,
5772 to pacify ./configure --enable-gcc-warnings.
5773
5774 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
5775 since last_string is already defined to FLEX_PREFIX (last_string).
5776
5777 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5778
5779 Implement --warnings/-W.
5780 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
5781 replaced by...
5782 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
5783 Adjust callers.
5784 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
5785 (warnings_args, warnings_types): New.
5786 (getargs, short_options, long_options): Accept -W/--warnings.
5787 Sort the options by alphabetical order, upper case letter right
5788 before its lower case.
5789
5790 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5791
5792 Change %merge result type clash warnings to errors. Discussed at
5793 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
5794 * src/reader.c (record_merge_function_type): Use complain_at.
5795 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5796 declared later): Update test case results.
5797
5798 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5799
5800 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
5801 to be in alphabetical order.
5802 (trace_args): Spelling fixes.
5803
5804 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5805
5806 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
5807 so they don't collide with user-defined macros.
5808 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
5809 this was never guaranteed, and now that we're using gnulib stdint,
5810 which defines int_fast16_t to long int, the problem is exposed.
5811
5812 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
5813
5814 * data/c.m4 (b4_basename): Simplify a bit, since we don't
5815 need the full POSIX semantics (and weren't implementing them
5816 anyway).
5817
5818 Adjust to Autoconf 2.60 and today's gnulib.
5819 * bootstrap (gnulib_modules): Add stdint.
5820 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
5821 no longer copies it.
5822 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
5823 since stdint needs the former and wcwidth (which is now required
5824 by mbswidth) needs the latter.
5825 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
5826 work around a compatibility glitch between gettext 0.14.6 and
5827 Autoconf 2.60.
5828 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
5829 Do not check for uintptr_t, since new stdint module does the right
5830 thing.
5831 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
5832 Add stdint.h, stdint_.h, wcwidth.h.
5833 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
5834 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
5835 stdint.m4, wchar_t.m4, wcwidth.m4.
5836 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
5837 usual order for ../lib/*.h files.
5838 (file_name_split): Use last_component, not base_name, to adjust
5839 to gnulib changes.
5840 * src/parse-gram.h: Include <strverscmp.h> in the usual order
5841 for ../lib/*.h files.
5842 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
5843 Define unconditionally, since we now assume the stdint module.
5844 * src/scan-skel.l: Include <dirname.h>.
5845 (BASE_QPUTS): Use last_component, not base_name.
5846 * src/system.h: Include <unlocked-io.h> in the usual order
5847 for ../lib/*.h files. Include <stdint.h> unconditionally,
5848 since we now use the stdint module.
5849 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
5850 HAVE_UINTPTR_T, since we now use the stdint module.
5851 (base_name): Remove decl, since files now include <dirname.h>
5852 to get the decl.
5853
5854 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5855
5856 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
5857 New, default to 1.
5858 * data/yacc.c, data/glr.c, data/location.cc: Use them.
5859 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
5860 default.
5861 * tests/calc.at: Adjust.
5862
5863 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5864
5865 * data/c.m4 (b4_basename): New.
5866 (b4_syncline): Also output the location of its invocation (from
5867 the skeleton).
5868 (b4_user_action, b4_define_user_action, b4_user_actions)
5869 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
5870 (b4_user_stype): New.
5871 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
5872
5873 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5874
5875 In the grammar file, the first column is 1 not 0 on the first line as
5876 on every other line.
5877 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
5878 * tests/input.at (Torturing the Scanner): Update output.
5879
5880 * src/scan-gram.l (scanner_cursor): Declare it static.
5881
5882 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5883
5884 In warnings, say "previous declaration" rather than "first
5885 declaration".
5886 * src/symtab.c (redeclaration): Do that here.
5887 * src/reader.c (record_merge_function_type): In the case of a result
5888 type clash, report the previous declaration rather than the very first
5889 one in the grammar file.
5890 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5891 declared later): Add a third declaration to check this behavior.
5892 * tests/input.at (Incompatible Aliases): Update output.
5893
5894 2006-06-27 Akim Demaille <akim@epita.fr>
5895
5896 * doc/Doxyfile.in: New.
5897 * doc/Makefile.am: Use it.
5898 * src/lalr.h, src/symtab.h: Initial doxygenation.
5899
5900 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5901
5902 Don't miss %merge result type warnings just because the LHS types are
5903 declared after the %merge. This continues the effort of the previous
5904 patch.
5905 * src/reader.c (get_merge_function): Don't set the merger type yet.
5906 (record_merge_function_type): New function for setting the merger type
5907 and checking for clashes.
5908 (grammar_current_rule_merge_set): Set the location of the %merge for
5909 the current rule.
5910 (packgram): Invoke record_merge_function_type for each rule now that
5911 all symbol type declarations have been parsed.
5912 * src/reader.h (merger_list.type_declaration_location): New member
5913 storing the location of the first %merge from which the type for this
5914 merging function was derived.
5915 * src/symlist.h (symbol_list.merger_declaration_location): New member
5916 storing the location of a rule's %merge, if any.
5917 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5918 declared later): New test to catch the error fixed by the above patch.
5919
5920 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5921
5922 Get action warnings (grammar_rule_check) right even when symbol
5923 declarations appear after the rules. Discussed at
5924 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
5925 and
5926 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
5927 Don't mistake the type of $$ in a midrule to be that of its parent
5928 rule's $$.
5929 * src/reader.c (grammar_current_rule_end): Don't invoke
5930 grammar_rule_check yet since not all symbol declarations may have been
5931 parsed yet.
5932 (grammar_midrule_action): Likewise.
5933 Don't record whether the midrule's $$ has been used yet since actions
5934 haven't been translated yet.
5935 Record the midrule's parent rule and its RHS index within the parent
5936 rule.
5937 (grammar_current_rule_action_append): Don't translate the action yet
5938 since not all symbol declarations may have been parsed yet and, thus,
5939 warnings about types for $$, $n, @$, and @n can't be reported yet.
5940 (packgram): Translate the action and invoke grammar_rule_check now that
5941 all symbol declarations have been parsed.
5942 * src/scan-code.l (handle_action_dollar): Now that this is invoked
5943 after parsing the entire grammar file, the symbol list here in the case
5944 of a midrule is actually the midrule's empty RHS, so reference its
5945 parent rule's RHS where necessary.
5946 On the other hand, now that you can already know it's a midrule, you
5947 aren't forced to think $$ has the same type as its parent rule's $$.
5948 (handle_action_at): In the case of a midrule, reference the parent rule
5949 where necessary.
5950 * src/symlist.c (symbol_list_new): Initialize new midrule-related
5951 members.
5952 (symbol_list_length): Now that this is invoked after all rules have
5953 been parsed, a NULL symbol (rather than a NULL symbol list node)
5954 terminates a rule. symbol_list_print already does this correctly.
5955 * src/symlist.h (symbol_list.midrule_parent_rule,
5956 symbol_list.midrule_parent_rhs_index): New members so that midrules can
5957 remember their relationships with their parents.
5958 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
5959 fixed by the above patch.
5960 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
5961 implementing...
5962 (Unused values): ... this old test case and...
5963 (Unused values before symbol declarations): ... this new test case.
5964 This one is the same as `Unused values' except that all symbol
5965 declarations appear after the rules in order to catch the rest of the
5966 errors fixed by the above patch.
5967
5968 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5969
5970 More cleanup.
5971 * src/reader.c (current_rule): Declare it static since it's no longer
5972 used outside this file.
5973 (grammar_current_rule_action_append): Remove redundant arguments from
5974 translate_rule_action invocation.
5975 * src/reader.h (current_rule): Remove this unused extern.
5976 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
5977 * src/scan-code.l (translate_rule_action): Likewise.
5978
5979 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
5980
5981 Clean up yesterday's patch.
5982 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
5983 to...
5984 * src/reader.c (grammar_current_rule_action_append): ... here for
5985 consistency with grammar_current_rule_symbol_append.
5986 * tests/regression.at (Braced code in declaration in rules section):
5987 Make yyerror and yylex static as usual.
5988
5989 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
5990
5991 Fix bug that mistakes braced code in a declaration in the rules section
5992 to be a rule action. Mentioned at
5993 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
5994 * src/scan-gram.l: Move midrule action detection from the start of the
5995 scanning of any braced code to...
5996 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
5997 action. For readability, use $2 and @2 rather than the equivalent
5998 global variables.
5999 * tests/regression.at (Braced code in declaration in rules section):
6000 New test to catch the error fixed by the above patch.
6001
6002 Work on code readability some.
6003 * src/scan-code.l (current_rule): Get rid of this misleading and
6004 redundant declaration: it's actually extern'ed in reader.h.
6005 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
6006 translate_action): Add a rule argument and use it instead of the global
6007 current_rule.
6008 (translate_rule_action): This already receives current_rule through an
6009 argument, so pass it on to translate_action instead of assigning
6010 current_rule to current_rule.
6011 (translate_symbol_action, translate_code): Pass rule = NULL to
6012 translate_action.
6013
6014 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
6015
6016 Rename %before-definitions to %start-header and %after-definitions to
6017 %end-header. Don't use these declarations to separate pre-prologue
6018 blocks from post-prologue blocks. Add new order-independent
6019 declarations %before-header and %after-header as alternatives to the
6020 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
6021 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
6022 * NEWS (2.3+): Update for these changes.
6023 * data/glr.c (b4_before_definitions): Update to...
6024 (b4_start_header): ... this.
6025 (b4_after_definitions): Update to...
6026 (b4_end_header): ... this.
6027 * data/glr.cc: Likewise.
6028 * data/lalr1.cc: Likewise.
6029 * data/yacc.c: Likewise.
6030 * doc/bison.texinfo (The prologue): Update names, and replace remaining
6031 prologue blocks with %*-header declarations.
6032 (Calc++ Parser): Likewise.
6033 (Decl Summary): Update names.
6034 (Table of Symbols): Update description.
6035 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
6036 (PERCENT_END_HEADER): ... this.
6037 (PERCENT_BEFORE_DEFINITIONS): Update to...
6038 (PERCENT_START_HEADER): ... this.
6039 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6040 (declaration): Update token names and m4 macro names.
6041 When parsing %end-header and %start-header, invoke translate_code
6042 before muscle_code_grow, and no longer set global booleans to remember
6043 whether these declarations have been seen.
6044 Parse new %after-header and %before-header.
6045 * src/reader.c (before_definitions, after_definitions): Remove.
6046 (prologue_augment): Accept a new bool argument to specify whether to
6047 augment the pre-prologue or post-prologue.
6048 * src/reader.h (before_definitions, after_definitions): Remove these
6049 extern's.
6050 (prologue_augment): Add new bool argument.
6051 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
6052 (PERCENT_END_HEADER): ... this.
6053 (PERCENT_BEFORE_DEFINITIONS): Update to...
6054 (PERCENT_START_HEADER): ... this.
6055 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6056 * tests/actions.at (Printers and Destructors): Update names.
6057
6058 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
6059
6060 Add comparison operators for C++ location classes. Discussed at
6061 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
6062 * data/c++.m4 (b4_define_location_comparison): New boolean %define
6063 declaration indicating whether filename_type has an operator==. If
6064 filename_type is `std::string', it defaults to `1', `0' otherwise.
6065 * data/location.cc: Iff b4_define_location_comparison is `1', add
6066 operator== and operator!= for class position and for class location.
6067
6068 Some minor fixes.
6069 * src/scan-action.l: Remove unused file.
6070 * src/symtab.c (symbol_printer_set): Use printer_location not
6071 destructor_location.
6072 * src/symtab.h (struct symbol): Replace incorrect source comment for
6073 printer members.
6074 * tests/input.at (Incompatible Aliases): Update output with correct
6075 printer location.
6076
6077 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
6078
6079 Don't put the pre-prologue in the header file. For the yacc.c code
6080 file and the glr.c header and code files, move the pre-prologue before
6081 the token definitions. Add new %before-definitions and
6082 %after-definitions to declare code that will go in both the header file
6083 and code file. Discussed at
6084 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
6085 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
6086 and
6087 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
6088 * NEWS (2.3+): Describe these changes.
6089 * data/glr.c (b4_pre_prologue): Move from within to before...
6090 (b4_shared_declarations): ... this.
6091 Add new b4_before_definitions before b4_token_enums.
6092 Add new b4_after_definitions at the end.
6093 * data/glr.cc (b4_pre_prologue): Replace with...
6094 (b4_before_definitions): ... this in the header file.
6095 (b4_after_definitions): New near the end of the header file.
6096 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
6097 code file right before including the header file.
6098 (b4_before_definitions): New in the previous position of
6099 b4_pre_prologue in the header file.
6100 (b4_after_definitions): New near the end of the header file.
6101 * data/yacc.c: Clean up some m4 quoting especially in the header file.
6102 (b4_token_enums_defines): In the code file, move to right before
6103 YYSTYPE for consistency with the header file.
6104 (b4_before_definitions): New right before b4_token_enums_defines in
6105 both the header and code file.
6106 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
6107 header and code file.
6108 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
6109 of prologues for %union dependencies.
6110 (Decl Summary): In %defines description, mention the effect of
6111 %before-definitions and %after-definitions on the header file.
6112 (Calc++ Parser): Forward declare driver in a %before-definitions rather
6113 than in the pre-prologue so that make check succeeds.
6114 (Table of Symbols): Add entries for %before-definitions and
6115 %after-definitions.
6116 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
6117 %before-definitions.
6118 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
6119 (declaration): Parse those declarations and append to
6120 b4_before_definitions and b4_after_definitions, respectively.
6121 * src/reader.c (before_definitions, after_definitions): New bools to
6122 track whether those declarations have been seen.
6123 (prologue_augment): Add to the post-prologue if %union,
6124 %before-definitions, or %after-definitions has been seen.
6125 * src/reader.h (before_definitions, after_definitions): New extern's.
6126 * src/scan-gram.l: Scan the new declarations.
6127 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
6128 prologue block in a %before-definitions or a %after-definitions based
6129 on whether the %union is declared.
6130 * tests/regression.at (Early token definitions with --yacc, Early token
6131 definitions without --yacc): Move tests for token definitions into the
6132 post-prologue since token names are no longer defined in the
6133 pre-prologue.
6134
6135 2006-06-20 Akim Demaille <akim@epita.fr>
6136
6137 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
6138 (symbol_get): Use it.
6139 * src/parse-gram.y: Use it.
6140
6141 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
6142
6143 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
6144 build succeeds when configured with --enable-gcc-warnings.
6145
6146 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
6147
6148 * src/parse-gram.y (char_name): New function.
6149 (CHAR, STRING, string_content): For %printer, properly escape.
6150 (ID): Prefer fputs to fprintf.
6151 (id): Reindent to be consistent with other rules.
6152 Properly quote char.
6153
6154 The Translation Project changed its way of publishing translations
6155 to maintainers. I haven't received any responses to my request
6156 for supporting the old way, or for documenting the new way. I
6157 have modified 'bootstrap' to use screen scraping
6158 (in this case, HTML scraping). This is unreliable and inelegant,
6159 but I don't see any better way. Yuck.
6160 * bootstrap (TP_URL, WGET_COMMAND): New vars.
6161 (get_translations): New function, which uses HTML scraping to
6162 deduce locations of latest translations.
6163 Use this function to grab both bison and bison-runtime .po files.
6164 Don't bother priming the pump for the runtime-po domain any more,
6165 as it's now translated better than bison is.
6166
6167 2006-06-19 Akim Demaille <akim@epita.fr>
6168
6169 * src/scan-gram.l: No longer "parse" things after `%union' until
6170 `{'. Rather, return a single "%union" token.
6171 No longer make symbols: return strings, and leave the conversion
6172 to symbols to the parser.
6173 (SC_PRE_CODE, token_type): Remove.
6174 * src/parse-gram.y (%union): New field `character'.
6175 Sort tokens.
6176 (CHAR): New token.
6177 (ID, ID_COLON): Now that the scanner no longer makes them
6178 identifiers, adjust all uses to invoke symbol_get.
6179 (id_colon): New, wraps the conversion from string to symbol.
6180 (%union): Accept a possible union_name.
6181 (symbol): Now can be a char.
6182 * data/c.m4 (b4_union_name): Leave a default value.
6183 * data/glr.c, data/yacc.c: Use it.
6184
6185 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
6186
6187 For associating token numbers with token names for "yacc.c", don't use
6188 #define statements unless `--yacc' is specified; always use enum
6189 yytokentype. Most important discussions start at:
6190 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
6191 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
6192 and
6193 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
6194 * NEWS (2.3+): Mention.
6195 * data/c.m4 (b4_yacc_if): New.
6196 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
6197 token #define's.
6198 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
6199 on token name definitions.
6200 * src/getargs.c (usage): Capitalize `Yacc' in English.
6201 * src/output.c (prepare): Define b4_yacc_flag.
6202 * tests/regression.at (Early token definitions): Test that tokens names
6203 are defined before the pre-prologue not just before the post-prologue.
6204 Remove this test case and copy to...
6205 (Early token definitions with --yacc): ... this to test #define's.
6206 (Early token definitions without --yacc): ... and this to test enums.
6207
6208 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
6209
6210 * NEWS: Reword the post-2.3 change to not be so optimistic about
6211 removing the old "look-ahead" spelling.
6212 Update previous look-ahead/lookahead change reports.
6213 * REFERENCES: look-ahead -> lookahead (since that's
6214 what he actually wrote).
6215 * doc/refcard.tex: look ahead -> lookahead,
6216 look-ahead -> lookahead
6217
6218 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
6219
6220 For consistency, use `lookahead' instead of `look-ahead' or
6221 `look_ahead'. Discussed starting at
6222 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
6223 and then at
6224 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
6225 * NEWS: For the next release, note the change to `--report'.
6226 * TODO, doc/bison.1: Update English.
6227 * doc/bison.texinfo: Update English.
6228 (Understanding Your Parser, Bison Options): Document as
6229 `--report=lookahead' rather than `--report=look-ahead'.
6230 * src/conflicts.c: Update English in comments.
6231 (lookahead_set): Rename from look_ahead_set.
6232 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
6233 (resolve_sr_conflict): Rename local look_ahead_tokens to
6234 lookahead_tokens, and update other uses.
6235 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
6236 count_rr_conflicts, conflicts_free): Update uses.
6237 * src/getargs.c (report_args): Move "lookahead" before alternate
6238 spellings.
6239 (report_types): Update uses.
6240 (usage): For `--report' usage description, state `lookahead' spelling
6241 rather than `look-ahead'.
6242 * src/getargs.h (report.report_lookahead_tokens): Rename from
6243 report_look_ahead_tokens.
6244 * src/lalr.c: Update English in comments.
6245 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
6246 (state_lookahead_tokens_count): Rename from
6247 state_look_ahead_tokens_count.
6248 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6249 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
6250 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6251 Update other uses.
6252 Update English in output.
6253 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
6254 * src/print.c: Update English in comments.
6255 (lookahead_set): Rename from look_ahead_set.
6256 (print_reduction): Rename argument lookahead_token from
6257 look_ahead_token.
6258 (print_core, state_default_rule, print_reductions, print_results):
6259 Update uses.
6260 * src/print_graph.c: Update English in comments.
6261 (print_core): Update uses.
6262 * src/state.c: Update English in comments.
6263 (reductions_new): Update uses.
6264 (state_rule_lookahead_tokens_print): Rename from
6265 state_rule_look_ahead_tokens_print, and update other uses.
6266 * src/state.h: Update English in comments.
6267 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
6268 (state_rule_lookahead_tokens_print): Rename from
6269 state_rule_look_ahead_tokens_print.
6270 * src/tables.c: Update English in comments.
6271 (conflict_row, action_row): Update uses.
6272 * tests/glr-regression.at
6273 (Incorrect lookahead during deterministic GLR,
6274 Incorrect lookahead during nondeterministic GLR): Rename
6275 print_look_ahead to print_lookahead.
6276 * tests/torture.at: Update English in comments.
6277 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
6278 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
6279 (Many lookahead tokens): Update uses.
6280 * data/glr.c: Update English in comments.
6281 * lalr1.cc: Likewise.
6282 * yacc.c: Likewise.
6283 * src/conflicts.h: Likewise.
6284 * src/lalr.h: Likewise.
6285 * src/main.c: Likewise.
6286 * src/output.c: Likewise.
6287 * src/parse-gram.c: Likewise.
6288 * src/tables.h: Likewise.
6289 * tests/calc.at: Likewise.
6290
6291 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
6292
6293 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
6294
6295 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
6296
6297 * TODO: Add request from Nelson H. F. Beebe to be able to install
6298 Bison without installing the yacc script.
6299
6300 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6301
6302 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
6303 and yytext if they're already #define'd.
6304 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
6305 * src/scan-code-c.c: ... here.
6306 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
6307 <config.h>.
6308
6309 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6310
6311 Get Bison to build again when configured with --enable-gcc-warnings.
6312 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
6313 missing #include's.
6314 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6315 loc argument as it shadows a global.
6316 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6317 invocation.
6318
6319 * src/.cvsignore: Add scan-code.c.
6320
6321 2006-06-07 Akim Demaille <akim@epita.fr>
6322
6323 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6324 to...
6325 * src/scan-code.l: here.
6326 * tests/input.at (Torturing the Scanner): Fix another location
6327 error.
6328
6329 2006-06-07 Akim Demaille <akim@epita.fr>
6330
6331 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6332
6333 2006-06-06 Akim Demaille <akim@epita.fr>
6334
6335 Extract the parsing of user actions from the grammar scanner.
6336 As a consequence, the relation between the grammar scanner and
6337 parser is much simpler. We can also split "composite tokens" back
6338 into simple tokens.
6339 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6340 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6341 rename as...
6342 * src/location.h, src/location.c (add_column_width)
6343 (location_compute): these.
6344 Fix the column count: the initial column is 0.
6345 (location_print): Be robust to ending column being 0.
6346 * src/location.h (boundary_set): New.
6347 * src/main.c: Adjust to scanner_free being renamed as
6348 gram_scanner_free.
6349 * src/output.c: Include scan-code.h.
6350 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6351 Use boundary_set.
6352 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6353 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6354 which is now, again, a separate token.
6355 Adjust all dependencies.
6356 Whereever actions with $ and @ are used, use translate_code.
6357 (action): Remove this nonterminal which is now useless.
6358 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6359 (grammar_current_rule_action_append): Use translate_code.
6360 (packgram): Bound check ruleno, itemno, and rule_length.
6361 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6362 (last_string, last_braced_code_loc, max_left_semantic_context)
6363 (scanner_initialize, scanner_free, scanner_last_string_free)
6364 (gram_out, gram_lineno, YY_DECL_): Move to...
6365 * src/scan-gram.h: this new file.
6366 (YY_DECL): Rename as...
6367 (GRAM_DECL): this.
6368 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6369 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6370 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6371 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6372 Move these declarations, and...
6373 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6374 these to...
6375 * src/flex-scanner.h: this new file.
6376 * src/scan-gram.l (rule_length, rule_length_overflow)
6377 (increment_rule_length): Remove.
6378 (last_braced_code_loc): Rename as...
6379 (gram_last_braced_code_loc): this.
6380 Adjust to the changes of the parser.
6381 Move all the handling of $ and @ into...
6382 * src/scan-code.l: here.
6383 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6384 (handle_action_dollar, handle_action_at): Move to...
6385 * src/scan-code.l: here.
6386 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6387 scan-code.h, scan-code-c.c, scan-gram.h.
6388 (EXTRA_bison_SOURCES): Add scan-code.l.
6389 (BUILT_SOURCES): Add scan-code.c.
6390 (yacc): Be robust to white spaces.
6391
6392 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6393 * tests/regression.at: Adjust the column numbers.
6394 * tests/regression.at: Adjust the error message.
6395
6396 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6397
6398 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6399 Use Akim's wording from
6400 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6401
6402 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6403
6404 Between Bison releases, manually append `+' to the previous Bison
6405 release number, and use that as a signal to automatically print the
6406 ChangeLog's CVS Id keyword from --version. Discussed starting at
6407 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6408 * ChangeLog: Add Id header.
6409 * configure.ac (AC_INIT): Append `+' to `2.3'.
6410 * src/.cvsignore: Add revision.c.
6411 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6412 (BUILT_SOURCES): Add revision.c.
6413 (revision.c): New target rule. This file defines a new global variable
6414 named revision. It initializes it with either the Id from ChangeLog
6415 or, if VERSION doesn't contain `+', with the empty string.
6416 * src/getargs.c (version): Print the value of revision.
6417 * src/revision.h: Extern revision.
6418
6419 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6420
6421 * NEWS: Version 2.3.
6422 * configure.ac (AC_INIT): Likewise.
6423
6424 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6425
6426 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6427 with no arguments, not as an object-like macro. This is for
6428 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6429 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6430 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6431 Document this.
6432
6433 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6434
6435 * src/getargs.c (usage): Back out yesterday's modification of the
6436 --help output so that we don't have to wait for translation before
6437 releasing 2.3.
6438
6439 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6440
6441 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6442 Problem reported by Akim Demaille.
6443
6444 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6445
6446 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6447
6448 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6449
6450 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6451 generated source code. Problem reported by Frans Englich in
6452 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6453
6454 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6455
6456 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6457 shell, not within 'make', so that 'make' by an ordinary builder
6458 (using GNU make) does not worry about configuring gzip. This also
6459 works around a bug reported independently by Keith Thompson and by
6460 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6461 stderr rather than stdout, messing up the build logs.
6462
6463 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6464
6465 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6466 to make sure that YYID will never be unused. This fixes a 'make
6467 maintainer-check' failure caused by the recent changes to the 'Trivial
6468 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6469 not used.
6470 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6471
6472 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6473
6474 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6475 state before an empty RHS is always resolved here. Only the location
6476 of that state is guaranteed to be resolved, and that's enough. This
6477 fixes the remaining bug reported by Derek M. Jones in
6478 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6479 * tests/glr-regression.at (Uninitialized location when reporting
6480 ambiguity): Test the above case.
6481 Also, the embedded comments in this test case claim it checks the case
6482 of an empty RHS that has inherited the initial location. However, the
6483 corresponding LHS was already resolved, so yyresolveLocations didn't
6484 actually have reason to modify it. Fix this by forcing
6485 nondeterministic operation at the beginning of the parse.
6486
6487 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6488
6489 * data/c.m4 (b4_yy_symbol_print_generate):
6490 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6491 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6492 of the bugs reported today by Derek M Jones in
6493 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6494 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6495 defined to be a type name without parens or brackets.
6496 (Location Type): Similarly for YYLTYPE.
6497 * tests/regression.at (Trivial grammars): Put in a test for this
6498 bug that will be caught by 'make maintainer-check' (though not,
6499 alas, by 'make check' unless your compiler is picky).
6500
6501 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6502
6503 * NEWS: Version 2.2.
6504 * configure.ac (AC_INIT): Likewise.
6505
6506 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6507
6508 * data/glr.c (yyreportTree): Make room in yystates for the state
6509 preceding the RHS. This fixes the segmentation fault reported by Derek
6510 M. Jones in
6511 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6512 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6513 to the user. Reported for yyreportTree by Derek M. Jones later in the
6514 same thread.
6515 * THANKS: Add Derek M. Jones.
6516 Update my email address.
6517 Fix typo in Steve Murphy's name.
6518
6519 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6520
6521 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6522 checking against YYLAST that caused the parser to miss a potential
6523 alternative in its diagnostic.
6524 Problem reported by Maria Jose Moron Fernandez in
6525 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6526 * data/lalr1.cc (yysyntax_error_): Likewise.
6527 * data/yacc.c (yysyntax_error): Likewise.
6528 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6529 tokens, in case we run into an older C compiler.
6530 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6531 Use them to check for the off-by-one error fixed above.
6532
6533 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6534 YYSIZE_T, not size_t.
6535 * tests/regression.at (Trivial grammars): New test, to catch
6536 the error fixed by the above patch.
6537
6538 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6539
6540 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6541 scheme.
6542 Reported by Steve Murphy.
6543
6544 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6545
6546 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6547 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6548
6549 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6550
6551 Implement --trace=m4.
6552 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6553 * src/output.c (output_skeleton): When set, pass -dV to m4.
6554
6555 Factor the handling of flags in m4.
6556 * src/output.c (prepare): Rename the muscle names debug, defines,
6557 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6558 * data/c.m4: Adjust.
6559 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6560 Use b4_define_flag_if to define other b4_FLAG_if macros.
6561 (b4_location_if): As a consequence, rename as...
6562 (b4_locations_if): this, for consistency.
6563 Adjust all the skeletons.
6564
6565 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6566
6567 * etc/bench.pm: Shorten bench names.
6568
6569 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6570
6571 * src/output.h, src/output.c (error_verbose): Move to...
6572 * src/getargs.h, src/getargs.c: here.
6573 Sort the flags.
6574 Adjust dependencies.
6575
6576 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6577
6578 * data/c.m4 (b4_copyright): Put the special exception for Bison
6579 skeletons here, so we don't have to put it in each skeleton. All
6580 uses changed. Suggested by Akim Demaille. Also, wrap the
6581 copyright notice, in case it is longer than 80 columns. Replace
6582 comma by newline after title.
6583
6584 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6585
6586 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6587 incompatibility, not a bug. Mention that it wasn't fixed as of
6588 flex 2.5.33.
6589
6590 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6591
6592 * examples/extexi: Enforce the precedence of concatenation over
6593 >>.
6594 Reported by Tommy Nordgren.
6595
6596 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6597
6598 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6599 with the member "token".
6600 Reported by Martin Nylin.
6601
6602 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6603
6604 * data/glr.c: Switch to Bison 2.2 special-exception language in
6605 the copyright notice. Use more-regular format for titles and
6606 copyright notices.
6607 * data/glr.cc: Likewise.
6608 * data/location.cc: Likewise.
6609 * data/yacc.cc: Likewise.
6610 * doc/bison.texinfo (Conditions): Document this.
6611 * NEWS: likewise. Upgrade version to 2.2.
6612
6613 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
6614
6615 * data/glr.cc: Remove dead code.
6616
6617 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6618
6619 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6620 that variable and the line breaks the bootstrap. Problem reported
6621 by Juan M. Guerrero.
6622
6623 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6624
6625 * doc/bison.texinfo (Multiple start-symbols): New.
6626
6627 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6628
6629 * etc/README, etc/bench.pl: New.
6630
6631 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
6632
6633 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6634 rule.
6635 Reported by Mickael Labau.
6636 * tests/input.at (Torturing the Scanner): Test it.
6637
6638 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6639
6640 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6641 Problem reported by Bob Rossi.
6642
6643 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6644
6645 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6646 and didn't really work.
6647 For the index, use @ifnotinfo, not @iftex.
6648 Minor cleanups of spacing and terminology.
6649
6650 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6651
6652 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6653 of AT_NAME_PREFIX when %name-prefix is not used.
6654
6655 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6656
6657 Apply --prefix to C++ skeletons too: they change the namespace.
6658 The test suite already exercize these cases.
6659 * data/c++.m4 (b4_namespace): New.
6660 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
6661 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
6662 * data/yacc.c, data/glr.c: Remove a useless `[]'.
6663 * doc/bison.texinfo: Document it.
6664 (Option Cross Key): Use @multitable in all formats. It looks
6665 nicer, even in TeX outputs.
6666 (Rules): Use the same code whatever the output type is.
6667 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
6668 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
6669 * tests/calc.at: Use it, instead of hard coding `yy'.
6670
6671 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6672
6673 * TODO: Remove dead items.
6674
6675 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6676
6677 * doc/FAQ: Remove, merged into...
6678 * doc/bison.texinfo (FAQ): this.
6679 * doc/Makefile.am (EXTRA_DIST): Adjust.
6680
6681 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6682
6683 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
6684 even if empty.
6685 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
6686 * doc/bison.texinfo (Calc++ Scanner): Use it.
6687
6688 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
6689
6690 Fix two nits reported by twlevo, plus one more that I discovered.
6691
6692 * src/assoc.h (assoc_to_string): Give a name to the arg, as
6693 this is the usual Bison style.
6694 * src/location.h (location_print): Likewise.
6695
6696 * src/reader.h (token_name): Likewise.
6697
6698 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
6699
6700 Fix some nits reported by twlevo.
6701 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
6702 and "POSIX". Use more-modern syntax for URLs. Mention C++
6703 and ask for Java. Don't hardwire OS version numbers. Add
6704 copyright notice.
6705 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
6706 * src/conflicts.c (solved_conflicts_obstack): Now static.
6707
6708 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
6709
6710 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
6711 page. Say "you can use it" not "you may use it" as on the web page;
6712 we're describing capabilities not granting permission.
6713
6714 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
6715
6716 * data/glr.c (yyresolveLocations): Rename local variables to avoid
6717 shadowing warnings. Use usual patter for iterating through RHS.
6718 * tests/glr-regression.at
6719 (Uninitialized location when reporting ambiguity):
6720 Modify yylex so that it uses its argument, rather than trying
6721 to rely on ARGSUSED (which doesn't work for gcc with warnings).
6722 const char -> char const.
6723
6724 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
6725 Don't use tabs inside commands; it messes up 'ps'.
6726 Problem reported by twlevo.
6727
6728 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
6729
6730 * tests/glr-regression.at (Uninitialized location when reporting
6731 ambiguity): New test case.
6732 * data/glr.c (yyresolveLocations): New function, which uses
6733 YYLLOC_DEFAULT.
6734 (yyresolveValue): Invoke yyresolveLocations before reporting an
6735 ambiguity.
6736 * doc/bison.texinfo (Default Action for Locations): Note
6737 YYLLOC_DEFAULT's usage for ambiguity locations.
6738 (GLR Semantic Actions): Cross-reference those notes.
6739
6740 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
6741
6742 * tests/glr-regression.at (Leaked semantic values when reporting
6743 ambiguity): Remove unnecessary union and type declarations.
6744 (Leaked lookahead after nondeterministic parse syntax error): New test
6745 case.
6746 * data/glr.c (yyparse): Check for zero stacks remaining before
6747 attempting to shift the lookahead so that you don't lose it.
6748
6749 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6750
6751 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
6752 * tests/glr-regression.at (Leaked semantic values when reporting
6753 ambiguity): New test case.
6754 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
6755 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
6756 now unnecessary yystackp parameter.
6757 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
6758 destructors can be called.
6759
6760 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
6761 in existing testcases.
6762
6763 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6764
6765 Don't leak semantic values for parent RHS when a user action cuts the
6766 parser, and clean up related code a bit.
6767 * tests/glr-regression.at (Leaked merged semantic value if user action
6768 cuts parse): Rename to...
6769 (Leaked semantic values if user action cuts parse): ... this. Add check
6770 for leaked parent RHS values.
6771 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
6772 between an unresolved state (non-empty chain of semantic options) and
6773 an incomplete one (signaled by an empty chain).
6774 (yyresolveStates): Document the interface. Move all manipulation of a
6775 successfully or unsuccessfully resolved yyGLRState to...
6776 (yyresolveValue): ... here so that yyresolveValue always leaves a
6777 yyGLRState with consistent data and thus is easier to understand.
6778 Remove the yyvalp and yylocp parameters since they are always just
6779 taken from the yys parameter. When reporting a discarded merged value
6780 in debugging output, note that it is incompletely merged. Document the
6781 interface.
6782 (yyresolveAction): If resolving any of the RHS states fails, destroy
6783 them all rather than leaking them. Thus, as long as user actions are
6784 written to clean up the RHS correctly, yyresolveAction always cleans up
6785 the RHS of a semantic option. Document the interface.
6786
6787 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
6788
6789 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
6790 led to a segmentation fault in GNU Pascal. Problem reported
6791 by Waldek Hebisch.
6792
6793 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
6794
6795 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
6796 mid-rule action inside a nonterminal symbol in order to declare a
6797 destructor for its semantic value.
6798
6799 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
6800
6801 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
6802 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
6803 __cplusplus && ! defined _STDLIB_H && !
6804 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
6805 defined free))]: Include <stdlib.h> rather than rolling our own
6806 declarations of malloc and free, to avoid problems with
6807 incompatible declarations (using 'throw') C++'s stdlib.h. This
6808 should fix Debian bug 340012
6809 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
6810 reported by Guillaume Melquiond.
6811
6812 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6813
6814 * NEWS: Clarify symbols versus types in unused-value warnings.
6815
6816 * configure.ac (AC_INIT): Bump version number.
6817
6818 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6819
6820 * NEWS: Version 2.1a.
6821 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
6822 since C99 requires this.
6823
6824 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
6825
6826 * m4/c-working.m4: New file.
6827 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
6828
6829 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
6830
6831 * Makefile.maint: Merge from coreutils.
6832
6833 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
6834
6835 More portability fixes for problems summarized by Nelson H. F. Beebe.
6836
6837 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
6838 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
6839 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
6840 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
6841 messes up because C++ code is compiled in 32-bit mode but linked
6842 in 64-bit mode.
6843
6844 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
6845
6846 More portability fixes for problems summarized by Nelson H. F. Beebe.
6847
6848 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
6849 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
6850
6851 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
6852 nodist_PROGRAMS, since we don't need to actually compile the
6853 example if we're just doing a plain 'make'. This avoids bothering
6854 the installer unnecessarily about problems due to weird C++
6855 compilers.
6856
6857 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
6858
6859 More portability fixes for problems summarized by Nelson H. F. Beebe.
6860
6861 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
6862 than #include "...", and compile with -I'.'. The old method was
6863 not portable, according to Posix and the C standard, and it does
6864 not work with Sun C 5.7, where previous #line directives affect
6865 the working directory used in later #include "..." directives.
6866
6867 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6868
6869 Various DJGGP specific issues in /djgpp
6870
6871 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
6872
6873 More portability fixes for problems summarized by Nelson H. F. Beebe.
6874
6875 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
6876 '#include <map>' works and that you can apply ++ to iterators.
6877
6878 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
6879
6880 Work around portability problems summarized by Nelson H. F. Beebe in
6881 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
6882
6883 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6884 that '#include <string>' works.
6885
6886 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
6887 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
6888 "warning: sorry: semantics of inline function static data `const
6889 unsigned char translate_table[262]' are wrong (you'll wind up with
6890 multiple copies)".
6891
6892 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
6893 or, xor to not_, and_, or_, and xor_, respectively. This works
6894 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
6895 random system header somewhere that includes the equivalent of
6896 <iso646.h>.
6897
6898 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
6899 -E" works; it apparently doesn't work with PathScale EKO Compiler
6900 Suite Version 2.0.
6901
6902 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
6903
6904 During deterministic GLR operation, user actions should be able to
6905 influence the parse by changing yychar. To make this easier to fix and
6906 to make glr.c easier to evolve in general, don't maintain yytoken in
6907 parallel with yychar; just compute yytoken when needed.
6908 * tests/glr-regression.at (Incorrect lookahead during deterministic
6909 GLR): Check that setting yychar in a user action has the intended
6910 effect.
6911 * data/glr.c (yyGLRStack): Remove yytokenp member.
6912 (yyclearin): Don't set *yytokenp.
6913 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
6914 yychar rather than *yytokenp to determine the current lookahead.
6915 Compute yytoken locally when needed.
6916 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
6917 point to.
6918
6919 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
6920 after `--report' documentation.
6921
6922 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
6923
6924 * src/parse-gram.y (grammar_declaration): Location of printer
6925 symbol is @1, not list->location. Bug reported by twlevo.
6926 * tests/input.at (Incompatible Aliases): Adjust to above change.
6927
6928 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
6929
6930 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
6931 all the test at once. This makes the output easier to read in the
6932 normal case.
6933
6934 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
6935 got from <http://bro-ids.org/download.html>. The bug is that
6936 when two actions appeared in succession, the second one was
6937 scanned before the first one was added to the grammar rule
6938 as a midrule action. Bison then output the incorrect warning
6939 "parse.y:905.17-906.36: warning: unused value: $3".
6940 * src/parse-gram.y (BRACED_CODE, action): These are no longer
6941 associated with a value.
6942 (rhs): Don't invoke grammar_current_rule_action_append.
6943 (action): Invoke it here instead.
6944 * src/reader.c (grammar_midrule_action): Now extern.
6945 (grammar_current_rule_action_append): Don't invoke
6946 grammar_midrule_action; that is now the scanner's job.
6947 * src/reader.h (last_string, last_braced_code_loc):
6948 (grammar_midrule_action): New decls.
6949 * src/scan-gram.l (last_string): Now extern, sigh.
6950 (last_braced_code_loc): New extern variable.
6951 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
6952 rule already has an action.
6953 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
6954 * tests/input.at (AT_CHECK_UNUSED_VALUES):
6955 Add some tests to check that the above changes fixed the bug.
6956
6957 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
6958
6959 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
6960 All used changed. Check whether the symbol has a destructor,
6961 not whether it is typed.
6962 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
6963 that the values are still reported as unused. All line numbers
6964 adjusted.
6965
6966 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
6967
6968 Work around a bug in bro 0.8, which underparenthesizes its
6969 definition of YYLLOC_DEFAULT.
6970 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
6971 their arguments.
6972 * data/lalr1.cc: Likewise.
6973 * data/yacc.cc: Likewise.
6974
6975 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
6976
6977 Work around a bug in Pike 7.0, and give the Pike folks a
6978 better way to override the usual int widths.
6979 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
6980 user can override the types.
6981 (short): #undef, to work around a bug in Pike 7.0.
6982 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
6983 (union yyalloc.yyss): Use yytype_int16 rather than short.
6984 All uses changed.
6985 (yysigned_char): Remove.
6986 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
6987 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
6988 * tests/regression.at (Web2c Actions): Adjust to above changes.
6989
6990 * src/reader.c (check_and_convert_grammar): New function.
6991 (reader): Close the input file even if something went wrong during
6992 parsing. Minor file descriptor leak reported by twlevo.
6993
6994 * src/assoc.c (assoc_to_string): Use a default: abort (); case
6995 to pacify gcc -Wswitch-default.
6996 * src/scan-gram.l (adjust_location): Use a default: break; case
6997 to pacify gcc -Wswitch-default.
6998 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
6999 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7000 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7001 Move these decls to scan-skel.l, since they don't need to be
7002 visible elsewhere.
7003 * src/scan-skel.l: Accept the above decls.
7004 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
7005 is used.
7006
7007 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
7008
7009 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
7010 since we don't want to insist on a version number at the start
7011 of the changelog every time.
7012 * Makefile.maint: Sync from coreutils a bit better.
7013 (sc_trailing_blank): Renamed from sc_trailing_space.
7014 All uses changed.
7015 (sc_no_if_have_config_h, sc_require_config_h):
7016 (sc_prohibit_assert_without_use): New rules.
7017 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
7018 (sc_dd_max_sym_length): Fix leading spaces in rule.
7019 (sc_system_h_headers): Prefix with @.
7020 (sc_useless_cpp_parens, m4-check): Output line numbers.
7021 (changelog-check): Allow version only in head.
7022 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
7023 satisfy new Makefile.maint rule.
7024 * data/glr.c: Likewise.
7025 * data/glr.cc: Likewise.
7026 * data/lalr1.cc: Likewise.
7027 * data/yacc.c: Likewise.
7028 * lib/ebitsetv.c: Likewise.
7029 * lib/lbitset.c: Likewise.
7030 * lib/subpipe.c: Likewise.
7031 * lib/timevar.c: Likewise.
7032 * src/system.h: Likewise.
7033 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
7034 * djgpp/Makefile.maint: Add copyright notice.
7035 * djgpp/README.in: Likewise.
7036 * djgpp/config.bat: Likewise.
7037 * djgpp/config.site: Likewise.
7038 * djgpp/config_h.sed: Likewise.
7039 * djgpp/djunpack.bat: Likewise.
7040 * djgpp/config.sed: Fix copyright notice to match standard format.
7041 * djgpp/subpipe.h: Likewise.
7042 * lib/bitsetv-print.c: Likewise.
7043 * lib/bitsetv.c: Likewise.
7044 * lib/subpipe.h: Likewise.
7045 * lib/timevar.c: Likewise.
7046 * lib/timevar.h: Likewise.
7047 * djgpp/subpipe.c: Use standard recipe for config.h.
7048 * lib/abitset.c: Likewise.
7049 * lib/bitset.c: Likewise.
7050 * lib/bitset_stats.c: Likewise.
7051 * lib/bitsetv-print.c: Likewise.
7052 * lib/bitsetv.c: Likewise.
7053 * lib/ebitsetv.c: Likewise.
7054 * lib/get-errno.c: Likewise.
7055 * lib/lbitset.c: Likewise.
7056 * lib/subpipe.c: Likewise.
7057 * lib/timevar.c: Likewise.
7058 * lib/vbitset.c: Likewise.
7059 * tests/local.at: Likewise.
7060 * src/scan-gram.l: Don't include verify.h, since system.h does
7061 that for us.
7062 * .x-sc_require_config_h: New file.
7063 * .x-sc_unmarked_diagnostics: New file.
7064
7065 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
7066
7067 Be a bit more systematic about using 'abort'.
7068 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
7069 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
7070 Put 'default: abort ();' before some other case, to satisfy older
7071 pedantic compilers.
7072 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7073 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
7074 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
7075 * src/conflicts.c (resolve_sr_conflict): Likewise.
7076 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
7077 (get_decision_str, get_orientation_str, get_node_alignment_str):
7078 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
7079 (get_linestyle_str, get_arrowstyle_str): Likewise.
7080 * src/conflicts.c (resolve_sr_conflict):
7081 Use a default case rather than one for the one remaining enum
7082 value, to catch invalid enum values as well.
7083 * src/lalr.c (set_goto_map, map_goto):
7084 Prefer "assert (FOO);" to "if (!FOO) abort ();".
7085 * src/nullable.c (nullable_compute, token_definitions_output):
7086 Likewise.
7087 * src/reader.c (packgram, reader): Likewise.
7088 * src/state.c (transitions_to, state_new, state_reduction_find):
7089 Likewise.
7090 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
7091 (symbol_pack): Likewise.
7092 * src/tables.c (conflict_row, pack_vector): Likewise.
7093 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
7094 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
7095 * src/system.h: Don't include <assert.h>.
7096 (assert): New macro.
7097
7098 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
7099 (Destructor Decl, Parser Function, Pure Calling):
7100 Describe rules for braces inside C code more carefully.
7101
7102 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
7103
7104 Fix some porting glitches found by Nelson H. F. Beebe.
7105 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
7106 compilers that don't understand that abort () does not return.
7107 * src/state.c (transitions_to): Likewise.
7108 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7109 that '#include <cstdlib>' works.
7110 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
7111 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
7112 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
7113 for the benefit of some pre-C99 compilers.
7114
7115 * bootstrap: Undo changes to gnulib files that autoreconf made.
7116
7117 Minor fixups to get 'make maintainer-check' to work.
7118 * configure.ac: Don't use -Wnested-externs, as it's incompatible
7119 with the new verify.h implementation.
7120 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
7121 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
7122 * data/yacc.c (YYUSE): Likewise.
7123 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
7124 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
7125 * src/parse-gram.y (declaration): Don't pass a string constant
7126 to a function that expects char *, since GCC might complain
7127 about the constant value.
7128 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
7129 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
7130 before #defining them.
7131 * tests/glr-regression.at
7132 (Incorrectly initialized location for empty right-hand side in GLR):
7133 In yyerror, use the msg arg.
7134 (Corrupted semantic options if user action cuts parse):
7135 (Incorrect lookahead during deterministic GLR):
7136 (Incorrect lookahead during nondeterministic GLR):
7137 Don't name a local var 'index'; it shadows string.h's 'index'.
7138
7139 2006-01-19 Akim Demaille <akim@epita.fr>
7140
7141 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
7142 location, not just parts of it.
7143
7144 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
7145
7146 * NEWS: Document the fact that multiple %unions are now allowed.
7147 * doc/bison.texinfo (Union Decl): Likewise.
7148 * TODO: This feature is now implemented, so remove it from
7149 the wishlist.
7150
7151 * Makefile.maint: Merge with coreutils Makefile.maint.
7152 (CVS_LIST): Use build-aux version if available.
7153 (VERSION_REGEXP): New macro.
7154 (syntax-check-rules): Add sc_no_if_have_config_h,
7155 sc_prohibit_assert_without_use, sc_require_config_h,
7156 sc_useless_cpp_parens.
7157 (sc_obsolete_symbols): Check for O_NDELAY.
7158 (sc_dd_max_sym_length): Track coreutils.
7159 (sc_unmarked_diagnostics): Look in all files, not just *.c.
7160 (sc_useless_cpp_parens): New rule.
7161 (news-date-check): Look for version or today's date.
7162 (changelog-check): Don't require version number near head.
7163 (copyright-check): Use current year instead of hardwiring 2005.
7164 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
7165 (announcement): Add --gpg-key-ID.
7166
7167 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
7168 with "file system".
7169
7170 Avoid undefined behavior that addressed just before the start of an
7171 array. Problem reported by twlevo.
7172 * src/reader.c (packgram): Prepend a new sentinel before ritem.
7173 * src/lalr.c (build_relations): Rely on new sentinel.
7174 * src/gram.c (gram_free): Adjust to new sentinel.
7175
7176 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
7177
7178 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
7179 yylookaheadNeeds. All uses updated.
7180 (yysplitStack): Rename local yynewLookaheadStatuses to
7181 yynewLookaheadNeeds.
7182 * data/glr-regression.at (Incorrect lookahead during nondeterministic
7183 GLR): In comments, change `lookahead status' to `lookahead need'.
7184
7185 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7186
7187 * data/glr.c (yysplitStack): A little stylistic rewrite.
7188
7189 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7190
7191 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
7192
7193 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
7194
7195 * doc/bison.texinfo: Fix some typos.
7196 (GLR Semantic Actions): New subsection discussing special
7197 considerations because GLR semantic actions might be deferred.
7198 (Actions): Mention look-ahead usage of yylval.
7199 (Actions and Locations): Mention look-ahead usage of yylloc.
7200 (Special Features for Use in Actions): Add YYEOF entry and mention it
7201 in the yychar entry.
7202 In the yychar entry, remove mention of the local yychar case (pure
7203 parser) since this is irrelevant information when writing semantic
7204 actions and since it's already discussed in `Table of Symbols' where
7205 yychar is otherwise described as an external variable.
7206 In the yychar entry, don't call it the `current' look-ahead since it
7207 isn't when semantic actions are deferred.
7208 In the yychar and yyclearin entries, add note about deferred semantic
7209 actions.
7210 Add yylloc and yylval entries discussing look-ahead usage.
7211 (Look-Ahead Tokens): When discussing yychar, don't call it the
7212 `current' look-ahead, and do mention yylval and yylloc.
7213 (Error Recovery): Cross-reference `Action Features' when mentioning
7214 yyclearin.
7215 (Table of Symbols): In the yychar entry, don't call it the `current'
7216 look-ahead.
7217 In the yylloc and yylval entries, mention look-ahead usage.
7218
7219 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7220
7221 * tests/glr-regression.at: Update copyright year to 2006.
7222
7223 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7224
7225 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
7226 use during nondeterministic operation to track which stacks have
7227 actually needed the current lookahead.
7228 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
7229 Allocate, deallocate, resize, and otherwise shuffle space for
7230 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
7231 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
7232 appropriately during nondeterministic operation.
7233 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
7234 members to store the current lookahead to be used by the deferred
7235 user action.
7236 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
7237 from which the RHS is taken. Set the lookahead members of the new
7238 yySemanticOption according to the lookahead status for stack yyk.
7239 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
7240 yyaddDeferredAction.
7241 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
7242 members of yySemanticOption before invoking yyuserAction, and then set
7243 them back to their current values afterward.
7244 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
7245 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
7246 * tests/glr-regression.at: Remove `.' from the ends of recent test case
7247 titles for consistency.
7248 (Leaked merged semantic value if user action cuts parse): In order to
7249 suppress lint warnings, use arguments in merge function, and assign
7250 char value < 128 in main.
7251 (Incorrect lookahead during deterministic GLR): New test case.
7252 (Incorrect lookahead during nondeterministic GLR): New test case.
7253
7254 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7255
7256 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
7257 !yyvaluep as signal that no semantic value is available to print.
7258 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
7259 to print a semantic value.
7260
7261 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7262
7263 * tests/glr-regression.at: For consistency with my newer test cases,
7264 don't thank myself.
7265
7266 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7267
7268 * data/glr.c (yyresolveValue): When merging semantic options, if at
7269 least one user action succeeds but a later one cuts the parse, then
7270 destroy the semantic value before returning rather than leaking it.
7271 (yyresolveStates): If a user action cuts the parse and thus
7272 yyresolveValue fails, ignore the (unset) semantic value rather than
7273 corrupting the yyGLRState, and empty the semantic options list since
7274 the user actions should have called all necessary destructors.
7275 Simplify code with YYCHK.
7276 * tests/glr-regression.at (Corrupted semantic options if user action
7277 cuts parse): New test case.
7278 (Undesirable destructors if user action cuts parse): New test case.
7279 Before applying any of this patch, this test case never actually failed
7280 for me... but only because the corrupted semantic options usually
7281 masked this bug.
7282 (Leaked merged semantic value if user action cuts parse): New test
7283 case.
7284
7285 2006-01-05 Akim Demaille <akim@epita.fr>
7286
7287 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
7288
7289 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
7290
7291 * data/c.m4 (b4_c_modern): New macro, with a new provision for
7292 _MSC_VER. Problem reported by Cenzato Marco.
7293 (b4_c_function_def): Use it.
7294 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
7295 b4_c_modern.
7296 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
7297 than rolling our own.
7298
7299 2006-01-04 Akim Demaille <akim@epita.fr>
7300
7301 Also warn about non-used mid-rule values.
7302 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
7303 member.
7304 (symbol_list_new): Adjust.
7305 * src/reader.c (symbol_typed_p): New.
7306 (grammar_rule_check): Use it.
7307 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
7308 Check its rule.
7309 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
7310 Use it.
7311 * tests/actions.at (Exotic Dollars): Adjust.
7312
7313 2006-01-04 Akim Demaille <akim@epita.fr>
7314
7315 * src/reader.c (grammar_midrule_action): If $$ is set in a
7316 mid-rule, move the `used' bit to its lhs.
7317 * tests/input.at (Unused values): New.
7318 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7319
7320 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7321
7322 * doc/bison.texinfo (Bison Options): Say more accurately what
7323 --yacc does.
7324 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7325 about declarations in the grammar when in Yacc mode, as POSIX does
7326 not require a diagnostic when the grammar uses extensions.
7327
7328 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7329
7330 Warn about dubious constructions like "%token T T".
7331 Reported by twlevo.
7332 * src/symtab.h (struct symbol.declared): New member.
7333 * src/symtab.c (symbol_new): Initialize it to false.
7334 (symbol_class_set): New arg DECLARING, specifying whether
7335 this is a declaration that we want to warn about, if there
7336 is more than one of them. All uses changed.
7337
7338 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7339 Allow multiple %union directives, whose contents concatenate.
7340 * src/parse-gram.y (grammar_declaration): Likewise.
7341 Use muscle_code_grow, so that we don't need stype_line any more.
7342 All uses changed.
7343
7344 * src/muscle_tab.c (muscle_grow): Fix comment.
7345
7346 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7347 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7348 Update copyright year to 2006.
7349
7350 2006-01-03 Akim Demaille <akim@epita.fr>
7351
7352 Have glr.cc pass (some of) the calc.at tests.
7353 * data/glr.cc (b4_parse_param_orig): New.
7354 (b4_parse_param): Improve its definition, and bound it more
7355 clearly in the skeleton.
7356 (b4_epilogue): Append, instead of prepending, in order to keep
7357 #line consistency.
7358 Simplify the generation of auxiliary functions: locations and
7359 purity are mandated.
7360 (b4_global_tokens_and_yystype): Honor it.
7361 * data/location.cc (c++.m4): Don't include it.
7362 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7363 and AT_SKEL_CC_IF.
7364 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7365 AT_LALR1_CC_IF.
7366 Be sure to initialize the first position's filename.
7367 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7368 mandated anyway.
7369 (AT_CHECK_CALC_GLR_CC): New.
7370 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7371
7372 2006-01-02 Akim Demaille <akim@epita.fr>
7373
7374 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7375 c.m4.
7376 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
7377 * data/glr.cc: Do not include stack.hh.
7378
7379 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7380
7381 * data/glr.c: Reformat whitespace with tabs.
7382 (b4_lpure_formals): Remove this unused m4 macro.
7383 * tests/cxx-type.at: Reformat whitespace with tabs.
7384 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7385 since it's a member. Rename type to isNterm for clarity.
7386
7387 2005-12-29 Akim <akim@sulaco.local>
7388
7389 Let glr.cc catch up with symbol_value_print.
7390 * data/glr.cc (b4_yysymprint_generate): Replace by...
7391 (b4_yy_symbol_print_generate): this.
7392 (yy_symbol_print, yy_symbol_value_print): Declare them.
7393
7394 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7395
7396 * src/location.h (boundary): Note that a line or column equal
7397 to INT_MAX indicates an overflow.
7398 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7399 (rule_length_overflow, increment_rule_length, add_column_width):
7400 New functions.
7401 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7402 (<SC_BRACED_CODE>"}"):
7403 Use increment_rule_length rather than incrementing it by hand.
7404 (adjust_location, handle_syncline): Diagnose overflow.
7405 (handle_action_dollar, handle_action_at):
7406 Fix bug with monstrosities like $-2147483648.
7407 Remove now-unnecessary checks.
7408 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7409 (convert_ucn_to_byte): Verify assumptions.
7410 (handle_syncline): New arg LOC. All callers changed.
7411 Don't store through a value derived from char const * pointer.
7412
7413 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7414 GCC warnings.
7415
7416 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7417
7418 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7419 Remove unnecessary forward static decls.
7420
7421 2005-12-27 Akim Demaille <akim@epita.fr>
7422
7423 * src/reader.c (grammar_current_rule_check): Also check that $$
7424 is used.
7425 Take the rule to check as argument, hence rename as...
7426 (grammar_rule_check): this.
7427 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7428 Rename as...
7429 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7430 (grammar_midrule_action, grammar_symbol_append): Now static.
7431 * tests/torture.at (input): Don't rely on the default action
7432 being always performed.
7433 * tests/calc.at: "Set" $$ even when the action is "cut" with
7434 YYERROR or other.
7435 * tests/actions.at (Exotic Dollars): Instead of using unused
7436 values, check that the warning is issued.
7437
7438 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7439
7440 * NEWS: Improve wording for unused-value warnings.
7441
7442 2005-12-22 Akim Demaille <akim@epita.fr>
7443
7444 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7445 (b4_yysymprint_generate): Rename as...
7446 (b4_yy_symbol_print_generate): this.
7447 Generate yy_symbol_print instead of yysymprint.
7448 Generate also yy_symbol_value_print, and use it.
7449
7450 2005-12-22 Akim Demaille <akim@epita.fr>
7451
7452 * NEWS: Warn about unused values.
7453 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7454 a `used' member.
7455 (symbol_list_n_get, symbol_list_n_used_set): New.
7456 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7457 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7458 * src/reader.c (grammar_current_rule_check): Check that values are
7459 used.
7460 * src/symtab.c (symbol_print): Accept 0.
7461 * tests/existing.at: Remove the type information.
7462 Empty the actions.
7463 Remove useless actions (beware of mid-rule actions: perl -000
7464 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7465 * tests/actions.at (Exotic Dollars): Use unused values.
7466 * tests/calc.at: Likewise.
7467 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7468 Likewise.
7469
7470 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7471 rule_useful_p.
7472
7473 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7474
7475 Undo 2005-12-01 tentative license wording change. The wording is
7476 still being reviewed by the lawyers, and we don't want to wait for
7477 them before publishing a test release. For now, revert to the
7478 previous wording.
7479 * NEWS: Undo 2005-12-01 change.
7480 * data/glr.c: Revert to previous license wording.
7481 * data/glr.cc: Likewise.
7482 * data/lalr1.cc: Likewise.
7483 * data/location.cc: Likewise.
7484 * data/yacc.c: Likewise.
7485
7486 * NEWS: Reword %destructor vs YYABORT etc.
7487 * data/glr.c: Use American spacing, for consistency.
7488 * data/glr.cc: Likewise.
7489 * data/lalr1.cc: Likewise.
7490 * data/yacc.c: Likewise.
7491 * data/yacc.c: Reformat comments slightly.
7492 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7493 for consistency. Fix some spelling errors and reword recently-included
7494 text slightly.
7495 * tests/cxx-type.at: Cast results of malloc, for C++.
7496
7497 2005-12-21 Joel E. Denny <address@hidden>
7498
7499 * tests/cxx-type.at: Construct a tree, count the parents of shared
7500 nodes, and free each node once and only once. Previously, the memory
7501 for semantic values was leaked instead.
7502
7503 2005-12-21 Joel E. Denny <address@hidden>
7504
7505 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7506 (yylval, yylloc): If pure, #define to yystackp->yyval and
7507 yystackp->yyloc similar to yychar and yynerrs.
7508 (yyparse): If pure, remove local yylval and yylloc. Add local
7509 yystackp to accommodate pure definitions of yylval and yylloc.
7510 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7511 yylvalp and yyllocp to &yylval and &yylloc.
7512 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7513 namespace. Previously, nerrs and char were missing, but lval and lloc
7514 weren't necessary.
7515 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7516 yylvalp and yyllocp parameters since, if pure, these are now always
7517 accessible through yystackp. If not pure, they are still accessible
7518 globally.
7519 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7520 `if (YYID (N))' to pacify lint.
7521
7522 2005-12-21 Akim Demaille <akim@epita.fr>
7523
7524 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7525 destroy the RHS symbols of a rule.
7526 * data/yacc.c (yylen): Initialize to 0.
7527 Keep its value to the number of items to possibly shift.
7528 In particular, a regular successful parse that ends on YYFINAL by
7529 a (internal) YYACCEPT must not have yylen != 0.
7530 (yyerrorlab, yyreturn): Pop the RHS.
7531 Reorder a bit to emphasize the `shifting' bits of code.
7532 (YYPOPSTACK): Now accept a number of items to pop.
7533 * data/lalr1.cc: Likewise.
7534 * data/glr.c: Formatting changes.
7535 Use goto instead of fall through.
7536 * doc/bison.texinfo (Destructor Decl): Complete.
7537
7538 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7539
7540 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7541 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7542 * djgpp/config.bat: Replace every occurence of the file name
7543 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7544 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7545 * djgpp/config.sed: Replace every occurence of the file name
7546 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7547 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7548 * djgpp/djunpack.bat: DJGPP specific file.
7549 * djgpp/fnchange.lst: DJGPP specific file.
7550 * djgpp/README.in: Add new information about how to unpack the bison
7551 source on MSDOS and other systems which have 8.3 file name restrictions
7552 using djunpack.bat and fnchange.lst.
7553
7554 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7555
7556 * bootstrap (build_cvs_prefix): Remove; unused.
7557 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7558 when getting gnulib.
7559
7560 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7561
7562 * data/glr.c: Reorder typedef declarations for structs to match order
7563 of struct declarations.
7564 Rename yystack everywhere to yystackp except in yyparse where it's not
7565 a pointer.
7566 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7567 consistency.
7568 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7569 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7570 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7571 lint.
7572
7573 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7574
7575 * tests/sets.at (Accept): Fix typos in regular expression used to
7576 sed out the final state number.
7577
7578 Work around portability problem on Solaris 10: flex-generated
7579 files include <stdio.h> before <config.h>, which messes up
7580 because the latter defines __EXTENSIONS__. Address the problem
7581 by creating two new little files that include <config.h> first,
7582 then include the flex-generated files. Rewrite everyone else
7583 to include <config.h> first, as well.
7584 * lib/timevar.c: Always include "config.h".
7585 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7586 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7587 (EXTRA_bison_SOURCES): New macro.
7588 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7589 * src/system.h: Don't include config.h.
7590 * src/LR0.c: Include <config.h> first.
7591 * src/assoc.c: Likewise.
7592 * src/closure.c: Likewise.
7593 * src/complain.c: Likewise.
7594 * src/conflicts.c: Likewise.
7595 * src/derives.c: Likewise.
7596 * src/files.c: Likewise.
7597 * src/getargs.c: Likewise.
7598 * src/gram.c: Likewise.
7599 * src/lalr.c: Likewise.
7600 * src/location.c: Likewise.
7601 * src/main.c: Likewise.
7602 * src/muscle_tab.c: Likewise.
7603 * src/nullable.c: Likewise.
7604 * src/output.c: Likewise.
7605 * src/parse-gram.y: Likewise.
7606 * src/print.c: Likewise.
7607 * src/print_graph.c: Likewise.
7608 * src/reader.c: Likewise.
7609 * src/reduce.c: Likewise.
7610 * src/relation.c: Likewise.
7611 * src/state.c: Likewise.
7612 * src/symlist.c: Likewise.
7613 * src/symtab.c: Likewise.
7614 * src/tables.c: Likewise.
7615 * src/uniqstr.c: Likewise.
7616 * src/vcg.c: Likewise.
7617
7618 * src/parse-gram.y: Fix minor problems uncovered by lint.
7619 (current_lhs, current_lhs_location): Now static.
7620 (current_assoc): Remove unused variable.
7621
7622 Cleanups so that Bison-generated parsers have less lint.
7623 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7624 Prepend /*ARGSUSED*/, for lint's sake.
7625 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7626 definition if 'lint' is defined.
7627 (YYID): New macro (or function, if lint).
7628 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7629 * data/yacc.c: Likewise.
7630 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7631 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7632 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7633 is C++ only.
7634 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7635 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7636 Use YYID(0) rather than 0, for lint.
7637 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7638 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7639
7640 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7641
7642 * tests/glr-regression.at
7643 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7644 Close memory leak reported by twlevo.
7645
7646 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7647
7648 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7649 all stacks.
7650 (yyparse): Iterate another stack in order to call user destructors.
7651 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7652 New test case.
7653 (Duplicated user destructor for lookahead): This test now is expected
7654 to succeed.
7655
7656 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7657
7658 * NEWS: Document the following change.
7659 * data/yacc.c: Say "parser skeleton" rather than "file", since
7660 it's no longer just a file.
7661 * data/glr.c: Grant a special exception for C GLR parsers, that
7662 reads like the already-existing exception for C LALR(1) parsers.
7663 * data/glr.cc: Likewise.
7664 * data/lalr1.cc: Likewise.
7665 * data/location.cc: Likewise.
7666 * data/yacc.c: Reword the "written by" statement to clarify that
7667 it was the parser skeleton, not the entire output file.
7668 * data/glr.c: Written by Paul Hilfinger.
7669 * data/glr.cc: Written by Akim Demaille.
7670 * data/lalr1.cc: Likewise.
7671
7672 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
7673
7674 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
7675 Fix typos in previous change that broke 'make check'.
7676 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
7677 supported in C.
7678 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
7679 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
7680 We can revert this once things settle down.
7681
7682 * src/conflicts.c (conflicts_print): Don't print file name twice
7683 when %expect fails because there were no conflicts.
7684 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
7685 change.
7686 * tests/conflicts.at (%expect not enough, %expect too much):
7687 (%expect with reduce conflicts): Adjust to new behavior.
7688
7689 2005-11-18 Akim Demaille <akim@epita.fr>
7690
7691 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
7692 errors.
7693 * NEWS: Document this.
7694 * doc/bison.texinfo (Expect Decl): Likewise.
7695
7696 2005-11-16 Akim Demaille <akim@epita.fr>
7697
7698 Generalize the display of semantic values and locations in traces.
7699 * data/glr.c (yy_reduce_print): Fix indices (again).
7700 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
7701 literal integers.
7702 * data/lalr1.cc (yyreduce_print): Rename as...
7703 (yy_reduce_print): this.
7704 Display values and locations.
7705 * data/yacc.c (yy_reduce_print): Likewise.
7706 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
7707 (yysymprint): Move higher to be visible from yy_reduce_print).
7708 (yyparse): Adjust.
7709 * tests/calc.at: Adjust the expected length of the traces.
7710
7711 2005-11-14 Akim Demaille <akim@epita.fr>
7712
7713 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
7714 from 1 to N, while values and location start at 0.
7715 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
7716
7717 2005-11-14 Akim Demaille <akim@epita.fr>
7718
7719 * data/glr.c (yy_reduce_print): Fix the $ number.
7720
7721 2005-11-14 Akim Demaille <akim@epita.fr>
7722
7723 "Use" parse parameters.
7724 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
7725 * data/glr.c, data/glr.cc: Use them.
7726 * data/glr.c (YYUSE): Have a C++ definition that supports
7727 non-pointer types.
7728
7729 2005-11-14 Akim Demaille <akim@epita.fr>
7730
7731 * data/glr.c (yyexpandGLRStack): Declare only if defined.
7732
7733 2005-11-14 Akim Demaille <akim@epita.fr>
7734
7735 * data/glr.cc: New.
7736 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
7737
7738 2005-11-12 Akim Demaille <akim@epita.fr>
7739
7740 Let position and location be PODs.
7741 * data/location.cc (position::initialize, location::initialize): New.
7742 (position::position, location::location): Define only if
7743 b4_location_constructors is defined.
7744 * data/lalr1.cc (b4_location_constructors): Define it for backward
7745 compatibility.
7746 * doc/bison.texinfo (Initial Action Decl): Use initialize.
7747
7748 2005-11-12 Akim Demaille <akim@epita.fr>
7749
7750 * data/lalr1.cc: Move the body of the ctor and dtor into the
7751 parser file (instead of the header).
7752 Wrap the implementations in a "namespace yy".
7753
7754 2005-11-12 Akim Demaille <akim@epita.fr>
7755
7756 Have glr.c include its header file when created.
7757 * data/glr.c (b4_shared_declarations): New.
7758 Output them verbatim in the parser if !%defines, otherwise
7759 output then in the header file, and include it instead.
7760
7761 2005-11-11 Akim Demaille <akim@epita.fr>
7762
7763 * data/glr.c: Comment changes.
7764
7765 2005-11-11 Akim Demaille <akim@epita.fr>
7766
7767 When yydebug, report semantic and location values for reductions.
7768 * data/glr.c (yy_reduce_print): Report the semantic values and the
7769 locations.
7770 (YY_REDUCE_PRINT): Adjust.
7771 (yyglrReduce): Use them.
7772 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
7773 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
7774 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
7775 traces.
7776
7777 2005-11-10 Akim Demaille <akim@epita.fr>
7778
7779 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
7780 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
7781 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
7782
7783 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
7784
7785 * m4/cxx.m4, examples/Makefile.am: Don't build
7786 examples/calc++ if no C++ compiler is available. (trivial change)
7787
7788 2005-11-09 Akim Demaille <akim@epita.fr>
7789
7790 * src/scan-skel.l: Use a couple of asserts.
7791
7792 2005-11-03 Akim Demaille <akim@epita.fr>
7793
7794 In some (weird) cases, the final state number is incorrect.
7795 Reported by Alexandre Duret-Lutz.
7796 * src/LR0.c (state_list_append): Remove the computation of
7797 final_state.
7798 (save_reductions): Do it here.
7799 (get_state): Alpha conversion.
7800 (generate_states): Use a for loop.
7801 * src/gram.h (item_number_is_rule_number)
7802 (item_number_is_symbol_number): New.
7803 * src/state.c: Use assert.
7804 * src/system.h: Include assert.h.
7805 * tests/sets.at (Accept): New.
7806
7807 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7808
7809 * data/glr.c (yyfill): Adjust comment.
7810 (yyresolveAction): Initialize default location properly
7811 for empty right-hand sides.
7812 (yydoAction): Ditto.
7813 Add comment explaining apparently dead code.
7814 * tests/glr-regression.at
7815 (Incorrectly initialized location for empty right-hand side in GLR):
7816 New test.
7817
7818 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
7819
7820 * bootstrap (cleanup_gnulib): New function. Use it to clean up
7821 gnulib when interrupted. This fixes some race conditions and
7822 works around some portability problems (one noted by Paul
7823 Hilfinger).
7824
7825 2005-10-22 Akim <akim@epita.fr>
7826
7827 * Makefile.cfg: Adjust to config -> build-aux.
7828 Reported by twledo.
7829
7830 2005-10-21 Akim Demaille <akim@epita.fr>
7831
7832 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
7833 the %parse-params.
7834 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
7835 * data/yacc.c (b4_Pure_if): Rename as...
7836 (b4_yacc_pure_if): this.
7837 (YY_SYMBOL_PRINT, yyparse): Adjust.
7838 * doc/bison.texinfo: Formatting changes.
7839
7840 2005-10-21 Akim Demaille <akim@epita.fr>
7841
7842 Finish the transition config -> build-aux.
7843 * configure.ac, Makefile.am: Use build-aux.
7844 * config/prev-version, config/announce-gen, config/Makefile.am:
7845 Move to...
7846 * build-aux/prev-version, build-aux/announce-gen,
7847 * build-aux/Makefile.am: here.
7848
7849 2005-10-14 Akim Demaille <akim@epita.fr>
7850
7851 * examples/calc++/test: Use set -x only when VERBOSE.
7852
7853 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
7854
7855 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
7856 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
7857
7858 2005-10-13 Akim Demaille <akim@epita.fr>
7859
7860 * src/scan-skel.l: Output the base name parts of the parser and
7861 header file names.
7862 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7863 additional checks.
7864 Use this to exercise C++ outputs in subdirs.
7865 Reported by Oleg Smolsky.
7866
7867 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
7868
7869 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
7870 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
7871 Problem reported by John P. Hartmann.
7872 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
7873 already defined it.
7874
7875 2005-10-12 Akim Demaille <akim@epita.fr>
7876
7877 * src/parse-gram.y (version_check): Exit 63 to please missing
7878 (stands for "version mismatch).
7879 * tests/input.at, doc/bison.texinfo: Adjust.
7880
7881 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
7882
7883 Work around portability problems with Visual Age C compiler
7884 (xlc and xlC_r) reported by John P. Hartmann.
7885 * data/location.cc (initial_column, initial_line): Remove.
7886 All uses replaced by 0 and 1.
7887 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
7888 that xlc complains about.
7889 * src/scan-skel.l (skel_wrap): Likewise.
7890 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
7891 as __STDC__.
7892 * data/yacc.c (YYMODERN_C): New macro, which also looks at
7893 __STDC_VERSION__. Use it everywhere instead of looking at
7894 __STDC__ and __cplusplus.
7895
7896 2005-10-10 Akim Demaille <akim@epita.fr>
7897
7898 * examples/calc++/test: Be quiet unless VERBOSE.
7899
7900 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
7901
7902 * data/c.m4 (yydestruct, yysymprint):
7903 Use YYUSE instead of casting to void.
7904 * data/glr.c (YYUSE): New macro.
7905 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7906 Use it instead of rolling our own.
7907 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7908 (YYCHK1):
7909 Use /*CONSTCOND*/ to suppress lint warnings.
7910 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7911 (YY_STACK_PRINT): Use 'false' not '0'.
7912 (YYUSE): New macro.
7913 (yysymprint_, yydestruct_): Use it instead of rolling our own.
7914 * data/yacc.c (YYUSE): New macro.
7915 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
7916 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
7917 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
7918
7919
7920 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
7921 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
7922
7923 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
7924
7925 Undo the parts of the unlocked-I/O change that substituted
7926 putc or puts for printf. This might hurt performance a bit,
7927 but some people prefer the printf style.
7928 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
7929 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
7930 All uses replaced by YYFPRINTF and YYDPRINTF.
7931 * data/yacc.c: Likewise.
7932 * lib/bitset.c (bitset_print): Likewise.
7933 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
7934 putc and puts.
7935 * lib/lbitset.c (debug_lbitset): Likewise.
7936 * src/closure.c (print_firsts, print_fderives): Likewise.
7937 * src/gram.c (grammar_dump): Likewise.
7938 * src/lalr.c (look_ahead_tokens_print): Likewise.
7939 * src/output.c (escaped_output): Likewise.
7940 (user_actions_output): Break apart two printfs.
7941 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
7942 * src/reduce.c (reduce_print): Likewise.
7943 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7944 * src/system.h: Include unlocked-io.h rathe than stdio.h.
7945
7946 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7947 Use assignments rather than casts-to-void to suppress
7948 unused-variable warnings. This pacifies 'lint'.
7949 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
7950 unused-variable warnings.
7951
7952 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7953
7954 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7955
7956 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
7957
7958 Use unlocked I/O for a minor performance improvement on hosts like
7959 GNU/Linux and Solaris that support unlocked I/O. The basic idea
7960 is to use the gnlib unlocked-io module, and to prefer putc and
7961 puts to printf when either will work (since the latter doesn't
7962 come in an unlocked flavor).
7963 * bootstrap (gnulib_modules): Add unlocked-io.
7964 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
7965 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
7966 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
7967 and similarly for puts and putc and printf.
7968 * data/yacc.c: Likewise.
7969 * lib/bitset.c (bitset_print): Likewise.
7970 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
7971 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
7972 to printf.
7973 * lib/lbitset.c (debug_lbitset): Likewise.
7974 * src/closure.c (print_firsts, print_fderives): Likewise.
7975 * src/gram.c (grammar_dump): Likewise.
7976 * src/lalr.c (look_ahead_tokens_print): Likewise.
7977 * src/output.c (escaped_output): Likewise.
7978 (user_actions_output): Coalesce two printfs.
7979 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
7980 * src/reduce.c (reduce_print): Likewise.
7981 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7982 * src/system.h: Include unlocked-io.h rather than stdio.h.
7983
7984 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
7985 this confuses xgettext.
7986
7987 2005-10-02 Akim Demaille <akim@epita.fr>
7988
7989 * bootstrap (gnulib_modules): Add strverscmp.
7990 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
7991 * m4/.cvsignore: Add strverscmp.m4.
7992 * src/parse-gram.y (%require): New token, new rule.
7993 (version_check): New.
7994 * src/scan-gram.l (%require): Adjust.
7995 * tests/input.at (AT_REQUIRE): New.
7996 Use it.
7997 * doc/bison.texinfo (Require Decl): New.
7998 (Calc++ Parser): Use %require.
7999
8000 2005-10-02 Akim Demaille <akim@epita.fr>
8001
8002 * data/location.cc: New.
8003
8004 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
8005 Akim Demaille <akim@epita.fr>
8006
8007 Make sure -odir/foo.cc creates dir/location.hh etc.
8008 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
8009 (spec_file_prefix, spec_verbose_file, spec_graph_file)
8010 (spec_defines_file): Now const.
8011 (dir_prefix): New.
8012 (short_base_name): Remove.
8013 * src/files.c: Adjust.
8014 (dirname.h): Include.
8015 (base_name): Don't prototype it.
8016 (finput): Remove, duplicates gram_in.
8017 (full_base_name, short_base_name): Replace by...
8018 (all_but_ext, all_but_tab_ext): these.
8019 (compute_base_names): Rename as...
8020 (compute_file_name_parts): this.
8021 Update to compute the new variables, including dir_prefix.
8022 Adjust dependencies.
8023 * src/output.c (prepare): Output them.
8024 * src/reader.c: Adjust to use gram_in, not finput.
8025 * src/scan-skel.l (@dir_prefix@): New.
8026
8027 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8028
8029 * lib/subpipe.c: New function end_of_output_subpipe() added
8030 to allow support for non-posix systems. This is a no-op function
8031 for posix systems.
8032
8033 * lib/subpipe.h: New function end_of_output_subpipe() added
8034 to allow support for non-posix systems. This is a no-op function
8035 for posix systems.
8036
8037 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
8038 handle the lack of pipe/fork functionality on non-posix systems.
8039
8040 * djgpp/Makefile.maint: DJGPP specific file.
8041
8042 * djgpp/README.in: DJGPP specific file.
8043
8044 * djgpp/config.bat: DJGPP specific configuration file.
8045
8046 * djgpp/config.sed: DJGPP specific configuration file.
8047
8048 * djgpp/config.site: DJGPP specific configuration file.
8049
8050 * djgpp/config_h.sed: DJGPP specific configuration file.
8051
8052 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
8053
8054 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
8055
8056 2005-10-02 Akim Demaille <akim@epita.fr>
8057
8058 * data/location.cc: New, extract from...
8059 * data/lalr1.cc: here.
8060 (location.hh): Include it after the user prologue, in case the
8061 filename type is defined by the user.
8062 Forward declation location and position before the pre-prologue.
8063 (yyresult_): Rename as...
8064 (yyresult): this, it's a local variable, not an attribute.
8065 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
8066
8067 2005-10-01 Akim Demaille <akim@epita.fr>
8068
8069 * examples/extexi: Restore the #line generation.
8070
8071 2005-09-30 Akim Demaille <akim@epita.fr>,
8072 Alexandre Duret-Lutz <adl@gnu.org>
8073
8074 Move the token type and YYSTYPE in the parser class.
8075 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
8076 (parser::token): New, from the moved free definition of tokens.
8077 (parser::semantic_value): Now a full definition instead of an
8078 indirection to YYSTYPE.
8079 (b4_post_prologue): No longer included in the header file, but
8080 in the implementation file.
8081 * doc/bison.texi (C+ Language Interface): Update.
8082 * src/parse-gram.y: Support unary %define.
8083 * tests/actions.at: Define global_tokens_and_yystype for backward
8084 compatibility until we update the tests.
8085 * tests/calc.at: Idem.
8086 (first_line, first_column, last_line, last_column): Define for lalr1.cc
8087 to simplify the code.
8088
8089 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
8090
8091 Port to SunOS 4.1.4, which lacks strtoul and strerror.
8092 Ah, the good old days! Problem reported by Peter Klein.
8093 * bootstrap (gnulib_modules): Add strerror, strtoul.
8094 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
8095 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
8096
8097 2005-09-29 Akim Demaille <akim@epita.fr>
8098
8099 * data/c.m4 (b4_error_verbose_if): New.
8100 * data/lalr1.cc: Use it.
8101 (YYERROR_VERBOSE_IF): Remove.
8102 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
8103 parser members, replaced by...
8104 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
8105 local variables.
8106 (yysyntax_error_): Takes the state number as argument.
8107 (yyreduce_print_): Use the argument yyrule, not the former
8108 attribute yyn_.
8109
8110 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
8111
8112 * bootstrap (gnulib_modules): Add verify.
8113 * lib/.cvsignore: Add verify.h.
8114 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
8115 * src/system.h (verify): Remove.
8116 Include verify.h instead.
8117 * src/tables.c (tables_generate): Use new API for 'verify'.
8118
8119 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
8120
8121 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
8122 local variables whose names begin with 'yy'.
8123 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
8124 Trivial changes from Joel E. Denny.
8125
8126 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
8127 it itself.
8128 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
8129 don't use alloca any more.
8130
8131 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
8132 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
8133 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
8134 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
8135 to match yacc.c, to test more hosts.
8136
8137 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
8138
8139 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
8140 doesn't affect behavior.
8141 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
8142 Solaris, AIX, MSC.
8143 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
8144 This works a bit better with glibc, if user code has already included
8145 stdlib.h.
8146 * doc/bison.texinfo (Bison Parser): Document that users can't
8147 arbitrarily use malloc and free for other purposes. Document
8148 that <alloca.h> and <malloc.h> might be included.
8149 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
8150 user must declare alloca.
8151
8152 * HACKING (release): Forwarn the Translation Project about
8153 stable releses.
8154
8155 2005-09-20 Akim Demaille <akim@epita.fr>
8156
8157 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
8158
8159 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
8160
8161 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
8162 (YYSTACK_ALLOC_MAXIMUM): Use it.
8163 (yysyntax_error): New function.
8164 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
8165 multiple syntax errors are reported, and alloca is being used.
8166 Instead, reallocate buffers twice as big each time, so that
8167 we waste at most half the allocated memory. Start with a small
8168 (128-byte) buffer that will suffice in most cases anyway.
8169 Use yysyntax_error to do most of the work.
8170
8171 * doc/bison.texinfo (Error Reporting, Table of Symbols):
8172 yynerrs is the number of errors reported, not the number of
8173 errors encountered.
8174
8175 * tests/glr-regression.at (Duplicated user destructor for lookahead):
8176 Mark it as expected to fail.
8177 Cast result of malloc; problem reported by twlevo@xs4all.nl.
8178 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
8179 Don't start user-code symbols with "yy", to avoid name space problems.
8180
8181 2005-09-19 Akim Demaille <akim@epita.fr>
8182
8183 Remove the traits, failed experiment.
8184 It never proved useful, and anyway because of the current
8185 definition, it was not possible to have several specialization of
8186 this traits, making it useless.
8187 * data/lalr1.cc (yy:traits): Remove.
8188 Inline its definitions in the parser class.
8189
8190 2005-09-19 Akim Demaille <akim@epita.fr>
8191
8192 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
8193 least Mac OSX with a /usr/local install of gettext.
8194
8195 2005-09-19 Akim Demaille <akim@epita.fr>
8196
8197 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
8198 and yytoken for similarity with the other skeletons.
8199
8200 2005-09-19 Akim Demaille <akim@epita.fr>
8201
8202 * NEWS, configure.ac: update version number to 2.1a.
8203
8204 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
8205
8206 * NEWS: Version 2.1.
8207
8208 * NEWS: Remove notice of yytname change, since it was never in an
8209 official release.
8210 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
8211 diagnostic.
8212 * src/output.c (prepare): Likewise.
8213 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
8214 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
8215 is not defined. This is an awful hack, but it's enough for now.
8216 All callers changed.
8217 * tests/glr-regression-at (make_value): Args are const pointers now,
8218 to avoid GCC warning.
8219 (Duplicated user destructor for lookahead): New test. Currently
8220 skipped. It fails on my host but I'm not sure it'll always fail.
8221
8222 2005-09-16 Akim Demaille <akim@epita.fr>
8223
8224 * src/symtab.h (struct symbol): Declare the printer and destructor
8225 as const, to avoid accidental calls to free.
8226 (symbol_destructor_set, symbol_printer_set): Adjust.
8227 * src/symtab.c: Adjust.
8228
8229 2005-09-16 Akim Demaille <akim@epita.fr>
8230
8231 * data/c.m4 (b4_token_enums): New.
8232 (b4_token_defines): Rename as...
8233 (b4_token_enums_defines): this.
8234 (b4_token_defines): New, output only the #defines.
8235 * data/yacc.c, data/glr.c: Adjust.
8236 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
8237 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
8238 as default values.
8239
8240 2005-09-16 Akim Demaille <akim@epita.fr>
8241
8242 * data/lalr1.cc (yylex_): Remove, inline its code.
8243 (yyreport_syntax_error_): Remove, replaced by...
8244 (yysyntax_error_): this which returns a string and leaves to the
8245 caller the call to the users' error function.
8246 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
8247 Move from members of the parser object...
8248 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
8249 to local variables of the parse function.
8250
8251 2005-09-16 Akim Demaille <akim@epita.fr>
8252
8253 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
8254 since it's in Bison's name space.
8255
8256 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
8257
8258 * data/glr.c (yyresolveValue): Add default case to pacify
8259 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
8260
8261 * NEWS: Document when yyparse started to return 2.
8262 * doc/bison.texinfo (Parser Function): Document when yyparse
8263 returns 2.
8264
8265 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
8266 (b4_filename_type): Renamed back from b4_file_name_type. All uses
8267 changed.
8268 (class position): file_name -> filename (reverting). All uses changed.
8269
8270 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
8271
8272 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
8273 do anything if $@ exists. This reverts part of the 2005-07-07
8274 patch.
8275
8276 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
8277
8278 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
8279 contains obsolete information and isn't worth distributing as a
8280 separate file anyway.
8281 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
8282 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
8283 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
8284 (yyparse): Abort if user code uses longjmp to throw an unexpected
8285 value.
8286
8287 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
8288
8289 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
8290 Suggested by twlevo@xs4all.nl.
8291
8292 * data/glr.c (YYCHK1): Do not assume YYE is in range.
8293 This avoids a diagnostic from gcc -Wswitch-enum.
8294 Problem reported by twlevo@xs4all.nl.
8295
8296 * doc/bison.texinfo: Don't use "filename", as per GNU coding
8297 standards. Use "file name" or "file" or "name", depending on
8298 the context.
8299 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
8300 not to hack/foo.tab.c.
8301 (Calc++ Top Level): 2nd arg of main is not const.
8302 * data/glr.c: b4_filename -> b4_file_name.
8303 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
8304 All uses changed.
8305 (class position): filename -> file_name. All uses changed.
8306 * data/yacc.c: b4_filename -> b4_file_name.
8307 * lib/bitset.h: filename -> file_name in local vars.
8308 * lib/bitset_stats.c: Likewise.
8309 * src/files.c: Likewise.
8310 * src/scan-skel.l ("@output ".*\n): Likewise.
8311 * src/files.c (file_name_split): Renamed from filename_split.
8312 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
8313
8314 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8315
8316 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8317 to accommodate latest gnulib.
8318
8319 * tests/glr-regression.at (Duplicate representation of merged trees):
8320 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8321
8322 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8323 needed.
8324
8325 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8326
8327 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8328 All uses changed. Invoke user destructor after an error during a
8329 split parse (trivial change from Joel E. Denny).
8330
8331 * tests/glr-regression.at
8332 (User destructor after an error during a split parse): New test case.
8333 Problem reported by Joel E. Denny in:
8334 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8335
8336 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8337
8338 * README-cvs: Give URLs for recommended tools.
8339 Mention Gzip version problem, and bootstrapping issues.
8340 Remove troubleshooting section, as it's somewhat obsolete.
8341
8342 * bootstrap (no_cache): New var, to accommodate different wget
8343 variants. Use it instead of '-C off'. Problem reported by
8344 twlevo@xs4all.nl.
8345
8346 * data/glr.c (yydestroyStackItem): New function.
8347 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8348 debugging information. Problem reported by Joel E. Denny.
8349
8350 2005-08-25 Akim Demaille <akim@epita.fr>
8351
8352 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8353
8354 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8355
8356 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8357 Don't invoke destructor on unresolved entries.
8358 * tests/glr-regression.at
8359 (User destructor for unresolved GLR semantic value): New test case.
8360 Problem reported by Joel E. Denny in:
8361 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8362
8363 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8364
8365 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8366 Add strnlen.c.
8367 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8368 lib-prefix.m4, po.m4.
8369
8370 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8371 in yydestruct diagnostic, since it might not be an error.
8372 Problem reported by Joel Denny near end of
8373 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8374 * data/lalr1.cc (yyerturn): Likewise.
8375 * data/yacc.c (yyreturn): Likewise.
8376 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8377
8378 * src/files.c: Remove obsolete FIXME comment.
8379
8380 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8381 with the other templates, and to fix bogus run-on messages such
8382 as the one reported at the end of
8383 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8384 All callers changed to avoid the newline.
8385 (yyprocessOneStack): Output two lines rather than one, to accommodate
8386 the above change. This changes the debug output format slightly.
8387
8388 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8389 reported by Joel E. Denny in
8390 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8391 (trivial change).
8392 * tests/glr-regression.at (Duplicate representation of merged trees):
8393 New test, from Joel E. Denny in:
8394 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8395 * THANKS: Add Joel E. Denny.
8396
8397 * configure.ac (AC_INIT): Bump to 2.0c.
8398
8399 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8400
8401 * NEWS: Version 2.0b.
8402
8403 * Makefile.am (SUBDIRS): Put examples before tests, so that
8404 "make check" doesn't finish with "All 1 tests passed".
8405
8406 * tests/regression.at (Token definitions): Don't rely on
8407 AT_PARSER_CHECK for data that contains backslashes. It currently
8408 uses 'echo', and 'echo' isn't portable if its argument contains
8409 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8410 that the byte '\0xff' is not printable in the C locale; it is,
8411 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8412 not printable, so use '\0x81' to test.
8413
8414 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8415 version of GCC, since the macro is used with non-GCC compilers.
8416
8417 Fix core dump reported by Pablo De Napoli in
8418 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8419 * tests/regression.at (Invalid inputs with {}): New test.
8420 * src/parse-gram.y (token_name): Translate type before using
8421 it as an index.
8422
8423 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8424 the user's name space. All uses changed to __attribute__
8425 ((__unused__)).
8426 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8427 Add __attribute__ ((__noreturn__)).
8428
8429 * etc/clcommit: Remove. We weren't using it, and it failed
8430 "make maintainer-distcheck".
8431 * Makefile.maint: Merge from coreutils.
8432 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8433 (syntax-check-rules): Change list of rules as described below.
8434 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8435 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8436 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8437 (sc_trailing_space): New rules.
8438 (sc_xalloc_h_in_src): Remove.
8439 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8440 (sc_space_tab, sc_error_exit_success, sc_changelog):
8441 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8442 (makefile-check, po-check, author_mark_check):
8443 (makefile_path_separator_check, copyright-check):
8444 Use grep -n, to make it easier to find violations.
8445 Use CVS_LIST and CVS_LIST_EXCEPT.
8446 (header_regexp, h_re): Remove.
8447 (dd_c): New macro.
8448 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8449 (my-distcheck): Use more-modern GCC flags.
8450 (signatures, %.asc): Remove.
8451 (rel-files, announcement): Remove signatures.
8452 Restore old updating code, even though we don't use it, so
8453 that we're the same as coreutils.
8454 (alpha, beta, major): Depend on news-date-check.
8455 Make the upload commands.
8456
8457 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8458 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8459 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8460 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8461 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8462 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8463 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8464 * tests/sets.at: Likewise.
8465
8466 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8467 we comment out the Autoconf version number.
8468 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8469 it's error-prone and "make maintainer-distcheck" rejects it.
8470
8471 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8472 Indent calls to "error" to pacify "make maintainer-distcheck",
8473 when the calls are not intended to be translated.
8474 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8475
8476 * src/Makefile.am (DEFS): Use +=, to pacify
8477 "make maintainer-distcheck".
8478 (bison_SOURCES): Add scan-skel.h.
8479 (sc_tight_scope): New rule, from coreutils.
8480
8481 * src/files.c (src_extension, header_extension):
8482 Now static, not extern.
8483 * src/getargs.c (short_options): Likewise.
8484 * src/muscle_tab.c (muscle_table): Likewise.
8485 * src/parse-gram.y (current_class, current_type, current_prec):
8486 Likewise.
8487 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8488 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8489 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8490 void, to avoid warning when NLS is disabled.
8491 * src/output.c: Include scan-skel.h.
8492 (scan_skel): Remove decl, since scan-skel.h does this.
8493 (output_skeleton):
8494 Indent calls to "error" to pacify "make maintainer-distcheck".
8495 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8496 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8497 "make maintainer-distcheck".
8498 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8499 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8500 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8501 (skel_lex_destroy, scan_skel): Move these decls to...
8502 * src/scan-skel.h: New file.
8503 * src/uniqstr.c (uniqstr_assert):
8504 Indent calls to "error" to pacify "make maintainer-distcheck".
8505
8506 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8507 not @VAR@.
8508
8509 * tests/torture.at: Revamp to avoid misuse of atoi that
8510 "make maintainer-distcheck" complained about.
8511
8512 * examples/extexi (message): Don't print a message more than once,
8513 and omit line-number decoration that makes Emacs compile think
8514 that informative messages are worth worrying about.
8515
8516 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8517
8518 * configure.ac: Update version number.
8519
8520 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8521 accidentally.
8522 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8523 autogenerated by the maintainer.
8524 * examples/calc++/.cvsignore: Add *.yy.
8525
8526 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8527 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8528 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8529
8530 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8531
8532 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8533 from maintainer-distcheck about casting the argument of 'free'.
8534
8535 * NEWS: Mention recent yytname changes.
8536 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8537
8538 * bootstrap: For translations that have not yet been upgraded to
8539 the new runtime-po domain, prime the pump by extracting the
8540 relevant strings from the obsolete translations. This code can be
8541 removed once the bison-runtime domain has been translated by each
8542 team.
8543
8544 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8545 now that token names are already quoted.
8546
8547 Fix problem reported by Anthony Heading.
8548 * data/glr.c (YYTOKEN_TABLE): New macro.
8549 (yytname): Define if YYTOKEN_TABLE.
8550 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8551 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8552 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8553 * src/output.c (prepare_symbols): Output token_table_flag.
8554
8555 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8556
8557 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8558 again if the first call fails.
8559
8560 * data/glr.c (yytnamerr): New function.
8561 (yyreportSyntaxError): Use it to dequote most string literals.
8562 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8563 with other skeletons. All uses changed.
8564 (yytnameerr_): New function.
8565 (yyreport_syntax_error): Use it to dequote most string literals.
8566 * data/yacc.c (yytnamerr): New function.
8567 (yyerrlab): Use it to decode most string literals.
8568 * doc/bison.texinfo (Decl Summary, Calling Convention):
8569 Clarify quoting convention of yytname.
8570 * src/output.c (prepare_symbols): Quote all names. This undoes
8571 the 2005-04-17 change, which is now accomplished (mostly) via
8572 changes in the parsers as described above.
8573 * tests/regression.at (Token definitions, Web2c Actions):
8574 Undo most 2005-04-17 change here, too.
8575
8576 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8577
8578 Fix more problems reported by twlevo@xs4all.nl.
8579 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8580 remove trailing spaces. This loses the exit status of ./types,
8581 and isn't needed since ./types shouldn't be emitting trailing
8582 spaces.
8583 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8584 as the stack isn't valid in that case.
8585
8586 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8587 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8588 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8589 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8590 is used.
8591 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8592 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8593 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8594 Likewise.
8595
8596 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8597 overly-picky compilers that reject 'char *foo = "bar";'.
8598
8599 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8600 to FILE * parameter, not to stderr. This fixes a typo introduced
8601 in the 2005-07-12 change.
8602
8603 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8604 warnings from GCC 4.
8605
8606 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8607 (yyglrShiftDefer, yysplitStack):
8608 Remove unused parameters b4_pure_formals. All uses changed.
8609 (yyglrShift): Remove unused parameters b4_user_formals.
8610 All uses changed.
8611 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8612
8613 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8614
8615 Destructor cleanups and regularization among the three skeletons.
8616 * NEWS: Document the behavior changes.
8617 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8618 stack before failing, as the cleanup code will do it for us now.
8619 * data/lalr1.cc (yyerrlab): Likewise.
8620 * data/glr.c (yyparse): Pop everything off the stack before
8621 freeing it, so that destructors get called properly.
8622 * data/lalr1.cc (yyreturn): Likewise.
8623 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8624 This is more consistent.
8625 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8626 why destructors might be called. 1.875 -> 2.1.
8627 (Destructor Decl, Decl Summary, Table of Symbols):
8628 Some English-language cleanups for %destructor.
8629 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8630 Add output line for destructor of start symbol.
8631 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8632 because of that same extra output line.
8633
8634 * NEWS: Document minor wording changes in diagnostics of
8635 Bison-generated parsers.
8636 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8637 Remove unused formals. All uses changed.
8638 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8639 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8640 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8641 Rename yyoverflowab to yyexhaustedlab.
8642 When memory exhaustion occurs during syntax-error reporting,
8643 report it separately rather than in a single diagnostic; this
8644 eases translation.
8645 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8646 (Memory Exhausted): Renamed from Parser Stack Overflow.
8647 Revamp wording slightly to prefer "memory exhaustion".
8648 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8649
8650 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8651
8652 Add i18n support to the GLR skeleton. Partially fix the C++
8653 skeleton; a C++ expert needs to finish this. Remove debugging
8654 msgids; there's little point to having them translated, since they
8655 can be understood only by someone who can read the
8656 (English-language) source code.
8657
8658 Generate runtime-po/bison-runtime.pot automatically, so that we
8659 don't have to worry about garbage getting in that file. We'll
8660 make sure after the next official release that old msgids don't
8661 get lost. See
8662 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
8663
8664 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
8665 Now auto-generated.
8666 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
8667 Fix typos in explanations of the runtime file.
8668 * bootstrap: Change gettext keyword from YYI18N to YY_.
8669 Use standard Makefile.in.in in runtime-po, since we'll arrange
8670 for backward-compatible bison-runtime.po files in a different way.
8671 * data/glr.c (YY_): New macro, from yacc.c.
8672 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
8673 Translate messages intended for users.
8674 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
8675 the wording in the other skeletons. We don't know that the memory
8676 is virtual.
8677 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
8678 Use same method that yacc.c uses.
8679 Don't translate debugging messages.
8680 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
8681 it doesn't work (yet), and requires C++ expertise to fix.
8682 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
8683 Move defn to a more logical place, to be consistent with other
8684 skeletons.
8685 Don't translate debugging messages.
8686 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
8687 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
8688 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
8689 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
8690
8691 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
8692 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
8693 void, not int.
8694 * tests/glr-regression.at (Badly Collapsed GLR States):
8695 Likewise.
8696 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8697 yylex should return 0 at EOF rather than aborting.
8698
8699 Improve tests for stack overflow in GLR parser.
8700 Problem reported by twlevo@xs4all.nl.
8701 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
8702 All uses removed.
8703 (yyStackOverflow): Just longjmp, but with value 2 so that caller
8704 can handle the problem.
8705 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
8706 (yyparse): New local variable yyresult to record the result.
8707 Use result of setjmp to set it, rather than storing itinto
8708 struct.
8709 (yyDone): Remove label.
8710 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
8711 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
8712 if YYABORT is used).
8713 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
8714 yyparse status; put status > 1 into diagnostic.
8715 Check that status==2 works.
8716 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
8717 Use exit status 3 for failure to open (which shouldn't happen).
8718
8719 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
8720
8721 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
8722 1 on syntax error; just let yyparse do its thing.
8723 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
8724 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
8725 (Exploding the Stack Size with Alloca):
8726 (Exploding the Stack Size with Malloc):
8727 Expect exit status 2, not 1, since the parser is supposed to blow
8728 its stack. Problem reported by twlevo@xs4all.nl.
8729
8730 * data/glr.c (yyparse): Don't assume that the initial calls
8731 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
8732 Print a stack-overflow message and fail instead.
8733 Initialize the line-number information before creating the stack,
8734 so that the stack-overflow message can report line zero safely.
8735
8736 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
8737
8738 Fix problems reported by twlevo@xs4all.nl.
8739 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
8740 (yyuserMerge): Provide a default case if b4_mergers is empty.
8741 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
8742 * tests/glr-regression.at
8743 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8744 Add casts to pacify C++ compilers.
8745 * tests/glr-regression.at (Improper merging of GLR delayed action
8746 sets): Declare yylex before using it.
8747 * tests/Makefile.am (maintainer-check-g++): Fix a stray
8748 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
8749 test for valgrind; valgrind is independent of g++.
8750 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
8751 for compatibility with POSIX 1003.1-2001 (if running coreutils).
8752 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
8753 Use a destructor, so that we can expand the stack. Change
8754 YYSTYPE to char * so that we can free it. Cast result of malloc.
8755
8756 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8757
8758 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
8759 a valgrind failure. Problem reported by twlevo@xs4all.nl.
8760
8761 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
8762
8763 * PACKAGING: New file, suggested by Bruno Haible and taken from
8764 similar wording in gettext's PACKAGING file.
8765 * NEWS: Mention PACKAGING.
8766 * Makefile.am (EXTRA_DIST): Add PACKAGING.
8767
8768 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
8769
8770 * NEWS: Document recent i18n improvements.
8771 * bootstrap: Get runtime translations into runtime-po.
8772 Create runtime-po files automatically, if possible.
8773 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
8774 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
8775 does not infringe on the user's name space.
8776 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
8777 * doc/bison.texinfo (Internationalization): Revamp the English
8778 and Texinfo syntax a bit, to try to make it clearer.
8779 (Bison Options, Option Cross Key): Mention --print-localedir.
8780 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
8781 YYENABLE_NLS. Quote a bit more.
8782 * runtime-po/.cvsignore: New file.
8783 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
8784 * runtime-po/Rules-quot: Remove; now created by bootstrap.
8785 * runtime-po/quot.sed: Likewise.
8786 * runtime-po/boldquot.sed: Likewise.
8787 * runtime-po/en@quot.header: Likewise.
8788 * runtime-po/en@boldquot.header: Likewise.
8789 * runtime-po/insert-header.sin: Likewise.
8790 * runtime-po/remove-potcdate.sin: Likewise.
8791 * runtime-po/Makevars: Likewise.
8792 * runtime-po/LINGUAS: Likewise.
8793 * runtime-po/de.po: Likewise; we will rely on the translation project
8794 to maintain this, so "bootstrap" should get it.
8795 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
8796 its value.
8797 * src/main.c (main): Bind the bison-runtime domain, too.
8798
8799 2005-07-12 Bruno Haible <bruno@clisp.org>
8800
8801 * data/yacc.c: Include <libintl.h> when NLS is enabled.
8802 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
8803 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
8804 * runtime-po: New directory.
8805 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
8806 $(DOMAIN).pot-update rule, so that old messages are never dropped.
8807 * runtime-po/Rules-quot: New file, copied from po/.
8808 * runtime-po/quot.sed: Likewise.
8809 * runtime-po/boldquot.sed: Likewise.
8810 * runtime-po/en@quot.header: Likewise.
8811 * runtime-po/en@boldquot.header: Likewise.
8812 * runtime-po/insert-header.sin: Likewise.
8813 * runtime-po/remove-potcdate.sin: Likewise.
8814 * runtime-po/Makevars: New file.
8815 * runtime-po/POTFILES.in: New file.
8816 * runtime-po/LINGUAS: New file.
8817 * runtime-po/bison-runtime.pot: New file.
8818 * runtime-po/de.po: New file.
8819 * m4/bison.m4: New file.
8820 * Makefile.am (SUBDIRS): Add runtime-po.
8821 (aclocaldir, aclocal_DATA): New variables.
8822 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
8823 Define aclocaldir.
8824 * src/getargs.c (usage): Document --print-localedir option.
8825 (PRINT_LOCALEDIR_OPTION): New enum item.
8826 (long_options): Add --print-localedir option.
8827 (getargs): Handle --print-localedir option.
8828 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
8829 (Internationalization): New section.
8830
8831 2005-07-12 Akim Demaille <akim@epita.fr>
8832
8833 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
8834 for consistency with the rest of the code.
8835 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
8836 Add separators.
8837
8838 2005-07-12 Akim Demaille <akim@epita.fr>
8839
8840 * src/parse-gram.y: Use %printer instead of YYPRINT.
8841
8842 2005-07-12 Akim Demaille <akim@epita.fr>
8843
8844 * src/symtab.h, src/symtab.c (symbol_print): New.
8845 * src/symlist.h, src/symlist.c (symbol_list_print): New.
8846 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
8847
8848 2005-07-12 Akim Demaille <akim@epita.fr>
8849
8850 * data/glr.c (b4_syncline): Fix (swap) the definitions of
8851 b4_at_dollar and b4_dollar_dollar.
8852
8853 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
8854
8855 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
8856 and Pennello's paper.
8857
8858 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
8859
8860 * data/yacc.c (yyparse): Undo previous patch. Instead,
8861 set yylsp[0] and yyvsp[0] only if the initial action
8862 sets yylloc and yylval, respectively.
8863
8864 * data/yacc.c (yyparse): In the initial action, set
8865 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
8866 This avoids the use of undefined variables if the initial
8867 action does not set yylloc and/or yylval.
8868
8869 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
8870
8871 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
8872 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
8873 Remove from CVS. These files are automatically generated.
8874 * examples/extexi: Clarify that this file is now part of Bison,
8875 not GNU M4, and that it works with any POSIX-compatible Awk.
8876 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
8877 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
8878 so that we also get calc++-parser.yy. Geneate it.
8879 Use $(AWK), not gawk, since any conforming Awk will do.
8880 Put comment before action, since older 'make' can't handle comment
8881 in action.
8882 $(BUILT_SOURCES): List all built sources, not just some of them.
8883 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
8884 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
8885 $($(calc_sources_generated)): Remove unnecessary test for existence
8886 of target. (This had a shell syntax error anyway; a stray "x".)
8887 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
8888 calc++-parser.yy.
8889 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
8890
8891 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
8892 implied by the other modules.
8893
8894 2005-07-06 Akim Demaille <akim@epita.fr>
8895
8896 Bind examples/calc++ to the package.
8897 * examples/calc++/Makefile: Remove, replaced by...
8898 * examples/calc++/Makefile.am: ... this new file.
8899 * examples/calc++/test: Remove input.
8900 * examples/calc++/compile: Remove.
8901 * examples/Makefile.am: New.
8902 * configure.ac, Makefile.am: Adjust.
8903 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
8904
8905 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
8906
8907 * data/glr.c (yyFail): Drastically simplify; since the format argument
8908 never had any % directives, we can simply pass it to yyerror.
8909 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
8910 be modified later, as that is the usual style in glr.c.
8911 Problems reported by Paul Hilfinger.
8912
8913 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
8914 and size overflow errors.
8915 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
8916 in case the user prolog sets feature-test macros like _GNU_SOURCE.
8917 (YYSIZEMAX): New macro.
8918 (yystpcpy): New function, taken from yacc.c.
8919 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
8920 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
8921 so that we don't have to maintain their signatures.
8922 (yyFail): Check for buffer overflow, by using vsnprintf rather
8923 than vsprintf. Allocate a bigger buffer if possible.
8924 Report an error if buffer allocation fails.
8925 (yyStackOverflow): New function.
8926 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
8927 the initialization was successful. It might fail if storage was
8928 exhausted.
8929 (yyexpandGLRStack): Add more checks for storage allocation failure.
8930 Use yyStackOverflow to report failures.
8931 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
8932 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
8933 Don't assume stack number fits in int.
8934 (yysplitStack): Check for storage allocation failure.
8935 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
8936 can print diagnostics on storage allocation failure. All callers
8937 changed.
8938 (yyresolveValue): Use yybool for boolean.
8939 (yyreportSyntaxError): Check for size-calculation overflow.
8940 This code is taken from yacc.c.
8941 (yyparse): Check for storage allocation errors when allocating
8942 the initial stack.
8943
8944 2005-07-05 Akim Demaille <akim@epita.fr>
8945
8946 Extract calc++ from the documentation.
8947 * doc/bison.texinfo (Calc++): Add the extraction marks.
8948 * examples/extexi: New, from the aborted GNU Programming 2E.
8949 Separate the different paragraph of a file with empty lines.
8950 * examples/Makefile: Use it to extract the whole calc++ example.
8951
8952 2005-06-24 Akim Demaille <akim@epita.fr>
8953
8954 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
8955 class typedefs.
8956
8957 2005-06-22 Akim Demaille <akim@epita.fr>
8958
8959 * doc/bison.texinfo (C++ Language Interface): First stab.
8960 (C++ Parsers): Remove.
8961
8962 2005-06-22 Akim Demaille <akim@epita.fr>
8963
8964 * data/lalr1.cc (yylex_): Honor %lex-param.
8965
8966 2005-06-22 Akim Demaille <akim@epita.fr>
8967
8968 Start a set of simple examples.
8969 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
8970 * examples/calc++/calc++-driver.hh,
8971 * examples/calc++/calc++-parser.yy,
8972 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
8973 * examples/calc++/compile, examples/calc++/test: New.
8974
8975 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
8976
8977 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
8978 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
8979 which stems from the 2005-05-27 patch.
8980
8981 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8982
8983 * data/glr.c: Modify treatment of unused parameters to permit use
8984 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
8985
8986 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
8987
8988 Fix infringement on user name space reported by Janos Zoltan Szabo.
8989 * data/yacc.c (yyparse): strlen -> yystrlen.
8990
8991 2005-05-30 Akim Demaille <akim@epita.fr>
8992
8993 * data/lalr1.cc (_): New.
8994 Translate the various messages.
8995
8996 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
8997
8998 Fix infringement on user name space reported by Bruno Haible.
8999 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
9000 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
9001 the user's name space.
9002 (alloca): Include <stdlib.h> to get it, if it's not built in.
9003 (YYMALLOC, YYFREE): Define only if needed.
9004 (malloc, free): Declare, but only if needed, as this infringes on
9005 the user name space.
9006
9007 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
9008
9009 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
9010 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
9011 with %d format.
9012 * lib/ebitset.c (min, max): Undef before defining.
9013 * lib/vbitset.c (min, max): Likewise.
9014 * lib/subpipe.c (create_subpipe): Save local variables in case
9015 vfork clobbers them.
9016
9017 2005-05-24 Bruno Haible <bruno@clisp.org>
9018
9019 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
9020 error message syntax used by gcc-4.0.
9021
9022 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
9023
9024 * README: Mention m4 1.4.3. Remove obsolete advice about
9025 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
9026
9027 * bootstrap: Remove workaround for problem I encountered with
9028 gettext 0.14.1; it seems to be fixed now.
9029
9030 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
9031
9032 * NEWS: Version 2.0a.
9033
9034 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
9035 the previous change.
9036
9037 Various maintainer cleanups.
9038 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
9039 conftest*, for benefit of CVS commands run at the same time as
9040 "configure". Add build-aux, since "bootstrap" now creates it and
9041 its subfiles.
9042 * Makefile.cfg (move_if_change): Remove.
9043 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
9044 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
9045 (po_repo, do-po-update, po-update, wget_files, get-targets):
9046 (config.guess-url_prefix, config.sub-url_prefix):
9047 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
9048 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
9049 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
9050 Remove.
9051 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
9052 this is now the recommended name.
9053 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
9054 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
9055 ylwrap. These files now go into build-aux.
9056 * config/move-if-change: Remove.
9057 * config/prev-version.txt: Bump from 1.75 to 2.0.
9058
9059 * bootstrap: Add stdio-safer, unistd-safer modules.
9060 Remove m4/glibc2.m4 (introduced by latest gnulib, but
9061 we don't need it).
9062 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
9063 fopen-safer.c, stdio-safer.h, unistd-safer.h.
9064 * lib/subpipe.c: Include "unistd-safer.h".
9065 (create_subpipe): Make sure all the newly-created
9066 file descriptors are > 2, so that diagnostics don't
9067 get sent down them (which might cause Bison to hang, in theory).
9068 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
9069 * src/files.c (xfopen): Use fopen_safer, not fopen.
9070
9071 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
9072 yesterday's yacc.c fix.
9073
9074 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
9075
9076 * data/glr.c, data/lalr1.cc: Update copyright date.
9077
9078 Fix a destructor bug reported by Wolfgang Spraul in
9079 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
9080 * data/yacc.c (yyabortlab): Don't call destructor, and
9081 don't set yychar to EMPTY.
9082 (yyoverflowlab): Don't call destructor.
9083 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
9084 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
9085 since we no longer output the message "discarding lookahead token
9086 end of input ()".
9087
9088 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9089
9090 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
9091 fix a small glitch in debugging output.
9092 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
9093 after YY_SYMBOL_PRINT where needed.
9094
9095 (struct yyGLRState): Add some comments.
9096 (struct yySemanticOption): Add some comments.
9097 (union yyGLRStackItem): Add comment.
9098
9099 (yymergeOptionSets): Correct this to properly perform the union,
9100 avoiding infinite reported by Michael Rosien.
9101 Update comment.
9102
9103 * tests/glr-regression.at: Add test for GLR merging error reported
9104 by M. Rosien.
9105
9106 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
9107
9108 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
9109 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
9110 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
9111 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
9112 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
9113 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
9114 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
9115 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
9116 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
9117 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
9118 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
9119 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
9120 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
9121 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
9122 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
9123 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
9124 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
9125 src/derives.h, src/files.c, src/files.h, src/getargs.c,
9126 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
9127 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
9128 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
9129 src/output.h, src/parse-gram.c, src/parse-gram.h,
9130 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
9131 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
9132 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
9133 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
9134 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
9135 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
9136 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
9137 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
9138 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
9139 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
9140 tests/reduce.at, tests/regression.at, tests/sets.at,
9141 tests/synclines.at, tests/testsuite.at, tests/torture.at:
9142 Update FSF postal mail address.
9143
9144 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
9145
9146 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
9147 Problem reported by Ralf Menzel.
9148
9149 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
9150
9151 * tests/actions.at: Test that stack overflow invokes destructors.
9152 From Marcus Holland-Moritz.
9153 * data/yacc.c (yyerrlab): Move the code that destroys the stack
9154 from here....
9155 (yyreturn): to here. That way, destructors are called properly
9156 even if the stack overflows, or the user calls YYACCEPT or
9157 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
9158 (yyoverflowlab): Destroy the lookahead.
9159
9160 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
9161
9162 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
9163
9164 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
9165
9166 * NEWS: Bison-generated C parsers no longer quote literal strings
9167 associated with tokens.
9168 * src/output.c (prepare_symbols): Don't escape strings,
9169 since users don't want to see C escapes.
9170 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
9171 in diagnostics.
9172 * tests/input.at (Torturing the Scanner): Likewise.
9173 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
9174
9175 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
9176
9177 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
9178 the data size is known to be too small and we can't increase it.
9179 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
9180
9181 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
9182
9183 * src/parse-gram.y: Include quotearg.h.
9184 (string_as_id): Quote $1 before using it as a key, since the
9185 lexer no longer quotes it for us.
9186 (string_content): Don't strip quotes, since lexer no longer
9187 quotes it for us.
9188 * src/scan-gram.l: Include quotearg.h.
9189 ("\""): Omit quote.
9190 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
9191 a key, since the rest of the lexer doesn't quote it.
9192 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
9193 * tests/regression.at (Token definitions): Check for backslashes
9194 in token strings.
9195
9196 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
9197 (YYSIZE_T): Define to unsigned long int when using an older compiler.
9198 (yyparse): Revamp code to generate long syntax error message, to
9199 make it easier to translate, and to avoid problems with arithmetic
9200 overflow. Change "virtual memory" to "memory" in diagnostic, since
9201 we don't know whether the memory is virtual.
9202
9203 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
9204
9205 * NEWS: Bison-generated C parsers now use the _ macro to
9206 translate strings.
9207 * data/yacc.c (_) [!defined _]: New macro.
9208 All English strings wrapped inside this macro.
9209 * doc/bison.texinfo (Bison Parser): Document _.
9210 * po/POTFILES.in: Include src/parse-gram.c, since it now
9211 includes translateable strings that parse-gram.y doesn't.
9212
9213 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
9214
9215 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
9216 reverting the 2004-10-11 change to this function.
9217 (symbol_check_alias_consistency): Don't call symbol_type_set
9218 if the type name is already correct.
9219 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
9220
9221 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
9222
9223 * tests/regression.at (Token definitions): Don't use a token named
9224 c, as that generates a "#define c ..." that runs afoul of buggy
9225 stdlib.h that uses the identifier c as a member of struct
9226 drand48_data. Problem reported by Horst Wente.
9227
9228 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
9229
9230 * bootstrap: Change translation URL from
9231 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
9232 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
9233 redirection glitches. Problem reported by twlevo@xs4all.nl.
9234
9235 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
9236
9237 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
9238 after operands; POSIX says this isn't portable for the c99 command.
9239
9240 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
9241
9242 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
9243 immediately if a data overrun has occurred; this may help us track
9244 down what may be a spurious failure on MacOS.
9245
9246 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
9247
9248 Respond to problems reported by twlevo@xs4all.nl.
9249
9250 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
9251
9252 * src/vcg.h: Comment fix.
9253 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
9254 (G_CMAX): Change to -1 instead of INT_MAX.
9255
9256 * data/yacc.c (yyparse): Omit spaces before #line.
9257
9258 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
9259
9260 * src/tables.c (state_number_to_vector_number): Put it inside an
9261 "#if 0", since it's not currently used. Problem reported by
9262 Roland McGrath.
9263
9264 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
9265
9266 * src/output.c (escaped_output): Renamed from
9267 escaped_file_name_output, since we now use it for symbol tags as
9268 well. All uses changed.
9269 (symbol_destructors_output, symbol_printers_output):
9270 Escape symbol tags too.
9271 Problem reported by Matyas Forstner in
9272 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
9273
9274 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
9275 not needed.
9276 * src/output.c (user_actions_output, token_definitions_output,
9277 symbol_destructors_output, symbol_printers_output): Likewise.
9278 * src/reader.c (prologue_augment): Likewise.
9279 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
9280
9281 * src/vcg.c (output_edge): Don't quote linestyle arg.
9282 Problem reported by twlevo@xs4all.nl.
9283
9284 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
9285
9286 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
9287 example, reported by Derek M Jones. Also, make the example even
9288 more outrageous, to better illustrate how bad the problem is.
9289
9290 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
9291
9292 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
9293 putsym. Typo reported by Sebastian Piping.
9294
9295 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
9296
9297 * doc/bison.texinfo (Language and Grammar): some -> same
9298 (Epilogue): int he -> in the
9299 Typos reported by Sebastian Piping via Justin Pence.
9300
9301 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
9302
9303 * tests/glr-regression.at (Improper handling of embedded actions
9304 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
9305 embedded actions and $-N in GLR parsers", work around an Autoconf bug
9306 with dollar signs in test names.
9307 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
9308 for a similar reason.
9309
9310 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
9311
9312 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
9313 wants to redefine G_VIEW.
9314
9315 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9316
9317 * src/vcg.c (get_view_str): Remove case for normal_view.
9318 Problem reported by twlevo@xs4all.nl.
9319
9320 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9321
9322 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9323 Problem reported by twlevo@xs4all.nl.
9324
9325 * doc/bison.texinfo: Change @dircategory from "GNU programming
9326 tools" to "Software development". Requested by Richard Stallman
9327 via Karl Berry.
9328
9329 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9330
9331 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9332 Problem reported by twlevo@xs4all.nl.
9333
9334 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9335
9336 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9337 keyword; it's not needed with modern compilers, and it doesn't
9338 affect correctness with older compilers. Suggested by
9339 twlevo@xs4all.nl.
9340
9341 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9342
9343 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9344 gcc -Wswitch-default.
9345 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9346 * data/yacc.c (yyparse): Likewise.
9347
9348 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9349
9350 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9351 already. Let config.h define any nonstandard values.
9352
9353 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9354
9355 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9356 for the benefit of slower hosts. Problem reported by
9357 Nelson H. F. Beebe.
9358
9359 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9360
9361 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9362 being defined and not used.
9363 * data/lalr1.cc (yyparse): Likewise.
9364 Use "if (false)" rather than "if (0)".
9365
9366 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9367
9368 * TODO: Mention that we should allow NUL bytes in tokens.
9369
9370 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9371
9372 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9373 Problem reported by Hans Aberg.
9374
9375 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9376
9377 * src/getargs.c (version): Happy new year; update overall
9378 program copyright date from 2004 to 2005.
9379
9380 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9381 Problem reported by Hans Aberg.
9382 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9383 (Output file names.): Add a test for the case when standard output
9384 is closed.
9385
9386 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9387
9388 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9389 to fix an oversight in the Bison 2.0 manual.
9390
9391 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9392
9393 * NEWS: Version 2.0. Reformat the existing news items since
9394 1.875, so that related items are grouped together.
9395 * configure.ac (AC_INIT): Bump version to 2.0.
9396 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9397
9398 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9399 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9400 otherwise, we're not testing alloca. Unfortunately there's no
9401 simple way to consult HAVE_ALLOCA here.
9402
9403 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9404 for yymsg, too.
9405
9406 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9407 hand. This avoids a warning about comparing int to size_t when
9408 GCC warnings are enabled.
9409
9410 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9411
9412 * NEWS: Bison-generated parsers no longer default to using the
9413 alloca function (when available) to extend the parser stack, due
9414 to widespread problems in unchecked stack-overflow detection.
9415 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9416 responsibility to set it to a positive value. This lets the user
9417 specify a value that is not a preprocessor constant.
9418 * data/yacc.c (YYMAXDEPTH): Likewise.
9419 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9420 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9421 to be a compile-time constant. However, explain the constraints on it.
9422 Also, explain the constraints on YYINITDEPTH.
9423 (Table of Symbols): Explain that alloca is no longer the default.
9424 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9425 to 1.
9426
9427 * doc/bison.texinfo (Location Default Action): Mention that n must
9428 be zero when k is zero. Suggested by Frank Heckenbach.
9429
9430 2004-12-22 Akim Demaille <akim@epita.fr>
9431
9432 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9433 (parser::state_type, parser::semantic_type, parser::location_type):
9434 Private, not public.
9435 (parser::parse): Return ints, not bool.
9436 Returning a bool introduces a problem: 0 corresponds to false, and
9437 it seems weird to return false on success. Returning true changes
9438 the conventions for yyparse.
9439 Alternatively we could return void and send an exception.
9440 There is no clear consensus (yet?).
9441 (state_stack, semantic_stack, location_stack): Rename as...
9442 (state_stack_type, semantic_stack_type, location_stack_type): these.
9443 Private, not public.
9444 * tests/c++.at: New.
9445 * tests/testsuite.at, tests/Makefile.am: Adjust.
9446
9447 2004-12-21 Akim Demaille <akim@epita.fr>
9448
9449 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9450
9451 2004-12-21 Akim Demaille <akim@epita.fr>
9452
9453 Don't impose std::string for filenames.
9454
9455 * data/lalr1.cc (b4_filename_type): New.
9456 (position::filename): Use it.
9457 (parser.hh): Move the inclusion of stack.hh and location.hh below
9458 the user code, so that needed headers for the filename type can be
9459 included first.
9460 Forward declare them before the user code.
9461 * tests/Makefile.am (check-local, installcheck-local): Pass
9462 TESTSUITEFLAGS to the TESTSUITE.
9463
9464 2004-12-20 Akim Demaille <akim@epita.fr>
9465
9466 Use more STL like names: my_class instead of MyClass.
9467
9468 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9469 (SemanticStack, SemanticType, StateStack, StateType)
9470 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9471 (Parser::value): Rename as...
9472 (location_stack, location_type, rhs_number_type, semantic_stack)
9473 (semantic_type, state_stack, state_type, token_number_type, stack)
9474 (slice, traits, parser::yylloc, parser::yylval): these.
9475
9476 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9477
9478 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9479
9480 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9481 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9482
9483 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9484
9485 Remove uses of 'short int' and 'unsigned short int'. This raises
9486 some arbitrary limits. It uses more memory but nowadays that's
9487 not much of an issue.
9488
9489 This change does not affect the generated parsers; that's a different
9490 task, as some users will want to conserve memory there.
9491
9492 Ideally we should use size_t to represent all object counts, and
9493 something like ptrdiff_t to represent signed differences of object
9494 counts; but that will require more code-cleanup than I have the
9495 time to do right now.
9496
9497 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9498 Use size_t, not int or short int, to count objects.
9499 * src/closure.c (nritemset, closure): Likewise.
9500 * src/closure.h (nritemset, closure): Likewise.
9501 * src/nullable.c (nullable_compute): Likewise.
9502 * src/print.c (print_core): Likewise.
9503 * src/print_graph.c (print_core): Likewise.
9504 * src/state.c (state_compare, state_hash): Likewise.
9505 * src/state.h (struct state): Likewise.
9506 * src/tables.c (default_goto, goto_actions): Likewise.
9507
9508 * src/gram.h (rule_number, rule): Use int, not short int.
9509 * src/output.c (prepare_rules): Likewise.
9510 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9511 errs, reductions): Likewise.
9512 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9513 Likewise.
9514 * src/tables.c (vector_number, tally, action_number,
9515 ACTION_NUMBER_MINIMUM): Likewise.
9516 * src/output.c (muscle_insert_short_int_table): Remove.
9517
9518 2004-12-17 Akim Demaille <akim@epita.fr>
9519
9520 * data/lalr1.cc: Extensive Doxygenation.
9521 (error_): Rename as...
9522 (error): this, since it is visible to the user.
9523 Adjust callers.
9524 (Parser::message): Now an automatic variable from...
9525 (Parser::yyreport_syntax_error_): here.
9526 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9527 Parser::error.
9528 * tests/input.at: Escape $.
9529
9530 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9531
9532 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9533 Parenthesize rhs to avoid obscure problems with mistakes like
9534 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9535 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9536 b4_rhs_location): Likewise.
9537 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9538 b4_rhs_location): Likewise.
9539
9540 2004-12-16 Akim Demaille <akim@epita.fr>
9541
9542 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9543 yacc.c: be sure to stay within yycheck_.
9544 * tests/actions.at: Re-enable C++ tests.
9545
9546 2004-12-16 Akim Demaille <akim@epita.fr>
9547
9548 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9549 real.
9550
9551 2004-12-16 Akim Demaille <akim@epita.fr>
9552
9553 Use #define to handle the %name-prefix.
9554
9555 * data/glr.c, data/yacc.c: Comment changes.
9556 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9557 so that one can refer to yylex in the parser file, and have it
9558 renamed, as is the case with other skeletons.
9559
9560 2004-12-16 Akim Demaille <akim@epita.fr>
9561
9562 Move lalr1.cc internals into yy*.
9563
9564 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9565 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9566 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9567 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9568 (empty_, final_, terror_, errcode_, ntokens_)
9569 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9570 (looka_, ilooka_, error_range_, nerrs_):
9571 Rename as...
9572 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9573 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9574 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9575 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9576 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9577 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9578 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9579 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9580 these.
9581
9582 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9583
9584 Fix some problems reported by twlevo at xs4all.
9585 * src/symtab.c (symbol_new): Report an error if the input grammar
9586 contains too many symbols. This is better than calling abort() later.
9587 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9588 (struct node, struct graph):
9589 Rename member expand to stretch. All uses changed.
9590 (struct graph): Remove member layoutalgorithm. All uses removed.
9591 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9592 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9593 All uses changed.
9594 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9595
9596 2004-12-15 Akim Demaille <akim@epita.fr>
9597
9598 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9599 Add more Doxygen comments.
9600 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9601 (report_syntax_error_, translate_): Rename as...
9602 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9603 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9604
9605 2004-12-15 Akim Demaille <akim@epita.fr>
9606
9607 * data/lalr1.cc (lex_): Rename as...
9608 (yylex_): this.
9609 Move the trace here.
9610 Take the %name-prefix into account.
9611 Reported by Alexandre Duret-Lutz.
9612
9613 2004-12-15 Akim Demaille <akim@epita.fr>
9614
9615 Simplify the C++ parser constructor.
9616
9617 * data/lalr1.cc (debug_): Rename as...
9618 (yydebug_): so that the parser's internals are always in the yy*
9619 pseudo namespace.
9620 Adjust uses.
9621 (b4_parse_param_decl): Remove the leading comma as it is now only
9622 called as unique argument list.
9623 (Parser::Parser): Remove the constructor accepting a location and
9624 an initial debugging level.
9625 Remove from the other ctor the argument for the debugging level.
9626 (debug_level_type, debug_level, set_debug_level): New.
9627
9628 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9629 constructor calls.
9630
9631 2004-12-15 Akim Demaille <akim@epita.fr>
9632
9633 Remove b4_root related material: failure experiment
9634 (which goal was to allow to derive from a class).
9635
9636 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9637 definitions and uses.
9638
9639 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9640
9641 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9642 not 2, since it's not portable to subtract 1 from the start of an
9643 array. The new item 0 is never set or used. All uses changed.
9644
9645 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9646 the default definition of YYLLOC_DEFAULT. Problem reported
9647 by Frank Heckenbach.
9648
9649 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9650
9651 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9652 the normal case and one for the error case. Just use the
9653 first one uniformly. Problem reported by Frank Heckenbach.
9654 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9655 use exactly the same macro in both places.
9656 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9657 so that the normal-case YYRHSLOC works for the error case too.
9658 All uses changed.
9659 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
9660 (YYLLOC_DEFAULT): Use the same macro as glr.c.
9661 * doc/bison.texinfo (Location Default Action): Don't claim that
9662 we have an array of locations. Use the same macro for both glr
9663 and lalr parsers. Mention YYRHSLOC. Mention what happens when
9664 the index is 0.
9665
9666 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9667
9668 * HACKING: Update email addresses to send announcements to.
9669
9670 * configure.ac (AC_INIT): Bump version to 1.875f.
9671
9672 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9673
9674 * NEWS: Version 1.875e.
9675 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
9676
9677 * src/scan-skel.l: Include "complain.h", for "fatal".
9678
9679 * src/relation.h (relation_print, relation_digraph):
9680 Relation sizes are of type relation_node, not size_t (this is
9681 merely a doc fix, since the two types are equivalent).
9682 (relation_transpose): Relation sizes are of type relation_node,
9683 not int.
9684 * src/relation.c: Likewise.
9685 (top, infinity): Now of type relation_node, not int.
9686 (traverse, relation_transpose): Use relation_node, not int.
9687
9688 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
9689 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
9690 (yyparse): Remove unused local introduced in 2004-10-25 patch.
9691
9692 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
9693 specifying whether the test should be skipped. Use it tp
9694 specify that the [%defines %skeleton "lalr1.cc"] tests currently
9695 fail on some hosts, and should be skipped.
9696
9697 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
9698
9699 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
9700 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
9701 unless otherwise specified below.
9702
9703 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
9704 to allocate kernel_base, kernel_items, kernel_size, since
9705 they needn't be initialized to 0.
9706 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
9707 * src/closure.c (new_closure): Likewise, for itemset.
9708 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
9709 * src/lalr.c (set_goto_map): Likewise, for temp_map.
9710 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
9711 (build_relations): Likewise for edge, states1, includes.
9712 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
9713 * src/reader.c (packgram): Likewise, for ritem, rules.
9714 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
9715 * src/relation.c (relation_digraph): Likewise for VERTICES.
9716 (relation_transpose): Likewise for new_R, end_R.
9717 * src/symtab.c (symbols_token_translations_init): Likewise for
9718 token_translations.
9719 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
9720 (token_actions): Likewise for yydefact, actrow, conflrow,
9721 conflict_list.
9722 (save_column): Likewise for froms[symno], tos[symno].
9723 (goto_actions): Likewise for state_count.
9724 (pack_table): Likewise for base, pos, check.
9725 (tables_generate): Likewise for width.
9726
9727 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
9728 for initial core. Just have a separate core, so we needn't worry
9729 about whether kernel_size and kernel_base are initialized.
9730
9731 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
9732 kernel_size, kernel_items): Remove unnecessary initialization.
9733 * src/conflicts.c (conflicts): Likewise.
9734 * src/derives.c (derives): Likewise.
9735 * src/muscle_tablc (muscle_insert): Likewise.
9736 * src/relation.c (relation_digraph): Likewise.
9737 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
9738 conflrow, conflict_table, conflict_list, table, check):
9739 Likewise.
9740
9741 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
9742 This is because all callers pass unsigned int.
9743 * src/closure.h (new_closure): Likewise.
9744
9745 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
9746 (build_relations): Initialize includes[i] in all cases.
9747 * src/reader.c (packgram): Always initialize rules[ruleno].prec
9748 and rules[ruleno].precsym. Initialize members in order.
9749 * src/relation.c (relation_transpose): Always initialize new_R[i]
9750 and end_R[i].
9751 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
9752
9753 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
9754 conflict_list[0] was always 0, but now it isn't initialized.
9755
9756 * src/table.c (table_grow): When conflict_table grew, the grown
9757 area wasn't cleared. Fix this.
9758
9759 * lib/.cvsignore: Add strdup.c, strdup.h.
9760 * m4/.cvsignore: Add strdup.m4.
9761
9762 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
9763
9764 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
9765 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
9766 GOTO_NUMBER_MAXIMUM, since we occasionally compute
9767 ngotos + 1 without checking for overflow.
9768 (build_relations): Use END_NODE, not -1, to denote end of edges.
9769 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
9770 build_relations): Use goto_number, not int, for goto numbers.
9771 * src/tables.c (save_column, default_goto): Likewise.
9772
9773 2004-11-23 Akim Demaille <akim@epita.fr>
9774
9775 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
9776 of #defining from yystype.
9777 Don't typedef yystype, C++ does not need it.
9778 This lets it possible to forward declare it as union.
9779
9780 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
9781
9782 * bootstrap (gnulib_modules): Add extensions.
9783 Problem reported by Jim Meyering.
9784
9785 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
9786
9787 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
9788 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
9789 src/system.h, src/tables.c: XFREE -> free, to accommodate
9790 recent change to gnulib xalloc.h.
9791 Problem reported by Jim Meyering.
9792
9793 2004-11-17 Akim Demaille <akim@epita.fr>
9794
9795 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
9796
9797 2004-11-17 Akim Demaille <akim@epita.fr>,
9798 Alexandre Duret-Lutz <adl@gnu.org>
9799
9800 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
9801 changes.
9802 (YYCDEBUG): Adjust.
9803 Use it instead of cdebug_.
9804 (Parser::debug_stream, Parser::set_debug_stream): New.
9805 (Parser::symprint_): Define cdebug_ for temporary backward
9806 compatibility.
9807 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
9808 debug_stream ().
9809
9810 2004-11-17 Akim Demaille <akim@epita.fr>
9811
9812 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
9813 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
9814 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
9815 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9816
9817 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
9818
9819 * data/glr.c (yyloc_default): Remove; not used.
9820 Problem reported by Frank Heckenbach.
9821
9822 2004-10-25 Akim Demaille <akim@epita.fr>
9823
9824 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
9825 Introduce another definition to address simple location arrays.
9826 (yyGLRStack): New member: yyerror_range.
9827 (yyrecoverSyntaxError, yyparse): Update it.
9828 (yyrecoverSyntaxError): Use it when shifting the error token to
9829 have an accurate range, equivalent to the one computed by both
9830 yacc.c and lalr1.cc.
9831 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
9832 that column numbers start at column 0, as per GNU Coding
9833 Standards, the others tests, and the doc.
9834 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
9835 Adjust to the above change (first column is 0).
9836 And adjust the location of the "<error>", now covering the whole
9837 line.
9838
9839 2004-10-22 Akim Demaille <akim@epita.fr>
9840 and Paul Eggert <eggert@cs.ucla.edu>
9841
9842 Remove some arbitrary limits on goto numbers and relations.
9843 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
9844 initial values, since they're never used.
9845 (set_goto_map): ngotos is now unsigned, so test for overflow
9846 by seeing whether it wraps around to zero.
9847 * src/lalr.h (goto_number): Now size_t, not short int.
9848 (GOTO_NUMBER_MAXIMUM): Remove.
9849 * src/relation.c (relation_print, traverse, relation_transpose):
9850 Check for END_NODE rather than looking at sign.
9851 * src/relation.h (END_NODE): New macro.
9852 (relation_node): Now size_t, not short int.
9853
9854 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
9855
9856 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
9857 keyword, not an identifier. Problem reported by Baron Schwartz in
9858 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
9859
9860 2004-10-11 Akim Demaille <akim@epita.fr>
9861
9862 * src/symtab.c (symbol_check_alias_consistency): Also check
9863 type names, destructors, and printers.
9864 Reported by Alexandre Duret-Lutz.
9865 Recode the handling of associativity and precedence in terms
9866 of symbol_precedence_set.
9867 Accept no redeclaration at all, not even equal to the previous
9868 value.
9869 (redeclaration): New.
9870 Use it to factor redeclaration complaints.
9871 (symbol_make_alias): Don't set the type of the alias, let
9872 symbol_check_alias_consistency do it as for other features.
9873 * src/symtab.h (symbol): Add new member prec_location, and
9874 type_location.
9875 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
9876 * tests/input.at (Incompatible Aliases): New.
9877
9878 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
9879
9880 .cvsignore fixes to accommodate gnulib changes,
9881 and the practice of naming build directories "_build".
9882 * .cvsignore: Add "_*". Sort.
9883 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
9884 * m4/.cvsignore: Add "*_gl.m4".
9885
9886 2004-10-06 Akim Demaille <akim@epita.fr>
9887
9888 * src/parse-gram.y (add_param): Fix the truncation of trailing
9889 spaces.
9890
9891 2004-10-05 Akim Demaille <akim@epita.fr>
9892
9893 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
9894 whether the reducion was empty or not. This leaves room to
9895 improve the use of YYLLOC_DEFAULT in such a case.
9896 lalr1.cc is still experimental, so changing this is acceptable.
9897 And finally, there are probably not many users who changed the
9898 handling of locations in GLR, so changing is admissible too.
9899
9900 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
9901 empty reduction, set @$ to an empty location ending the previously
9902 stacked symbol.
9903 Adjust uses to make sure the code is triggered on empty
9904 reductions.
9905 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
9906 expected output: empty reductions have empty locations.
9907
9908 2004-09-29 Akim Demaille <akim@epita.fr>
9909
9910 * data/lalr1.cc: Move towards a more standard C++ coding style
9911 for templates: Class < T > -> Class<T>.
9912
9913 2004-09-29 Akim Demaille <akim@epita.fr>
9914
9915 * data/lalr1.cc: Reinstall the former ctor, for sake of
9916 compatibility, but warn it will be removed.
9917 Move towards a more standard C++ coding style (i.e., type *var ->
9918 type* var).
9919
9920 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
9921
9922 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
9923 since it's less likely to work if NULs are involved in the future.
9924
9925 2004-09-27 Akim Demaille <akim@epita.fr>
9926
9927 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
9928
9929 2004-09-27 Akim Demaille <akim@epita.fr>
9930
9931 * data/lalr1.cc (b4_parse_param_decl_1): New.
9932 (b4_parse_param_decl): Use it to have different names between attribute
9933 and argument names.
9934 (b4_cc_constructor_call): Likewise.
9935
9936 2004-09-24 Akim Demaille <akim@epita.fr>
9937
9938 * src/parse-gram.y (add_param): Strip the leading and trailing
9939 blanks from a formal argument declaration.
9940 (YY_LOCATION_PRINT): New.
9941
9942 2004-09-24 Akim Demaille <akim@epita.fr>
9943
9944 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
9945 after the location.
9946
9947 2004-09-24 Akim Demaille <akim@epita.fr>
9948
9949 * doc/bison.texinfo (Table of Symbols): Sort.
9950
9951 2004-09-21 Akim Demaille <akim@epita.fr>
9952
9953 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
9954 the useless parentheses.
9955 Suggested by Paul Eggert.
9956
9957 2004-09-20 Akim Demaille <akim@epita.fr>
9958
9959 Let the initial-action act on the look-ahead, and use it for the
9960 "initial push" (corresponding to an hypothetical beginning-of-file).
9961 And let lalr1.cc honor %initial-action.
9962
9963 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
9964 example.
9965 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
9966 (Parser::Parser): Remove the ctor that used to initialize it.
9967 (Parser::parse): Like in the other skeletons, issue the "starting
9968 parse" message before any action.
9969 Honor %initial-action.
9970 Initialize the stacks with the lookahead.
9971 * data/yacc.c: Let $$ and @$ in %initial-action designate the
9972 look-ahead.
9973 Push them in the stacks.
9974 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
9975
9976 2004-09-20 Akim Demaille <akim@epita.fr>
9977
9978 * doc/bison.texinfo (Initial Action Decl): New.
9979
9980 2004-09-20 Akim Demaille <akim@epita.fr>
9981
9982 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
9983 clearer criterion to define it.
9984 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
9985 When reducing on an empty RHS, use the latest stacked location as
9986 location.
9987 yylloc is not always available.
9988 * data/glr.c: Likewise.
9989 Also, honor initial-actions.
9990
9991 2004-09-20 Akim Demaille <akim@epita.fr>
9992
9993 * data/yacc.c (YY_LOCATION_PRINT): New.
9994 Define when we know YYLTYPE's structure, i.e., when the default
9995 YYLLOC_DEFAULT is used.
9996 * data/c.m4 (b4_yysymprint_generate): Use it.
9997 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
9998 value of the result.
9999 (error_start_): Replace with...
10000 (error_range_): this location array.
10001 This allows to replace code relying on the implementation of
10002 locations by portable code.
10003 * data/yacc.c (yylerrsp): Replace with...
10004 (yyerror_range): this.
10005 Every time a token is popped, update yyerror_range[0], to have an
10006 accurate location for the error token.
10007 * data/glr.c (YY_LOCATION_PRINT): New.
10008 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
10009 deference a pointer.
10010 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
10011 report the location in %printers.
10012
10013 * src/scan-skel.l: Instead of abort, report error messages to ease
10014 understanding skeleton scanning failures.
10015
10016 2004-09-16 Akim Demaille <akim@epita.fr>
10017
10018 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
10019 (iterator, const_iterator): these, to be more in the C++ spirit.
10020 Also, return reverse iterators so that when displaying the stack
10021 we display its bottom first.
10022 (Parser::stack_print_, Parser::reduce_print_): Match the messages
10023 from yacc.c.
10024 We should probably use vector here though.
10025
10026 2004-09-16 Akim Demaille <akim@epita.fr>
10027
10028 Have more complete shift traces.
10029
10030 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
10031 to report Shifts instead of ad hoc YYDPRINTF invocations,
10032 including for the error token.
10033 * data/lalr1.cc (symprint_): Output the location.
10034 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
10035 output the location within the %printer.
10036 Activate GLR tests, at least to make sure they compile properly.
10037 They still don't pass though.
10038 * tests/calc.at: Adjust expect verbose output, since now "Entering
10039 state..." is on a different line than the "Shifting" message.
10040
10041 2004-09-08 Akim Demaille <akim@epita.fr>
10042
10043 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
10044 Bison directive from the Bison file to the invocation of this
10045 macro, so that these directives are passed to
10046 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
10047 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
10048 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
10049 the extra Bison directives instead of the whole series.
10050 Change the grammar so that there are recoverable errors, and
10051 unrecoverable errors. Now we can have the parser give up before
10052 consuming the whole input. As a result we now can observe that
10053 the lookahead is freed when needed.
10054 Change the parser source to parse argv[1] instead of a hard coded
10055 string.
10056 Simplify yylex, and give a value and location to EOF.
10057 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
10058 passed directives already coded in the file.
10059 Add some tests to check the location of "error".
10060 For some tests, the C++ parser is correct, and not yacc.c.
10061 For other tests, they provide different, but unsatisfying, values,
10062 so keep the C++ value so that at least one parser is "correct"
10063 according to the test suite.
10064 (Actions after errors): Remove, this is subsumed by the
10065 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
10066
10067 2004-09-06 Akim Demaille <akim@epita.fr>
10068
10069 * data/lalr1.cc: Adjust the indentation of the labels.
10070 (Parser::pop): New.
10071 Use it.
10072
10073 2004-09-06 Akim Demaille <akim@epita.fr>
10074
10075 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
10076 argument, an informative message.
10077 Call YY_SYMBOL_PRINT.
10078 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
10079 * data/lalr1.cc (destruct_): Likewise.
10080 In addition, no longer depend on b4_yysymprint_generate and
10081 b4_yydestruct_generate to generate these functions, do it "by
10082 hand".
10083
10084 2004-09-03 Akim Demaille <akim@epita.fr>
10085
10086 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
10087 invoked, yydestruct the lookahead.
10088 * tests/calc.at (Calculator $1): Update the expected lengths of
10089 traces: there is an added line for the discarded lookahead.
10090 * doc/bison.texinfo (Destructor Decl): Some rewording.
10091 Define "discarded" symbols.
10092
10093 2004-09-02 Akim Demaille <akim@epita.fr>
10094
10095 * data/lalr1.cc (translate_, destruct_): No reason to be static.
10096
10097 2004-09-02 Akim Demaille <akim@epita.fr>
10098
10099 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
10100 (YYDSYMPRINTF): Rename as...
10101 (YY_SYMBOL_PRINT): this.
10102 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
10103 two.
10104 Use it instead of direct symprint_ calls.
10105 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
10106 one.
10107
10108 2004-09-02 Akim Demaille <akim@epita.fr>
10109
10110 * data/lalr1.cc (b4_yysymprint_generate): New.
10111 (symprint_): New member function, defined when YYDEBUG.
10112 Use it consistently instead of token/nterm debugging output by
10113 hand.
10114 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
10115 %printer calls to use cdebug_ when using lalr1.cc.
10116
10117 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
10118
10119 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
10120 with #ifdef YYDEBUG.
10121
10122 2004-08-26 Akim Demaille <akim@epita.fr>
10123
10124 * doc/bison.texinfo (Implementing Loops): Rename as...
10125 (Implementing Gotos/Loops): this.
10126
10127 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
10128
10129 Adjust to latest gnulib.
10130 * bootstrap (gnulib_modules): Add xalloc-die.
10131 Set LC_ALL=C so that file names sort consistently.
10132 Prefer the gnulib copies of gettext.m4, glibc21.m4,
10133 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
10134 uintmax_t.m4, ulonglong.m4.
10135 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
10136 po.m4 since we are now using _gl.m4 instead.
10137
10138 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
10139
10140 * src/scan-action.l: Remove. Scanning of semantic actions is
10141 handled in scan-gram.l.
10142
10143 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
10144
10145 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
10146
10147 * src/location.h (struct): The file member is a uniqstr.
10148 (equal_boundaries): Use UNIQSTR_EQ for comparison.
10149
10150 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
10151
10152 Fix bug with non-%union parsers that have printers or destructors,
10153 which led to a Bison core dump. Reported by Peter Fales in
10154 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
10155
10156 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
10157 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
10158 not to our own type.
10159 * src/output.c (symbol_destructors_output, symbol_printers_output):
10160 Don't assume %union.
10161 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
10162 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
10163 UNION-FLAG. All callers changed.
10164 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
10165 Use type char, not unsigned int, when declaring an array of char;
10166 this lets us remove a cast.
10167 (Printers and Destructors): Add non-%union test cases.
10168
10169 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10170
10171 * doc/bison.texinfo: Minor editorial changes, mostly to the new
10172 GLR writeups. E.g., avoid frenchspacing and the future tense,
10173 change "lookahead" to "look-ahead", and change "wrt" to "with
10174 respect to".
10175
10176 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10177
10178 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
10179 New sections, split off from the GLR Parsers section. Put the new
10180 Simple GLR Parser near the start of the GLR section, for clarity.
10181 Rewrite connective text.
10182
10183 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
10184
10185 * doc/bison.texinfo (Simple GLR Parsers): New section.
10186
10187 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10188
10189 * NEWS, TODO, doc/bison.texinfo:
10190 Use "look-ahead" instead of "lookahead", to be consistent.
10191 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
10192 while we're fixing "look-ahead".
10193 * src/conflicts.c (shift_set): Renamed from shiftset.
10194 (look_ahead_set): Renamed from lookaheadset.
10195 * src/print.c: Likewise.
10196 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
10197 name for "lookahead".
10198 (report_types, usage): Likewise.
10199 * src/getargs.h (report_look_ahead_tokens): Renamed from
10200 report_lookaheads.
10201 * src/lalr.c (compute_look_ahead_tokens): Renamed from
10202 compute_lookaheads.
10203 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
10204 (look_ahead_tokens_print): Renamed from lookaheads_print.
10205 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
10206 state_rule_lookaheads_print.
10207 * src/state.h: Likewise.
10208 (reductions.look_ahead_tokens): Renamed from lookaheads.
10209 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
10210 AT_DATA_LOOKAHEADS_GRAMMAR.
10211
10212 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
10213
10214 * README: Update location of patched M4 distribution.
10215
10216 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
10217
10218 Don't assume the C++ compiler takes the same arguments as the C compiler
10219 (trivial change).
10220 * configure.ac (O0CXXFLAGS): New var.
10221 * tests/atlocal.in (CXXFLAGS): Use it.
10222
10223 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
10224
10225 Fix some "make check" problems with C++ reported by
10226 Albert Chin-A-Young for Tru64 C++ in this thread:
10227 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
10228
10229 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
10230 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10231 Output to a .cc file for C++, not to a .c file.
10232 * tests/calc.at (AT_CHECK_CALC): Likewise.
10233 * tests/regression.at (AT_CHECK_DANCER): Likewise.
10234 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
10235
10236 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
10237
10238 * tests/calc.at, tests/actions.at: Workaround for SGI
10239 C++ compiler. (trivial change)
10240
10241 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
10242
10243 Spent a few hours checking out which prerequisite versions the
10244 current sources actually require. I went all the way back to
10245 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
10246 a seemingly endless set of combinations of versions more recent
10247 than that. The bottom line is that the current sources require
10248 fairly recent versions of the build tools, and it'll be some work
10249 to change this.
10250 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
10251 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
10252 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
10253 Add comments explaining why those particular versions are
10254 currently needed.
10255
10256 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
10257 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
10258 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
10259
10260 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
10261 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
10262
10263 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
10264
10265 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
10266 0.11.5. Suggested by Bruno Haible.
10267 * bootstrap: Remove gettext version checking.
10268
10269 * doc/bison.texinfo (Decl Summary): Also mention that %union
10270 can depend on prerequisite types. Problem reported by Tim
10271 Van Holder.
10272
10273 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
10274
10275 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
10276 * README-alpha: Don't tell people not to package this.
10277
10278 * bootstrap: Don't assume $(...) works; use `...` instead.
10279 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
10280 gettext better.
10281
10282 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
10283 put into the -d output file, and mention what to do if YYSTYPE is
10284 defined as a macro.
10285
10286 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
10287
10288 Undo change made earlier today: it caused autopoint to not bring
10289 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
10290 autopoint's.
10291
10292 * bootstrap: Check that gettext version matches what's in
10293 configure.ac. Warn users to ignore robots.txt ERROR 404.
10294 * bootstrap: Undo today's earlier change (logged below).
10295 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
10296
10297 The gettext version checking is causing more trouble than it's
10298 curing; remove it. Problem reported by Paul Hilfinger.
10299
10300 * bootstrap: Issue a warning that one can expect a message
10301 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
10302 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
10303
10304 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
10305
10306 Ensure that the C++ compiler used for testing actually works on a
10307 simple test program; if not, skip the C++-related tests. Problem
10308 reported by Vin Shelton in:
10309 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
10310
10311 * m4/cxx.m4: New file.
10312 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
10313 * tests/atlocal.in (BISON_CXX_WORKS): Add.
10314 * tests/local.at (AT_COMPILE_CXX): Use it.
10315
10316 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10317
10318 * data/glr.c (yylloc): Output this macro even if locations are not
10319 being generated, as the GLR parser needs it even in that case.
10320 Problem reported by Troy A. Johnson
10321 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10322
10323 * configure.ac (AC_INIT): Update to 1.875e.
10324
10325 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10326
10327 * NEWS: Version 1.875d.
10328 * configure.ac (AC_INIT): Likewise.
10329 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10330
10331 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10332 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10333 lalr1.cc runs afoul of the first, and the last two are no longer
10334 supported by GCC 3.4.0.
10335 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10336 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10337
10338 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10339
10340 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10341 unsigned int, for compatibility with latest gnulib hash module.
10342 * src/state.c (state_hash, state_hasher): Likewise.
10343 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10344 * src/uniqstr.c (hash_uniqstr): Likewise.
10345
10346 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10347
10348 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10349
10350 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10351 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10352 character and string literals.
10353 (unexpected_end): New function.
10354 (unexpected_eof): Use it.
10355 (unexpected_newline): New function.
10356 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10357 actions.
10358
10359 * NEWS: Document %expect-rr.
10360
10361 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10362 Fix typo by replacing $1 with $option.
10363 Remove more 'intl'-related files.
10364 Don't DEFUN AM_INTL_SUBDIR twice.
10365
10366 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10367 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10368 strtoul.c.
10369 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10370 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10371 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10372 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10373 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10374 * src/.cvsignore: Add *.output.
10375
10376 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10377 gets copied to the output file.
10378
10379 2004-04-28 Paul Eggert <eggert@twinsun.com>
10380
10381 Get files from the gnulib and po repositories, instead of relying
10382 on them being in our CVS. Upgrade to latest versions of gnulib
10383 and Automake.
10384
10385 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10386 * bootstrap: Bootstrap from gnulib and po repositories.
10387 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10388 * README-cvs: Document these changes. Remove version numbers from
10389 mentions of build tools, since they change so often. Mention Flex.
10390
10391 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10392 (gl_USE_SYSTEM_EXTENSIONS): Add.
10393 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10394 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
10395 does this for us.
10396 (AC_ISC_POSIX): Remove; we no longer support this
10397 ancient OS, as it gets in the way of latest Autoconf & gnulib.
10398 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10399 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10400 Do not check for C89 headers, except for locale.h which is used
10401 by the Yacc library and must port to K&R hosts.
10402 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10403 Do not check for C89 functions, except for setlocale which is
10404 used by the Yacc library.
10405 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10406 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10407 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10408 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10409 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10410 AM_GNU_GETTEXT): Remove; now done by:
10411 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10412 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10413 for us.
10414
10415 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10416 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10417 Define to empty, as gnulib.mk will do the rest for us.
10418 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10419 for us.
10420 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10421 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10422
10423 * src/files.c: Include gnulib's xstrndup.h.
10424
10425 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10426 (REALLOC): Use xnrealloc, for likewise.
10427 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10428 (strnlen, memrchr): Remove decls; functions no longer used.
10429 Include <stpcpy.h>.
10430
10431 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10432 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10433 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10434 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10435 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10436 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10437 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10438 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10439 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10440 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10441 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10442 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10443 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10444 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10445 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10446 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10447 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10448 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10449 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10450 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10451 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10452 Remove, as these files are now generated automatically
10453 by bootstrap or automake.
10454
10455 * po/ChangeLog: Remove: all but one entry was a duplicate
10456 of this file, and I moved that 2000-11-02 entry here.
10457
10458 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10459 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10460 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10461 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10462 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10463 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10464 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10465 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10466 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10467 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10468 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10469 xstrndup.h.
10470 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10471 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10472 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10473 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10474 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10475 * src/.cvsignore: Remove *_.c.
10476
10477
10478 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10479 support it. (The latest stable gzip doesn't.)
10480
10481 2004-04-27 Paul Eggert <eggert@twinsun.com>
10482
10483 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10484 case, as stos_ is now used by destructors due to the 2004-02-09
10485 change.
10486
10487 Remove more K&R C support.
10488 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10489 * lib/subpipe.c (errno): Remove decl.
10490 Include <stdlib.h> unconditionally.
10491 (EXIT_FAILURE): Remove macro.
10492 * src/complain.c (vfprintf, strerror): Remove.
10493 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10494 unconditionally.
10495 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10496 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10497 (strchr, strspn, memchr): Remove decls.
10498 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10499 unconditionally. Do not declare perror.
10500 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10501 unconditionally.
10502
10503 * src/complain.c (_): Remove useless defn, as system.h defines this.
10504
10505 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10506 with latest obstack.h.
10507 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10508 to procedure types, as obstack.h now does that for us.
10509 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10510
10511 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10512 so that this include file can stand alone.
10513 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10514 does this now. Include subpipe.h first after config.h, to
10515 test whether it can stand alone.
10516
10517 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10518 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10519 unused declaration.
10520
10521 * tests/synclines.at (%union synch line): Put a dummy member in
10522 the union, because empty unions aren't allowed in C. Caught
10523 by GCC 3.4.0.
10524
10525 2004-04-13 Jim Meyering <jim@meyering.net>
10526
10527 * src/conflicts.c (conflicts_print): Correct format string typo:
10528 use `%%' to produce literal `%'. (trivial change)
10529
10530 2004-03-30 Paul Eggert <eggert@twinsun.com>
10531
10532 * src/getargs.c (version): Update copyright year to 2004.
10533
10534 * data/c.m4 (b4_int_type): Use 'short int' rather than
10535 'short', and similarly for 'long', 'unsigned', etc.
10536 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10537 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10538 yy_yypstack, yydumpstack): Likewise.
10539 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10540 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10541 Likewise.
10542 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10543 yy_stack_print, yyparse): Likewise.
10544 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10545 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10546 * lib/bitset.c (bitset_print): Likewise.
10547 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10548 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10549 * lib/bitsetv.c (bitsetv_dump): Likewise.
10550 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10551 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10552 Likewise.
10553 * src/LR0.c (allocate_itemsets): Likewise.
10554 * src/gram.h (rule_number, rule): Likewise.
10555 * src/lalr.h (goto_number): Likewise.
10556 * src/nullable.c (nullable_compute): Likewise.
10557 * src/output.c (prepare_rules): Likewise.
10558 * src/relation.c (relation_print, relation_digraph): Likewise.
10559 * src/relation.h (relation_node): Likewise.
10560 * src/state.h (state_number, transitions, errs, reductions,
10561 struct state): Likewise.
10562 * src/symtab.h (symbol_number, struct symbol): Likewise.
10563 * src/tables.c (vector_number, tally, action_number,
10564 default_goto, goto_actions): Likewise.
10565 * tests/existing.at (GNU Cim Grammar): Likewise.
10566 * tests/regression.at (Web2c Actions): Likewise.
10567
10568 * src/output.c (muscle_insert_short_int_table): Renamed from
10569 muscle_insert_short_table. All uses changed.
10570
10571 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10572
10573 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10574 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10575 Add %expect-rr rule.
10576
10577 * src/scan-gram.l: Recognize %expect-rr.
10578
10579 * src/conflicts.h (expected_sr_conflicts): Rename from
10580 expected_conflicts.
10581 (expected_rr_conflicts): Declare.
10582
10583 * src/conflicts.c (expected_sr_conflicts): Rename from
10584 expected_conflicts.
10585 (expected_rr_conflicts): Define.
10586 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10587 for GLR parsers.
10588 Use expected_sr_conflicts in place of expected_conflicts.
10589 Warn if expected_rr_conflicts used in non-GLR parser.
10590
10591 * doc/bison.texinfo: Add documentation for %expect-rr.
10592
10593 2004-03-08 Paul Eggert <eggert@gnu.org>
10594
10595 Add support for hex token numbers. Suggested by Odd Arild Olsen in
10596 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
10597
10598 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10599 in lalr1.cc.
10600 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10601 * src/scan-gram.l (scan_integer): New function.
10602 ({int}): Use it.
10603 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10604 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10605 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10606 Say "long int", not "long", for uniformity with GNU style.
10607
10608 2004-02-25 Paul Eggert <eggert@twinsun.com>
10609
10610 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10611 compilers. This fixes a problem with Intel's C++ compiler being
10612 chatty, reported by Guido Trentalancia in
10613 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
10614
10615 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10616
10617 Support %destructor and merge error locations in lalr1.cc.
10618
10619 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10620 (Parser::stos_): Define unconditionally.
10621 (Parser::destruct_): New method. Generate its body with
10622 b4_yydestruct_generate.
10623 (Parser::error_start_): New attribute.
10624 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10625 token which are discarded.
10626 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10627 error_start_ when erroneous token are discarded.
10628 (Parser::parse) <yyerrlab1>: Compute the location of the error
10629 token so that it covers all the discarded tokens.
10630 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10631 it can be called with `%skeleton "lalr1.cc"', and do that.
10632
10633 2004-02-02 Paul Eggert <eggert@twinsun.com>
10634
10635 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10636 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10637 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10638 There's no need to mention top_builddir since Automake does that
10639 for us.
10640 (INCLUDES): Remove, as Automake says it's obsolescent.
10641 Contents migrated into AM_CPPFLAGS as described above.
10642 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10643
10644 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10645
10646 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10647 (yyreportSyntaxError): Handle case where lookahead token is
10648 YYEMPTY.
10649
10650 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10651
10652 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10653 resulting parsers are compilable with C++.
10654
10655 2003-12-23 Paul Eggert <eggert@twinsun.com>
10656
10657 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10658 * src/output.c (output_skeleton): Rename local var.
10659 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
10660 Bison tokens, as this runs afoul of the 2003-10-07 change that
10661 disallowed NUL bytes in character constants or string literals.
10662
10663 * tests/local.at: Require Autoconf 2.59's Autotest.
10664 * tests/testsuite.at: Don't include local.at, since we now assume
10665 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
10666 including it.
10667 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
10668 multiple inclusion warnings.
10669
10670 2003-12-02 Akim Demaille <akim@epita.fr>
10671
10672 * doc/bison.texinfo (How Can I Reset the Parser): More about start
10673 conditions.
10674 From Bruno Haible.
10675
10676 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
10677
10678 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
10679
10680 2003-10-07 Paul Eggert <eggert@twinsun.com>
10681
10682 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
10683 if testsuite doesn't exist.
10684
10685 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
10686 literals, unfortunately.
10687 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
10688 Complain about NUL bytes in character constants or string literals.
10689
10690 2003-10-05 Paul Eggert <eggert@twinsun.com>
10691
10692 * NEWS: Don't document %no-default-prec, as it's still
10693 too experimental.
10694 * doc/bison.texinfo: Document %no-default-prec only if
10695 the defaultprec flag is set. Normally it's not.
10696
10697 2003-10-04 Paul Eggert <eggert@twinsun.com>
10698
10699 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
10700 non-modifiable lvalue, instead of a modifiable one.
10701 * doc/bison.texinfo (Actions): Document that $$ can
10702 be assigned to. Do not claim that $$ and $N are
10703 array element references: user code should not rely on this.
10704
10705 2003-10-01 Paul Eggert <eggert@twinsun.com>
10706
10707 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
10708 (grammar_declaration): Use it.
10709 * src/scan-gram.l: New token %no-default-prec.
10710 * tests/conflicts.at: Revamp tests to use %no-default-prec.
10711 * NEWS, doc/bison.texinfo: Document the above.
10712
10713 2003-10-01 Akim Demaille <akim@epita.fr>
10714
10715 VCG no longer supports long_straight_phase.
10716
10717 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
10718 * src/print_graph.c (print_graph): Adjust.
10719
10720 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
10721 and Paul Eggert <eggert@twinsun.com>
10722
10723 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
10724 Table of Symbols): Document %default-prec.
10725 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
10726 (grammar_declaration): Set default_prec on %default-prec.
10727 * src/scan-gram.l (%default-prec): New token.
10728 * src/reader.h (default_prec): New flag.
10729 * src/reader.c: Likewise.
10730 (packgram): Handle it.
10731 * tests/conflicts.at (%default-prec without %prec,
10732 %default-prec with %prec, %default-prec 1): New tests.
10733
10734 2003-09-30 Paul Eggert <eggert@twinsun.com>
10735
10736 * tests/testsuite.at: Include local.at, not input.at, fixing
10737 a typo in the 2003-08-25 patch.
10738
10739 2003-08-27 Akim Demaille <akim@epita.fr>
10740
10741 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
10742 GCC warnings.
10743
10744 2003-08-26 Akim Demaille <akim@epita.fr>
10745
10746 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
10747 "<\#" to avoid magic from Gnus when posting parts of this script.
10748
10749 2003-08-26 Akim Demaille <akim@epita.fr>
10750
10751 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
10752 (Parser::parse): here.
10753 Adjust: nerrs and errstatus is now replaced by...
10754 (Parser::nerrs_, Parser::errstatus_): New.
10755
10756 2003-08-25 Akim Demaille <akim@epita.fr>
10757
10758 * config/announce-gen, Makefile.cfg: New.
10759 * Makefile.am: Adjust.
10760 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
10761 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
10762
10763 2003-08-25 Akim Demaille <akim@epita.fr>
10764
10765 When reducing initial empty rules, Bison parser read an initial
10766 location that is not defined. This results in garbage, and that
10767 affects Bison's own parser. Therefore we need (i) to extend Bison
10768 to support a means to initialize this location, and (ii) to use
10769 this CVS Bison to fix CVS Bison's parser.
10770
10771 * src/reader.h, reader.c (epilogue_augment): Remove, replace
10772 with...
10773 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
10774 * src/parse-gram.y: Adjust.
10775 (%initial-action): New.
10776 (%error-verbose): Since we require CVS Bison, there is no reason
10777 not to use it.
10778 * src/scan-gram.l: Adjust.
10779 * src/Makefile.am (YACC): New, to make sure we use our own parser.
10780 * data/yacc.c (yyparse): Use b4_initial_action.
10781
10782 2003-08-25 Akim Demaille <akim@epita.fr>
10783
10784 * doc/bison.texinfo: Don't promote stdout for error messages.
10785
10786 2003-08-25 Akim Demaille <akim@epita.fr>
10787
10788 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
10789 From Alexandre Duret-Lutz.
10790
10791 2003-08-25 Akim Demaille <akim@epita.fr>
10792
10793 Version 1.875c.
10794
10795 2003-08-25 Akim Demaille <akim@epita.fr>
10796
10797 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
10798 Use them.
10799
10800 2003-08-25 Akim Demaille <akim@epita.fr>
10801
10802 * data/lalr1.cc (Parser::reduce_print_): New.
10803 Use it.
10804
10805 2003-08-25 Akim Demaille <akim@epita.fr>
10806
10807 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
10808 error recovery loops. This patch is based on
10809 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
10810 Also, augment the similarity between lalr1.cc and yacc.c.
10811 Note: the locations of error recovery rules are not correct yet.
10812
10813 * data/lalr1.cc: Comment changes to augment the similarity between
10814 lalr1.cc and yacc.c.
10815 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
10816 (yyerrlab1): Remove, but where it used to be (now the bottom part of
10817 yyerrlab), when hitting EOF, pop the whole stack here instead of
10818 merely falling thru the default error handling mechanism.
10819 (yyerrorlab): New label, with the old contents of YYERROR,
10820 plus the following change: pop the stack of rhs corresponding
10821 to the production that invoked YYERROR. That is how Yacc
10822 behaves (required by POSIX).
10823 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
10824 fail.
10825
10826 2003-08-25 Akim Demaille <akim@epita.fr>
10827
10828 Tune local.at so that people can "autom4te -l autotest calc.at -o
10829 calc" for instance, to extract a sub test suite.
10830
10831 * tests/testsuite.at: Move the initialization, Autotest version
10832 requirement, and AT_TESTED invocation into...
10833 * tests/local.at: here.
10834 * tests/testsuite.at: Include it for compatibility with Autoconf
10835 2.57.
10836 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
10837 be ignore.
10838
10839 2003-08-04 Paul Eggert <eggert@twinsun.com>
10840
10841 Rework code slightly to avoid gcc -Wtraditional warnings.
10842 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
10843 The returned value is now stored in *YY0. All callers changed.
10844 * src/output.c (merge_output): Adjust to the above change.
10845
10846 2003-07-26 Paul Eggert <eggert@twinsun.com>
10847
10848 * data/glr.c (YYASSERT): New macro.
10849 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
10850 yyresolveStates, yyprocessOneStack):
10851 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
10852 Derived from a suggestion by Frank Heckenbach.
10853
10854 2003-07-25 Paul Eggert <eggert@twinsun.com>
10855
10856 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
10857 for portability to K&R C (after ansi2knr, presumably). See
10858 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
10859 by Frank Heckenbach, though I have omitted the structure-initialization
10860 part of his glr-knr.diff patch since I recall that the Portable
10861 C Compiler didn't require that change.
10862
10863 Let the user specify how to allocate and free memory.
10864 Derived from a suggestion by Frank Heckenbach in
10865 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
10866 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
10867 All uses of free, malloc, realloc changed to use these macros,
10868 and unnecessary casts removed.
10869 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
10870
10871 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
10872
10873 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
10874 use s.empty() rather than s == "" to test for empty string; see
10875 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
10876 (trivial change)
10877
10878 2003-06-25 Akim Demaille <akim@epita.fr>
10879
10880 * config/depcomp, config/install-sh: Update from masters.
10881
10882 2003-06-20 Paul Eggert <eggert@twinsun.com>
10883
10884 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
10885 and return properly parenthesized result.
10886 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
10887 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10888 Remove unnecessary parentheses from uses.
10889 * doc/bison.texinfo (Location Default Action): Describe the
10890 conventions for parentheses.
10891
10892 2003-06-19 Paul Eggert <eggert@twinsun.com>
10893
10894 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
10895 yyreportTree): Do not assume that size_t is the same width as int,
10896 when printing sizes. Print sizes using an unsigned format.
10897 Problem reported by Frank Heckenbach in
10898 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
10899
10900 Port to Forte Developer 7 C compiler.
10901 * data/glr.c (struct YYLTYPE): If locations are not being used,
10902 declare a single dummy member, as empty structs do not conform
10903 to the C standard.
10904 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
10905 the Forte Developer 7 C compiler complains that end-of-loop
10906 code is not reached.
10907
10908 2003-06-17 Paul Eggert <eggert@twinsun.com>
10909
10910 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
10911 avoid warnings from picky compilers about redefinition of PARAMS.
10912
10913 2003-06-17 Paul Eggert <eggert@twinsun.com>
10914
10915 Version 1.875b.
10916
10917 * NEWS: Document 1.875b.
10918
10919 * lib/bbitset.h: Do not include config.h; that's the includer's job.
10920 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
10921 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
10922 Don't use 'index' in comments, as it's a builtin fn on some hosts.
10923 * lib/bitset_stats.c: Include gettext.h unconditionally, as
10924 per recent gettext manual's suggestion.
10925 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
10926 Use prototypes, not old-style definitions.
10927 * lib/lbitset.c (lbitset_unused_clear): Likewise.
10928 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
10929 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
10930 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
10931 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
10932 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
10933 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
10934 vbitset_or_and_cmp, vbitset_copy): Likewise.
10935
10936 * lib/libiberty.h: Do not include config.h; that's the includer's job.
10937 Do not include <stdlib.h>.
10938 (PARAMS): Define unconditionally for C89.
10939 (ATTRIBUTE_NORETURN): Remove.
10940 (ATTRIBUTE_UNUSED): Define unconditionally.
10941
10942 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
10943 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
10944 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
10945 * lib/vbitset.c, lib/vbitset.h: New files.
10946 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
10947 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
10948 from libbitset.
10949
10950 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
10951 `How Can I Reset @code{yyparse}', since texinfo does not allow
10952 arbitrary @ in node names.
10953
10954 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
10955 shouldn't be needed according to the gettext 0.12.1 documentation
10956 but which seem to be needed anyway: codeset.m4 glibc21.m4
10957 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
10958 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
10959 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
10960
10961 * lib/.cvsignore: Add stdbool.h.
10962 * m4/.cvsignore: Add nls.m4, po.m4.
10963
10964 Upgrade to CVS gnulib.
10965 * stdbool_.h: File renamed from stdbool.h.in.
10966 * configure.ac (AM_STDBOOL_H): Invoke this instead of
10967 AC_HEADER_STDBOOL.
10968 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
10969 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
10970 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
10971 (MOSTLYCLEANFILES): New var.
10972 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
10973 (stdbool.h): New rule.
10974 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
10975 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
10976 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
10977 m4/quote.m4: Upgrade to today's gnulib.
10978
10979 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
10980 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
10981 the tests right now.
10982 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
10983 yyerror are declared before use; C99 requires this.
10984
10985 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10986
10987 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
10988 first.
10989 (yyrecoverSyntaxError): Correct the logic for setting and testing
10990 yyerrState.
10991 Correct comment on handling EOF.
10992 Allow states with only a default reduction, rather than failing
10993 (I can't quite reconstruct why these were not allowed before).
10994
10995 Fixes to avoid problem that $-N rules in GLR parsers can cause
10996 buffer overruns, corrupting state.
10997
10998 * src/output.c (prepare_rules): Output max_left_semantic_context
10999 definition.
11000 * src/reader.h (max_left_semantic_context): New variable declaration.
11001 * src/scan-gram.l (max_left_semantic_context): Define.
11002 (handle_action_dollar): Update max_left_semantic_context.
11003 * data/glr.c (YYMAXLEFT): New definition.
11004 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
11005 (yyresolveAction): Ditto.
11006
11007 Fixes to problems with location handling in GLR parsers reported by
11008 Frank Heckenbach (2003/06/05).
11009
11010 * data/glr.c (YYLTYPE): Make trivial if locations not used.
11011 (YYRHSLOC): Add parentheses, and define only if locations used.
11012 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
11013 locations not used.
11014 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
11015 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
11016
11017 * tests/cxx-type.at: Exercise location information; update tests
11018 to differentiate output with and without locations.
11019 Remove forward declarations of yylex and yyerror---caused errors
11020 because default YYLTYPE not yet defined.
11021 Change semantic actions to compute strings, rather than printing
11022 them directly (to test proper passing of semantics values). Change
11023 output to prefix notation and update test data and expected results.
11024 (yylex): Track locations.
11025 (stmtMerge): Return value rather than printing, and include arguments
11026 in value.
11027
11028 2003-06-03 Paul Eggert <eggert@twinsun.com>
11029
11030 Avoid warnings generated by GCC 2.95.4 when Bison is
11031 configured with --enable-gcc-warnings.
11032 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
11033 yy::]b4_parser_class_name[::translate_,
11034 yy::Stack::operator[] (unsigned),
11035 yy::Stack::operator[] (unsigned) const,
11036 yy::Slice::operator[] (unsigned),
11037 yy::Slice::operator[] (unsigned) const):
11038 Rename local vars to avoid warnings.
11039 * tests/glr-regression.at (Improper handling of embedded actions
11040 and $-N in GLR parsers): Remove unused local variable from yylex.
11041 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
11042 (void) as arg when not pure, since we now assume C89 when building
11043 Bison. Pacify GCC by using parameter.
11044
11045 2003-06-02 Paul Eggert <eggert@twinsun.com>
11046
11047 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
11048 yy::Location::lines, yy::Location::columns): Rename arguments
11049 to avoid shadowing; this removes a warning generated by GCC 3.3.
11050
11051 2003-06-01 Paul Eggert <eggert@twinsun.com>
11052
11053 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
11054 to g++, as GCC 3.3 complains if you do it.
11055 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
11056 everything that WARNING_CFLAGS has, except omit warnings
11057 not suitable for C++.
11058 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
11059 * tests/atlocal.in (CXXFLAGS): New var.
11060 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
11061
11062 Fix a GLR parser bug I reported in February; see
11063 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
11064 The problem was that GLR parsers did not conform to the C standard,
11065 because actions like { $1 = $2 + $3; } expanded to expressions
11066 that invoked YYFILL in separate subexpressions, and YYFILL assigned
11067 to a local variable. The C standard says that expressions
11068 like (var = f ()) + (var = f ()) have undefined behavior.
11069 Another problem was that GCC sometimes issues warnings that
11070 yyfill and its parameters are unused.
11071
11072 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
11073 as possibly unused.
11074 (yyfill): New function.
11075 (YYFILL): Use it.
11076 (yyuserAction): Change type of yynormal to bool, so that it matches
11077 the new yyfill signature. Mark it as possibly unused.
11078
11079
11080 Follow up on a bug I reported in February, where a Bison-generated
11081 parser can loop. Provide a test case and a fix for yacc.c. I
11082 don't have a fix for lalr1.cc or for glr.c, unfortunately.
11083 The original bug report is in:
11084 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
11085
11086 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
11087 macro's size was becoming unwieldy.
11088 (yyerrlab): Do not discard an empty lookahead symbol, as this
11089 might destroy garbage.
11090 (yyerrorlab): New label, with the old contents of YYERROR,
11091 plus the following change: pop the stack of rhs corresponding
11092 to the production that invoked YYERROR. That is how Yacc
11093 behaves, and POSIX requires this behavior.
11094 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
11095 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
11096 Define 'alarm' to do nothing if unistd.h is not available.
11097 Add a new rule "exp: '-' error;" to test the above change to
11098 data/yacc.c. Use 'alarm' to abort any test taking longer than
11099 10 seconds, as it's probably looping.
11100 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
11101 Also, the new yacc.c generates two fewer diagnostics for an
11102 existing test.
11103
11104 2003-05-24 Paul Eggert <eggert@twinsun.com>
11105
11106 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
11107 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
11108 This fixes a problem reported by John Bowman when the Compaq/HP
11109 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
11110 -ansi -Wall -gall).
11111 * data/yacc.c (union yyalloc): Likewise.
11112 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
11113
11114 Switch from 'int' to 'bool' where that makes sense.
11115
11116 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
11117 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
11118 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
11119 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
11120 Return or accept bool, not int. All callers changed.
11121 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
11122 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
11123 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
11124 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
11125 bitset_or_and_cmp_): Likewise.
11126 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
11127 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
11128 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
11129 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
11130 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
11131 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
11132 bitset_stats_or_and_cmp): Likewise.
11133 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
11134 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
11135 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
11136 ebitset_xor_cmp): Likewise.
11137 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
11138 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
11139 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
11140 lbitset_xor_cmp): Likewise.
11141 * lib/bbitset.h: Include <stdbool.h>.
11142 (struct bitset_vtable): The following members now return bool, not
11143 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
11144 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
11145 or_and_cmp).
11146 * src/conflicts.c (count_rr_conflicts): Likewise.
11147 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
11148 All uses changed.
11149 * lib/ebitset.c (ebitset_obstack_init): Likewise.
11150 * lib/lbitset.c (lbitset_obstack_init): Likewise.
11151 * src/getargs.c (debug_flag, defines_flag, locations_flag,
11152 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11153 graph_flag): Likewise.
11154 * src/getargs.h (debug_flag, defines_flag, locations_flag,
11155 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11156 graph_flag): Likewise.
11157 * src/output.c (error_verbose): Likewise.
11158 * src/output.h (error_verbose): Likewise.
11159 * src/reader.c (start_flag, typed): Likewise.
11160 * src/reader.h (typed): Likewise.
11161 * src/getargs.c (LOCATIONS_OPTION): New constant.
11162 (long_options, getargs): Use it.
11163 * src/lalr.c (build_relations): Use bool, not int.
11164 * src/nullable.c (nullable_compute): Likewise.
11165 * src/print.c (print_reductions): Likewise.
11166 * src/tables.c (action_row, pack_vector): Likewise.
11167 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
11168 * src/output.c (prepare): Use it.
11169 * src/output.c (token_definitions_output,
11170 symbol_destructors_output, symbol_destructors_output): Use string,
11171 not boolean integer, to keep track of whether to output separator.
11172 * src/print_graph.c (print_core): Likewise.
11173 * src/state.c (state_rule_lookaheads_print): Likewise.
11174
11175 * config/install-sh: Sync from automake 1.7.5.
11176
11177 2003-05-14 Paul Eggert <eggert@twinsun.com>
11178
11179 * src/parse-gram.y (rules_or_grammar_declaration): Require a
11180 semicolon after a grammar declaration, in the interest of possible
11181 future changes to the Bison input language.
11182 Do not allow a stray semicolon at the start of the grammar.
11183 (rhses.1): Allow one or more semicolons after any rule, including
11184 just before "|" as required by POSIX.
11185 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
11186 grammar.
11187
11188 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
11189
11190 %parse-param support for lalr1.cc.
11191
11192 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
11193 b4_cc_constructor_calls, b4_cc_constructor_call,
11194 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
11195 definitions.
11196 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
11197 parse-param arguments.
11198 (yy::b4_parser_class_name): Declare instance variables to
11199 hold parse-param arguments.
11200 * tests/calc.at: s/value/semantic_value/ because value clashes
11201 with a member of yy::b4_parser_class_name. Adjust C++ code
11202 to handle %parse-param. Enable %parse-param test in C++.
11203
11204 2003-05-12 Paul Eggert <eggert@twinsun.com>
11205
11206 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
11207 English a bit. Fix fclose typo. Change "const char" to "char
11208 const", and use ANSI C rather than K&R for "main". Suggest
11209 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
11210 and suggest yy_switch_to_buffer.
11211
11212 2003-05-05 Paul Eggert <eggert@twinsun.com>
11213
11214 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
11215 C89. This avoids a diagnostic on compilers that define __STDC__
11216 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
11217 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11218
11219 2003-05-03 Paul Eggert <eggert@twinsun.com>
11220
11221 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
11222 Do not overrun array bounds.
11223 This should fix a bug reported today by Olatunji Oluwabukunmi in
11224 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
11225
11226 2003-04-29 Akim Demaille <akim@epita.fr>
11227
11228 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
11229 * src/getargs.c, src/getargs.h: here, as bool, not int.
11230 (nondeterministic_parser): New.
11231 * src/parse-gram.y, src/scan-gram.l: Support
11232 %nondeterministic-parser.
11233 * src/output.c (prepare): Use nondeterministic_parser instead
11234 of glr_parser where appropriate.
11235 * src/tables.c (conflict_row, action_row, save_row)
11236 (token_actions, token_actions, pack_vector): Ditto.
11237
11238 2003-04-29 Akim Demaille <akim@epita.fr>
11239
11240 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
11241
11242 2003-04-29 Akim Demaille <akim@epita.fr>
11243
11244 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
11245 with %pure-parser and %locations to exercise the patch from Yakov
11246 Markovitch below.
11247
11248 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
11249
11250 * data/yacc.c: (b4_lex_param): Corrected for the case where
11251 %lex-param is provided and %pure-parser isn't.
11252
11253 2003-04-27 Paul Eggert <eggert@twinsun.com>
11254
11255 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
11256 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
11257 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
11258 if it is not defined.
11259 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
11260
11261 2003-04-26 Paul Eggert <eggert@twinsun.com>
11262
11263 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
11264 Declare to be of type suitable for the ninf value itself, not of
11265 type suitable for the corresponding table, since the latter might
11266 be unsigned but the ninf value might be negative. This fixes a
11267 bug reported by Alexandre Duret-Lutz in
11268 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
11269
11270 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
11271 invokes it. We shouldn't invoke it twice because it will attempt
11272 to put error.o in the archive twice. This fixes a glitch reported
11273 by Martin Mokrejs in
11274 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11275
11276 2003-04-21 Paul Eggert <eggert@twinsun.com>
11277
11278 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
11279 to gnulib.
11280
11281 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
11282
11283 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
11284 Fix obvious typo that results in uncompilable GLR parsers
11285 when both %pure-parser and %locations are used. (trivial change)
11286
11287 2003-04-17 Paul Eggert <eggert@twinsun.com>
11288
11289 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
11290 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
11291 Do not insert the expected token via unput, as this runs afoul
11292 of a POSIX-compatibility bug in flex 2.5.31.
11293 All uses changed to BEGIN the parent state,
11294 since we no longer insert the expected token via unput.
11295 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
11296 that is no longer emitted after the above change.
11297
11298 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
11299 the first one. This change is from Paul Hilfinger, and it fixes
11300 regression reported by Werner Lemberg in
11301 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
11302
11303 (resolve_sr_conflict): Don't invoke state_errs_set
11304 unless one or more tokens have been explicitly made errors.
11305 Otherwise, the above change causes Bison to abort.
11306
11307 * tests/existing.at (GNU pic Grammar): New test case, taken from
11308 Lemberg's email.
11309
11310 2003-03-31 Akim Demaille <akim@epita.fr>
11311
11312 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
11313
11314 2003-03-31 Akim Demaille <akim@epita.fr>
11315
11316 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11317 output.
11318
11319 2003-03-31 Akim Demaille <akim@epita.fr>
11320
11321 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11322 From Paul Hilfinger.
11323
11324 2003-03-29 Akim Demaille <akim@epita.fr>
11325
11326 * m4/error.m4: Do not put under dynamic conditions some code which
11327 expansion is under static control.
11328
11329 2003-03-29 Akim Demaille <akim@epita.fr>
11330
11331 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11332
11333 2003-03-29 Akim Demaille <akim@epita.fr>
11334
11335 * doc/bison.texinfo (Strings are Destroyed): New.
11336
11337 2003-03-13 Paul Eggert <eggert@twinsun.com>
11338
11339 * .cvsignore: Add configure.lineno.
11340 * src/.cvsignore: Add yacc.
11341 * tests/.cvsignore: Add testsuite.log.
11342 * doc/fdl.texi: Sync with latest FSF version.
11343
11344 2003-03-12 Paul Eggert <eggert@twinsun.com>
11345
11346 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11347 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11348 cursor, instead of leaving it undefined. This fixes a bug
11349 reported by Tim Van Holder in
11350 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
11351 * tests/input.at (Torturing the Scanner): Test the scanner on
11352 an empty input file, which was Tim Van Holder's test case.
11353
11354 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11355 <sys/resource.h> can be included, include sys/time.h and
11356 sys/times.h first, if available. This works around the SunOS
11357 4.1.4 porting bug reported by Bruce Becker in
11358 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
11359
11360 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11361 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11362 AC_HEADER_SYS_WAIT.
11363
11364 Merge changes from gnulib. This was prompted because the CVS
11365 snapshot didn't build on Solaris 7 due to strnlen problems.
11366
11367 These changes need to be merged back into gnulib:
11368 * lib/hash.c: Include <stdbool.h> unconditionally.
11369 * m4/onceonly.m4 (m4_quote): New macro.
11370 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11371 Quote AC_FOREACH variable-expansions properly.
11372 The 2003-01-03 obstack.h change also needs merging.
11373 {end of changes requiring merging}
11374
11375 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11376 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11377 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11378 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11379 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11380 New files, imported from gnulib.
11381 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11382 above.
11383
11384 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11385 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11386 gnulib sources.
11387
11388 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11389 Add.
11390 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11391 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11392 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11393 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11394 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11395 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11396 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11397 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11398 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11399 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11400 (jm_PREREQ_ARGMATCH): Remove.
11401 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11402 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11403
11404 * src/system.h: Include <stdbool.h> unconditionally.
11405
11406 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11407 assuming at least C89 in the bitset code for some time now.
11408
11409 2003-03-03 Akim Demaille <akim@epita.fr>
11410
11411 * ro.po: New.
11412
11413 2003-03-02 Akim Demaille <akim@epita.fr>
11414
11415 * doc/bison.texinfo (Table of Symbols): Reactivate the
11416 documentation for %lex-param, and %parse-param.
11417
11418 2003-03-02 Akim Demaille <akim@epita.fr>
11419
11420 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11421 generate verbose error messages.
11422 Use the number of tokens as an upper bound in yytname, as it
11423 cannot be a non terminal.
11424
11425 2003-03-02 Akim Demaille <akim@epita.fr>
11426
11427 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11428 message.
11429
11430 2003-03-02 Akim Demaille <akim@epita.fr>
11431
11432 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11433 Use them to exercise yycheck overrun.
11434 Based on Andrew Suffield's grammar.
11435
11436 2003-03-02 Akim Demaille <akim@epita.fr>
11437
11438 Create tests/local.at for Bison generic testing macros.
11439
11440 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11441 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11442 This new file.
11443 * tests/calc.at (AT_CHECK_CALC): Adjust.
11444 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11445 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11446 * tests/local.at: here.
11447 (AT_COMPILE_CXX): Tags the tests using it as c++.
11448 Ignore the test if CXX is not functional.
11449
11450 2003-03-01 Paul Eggert <eggert@twinsun.com>
11451
11452 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11453 not loc->end, since loc->end might contain garbage and this leads
11454 to undefined behavior on some platforms.
11455 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11456 depend on *loc, so that the reader doesn't give the the false
11457 impression that *loc is initialized.
11458 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11459 does not survive the return.
11460
11461 2003-03-01 Akim Demaille <akim@epita.fr>
11462
11463 * src/scan-gram.l (code_start): Always initialize it when entering
11464 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11465 yylex invocation. An alternative would be making it static, but
11466 then it starts with the second %%'s beginning, instead of its end.
11467
11468 2003-02-28 Paul Eggert <eggert@twinsun.com>
11469
11470 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11471 around a UnixWare 7.1.1 porting bug reported by John Hughes in
11472 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
11473
11474 2003-02-26 Paul Eggert <eggert@twinsun.com>
11475
11476 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11477 Remove Sequent/Pyramid discussion (nobody uses them any more).
11478 Merge VMS and MS-DOS discussion; these ports may well be dead
11479 but let's keep mentioning them for now. Put <> around email
11480 addresses. Add copyright notice.
11481
11482 2003-02-24 Paul Eggert <eggert@twinsun.com>
11483
11484 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11485 to avoid collision with flex use of yylineno.
11486 Problem reported by Bruce Lilly in
11487 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
11488 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11489 * data/yacc.c (yy_reduce_print): Likewise.
11490
11491 * config/depcomp: Sync with Automake 1.7.3.
11492
11493 2003-02-21 Akim Demaille <akim@epita.fr>
11494
11495 * data/lalr1.cc: Use temporary variables instead of casts to
11496 change integer types.
11497 Suggested by Paul Eggert.
11498
11499 2003-02-21 Akim Demaille <akim@epita.fr>
11500
11501 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11502 to avoid confusions with lalr1.cc's notion of Position.
11503 Suggested by Paul Eggert.
11504
11505 2003-02-20 Akim Demaille <akim@epita.fr>
11506
11507 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11508 before initial_columns.
11509 (location.hh): Use consistent variable names when defining the
11510 operator<<.
11511 Use "last" so that we subtract from Positions, not from unsigned.
11512
11513 2003-02-20 Akim Demaille <akim@epita.fr>
11514
11515 * data/lalr1.cc (position.hh): New subfile, including the extended
11516 and Doxygen'ed documentation of class Position.
11517 (location.hh): Use it.
11518 Document a` la Doxygen.
11519 With the help of Benoit Perrot.
11520
11521 2003-02-20 Akim Demaille <akim@epita.fr>
11522
11523 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11524 AT_YACC_IF.
11525 Redefine AT_YYERROR_SEES_LOC_IF using it.
11526 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11527 not defined.
11528 Don't use the location in yy::Parser::error_ and
11529 yy::Parser::print_ when not %locations.
11530 Activate more lalr1.cc tests.
11531
11532 2003-02-19 Akim Demaille <akim@epita.fr>
11533
11534 * data/lalr1.cc: When displaying a line number, be sure to make it
11535 an int.
11536
11537 2003-02-19 Akim Demaille <akim@epita.fr>
11538
11539 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11540 Remove, useless.
11541 (YYABORT, YYACCEPT, YYERROR): New.
11542 * tests/calc.at: Renable the lalr1.cc test.
11543
11544 2003-02-19 Akim Demaille <akim@epita.fr>
11545
11546 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11547 error recovery, mixing with/without pops and discarding of the
11548 lookahead.
11549 Exercise YYERROR.
11550 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11551
11552 2003-02-17 Paul Eggert <eggert@twinsun.com>
11553
11554 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11555 * tests/testsuite.at (AT_COMPILE): Use them.
11556 This fixes the testsuite problem reported by Robert Lentz in
11557 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
11558
11559 2003-02-12 Paul Eggert <eggert@twinsun.com>
11560
11561 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11562 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
11563 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
11564 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11565 Check for malloc failure, for consistency with yacc.c.
11566 (yytname_size): Remove, for consistency with yacc.c.
11567
11568 The bug still remains in data/lalr1.cc, as I didn't have time
11569 to fix it there.
11570
11571 2003-02-06 Akim Demaille <akim@epita.fr>
11572
11573 * configure.ac (GXX): Rename as...
11574 (CXX): this, to keep the original Autoconf semantics.
11575 Require 2.57.
11576 * data/lalr1.cc: Fix b4_copyright invocations.
11577 If YYDEBUG is not defined, don't depend upon name_ being defined.
11578 (location.hh): Include string and iostream.
11579 (Position::filename): New member.
11580 (Position::Position ()): New.
11581 (operator<< (Position)): New.
11582 (operator- (Position, int)): New.
11583 (Location::first, Location::last): Rename as...
11584 (Location::begin, Location::end): these, to mock the conventional
11585 iterator names.
11586 (operator<< (Location)): New.
11587 * tests/atlocal.in (CXX): New.
11588 * tests/testsuite.at (AT_COMPILE_CXX): New.
11589 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11590 locations in a more synthetic way.
11591 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11592 lalr1.cc is used.
11593 Adjust the C locations to match those from Emacs: first column is
11594 column 0.
11595 Change all the expected results.
11596 Conform to the GCS: simplify the locations when applicable.
11597 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11598 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11599 these CPP macros with the m4 macros new defined by...
11600 (AT_CHECK_PUSHDEFS): this, i.e.:
11601 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
11602 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
11603 New macros.
11604 (AT_CHECK_POPDEFS): Undefine them.
11605 (AT_CHECK_CALC_LALR1_CC): New.
11606 Use it for the first lalr1.cc test.
11607
11608 2003-02-04 Akim Demaille <akim@epita.fr>
11609
11610 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11611 Location as is defined.
11612
11613 2003-02-04 Akim Demaille <akim@epita.fr>
11614
11615 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11616 name_ being defined.
11617
11618 2003-02-03 Paul Eggert <eggert@twinsun.com>
11619
11620 * src/gram.h (start_symbol): Remove unused decl.
11621
11622 Use more-consistent naming conventions for local vars.
11623
11624 * src/derives.c (derives_compute): Change type of local var from
11625 int to rule_number.
11626 * src/gram.c (grammar_rules_partial_print): Likewise.
11627 * src/print.c (print_core): Likewise.
11628 * src/reduce.c (reduce_grammar_tables): Likewise.
11629
11630 * src/gram.c (grammar_dump): Change name of item_number *
11631 local var from r to rp.
11632 * src/nullable.c (nullable_compute): Likewise.
11633
11634 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11635
11636 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11637 for symbol or symbol_number var.
11638 * src/reader.c (grammar_start_symbol_set): Likewise.
11639 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11640 Likewise.
11641 * src/state.c (transitions_to): Likewise.
11642 * src/state.h: Likewise.
11643 * src/tables.c (symbol_number_to_vector_number): Likewise.
11644
11645 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11646 char * var.
11647
11648 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11649 var.
11650
11651 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11652 var.
11653
11654 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11655 Use str, not s, for char * var. Use ch, not c, for character var.
11656 Use size for size var.
11657
11658 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
11659 char * var.
11660 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
11661 uniqstr var.
11662 * src/uniqstr.h: Likewise.
11663
11664 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11665 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11666 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
11667 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
11668 param to have same name as that of enum, so that we don't use
11669 "s" to stand for a non-state.
11670
11671 2003-02-02 Akim Demaille <akim@epita.fr>
11672
11673 * src/scan-skel.l: Scan more than one inert character per yylex
11674 invocation.
11675
11676 2003-02-01 Paul Eggert <eggert@twinsun.com>
11677
11678 Version 1.875a.
11679
11680 * po/LINGUAS: Add ms.
11681
11682 2003-01-30 Akim Demaille <akim@epita.fr>
11683
11684 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
11685
11686 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11687
11688 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
11689 of $1.
11690
11691 Changes in response to error report by S. Eken: GLR mode does not
11692 handle negative $ indices or $ indices in embedded rules correctly.
11693 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
11694
11695 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
11696 (b4_rhs_location): Ditto.
11697 (yyfill): New function to copy from stack tree into array
11698 incrementally.
11699 (yyuserAction): Modify to allow incremental move of semantic values
11700 to rhs array when in GLR mode.
11701 Define YYFILL to use in user-defined actions to fill semantic array
11702 as needed.
11703 Remove dummy use of yystack, as there is now a guaranteed use.
11704 (yydoAction): Modify to allow incremental move of semantic values
11705 to rhs array when in GLR mode.
11706 (yyresolveAction): Ditto.
11707 (yyglrShiftDefer): Update comment.
11708 (yyresolveStates): Use X == NULL for pointers, not !X.
11709 (yyglrReduce): Ditto.
11710 (yydoAction): Ditto
11711
11712 * tests/glr-regr1.at: Rename to ...
11713 * tests/glr-regression.at: Add new regression test for the problems
11714 described above (adapted from S. Eken).
11715 Update copyright notice.
11716 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
11717 * tests/Makefile.am: Ditto.
11718
11719 2003-01-28 Paul Eggert <eggert@twinsun.com>
11720
11721 * data/lalr1.cc: Do not use @output_header_name@ unless
11722 b4_defines_flag is set. This fixes two bugs reported by
11723 Tim Van Holder in
11724 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
11725 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
11726
11727 2003-01-21 Paul Eggert <eggert@twinsun.com>
11728
11729 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
11730 we don't need to worry about yyerrlab1 being reported as an
11731 "unused label" by non-GCC C compilers. The downside is that if
11732 locations are used then a couple of statements are duplicated each
11733 time YYERROR is invoked, but the upside is that the warnings
11734 should vanish.
11735 (yyerrlab1): Move code to YERROR.
11736 (yyerrlab2): Remove. Change uses back to yyerrlab1.
11737 This reverts some of the 2002-12-27 change.
11738
11739 2003-01-17 Paul Eggert <eggert@twinsun.com>
11740
11741 * src/output.c (symbol_printers_output): Fix typo that led
11742 to core dump. Problem reported by Antonio Rus in
11743 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
11744
11745 2003-01-13 Akim Demaille <akim@epita.fr>,
11746 Quoc Peyrot <chojin@lrde.epita.fr>,
11747 Robert Anisko <anisko_r@lrde.epita.fr>
11748
11749 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
11750 when the stacks contain one element, as the loop would otherwise
11751 free the last state, and then use the top state (the one we just
11752 popped). This means that the initial elements will not be freed
11753 explicitly, as is the case in yacc.c; it is not a problem, as
11754 these elements have fake values.
11755
11756 2003-01-11 Paul Eggert <eggert@twinsun.com>
11757
11758 * NEWS: %expect-violations are now just warnings, reverting
11759 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
11760 bootstrapping problem reported by Matthias Klose; see
11761 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
11762 * src/conflicts.c (conflicts_print): Likewise.
11763 * tests/conflicts.at (%expect not enough, %expect too much,
11764 %expect with reduce conflicts): Likewise.
11765 * doc/bison.texinfo (Expect Decl): Document this. Also mention
11766 that the warning is enabled if the number of conflicts changes
11767 (not necessarily increases).
11768
11769 * src/getargs.c (version): Update copyright year.
11770
11771 2003-01-09 Akim Demaille <akim@epita.fr>
11772
11773 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
11774
11775 2003-01-08 Paul Eggert <eggert@twinsun.com>
11776
11777 * Makefile.maint (WGETFLAGS):
11778 New macro, containing "-C off" to disable proxy caches.
11779 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
11780 (rel-check): Use $(WGET) instead of wget.
11781
11782 2003-01-06 Paul Eggert <eggert@twinsun.com>
11783
11784 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
11785 the GLR paper of Scott, Johnstone and Hussain.
11786
11787 2003-01-04 Paul Eggert <eggert@twinsun.com>
11788
11789 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
11790 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
11791 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
11792 (EXTRA_LIBRARIES): New var, for liby.a.
11793 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
11794 (EXTRA_SCRIPTS): New var, for yacc.
11795
11796 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
11797 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
11798 Problem reported by Nelson H. F. Beebe.
11799
11800 2003-01-03 Paul Eggert <eggert@twinsun.com>
11801
11802 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
11803 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
11804 when compiling Bison 1.875's `bitset bset = obstack_alloc
11805 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
11806
11807 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
11808 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
11809 grow to a huge size with typical invocation.
11810
11811 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
11812 Use the pattern recommended by Autoconf 2.57, except also protect
11813 against double-definition.
11814 * src/system.h: Likewise.
11815 Portability issues reported by Nelson H. F. Beebe.
11816
11817 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
11818 All uses changed. Provide a definition in both C and C++.
11819 (yytrue, yyfalse): Define even if defined (__cplusplus).
11820
11821 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
11822 Reported by Nelson H. F. Beebe.
11823
11824 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
11825
11826 2003-01-02 Paul Eggert <eggert@twinsun.com>
11827
11828 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
11829 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
11830 Bug reported by Nelson H. F. Beebe.
11831
11832 2003-01-01 Paul Eggert <eggert@twinsun.com>
11833
11834 * Version 1.875.
11835
11836 2002-12-30 Paul Eggert <eggert@twinsun.com>
11837
11838 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
11839 Moved here from...
11840 (<INITIAL>","): Here. This causes stray "," to be treated
11841 more uniformly.
11842
11843 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
11844 last brace in braced code when not in Yacc mode, for compatibility
11845 with Bison 1.35. This resurrects the 2001-12-15 patch to
11846 src/reader.c.
11847
11848 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
11849 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
11850
11851 2002-12-28 Paul Eggert <eggert@twinsun.com>
11852
11853 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
11854 that of SYM's type. This fixes Debian bug 168069, reported by
11855 Thomas Olsson.
11856
11857 2002-12-28 Paul Eggert <eggert@twinsun.com>
11858
11859 Version 1.75f.
11860
11861 Switch back to the Yacc style of conflict reports, undoing some
11862 of the 2002-07-30 change.
11863 * doc/bison.texinfo (Understanding): Use Yacc style for
11864 conflict reports. Also, use new way of locating rules.
11865 * src/conflicts.c (conflict_report):
11866 Renamed from conflict_report_yacc, removing the old
11867 'conflict_report'. Translate the entire conflict report at once,
11868 so that we don't assume that "," has the same interpretation in
11869 all languages.
11870 (conflicts_output): Use Yacc-style conflict report for each state,
11871 instead of our more-complicated style.
11872 (conflicts_print): Use Yacc-style conflict report, except print
11873 the input file name when not emulating Yacc.
11874 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
11875 Conflicted Reduction, %expect not enough, %expect too much,
11876 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
11877 * tests/existing.at (GNU Cim Grammar): Likewise.
11878 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
11879
11880 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
11881 fatal): Don't invoke fflush; it's not needed and it might even be
11882 harmful for stdout, as stdout might not be open.
11883 * src/reduce.c (reduce_print): Likewise.
11884
11885 2002-12-27 Paul Eggert <eggert@twinsun.com>
11886
11887 Fix a bug where error locations were not being recorded correctly.
11888 This problem was originally reported by Paul Hilfinger in
11889 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
11890
11891 * data/yacc.c (yyparse): New local var yylerrsp, to record the
11892 top of the location stack's error locations.
11893 (yyerrlab): Set it. When discarding a token, push its location
11894 onto yylerrsp so that we don't lose track of the error's end.
11895 (yyerrlab1): Now is only the target of YYERROR, so that we can
11896 properly record the location of the action that failed. For GCC
11897 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
11898 GCC warning about yyerrlab1 being unused if YYERROR is unused.
11899 (yyerrlab2): New label, which yyerrlab now falls through to.
11900 Compute the error's location by applying YYLLOC_DEFAULT to
11901 the locations of all the symbols that went into the error.
11902 * doc/bison.texinfo (Location Default Action): Mention that
11903 YYLLOC_DEFAULT is also invoked for syntax errors.
11904 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11905 Error locations include the locations of all the tokens that were
11906 discarded, not just the last token.
11907
11908 2002-12-26 Paul Eggert <eggert@twinsun.com>
11909
11910 * src/files.c: Include quote.h.
11911 (compute_output_file_names): Warn if we detect conflicting
11912 outputs to the same file. This should catch the misunderstanding
11913 exemplified by Debian Bug 165349, reported by Bruce Stephens..
11914
11915 * src/conflicts.c (conflicts_print): If the user specifies
11916 "%expect N", report an error if there are any reduce/reduce
11917 conflicts. This is what the manual says should happen.
11918 This fixes Debian bug 130890, reported by Anthony DeRobertis.
11919 * tests/conflicts.at (%expect with reduce conflicts): New test.
11920
11921 Don't use m4_include on relative file names, as it doesn't work as
11922 desired if there happens to be a file with that name under ".".
11923
11924 * m4sugar/version.m4: Remove; it was included but it wasn't used.
11925 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
11926 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
11927 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
11928 * src/output.c (output_skeleton): Use full path names when
11929 specifying a file to include; don't rely on include path, as
11930 it's unreliable when the working file contains a file with
11931 that name.
11932
11933 2002-12-25 Paul Eggert <eggert@twinsun.com>
11934
11935 Remove obsolete references to bison.simple and bison.hairy.
11936 Problem mentioned by Aubin Mahe in
11937 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
11938 * data/glr.c: Comment fix.
11939 * doc/bison.1: Remove references. Also, mention "yacc".
11940
11941 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
11942 with -g option.
11943
11944 * src/parse-gram.y (declaration): Use enum "report_states" rather
11945 than its numeric value 1.
11946
11947 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
11948 opening a new one. This fixes Debian bug 165349, reported by
11949 Bruce Stephens.
11950
11951 2002-12-24 Paul Eggert <eggert@twinsun.com>
11952
11953 Version 1.75e.
11954
11955 * Makefile.maint (cvs-update): Don't assume that the shell
11956 supports $(...), as Solaris sh doesn't.
11957
11958 * src/parse-gram.y (lloc_default): Remove test for empty
11959 nonterminals at the end, since it didn't change the result.
11960
11961 2002-12-24 Paul Eggert <eggert@twinsun.com>
11962
11963 If the user does not define YYSTYPE as a macro, Bison now declares it
11964 using typedef instead of defining it as a macro. POSIX requires this.
11965 For consistency, YYLTYPE is also declared instead of defined.
11966
11967 %union directives can now have a tag before the `{', e.g., the
11968 directive `%union foo {...}' now generates the C code
11969 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
11970 The default union tag is `YYSTYPE', for compatibility with Solaris 9
11971 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
11972 instead of `yyltype'.
11973
11974 `yystype' and `yyltype' are now obsolescent macros instead of being
11975 typedefs or tags; they are no longer documented and will be
11976 withdrawn in a future release.
11977
11978 * data/glr.c (b4_location_type): Remove.
11979 (YYSTYPE): Renamed from yystype.
11980 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
11981 (struct YYLTYPE): Renamed from struct yyltype.
11982 (YYLTYPE): Renamed from yyltype.
11983 (yyltype, yystype): New (and obsolescent) macros,
11984 for backward compatibility.
11985 * data/yacc.c: Likewise.
11986
11987 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
11988 does not specify a union tag. This is for compatibility with
11989 Solaris 9 yacc.
11990
11991 * src/parse-gram.y (add_param): 2nd arg is now char * not char
11992 const *, since it is now modified by stripping surrounding { }.
11993 (current_braced_code): Remove.
11994 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
11995 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
11996 trailing " {...}". Now of type <chars>.
11997 (grammar_declaration): Adjust to bundled tokens.
11998 (code_content): Remove; stripping is now done by add_param.
11999 (print_token_value): Print contents of bundled tokens.
12000 (token_name): New function.
12001
12002 * src/reader.h (braced_code, current_braced_code): Remove.
12003 (token_name): New decl.
12004
12005 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
12006 token_type, not braced_code code_kind. All uses changed.
12007 (SC_PRE_CODE): New state, for scanning after a keyword that
12008 has (or usually has) an immediately-following braced code.
12009 (token_type): New local var, to keep track of which token type
12010 to return when scanning braced code.
12011 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
12012 <INITIAL>"%parse-param", <INITIAL>"%printer",
12013 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
12014 instead of returning a token type immediately.
12015 (<INITIAL>"{"): Set token type.
12016 (<SC_BRACED_CODE>"}"): Use it.
12017 (handle_action_dollar, handle_action_at): Now returns bool
12018 indicating success. Fail if ! current_rule; this prevents a core dump.
12019 (handle_symbol_code_dollar, handle_symbol_code_at):
12020 Remove; merge body into caller.
12021 (handle_dollar, handle_at): Complain in invalid contexts.
12022
12023 * NEWS, doc/bison.texinfo: Document the above.
12024 * NEWS: Fix years and program names in copyright notice.
12025
12026 2002-12-17 Paul Eggert <eggert@twinsun.com>
12027
12028 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
12029 Reporting, Table of Symbols): Omit mentions of %lex-param and
12030 %parse-param from the documentation for now.
12031
12032 2002-12-15 Paul Eggert <eggert@twinsun.com>
12033
12034 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
12035 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
12036 lookahead symbol, and which sets yychar in parser actions) and it
12037 disagreed with the Bison documentation. Bug
12038 reported by Andrew Walrond.
12039
12040 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
12041 as the caller now does that.
12042 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
12043 (YYEMPTY): Parenthesize right hand side, since others use it.
12044 (yyparse): Don't assume that our generated code is the only code
12045 that sets yychar.
12046
12047 2002-12-13 Paul Eggert <eggert@twinsun.com>
12048
12049 Version 1.75d.
12050
12051 POSIX requires a "yacc" command.
12052 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
12053 (MOSTLYCLEANFILES): Add yacc.
12054 (yacc): New rule.
12055 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
12056 as an alias for bison y.
12057
12058 * po/LINGUAS: Add da.
12059
12060 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
12061 problem with latest <getopt.h>.
12062 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
12063
12064 * doc/fdl.texi: Upgrade to 1.2.
12065 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
12066 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
12067 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
12068 gnulib.
12069 * config/install-sh: Sync with autotools.
12070
12071 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
12072 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12073 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
12074 locations are requested.
12075 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
12076 locations are requested.
12077
12078 2002-12-12 Paul Eggert <eggert@twinsun.com>
12079
12080 Remove unportable casts and storage allocation tricks.
12081 While we're at it, remove almost all casts, since they
12082 usually aren't needed and are a sign of trouble.
12083
12084 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
12085
12086 * src/derives.c (derives_compute): Do not subtract NTOKENS from
12087 the pointer DSET returned by malloc; this isn't portable.
12088 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
12089 Similarly for DERIVES.
12090 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
12091 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
12092 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
12093
12094 * src/derives.c (derives_compute): Do not bother invoking
12095 int_of_rule_number, since rule numbers are integers.
12096
12097 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
12098 rather than XMALLOC (char, N).
12099
12100 * src/files.c (filename_split): Rewrite to avoid cast.
12101
12102 * src/gram.h (symbol_number_as_item_number,
12103 item_number_as_symbol_number, rule_number_as_item_number,
12104 item_number_as_rule_number):
12105 Now inline functions rather than macros, to avoid casts.
12106 * src/state.h (state_number_as_int): Likewise.
12107 * src/tables.c (state_number_to_vector_number,
12108 symbol_number_to_vector_number): Likewise.
12109
12110 * src/gram.h (int_of_rule_number): Remove; no longer used.
12111
12112 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
12113 since the resulting storage is always stored into.
12114
12115 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
12116 where it's needed.
12117
12118 * src/muscle_tab.c (muscle_m4_output):
12119 Now inline. Return bool, not int.
12120 * src/state.c (state_compare): Likewise.
12121 * src/symtab.c (symbol_check_defined,
12122 symbol_check_alias_consistency, symbol_pack, symbol_translation,
12123 hash_compare_symbol, hash_symbol):
12124 Likewise.
12125 * src/uniqstr.c (uniqstr_print): Likewise.
12126 * src/muscle_tab.c (muscle_m4_output_processor):
12127 New function, to avoid casts.
12128 * src/state.c (state_comparator, stage_hasher): Likewise.
12129 * src/symtab.c (symbol_check_defined_processor,
12130 symbol_check_alias_consistency_processor, symbol_pack_processor,
12131 symbol_translation_processor, hash_symbol_comparator,
12132 hash_symbol_hasher): Likewise.
12133 * src/uniqstr.c (uniqstr_print_processor): Likewise.
12134 * src/muscle_tab.c (muscles_m4_output):
12135 Use new functions instead of casting old functions unportably.
12136 * src/state.c (state_hash_new): Likewise.
12137 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
12138 symbols_token_translations_init):
12139 Likewise.
12140 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
12141
12142 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
12143 var instead of casting to long, to avoid casts.
12144 (prepare_states): Use MALLOC rather than alloca, so that we don't
12145 have to worry about alloca.
12146 * src/state.c (state_hash_lookup): Likewise.
12147
12148 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
12149 local var instead of casting to unsigned char, to avoid casts.
12150
12151 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
12152 STATE_ALLOC): Remove.
12153 (transitions_new, errs_new, reductions_new, state_new): Use malloc
12154 rather than calloc, and use offsetof to avoid allocating slightly
12155 too much storage.
12156 (state_new): Initialize all members.
12157
12158 * src/state.c (state_hash): Use unsigned accumulator, not signed.
12159
12160 * src/symtab.c (symbol_free): Remove; unused.
12161 (symbol_get): Remove cast in lhs of assignment.
12162 (symbols_do): Now static. Accept generic arguments, not
12163 hashing-related ones.
12164
12165 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
12166 (symbol_processor): Remove.
12167 (symbols_do): Remove decl; now static.
12168
12169 * src/system.h (alloca): Remove; decl no longer needed.
12170 (<stddef.h>): Include, for offsetof.
12171 (<inttypes.>, <stdint.h>): Include if available.
12172 (uintptr_t): New type, if system lacks it.
12173 (CALLOC, MALLOC, REALLOC): New macros.
12174 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
12175 new macros.
12176
12177 * src/tables.c (table_size): Now int, to pacify GCC.
12178 (table_grow, table_ninf_remap): Use signed table size.
12179 (save_row): Don't bother initializing locals when not needed.
12180 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
12181 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
12182
12183 * src/vcg.h: Correct misspellings.
12184
12185 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
12186
12187
12188 * src/getargs.c (getargs): Don't assume EOF == -1.
12189
12190 2002-12-09 Paul Eggert <eggert@twinsun.com>
12191
12192 Change identifier spellings to avoid collisions with names
12193 that are reserved by POSIX.
12194
12195 Don't use names ending in _t, since POSIX reserves them.
12196 For consistency, remove _e and _s endings -- they're weren't
12197 needed to remove ambiguity. All uses changed.
12198 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
12199 turn was just renamed from struniq_t.
12200 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
12201 which in turn was just renamed from struniq_processor_t.
12202 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
12203 in turn was renamed from hash_compare_struniq_t.
12204 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
12205 (state_list): Renamed from state_list_t.
12206 * src/assoc.h (assoc): Renamed from assoc_t.
12207 * src/conflicts.c (enum conflict_resolution): Renamed from
12208 enum conflict_resolution_e.
12209 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
12210 (rule_list): Renamed from rule_list_t.
12211 * src/getargs.h (enum trace): Renamed from enum trace_e.
12212 (enum report): Renamed from enum report_e.
12213 * src/gram.h (item_number): Renamed from item_number_t.
12214 (rule_number): Renamed from rule_number_t.
12215 (struct rule_s): Remove the "rule_s" part; not used.
12216 (rule): Renamed from rule_t.
12217 (rule_filter): Renamed from rule_filter_t.
12218 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
12219 (goto_list): Renamed from goto_list_t.
12220 * src/lalr.h (goto_number): Renamed from goto_number_t.
12221 * src/location.h (location): Renamed from location_t.
12222 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
12223 and moved here from:
12224 * src/muscle_tab.h (muscle_entry_t): here.
12225 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
12226 (rule_list): Renamed from rule_list_t.
12227 * src/print_graph.c (static_graph): Renamed from graph.
12228 * src/reader.h (braced_code): Renamed from braced_code_t.
12229 Remove brace_code_e tag.
12230 * src/relation.h (relation_node): Renamed from relation_node_t.
12231 (relation_nodes): Renamed from relation_nodes_t.
12232 (relation): Renamed from relation_t.
12233 * src/state.h (state_number): Renamed from state_number_t.
12234 (struct state): Renamed from struct state_s.
12235 (state): Renamed from state_t.
12236 (transitions): Renamed from transitions_t. Unused (and
12237 misspelled) transtion_s tag removed.
12238 (errs): Renamed from errs_t. Unused errs_s tag removed.
12239 (reductions): Renamed from reductions_t. Unused tag
12240 reductions_s removed.
12241 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
12242 (struct symbol_list): Renamed from struct symbol_list_s.
12243 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
12244 (struct symbol): Renamed from struct symbol_s.
12245 (symbol): Renamed from symbol_t.
12246 * src/tables.c (vector_number): Renamed from vector_number_t.
12247 (action_number): Renamed from action_t.
12248 * src/tables.h (base_number): Renamed from base_t.
12249 * src/vcg.h (enum color): Renamed from enum color_e.
12250 (enum textmode): Renamed from enum textmode_e.
12251 (enum shape): Renamed from enum shape_e.
12252 (struct colorentry): Renamed from struct colorentry_s.
12253 (struct classname): Renamed from struct classname_s.
12254 (struct infoname): Renamed from struct infoname_s.
12255 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
12256 (enum decision): Renamed from enum decision_e.
12257 (enum orientation): Renamed from enum orientation_e.
12258 (enum alignment): Renamed from enum alignment_e.
12259 (enum arrow_mode): Renamed from enum arrow_mode_e.
12260 (enum crossing_type): Renamed from enum crossing_type_e.
12261 (enum view): Renamed from enum view_e.
12262 (struct node): Renamed from struct node_s.
12263 (node): Renamed from node_t.
12264 (enum linestyle): Renamed from enum linestyle_e.
12265 (enum arrowstyle): Renamed from enum arrowstyle_e.
12266 (struct edge): Renamed from struct edge.
12267 (edge): Renamed from edge_t.
12268 (struct graph): Renamed from struct graph_s.
12269 (graph): Renamed from graph_t.
12270 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
12271 Rename value_t -> value.
12272 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
12273 value_t_as_yystype -> value_as_yystype.
12274
12275 Don't include <errno.h> in the mainstream code, since it
12276 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
12277 * lib/get-errno.c, lib/get-errno.h: New files.
12278 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
12279 get-errno.c.
12280 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
12281 * src/output.c (output_skeleton): Likewise.
12282 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
12283 instead of errno.
12284 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
12285 Likewise.
12286 (handle_action_dollar, handle_action_at): Likewise.
12287 * src/system.h: Do not include <errno.h>.
12288 (TAB_EXT): Renamed from EXT_TAB.
12289 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
12290
12291 Avoid str[a-z]*, since <string.h> reserves that name space.
12292 Change all instances of "struniq" in names to "uniqstr", and
12293 likewise for "STRUNIQ" and "UNIQSTR".
12294 * src/uniqstr.c: Renamed from src/struniq.c.
12295 * src/uniqstr.h: Renamed from src/struniq.h.
12296 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
12297 * src/files.c (strsuffix): Remove; unused.
12298 (concat2): Renamed from stringappend. Now static.
12299 * src/files.h (strsuffix, stringappend): Remove; unused.
12300 * src/parse-gram.y (<chars>): Renamed from <string>.
12301 (<uniqstr>): Renamed from <struniq>.
12302 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
12303 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
12304 (struct graph_s.expand): Renamed from struct graph_s.stretch.
12305 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
12306 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
12307 (N_EXPAND): Renamed from N_STRETCH.
12308
12309 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
12310 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
12311 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
12312 Remove; unused.
12313 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
12314 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12315 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12316 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12317 (BASE_MAXIMUM): Renamed from BASE_MAX.
12318 (BASE_MINIMUM): Renamed from BASE_MIN.
12319 (ACTION_MAX): Remove; unused.
12320 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12321 Unnecessary casts removed from above defines.
12322
12323
12324 Fix misspelling in names.
12325 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12326 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12327 G_NODE_ALIGNEMENT.
12328
12329
12330 * lib/timevar.c (timevar_report): Renamed from time_report,
12331 for consistency with other names.
12332 * lib/timevar.h (timevar_report): New decl.
12333 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12334
12335
12336 Sort include-file uses.
12337
12338 Reorder all include files under src to be in the order "system.h".
12339 then the ../lib include files in angle brackets (alphabetized),
12340 then the . include files in double-quotes (alphabetized). Fix
12341 dependency breakages encountered in this process, as follows:
12342 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12343 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12344 * src/state.h: Include "symtab.h".
12345
12346 2002-12-08 Paul Eggert <eggert@twinsun.com>
12347
12348 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12349 since this causes problems when __file__ contains character
12350 sequences like "@" that are treated specially by src/scan-skel.l.
12351 Instead, just use the file's basename. This fixes the bug
12352 reported by Martin Mokrejs in
12353 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
12354
12355 2002-12-06 Paul Eggert <eggert@twinsun.com>
12356
12357 Add support for rules that do not have trailing semicolons, as
12358 POSIX requires. Improve the quality of locations in Bison
12359 diagnostics.
12360
12361 * src/location.c: Include <quotearg.h>.
12362 (empty_location): Now const.
12363 (location_print): New function. Follow the recommendation of the
12364 GNU Coding Standards for locations that span file boundaries.
12365 * src/location.h: Do not include <quotearg.h>; no longer needed.
12366 (boundary): New type.
12367 (location_t): Use it. This allows locations to span file boundaries.
12368 All member uses changed: file -> start.file or end.file (as needed),
12369 first_line -> start.line, first_column -> start.column,
12370 last_line -> end.line, last_column -> end.column.
12371 (equal_boundaries): New function.
12372 (LOCATION_RESET, LOCATION_STEP): Remove.
12373 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12374 (empty_location): Now const.
12375 (location_print): New decl.
12376 * src/parse-gram.y (lloc_default): New function, which handles
12377 empty locations more accurately.
12378 (YYLLOC_DEFAULT): Use it.
12379 (%token COLON): Remove.
12380 (%token ID_COLON): New token.
12381 (rules): Use it.
12382 (declarations, rules): Remove trailing semicolon.
12383 (declaration, rules_or_grammar_declaration):
12384 Allow empty (";") declaration.
12385 (symbol_def): Remove empty actions; no longer needed.
12386 (rules_or_grammar_declaration): Remove trailing semicolon.
12387 (semi_colon.opt): Remove.
12388 * src/reader.h: Include location.h.
12389 (scanner_cursor): New decl.
12390 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12391 rolling our own.
12392 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12393 of *loc.
12394 (STEP): Remove. No longer needed, now that adjust_location does
12395 the work. All uses removed.
12396 (scanner_cursor): New var.
12397 (adjust_location): Renamed from extend_location. It now sets
12398 *loc and adjusts the scanner cursor. All uses changed.
12399 Don't bother testing for CR.
12400 (handle_syncline): Remove location arg; now updates scanner cursor.
12401 All callers changed.
12402 (unexpected_end_of_file): Now accepts start boundary of token or
12403 comment, not location. All callers changed. Update scanner cursor,
12404 not the location.
12405 (SC_AFTER_IDENTIFIER): New state.
12406 (context_state): Renamed from c_context. All uses changed.
12407 (id_loc, code_start, token_start): New local vars.
12408 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12409 processing of Yacc white space and equivalents here.
12410 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12411 instead of returning ID immediately, since we need to search for
12412 a subsequent colon.
12413 (<INITIAL>"'", "\""): Save token_start.
12414 (<INITIAL>"%{", "{", "%%"): Save code_start.
12415 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12416 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12417 BEGIN context_state at end, not INITIAL.
12418 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12419 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12420 Return correct token start.
12421 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12422 the start of a character, string or multiline comment is found.
12423 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12424 Reduction): Adjust reported locations to match the more-precise
12425 results now expected.
12426 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12427 * tests/reduce.at (Useless Rules, Reduced Automaton,
12428 Underivable Rules): Likewise.
12429 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12430 or "|"' now that so many other tokens are allowed by the new grammar.
12431
12432 * src/complain.h (current_file): Remove duplicate decl;
12433 current_file is now owned by files.h.
12434 * src/complain.c, src/scan-gram.l: Include files.h.
12435
12436 2002-12-06 Paul Eggert <eggert@twinsun.com>
12437
12438 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12439 promotes to int; it might be unsigned int.
12440 * data/yacc.c (yy_reduce_print): Likewise.
12441
12442 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12443 be #defined in the prologue, not in the Bison declarations.
12444 This fixes Debian Bug 102878, reported by Shaul Karl.
12445
12446 2002-12-02 Paul Eggert <eggert@twinsun.com>
12447
12448 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12449 * lib/strtoul.c: New file, from gnulib.
12450 This fixes a porting bug reported by Peter Klein in
12451 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
12452
12453 2002-11-30 Paul Eggert <eggert@twinsun.com>
12454
12455 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12456 and put only a forward declaration in the prologue. This is for
12457 consistency with the other scanner helper functions.
12458
12459 Type clashes now generate warnings, not errors, since it
12460 appears that POSIX may allow some grammars with type clashes.
12461 * src/reader.c (grammar_current_rule_check): Warn about
12462 type clashes instead of complaining.
12463 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12464
12465 Add Yacc library, since POSIX requires it.
12466 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12467 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12468 * lib/main.c, lib/yyerror.c: New files.
12469
12470 gram_error can be static; it need not be extern.
12471 * src/reader.h (gram_error): Remove decl.
12472 * src/parse-gram.y (gram_error): Now static. Add static decl.
12473 (print_token_value): Omit parameter names from forward decl,
12474 for consistency.
12475
12476 2002-11-29 Paul Eggert <eggert@twinsun.com>
12477
12478 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12479 be declared before being used. E.g., one should typically
12480 declare them in the prologue. Use GNU coding style in examples.
12481 Put "const" consistently after the type it modifies. Mention
12482 that C99 supports "inline". Mention that yyerror traditionally
12483 returns "int".
12484
12485 %parse-param and %lex-param now take just one argument, the
12486 declaration; the argument name is deduced from the declaration.
12487
12488 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12489 Reporting, Table of Symbols): Document this.
12490 * src/parse-gram.y (add_param): New function.
12491 (COMMA): Remove.
12492 (declaration): Implement new rule for %parse-param and %lex-param.
12493 * src/scan-gram.l: "," now elicits a warning, rather than being
12494 a token; this is more compatible with byacc.
12495 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12496
12497 2002-11-27 Paul Eggert <eggert@twinsun.com>
12498
12499 Rename identifiers to avoid real and potential collisions.
12500
12501 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12502 to avoid collision with lex macro described by Bruce Lilly in
12503 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12504 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12505 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12506 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12507 All uses changed.
12508 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12509 The name "yycontrol" violates the name space rules, and this stuff
12510 wasn't being used anyway.
12511 (input): Remove action; this stuff wasn't being used.
12512 (gram_error): Rename local variable yylloc -> loc.
12513 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12514 (YY_DECL): Don't use "yy" at start of local variables.
12515 All uses changed, e.g., yylloc -> loc.
12516 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12517 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12518 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12519 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12520
12521 * src/parse-gram.y (gram_error): loc is now const *.
12522 * src/reader.h (gram_error): Likewise.
12523
12524 2002-11-24 Paul Eggert <eggert@twinsun.com>
12525
12526 Version 1.75c.
12527
12528 * tests/actions.at (Actions after errors): Use an output format
12529 more similar to that of the Printers and Destructors test.
12530 Test the position of the ';' token too.
12531 (Printers and Destructors): Likewise.
12532 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12533 unnecessarily alarming people when the test fails.
12534
12535 * data/yacc.c (yyerrlab1): Move this label down, so that the
12536 parser does not discard the lookahead token if the user code
12537 invokes YYERROR. This change is required for POSIX conformance.
12538
12539 * lib/error.c: Sync with gnulib.
12540
12541 2002-11-22 Paul Eggert <eggert@twinsun.com>
12542
12543 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12544 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12545 * lib/xmalloc.c: Likewise.
12546
12547 2002-11-20 Paul Eggert <eggert@twinsun.com>
12548
12549 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12550
12551 2002-11-20 Paul Eggert <eggert@twinsun.com>
12552
12553 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12554 should use `if (! x) abort ();' rather than `assert (x);', and
12555 anyway it's one less thing to worry about configuring.
12556
12557 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12558 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12559 and replace all instances of assert with abort.
12560 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12561 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12562
12563 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12564 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12565 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12566 hash_find_entry, hash_rehash, hash_insert): Likewise.
12567 * src/conflicts.c (resolve_sr_conflict): Likewise.
12568 * src/lalr.c (set_goto_map, map_goto): Likewise.
12569 * src/nullable.c (nullable_compute): Likewise.
12570 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12571 * src/reader.c (packgram, reader): Likewise.
12572 * src/state.c (state_new, state_free, state_transitions_set,
12573 state_reduction_find): Likewise.
12574 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12575 symbol_pack): Likewise.
12576 * src/tables.c (conflict_row, pack_vector): Likewise.
12577 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12578 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12579 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12580 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12581
12582 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12583 (ARGMATCH_CONSTRAINT): New macro.
12584 (ARGMATCH_ASSERT): Use it.
12585
12586 * src/system.h (verify): New macro.
12587 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12588 rather than assert.
12589 * src/tables.c (tables_generate): Likewise.
12590
12591 * src/struniq.c (struniq_assert): Now returns void, and aborts
12592 if the assertion is false.
12593 (struniq_assert_p): Remove.
12594 * src/struniq.h: Likewise.
12595
12596 2002-11-18 Paul Eggert <eggert@twinsun.com>
12597
12598 * data/glr.c (yygetLRActions): Replace `yyindex' with
12599 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12600 This fixes the regression with Sun ONE Studio 7 cc that I reported in
12601 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
12602
12603 2002-11-18 Akim Demaille <akim@epita.fr>
12604
12605 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12606 space.
12607 From Tim Van Holder.
12608
12609 2002-11-17 Paul Eggert <eggert@twinsun.com>
12610
12611 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12612 to "SyntaxError" for consistency with my 2002-11-15 change.
12613
12614 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12615 not define to {}, since this breaks the common use of `YYDPRINTF
12616 ((...));' if a single statement is desired (e.g. before `else').
12617 Work around GCC warnings by surrounding corresponding calls with
12618 {} if needed.
12619 (yyhasResolvedValue): Remove unused function.
12620 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12621 loop body.
12622 (yyreportSyntaxError): Renamed from yyreportParseError.
12623 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12624 All uses changed.
12625 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12626 extern when possible. Remove unused initializations.
12627
12628 2002-11-16 Akim Demaille <akim@epita.fr>
12629
12630 Augment the similarity between GLR and LALR traces.
12631
12632 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12633 (YY_REDUCE_PRINT): New.
12634 (yyparse): Use them.
12635 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12636 YYDPRINT here.
12637 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12638 state reached after the reduction/recovery, since...
12639 (yyparse, yyprocessOneStack): Report the state we are entering in.
12640
12641 2002-11-16 Akim Demaille <akim@epita.fr>
12642
12643 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12644 Add support for --trace=skeleton.
12645 * src/scan-skel.l: %option debug.
12646 Scan strings of non-@ or \n instead of character by character.
12647 (scan_skel): Handle trace_skeleton.
12648 (QPUTS): New.
12649 (@output_parser_name@, @output_header_name@): ``Restore'' their
12650 support (used to be M4 macros).
12651 * data/yacc.c: Quote larger chunks, a la glr.c.
12652 * data/lalr1.cc: Likewise.
12653 The header guards are no longer available, so use some other
12654 string than `YYLSP_NEEDED'.
12655
12656 2002-11-16 Akim Demaille <akim@epita.fr>
12657
12658 Make the ``Printers and Destructors'' test more verbose, taking
12659 `yacc.c''s behavior as (possibly wrong) reference.
12660
12661 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
12662 instead of fprint on stdout.
12663 Set and report the last_line of the symbols.
12664 Consistently display values and locations.
12665
12666 2002-11-16 Paul Eggert <eggert@twinsun.com>
12667
12668 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
12669
12670 2002-11-15 Paul Eggert <eggert@twinsun.com>
12671
12672 * tests/actions.at (Actions after errors): New test case.
12673
12674 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
12675 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
12676 tests/action.at, tests/calc.at, tests/conflicts.at,
12677 tests/cxx-type.at, tests/regression.at:
12678 "parse error" -> "syntax error" for POSIX compatibility.
12679 "parsing stack overflow..." -> "parser stack overflow" so
12680 that code matches Bison documentation.
12681
12682 2002-11-15 Akim Demaille <akim@epita.fr>
12683
12684 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
12685 take two BRACED_CODE, not two string_content.
12686 Free the scanner's obstack when we are done.
12687 (code_content): New.
12688 * tests/calc.at: Adjust.
12689 * doc/bison.texinfo: Adjust.
12690 Also, make sure to include the `,' for these declarations.
12691
12692 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
12693
12694 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
12695 definition; avoids potential autoreconf problems.
12696
12697 2002-11-15 Akim Demaille <akim@epita.fr>
12698
12699 Always check the value returned by yyparse.
12700
12701 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
12702 returned by yyparse.
12703 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
12704 Adjust calls.
12705 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
12706 returned by yyparse.
12707
12708 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12709
12710 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
12711 on input.at test.
12712
12713 2002-11-14 Paul Eggert <eggert@twinsun.com>
12714
12715 * src/output.c (output_skeleton): Call xfopen instead of
12716 duplicating xfopen's body.
12717
12718 Fix bugs reported by Nelson H. F. Beebe in
12719 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
12720
12721 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
12722 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
12723 Group compiler. Instead, use "$CC -E bar.c". Include the .h
12724 file twice in the grammar, as an extra check.
12725
12726 * tests/input.at (Torturing the Scanner): Surround the
12727 backslash-newline tests with "#if 0", to make it less likely that
12728 we'll run into compiler bugs. Bring back solitary \ inside
12729 comment, but add a closing comment to work around HP C bug. Don't
12730 test backslash-newline in C character constant.
12731
12732 2002-11-14 Akim Demaille <akim@epita.fr>
12733
12734 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
12735 status of the compiler.
12736 Calling `exit 1' is no longer needed.
12737 Reported by Nelson H. F. Beebe.
12738
12739 2002-11-14 Akim Demaille <akim@epita.fr>
12740
12741 * tests/atlocal.in (CPPFLAGS): We have config.h.
12742 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
12743 New.
12744 * tests/actions.at, tests/calc.at, tests/conflicts.at,
12745 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
12746 * tests/regression.at, tests/torture.at: Use them for all the
12747 grammars that are to be compiled.
12748 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
12749 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
12750 * doc/bison.texinfo (GLR Parsers): Document `inline'.
12751
12752 2002-11-14 Akim Demaille <akim@epita.fr>
12753
12754 * doc/bison.texinfo: Various formatting changes (alignments in
12755 samples, additional @group/@end group, GCS in samples.
12756 Use @deffn instead of simple @table to define the directives,
12757 macros, variables etc.
12758
12759 2002-11-13 Paul Eggert <eggert@twinsun.com>
12760
12761 Fix some bugs reported by Albert Chin-A-Young in
12762 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
12763
12764 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
12765 -o c"; the HP C compiler chatters during compilation.
12766 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
12767 * tests/headers.at (export YYLTYPE): Likewise.
12768
12769 * tests/input.at (Torturing the Scanner): Remove lines containing
12770 solitary backslashes, as they tickle a bug in the HP C compiler.
12771
12772 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
12773 comments, since they're not portable. Use GNU coding style.
12774
12775 2002-11-13 Akim Demaille <akim@epita.fr>
12776
12777 * data/yacc.c: Leave bigger chunks of quoted text.
12778 (YYDSYMPRINTF): New.
12779 Use it to report symbol activities.
12780 * data/glr.c (YYDSYMPRINTF): New.
12781 Use it.
12782
12783 2002-11-12 Paul Eggert <eggert@twinsun.com>
12784
12785 Version 1.75b.
12786
12787 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
12788 (yyglrReduce): Return yyok, not 0.
12789 This should avoid the enumerated-type warnings reported
12790 by Nelson H. F. Beebe in
12791 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
12792
12793 * lib/bbitset.h (BITSET_INLINE): Remove.
12794 * lib/bitset.h [! BITSET_INLINE]: Remove.
12795 (bitset_set, bitset_reset, bitset_test): Rename local vars
12796 to avoid shadowing warnings by GCC.
12797
12798 * data/glr.c (inline): Remove #define. It's the user's
12799 responsibility to #define it away, just like 'const'.
12800 This fixes one of the bugs reported by Nelson H. F. Beebe in
12801 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
12802
12803 * Makefile.maint (po-check): Scan .l and .y files instead of the
12804 .c and the .h files that they generate. This fixes the bug
12805 reported by Tim Van Holder in:
12806 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
12807 Look for N_ as well as for _. Try to avoid matching #define for
12808 N_ and _.
12809 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
12810 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
12811 * src/scan-gram.l: Revamp regular expressions so that " and '
12812 do not confuse xgettext.
12813
12814 * src/struniq.h (struniq_new): Do not declare the return type
12815 to be 'const'; this violates the C standard.
12816 * src/struniq.c (struniq_new): Likewise.
12817
12818 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
12819
12820 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
12821 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
12822 linker.
12823
12824 2002-11-12 Akim Demaille <akim@epita.fr>
12825
12826 * Makefile.maint: Sync with Autoconf:
12827 (local_updates): New.
12828
12829 2002-11-12 Akim Demaille <akim@epita.fr>
12830
12831 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
12832
12833 2002-11-12 Akim Demaille <akim@epita.fr>
12834
12835 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
12836 locations.
12837
12838 2002-11-12 Akim Demaille <akim@epita.fr>
12839
12840 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
12841 not yyvalue.
12842
12843 2002-11-12 Akim Demaille <akim@epita.fr>
12844
12845 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
12846 Use it to test the GLR parser.
12847
12848 2002-11-12 Akim Demaille <akim@epita.fr>
12849
12850 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
12851 defines it.
12852 * data/glr.c (yystos): New.
12853 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
12854 (YYDSYMPRINT): New.
12855 (yyval): Don't define it, it is handled via M4.
12856 (yyrecoverParseError): Free verbosely the discarded symbols.
12857 * data/yacc.c (yysymprint): Remove, rather...
12858 (b4_yysymprint_generate): invoke.
12859 * data/c.m4 (b4_yysymprint_generate): New.
12860 Accept pointers as arguments, as opposed to the version from
12861 yacc.c.
12862 (b4_yydestruct_generate): Likewise.
12863 * tests/cations.at (Printers and Destructors): Use Bison directives
12864 instead of CPP macros.
12865 Don't rely on internal details.
12866
12867 2002-11-12 Akim Demaille <akim@epita.fr>
12868
12869 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
12870 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
12871 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
12872 it against YYEMPTY and so forth), work on yytoken (i.e., set
12873 it to YYEMPTY etc.).
12874 (yydestruct): Replace with a b4_yydestruct_generate invocation.
12875 (b4_symbol_actions): Remove.
12876 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
12877 for 0, end-of-input.
12878
12879 2002-11-12 Akim Demaille <akim@epita.fr>
12880
12881 * doc/bison.texinfo (Destructor Decl): New.
12882
12883 2002-11-12 Akim Demaille <akim@epita.fr>
12884
12885 * src/tables.c (tables_generate): Use free for pointers that
12886 cannot be NULL, not XFREE.
12887 (pack_vector): Use assert, not fatal, for bound violations.
12888 * src/state.c (state_new): Likewise.
12889 * src/reader.c (reader): Likewise.
12890 * src/lalr.c (set_goto_map): Likewise.
12891 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
12892 the file name.
12893
12894 2002-11-12 Akim Demaille <akim@epita.fr>
12895
12896 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
12897 Restore.
12898 * src/scan-gram.l (last_string): Is global to the file, not to
12899 yylex.
12900 * src/parse-gram.y (input): Don't append the epilogue here,
12901 (epilogue.opt): do it here, and free the scanner's obstack.
12902 * src/reader.c (epilogue_set): Rename as...
12903 (epilogue_augment): this.
12904 * data/c.m4 (b4_epilogue): Defaults to empty.
12905
12906 2002-11-12 Akim Demaille <akim@epita.fr>
12907
12908 * src/getargs.c (long_options): Remove duplicates.
12909 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
12910 Remove.
12911 * doc/bison.rnh: Remove.
12912 * doc/bison.texinfo (VMS Invocation): Remove.
12913
12914 2002-11-12 Akim Demaille <akim@epita.fr>
12915
12916 * src/struniq.h, src/struniq.c (struniq_t): Is const.
12917 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
12918
12919 Use struniq for symbols.
12920
12921 * src/symtab.h (symbol_t): The tag member is a struniq.
12922 (symbol_type_set): Adjust.
12923 * src/symtab.c (symbol_new): Takes a struniq.
12924 (symbol_free): Don't free the tag member.
12925 (hash_compare_symbol_t, hash_symbol_t): Rename as...
12926 (hash_compare_symbol, hash_symbol): these.
12927 Use the fact that tags as struniqs.
12928 (symbol_get): Use struniq_new.
12929 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
12930 Returns a strniq.
12931 * src/reader.h (merger_list, grammar_currentmerge_set): The name
12932 and type members are struniqs.
12933 * src/reader.c (get_merge_function)
12934 (grammar_current_rule_merge_set): Adjust.
12935 (TYPE, current_type): Are struniq.
12936
12937 Use struniq for file names.
12938
12939 * src/files.h, src/files.c (infile): Split into...
12940 (grammar_file, current_file): these.
12941 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
12942 * src/reduce.c (reduce_print): Likewise.
12943 * src/getargs.c (getargs): Likewise.
12944 * src/complain.h, src/complain.c: Likewise.
12945 * src/main.c (main): Call struniqs_new early enough to use it for
12946 file names.
12947 Don't free the input file name.
12948
12949 2002-11-12 Akim Demaille <akim@epita.fr>
12950
12951 * src/symtab.c (symbol_free): Remove dead deactivated code:
12952 type_name are properly removed.
12953 Don't use XFREE to free items that cannot be NULL.
12954 * src/struniq.h, src/struniq.c: New.
12955 * src/main.c (main): Initialize/free struniqs.
12956 * src/parse-gram.y (%union): Add astruniq member.
12957 (yyprint): Adjust.
12958 * src/scan-gram.l (<{tag}>): Return a struniq.
12959 Free the obstack bit that used to store it.
12960 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
12961
12962 2002-11-11 Paul Eggert <eggert@twinsun.com>
12963
12964 Revamp to fix many (but not all) of the C- and M4-related quoting
12965 problems. Among other things, this fixes the Bison bug reported
12966 by Jan Hubicka when processing the Bash grammar; see:
12967 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
12968
12969 Use new @ escapes consistently. Represent brackets with @{ and @}
12970 rather than @<:@ and @:>@, since this works a bit better with dumb
12971 editors like vi. Represent @ with @@, since @ is now consistently
12972 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12973 __ofile__, to avoid unexpected expansions. Similarly, use @output
12974 rather than #output.
12975
12976 * data/c.m4 (b4_copyright): Omit file name from comment, since
12977 the file name could contain "*/".
12978 (b4_synclines_flag): Don't quote the 2nd argument; it should already
12979 be quoted. All uses changed.
12980
12981 * data/glr.c: Use new @ escapes consistently.
12982 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
12983 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
12984 Remove, since they couldn't handle arbitrary characters in file
12985 names.
12986 * data/lalr1.cc: Likewise.
12987 * data/yacc.c: Likewise.
12988
12989 * src/files.c (output_infix): Remove; all uses removed.
12990 * src/files.h: Likewise.
12991
12992 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
12993 mishandled funny characters in file names, and anyway it isn't
12994 needed any more.
12995 * data/yacc.c: Likewise.
12996 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
12997
12998 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
12999 * data/yacc.c: Likewise.
13000
13001 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
13002 strings now.
13003 (muscle_init): Quote filename as a C string.
13004 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
13005 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
13006 * src/output.c (escaped_file_name_output): New function.
13007 (prepare_symbols): Quote tokens for M4.
13008 (prepare): Don't insert output_infix, output_prefix,
13009 output_parser_name, output_header_name; this is now down by scan-skel.
13010 Insert skeleton as a C string.
13011
13012 * src/output.c (user_actions_output, symbol_destructors_output,
13013 symbol_printers_output): Quote filenames for C and M4.
13014 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13015
13016 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
13017 escapes other than \\ and \'; this simplifies the code.
13018 (<SC_STRING>): Likewise, for \\ and \".
13019 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
13020 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
13021 Use new escapes @{ and @} for [ and ].
13022
13023 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
13024 them with auto vars.
13025 Switch to new escape scheme, where @ is the escape character uniformly.
13026 Abort if a stray escape character is found. Avoid unbounded input
13027 buffer when parsing non-escaped text.
13028
13029 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
13030 __oline__, #output, $@, and @{ do not have unintended meanings.
13031
13032 2002-11-09 Paul Eggert <eggert@twinsun.com>
13033
13034 Fix the test failure due to GCC warnings described in
13035 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
13036 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
13037 evaluate to 0 if it's impossible for NINF to be in the respective
13038 table.
13039 (yygetLRActions, yyrecoverParseError): Use them.
13040
13041 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
13042 counted in the token inserted at end of file. Now takes
13043 location_t *, not location_t, so that the location can be
13044 adjusted. All uses changed.
13045
13046 * tests/regression.at (Invalid inputs): Adjust wording in
13047 diagnostic to match the new behavior.
13048
13049 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
13050 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
13051 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
13052 abort ();'. This reduces the runtime of the "Many lookaheads"
13053 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
13054 GCC 3.2.
13055
13056 2002-11-07 Paul Eggert <eggert@twinsun.com>
13057
13058 * src/parse-gram.y (CHARACTER): Remove unused token.
13059 All uses removed.
13060
13061 * src/scan-gram.l: Remove stack option. We no longer use the
13062 stack, since the stack was never deeper than 1; instead, use the
13063 new auto var c_context to record the stacked value.
13064
13065 Remove nounput option. At an unexpected end of file, we now unput
13066 the minimal input necessary to end cleanly; this simplifies the
13067 code.
13068
13069 Avoid unbounded token sizes where this is easy.
13070
13071 (unexpected_end_of_file): New function.
13072 Use it to systematize the error message on unexpected EOF.
13073 (last-string): Now auto, not static.
13074 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
13075 (scanner_last_string_free): Remove; not used.
13076 (percent_percent_count): Move decl to just before use.
13077 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
13078 not the (never otherwised-used) CHARACTER.
13079
13080 2002-11-07 Akim Demaille <akim@epita.fr>
13081
13082 Let yyerror always receive the msg as last argument, so that
13083 yyerror can be variadic.
13084
13085 * data/yacc.c (b4_yyerror_args): New.
13086 Use it when calling yyerror.
13087 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
13088 Use it when calling yyerror.
13089 * doc/bison.texinfo (Error Reporting): Adjust.
13090 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
13091 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
13092
13093 2002-11-06 Akim Demaille <akim@epita.fr>
13094
13095 #line should have quoted strings.
13096 Ideally, this should be done by m4_quotearg.
13097
13098 * src/scan-skel.l: Include quotearg.h.
13099 Quote __ofile__.
13100 * src/output.c (symbol_printers_output)
13101 (symbol_destructors_output): Quote the file name.
13102
13103 2002-11-06 Akim Demaille <akim@epita.fr>
13104
13105 * tests/regression.at (Invalid inputs): Adjust to the recent
13106 messages.
13107
13108 2002-11-06 Akim Demaille <akim@epita.fr>
13109
13110 Restore --no-lines.
13111 Reported by Jim Kent.
13112
13113 * data/c.m4 (b4_syncline): New.
13114 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
13115 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
13116 * src/output.c (user_actions_output): Likewise.
13117 (prepare): Define 'b4_synclines_flag'.
13118 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
13119
13120 2002-11-06 Akim Demaille <akim@epita.fr>
13121
13122 * src/main.c (main): Free `infile'.
13123 * src/scan-gram.l (handle_syncline): New.
13124 Recognize `#line'.
13125 * src/output.c (user_actions_output, symbol_destructors_output)
13126 (symbol_printers_output): Use the location's file name, not
13127 infile.
13128 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13129
13130 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13131
13132 * src/tables.c (matching_state): Don't allow states to match if
13133 either has GLR conflict entries.
13134
13135 2002-11-05 Paul Eggert <eggert@twinsun.com>
13136
13137 * src/scan-gram.l: Use more accurate diagnostics, e.g.
13138 "integer out of range" rather than "invalid value".
13139 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
13140 accordingly.
13141
13142 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
13143 Also, remove one static variable in the scanner.
13144
13145 * src/scan-gram.l (braces_level): Now auto, not static.
13146 Initialize to zero if the compiler is being picky.
13147 (INITIAL): Clear braces_level instead of incrementing it.
13148 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
13149 as POSIX 1003.1-2001 requires.
13150 * src/system.h (IF_LINT): New macro, taken from coreutils.
13151 * configure.ac: Define "lint" if --enable-gcc-warnings.
13152
13153 2002-11-05 Akim Demaille <akim@epita.fr>
13154
13155 * src/scan-gram.l: When it starts with `%', complain about the
13156 whole directive, not just that `invalid character: %'.
13157
13158 2002-11-04 Akim Demaille <akim@epita.fr>
13159
13160 * Makefile.maint: Update from Autoconf.
13161 (update, cvs-update, po-update, do-po-update): New.
13162
13163 2002-11-04 Akim Demaille <akim@epita.fr>
13164
13165 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
13166 and yyerror.
13167 Have yyerror `use' its arguments.
13168 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
13169 returns true when location & yacc & pure & parse-param.
13170 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
13171
13172 2002-11-04 Akim Demaille <akim@epita.fr>
13173
13174 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
13175 clashes.
13176 * src/scan-gram.l: Use [\'] instead of ['] to pacify
13177 font-lock-mode.
13178 Use complain_at.
13179 Use quote, not quote_n since LOCATION_PRINT no longer uses the
13180 slot 0.
13181
13182 2002-11-03 Paul Eggert <eggert@twinsun.com>
13183
13184 * src/reader.c (get_merge_function, grammar_current_rule_check):
13185 Use consistent diagnostics for reporting type name clashes.
13186 Quote the types with <>, for consistency with Yacc.
13187 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
13188
13189 2002-11-03 Akim Demaille <akim@epita.fr>
13190
13191 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
13192 New.
13193 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
13194 (b4_parse_param): Remove.
13195 Use b4_identification.
13196 Propagate b4_pure_args where needed to pass them to yyerror.
13197 * data/glr.m4 (b4_parse_param): Remove.
13198 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
13199 (b4_lpure_formals): New.
13200 Use b4_identification.
13201 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
13202 b4_user_formals and b4_user_args.
13203 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
13204 (yyreportAmbiguity): When using a pure parser, also need
13205 the location, and the parse-params.
13206 Adjust callers.
13207 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
13208 When using a pure parser, also need the parse-params.
13209 Adjust callers.
13210 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
13211 (%pure-parser + %parse-param) LALR and GLR parsers.
13212 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
13213 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
13214 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
13215 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
13216 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
13217 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
13218 * doc/bison.texinfo: Untabify the whole file.
13219 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
13220 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
13221 (Error Reporting): Adjust to these new directives.
13222 Document %error-verbose, deprecate YYERROR_VERBOSE.
13223
13224 2002-11-03 Akim Demaille <akim@epita.fr>
13225
13226 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
13227 AT_CHECK_CALC_GLR invocations to use % directives, instead of
13228 command line options.
13229 * tests/cxx-type.at: Formatting changes.
13230
13231 2002-11-03 Paul Eggert <eggert@twinsun.com>
13232
13233 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
13234 to count columns correctly, and to check for invalid inputs.
13235
13236 Use mbsnwidth to count columns correctly. Account for tabs, too.
13237 Include mbswidth.h.
13238 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
13239 (extend_location): New function.
13240 (YY_LINES): Remove.
13241
13242 Handle CRLF in C code rather than in Lex code.
13243 (YY_INPUT): New macro.
13244 (no_cr_read): New function.
13245
13246 Scan UCNs, even though we don't fully handle them yet.
13247 (convert_ucn_to_byte): New function.
13248
13249 Handle backslash-newline correctly in C code.
13250 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
13251 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
13252 all uses changed.
13253 (tag, splice): New EREs. Do not allow NUL or newline in tags.
13254 Use {splice} wherever C allows backslash-newline.
13255 YY_STEP after space, newline, vertical-tab.
13256 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
13257
13258 (letter, id): Don't assume ASCII; e.g., spell out a-z.
13259
13260 ({int}, handle_action_dollar, handle_action_at): Check for integer
13261 overflow.
13262
13263 (YY_STEP): Omit trailing semicolon, so that it's more like C.
13264
13265 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
13266 as well as \000. Check for UCHAR_MAX, not 255.
13267 Allow \x with an arbitrary positive number of digits, as in C.
13268 Check for overflow here.
13269 Allow \? and UCNs, for compatibility with C.
13270
13271 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
13272 with quote slot used by complain_at.
13273
13274 * tests/input.at: Add tests for backslash-newline, m4 quotes
13275 in symbols, long literals, and funny escapes in strings.
13276
13277 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
13278 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
13279 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
13280 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
13281 * m4/mbswidth.m4: New file, from GNU coreutils.
13282
13283 * doc/bison.texinfo (Grammar Outline): Document // comments.
13284 (Symbols): Document that trigraphs have no special meaning in Bison,
13285 nor is backslash-newline allowed.
13286 (Actions): Document that trigraphs have no special meaning.
13287
13288 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
13289 no longer used.
13290
13291 2002-11-02 Paul Eggert <eggert@twinsun.com>
13292
13293 * src/reader.c: Don't include quote.h; not needed.
13294 (get_merge_function): Reword warning to be consistent with
13295 type clash diagnostic in grammar_current_rule_check.
13296
13297 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
13298 bug in trigraph handling.
13299
13300 * src/output.c (prepare_symbols): When printing token names,
13301 escape "[" as "@<:@" and likewise for "]".
13302
13303 * src/system.h (errno): Remove declaration, as we are now
13304 assuming C89 or better, and C89 guarantees errno.
13305
13306 2002-10-30 Paul Eggert <eggert@twinsun.com>
13307
13308 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
13309 Check for close failures.
13310 * src/files.h (xfclose): Return void, not int, since it always
13311 returned zero.
13312 * src/files.c (xfclose): Likewise. Report I/O error if ferror
13313 indicates one.
13314 * src/output.c (output_skeleton): Use xfclose rather than fclose
13315 and ferror. xfclose now checks ferror.
13316
13317 * data/glr.c (YYLEFTMOST_STATE): Remove.
13318 (yyreportTree): Use a stack-based leftmost state. This avoids
13319 our continuing battles with bogus warnings about initializers.
13320
13321 2002-10-30 Akim Demaille <akim@epita.fr>
13322
13323 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13324 #if.
13325
13326 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13327
13328 * tests/glr-regr1.at: New test for reported regressions.
13329 * tests/testsuite.at: Add glr-regr1.at test.
13330 * tests/Makefile.am: Add glr-regr1.at test.
13331
13332 2002-10-24 Paul Eggert <eggert@twinsun.com>
13333
13334 Version 1.75a.
13335
13336 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13337 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13338 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13339 Don't assume strdup exists; POSIX says its an XSI extension.
13340 Check for buffer overflow on input.
13341
13342 2002-10-24 Akim Demaille <akim@epita.fr>
13343
13344 * src/output.c (output_skeleton): Don't disable M4sugar comments
13345 too soon: it results in comments being expanded.
13346 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13347 first output.
13348
13349 2002-10-24 Akim Demaille <akim@epita.fr>
13350
13351 * data/yacc.c (m4_int_type): New.
13352 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13353 char' as only yacc.c wants K&R portability.
13354 * data/glr.c (yysigned_char): Remove.
13355 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13356 Reported by Quoc Peyrot.
13357
13358 2002-10-23 Paul Eggert <eggert@twinsun.com>
13359
13360 * src/main.c (main): With --trace=time, report times even if a
13361 non-fatal error occurs. Formerly, the times were reported in some
13362 such cases but not in others.
13363 * src/reader.c (reader): Just return if a complaint has been issued,
13364 instead of exiting, so that 'main' can report times.
13365
13366 2002-10-22 Akim Demaille <akim@epita.fr>
13367
13368 * src/system.h: Include sys/types.
13369 Reported by Bert Deknuydt.
13370
13371 2002-10-23 Paul Eggert <eggert@twinsun.com>
13372
13373 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13374 Suggested by Art Haas.
13375
13376 2002-10-22 Paul Eggert <eggert@twinsun.com>
13377
13378 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13379 decl; not needed any more.
13380 * src/main.c (main): Use return to exit, undoing yesterday's change.
13381 The last OS that we could find where this wouldn't work is
13382 SunOS 3.5, and that's too old to worry about now.
13383
13384 * data/glr.c (struct yyltype): Define members even when not
13385 doing locations. This is more consistent with yacc.c, and it
13386 works around the following bug reports:
13387 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13388 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
13389
13390 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13391 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13392 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13393
13394 2002-10-22 Akim Demaille <akim@epita.fr>
13395
13396 * data/README: New.
13397
13398 2002-10-21 Paul Eggert <eggert@twinsun.com>
13399
13400 Be consistent about 'bool'; the old code used an enum in one
13401 module and an int in another, and this violates the C standard.
13402 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13403 * configure.ac (AC_HEADER_STDBOOL): Add.
13404 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13405 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13406 * src/symtab.c (hash_compare_symbol_t): Likewise.
13407 * src/system.h (bool, false, true): Use a definition consistent
13408 with ../lib/hash.c. All uses changed.
13409
13410 * src/complain.c (warning_issued): Renamed from warn_message_count,
13411 so that we needn't worry about integer overflow (!).
13412 Now of type bool. All uses changed.
13413 (complaint_issued): Renamed from complain_message_count; likewise.
13414
13415 * src/main.c (main): Use exit to exit with failure.
13416
13417 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13418 rather than 1 and 0.
13419 * src/main.c (main): Likewise.
13420 * src/getargs.c (getargs): Likewise.
13421 * src/reader.c (reader): Likewise.
13422
13423 * src/getarg.c (getargs): Remove duplicate code for
13424 "Try `bison --help'".
13425
13426 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13427 What was that "2" for?
13428
13429 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13430 * src/getargs.c (usage): Likewise.
13431
13432 * src/getargs.c (getargs): When there are too few operands, report
13433 the last one. When there are too many, report the first extra
13434 one. This is how diffutils does it.
13435
13436 2002-10-20 Paul Eggert <eggert@twinsun.com>
13437
13438 Remove K&R vestiges.
13439 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13440 * src/complain.c (VA_START): Remove. Assume prototypes.
13441 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13442 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13443 fatal): Assume prototypes.
13444 * src/complain.h: Assume prototypes.
13445 * src/system.h (PARAMS): Remove.
13446 Include <limits.h> unconditionally, since it's guaranteeed even
13447 for a freestanding C89 compiler.
13448 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13449 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
13450
13451 2002-10-20 Akim Demaille <akim@epita.fr>
13452
13453 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13454 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13455 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13456 (yyresolveStates, yyresolveAction, yyresolveStack)
13457 (yyprocessOneStack): Use them.
13458 (yy_reduce_print): New.
13459 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13460
13461 2002-10-20 Akim Demaille <akim@epita.fr>
13462
13463 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13464 arguments and output `void'.
13465 (b4_c_function): Rename as...
13466 (b4_c_function_def): this.
13467 (b4_c_function_decl, b4_c_ansi_function_def)
13468 (b4_c_ansi_function_decl): New.
13469 Change the interpretation of the arguments: before `int, foo', now
13470 `int foo, foo'.
13471 * data/yacc.c (yyparse): Prototype and define thanks to these.
13472 Adjust b4_c_function_def uses.
13473 * data/glr.c (yyparse): Likewise, but ANSI only.
13474
13475 2002-10-20 Akim Demaille <akim@epita.fr>
13476
13477 * src/output.c (prepare): Move the definition of `tokens_number',
13478 `nterms_number', `undef_token_number', `user_token_number_max'
13479 to...
13480 (prepare_tokens): Here.
13481 (prepare_tokens): Rename as...
13482 (prepare_symbols): this.
13483 (prepare): Move the definition of `rules_number' to...
13484 (prepare_rules): here.
13485 (prepare): Move the definition of `last', `final_state_number',
13486 `states_number' to...
13487 (prepare_states): here.
13488 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13489
13490 2002-10-20 Akim Demaille <akim@epita.fr>
13491
13492 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13493
13494 2002-10-20 Akim Demaille <akim@epita.fr>
13495
13496 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13497 * data/c.m4: here.
13498
13499 2002-10-20 Akim Demaille <akim@epita.fr>
13500
13501 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13502 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13503 `pair'.
13504 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13505 `name' to...
13506 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13507 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13508 These.
13509
13510 2002-10-19 Paul Eggert <eggert@twinsun.com>
13511
13512 Do not create a temporary file, as that involves security and
13513 cleanup headaches. Instead, use a pair of pipes.
13514 Derived from a suggestion by Florian Krohm.
13515 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13516 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13517 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13518 (BISON_PREREQ_SUBPIPE): Add.
13519 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13520 Add subpipe.h, subpipe.c.
13521 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13522 * po/POTFILES.in: Add lib/subpipe.c.
13523 * src/output.c: Include "subpipe.h".
13524 (m4_invoke): Remove decl.
13525 (scan_skel): New decl.
13526 (output_skeleton): Use pipe rather than temporary file for m4 input.
13527 Check that m4sugar.m4 is readable, to avoid deadlock.
13528 Check for pipe I/O error.
13529 * src/scan-skel.l (readpipe): Remove decl.
13530 (scan_skel): New function, to be used in place of m4_invoke.
13531 Read from stream rather than file.
13532
13533 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13534 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13535 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13536 this generates a more-accurate value anyway.
13537
13538 * lib/timevar.c (timervar_accumulate): Rename locals to
13539 avoid confusion with similarly-named more-global.
13540 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13541
13542 * src/output.c (prepare): Use xstrdup to convert char const *
13543 to char *, to avoid GCC warning.
13544
13545 2002-10-19 Akim Demaille <akim@epita.fr>
13546
13547 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13548 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13549 Use them to have `calc.y' ready for %pure-parser.
13550 * data/yacc.c (YYLEX): Pass a yylex return type to
13551 b4_c_function_call.
13552
13553 2002-10-19 Akim Demaille <akim@epita.fr>
13554
13555 Prototype support of %lex-param and %parse-param.
13556
13557 * src/parse-gram.y: Add the definition of the %lex-param and
13558 %parse-param tokens, plus their rules.
13559 Drop the `_' version of %glr-parser.
13560 Add the "," token.
13561 * src/scan-gram.l (INITIAL): Scan them.
13562 * src/muscle_tab.c: Comment changes.
13563 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13564 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13565 (muscle_entry_s): The `value' member is no longer const.
13566 Adjust all dependencies.
13567 * src/muscle_tab.c (muscle_init): Adjust: use
13568 MUSCLE_INSERT_STRING.
13569 Initialize the obstack earlier.
13570 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13571 (muscle_pair_list_grow): New.
13572 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13573 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13574 * tests/calc.at: Use %locations, not --locations.
13575 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13576
13577 2002-10-19 Akim Demaille <akim@epita.fr>
13578
13579 * src/getargs.c (usage): Take status as argument and exit
13580 accordingly.
13581 Report the traditional `Try ... --help' message when status != 0.
13582 (usage, version): Don't take a FILE * as arg, it is pointless.
13583 (getargs): When there is an incorrect number of arguments, make it
13584 an error, and report it GNUlically thanks to `usage ()'.
13585
13586 2002-10-18 Paul Eggert <eggert@twinsun.com>
13587
13588 * data/glr.c (yyreportParseError): Don't assume that sprintf
13589 yields the length of the printed string, as this is not true
13590 on SunOS 4.1.4. Reported by Peter Klein.
13591
13592 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13593 * tests/conflicts.at (%nonassoc and eof): Likewise.
13594 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13595
13596 2002-10-17 Akim Demaille <akim@epita.fr>
13597
13598 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13599 * src/getargs.c (trace_types, trace_args): Adjust.
13600 * src/reader.c (grammar_current_rule_prec_set)
13601 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13602 Standardize error messages.
13603 And s/@prec/%prec/!
13604 (reader): Use trace_flag to enable scanner/parser debugging,
13605 instead of an adhoc scheme.
13606 * src/scan-gram.l: Remove trailing debugging code.
13607
13608 2002-10-16 Paul Eggert <eggert@twinsun.com>
13609
13610 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13611 MUSCLE_TAB_H.
13612
13613 * NEWS: Officially drop support for building Bison with K&R C,
13614 since it didn't work anyway and it's not worth worrying about.
13615 * Makefile.maint (wget_files): Remove ansi2knr.c.
13616 (ansi2knr.c-url_prefix): Remove.
13617 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13618 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13619 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13620
13621 2002-10-15 Paul Eggert <eggert@twinsun.com>
13622
13623 Stop using the "enum_" trick for K&R-style function definitions;
13624 it confused me, and I was the author! Instead, assume that people
13625 who want to use K&R C compilers (when using these modules in GCC,
13626 perhaps?) will run ansi2knr.
13627
13628 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13629 All uses of "enum_" changed to "enum ".
13630 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13631 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13632
13633 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13634 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13635 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13636 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13637 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13638 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13639 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13640 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13641 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13642 Use function prototypes; this removes the need for declaring
13643 static functions simply to provide their prototypes.
13644 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13645 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13646 bitset_count_, bitset_create, bitset_dump, bitset_first,
13647 bitset_free, bitset_init, bitset_last, bitset_next,
13648 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13649 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13650 bitset_print, bitset_release_memory, bitset_toggle_,
13651 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13652 debug_bitset): Likewise.
13653 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13654 * lib/bitset_stats.c (bitset_log_histogram_print,
13655 bitset_percent_histogram_print, bitset_stats_and,
13656 bitset_stats_and_cmp, bitset_stats_and_or,
13657 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13658 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
13659 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
13660 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
13661 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
13662 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
13663 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
13664 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
13665 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
13666 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
13667 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
13668 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
13669 bitset_stats_zero): Likewise.
13670 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13671 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13672 bitsetv_dump, debug_bitsetv): Likewise.
13673 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
13674 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
13675 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
13676 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
13677 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
13678 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
13679 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
13680 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
13681 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
13682 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
13683 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
13684 Likewise.
13685 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
13686 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
13687 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
13688 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
13689 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
13690 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
13691 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
13692 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
13693 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
13694 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
13695 lbitset_xor_cmp, lbitset_zero): Likewise.
13696
13697 2002-10-14 Akim Demaille <akim@epita.fr>
13698
13699 Version 1.75.
13700
13701 2002-10-14 Akim Demaille <akim@epita.fr>
13702
13703 * tests/Makefile.am (maintainer-check-posix): New.
13704
13705 2002-10-14 Akim Demaille <akim@epita.fr>
13706
13707 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
13708 member.
13709
13710 2002-10-14 Akim Demaille <akim@epita.fr>
13711
13712 * src/tables.c (table_ninf_remap): base -> tab.
13713 Reported by Matt Rosing.
13714
13715 2002-10-14 Paul Eggert <eggert@twinsun.com>
13716
13717 * tests/action.at, tests/calc.at, tests/conflicts.at,
13718 tests/cxx-type.at, tests/headers.at, tests/input.at,
13719 tests/regression.at, tests/synclines.at, tests/torture.at:
13720 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
13721 so that the tests still work even if POSIXLY_CORRECT is set.
13722 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
13723
13724 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
13725 for portability to K&R hosts. Fix typo: signed char is guaranteed
13726 only to 127, not to 128.
13727 * data/glr.c (yysigned_char): New type.
13728 * data/yacc.c (yysigned_char): Likewise.
13729 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
13730
13731 2002-10-13 Paul Eggert <eggert@twinsun.com>
13732
13733 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
13734 true due to limited range of data type" warning from GCC.
13735
13736 * data/c.m4 (b4_token_defines): Protect against double-inclusion
13737 by wrapping enum yytokentype's definition inside #ifndef
13738 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
13739
13740 2002-10-13 Akim Demaille <akim@epita.fr>
13741
13742 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
13743 Un yy- yyrhs to avoid the name clash with the global YYRHS.
13744
13745 2002-10-13 Akim Demaille <akim@epita.fr>
13746
13747 * Makefile.maint: Update from Autoconf 2.54.
13748 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
13749
13750 2002-10-13 Akim Demaille <akim@epita.fr>
13751
13752 * src/print.c (print_state): Separate the list of solved conflicts
13753 from the other items.
13754 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
13755
13756 2002-10-13 Akim Demaille <akim@epita.fr>
13757
13758 Let nondeterministic skeletons be usable with deterministic
13759 tables.
13760
13761 With the patch, GAWK compiled by GCC without -O2 passes its test
13762 suite using a GLR parser driven by LALR tables. It fails with -O2
13763 because `struct stat' gives two different answers on my machine:
13764 88 (definition of an auto var) and later 96 (memset on this var).
13765 Hence the stack is badly corrumpted. The headers inclusion is to
13766 blame: if I move the awk.h inclusion before GLR's system header
13767 inclusion, the two struct stat have the same size.
13768
13769 * src/tables.c (pack_table): Always create conflict_table.
13770 (token_actions): Always create conflict_list.
13771 * data/glr.c (YYFLAG): Remove, unused.
13772
13773 2002-10-13 Akim Demaille <akim@epita.fr>
13774
13775 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
13776 (O0FLAGS): New.
13777 (VALGRIND, GXX): New.
13778 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
13779 * tests/bison.in: Run $PREBISON a pre-command.
13780 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
13781 (maintainer-check-g++): New.
13782 * Makefile.am (maintainer-check): New.
13783
13784 2002-10-13 Akim Demaille <akim@epita.fr>
13785
13786 * data/glr.c: Formatting changes.
13787 Tweak some trace messages to match yacc.c's.
13788
13789 2002-10-13 Akim Demaille <akim@epita.fr>
13790
13791 GLR parsers sometimes raise parse errors instead of performing the
13792 default reduction.
13793 Reported by Charles-Henry de Boysson.
13794
13795 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
13796 check the length of the traces when %glr.
13797 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
13798 GLR's traces.
13799 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
13800 Test GLR parsers.
13801 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
13802 (yyltype): Remove the yy prefix from the member names.
13803 (yytable): Complete its comment.
13804 (yygetLRActions): Map error action number from YYTABLE from
13805 YYTABLE_NINF to 0.
13806 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
13807 (which was a bug: it should have been YYTABEL_NINF, and yet it was
13808 not satisfying as we could compare an YYACTION computed from
13809 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
13810 only value for error actions.
13811 (yyreportParseError): In verbose parse error messages, don't issue
13812 `error' in the list of expected tokens.
13813 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
13814 next action to perform to match glr.c's decoding.
13815 (yytable): Complete its comment.
13816
13817 2002-10-13 Paul Eggert <eggert@twinsun.com>
13818
13819 Fix problem reported by Henrik Grubbstroem in
13820 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
13821 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
13822 because the Bison parser reads the second action before reducing
13823 the first one.
13824 * src/scan-gram.l (rule_length): New static var.
13825 Use it to keep track of the rule length in the scanner, since
13826 we can't expect the parser to be in lock-step sync with the scanner.
13827 (handle_action_dollar, handle_action_at): Use this var.
13828 * tests/actions.at (Exotic Dollars): Test for the problem.
13829
13830 2002-10-12 Paul Eggert <eggert@twinsun.com>
13831
13832 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
13833 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
13834 Include <sys/time.h> when checking for clock_t and struct tms.
13835 Use same include order as source.
13836 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
13837 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
13838
13839 * lib/timevar.c: Update copyright date and clarify comments.
13840 (get_time) [IN_GCC]: Keep the GCC version for reference.
13841
13842 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
13843 GCC version as of today, then merge Bison's changes.
13844 Change "GCC" to "Bison" in copyright notice. timevar.def's
13845 author is Akim, so change that too.
13846
13847 * src/reader.c (grammar_current_rule_check):
13848 Don't worry about the default action if $$ is untyped.
13849 Prevents bogus warnings reported by Jim Gifford in
13850 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
13851
13852 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
13853 * data/glr.c, data/lalr1.cc, data/yacc.c:
13854 Output token definitions before the first part of user declarations.
13855 Fixes compatibility problem reported by Jim Gifford for kbd in
13856 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
13857
13858 2002-10-11 Paul Eggert <eggert@twinsun.com>
13859
13860 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
13861 (yyparse): here. This undoes some of the 2002-07-25 change.
13862 Compatibility problem reported by Ralf S. Engelschall with
13863 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
13864
13865 2002-10-11 Akim Demaille <akim@epita.fr>
13866
13867 * tests/regression.at Characters Escapes): New.
13868 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
13869 characters.
13870 Reported by Jan Nieuwenhuizen.
13871
13872 2002-10-11 Akim Demaille <akim@epita.fr>
13873
13874 * po/id.po: New.
13875
13876 2002-10-10 Paul Eggert <eggert@twinsun.com>
13877
13878 Portability fixes for bitsets; this also avoids several GCC
13879 warnings.
13880
13881 * lib/abitset.c: Include <stddef.h>, for offsetof.
13882 * lib/lbitset.c: Likewise.
13883
13884 * lib/abitset.c (abitset_bytes): Return a size that is aligned
13885 properly for vectors of objects. Do not assume that adding a
13886 header size to a multiple of a word size yields a value that is
13887 properly aligned for the whole union.
13888 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13889
13890 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
13891 unique names for structures.
13892 * lib/ebitset.c (ebitset_bytes): Likewise.
13893 * lib/lbitset.c (lbitset_bytes): Likewise.
13894
13895 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
13896 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
13897 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
13898 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
13899 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
13900 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
13901 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
13902 to improve the type-checking that GCC can do.
13903 * lib/bitset.c (bitset_op4_cmp): Likewise.
13904 * lib/bitset_stats.c (bitset_stats_count,
13905 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
13906 bitset_stats_copy, bitset_stats_disjoint_p,
13907 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
13908 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
13909 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
13910 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
13911 bitset_stats_and_or_cmp, bitset_stats_andn_or,
13912 bitset_stats_andn_or_cmp, bitset_stats_or_and,
13913 bitset_stats_or_and_cmp): Likewise.
13914 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
13915 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
13916 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
13917 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
13918
13919 * lib/abitset.h: Include bitset.h, not bbitset.h.
13920 * lib/ebitset.h: Likewise.
13921 * lib/lbitset.h: Likewise.
13922
13923 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
13924 All instances of parameters of type enum bitset_opts are now of
13925 type enum_bitset_opts, to conform to the C Standard, and similarly
13926 for enum_bitset_type.
13927 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13928 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13929
13930 Do not use "struct bitset_struct" to mean different things in
13931 different modules. Not only is this confusing, it violates
13932 the C Standard, which requires that structure types in different
13933 modules must be compatible if one is to be passed to the other.
13934 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
13935 All instances of "struct bitset_struct *" replaced with "bitset".
13936 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
13937 (union bitset_union, struct abitset_struct, struct ebitset_struct,
13938 struct lbitset_struct, struct bitset_stats_struct): New types.
13939 All uses of struct bitset_struct changed to union bitset_union,
13940 etc.
13941 * lib/abitset.c (struct abitset_struct, abitset,
13942 struct bitset_struct): Remove.
13943 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
13944 struct bitset_struct): Remove.
13945 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
13946 bitset_struct): Remove.
13947 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
13948 Likewise.
13949
13950 Do not call a function of type T using a call that assumes the
13951 function is of a different type U. Standard C requires that a
13952 function must be called with a type that is compatible with its
13953 definition.
13954 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13955 New decls.
13956 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13957 New functions.
13958 * lib/ebitset.c (PFV): Remove.
13959 * lib/lbitset.c (PFV): Likewise.
13960 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
13961 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
13962 decls.
13963 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
13964 (ebitset_vtable): Use them.
13965 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
13966 lbitset_xor): New functions.
13967 (lbitset_vtable): Use them.
13968
13969 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
13970 Declare.
13971
13972 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
13973 GCC warning.
13974 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
13975 Use offsetof, for simplicity.
13976
13977 2002-10-06 Paul Eggert <eggert@twinsun.com>
13978
13979 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
13980 the same width as int. This reapplies a hunk of the 2002-08-12 patch
13981 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
13982 which was inadvertently undone by the 2002-09-30 patch.
13983 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
13984 the same width as int.
13985
13986 2002-10-04 Paul Eggert <eggert@twinsun.com>
13987
13988 Version 1.50.
13989
13990 * configure.ac (AC_INIT), NEWS: Increment version number.
13991
13992 * doc/bison.texinfo: Minor spelling, grammar, and white space
13993 fixes.
13994 (Symbols): Mention that any negative value returned from yylex
13995 signifies end-of-input. Warn about negative chars. Mention
13996 the portable Standard C character set.
13997
13998 The GNU coding standard says CFLAGS and YFLAGS are reserved
13999 for the installer to set.
14000 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
14001 * src/Makefile.am (AM_CFLAGS): Likewise.
14002 (AM_YFLAGS): Renamed from YFLAGS.
14003
14004 Fix some MAX and MIN problems.
14005 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
14006 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
14007 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
14008 * src/reader.c (reader): Use it.
14009
14010 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
14011 POSIX 1003.1-2001 has removed fgrep.
14012
14013 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
14014
14015 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
14016 interpreted as signed.
14017 * lib/ebitset.c (ebitset_list): Fix bug.
14018
14019 2002-10-01 Paul Eggert <eggert@twinsun.com>
14020
14021 More fixes for 64-bit hosts and large bitsets.
14022
14023 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
14024 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
14025 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
14026 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
14027 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
14028 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
14029 bitset_count_): Likewise.
14030 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
14031 bitset_first, bitset_last): Likewise.
14032 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
14033 bitset_stats_list_reverse, bitset_stats_size,
14034 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
14035 Likewise.
14036 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14037 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
14038 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
14039 bitsetv_reflexive_transitive_closure): Likewise.
14040 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
14041 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
14042 Likewise.
14043 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
14044 Likewise.
14045
14046 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
14047 Use size_t, not unsigned int, to count bytes.
14048 * lib/abitset.h (abitset_bytes): Likewise.
14049 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
14050 Likewise.
14051 * lib/bitset.h (bitset_bytes): Likewise.
14052 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
14053 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
14054 * lib/bitsetv.c (bitsetv_alloc): Likewise.
14055 * lib/ebitset.c (ebitset_bytes): Likewise.
14056 * lib/ebitset.h (ebitset_bytes): Likewise.
14057 * lib/lbitset.c (lbitset_bytes): Likewise.
14058 * lib/lbitset.h (lbitset_bytes): Likewise.
14059
14060 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
14061 abitset_subset_p, abitset_disjoint_p, abitset_and,
14062 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
14063 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
14064 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
14065 abitset_or_and, abitset_or_and_cmp):
14066 Use bitset_windex instead of unsigned int.
14067 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14068 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
14069 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
14070 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
14071 Likewise.
14072 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
14073
14074 * lib/bitset.c (bitset_print):
14075 Use proper printf formats for widths of integer types.
14076 * lib/bitset_stats.c (bitset_percent_histogram_print,
14077 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
14078 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14079 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14080 * lib/lbitset.c (lbitset_bytes): Likewise.
14081
14082 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
14083 BITSET_SIZE_MAX): New macros.
14084 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
14085 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
14086 to BITSET_WINDEX_MAX.
14087
14088 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
14089 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
14090 since we now return the bitset_bindex type (not int).
14091
14092 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
14093 when computing sizes.
14094 * lib/ebitset.c (ebitset_elts_grow): Likewise.
14095
14096 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
14097 and avoid cast to unsigned.
14098
14099 2002-09-30 Akim Demaille <akim@epita.fr>
14100
14101 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
14102 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
14103 Updates from Michael Hayes.
14104
14105 2002-09-30 Art Haas <ahaas@neosoft.com>
14106
14107 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
14108 invocations.
14109 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
14110 defined.
14111
14112 2002-09-27 Akim Demaille <akim@epita.fr>
14113
14114 Version 1.49c.
14115
14116 2002-09-27 Akim Demaille <akim@epita.fr>
14117
14118 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
14119 (Because of AC_LIBSOURCE).
14120
14121 2002-09-27 Akim Demaille <akim@epita.fr>
14122
14123 Playing with Autoscan.
14124
14125 * configure.ac: Remove the old LIBOBJ tweaks.
14126 (AC_REPLACE_FUNCS): Add strrchr and strtol.
14127 * lib/strrchr.c: New.
14128 * lib/strtol.c: New, from the Coreutils 4.5.1.
14129
14130 2002-09-27 Akim Demaille <akim@epita.fr>
14131
14132 Playing with Autoscan.
14133
14134 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
14135 * lib/Makefile.am (libbison_a_SOURCES): No longer include
14136 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
14137 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
14138 Coreutils 4.5.1.
14139
14140 2002-09-24 Akim Demaille <akim@epita.fr>
14141
14142 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
14143 (Frequently Asked Questions, Parser Stack Overflow): New.
14144
14145 2002-09-13 Akim Demaille <akim@epita.fr>
14146
14147 Playing with autoscan.
14148
14149 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
14150 * src/files.c (skeleton_find): Remove, unused.
14151 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
14152 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
14153
14154 2002-09-13 Akim Demaille <akim@epita.fr>
14155
14156 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
14157 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
14158
14159 2002-09-13 Akim Demaille <akim@epita.fr>
14160
14161 * configure.ac: Require 2.54.
14162 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
14163 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
14164 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
14165 Remove, provided by Autoconf macros.
14166
14167 2002-09-12 Akim Demaille <akim@epita.fr>
14168
14169 * m4/prereq.m4: Update, from Coreutils 4.5.1.
14170
14171 2002-09-12 Akim Demaille <akim@epita.fr>
14172
14173 * m4/prereq.m4: Update, from Fileutils 4.1.5.
14174 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
14175 Reported by Martin Mokrejs.
14176
14177 2002-09-10 Akim Demaille <akim@epita.fr>
14178
14179 * src/parse-gram.y: Associate a human readable string to each
14180 token type.
14181 * tests/regression.at (Invalid inputs): Adjust.
14182
14183 2002-09-10 Gary V. Vaughan <gary@gnu.org>
14184
14185 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
14186 with an Autoconf-2.5x style configure.ac.
14187
14188 2002-09-06 Paul Eggert <eggert@twinsun.com>
14189
14190 * doc/bison.texinfo (Conditions): Make explicit that the GPL
14191 exception applies only to yacc.c. This is a modification of a
14192 patch originally suggested by Akim Demaille.
14193
14194 2002-09-06 Akim Demaille <akim@epita.fr>
14195
14196 * data/c.m4 (b4_copyright): Move the GPL exception comment from
14197 here to...
14198 * data/yacc.c: here.
14199
14200 * data/lalr1.cc (struct yyltype): Don't define it, since we use
14201 LocationType.
14202 (b4_ltype): Default to yy::Location from location.hh.
14203
14204 2002-09-04 Jim Meyering <jim@meyering.net>
14205
14206 * data/yacc.c: Guard the declaration of yytoknum also with
14207 `#ifdef YYPRINT', so it is declared only when used.
14208
14209 2002-09-04 Akim Demaille <akim@epita.fr>
14210
14211 * configure.in: Rename as...
14212 * configure.ac: this.
14213 Bump to 1.49c.
14214
14215 2002-09-04 Akim Demaille <akim@epita.fr>
14216
14217 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
14218 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
14219 translate maintainer only messages.
14220
14221 2002-08-12 Paul Eggert <eggert@twinsun.com>
14222
14223 Version 1.49b.
14224
14225 * Makefile.am (SUBDIRS): Remove intl.
14226 (DISTCLEANFILES): Remove.
14227 * NEWS: Mention that GNU M4 is now required. Clarify what is
14228 meant by "larger grammars". Mention the pt_BR translation.
14229 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
14230 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
14231 Bump version from 0.11.2 to 0.11.5.
14232 (BISON_PREREQ_STAGE): Remove.
14233 (AM_GNU_GETTEXT): Use external gettext.
14234 (AC_OUTPUT): Remove intl/Makefile.
14235
14236 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
14237
14238 * data/glr.c: Include string.h, for strlen.
14239 (yyreportParseError): Use size_t for yysize.
14240 (yy_yypstack): No longer nested inside yypstates, as nested
14241 functions are not portable. Do not assume size_t is the
14242 same width as int.
14243 (yypstates): Do not assume that ptrdiff_t is the same width
14244 as int, and similarly for yyposn and YYINDEX.
14245
14246 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
14247
14248 * lib/Makefile.am (INCLUDES): Do not include from the intl
14249 directory, which has been removed.
14250 * src/Makefile.am (INCLUDES): Likewise.
14251
14252 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
14253 (bitsets_sources, additional_bitsets_sources, timevars_sources):
14254 New vars.
14255
14256 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
14257 * tests/Makefile.am (EXTRA_DIST): Likewise.
14258
14259 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
14260 Do not assume that bitset_windex is the same width as unsigned.
14261
14262 * lib/abitset.c (abitset_unused_clear): Do not assume that
14263 bitset_word is the same width as int.
14264 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
14265 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
14266 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
14267 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
14268 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
14269
14270 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
14271 portability to one's complement hosts!).
14272 * lib/ebitset.c (ebitset_op1): Likewise.
14273 * lib/lbitset.c (lbitset_op1): Likewise.
14274
14275 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
14276 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
14277 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
14278 Sync with fileutils.
14279 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
14280 lib/gettext.h: Sync with diffutils.
14281
14282 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
14283 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
14284
14285 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
14286 PROTOTYPES to check for prototypes, and "defined __STDC__" to
14287 check for void *.
14288
14289 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
14290 size_t; the old version tried to do this but casted improperly.
14291 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
14292 (bitset_test): Now returns int, not unsigned long.
14293
14294 * lib/bitset_stats.c: Include "gettext.h".
14295 (_): New macro.
14296 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
14297 name locals "index", as it generates unnecessary warnings on some
14298 hosts that have an "index" function.
14299
14300 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
14301 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
14302 they need translation.
14303 * src/LR0.c (state_list_append, new_itemsets, get_state,
14304 append_states, generate_states): Likewise.
14305 * src/assoc.c (assoc_to_string): Likewise.
14306 * src/closure.c (print_closure, set_firsts, closure): Likewise.
14307 * src/gram.c (grammar_dump): Likewise.
14308 * src/injections.c (injections_compute): Likewise.
14309 * src/lalr.c (lookaheads_print): Likewise.
14310 * src/relation.c (relation_transpose): Likewise.
14311 * src/scan-gram.l: Likewise.
14312 * src/tables.c (table_grow, pack_vector): Likewise.
14313
14314 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14315 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14316 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14317 * m4/mbstate_t.m4: Sync with fileutils.
14318 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14319
14320 * po/LINGUAS: Add pt_BR.
14321 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14322 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14323 lib/timevar.c.
14324 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14325 manual recommends.
14326 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14327
14328 * src/complain.c (strerror_r): Remove decl; not needed.
14329 (strerror): Use same pattern as ../lib/error.c.
14330
14331 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14332
14333 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14334
14335 * src/main.c (main): Cast result of bindtextdomain and textdomain
14336 to void, to avoid a GCC warning when --disable-nls is in effect.
14337
14338 * src/scan-gram.l: Use strings rather than escapes when possible,
14339 to minimize the number of warnings from xgettext.
14340 (handle_action_dollar, handle_action_at): Don't use isdigit,
14341 as it mishandles negative chars and it may not work as expected
14342 outside the C locale.
14343
14344 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14345 this is a GCC extension and is not portable to other compilers.
14346
14347 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14348 Do not include <ctype.h>; no longer needed.
14349 Do not include <malloc.h>; no longer needed (and generates
14350 warnings on OpenBSD 3.0).
14351
14352 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14353 it's not portable.
14354
14355 * tests/regression.at: Do not use 'cc -c input.c -o input';
14356 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14357
14358 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14359 exit status as failure, not just exit status 1. Sun C exits
14360 with status 2 sometimes.
14361
14362 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14363 Use it for the two large tests.
14364
14365 2002-08-02 Akim Demaille <akim@epita.fr>
14366
14367 * src/conflicts.c (conflicts_output): Don't output rules never
14368 reduced here, since anyway that computation doesn't work.
14369 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14370 (rule_useless_p, rule_never_reduced_p): New.
14371 (grammar_rules_partial_print): Use a filter instead of a range.
14372 Display the title only if needed.
14373 (grammar_rules_print): Adjust.
14374 (grammar_rules_never_reduced_report): New.
14375 * src/tables.c (action_row): Move the computation of rules never
14376 reduced to...
14377 (token_actions): here.
14378 * src/main.c (main): Make the parser before making the report, so
14379 that rules never reduced are computed.
14380 Call grammar_rules_never_reduced_report.
14381 * src/print.c (print_results): Report rules never reduced.
14382 * tests/conflicts.at, tests/reduce.at: Adjust.
14383
14384 2002-08-01 Akim Demaille <akim@epita.fr>
14385
14386 Instead of attaching lookaheads and duplicating the rules being
14387 reduced by a state, attach the lookaheads to the reductions.
14388
14389 * src/state.h (state_t): Remove the `lookaheads',
14390 `lookaheads_rule' member.
14391 (reductions_t): Add a `lookaheads' member.
14392 Use a regular array for the `rules'.
14393 * src/state.c (reductions_new): Initialize the lookaheads member
14394 to 0.
14395 (state_rule_lookaheads_print): Adjust.
14396 * src/state.h, src/state.c (state_reductions_find): New.
14397 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14398 (count_rr_conflicts): Adjust.
14399 * src/lalr.c (LArule): Remove.
14400 (add_lookback_edge): Adjust.
14401 (state_lookaheads_count): New.
14402 (states_lookaheads_initialize): Merge into...
14403 (initialize_LA): this.
14404 (lalr_free): Adjust.
14405 * src/main.c (main): Don't free nullable and derives too early: it
14406 is used by --verbose.
14407 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14408
14409 2002-08-01 Akim Demaille <akim@epita.fr>
14410
14411 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14412 `rule_number_t**'.
14413 (set_derives, free_derives): Rename as...
14414 (derives_compute, derives_free): this.
14415 Adjust all dependencies.
14416 * src/nullable.c (set_nullable, free_nullable): Rename as...
14417 (nullable_compute, nullable_free): these.
14418 (rule_list_t): Store rule_t *, not rule_number_t.
14419 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14420 pointers, instead of their numbers.
14421 * src/main.c (main): Call nullable_free, and derives_free earlier,
14422 as they were lo longer used.
14423
14424 2002-08-01 Akim Demaille <akim@epita.fr>
14425
14426 * lib/timevar.c (get_time): Include children time.
14427 * src/lalr.h (LA, LArule): Don't export them: used with the
14428 state_t.
14429 * src/lalr.c (LA, LArule): Static.
14430 * src/lalr.h, src/lalr.c (lalr_free): New.
14431 * src/main.c (main): Call it.
14432 * src/tables.c (pack_vector): Check whether loc is >= to the
14433 table_size, not >.
14434 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14435 (tables_generate): do it, since that's also it which allocates
14436 them.
14437 Don't free LA and LArule, main does.
14438
14439 2002-07-31 Akim Demaille <akim@epita.fr>
14440
14441 Separate parser tables computation and output.
14442
14443 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14444 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14445 (yydefgoto, yydefact, high): Move to...
14446 * src/tables.h, src/tables.c: here.
14447 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14448 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14449 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14450 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14451 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14452 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14453 (action_row, save_row, token_actions, save_column, default_goto)
14454 (goto_actions, sort_actions, matching_state, pack_vector)
14455 (table_ninf_remap, pack_table, prepare_actions): Move to...
14456 * src/tables.c: here.
14457 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14458 * src/output.c (token_actions, output_base, output_conflicts)
14459 (output_check): Merge into...
14460 (prepare_actions): this.
14461 (actions_output): Rename as...
14462 (user_actions_output): this.
14463 * src/main.c (main): Call tables_generate and tables_free.
14464
14465 2002-07-31 Akim Demaille <akim@epita.fr>
14466
14467 Steal GCC's --time-report support.
14468
14469 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14470 stolen/adjusted from GCC.
14471 * m4/stage.m4: Remove time related checks.
14472 * m4/timevar.m4: New.
14473 * configure.in: Adjust.
14474 * src/system.h: Adjust to using timevar.h.
14475 * src/getargs.h, src/getargs.c: Support trace_time for
14476 --trace=time.
14477 * src/main.c (stage): Remove.
14478 (main): Replace `stage' invocations with timevar calls.
14479 * src/output.c: Insert pertinent timevar calls.
14480
14481 2002-07-31 Akim Demaille <akim@epita.fr>
14482
14483 Let --trace have arguments.
14484
14485 * src/getargs.h (enum trace_e): New.
14486 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14487 (long_options, short_options): --trace/-T takes an optional
14488 argument.
14489 Change all the uses of trace_flag to reflect the new flags.
14490 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14491
14492 Strengthen `stage' portability.
14493
14494 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14495 * configure.in: Use it.
14496 Don't check for malloc.h and sys/times.h.
14497 * src/system.h: Include them when appropriate.
14498 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14499 times and struct tms are available.
14500
14501 2002-07-30 Akim Demaille <akim@epita.fr>
14502
14503 In verbose parse error message, don't report `error' as an
14504 expected token.
14505 * tests/actions.at (Printers and Destructors): Adjust.
14506 * tests/calc.at (Calculator $1): Adjust.
14507 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14508 error message, do not report the parser accepts the error token in
14509 that state.
14510
14511 2002-07-30 Akim Demaille <akim@epita.fr>
14512
14513 Normalize conflict related messages.
14514
14515 * src/complain.h, src/complain.c (warn, complain): New.
14516 * src/conflicts.c (conflicts_print): Use them.
14517 (conflict_report_yacc): New, extracted from...
14518 (conflicts_print): here.
14519 * tests/conflicts.at, tests/existing.at: Adjust.
14520
14521 2002-07-30 Akim Demaille <akim@epita.fr>
14522
14523 Report rules which are never reduced by the parser: those hidden
14524 by conflicts.
14525
14526 * src/LR0.c (save_reductions): Don't make the final state too
14527 different: save its reduction (accept) instead of having a state
14528 without any action (no shift or goto, no reduce).
14529 Note: the final state is now a ``regular'' state, i.e., the
14530 parsers now contain `reduce 0' as default reduction.
14531 Nevertheless, since they decide to `accept' when yystate =
14532 final_state, they still will not reduce rule 0.
14533 * src/print.c (print_actions, print_reduction): Adjust.
14534 * src/output.c (action_row): Track reduced rules.
14535 (token_actions): Report rules never reduced.
14536 * tests/conflicts.at, tests/regression.at: Adjust.
14537
14538 2002-07-30 Akim Demaille <akim@epita.fr>
14539
14540 `stage' was accidently included in a previous patch.
14541 Initiate its autoconfiscation.
14542
14543 * configure.in: Look for malloc.h and sys/times.h.
14544 * src/main.c (stage): Adjust.
14545 Report only when trace_flag.
14546
14547 2002-07-29 Akim Demaille <akim@epita.fr>
14548
14549 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14550 state_number_t.
14551 (errs_t): symbol_t*, not symbol_number_t.
14552 (reductions_t): rule_t*, not rule_number_t.
14553 (FOR_EACH_SHIFT): New.
14554 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14555 * src/print.c, src/print_graph.c: Adjust.
14556
14557 2002-07-29 Akim Demaille <akim@epita.fr>
14558
14559 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14560
14561 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14562 (endtoken, accept): these.
14563 * src/reader.c (reader): Set endtoken's default tag to "$end".
14564 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14565 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14566 Adjust.
14567
14568 2002-07-29 Akim Demaille <akim@epita.fr>
14569
14570 * src/reduce.c (reduce_grammar): When the language is empty,
14571 complain about the start symbol, not the axiom.
14572 Use its location.
14573 * tests/reduce.at (Empty Language): New.
14574
14575 2002-07-26 Akim Demaille <akim@epita.fr>
14576
14577 * src/reader.h, src/reader.c (gram_error): ... can't get
14578 yycontrol without making too strong assumptions on the parser
14579 itself.
14580 * src/output.c (prepare_tokens): Use the real 0th value of
14581 token_translations instead of `0'.
14582 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14583 visible here.
14584 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14585 for the time being: %locations ought to provide it to yyerror.
14586
14587 2002-07-25 Akim Demaille <akim@epita.fr>
14588
14589 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14590 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14591 * tests/regression.at (Web2c Actions): Adjust.
14592
14593 2002-07-25 Akim Demaille <akim@epita.fr>
14594
14595 Stop storing rules from 1 to nrules + 1.
14596
14597 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14598 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14599 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14600 Iterate from 0 to nrules.
14601 Use rule_number_as_item_number and item_number_as_rule_number.
14602 Adjust to `derive' now containing possibly 0.
14603 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14604 Handle the `- 1' part in rule numbers from/to item numbers.
14605 * src/conflicts.c (log_resolution): Fix the message which reversed
14606 shift and reduce.
14607 * src/output.c (action_row): Initialize default_rule to -1.
14608 (token_actions): Adjust.
14609 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14610 expected output.
14611 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14612
14613 2002-07-25 Akim Demaille <akim@epita.fr>
14614
14615 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14616 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14617 (b4_c_knr_arg_decl): New.
14618 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14619 yyreport_parse_error.
14620
14621 2002-07-25 Akim Demaille <akim@epita.fr>
14622
14623 * data/yacc.c (yyreport_parse_error): New, extracted from...
14624 (yyparse): here.
14625 (yydestruct, yysymprint): Move above yyparse.
14626 Be K&R compliant.
14627
14628 2002-07-25 Akim Demaille <akim@epita.fr>
14629
14630 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14631 replace...
14632 (b4_sint_type, b4_uint_type): these.
14633 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14634 * tests/regression.at (Web2c Actions): Adjust.
14635
14636 2002-07-25 Akim Demaille <akim@epita.fr>
14637
14638 * src/gram.h (TIEM_NUMBER_MAX): New.
14639 (item_number_of_rule_number, rule_number_of_item_number): Rename
14640 as...
14641 (rule_number_as_item_number, item_number_as_rule_number): these.
14642 Adjust dependencies.
14643 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14644 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14645 (symbol_number_to_vector_number): New.
14646 (order): Of vector_number_t* type.
14647 (base_t, BASE_MAX, BASE_MIN): New.
14648 (froms, tos, width, pos, check): Of base_t type.
14649 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14650 (actrow): Of action_number_t type.
14651 (conflrow): Of unsigned int type.
14652 (table_ninf, base_ninf): New.
14653 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14654 (muscle_insert_int_table, muscle_insert_base_table)
14655 (muscle_insert_rule_number_table): New.
14656 (prepare_tokens): Output `toknum' as int_table.
14657 (action_row): Returns a rule_number_t.
14658 Use ACTION_MIN, not SHRT_MIN.
14659 (token_actions): yydefact is rule_number_t*.
14660 (table_ninf_remap): New.
14661 (pack_table): Use it for `base' and `table'.
14662 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
14663 replaced with...
14664 (YYPACT_NINF, YYTABLE_NINF): these.
14665 (yypact, yytable): Compute their types instead of hard-coded
14666 `short'.
14667 * tests/regression.at (Web2c Actions): Adjust.
14668
14669 2002-07-19 Akim Demaille <akim@epita.fr>
14670
14671 * src/scan-gram.l (id): Can start with an underscore.
14672
14673 2002-07-16 Akim Demaille <akim@epita.fr>
14674
14675 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
14676 Adjust all former `associativity' dependencies.
14677 * src/symtab.c (symbol_new): Default associativity is `undef', not
14678 `right'.
14679 (symbol_check_alias_consistence): Adjust.
14680
14681 2002-07-09 Akim Demaille <akim@epita.fr>
14682
14683 * doc/bison.texinfo: Properly set the ``header'' part.
14684 Use @dircategory ``GNU programming tools'' as per Texinfo's
14685 documentation.
14686 Use @copying.
14687
14688 2002-07-09 Akim Demaille <akim@epita.fr>
14689
14690 * lib/quotearg.h: Protect against multiple inclusions.
14691 * src/location.h (location_t): Add a `file' member.
14692 (LOCATION_RESET, LOCATION_PRINT): Adjust.
14693 * src/complain.c (warn_at, complain_at, fatal_at): Drop
14694 `error_one_per_line' support.
14695
14696 2002-07-09 Akim Demaille <akim@epita.fr>
14697
14698 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
14699 * src/reader.c (lineno): Remove.
14700 Adjust all dependencies.
14701 (get_merge_function): Take a location and use complain_at.
14702 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
14703 * tests/regression.at (Invalid inputs, Mixing %token styles):
14704 Adjust.
14705
14706 2002-07-09 Akim Demaille <akim@epita.fr>
14707
14708 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
14709 recovery rule, and forbid extensions when --yacc.
14710 (gram_error): Use complain_at.
14711 * src/reader.c (reader): Exit if there were parse errors.
14712
14713 2002-07-09 Akim Demaille <akim@epita.fr>
14714
14715 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
14716 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
14717 Reported by R Blake <blakers@mac.com>.
14718
14719 2002-07-09 Akim Demaille <akim@epita.fr>
14720
14721 * data/yacc.c: Output the copyright notive in the header.
14722
14723 2002-07-03 Akim Demaille <akim@epita.fr>
14724
14725 * src/output.c (froms, tos): Are state_number_t.
14726 (save_column): sp, sp1, and sp2 are state_number_t.
14727 (prepare): Rename `final' as `final_state_number', `nnts' as
14728 `nterms_number', `nrules' as `rules_number', `nstates' as
14729 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
14730 unused.
14731 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
14732 * data/lalr1.cc (nsym_): Remove, unused.
14733
14734 2002-07-03 Akim Demaille <akim@epita.fr>
14735
14736 * src/lalr.h, src/lalr.c (goto_number_t): New.
14737 * src/lalr.c (goto_list_t): New.
14738 Propagate them.
14739 * src/nullable.c (rule_list_t): New.
14740 Propagate.
14741 * src/types.h: Remove.
14742
14743 2002-07-03 Akim Demaille <akim@epita.fr>
14744
14745 * src/closure.c (print_fderives): Use rule_rhs_print.
14746 * src/derives.c (print_derives): Use rule_rhs_print.
14747 (rule_list_t): New, replaces `shorts'.
14748 (set_derives): Add comments.
14749 * tests/sets.at (Nullable, Firsts): Adjust.
14750
14751 2002-07-03 Akim Demaille <akim@epita.fr>
14752
14753 * src/output.c (prepare_actions): Free `tally' and `width'.
14754 (prepare_actions): Allocate and free `order'.
14755 * src/symtab.c (symbols_free): Free `symbols'.
14756 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
14757 * src/output.c (m4_invoke): Move to...
14758 * src/scan-skel.l: here.
14759 (<<EOF>>): Close yyout, and free its name.
14760
14761 2002-07-03 Akim Demaille <akim@epita.fr>
14762
14763 Fix some memory leaks, and fix a bug: state 0 was examined twice.
14764
14765 * src/LR0.c (new_state): Merge into...
14766 (state_list_append): this.
14767 (new_states): Merge into...
14768 (generate_states): here.
14769 (set_states): Don't ensure a proper `errs' state member here, do it...
14770 * src/conflicts.c (conflicts_solve): here.
14771 * src/state.h, src/state.c: Comment changes.
14772 (state_t): Rename member `shifts' as `transitions'.
14773 Adjust all dependencies.
14774 (errs_new): For consistency, also take the values as argument.
14775 (errs_dup): Remove.
14776 (state_errs_set): New.
14777 (state_reductions_set, state_transitions_set): Assert that no
14778 previous value was assigned.
14779 (state_free): New.
14780 (states_free): Use it.
14781 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
14782 temporary storage: use `errs' and `nerrs' as elsewhere.
14783 (set_conflicts): Allocate and free this `errs'.
14784
14785 2002-07-02 Akim Demaille <akim@epita.fr>
14786
14787 * lib/libiberty.h: New.
14788 * lib: Update the bitset implementation from upstream.
14789 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
14790 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
14791 * src/main.c: Adjust bitset stats calls.
14792
14793 2002-07-01 Paul Eggert <eggert@twinsun.com>
14794
14795 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
14796 char, so that negative chars don't collide with $.
14797
14798 2002-06-30 Akim Demaille <akim@epita.fr>
14799
14800 Have the GLR tests be `warning' checked, and fix the warnings.
14801
14802 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
14803 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
14804 (yyremoveDeletes): `yyi' and `yyj' are size_t.
14805 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
14806 (yyaddDeferredAction): static.
14807 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
14808 (yyreportParseError): yyprefix is const.
14809 yytokenp is used only when verbose.
14810 (yy__GNUC__): Replace with __GNUC__.
14811 (yypdumpstack): yyi is size_t.
14812 (yypreference): Un-yy local variables and arguments, to avoid
14813 clashes with `yyr1'. Anyway, we are not in the user name space.
14814 (yytname_size): be an int, as is compared with ints.
14815 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
14816 Use them.
14817 * tests/cxx-gram.at: Use quotation to protect $1.
14818 Use AT_COMPILE to enable warnings hunts.
14819 Prototype yylex and yyerror.
14820 `Use' argc.
14821 Include `string.h', not `strings.h'.
14822 Produce and prototype stmtMerge only when used.
14823 yylex takes a location.
14824
14825 2002-06-30 Akim Demaille <akim@epita.fr>
14826
14827 We spend a lot of time in quotearg, in particular when --verbose.
14828
14829 * src/symtab.c (symbol_get): Store a quoted version of the key.
14830 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
14831 Adjust all callers.
14832
14833 2002-06-30 Akim Demaille <akim@epita.fr>
14834
14835 * src/state.h (reductions_t): Rename member `nreds' as num.
14836 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
14837 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
14838
14839 2002-06-30 Akim Demaille <akim@epita.fr>
14840
14841 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
14842 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
14843 (shifts_to): Rename as...
14844 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
14845 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
14846 (TRANSITION_IS_DISABLED, transitions_to): these.
14847
14848 2002-06-30 Akim Demaille <akim@epita.fr>
14849
14850 * src/print.c (print_shifts, print_gotos): Merge into...
14851 (print_transitions): this.
14852 (print_transitions, print_errs, print_reductions): Align the
14853 lookaheads columns.
14854 (print_core, print_transitions, print_errs, print_state,
14855 print_grammar): Output empty lines separator before, not after.
14856 (state_default_rule_compute): Rename as...
14857 (state_default_rule): this.
14858 * tests/conflicts.at (Defaulted Conflicted Reduction),
14859 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
14860 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
14861
14862 2002-06-30 Akim Demaille <akim@epita.fr>
14863
14864 Display items as we display rules.
14865
14866 * src/gram.h, src/gram.c (rule_lhs_print): New.
14867 * src/gram.c (grammar_rules_partial_print): Use it.
14868 * src/print.c (print_core): Likewise.
14869 * tests/conflicts.at (Defaulted Conflicted Reduction),
14870 (Unresolved SR Conflicts): Adjust.
14871 (Unresolved SR Conflicts): Adjust and rename as...
14872 (Resolved SR Conflicts): this, as was meant.
14873 * tests/regression.at (Web2c Report): Adjust.
14874
14875 2002-06-30 Akim Demaille <akim@epita.fr>
14876
14877 * src/print.c (state_default_rule_compute): New, extracted from...
14878 (print_reductions): here.
14879 Pessimize, but clarify the code.
14880 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
14881
14882 2002-06-30 Akim Demaille <akim@epita.fr>
14883
14884 * src/output.c (action_row): Let default_rule be always a rule
14885 number.
14886
14887 2002-06-30 Akim Demaille <akim@epita.fr>
14888
14889 * src/closure.c (print_firsts, print_fderives, closure):
14890 Use BITSET_EXECUTE.
14891 * src/lalr.c (lookaheads_print): Likewise.
14892 * src/state.c (state_rule_lookaheads_print): Likewise.
14893 * src/print_graph.c (print_core): Likewise.
14894 * src/print.c (print_reductions): Likewise.
14895 * src/output.c (action_row): Likewise.
14896 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
14897
14898 2002-06-30 Akim Demaille <akim@epita.fr>
14899
14900 * src/print_graph.c: Use report_flag.
14901
14902 2002-06-30 Akim Demaille <akim@epita.fr>
14903
14904 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
14905 to...
14906 * src/relation.h, src/relation.c (traverse, relation_digraph)
14907 (relation_print, relation_transpose): New.
14908
14909 2002-06-30 Akim Demaille <akim@epita.fr>
14910
14911 * src/state.h, src/state.c (shifts_to): New.
14912 * src/lalr.c (build_relations): Use it.
14913
14914 2002-06-30 Akim Demaille <akim@epita.fr>
14915
14916 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
14917 (item_number_of_rule_number, rule_number_of_item_number): New.
14918 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
14919 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14920 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
14921 Propagate their use.
14922 Much remains to be done, in particular wrt `shorts' from types.h.
14923
14924 2002-06-30 Akim Demaille <akim@epita.fr>
14925
14926 * src/symtab.c (symbol_new): Initialize the `printer' member.
14927
14928 2002-06-30 Akim Demaille <akim@epita.fr>
14929
14930 * src/LR0.c (save_reductions): Remove, replaced by...
14931 * src/state.h, src/state.c (state_reductions_set): New.
14932 (reductions, errs): Rename as...
14933 (reductions_t, errs_t): these.
14934 Adjust all dependencies.
14935
14936 2002-06-30 Akim Demaille <akim@epita.fr>
14937
14938 * src/LR0.c (state_list_t, state_list_append): New.
14939 (first_state, last_state): Now symbol_list_t.
14940 (this_state): Remove.
14941 (new_itemsets, append_states, save_reductions): Take a state_t as
14942 argument.
14943 (set_states, generate_states): Adjust.
14944 (save_shifts): Remove, replaced by...
14945 * src/state.h, src/state.c (state_shifts_set): New.
14946 (shifts): Rename as...
14947 (shifts_t): this.
14948 Adjust all dependencies.
14949 * src/state.h (state_t): Remove the `next' member.
14950
14951 2002-06-30 Akim Demaille <akim@epita.fr>
14952
14953 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
14954 escaped in slot 0.
14955
14956 2002-06-30 Akim Demaille <akim@epita.fr>
14957
14958 Use hash.h for the state hash table.
14959
14960 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
14961 (allocate_storage): Use state_hash_new.
14962 (free_storage): Use state_hash_free.
14963 (new_state, get_state): Adjust.
14964 * src/lalr.h, src/lalr.c (states): Move to...
14965 * src/states.h (state_t): Remove the `link' member, no longer
14966 used.
14967 * src/states.h, src/states.c: here.
14968 (state_hash_new, state_hash_free, state_hash_lookup)
14969 (state_hash_insert, states_free): New.
14970 * src/states.c (state_table, state_compare, state_hash): New.
14971 * src/output.c (output_actions): Do not free states now, since we
14972 still need to know the final_state number in `prepare', called
14973 afterwards. Do it...
14974 * src/main.c (main): here: call states_free after `output'.
14975
14976 2002-06-30 Akim Demaille <akim@epita.fr>
14977
14978 * src/state.h, src/state.c (state_new): New, extracted from...
14979 * src/LR0.c (new_state): here.
14980 * src/state.h (STATE_ALLOC): Move to...
14981 * src/state.c: here.
14982 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
14983 * src/state.h, src/state.c: here.
14984
14985 2002-06-30 Akim Demaille <akim@epita.fr>
14986
14987 * src/reader.c (gensym): Rename as...
14988 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
14989 (getsym): Rename as...
14990 (symbol_get): this.
14991
14992 2002-06-30 Akim Demaille <akim@epita.fr>
14993
14994 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
14995 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
14996 * src/output.c, src/print.c, src/print_graph.c: Propagate.
14997 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
14998
14999 2002-06-30 Akim Demaille <akim@epita.fr>
15000
15001 Make the test suite pass with warnings checked.
15002
15003 * tests/actions.at (Printers and Destructors): Improve.
15004 Avoid unsigned vs. signed issues.
15005 * tests/calc.at: Don't exercise the scanner here, do it...
15006 * tests/input.at (Torturing the Scanner): here.
15007
15008 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15009
15010 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
15011 reorganize first lines parallel to yacc.c.
15012
15013 2002-06-28 Akim Demaille <akim@epita.fr>
15014
15015 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
15016 (b4_token_enum, b4_token_defines): New, factored from...
15017 * data/lalr1.cc, data/yacc.c, glr.c: here.
15018
15019 2002-06-28 Akim Demaille <akim@epita.fr>
15020
15021 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
15022 unused variables.
15023 * src/output.c (merger_output): static.
15024
15025 2002-06-28 Akim Demaille <akim@epita.fr>
15026
15027 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
15028 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
15029 pacify GCC.
15030 * src/output.c (save_row): Initialize all the variables to pacify GCC.
15031
15032 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15033
15034 Accumulated changelog for new GLR parsing features.
15035
15036 * src/conflicts.c (count_total_conflicts): Change name to
15037 conflicts_total_count.
15038 * src/conflicts.h: Ditto.
15039 * src/output.c (token_actions): Use the new name.
15040 (output_conflicts): Change conflp => conflict_list_heads, and
15041 confl => conflict_list for better readability.
15042 * data/glr.c: Use the new names.
15043 * NEWS: Add self to GLR announcement.
15044
15045 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
15046
15047 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
15048 Akim Demaille.
15049
15050 * data/bison.glr: Change name to glr.c
15051 * data/glr.c: Renamed from bison.glr.
15052 * data/Makefile.am: Add glr.c
15053
15054 * src/getargs.c:
15055
15056 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
15057 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
15058
15059 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15060
15061 * data/bison.glr: Be sure to restore the
15062 current #line when returning to the skeleton contents after having
15063 exposed the input file's #line.
15064
15065 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15066
15067 * data/bison.glr: Bring up to date with changes to bison.simple.
15068
15069 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15070
15071 * data/bison.glr: Correct definitions that use b4_prefix.
15072 Various reformatting.
15073 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
15074 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
15075 yytokenp argument; now part of stack.
15076 (yychar): Define to behave as documented.
15077 (yyclearin): Ditto.
15078
15079 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15080
15081 * src/reader.h: Add declaration for free_merger_functions.
15082
15083 * src/reader.c (merge_functions): New variable.
15084 (get_merge_function): New function.
15085 (free_merger_functions): New function.
15086 (readgram): Check for %prec that is not followed by a symbol.
15087 Handle %dprec and %merge declarations.
15088 (packgram): Initialize dprec and merger fields in rules array.
15089
15090 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
15091 conflict_list_cnt, conflict_list_free): New variables.
15092 (table_grow): Also grow conflict_table.
15093 (prepare_rules): Output dprec and merger tables.
15094 (conflict_row): New function.
15095 (action_row): Output conflict lists for GLR parser. Don't use
15096 default reduction in conflicted states for GLR parser so that there
15097 are spaces for the conflict lists.
15098 (save_row): Also save conflict information.
15099 (token_actions): Allocate conflict list.
15100 (merger_output): New function.
15101 (pack_vector): Pack conflict table, too.
15102 (output_conflicts): New function to output yyconflp and yyconfl.
15103 (output_check): Allocate conflict_tos.
15104 (output_actions): Output conflict tables, also.
15105 (output_skeleton): Output b4_mergers definition.
15106 (prepare): Output b4_max_rhs_length definition.
15107 Use 'bison.glr' as default skeleton for GLR parsers.
15108
15109 * src/gram.c (glr_parser): New flag.
15110 (grammar_free): Call free_merger_functions.
15111
15112 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
15113 all pairs of conflicting reductions, rather than just all tokens
15114 causing conflicts. Needed to size conflict tables.
15115 (conflicts_output): Modify call to count_rr_conflicts for new
15116 interface.
15117 (conflicts_print): Ditto.
15118 (count_total_conflicts): New function.
15119
15120 * src/reader.h (merger_list): New type.
15121 (merge_functions): New variable.
15122
15123 * src/lex.h (tok_dprec, tok_merge): New token types.
15124
15125 * src/gram.h (rule_s): Add dprec and merger fields.
15126 (glr_parser): New flag.
15127
15128 * src/conflicts.h (count_total_conflicts): New function.
15129
15130 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
15131
15132 * doc/bison.texinfo (Generalized LR Parsing): New section.
15133 (GLR Parsers): New section.
15134 (Language and Grammar): Mention GLR parsing.
15135 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
15136 Correct typo ("tge" -> "the").
15137
15138 * data/bison.glr: New skeleton for GLR parsing.
15139
15140 * tests/cxx-gram.at: New tests for GLR parsing.
15141
15142 * tests/testsuite.at: Include cxx-gram.at.
15143
15144 * tests/Makefile.am: Add cxx-gram.at.
15145
15146 * src/parse-gram.y:
15147
15148 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
15149
15150 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
15151
15152 2002-06-27 Akim Demaille <akim@epita.fr>
15153
15154 * src/options.h, src/options.c: Remove.
15155 * src/getargs.c (short_options, long_options): New.
15156
15157 2002-06-27 Akim Demaille <akim@epita.fr>
15158
15159 * data/bison.simple, data/bison.c++: Rename as...
15160 * data/yacc.c, data/lalr1.cc: these.
15161 * doc/bison.texinfo (Environment Variables): Remove.
15162
15163 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
15164
15165 * src/getargs.c (report_argmatch): Initialize strtok().
15166
15167 2002-06-20 Akim Demaille <akim@epita.fr>
15168
15169 * data/bison.simple (b4_symbol_actions): New, replaces...
15170 (b4_symbol_destructor, b4_symbol_printer): these.
15171 (yysymprint): Be sure to call YYPRINT only for tokens, and using
15172 user token numbers.
15173
15174 2002-06-20 Akim Demaille <akim@epita.fr>
15175
15176 * data/bison.simple (yydestructor): Rename as...
15177 (yydestruct): this.
15178
15179 2002-06-20 Akim Demaille <akim@epita.fr>
15180
15181 * src/symtab.h, src/symtab.c (symbol_type_set)
15182 (symbol_destructor_set, symbol_precedence_set): The location is
15183 the last argument.
15184 Adjust all callers.
15185
15186 2002-06-20 Akim Demaille <akim@epita.fr>
15187
15188 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
15189 internals.
15190 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
15191 Takes a location.
15192 * src/symtab.h, src/symtab.c (symbol_class_set)
15193 (symbol_user_token_number_set): Likewise.
15194 Adjust all callers.
15195 Promote complain_at.
15196 * tests/input.at (Type Clashes): Adjust.
15197
15198 2002-06-20 Akim Demaille <akim@epita.fr>
15199
15200 * data/bison.simple (YYLEX): Fix the declaration when
15201 %pure-parser.
15202
15203 2002-06-20 Akim Demaille <akim@epita.fr>
15204
15205 * data/bison.simple (yysymprint): Don't print the token number,
15206 just its name.
15207 * tests/actions.at (Destructors): Rename as...
15208 (Printers and Destructors): this.
15209 Also exercise %printer.
15210
15211 2002-06-20 Akim Demaille <akim@epita.fr>
15212
15213 * data/bison.simple (YYDSYMPRINT): New.
15214 Use it to remove many of the #if YYDEBUG/if (yydebug).
15215
15216 2002-06-20 Akim Demaille <akim@epita.fr>
15217
15218 * src/symtab.h, src/symtab.c (symbol_t): printer and
15219 printer_location are new members.
15220 (symbol_printer_set): New.
15221 * src/parse-gram.y (PERCENT_PRINTER): New token.
15222 Handle its associated rule.
15223 * src/scan-gram.l: Adjust.
15224 (handle_destructor_at, handle_destructor_dollar): Rename as...
15225 (handle_symbol_code_at, handle_symbol_code_dollar): these.
15226 * src/output.c (symbol_printers_output): New.
15227 (output_skeleton): Call it.
15228 * data/bison.simple (yysymprint): New. Cannot be named yyprint
15229 since there are already many grammar files with a user `yyprint'.
15230 Replace the calls to YYPRINT to calls to yysymprint.
15231 * tests/calc.at: Adjust.
15232 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
15233 taking advantage of parser very internal details (stack size!).
15234
15235 2002-06-20 Akim Demaille <akim@epita.fr>
15236
15237 * src/scan-gram.l: Complete the scanner with the missing patterns
15238 to pacify Flex.
15239 Use `quote' and `symbol_tag_get' where appropriate.
15240
15241 2002-06-19 Akim Demaille <akim@epita.fr>
15242
15243 * tests/actions.at (Destructors): Augment to test locations.
15244 * data/bison.simple (yydestructor): Pass it the current location
15245 if locations are enabled.
15246 Prototype only when __STDC__ or C++.
15247 Change the argument names to move into the yy name space: there is
15248 user code here.
15249
15250 2002-06-19 Akim Demaille <akim@epita.fr>
15251
15252 * data/bison.simple (b4_pure_if): New.
15253 Use it instead of #ifdef YYPURE.
15254
15255 2002-06-19 Akim Demaille <akim@epita.fr>
15256
15257 * data/bison.simple (b4_location_if): New.
15258 Use it instead of #ifdef YYLSP_NEEDED.
15259
15260 2002-06-19 Akim Demaille <akim@epita.fr>
15261
15262 Prepare @$ in %destructor, but currently don't bind it in the
15263 skeleton, as %location use is not cleaned up yet.
15264
15265 * src/scan-gram.l (handle_dollar, handle_destructor_at)
15266 (handle_action_at): New.
15267 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
15268 a braced_code_t and a location as additional arguments.
15269 (handle_destructor_dollar): Instead of requiring `b4_eval', just
15270 unquote one when outputting `b4_dollar_dollar'.
15271 Adjust callers.
15272 * data/bison.simple (b4_eval): Remove.
15273 (b4_symbol_destructor): Adjust.
15274 * tests/input.at (Invalid @n): Adjust.
15275
15276 2002-06-19 Zack Weinberg <zack@codesourcery.com>
15277
15278 * doc/bison.texinfo: Document ability to have multiple
15279 prologue sections.
15280
15281 2002-06-18 Akim Demaille <akim@epita.fr>
15282
15283 * src/files.c (compute_base_names): When computing the output file
15284 names from the input file name, strip the directory part.
15285
15286 2002-06-18 Akim Demaille <akim@epita.fr>
15287
15288 * data/bison.simple.new: Comment changes.
15289 Reported by Andreas Schwab.
15290
15291 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
15292
15293 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
15294 there are no `label `yyoverflowlab' defined but not used' warnings
15295 when yyoverflow is defined.
15296
15297 2002-06-18 Akim Demaille <akim@epita.fr>
15298
15299 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
15300 new member.
15301 (symbol_destructor_set): Adjust.
15302 * src/output.c (symbol_destructors_output): Output the destructor
15303 locations.
15304 Output the symbol name.
15305 * data/bison.simple (b4_symbol_destructor): Adjust.
15306
15307 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
15308 and Akim Demaille <akim@epita.fr>
15309
15310 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
15311 what's left on the stack when the error recovery hits EOF.
15312 * tests/actions.at (Destructors): Complete to exercise this case.
15313
15314 2002-06-17 Akim Demaille <akim@epita.fr>
15315
15316 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15317 arguments is really empty, not only equal to `[]'.
15318 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15319 member.
15320 (symbol_destructor_set): New.
15321 * src/output.c (symbol_destructors_output): New.
15322 * src/reader.h (brace_code_t, current_braced_code): New.
15323 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15324 (handle_dollar): Rename as...
15325 (handle_action_dollar): this.
15326 (handle_destructor_dollar): New.
15327 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15328 (grammar_declaration): Use it.
15329 * data/bison.simple (yystos): Is always defined.
15330 (yydestructor): New.
15331 * tests/actions.at (Destructors): New.
15332 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15333
15334 2002-06-17 Akim Demaille <akim@epita.fr>
15335
15336 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15337 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15338 rule_length only when needed.
15339 * src/output.c (actions_output, token_definitions_output): Output
15340 the full M4 block.
15341 * src/symtab.c: Don't access directly to the symbol tag, use
15342 symbol_tag_get.
15343 * src/parse-gram.y: Use symbol_list_free.
15344
15345 2002-06-17 Akim Demaille <akim@epita.fr>
15346
15347 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15348 (symbol_list_prepend, get_type_name): Move to...
15349 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15350 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15351 Adjust all callers.
15352 (symbol_list_free): New.
15353 * src/scan-gram.l (handle_dollar): Takes a location.
15354 * tests/input.at (Invalid $n): Adjust.
15355
15356 2002-06-17 Akim Demaille <akim@epita.fr>
15357
15358 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15359 (symbol_list_prepend): New.
15360 * src/parse-gram.y (%union): `list' is a new member.
15361 (symbols.1): New, replaces...
15362 (terms_to_prec.1, nterms_to_type.1): these.
15363 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15364 Take a location as additional argument.
15365 Adjust all callers.
15366
15367 2002-06-15 Akim Demaille <akim@epita.fr>
15368
15369 * src/parse-gram.y: Move %token in the declaration section so that
15370 we don't depend upon CVS Bison.
15371
15372 2002-06-15 Akim Demaille <akim@epita.fr>
15373
15374 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15375 * src/print.c (print_core): Use it.
15376
15377 2002-06-15 Akim Demaille <akim@epita.fr>
15378
15379 * src/conflicts.c (log_resolution): Accept the rule involved in
15380 the sr conflicts instead of the lookahead number that points to
15381 that rule.
15382 (flush_reduce): Accept the current lookahead vector as argument,
15383 instead of the index in LA.
15384 (resolve_sr_conflict): Accept the current number of lookahead
15385 bitset to consider for the STATE, instead of the index in LA.
15386 (set_conflicts): Adjust.
15387 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15388
15389 2002-06-15 Akim Demaille <akim@epita.fr>
15390
15391 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15392 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15393 Adjust all dependencies.
15394 * src/lalr.c (initialize_lookaheads): Split into...
15395 (states_lookaheads_count, states_lookaheads_initialize): these.
15396 (lalr): Adjust.
15397
15398 2002-06-15 Akim Demaille <akim@epita.fr>
15399
15400 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15401 out of...
15402 (grammar_rules_print): here.
15403 * src/reduce.c (reduce_output): Use it.
15404 * tests/reduce.at (Useless Rules, Reduced Automaton)
15405 (Underivable Rules): Adjust.
15406
15407 2002-06-15 Akim Demaille <akim@epita.fr>
15408
15409 Copy BYacc's nice way to report the grammar.
15410
15411 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15412 New.
15413 Don't print the rules' location, it is confusing and useless.
15414 (rule_print): Use grammar_rhs_print.
15415 * src/print.c (print_grammar): Use grammar_rules_print.
15416
15417 2002-06-15 Akim Demaille <akim@epita.fr>
15418
15419 Complete and rationalize `useless thing' warnings.
15420
15421 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15422 (symbol_tag_print): New.
15423 Use them everywhere in place of accessing directly the tag member.
15424 * src/gram.h, src/gram.c (rule_print): New.
15425 Use it where a rule used to be printed `by hand'.
15426 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15427 (reduce_grammar_tables): Report the useless rules.
15428 (reduce_print): Useless things are a warning, not an error.
15429 Report it as such.
15430 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15431 (Reduced Automaton, Underivable Rules): Adjust.
15432 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15433 * tests/conflicts.at (Unresolved SR Conflicts)
15434 (Solved SR Conflicts): Adjust.
15435
15436 2002-06-15 Akim Demaille <akim@epita.fr>
15437
15438 Let symbols have a location.
15439
15440 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15441 (getsym): Adjust.
15442 Adjust all callers.
15443 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15444 Use location_t, not int.
15445 * src/symtab.c (symbol_check_defined): Take advantage of the
15446 location.
15447 * tests/regression.at (Invalid inputs): Adjust.
15448
15449 2002-06-15 Akim Demaille <akim@epita.fr>
15450
15451 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15452 (input): Don't try to initialize yylloc here, do it in the
15453 scanner.
15454 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15455 * src/gram.h (rule_t): Change line and action_line into location
15456 and action_location, of location_t type.
15457 Adjust all dependencies.
15458 * src/location.h, src/location.c (empty_location): New.
15459 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15460 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15461 (grammar_current_rule_symbol_append)
15462 (grammar_current_rule_action_append): Expect a location as argument.
15463 * src/reader.c (grammar_midrule_action): Adjust to attach an
15464 action's location as dummy symbol location.
15465 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15466 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15467 the line numbers.
15468
15469 2002-06-14 Akim Demaille <akim@epita.fr>
15470
15471 Grammar declarations may be found in the grammar section.
15472
15473 * src/parse-gram.y (rules_or_grammar_declaration): New.
15474 (declarations): Each declaration may end with a semicolon, not
15475 just...
15476 (grammar_declaration): `"%union"'.
15477 (grammar): Branch to rules_or_grammar_declaration.
15478
15479 2002-06-14 Akim Demaille <akim@epita.fr>
15480
15481 * src/main.c (main): Invoke scanner_free.
15482
15483 2002-06-14 Akim Demaille <akim@epita.fr>
15484
15485 * src/output.c (m4_invoke): Extracted from...
15486 (output_skeleton): here.
15487 Free tempfile.
15488
15489 2002-06-14 Akim Demaille <akim@epita.fr>
15490
15491 * src/parse-gram.y (directives, directive, gram)
15492 (grammar_directives, precedence_directives, precedence_directive):
15493 Rename as...
15494 (declarations, declaration, grammar, grammar_declaration)
15495 (precedence_declaration, precedence_declarator): these.
15496 (symbol_declaration): New.
15497
15498 2002-06-14 Akim Demaille <akim@epita.fr>
15499
15500 * src/files.c (action_obstack): Remove, unused.
15501 (output_obstack): Remove it, and all its dependencies, as it is no
15502 longer needed.
15503 * src/reader.c (epilogue_set): Build the epilogue in the
15504 muscle_obstack.
15505 * src/output.h, src/output.c (muscle_obstack): Move to...
15506 * src/muscle_tab.h, src/muscle_tab.h: here.
15507 (muscle_init): Initialize muscle_obstack.
15508 (muscle_free): New.
15509 * src/main.c (main): Call it.
15510
15511 2002-06-14 Akim Demaille <akim@epita.fr>
15512
15513 * src/location.h: New, extracted from...
15514 * src/reader.h: here.
15515 * src/Makefile.am (noinst_HEADERS): Merge into
15516 (bison_SOURCES): this.
15517 Add location.h.
15518 * src/parse-gram.y: Use location_t instead of Bison's.
15519 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15520 Use location_t instead of ints.
15521
15522 2002-06-14 Akim Demaille <akim@epita.fr>
15523
15524 * data/bison.simple, data/bison.c++: Be sure to restore the
15525 current #line when returning to the skeleton contents after having
15526 exposed the input file's #line.
15527
15528 2002-06-12 Akim Demaille <akim@epita.fr>
15529
15530 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15531 eager.
15532 * tests/actions.at (Exotic Dollars): New.
15533
15534 2002-06-12 Akim Demaille <akim@epita.fr>
15535
15536 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15537 ['"/] too eagerly.
15538 * tests/input.at (Torturing the Scanner): New.
15539
15540 2002-06-11 Akim Demaille <akim@epita.fr>
15541
15542 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15543 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15544 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15545 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15546 * src/reader.c (reader): Use it.
15547
15548 2002-06-11 Akim Demaille <akim@epita.fr>
15549
15550 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15551 Adjust all callers.
15552 (scanner_last_string_free): New.
15553
15554 2002-06-11 Akim Demaille <akim@epita.fr>
15555
15556 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15557 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15558 (last_string, YY_OBS_FREE): New.
15559 Use them when returning an ID.
15560
15561 2002-06-11 Akim Demaille <akim@epita.fr>
15562
15563 Have Bison grammars parsed by a Bison grammar.
15564
15565 * src/reader.c, src/reader.h (prologue_augment): New.
15566 * src/reader.c (copy_definition): Remove.
15567
15568 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15569 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15570 (grammar_current_rule_prec_set, grammar_current_rule_check)
15571 (grammar_current_rule_symbol_append)
15572 (grammar_current_rule_action_append): Export.
15573 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15574 (symbol_list_action_append): Remove.
15575 Hook the routines from reader.
15576 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15577 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15578
15579 * src/reader.c (read_declarations): Remove, unused.
15580
15581 * src/parse-gram.y: Handle the epilogue.
15582 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15583 (grammar_start_symbol_set): this.
15584 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15585 * src/reader.c (readgram): Remove, unused.
15586 (reader): Adjust to insert eoftoken and axiom where appropriate.
15587
15588 * src/reader.c (copy_dollar): Replace with...
15589 * src/scan-gram.h (handle_dollar): this.
15590 * src/parse-gram.y: Remove `%thong'.
15591
15592 * src/reader.c (copy_at): Replace with...
15593 * src/scan-gram.h (handle_at): this.
15594
15595 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15596 New.
15597
15598 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15599 time being.
15600
15601 * src/reader.h, src/reader.c (grammar_rule_end): New.
15602
15603 * src/parse.y (current_type, current_class): New.
15604 Implement `%nterm', `%token' support.
15605 Merge `%term' into `%token'.
15606 (string_as_id): New.
15607 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15608 type name.
15609
15610 * src/parse-gram.y: Be sure to handle properly the beginning of
15611 rules.
15612
15613 * src/parse-gram.y: Handle %type.
15614 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15615
15616 * src/parse-gram.y: More directives support.
15617 * src/options.c: No longer handle source directives.
15618
15619 * src/parse-gram.y: Fix %output.
15620
15621 * src/parse-gram.y: Handle %union.
15622 Use the prologue locations.
15623 * src/reader.c (parse_union_decl): Remove.
15624
15625 * src/reader.h, src/reader.c (epilogue_set): New.
15626 * src/parse-gram.y: Use it.
15627
15628 * data/bison.simple, data/bison.c++: b4_stype is now either not
15629 defined, then default to int, or to the contents of %union,
15630 without `union' itself.
15631 Adjust.
15632 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15633
15634 * src/output.c (actions_output): Don't output braces, as they are
15635 already handled by the scanner.
15636
15637 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15638 characters to themselves.
15639
15640 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15641 that the epilogue has a proper #line.
15642
15643 * src/parse-gram.y: Handle precedence/associativity.
15644
15645 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15646 a terminal.
15647 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15648 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15649 at all to define terminals that cannot be emitted.
15650
15651 * src/scan-gram.l: Escape M4 characters.
15652
15653 * src/scan-gram.l: Working properly with escapes in user
15654 strings/characters.
15655
15656 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15657 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15658 grammar.
15659 Use more modest sizes, as for the time being the parser does not
15660 release memory, and therefore the process swallows a huge amount
15661 of memory.
15662
15663 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
15664 stricter %token grammar.
15665
15666 * src/symtab.h (associativity): Add `undef_assoc'.
15667 (symbol_precedence_set): Do nothing when passed an undef_assoc.
15668 * src/symtab.c (symbol_check_alias_consistence): Adjust.
15669
15670 * tests/regression.at (Invalid %directive): Remove, as it is now
15671 meaningless.
15672 (Invalid inputs): Adjust to the new error messages.
15673 (Token definitions): The new grammar doesn't allow too many
15674 eccentricities.
15675
15676 * src/lex.h, src/lex.c: Remove.
15677 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
15678 (copy_character, copy_string2, copy_string, copy_identifier)
15679 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
15680 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
15681 (parse_action): Remove.
15682 * po/POTFILES.in: Adjust.
15683
15684 2002-06-11 Akim Demaille <akim@epita.fr>
15685
15686 * src/reader.c (parse_action): Don't store directly into the
15687 rule's action member: return the action as a string.
15688 Don't require `rule_length' as an argument: compute it.
15689 (grammar_current_rule_symbol_append)
15690 (grammar_current_rule_action_append): New, eved out from
15691 (readgram): here.
15692 Remove `action_flag', `rulelength', unused now.
15693
15694 2002-06-11 Akim Demaille <akim@epita.fr>
15695
15696 * src/reader.c (grammar_current_rule_prec_set).
15697 (grammar_current_rule_check): New, eved out from...
15698 (readgram): here.
15699 Remove `xaction', `first_rhs': useless.
15700 * tests/input.at (Type clashes): New.
15701 * tests/existing.at (GNU Cim Grammar): Adjust.
15702
15703 2002-06-11 Akim Demaille <akim@epita.fr>
15704
15705 * src/reader.c (grammar_midrule_action): New, Eved out from
15706 (readgram): here.
15707
15708 2002-06-11 Akim Demaille <akim@epita.fr>
15709
15710 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
15711 New.
15712 (readgram): Use them as replacement of inlined code, crule and
15713 crule1.
15714
15715 2002-06-11 Akim Demaille <akim@epita.fr>
15716
15717 * src/reader.c (grammar_end, grammar_symbol_append): New.
15718 (readgram): Use them.
15719 Make the use of `p' as local as possible.
15720
15721 2002-06-10 Akim Demaille <akim@epita.fr>
15722
15723 GCJ's parser requires the tokens to be defined before the prologue.
15724
15725 * data/bison.simple: Output the token definition before the user's
15726 prologue.
15727 * tests/regression.at (Braces parsing, Duplicate string)
15728 (Mixing %token styles): Check the output from bison.
15729 (Early token definitions): New.
15730
15731 2002-06-10 Akim Demaille <akim@epita.fr>
15732
15733 * src/symtab.c (symbol_user_token_number_set): Don't complain when
15734 assigning twice the same user number to a token, so that we can
15735 use it in...
15736 * src/lex.c (lex): here.
15737 Also use `symbol_class_set' instead of hand written code.
15738 * src/reader.c (parse_assoc_decl): Likewise.
15739
15740 2002-06-10 Akim Demaille <akim@epita.fr>
15741
15742 * src/symtab.c, src/symtab.c (symbol_class_set)
15743 (symbol_user_token_number_set): New.
15744 * src/reader.c (parse_token_decl): Use them.
15745 Use a switch instead of ifs.
15746 Use a single argument.
15747
15748 2002-06-10 Akim Demaille <akim@epita.fr>
15749
15750 Remove `%thong' support as it is undocumented, unused, duplicates
15751 `%token's job, and creates useless e-mail traffic with people who
15752 want to know what it is, why it is undocumented, unused, and
15753 duplicates `%token's job.
15754
15755 * src/reader.c (parse_thong_decl): Remove.
15756 * src/options.c (option_table): Remove "thong".
15757 * src/lex.h (tok_thong): Remove.
15758
15759 2002-06-10 Akim Demaille <akim@epita.fr>
15760
15761 * src/symtab.c, src/symtab.c (symbol_type_set)
15762 (symbol_precedence_set): New.
15763 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
15764 (value_components_used): Remove, unused.
15765
15766 2002-06-09 Akim Demaille <akim@epita.fr>
15767
15768 Move symbols handling code out of the reader.
15769
15770 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
15771 (axiom): Move to...
15772 * src/symtab.h, src/symtab.c: here.
15773
15774 * src/gram.c (start_symbol): Remove: use startsymbol->number.
15775 * src/reader.c (startval): Rename as...
15776 * src/symtab.h, src/symtab.c (startsymbol): this.
15777 * src/reader.c: Adjust.
15778
15779 * src/reader.c (symbol_check_defined, symbol_make_alias)
15780 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15781 (token_translations_init)
15782 Move to...
15783 * src/symtab.c: here.
15784 * src/reader.c (packsymbols): Move to...
15785 * src/symtab.h, src/symtab.c (symbols_pack): here.
15786 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
15787 argument.
15788
15789 2002-06-03 Akim Demaille <akim@epita.fr>
15790
15791 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
15792 then statements.
15793
15794 2002-06-03 Akim Demaille <akim@epita.fr>
15795
15796 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
15797 structs with non literals.
15798 * src/scan-skel.l: never-interactive.
15799 * src/conflicts.c (enum conflict_resolution_e): No trailing
15800 comma.
15801 * src/getargs.c (usage): Split long literal strings.
15802 Reported by Hans Aberg.
15803
15804 2002-05-28 Akim Demaille <akim@epita.fr>
15805
15806 * data/bison.c++: Use C++ ostreams.
15807 (cdebug_): New member.
15808
15809 2002-05-28 Akim Demaille <akim@epita.fr>
15810
15811 * src/output.c (output_skeleton): Be sure to allocate enough room
15812 for `/' _and_ for `\0' in full_skeleton.
15813
15814 2002-05-28 Akim Demaille <akim@epita.fr>
15815
15816 * data/bison.c++: Catch up with bison.simple:
15817 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15818 and Paul Eggert <eggert@twinsun.com>: `error' handing.
15819 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
15820 and popping traces.
15821
15822 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15823
15824 * src/output.c (output_skeleton): Put an explicit path in front of
15825 the skeleton file name, rather than relying on the -I directory,
15826 to partially alleviate effects of having a skeleton file lying around
15827 in the current directory.
15828
15829 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15830
15831 * src/conflicts.c (log_resolution): Correct typo:
15832 obstack_printf should be obstack_fgrow1.
15833
15834 2002-05-26 Akim Demaille <akim@epita.fr>
15835
15836 * src/state.h (state_t): `solved_conflicts' is a new member.
15837 * src/LR0.c (new_state): Set it to 0.
15838 * src/conflicts.h, src/conflicts.c (print_conflicts)
15839 (free_conflicts, solve_conflicts): Rename as...
15840 (conflicts_print, conflicts_free, conflicts_solve): these.
15841 Adjust callers.
15842 * src/conflicts.c (enum conflict_resolution_e)
15843 (solved_conflicts_obstack): New, used by...
15844 (log_resolution): this.
15845 Adjust to attach the conflict resolution to each state.
15846 Complete the description with the precedence/associativity
15847 information.
15848 (resolve_sr_conflict): Adjust.
15849 * src/print.c (print_state): Output its solved_conflicts.
15850 * tests/conflicts.at (Unresolved SR Conflicts)
15851 (Solved SR Conflicts): Exercise --report=all.
15852
15853 2002-05-26 Akim Demaille <akim@epita.fr>
15854
15855 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15856 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15857 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
15858 (token_number_t, item_number_as_token_number)
15859 (token_number_as_item_number, muscle_insert_token_number_table):
15860 Rename as...
15861 (symbol_number_t, item_number_as_symbol_number)
15862 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
15863 these, since it is more appropriate.
15864
15865 2002-05-26 Akim Demaille <akim@epita.fr>
15866
15867 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
15868 `Error:' lines.
15869 * data/bison.simple (yystos) [YYDEBUG]: New.
15870 (yyparse) [YYDEBUG]: Display the symbols which are popped during
15871 error recovery.
15872 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
15873
15874 2002-05-25 Akim Demaille <akim@epita.fr>
15875
15876 * doc/bison.texinfo (Debugging): Split into...
15877 (Tracing): this new section, its former contents, and...
15878 (Understanding): this new section.
15879 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
15880 by...
15881 (report_flag): this.
15882 Adjust all dependencies.
15883 (report_args, report_types, report_argmatch): New.
15884 (usage, getargs): Report/support -r, --report.
15885 * src/options.h
15886 (struct option_table_struct): Rename as..,
15887 (struct option_table_s): this.
15888 Rename the `set_flag' member to `flag' to match with getopt_long's
15889 struct.
15890 * src/options.c (option_table): Split verbose into an entry for
15891 %verbose, and another for --verbose.
15892 Support --report/-r, so remove -r from the obsolete --raw.
15893 * src/print.c: Attach full item sets and lookaheads reports to
15894 report_flag instead of trace_flag.
15895 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
15896
15897 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15898 and Paul Eggert <eggert@twinsun.com>
15899
15900 * data/bison.simple (yyparse): Correct error handling to conform to
15901 POSIX and yacc. Specifically, after syntax error is discovered,
15902 do not reduce further before shifting the error token.
15903 Clean up the code a bit by removing the labels yyerrdefault,
15904 yyerrhandle, yyerrpop.
15905 * NEWS: Document the above.
15906
15907 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15908
15909 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
15910 type; it isn't always big enough, since it doesn't necessarily
15911 include non-terminals.
15912 (yytranslate): Expand definition of yy_token_number_type, so that
15913 the latter can be removed.
15914 (yy_token_number_type): Remove, only one use.
15915 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
15916 don't use TokenNumberType as element type.
15917
15918 * tests/regression.at: Modify expected output to agree with change
15919 to yyr1 and yytranslate.
15920
15921 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
15922
15923 * src/reader.c (parse_action): Use copy_character instead of
15924 obstack_1grow.
15925
15926 2002-05-13 Akim Demaille <akim@epita.fr>
15927
15928 * tests/regression.at (Token definitions): Prototype yylex and
15929 yyerror.
15930
15931 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15932
15933 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
15934 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
15935 32-bit arithmetic.
15936 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
15937
15938 2002-05-07 Akim Demaille <akim@epita.fr>
15939
15940 * tests/synclines.at: Be sure to prototype yylex and yyerror to
15941 avoid GCC warnings.
15942
15943 2002-05-07 Akim Demaille <akim@epita.fr>
15944
15945 Kill GCC warnings.
15946
15947 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
15948 over the RHS of each rule.
15949 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
15950 * src/state.h (state_t): Member `nitems' is unsigned short.
15951 * src/LR0.c (get_state): Adjust.
15952 * src/reader.c (packgram): Likewise.
15953 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
15954 `Type'.
15955 (muscle_insert_int_table): Remove, unused.
15956 (prepare_rules): Remove `max'.
15957
15958 2002-05-06 Akim Demaille <akim@epita.fr>
15959
15960 * src/closure.c (print_firsts): Display of the symbol tags.
15961 (bitmatrix_print): Move to...
15962 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
15963 here.
15964 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
15965
15966 2002-05-06 Akim Demaille <akim@epita.fr>
15967
15968 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
15969 hash_do_for_each.
15970
15971 2002-05-06 Akim Demaille <akim@epita.fr>
15972
15973 * src/LR0.c (new_state, get_state): Instead of using the global
15974 `kernel_size' and `kernel_base', have two new arguments:
15975 `core_size' and `core'.
15976 Adjust callers.
15977
15978 2002-05-06 Akim Demaille <akim@epita.fr>
15979
15980 * src/reader.c (packgram): No longer end `ritem' with a 0
15981 sentinel: it is not used.
15982
15983 2002-05-05 Akim Demaille <akim@epita.fr>
15984
15985 New experimental feature: display the lookaheads in the report and
15986 graph.
15987
15988 * src/print (print_core): When --trace-flag, display the rules
15989 lookaheads.
15990 * src/print_graph.c (print_core): Likewise.
15991 Swap the arguments.
15992 Adjust caller.
15993
15994 2002-05-05 Akim Demaille <akim@epita.fr>
15995
15996 * tests/torture.at (Many lookaheads): New test.
15997
15998 2002-05-05 Akim Demaille <akim@epita.fr>
15999
16000 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
16001 (GENERATE_MUSCLE_INSERT_TABLE): this.
16002 (output_int_table, output_unsigned_int_table, output_short_table)
16003 (output_token_number_table, output_item_number_table): Replace with...
16004 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
16005 (muscle_insert_short_table, muscle_insert_token_number_table)
16006 (muscle_insert_item_number_table): these.
16007 Adjust all callers.
16008 (prepare_tokens): Don't free `translations', since...
16009 * src/reader.h, src/reader.c (grammar_free): do it.
16010 Move to...
16011 * src/gram.h, src/gram.c (grammar_free): here.
16012 * data/bison.simple, data/bison.c++: b4_token_number_max is now
16013 b4_translate_max.
16014
16015 2002-05-05 Akim Demaille <akim@epita.fr>
16016
16017 * src/output.c (output_unsigned_int_table): New.
16018 (prepare_rules): `i' is unsigned.
16019 `prhs', `rline', `r2' are unsigned int.
16020 Rename muscle `rhs_number_max' as `rhs_max'.
16021 Output muscles `prhs_max', `rline_max', and `r2_max'.
16022 Free rline and r1.
16023 * data/bison.simple, data/bison.c++: Adjust to use these muscles
16024 to compute types instead of constant types.
16025 * tests/regression.at (Web2c Actions): Adjust.
16026
16027 2002-05-04 Akim Demaille <akim@epita.fr>
16028
16029 * src/symtab.h (SALIAS, SUNDEF): Rename as...
16030 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
16031 Adjust dependencies.
16032 * src/output.c (token_definitions_output): Be sure not to output a
16033 `#define 'a'' when fed with `%token 'a' "a"'.
16034 * tests/regression.at (Token definitions): New.
16035
16036 2002-05-03 Paul Eggert <eggert@twinsun.com>
16037
16038 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
16039 for K&R C.
16040
16041 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
16042
16043 * Makefile.am (SUBDIRS): Remove intl.
16044 (EXTRA_DIST): Add config/config.rpath.
16045
16046 2002-05-03 Akim Demaille <akim@epita.fr>
16047
16048 * data/bison.simple (m4_if): Don't output empty enums.
16049 And actually, output valid enum definitions :(.
16050
16051 2002-05-03 Akim Demaille <akim@epita.fr>
16052
16053 * configure.bat: Remove, completely obsolete.
16054 * Makefile.am (EXTRA_DIST): Adjust.
16055 Don't distribute config.rpath...
16056 * config/Makefile.am (EXTRA_DIST): Do it.
16057
16058 2002-05-03 Akim Demaille <akim@epita.fr>
16059
16060 * configure.in (GETTEXT_VERSION): New.
16061 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
16062
16063 2002-05-03 Akim Demaille <akim@epita.fr>
16064
16065 * data/bison.simple (b4_token_enum): New.
16066 (b4_token_defines): Use it to output tokens both as #define and
16067 enums.
16068 Suggested by Paul Eggert.
16069 * src/output.c (token_definitions_output): Don't output spurious
16070 white spaces.
16071
16072 2002-05-03 Akim Demaille <akim@epita.fr>
16073
16074 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16075
16076 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
16077
16078 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
16079 Update the stack class, give a try to deque as the default container.
16080
16081 2002-05-02 Akim Demaille <akim@epita.fr>
16082
16083 * data/bison.simple (yyparse): Do not implement @$ = @1.
16084 (YYLLOC_DEFAULT): Adjust to do it.
16085 * doc/bison.texinfo (Location Default Action): Fix.
16086
16087 2002-05-02 Akim Demaille <akim@epita.fr>
16088
16089 * src/reader.c (parse_braces): Merge into...
16090 (parse_action): this.
16091
16092 2002-05-02 Akim Demaille <akim@epita.fr>
16093
16094 * configure.in (ALL_LINGUAS): Remove.
16095 * po/LINGUAS, hr.po: New.
16096
16097 2002-05-02 Akim Demaille <akim@epita.fr>
16098
16099 Remove the so called hairy (semantic) parsers.
16100
16101 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
16102 * src/gram.h, src/gram.c (semantic_parser): Remove.
16103 (rule_t): Remove the guard and guard_line members.
16104 * src/lex.h (token_t): remove tok_guard.
16105 * src/options.c (option_table): Remove %guard and %semantic_parser
16106 support.
16107 * src/output.c, src/output.h (guards_output): Remove.
16108 (prepare): Adjust.
16109 (token_definitions_output): Don't output the `T'
16110 tokens (???).
16111 (output_skeleton): Don't output the guards.
16112 * src/files.c, src/files.c (attrsfile): Remove.
16113 * src/reader.c (symbol_list): Remove the guard and guard_line
16114 members.
16115 Adjust dependencies.
16116 (parse_guard): Remove.
16117 * data/bison.hairy: Remove.
16118 * doc/bison.texinfo (Environment Variables): Remove occurrences of
16119 BISON_HAIRY.
16120
16121 2002-05-02 Akim Demaille <akim@epita.fr>
16122
16123 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
16124 (parse_guard): Rename the formal argument `stack_offset' as
16125 `rule_length', which is more readable.
16126 Adjust callers.
16127 (copy_at, copy_dollar): Instead of outputting the hard coded
16128 values of $$, $n and so forth, output invocation to b4_lhs_value,
16129 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
16130 Note: this patch partially drops `semantic-parser' support: it
16131 always does `rule_length - n', where semantic parsers ought to
16132 always use `-n'.
16133 * data/bison.simple, data/bison.c++ (b4_lhs_value)
16134 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
16135
16136 2002-05-02 Akim Demaille <akim@epita.fr>
16137
16138 * configure.in (AC_INIT): Bump to 1.49b.
16139 (AM_INIT_AUTOMAKE): Short invocation.
16140
16141 2002-05-02 Akim Demaille <akim@epita.fr>
16142
16143 Version 1.49a.
16144
16145 2002-05-01 Akim Demaille <akim@epita.fr>
16146
16147 * src/skeleton.h: Remove.
16148
16149 2002-05-01 Akim Demaille <akim@epita.fr>
16150
16151 * src/skeleton.h: Fix the #endif.
16152 Reported by Magnus Fromreide.
16153
16154 2002-04-26 Paul Eggert <eggert@twinsun.com>
16155
16156 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
16157 Define if we define YYSTYPE and YYLTYPE, respectively.
16158 (YYCOPY): Fix [] quoting problem in the non-GCC case.
16159
16160 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
16161
16162 * src/scan-skel.l: Postprocess quadrigraphs.
16163
16164 * src/reader.c (copy_character): New function, used to output
16165 single characters while replacing `[' and `]' with quadrigraphs, to
16166 avoid troubles with M4 quotes.
16167 (copy_comment): Output characters with copy_character.
16168 (read_additionnal_code): Likewise.
16169 (copy_string2): Likewise.
16170 (copy_definition): Likewise.
16171
16172 * tests/calc.at: Exercise M4 quoting.
16173
16174 2002-04-25 Akim Demaille <akim@epita.fr>
16175
16176 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
16177 between `!' and the command.
16178 Reported by Paul Eggert.
16179
16180 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
16181
16182 * tests/calc.at: Exercise prologue splitting.
16183
16184 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
16185 `b4_post_prologue' instead of `b4_prologue'.
16186
16187 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
16188 muscles.
16189 (output): Free pre_prologue_obstack and post_prologue_obstack.
16190 * src/files.h, src/files.c (attrs_obstack): Remove.
16191 (pre_prologue_obstack, post_prologue_obstack): New.
16192 * src/reader.c (copy_definition): Add a parameter to specify the
16193 obstack to fill, instead of using attrs_obstack unconditionally.
16194 (read_declarations): Pass pre_prologue_obstack to copy_definition if
16195 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
16196
16197 2002-04-23 Paul Eggert <eggert@twinsun.com>
16198
16199 * data/bison.simple: Remove unnecessary commentary and white
16200 space differences from 1_29-branch.
16201 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
16202
16203 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
16204 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
16205 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
16206 constructors or destructors.
16207
16208 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
16209
16210 2002-04-23 Akim Demaille <akim@epita.fr>
16211
16212 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
16213 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
16214 location with columns.
16215 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
16216 All reported by Paul Eggert.
16217
16218 2002-04-22 Akim Demaille <akim@epita.fr>
16219
16220 * src/reduce.c (dump_grammar): Move to...
16221 * src/gram.h, src/gram.c (grammar_dump): here.
16222 Be sure to separate long item numbers.
16223 Don't read the members of a rule's prec if its nil.
16224
16225 2002-04-22 Akim Demaille <akim@epita.fr>
16226
16227 * src/output.c (table_size, table_grow): New.
16228 (MAXTABLE): Remove, replace uses with table_size.
16229 (pack_vector): Instead of dying when the table is too big, grow it.
16230
16231 2002-04-22 Akim Demaille <akim@epita.fr>
16232
16233 * data/bison.simple (yyr1): Its type is that of a token number.
16234 * data/bison.c++ (r1_): Likewise.
16235 * tests/regression.at (Web2c Actions): Adjust.
16236
16237 2002-04-22 Akim Demaille <akim@epita.fr>
16238
16239 * src/reader.c (token_translations_init): 256 is now the default
16240 value for the error token, i.e., it will be assigned another
16241 number if the user assigned 256 to one of her tokens.
16242 (reader): Don't force 256 to error.
16243 * doc/bison.texinfo (Symbols): Adjust.
16244 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
16245 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
16246 etc. instead of 10, 20, 30 (which was used to `jump' over error
16247 (256) and undefined (2)).
16248
16249 2002-04-22 Akim Demaille <akim@epita.fr>
16250
16251 Propagate more token_number_t.
16252
16253 * src/gram.h (token_number_as_item_number)
16254 (item_number_as_token_number): New.
16255 * src/output.c (GENERATE_OUTPUT_TABLE): New.
16256 Use it to create output_item_number_table and
16257 output_token_number_table.
16258 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16259 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
16260 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
16261 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
16262
16263 2002-04-22 Akim Demaille <akim@epita.fr>
16264
16265 * src/output.h, src/output.c (get_lines_number): Remove.
16266
16267 2002-04-19 Akim Demaille <akim@epita.fr>
16268
16269 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
16270 as Lex/Flex'.
16271 (Debugging): More details about enabling the debugging features.
16272 (Table of Symbols): Describe $$, $n, @$, and @n.
16273 Suggested by Tim Josling.
16274
16275 2002-04-19 Akim Demaille <akim@epita.fr>
16276
16277 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
16278
16279 2002-04-10 Akim Demaille <akim@epita.fr>
16280
16281 * src/system.h: Rely on HAVE_LIMITS_H.
16282 Suggested by Paul Eggert.
16283
16284 2002-04-09 Akim Demaille <akim@epita.fr>
16285
16286 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
16287 full stderr, and strip it according to the bison options, instead
16288 of composing the error message from different bits.
16289 This makes it easier to check for several error messages.
16290 Adjust all the invocations.
16291 Add an invocation exercising the error token.
16292 Add an invocation demonstrating a stupid error message.
16293 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
16294 Adjust the tests.
16295 Error message are for stderr, not stdout.
16296
16297 2002-04-09 Akim Demaille <akim@epita.fr>
16298
16299 * src/gram.h, src/gram.c (error_token_number): Remove, use
16300 errtoken->number.
16301 * src/reader.c (reader): Don't specify the user token number (2)
16302 for $undefined, as it uselessly prevents using it.
16303 * src/gram.h (token_number_t): Move to...
16304 * src/symtab.h: here.
16305 (state_t.number): Is a token_number_t.
16306 * src/print.c, src/reader.c: Use undeftoken->number instead of
16307 hard coded 2.
16308 (Even though this 2 is not the same as above: the number of the
16309 undeftoken remains being 2, it is its user token number which
16310 might not be 2).
16311 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
16312 `user_token_number_max'.
16313 Output `undef_token_number'.
16314 * data/bison.simple, data/bison.c++: Use them.
16315 Be sure to map invalid yylex return values to
16316 `undef_token_number'. This saves us from gratuitous SEGV.
16317
16318 * tests/conflicts.at (Solved SR Conflicts)
16319 (Unresolved SR Conflicts): Adjust.
16320 * tests/regression.at (Web2c Actions): Adjust.
16321
16322 2002-04-08 Akim Demaille <akim@epita.fr>
16323
16324 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16325 Adding #line.
16326 Remove the duplicate `typedefs'.
16327 (RhsNumberType): Fix the declaration and various other typos.
16328 Use __ofile__.
16329 * data/bison.simple: Use __ofile__.
16330 * src/scan-skel.l: Handle __ofile__.
16331
16332 2002-04-08 Akim Demaille <akim@epita.fr>
16333
16334 * src/gram.h (item_number_t): New, the type of item numbers in
16335 RITEM. Note that it must be able to code symbol numbers as
16336 positive number, and the negation of rule numbers as negative
16337 numbers.
16338 Adjust all dependencies (pretty many).
16339 * src/reduce.c (rule): Remove this `short *' pointer: use
16340 item_number_t.
16341 * src/system.h (MINSHORT, MAXSHORT): Remove.
16342 Include `limits.h'.
16343 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16344 (shortcpy): Remove.
16345 (MAXTABLE): Move to...
16346 * src/output.c (MAXTABLE): here.
16347 (prepare_rules): Use output_int_table to output rhs.
16348 * data/bison.simple, data/bison.c++: Adjust.
16349 * tests/torture.at (Big triangle): Move the limit from 254 to
16350 500.
16351 * tests/regression.at (Web2c Actions): Ajust.
16352
16353 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16354 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16355 passes, but produces negative #line number, once fixed, GCC is
16356 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16357 C), it passes.
16358 * src/state.h (state_h): Code input lines on ints, not shorts.
16359
16360 2002-04-08 Akim Demaille <akim@epita.fr>
16361
16362 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16363 and then the grammar.
16364
16365 2002-04-08 Akim Demaille <akim@epita.fr>
16366
16367 * src/system.h: No longer using strndup.
16368
16369 2002-04-07 Akim Demaille <akim@epita.fr>
16370
16371 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16372 * src/output.c (output_table_data): Return the longest number.
16373 (prepare_tokens): Output `token_number_max').
16374 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16375 New.
16376 Use them to define yy_token_number_type/TokenNumberType.
16377 Use this type for yytranslate.
16378 * tests/torture.at (Big triangle): Push the limit from 124 to
16379 253.
16380 * tests/regression.at (Web2c Actions): Adjust.
16381
16382 2002-04-07 Akim Demaille <akim@epita.fr>
16383
16384 * tests/torture.at (Big triangle): New.
16385 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16386 * tests/existing.at: here.
16387
16388 2002-04-07 Akim Demaille <akim@epita.fr>
16389
16390 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16391 nritems.
16392 Adjust dependencies.
16393
16394 2002-04-07 Akim Demaille <akim@epita.fr>
16395
16396 * src/reader.c: Normalize increments to prefix form.
16397
16398 2002-04-07 Akim Demaille <akim@epita.fr>
16399
16400 * src/reader.c, symtab.c: Remove debugging code.
16401
16402 2002-04-07 Akim Demaille <akim@epita.fr>
16403
16404 Rename all the `bucket's as `symbol_t'.
16405
16406 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16407 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16408 * src/symtab.c, src/symtab.h (bucket): Rename as...
16409 (symbol_t): this.
16410 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16411 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16412 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16413 (buckets_new, buckets_free, buckets_do): Rename as...
16414 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16415 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16416 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16417 (symbols_new, symbols_free, symbols_do): these.
16418
16419 2002-04-07 Akim Demaille <akim@epita.fr>
16420
16421 Use lib/hash for the symbol table.
16422
16423 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16424 EOF.
16425 * src/lex.c (lex): Set the `number' member of new terminals.
16426 * src/reader.c (bucket_check_defined, bucket_make_alias)
16427 (bucket_check_alias_consistence, bucket_translation): New.
16428 (reader, grammar_free, readgram, token_translations_init)
16429 (packsymbols): Adjust.
16430 (reader): Number the predefined tokens.
16431 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16432 for predefined tokens.
16433 * src/symtab.h (bucket): Remove all the hash table related
16434 members.
16435 * src/symtab.c (symtab): Replace by...
16436 (bucket_table): this.
16437 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16438 (buckets_new, buckets_do): New.
16439
16440 2002-04-07 Akim Demaille <akim@epita.fr>
16441
16442 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16443 (start_symbol, max_user_token_number, semantic_parser)
16444 (error_token_number): Initialize.
16445 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16446 Initialize.
16447 (reader): Don't.
16448 (errtoken, eoftoken, undeftoken, axiom): Extern.
16449
16450 2002-04-07 Akim Demaille <akim@epita.fr>
16451
16452 * src/gram.h (rule_s): prec and precsym are now pointers
16453 to the bucket giving the priority/associativity.
16454 Member `associativity' removed: useless.
16455 * src/reduce.c, src/conflicts.c: Adjust.
16456
16457 2002-04-07 Akim Demaille <akim@epita.fr>
16458
16459 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16460 Properly escape the symbols' TAG when outputting them.
16461
16462 2002-04-07 Akim Demaille <akim@epita.fr>
16463
16464 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16465
16466 2002-04-07 Akim Demaille <akim@epita.fr>
16467
16468 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16469 (LArule): this, which is an array to rule_t*.
16470 * src/print.c, src/conflicts.c: Adjust.
16471
16472 2002-04-07 Akim Demaille <akim@epita.fr>
16473
16474 * src/gram.h (rule_t): Rename `number' as `user_number'.
16475 `number' is a new member.
16476 Adjust dependencies.
16477 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16478
16479 2002-04-07 Akim Demaille <akim@epita.fr>
16480
16481 As a result of the previous patch, it is no longer needed
16482 to reorder ritem itself.
16483
16484 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16485
16486 2002-04-07 Akim Demaille <akim@epita.fr>
16487
16488 Be sure never to walk through RITEMS, but use only data related to
16489 the rules themselves. RITEMS should be banished.
16490
16491 * src/output.c (output_token_translations): Rename as...
16492 (prepare_tokens): this.
16493 In addition to `translate', prepare the muscles `tname' and
16494 `toknum', which were handled by...
16495 (output_rule_data): this.
16496 Remove, and move the remainder of its outputs into...
16497 (prepare_rules): this new routines, which also merges content from
16498 (output_gram): this.
16499 (prepare_rules): Be sure never to walk through RITEMS.
16500 (output_stos): Rename as...
16501 (prepare_stos): this.
16502 (output): Always invoke prepare_states, after all, just don't use it
16503 in the output if you don't need it.
16504
16505 2002-04-07 Akim Demaille <akim@epita.fr>
16506
16507 * src/LR0.c (new_state): Display `nstates' as the name of the
16508 newly created state.
16509 Adjust to initialize first_state and last_state if needed.
16510 Be sure to distinguish the initial from the final state.
16511 (new_states): Create the itemset of the initial state, and use
16512 new_state.
16513 * src/closure.c (closure): Now that the initial state has its
16514 items properly set, there is no need for a special case when
16515 creating `ruleset'.
16516
16517 As a result, now the rule 0, reducing to $axiom, is visible in the
16518 outputs. Adjust the test suite.
16519
16520 * tests/conflicts.at (Solved SR Conflicts)
16521 (Unresolved SR Conflicts): Adjust.
16522 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16523 * tests/conflicts.at (S/R in initial): New.
16524
16525 2002-04-07 Akim Demaille <akim@epita.fr>
16526
16527 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16528 the RHS of the rules.
16529 * src/output.c (output_gram): Likewise.
16530
16531 2002-04-07 Akim Demaille <akim@epita.fr>
16532
16533 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16534 bucket.
16535 Adjust all dependencies.
16536 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16537 `number' of the buckets too.
16538 * src/gram.h: Include `symtab.h'.
16539 (associativity): Move to...
16540 * src/symtab.h: here.
16541 No longer include `gram.h'.
16542
16543 2002-04-07 Akim Demaille <akim@epita.fr>
16544
16545 * src/gram.h, src/gram.c (rules_rhs_length): New.
16546 (ritem_longest_rhs): Use it.
16547 * src/gram.h (rule_t): `number' is a new member.
16548 * src/reader.c (packgram): Set it.
16549 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16550 the end of `rules', and count them out of `nrules'.
16551 (reduce_output, dump_grammar): Adjust.
16552 * src/print.c (print_grammar): It is no longer needed to check for
16553 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16554 * tests/reduce.at (Reduced Automaton): New test.
16555
16556 2002-04-07 Akim Demaille <akim@epita.fr>
16557
16558 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16559 lacking `+ 1' to nrules, Bison reported as useless a token if it
16560 was used solely to set the precedence of the last rule...
16561
16562 2002-04-07 Akim Demaille <akim@epita.fr>
16563
16564 * data/bison.c++, data/bison.simple: Don't output the current file
16565 name in #line, to avoid useless diffs between two identical
16566 outputs under different names.
16567
16568 2002-04-07 Akim Demaille <akim@epita.fr>
16569
16570 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16571 Normalize loops to using `< nrules + 1', not `<= nrules'.
16572
16573 2002-04-07 Akim Demaille <akim@epita.fr>
16574
16575 * TODO: Update.
16576
16577 2002-04-07 Akim Demaille <akim@epita.fr>
16578
16579 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16580 bucket.value as bucket.number.
16581
16582 2002-04-07 Akim Demaille <akim@epita.fr>
16583
16584 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16585 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16586 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16587 RHS, instead of being an index in RITEMS.
16588
16589 2002-04-04 Paul Eggert <eggert@twinsun.com>
16590
16591 * doc/bison.texinfo: Update copyright date.
16592 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16593 (Symbols): Warn about running Bison in one character set,
16594 but compiling and/or running in an incompatible one.
16595 Warn about character code 256, too.
16596
16597 2002-04-03 Paul Eggert <eggert@twinsun.com>
16598
16599 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16600 YYERROR_VERBOSE is nonzero, not whether it is defined.
16601
16602 Merge changes from bison-1_29-branch.
16603
16604 2002-03-20 Paul Eggert <eggert@twinsun.com>
16605
16606 Merge fixes from Debian bison_1.34-1.diff.
16607
16608 * configure.in (AC_PREREQ): 2.53.
16609
16610 2002-03-20 Akim Demaille <akim@epita.fr>
16611
16612 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16613
16614 2002-03-19 Paul Eggert <eggert@twinsun.com>
16615
16616 * src/bison.simple (YYCOPY): New macro.
16617 (YYSTACK_RELOCATE): Use it.
16618 Remove Type arg; no longer needed. All callers changed.
16619 (yymemcpy): Remove; no longer needed.
16620
16621 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16622 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16623
16624 2002-03-19 Akim Demaille <akim@epita.fr>
16625
16626 Test and fix the #line outputs.
16627
16628 * tests/atlocal.at (GCC): New.
16629 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
16630 (Prologue synch line, %union synch line, Postprologue synch line)
16631 (Action synch line, Epilogue synch line): New tests.
16632 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16633 * data/bison.simple, data/bison.c++: Use it.
16634
16635 2002-03-19 Akim Demaille <akim@epita.fr>
16636
16637 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16638 (Solved SR Conflicts, %expect not enough, %expect right)
16639 (%expect too much): Move to...
16640 * tests/conflicts.at: this new file.
16641
16642 2002-03-19 Akim Demaille <akim@epita.fr>
16643
16644 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16645 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16646 that we can move to enums for instance.
16647 * src/output.c (token_definitions_output): Output a list of
16648 `token-name, token-number' instead of the #define.
16649 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16650
16651 2002-03-14 Akim Demaille <akim@epita.fr>
16652
16653 Use Gettext 0.11.1.
16654
16655 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
16656
16657 * data/bison.c++: Make the user able to add members to the generated
16658 parser by subclassing.
16659
16660 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
16661
16662 * src/reader.c (read_additionnal_code): `c' should be an integer, not
16663 a character.
16664 Reported by Nicolas Tisserand and Nicolas Burrus.
16665
16666 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16667
16668 * src/reader.c: Warn about lacking semi-colons, do not complain.
16669
16670 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16671
16672 * data/bison.c++: Remove a debug line.
16673
16674 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16675
16676 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
16677 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
16678 provide a default implementation.
16679
16680 2002-03-04 Akim Demaille <akim@epita.fr>
16681
16682 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
16683 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
16684 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
16685 * tests/semantic.at (Parsing Guards): Similarly.
16686 * src/reader.at (readgram): Complain if the last rule is not ended
16687 with a semi-colon.
16688
16689 2002-03-04 Akim Demaille <akim@epita.fr>
16690
16691 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
16692 * src/closure.c: here.
16693 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
16694 RTC.
16695 * src/warshall.h, src/warshall.c: Remove.
16696 * tests/sets.at (Broken Closure): Adjust.
16697
16698 2002-03-04 Akim Demaille <akim@epita.fr>
16699
16700 * src/output.c (output_skeleton): tempdir is const.
16701 bytes_read is unused.
16702
16703 2002-03-04 Akim Demaille <akim@epita.fr>
16704
16705 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16706 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
16707 Update.
16708 From Michael Hayes.
16709
16710 2002-03-04 Akim Demaille <akim@epita.fr>
16711
16712 * src/closure.c (closure): `r' is unused.
16713
16714 2002-03-04 Akim Demaille <akim@epita.fr>
16715
16716 * tests/sets.at (Broken Closure): Add the ending `;'.
16717 * src/reader.at (readgram): Complain if a rule is not ended with a
16718 semi-colon.
16719
16720 2002-03-04 Akim Demaille <akim@epita.fr>
16721
16722 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
16723 (count_sr_conflicts): Use bitset_count.
16724 * src/reduce.c (inaccessable_symbols): Ditto.
16725 (bits_size): Remove.
16726 * src/warshall.h, src/warshall.c: Convert to bitsetv.
16727
16728 2002-03-04 Akim Demaille <akim@epita.fr>
16729
16730 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
16731 * src/reduce.c: Remove the `bitset_zero's following the
16732 `bitset_create's, as now it is performed by the latter.
16733
16734 2002-03-04 Akim Demaille <akim@epita.fr>
16735
16736 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
16737 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
16738 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
16739 latest sources from Michael.
16740
16741 2002-03-04 Akim Demaille <akim@epita.fr>
16742
16743 * src/output.c (output): Don't free the grammar.
16744 * src/reader.c (grammar_free): New.
16745 * src/main.c (main): Call it and don't free symtab here.
16746
16747 2002-03-04 Akim Demaille <akim@epita.fr>
16748
16749 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
16750 before returning.
16751 Reported by Benoit Perrot.
16752
16753 2002-03-04 Akim Demaille <akim@epita.fr>
16754
16755 Use bitset operations when possible, not loops over bits.
16756
16757 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
16758 bitset_or.
16759 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
16760 * src/reduce.c (useless_nonterminals): Formatting changes.
16761 * src/warshall.c (TC): Use bitset_or.
16762
16763 2002-03-04 Akim Demaille <akim@epita.fr>
16764
16765 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
16766 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
16767 Ditto.
16768
16769 2002-03-04 Akim Demaille <akim@epita.fr>
16770
16771 * src/lalr.c (F): Now a bitset*.
16772 Adjust all dependencies.
16773
16774 2002-03-04 Akim Demaille <akim@epita.fr>
16775
16776 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
16777 Adjust all dependencies.
16778
16779 2002-03-04 Akim Demaille <akim@epita.fr>
16780
16781 * src/L0.c, src/LR0.h (nstates): Be size_t.
16782 Adjust comparisons (signed vs unsigned).
16783 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
16784 bitset*.
16785 Adjust all dependencies.
16786
16787 2002-03-04 Akim Demaille <akim@epita.fr>
16788
16789 * src/closure.c (firsts): Now, also a bitset.
16790 Adjust all dependencies.
16791 (varsetsize): Remove, now unused.
16792 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
16793
16794 2002-03-04 Akim Demaille <akim@epita.fr>
16795
16796 * src/print.c: Convert to use bitset.h, not hand coded iterations
16797 over ints.
16798
16799 2002-03-04 Akim Demaille <akim@epita.fr>
16800
16801 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
16802
16803 2002-03-04 Akim Demaille <akim@epita.fr>
16804
16805 * src/closure.c (ruleset): Be a bitset.
16806 (rulesetsize): Remove.
16807
16808 2002-03-04 Akim Demaille <akim@epita.fr>
16809
16810 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16811 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
16812 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
16813 * src/closure.c (fderives): Be an array of bitsets.
16814
16815 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
16816
16817 * data/bison.c++: Merge the two generated headers. Insert a copyright
16818 notice in each output file.
16819
16820 2002-02-28 Akim Demaille <akim@epita.fr>
16821
16822 * data/bison.c++: Copy the prologue of bison.simple to fetch
16823 useful M4 definitions, such as b4_header_guard.
16824
16825 2002-02-25 Akim Demaille <akim@epita.fr>
16826
16827 * src/getargs.c (version): Give the name of the authors, and use a
16828 translator friendly scheme for the bgr
16829 copyright notice.
16830
16831 2002-02-25 Akim Demaille <akim@epita.fr>
16832
16833 * src/output.c (header_output): Remove, now handled completely via
16834 M4.
16835
16836 2002-02-25 Akim Demaille <akim@epita.fr>
16837
16838 * m4/m4.m4: New, from CVS Autoconf.
16839 * configure.in: Invoke it.
16840 * src/output.c (output_skeleton): Use its result instead of the
16841 hard coded name.
16842
16843 2002-02-25 Akim Demaille <akim@epita.fr>
16844
16845 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
16846 Fileutils 4.1.5.
16847 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
16848 * src/output.c (output_skeleton): Use mkstemp to create a real
16849 temporary file.
16850 Move the filling of `skeleton' and its muscle to...
16851 (prepare): here.
16852 (output): Move the definition of the prologue muscle to...
16853 (prepare): here.
16854 * src/system.h (DEFAULT_TMPDIR): New.
16855
16856 2002-02-14 Paul Eggert <eggert@twinsun.com>
16857
16858 Remove the support for C++ namespace cleanliness; it was
16859 causing more problems than it was curing, since it didn't work
16860 properly on some nonstandard C++ compilers. This can wait
16861 for a proper C++ parser.
16862
16863 * NEWS: Document this.
16864 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
16865 of C++, as it's treated like C now.
16866 * src/bison.simple (YYSTD): Remove.
16867 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
16868 Treat C++ just like Standard C instead of trying to support
16869 namespace cleanliness.
16870
16871 2002-02-14 Akim Demaille <akim@epita.fr>
16872
16873 * tests/regression.at (else): Adjust to Andreas' change.
16874
16875 2002-02-14 Akim Demaille <akim@epita.fr>
16876
16877 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
16878
16879 2002-02-13 Andreas Schwab <schwab@suse.de>
16880
16881 * src/output.c (output_rule_data): Don't output NULL, it might
16882 not be defined yet.
16883
16884 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
16885
16886 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
16887 (Copyright notice): Update.
16888
16889 2002-02-11 Akim Demaille <akim@epita.fr>
16890
16891 * tests/regression.at (%nonassoc and eof): Don't include
16892 nonportable headers.
16893
16894 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
16895
16896 * data/bison.c++: Correct error recovery. Make the user able to
16897 initialize the starting location.
16898
16899 2002-02-07 Akim Demaille <akim@epita.fr>
16900
16901 * tests/input.at: New.
16902
16903 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16904
16905 * data/bison.c++: Replace some direct m4 expansions by constants. Be
16906 more consistent when naming methods and variables. Put preprocessor
16907 directives around tables only needed for debugging.
16908
16909 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16910
16911 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
16912 C++ parsers.
16913 (yy::b4_name::parse): Use print_.
16914
16915 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16916
16917 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
16918
16919 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16920
16921 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
16922 C++ parsers.
16923 (yy::b4_name::parse): Build verbose error messages, and use error_.
16924
16925 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16926
16927 * data/bison.c++: Fix m4 quoting in comments.
16928
16929 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16930
16931 * data/bison.c++: Adjust the parser code. Fix some muscles that were
16932 not expanded by m4.
16933
16934 2002-02-05 Akim Demaille <akim@epita.fr>
16935
16936 * data/bison.c++: Adjust to the M4 back end.
16937 More is certainly needed.
16938
16939 2002-02-05 Akim Demaille <akim@epita.fr>
16940
16941 Give a try to M4 as a back end.
16942
16943 * lib/readpipe.c: New, from wdiff.
16944 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
16945 BISON_HAIRY.
16946 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
16947 specific values. Now it is m4 that performs the lookup.
16948 * src/parse-skel.y: Remove.
16949 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
16950 * src/output.c (actions_output, guards_output)
16951 (token_definitions_output): No longer keeps track of the output
16952 line number, hence remove the second argument.
16953 (guards_output): Check against the guard member of a rule, not the
16954 action member.
16955 Adjust callers.
16956 (output_skeleton): Don't look for the skeleton location, let m4 do
16957 that.
16958 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
16959 file will be used.
16960 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
16961 (prepare): Given that for the time being changesyntax is not
16962 usable in M4, rename the muscles using `-' to `_'.
16963 Define `defines_flag', `output_parser_name' and `output_header_name'.
16964 * src/output.h (actions_output, guards_output)
16965 (token_definitions_output): Adjust prototypes.
16966 * src/scan-skel.l: Instead of scanning the skeletons, it now
16967 processes the output of m4: `__oline__' and `#output'.
16968 * data/bison.simple: Adjust to be used by M4(sugar).
16969 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
16970 to date.
16971 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
16972 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
16973 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
16974 shamelessly stolen from CVS Autoconf.
16975
16976 2002-02-05 Akim Demaille <akim@epita.fr>
16977
16978 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
16979 * configure.in: Check for the declarations of free and malloc.
16980 * src/muscle_tab.c: Adjust.
16981
16982 2002-02-05 Akim Demaille <akim@epita.fr>
16983
16984 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
16985 which have no values.
16986
16987 2002-02-05 Akim Demaille <akim@epita.fr>
16988
16989 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
16990 * data/: here.
16991
16992 2002-01-29 Paul Eggert <eggert@twinsun.com>
16993
16994 * src/bison.simple (YYSIZE_T): Do not define merely because
16995 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
16996 On some platforms, <alloca.h> does not declare YYSTD (size_t).
16997
16998 2002-01-27 Akim Demaille <akim@epita.fr>
16999
17000 Fix `%nonassoc and eof'.
17001
17002 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
17003 which were not properly copied! Replace
17004 memcpy (res->errs, src->errs, src->nerrs);
17005 with
17006 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
17007 !!!
17008 * tests/regression.at (%nonassoc and eof): Adjust to newest
17009 Autotest: `.' is not in the PATH.
17010
17011 2002-01-27 Akim Demaille <akim@epita.fr>
17012
17013 * tests/sets.at (AT_EXTRACT_SETS): New.
17014 (Nullable): Use it.
17015 (Firsts): New.
17016
17017 2002-01-26 Akim Demaille <akim@epita.fr>
17018
17019 * tests/actions.at, tests/calc.at, tests/headers.at,
17020 * tests/torture.at: Adjust to the newest Autotest which no longer
17021 forces `.' in the PATH.
17022
17023 2002-01-25 Akim Demaille <akim@epita.fr>
17024
17025 * tests/regression.at (%nonassoc and eof): New.
17026 Suggested by Robert Anisko.
17027
17028 2002-01-24 Akim Demaille <akim@epita.fr>
17029
17030 Bison dumps core when trying to complain about broken input files.
17031 Reported by Cris van Pelt.
17032
17033 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
17034 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
17035 into...
17036 (Invalid inputs): Strengthen: exercise parse_percent_token.
17037
17038 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
17039
17040 * src/Makefile.am: Add bison.c++.
17041 * src/bison.c++: New skeleton.
17042
17043 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
17044
17045 * po/it.po: New.
17046
17047 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
17048
17049 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
17050
17051 2002-01-20 Marc Autret <marc@gnu.org>
17052
17053 * src/files.c (compute_output_file_names): Fix
17054
17055 2002-01-20 Marc Autret <marc@gnu.org>
17056
17057 * tests/output.at: New test.
17058 * src/files.c (compute_base_names): Don't map extensions when
17059 the YACC flag is set, use defaults.
17060 Reported by Evgeny Stambulchik.
17061
17062 2002-01-20 Marc Autret <marc@gnu.org>
17063
17064 * src/system.h: Need to define __attribute__ away for non-GCC
17065 compilers as well (i.e., the vendor C compiler).
17066 Suggested by Albert Chin-A-Young.
17067
17068 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
17069
17070 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
17071 canonical definition.
17072 * src/system.h: Use the canonical definition for PARAMS (avoids
17073 a conflict with the macro from lib/hash.h).
17074
17075 2002-01-11 Akim Demaille <akim@epita.fr>
17076
17077 * configure.in: Use AC_FUNC_STRNLEN.
17078 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
17079
17080 2002-01-09 Akim Demaille <akim@epita.fr>
17081
17082 * src/files.c, src/files.h (output_infix): New.
17083 (tab_extension): Remove.
17084 (compute_base_names): Compute the former, drop the latter.
17085 * src/output.c (prepare): Insert the muscles `output-infix', and
17086 `output-suffix'.
17087 * src/parse-skel.y (string, string.1): New.
17088 (section.header): Use it.
17089 (section.yacc): Remove.
17090 (prefix): Remove too.
17091 * src/scan-skel.l: Adjust.
17092 * src/bison.simple, src/bison.hairy: Adjust.
17093
17094 2002-01-09 Akim Demaille <akim@epita.fr>
17095
17096 * configure.in (WERROR_CFLAGS): Compute it.
17097 * src/Makefile.am (CFLAGS): Pass it.
17098 * tests/atlocal.in (CFLAGS): Idem.
17099 * src/files.c: Fix a few warnings.
17100 (get_extension_index): Remove, unused.
17101
17102 2002-01-08 Akim Demaille <akim@epita.fr>
17103
17104 * src/getargs.c (AS_FILE_NAME): New.
17105 (getargs): Use it to convert DOSish file names.
17106 * src/files.c (base_name): Rename as full_base_name to avoid
17107 clashes with `base_name ()'.
17108 (filename_split): New.
17109 (compute_base_names): N-th rewrite, using filename_split.
17110
17111 2002-01-08 Akim Demaille <akim@epita.fr>
17112
17113 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
17114 New, stolen from the Fileutils 4.1.
17115 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17116 * configure.in: Check for the presence of memrchr, and of its
17117 prototype.
17118
17119 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
17120
17121 * lib/hash.h (__P): Added definition for this macro.
17122 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
17123 BUILT_SOURCES, to ensure they are generated first.
17124 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
17125 %error-verbose to allow bootstrapping with bison 1.30x.
17126
17127 2002-01-06 Akim Demaille <akim@epita.fr>
17128
17129 * src/reader.c (parse_braces): Don't fetch the next char, the
17130 convention is to fetch on entry.
17131 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
17132 'switch' without a following semicolon.
17133 * tests/regression.at (braces parsing): New.
17134
17135 2002-01-06 Akim Demaille <akim@epita.fr>
17136
17137 Bison is dead wrong in its RR conflict reports.
17138
17139 * tests/torture.at (GNU Cim Grammar): New.
17140 * src/conflicts.c (count_rr_conflicts): Fix.
17141
17142 2002-01-06 Akim Demaille <akim@epita.fr>
17143
17144 Creating package.m4 from configure.ac causes too many problems.
17145
17146 * tests/Makefile.am (package.m4): Create it by hand,
17147 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
17148
17149 2002-01-06 Akim Demaille <akim@epita.fr>
17150
17151 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
17152 skeleton.h.
17153
17154 2002-01-04 Paul Eggert <eggert@twinsun.com>
17155
17156 * doc/bison.texinfo (Debugging):
17157 Remove YYSTDERR; it's no longer defined or used.
17158 Also, s/cstdio.h/cstdio/.
17159
17160 2002-01-03 Akim Demaille <akim@epita.fr>
17161
17162 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
17163
17164 2002-01-03 Akim Demaille <akim@epita.fr>
17165
17166 * src/parse-skel.y (process_skeleton): Don't bind the parser's
17167 tracing code to --trace, wait for a better --trace option, with
17168 args.
17169
17170 2002-01-03 Akim Demaille <akim@epita.fr>
17171
17172 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
17173 The ISO C++ standard is extremely clear about it: stderr is
17174 considered a macro, not a regular symbol (see table 94 `Header
17175 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
17176 Therefore std:: does not apply to it. It still does with fprintf.
17177 Also, s/cstdio.h/cstdio/.
17178
17179 2002-01-03 Akim Demaille <akim@epita.fr>
17180
17181 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
17182 for non system headers.
17183
17184 2002-01-02 Akim Demaille <akim@epita.fr>
17185
17186 Equip the skeleton chain with location tracking, runtime trace,
17187 pure parser and scanner.
17188
17189 * src/parse-skel.y: Request a pure parser, locations, and prefix
17190 renaming.
17191 (%union): Having several members with the same type does not help
17192 type mismatches, simplify.
17193 (YYPRINT, yyprint): New.
17194 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
17195 (skel_error): this.
17196 Handle locations.
17197 * src/scan-skel.l: Adjust to these changes.
17198 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
17199 (LOCATION_PRINT, skel_control_t): New.
17200
17201 2001-12-30 Akim Demaille <akim@epita.fr>
17202
17203 * src/parse-skel.y: Get rid of the shift/reduce conflict:
17204 replace `gb' with BLANKS.
17205 * src/scan-skel.l: Adjust.
17206
17207 2001-12-30 Akim Demaille <akim@epita.fr>
17208
17209 * src/system.h: We don't need nor want bcopy.
17210 Throw away MS-DOS crap: we don't need getpid.
17211 * configure.in: We don't need strndup. It was even causing
17212 problems: because Flex includes the headers *before* us,
17213 _GNU_SOURCE is not defined by config.h, and therefore strndup was
17214 not visible.
17215 * lib/xstrndup.c: New.
17216 * src/scan-skel.l: Use it.
17217 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
17218 * src/parse-skel.y: Use %directives instead of #defines.
17219
17220 2001-12-30 Akim Demaille <akim@epita.fr>
17221
17222 * src/skeleton.h: New.
17223 * src/output.c (output_parser, output_master_parser): Remove, dead
17224 code.
17225 * src/output.h (get_lines_number, actions_output, guards_output)
17226 (token_definitions_output): Prototype them.
17227 * src/parse-skel.y: Add the license notice.
17228 Include output.h and skeleton.h.
17229 (process_skeleton): Returns void, and takes a single parameter.
17230 * src/scan-skel.l: Add the license notice.
17231 Include skeleton.h.
17232 Don't use %option yylineno: it seems that then Flex imagines
17233 REJECT has been used, and therefore it won't reallocate its
17234 buffers (which makes no other sense to me than a bug). It results
17235 in warnings for `unused: yy_flex_realloc'.
17236
17237 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
17238
17239 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17240 (MUSCLE_INSERT_PREFIX): ...to there.
17241 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17242 (MUSCLE_INSERT_PREFIX): Move from here...
17243
17244 * src/bison.hairy: Add a section directive. Put braces around muscle
17245 names. This parser skeleton is still broken, but Bison should not
17246 choke on a bad muscle 'syntax'.
17247 * src/bison.simple: Add a section directive. Put braces around muscle
17248 names.
17249
17250 * src/files.h (strsuffix, stringappend): Add declarations.
17251 (tab_extension): Add declaration.
17252 (short_base_name): Add declaration.
17253
17254 * src/files.c (strsuffix, stringappend): No longer static. These
17255 functions are used in the skeleton parser.
17256 (tab_extension): New.
17257 (compute_base_names): Use the computations done in this function
17258 to guess if the generated parsers should have '.tab' in their
17259 names.
17260 (short_base_name): No longer static.
17261
17262 * src/output.c (output_skeleton): New.
17263 (output): Disable call to output_master_parser, and give a try to
17264 a new skeleton handling system.
17265 (guards_output, actions_output): No longer static.
17266 (token_definitions_output, get_lines_number): No longer static.
17267
17268 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
17269
17270 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
17271 parse-skel.y.
17272
17273 * src/parse-skel.y: New file.
17274 * src/scan-skel.l: New file.
17275
17276 2001-12-29 Akim Demaille <akim@epita.fr>
17277
17278 %name-prefix is broken.
17279
17280 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
17281 Adjust all dependencies.
17282 * tests/headers.at (export YYLTYPE): Strengthen this test: use
17283 %name-prefix.
17284
17285 Renaming yylval but not yylloc is not consistent. Now we do.
17286
17287 * src/bison.simple: Prefix yylloc if used.
17288 * doc/bison.texinfo (Decl Summary): Document that.
17289
17290 2001-12-29 Akim Demaille <akim@epita.fr>
17291
17292 * doc/bison.texinfo: Promote `%long-directive' over
17293 `%long_directive'.
17294 Remove all references to fixed-output-files, yacc is enough.
17295
17296 2001-12-29 Akim Demaille <akim@epita.fr>
17297
17298 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
17299 user prologue. These are defaults.
17300 * tests/actions.at (Mid-rule actions): Make sure the user can
17301 define YYDEBUG and YYERROR_VERBOSE.
17302
17303 2001-12-29 Akim Demaille <akim@epita.fr>
17304
17305 * src/output.c (header_output): Don't forget to export YYLTYPE and
17306 yylloc.
17307 * tests/headers.at (export YYLTYPE): New, make sure it does.
17308 * tests/regression.at (%union and --defines, Invalid CPP headers):
17309 Move to...
17310 * tests/headers.at: here.
17311
17312 2001-12-29 Akim Demaille <akim@epita.fr>
17313
17314 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17315
17316 2001-12-29 Akim Demaille <akim@epita.fr>
17317
17318 * tests/actions.at (Mid-rule actions): Output on a single line
17319 instead of several.
17320
17321 2001-12-29 Akim Demaille <akim@epita.fr>
17322
17323 * doc/bison.texinfo: Formatting changes.
17324
17325 2001-12-29 Akim Demaille <akim@epita.fr>
17326
17327 Don't store the token defs in a muscle, just be ready to output it
17328 on command. Now possible via `symbols'. Fixes a memory leak.
17329
17330 * src/output.c (token_definitions_output): New.
17331 (output_parser, header_output): Use it.
17332 * src/reader.c (symbols_save): Remove.
17333
17334 2001-12-29 Akim Demaille <akim@epita.fr>
17335
17336 * src/bison.simple: Do not provide a default for YYSTYPE and
17337 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17338 default.
17339
17340 2001-12-29 Akim Demaille <akim@epita.fr>
17341
17342 Mid-rule actions are simply... ignored!
17343
17344 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17345 the empty-rule associated to the dummy symbol, not to the host
17346 rule.
17347 * tests/actions.at (Mid-rule actions): New.
17348
17349 2001-12-29 Akim Demaille <akim@epita.fr>
17350
17351 Memory leak.
17352
17353 * src/reader.c (reader): Free grammar.
17354
17355 2001-12-29 Akim Demaille <akim@epita.fr>
17356
17357 Memory leak.
17358
17359 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17360 since it allocates it for each state, although only one is needed.
17361 (allocate_storage): Do it here.
17362
17363 2001-12-29 Akim Demaille <akim@epita.fr>
17364
17365 * src/options.h, src/options.c (create_long_option_table): Rename
17366 as...
17367 (long_option_table_new): this, with a clearer prototype.
17368 (percent_table): Remove, unused,
17369 * src/getargs.c (getargs): Adjust.
17370
17371 2001-12-29 Akim Demaille <akim@epita.fr>
17372
17373 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17374 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17375 as states.
17376
17377 2001-12-29 Akim Demaille <akim@epita.fr>
17378
17379 * src/lalr.c (build_relations): Rename `states' as `states1'.
17380 Sorry, I don't understand exactly what it is, no better name...
17381
17382 2001-12-29 Akim Demaille <akim@epita.fr>
17383
17384 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17385 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17386 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17387 as rules.
17388
17389 2001-12-29 Akim Demaille <akim@epita.fr>
17390
17391 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17392 ago.
17393
17394 2001-12-29 Akim Demaille <akim@epita.fr>
17395
17396 * src/reader.c, src/reader.h (user_toknums): Remove.
17397 Adjust all users to use symbols[i]->user_token_number.
17398
17399 2001-12-29 Akim Demaille <akim@epita.fr>
17400
17401 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17402 Adjust all users to use symbols[i]->prec or ->assoc.
17403
17404 2001-12-29 Akim Demaille <akim@epita.fr>
17405
17406 * src/reader.c, src/reader.h (tags): Remove.
17407 Adjust all users to use symbols[i]->tag.
17408
17409 2001-12-29 Akim Demaille <akim@epita.fr>
17410
17411 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17412 and rule_table.
17413 * src/reader.c (packsymbols): Fill this table.
17414 Drop sprec.
17415 * src/conflicts.c (resolve_sr_conflict): Adjust.
17416 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17417 single table.
17418 Use symbols[i]->tag instead of tags[i].
17419
17420 2001-12-29 Akim Demaille <akim@epita.fr>
17421
17422 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17423 In addition, put a comment in there, to replace...
17424 * tests/regression.at (%union and C comments): Remove.
17425
17426 2001-12-29 Akim Demaille <akim@epita.fr>
17427
17428 * tests/regression.at (Web2c Actions): Blindly move the actual
17429 output as expected output. The contents *seem* right to me, but I
17430 can't pretend reading perfectly parser tables... Nonetheless, all
17431 the other tests pass correctly, the table look OK, even though the
17432 presence of `$axiom' is to be noted: AFAICS it is useless (but
17433 harmless).
17434
17435 2001-12-29 Akim Demaille <akim@epita.fr>
17436
17437 * src/reader.c (readgram): Don't add the rule 0 if there were no
17438 rules read. In other words, add it _after_ having performed
17439 grammar sanity checks.
17440 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17441
17442 2001-12-29 Akim Demaille <akim@epita.fr>
17443
17444 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17445 visible, and some states have now a different number.
17446
17447 2001-12-29 Akim Demaille <akim@epita.fr>
17448
17449 * src/reader.c (readgram): Bind the initial rule's lineno to that
17450 of the first rule.
17451 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17452 (Solved SR Conflicts): Adjust rule 0's line number.
17453
17454 2001-12-29 Akim Demaille <akim@epita.fr>
17455
17456 Fix the `GAWK Grammar' failure.
17457
17458 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17459 the reductions of the first state which was mistakenly confused
17460 with the final state because precisely final_state was initialized
17461 to 0.
17462 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17463 now noticed by Bison.
17464 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17465 have a reduction on $default.
17466
17467 2001-12-29 Akim Demaille <akim@epita.fr>
17468
17469 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17470 rule line numbers.
17471 * src/closure.c (print_closure): Likewise.
17472 * src/derives.c (print_derives): Likewise.
17473 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17474 now.
17475
17476 2001-12-29 Akim Demaille <akim@epita.fr>
17477
17478 * src/lalr.c (lookaheads_print): New.
17479 (lalr): Call it when --trace-flag.
17480 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17481 are dumped.
17482
17483 2001-12-29 Akim Demaille <akim@epita.fr>
17484
17485 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17486 when walking through ritem, even via rule->rhs.
17487 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17488 (useful_production, useless_nonterminals): Likewise.
17489 (reduce_grammar_tables): Likewise, plus update nritems.
17490 * src/nullable.c (set_nullable): Likewise.
17491 * src/lalr.c (build_relations): Likewise.
17492 * tests/sets.at (Nullable): Adjust.
17493 Fortunately, now, the $axiom is no longer nullable.
17494
17495 2001-12-29 Akim Demaille <akim@epita.fr>
17496
17497 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17498 the 0-sentinel.
17499 * src/gram.c (ritem_longest_rhs): Likewise.
17500 * src/reduce.c (nonterminals_reduce): Likewise.
17501 * src/print_graph.c (print_graph): Likewise.
17502 * src/output.c (output_rule_data): Likewise.
17503 * src/nullable.c (set_nullable): Likewise.
17504
17505 2001-12-29 Akim Demaille <akim@epita.fr>
17506
17507 * src/output.c: Comment changes.
17508
17509 2001-12-27 Paul Eggert <eggert@twinsun.com>
17510
17511 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17512 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17513 Sparc, as they were causing more porting problems than the
17514 (minor) performance improvement was worth.
17515
17516 Also, catch up with 1.31's YYSTD.
17517
17518 2001-12-27 Akim Demaille <akim@epita.fr>
17519
17520 * src/output.c (output_gram): Rely on nritems, not the
17521 0-sentinel. See below.
17522 Use -1 as separator, not 0.
17523 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17524 Rely on -1 as separator in yyrhs, instead of 0.
17525 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17526 twice `Now at end of input', therefore there are two lines less to
17527 expect.
17528
17529 2001-12-27 Akim Demaille <akim@epita.fr>
17530
17531 * tests/regression.at (Unresolved SR Conflicts):
17532 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17533 below.
17534
17535 2001-12-27 Akim Demaille <akim@epita.fr>
17536
17537 * src/LR0.c (new_state): Recognize the final state by the fact it
17538 is reached by eoftoken.
17539 (insert_start_shifting_state, insert_eof_shifting_state)
17540 (insert_accepting_state, augment_automaton): Remove, since now
17541 these states are automatically computed from the initial state.
17542 (generate_states): Adjust.
17543 * src/print.c: When reporting a rule number to the user, substract
17544 1, so that the axiom rule is rule 0, and the first user rule is 1.
17545 * src/reduce.c: Likewise.
17546 * src/print_graph.c (print_core): For the time being, just as for
17547 the report, depend upon --trace-flags to dump the full set of
17548 items.
17549 * src/reader.c (readgram): Once the grammar read, insert the rule
17550 0: `$axiom: START-SYMBOL $'.
17551 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17552 number of the states has changed (the final state is no longer
17553 necessarily the last), catch up.
17554
17555 2001-12-27 Akim Demaille <akim@epita.fr>
17556
17557 Try to make the use of the eoftoken valid. Given that its value
17558 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17559 is used instead of > 0 where appropriate, (ii), depend upon nritems
17560 instead of the 0-sentinel.
17561
17562 * src/gram.h, src/gram.c (nritems): New.
17563 Expected to be duplication of nitems, but for the time being...
17564 * src/reader.c (packgram): Assert nritems and nitems are equal.
17565 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17566 * src/closure.c (print_closure, print_fderives): Likewise.
17567 * src/gram.c (ritem_print): Likewise.
17568 * src/print.c (print_core, print_grammar): Likewise.
17569 * src/print_graph.c: Likewise.
17570
17571 2001-12-27 Akim Demaille <akim@epita.fr>
17572
17573 * src/main.c (main): If there are complains after grammar
17574 reductions, then output the report anyway if requested, then die.
17575 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17576 * src/reader.c (eoftoken): New.
17577 (parse_token_decl): If the token being defined has value `0', it
17578 is the eoftoken.
17579 (packsymbols): No longer hack `tags' to insert `$' by hand.
17580 Be sure to preserve the value of the eoftoken.
17581 (reader): Make sure eoftoken is defined.
17582 Initialize nsyms to 0: now eoftoken is created just like the others.
17583 * src/print.c (print_grammar): Don't special case the eof token.
17584 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17585 lie anyway, albeit pleasant.
17586 * tests/calc.at: Exercise error messages with eoftoken.
17587 Change the grammar so that empty input is invalid.
17588 Adjust expectations.
17589 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17590
17591 2001-12-27 Akim Demaille <akim@epita.fr>
17592
17593 * configure.in: Check the protos of strchr ans strspn.
17594 Replace strchr if needed.
17595 * src/system.h: Provide the protos of strchr, strspn and memchr if
17596 missing.
17597 * lib/strchr.c: New.
17598 * src/reader.c (symbols_save): Use strchr.
17599
17600 2001-12-27 Akim Demaille <akim@epita.fr>
17601
17602 * src/print.c, src/print_graph.c (escape): New.
17603 Use it to quote the TAGS outputs.
17604 * src/print_graph.c (print_state): Now errors are in red, and
17605 reductions in green.
17606 Prefer high to wide: output the state number on a line of its own.
17607
17608 2001-12-27 Akim Demaille <akim@epita.fr>
17609
17610 * src/state.h, src/state.c (reductions_new): New.
17611 * src/LR0.c (set_state_table): Let all the states have a
17612 `reductions', even if reduced to 0.
17613 (save_reductions): Adjust.
17614 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17615 * src/print.c (print_reductions, print_actions): Adjust.
17616 * src/output.c (action_row): Adjust.
17617
17618 2001-12-27 Akim Demaille <akim@epita.fr>
17619
17620 * src/state.h, src/state.c (errs_new, errs_dup): New.
17621 * src/LR0.c (set_state_table): Let all the states have an errs,
17622 even if reduced to 0.
17623 * src/print.c (print_errs, print_reductions): Adjust.
17624 * src/output.c (output_actions, action_row): Adjust.
17625 * src/conflicts.c (resolve_sr_conflict): Adjust.
17626
17627 2001-12-27 Akim Demaille <akim@epita.fr>
17628
17629 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17630
17631 2001-12-27 Akim Demaille <akim@epita.fr>
17632
17633 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17634 * src/print.c: here.
17635 (lookaheadset, shiftset): New, used as additional storage by
17636 print_reductions.
17637 (print_results): Adjust.
17638 (print_shifts, print_gotos, print_errs): New, extracted from...
17639 (print_actions): here.
17640 * src/print_graph.c (print_actions): Remove dead code.
17641
17642 2001-12-27 Akim Demaille <akim@epita.fr>
17643
17644 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17645 `$n' and `@n'.
17646
17647 2001-12-27 Akim Demaille <akim@epita.fr>
17648
17649 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17650 (build_relations): Adjust.
17651
17652 2001-12-27 Akim Demaille <akim@epita.fr>
17653
17654 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17655 duplication.
17656
17657 2001-12-27 Akim Demaille <akim@epita.fr>
17658
17659 * src/reader.c (packgram): Catch nitems overflows.
17660
17661 2001-12-27 Akim Demaille <akim@epita.fr>
17662
17663 * src/files.c, src/files.h (guard_obstack): Remove.
17664 * src/output.c (output): Adjust.
17665 * src/reader.c (parse_braces): New, factoring...
17666 (copy_action, copy_guard): these two which are renamed as...
17667 (parse_action, parse_guard): these.
17668 As a voluntary consequence, using braces around guards is now
17669 mandatory.
17670
17671 2001-12-27 Akim Demaille <akim@epita.fr>
17672
17673 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
17674 * src/reader.c (symbol_list): `guard' and `guard_line' are new
17675 members.
17676 (symbol_list_new): Adjust.
17677 (copy_action): action_line is the first line, not the last.
17678 (copy_guard): Just as for actions, store the `action' only, not
17679 the switch/case/break flesh.
17680 Don't parse the user action that might follow the guard, let...
17681 (readgram): do it, i.e., now, there can be an action after a
17682 guard.
17683 In other words the guard is just explicitly optional.
17684 (packgram): Adjust.
17685 * src/output.c (guards_output): New.
17686 (output_parser): Call it when needed.
17687 (output): Also free the guard and attrs obstacks.
17688 * src/files.c, src/files.h (obstack_save): Remove.
17689 (output_files): Remove.
17690 As a result, if one needs the former `.act' file, using an
17691 appropriate skeleton which requires actions and guards is now
17692 required.
17693 * src/main.c (main): Adjust.
17694 * tests/semantic.at: New.
17695 * tests/regression.at: Use `input.y' as input file name.
17696 Avoid 8+3 problems by requiring input.c when the test needs the
17697 parser.
17698
17699 2001-12-27 Akim Demaille <akim@epita.fr>
17700
17701 * src/reader.c (symbol_list_new): Be sure to initialize all the
17702 fields.
17703
17704 2001-12-27 Akim Demaille <akim@epita.fr>
17705
17706 All the hacks using a final pseudo state are now useless.
17707
17708 * src/LR0.c (set_state_table): state_table holds exactly nstates.
17709 * src/lalr.c (nLA): New.
17710 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
17711 instead of lookaheadsp from the pseudo state (nstate + 1).
17712
17713 2001-12-27 Akim Demaille <akim@epita.fr>
17714
17715 * src/output.c (action_row, token_actions): Use a state_t instead
17716 of a integer, and nlookaheads instead of the following state's
17717 lookaheadsp.
17718
17719 2001-12-27 Akim Demaille <akim@epita.fr>
17720
17721 * src/conflicts.c (log_resolution, flush_shift)
17722 (resolve_sr_conflict, set_conflicts, solve_conflicts)
17723 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
17724 (conflicts_print, print_reductions): Use a state_t instead of an
17725 integer when referring to a state.
17726 As much as possible, depend upon nlookaheads, instead of the
17727 `lookaheadsp' member of the following state (since lookaheads of
17728 successive states are successive, the difference between state n + 1
17729 and n served as the number of lookaheads for state n).
17730 * src/lalr.c (add_lookback_edge): Likewise.
17731 * src/print.c (print_core, print_actions, print_state)
17732 (print_results): Likewise.
17733 * src/print_graph.c (print_core, print_actions, print_state)
17734 (print_graph): Likewise.
17735 * src/conflicts.h: Adjust.
17736
17737 2001-12-27 Akim Demaille <akim@epita.fr>
17738
17739 * src/bison.hairy: Formatting/comment changes.
17740 ANSIfy.
17741 Remove `register' indications.
17742 Add plenty of `static'.
17743
17744 2001-12-27 Akim Demaille <akim@epita.fr>
17745
17746 * src/output.c (prepare): Drop the muscle `ntbase' which
17747 duplicates ntokens.
17748 * src/bison.simple: Formatting/comment changes.
17749 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
17750 is an undocumented synonym.
17751
17752 2001-12-22 Akim Demaille <akim@epita.fr>
17753
17754 * src/output.c (output_table_data): Change the prototype to use
17755 `int' for array ranges: some invocations do pass an int, not a
17756 short.
17757 Reported by Wayne Green.
17758
17759 2001-12-22 Akim Demaille <akim@epita.fr>
17760
17761 Some actions of web2c.y are improperly triggered.
17762 Reported by Mike Castle.
17763
17764 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
17765 * tests/regression.at (Web2c): Rename as...
17766 (Web2c Report): this.
17767 (Web2c Actions): New.
17768
17769 2001-12-22 Akim Demaille <akim@epita.fr>
17770
17771 Reductions in web2c.y are improperly reported.
17772 Reported by Mike Castle.
17773
17774 * src/conflicts.c (print_reductions): Fix.
17775 * tests/regression.at (Web2c): New.
17776
17777 2001-12-18 Akim Demaille <akim@epita.fr>
17778
17779 Some host fail on `assert (!"foo")', which expands to
17780 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
17781 Reported by Nelson Beebee.
17782
17783 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
17784 `#define it_succeeded 0' and `assert (it_succeeded)'.
17785
17786 2001-12-17 Marc Autret <autret_m@epita.fr>
17787
17788 * src/bison.simple: Don't hard code the skeleton line and filename.
17789 * src/output.c (output_parser): Rename 'line' as 'output_line'.
17790 New line counter 'skeleton_line' (skeleton-line muscle).
17791
17792 2001-12-17 Paul Eggert <eggert@twinsun.com>
17793
17794 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
17795 YYDEBUG must be defined to a nonzero value.
17796
17797 * src/bison.simple (yytname): Do not assume that the user defines
17798 YYDEBUG to a properly parenthesized expression.
17799
17800 2001-12-17 Akim Demaille <akim@epita.fr>
17801
17802 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
17803 nlookaheads is a new member.
17804 Adjust all users.
17805 * src/lalr.h (nlookaheads): Remove this orphan declaration.
17806 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
17807 state.
17808
17809 2001-12-17 Akim Demaille <akim@epita.fr>
17810
17811 * src/files.h, src/files.c (open_files, close_files): Remove.
17812 * src/main.c (main): Don't open/close files, nor invoke lex_free,
17813 let...
17814 * src/reader.c (reader): Do it.
17815
17816 2001-12-17 Akim Demaille <akim@epita.fr>
17817
17818 * src/conflicts.c (print_reductions): Formatting changes.
17819
17820 2001-12-17 Akim Demaille <akim@epita.fr>
17821
17822 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
17823 (flush_reduce): New.
17824 (resolve_sr_conflict): Adjust.
17825
17826 2001-12-17 Akim Demaille <akim@epita.fr>
17827
17828 * src/output.c (output_obstack): Be static and rename as...
17829 (format_obstack): this, to avoid any confusion with files.c's
17830 output_obstack.
17831 * src/reader.h (muscle_obstack): Move to...
17832 * src/output.h: here, since it's defined in output.c.
17833
17834 2001-12-17 Akim Demaille <akim@epita.fr>
17835
17836 * src/output.c (action_row, save_column, default_goto)
17837 (sort_actions, matching_state, pack_vector): Better variable
17838 locality.
17839
17840 2001-12-17 Akim Demaille <akim@epita.fr>
17841
17842 * src/output.c: Various formatting changes.
17843
17844 2001-12-17 Akim Demaille <akim@epita.fr>
17845
17846 * src/files.c (output_files): Free the output_obstack.
17847 * src/main.c (main): Call print and print_graph conditionally.
17848 * src/print.c (print): Work unconditionally.
17849 * src/print_graph.c (print_graph): Work unconditionally.
17850 * src/conflicts.c (log_resolution): Output only if verbose_flag.
17851
17852 2001-12-16 Marc Autret <autret_m@epita.fr>
17853
17854 * src/output.c (actions_output): Fix. When we use %no-lines,
17855 there is one less line per action.
17856
17857 2001-12-16 Marc Autret <autret_m@epita.fr>
17858
17859 * src/bison.simple: Remove a useless #line directive.
17860 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
17861 * src/output.c (get_lines_number): New.
17862 (output_parser): Adjust, now takes care about the lines of a
17863 output muscles.
17864 Fix line numbering.
17865 (actions_output): Computes the number of lines taken by actions.
17866 (output_master_parser): Insert new skeleton which is the name of
17867 the output parser file name.
17868
17869 2001-12-15 Marc Autret <autret_m@epita.fr>
17870
17871 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
17872
17873 2001-12-15 Marc Autret <autret_m@epita.fr>
17874
17875 * src/output.c (output_gram): Keep track of the hairy one.
17876
17877 2001-12-15 Akim Demaille <akim@epita.fr>
17878
17879 Make `make distcheck' work.
17880
17881 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
17882 system.h which uses libgettext.h.
17883
17884 2001-12-15 Akim Demaille <akim@epita.fr>
17885
17886 * src/nullable.c (set_nullable): Useless rules must be skipped,
17887 otherwise, since we range over their symbols, we might look at a
17888 nonterminal which no longer ``exists'', i.e., it is not counted in
17889 `nvars', hence we overflow our arrays.
17890
17891 2001-12-15 Akim Demaille <akim@epita.fr>
17892
17893 The header can also be produced directly, without any obstack!
17894 Yahoo!
17895
17896 * src/files.c, src/files.h (defines_obstack): Remove.
17897 (compute_header_macro): Global.
17898 (defines_obstack_save): Remove.
17899 * src/reader.c (parse_union_decl): No longer output to
17900 defines_obstack: its content can be found in the `stype' muscle
17901 anyway.
17902 (output_token_translations): Merge into...
17903 (symbols_output): this.
17904 Rename as...
17905 (symbols_save): this.
17906 (reader): Adjust.
17907 * src/output.c (header_output): New.
17908 (output): Call it.
17909
17910 2001-12-15 Akim Demaille <akim@epita.fr>
17911
17912 * src/reader.c (parse_union_decl): Instead of handling two obstack
17913 simultaneously, use one to define the `stype' muscle, and use the
17914 value of the latter to fill defines_obstack.
17915 (copy_comment): Remove.
17916 (copy_comment2): Work for a single obstack.
17917 Rename as...
17918 (copy_comment): this.
17919
17920 2001-12-15 Akim Demaille <akim@epita.fr>
17921
17922 * src/lex.c, src/lex.h (xgetc): No longer static.
17923 * src/reader.c (parse_union_decl): Revamp.
17924
17925 2001-12-15 Akim Demaille <akim@epita.fr>
17926
17927 Still making progress in separating Bison into (i) input, (ii)
17928 process, (iii) output: now we can directly output the parser file
17929 without using table_obstack at all.
17930
17931 * src/files.c, src/files.h (table_obstack): Bye bye.
17932 (parser_file_name): New.
17933 * src/files.c (compute_output_file_names): Compute it.
17934 * src/output.c (actions_output, output_parser)
17935 (output_master_parser): To a file instead of an obstack.
17936
17937 2001-12-15 Akim Demaille <akim@epita.fr>
17938
17939 Attach actions to rules, instead of pre-outputting them to
17940 actions_obstack.
17941
17942 * src/gram.h (rule_t): action and action_line are new members.
17943 * src/reader.c (symbol_list): Likewise.
17944 (copy_action): Save the actions within the rule.
17945 (packgram): Save them in rule_table.
17946 * src/output.c (actions_output): New.
17947 (output_parser): Use it on `%%actions'.
17948 (output_rule_data): Don't free rule_table.
17949 (output): Do it.
17950 (prepare): Don't save the `action' muscle.
17951 * src/bison.simple: s/%%action/%%actions/.
17952
17953 2001-12-15 Akim Demaille <akim@epita.fr>
17954
17955 * src/reader.c (copy_action): When --yacc, don't append a `;'
17956 to the user action: let it fail if lacking.
17957 Suggested by Arnold Robbins and Tom Tromey.
17958
17959 2001-12-14 Akim Demaille <akim@epita.fr>
17960
17961 * src/lex.c (literalchar): Simply return the char you decoded, non
17962 longer mess around with obstacks and int pointers.
17963 Adjust all callers.
17964
17965 2001-12-14 Akim Demaille <akim@epita.fr>
17966
17967 * src/lex.c (literalchar): Don't escape the special characters,
17968 just decode them, and keep them as char (before, eol was output as
17969 the 2 char string `\n' etc.).
17970 * src/output.c (output_rule_data): Use quotearg to output the
17971 token strings.
17972
17973 2001-12-13 Paul Eggert <eggert@twinsun.com>
17974
17975 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
17976 Do not infringe on the global user namespace when using C++.
17977 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
17978 All uses of `fprintf' and `stderr' changed.
17979
17980 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
17981
17982 2001-12-13 Akim Demaille <akim@epita.fr>
17983
17984 The computation of nullable is broken: it doesn't handle empty
17985 RHS's properly.
17986
17987 * tests/torture.at (GNU AWK Grammar): New.
17988 * tests/sets.at (Nullable): New.
17989 * src/nullable.c (set_nullable): Instead of blindly looping over
17990 `ritems', loop over the rules, and then over their rhs's.
17991
17992 Work around Autotest bugs.
17993
17994 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
17995 frame, because Autotest understand lines starting with a `+' as
17996 traces from the shell. Then, they are not processed properly.
17997 Admittedly an Autotest bug, but we don't have time to wait for
17998 Autotest to catch up.
17999 * tests/regression.at (Broken Closure): Adjust to the new table
18000 frames.
18001 Move to...
18002 * tests/sets.at: here.
18003
18004 2001-12-13 Akim Demaille <akim@epita.fr>
18005
18006 * src/closure.c (closure): Use nrules instead of playing tricks
18007 with BITS_PER_WORD.
18008
18009 2001-12-13 Akim Demaille <akim@epita.fr>
18010
18011 * src/print.c (print_actions): Output the handling of `$' as the
18012 traces do: shifting the token EOF. Before EOF was treated as a
18013 nonterminal.
18014 * tests/regression.at: Adjust some tests.
18015 * src/print_graph.c (print_core): Complete the set of items via
18016 closure. The next-to-final and final states are still unsatisfying,
18017 but that's to be addressed elsewhere.
18018 No longer output the rule numbers, but do output the state number.
18019 A single loop for the shifts + gotos is enough, but picked a
18020 distinct color for each.
18021 (print_graph): Initialize and finalize closure.
18022
18023 2001-12-13 Akim Demaille <akim@epita.fr>
18024
18025 * src/reader.c (readgram): Remove dead code, an strip useless
18026 braces.
18027 (get_type): Remove, unused.
18028
18029 2001-12-12 Akim Demaille <akim@epita.fr>
18030
18031 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
18032 on that of lib/error.c.
18033
18034 2001-12-12 Akim Demaille <akim@epita.fr>
18035
18036 Some hosts don't like `/' in includes.
18037
18038 * src/system.h: Include libgettext.h without qualifying the path.
18039 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
18040 $(top_srcdir).
18041
18042 2001-12-11 Marc Autret <autret_m@epita.fr>
18043
18044 * src/output.c (output_parser): Remove useless muscle.
18045
18046 2001-12-11 Marc Autret <autret_m@epita.fr>
18047
18048 * src/bison.simple: Remove #line just before %%epilogue. It
18049 is now handled in ...
18050 * src/reader.c (read_additionnal_code): Add the output of a
18051 #line for the epilogue.
18052
18053 2001-12-10 Marc Autret <autret_m@epita.fr>
18054
18055 * src/reader.c (copy_definition): Re-use CPP-outed code which
18056 replace precedent remove.
18057 * src/bison.simple: Remove #line before %%prologue because
18058 %%input-line is wrong at this time.
18059
18060 2001-12-10 Marc Autret <autret_m@epita.fr>
18061
18062 * src/reader.c (symbols_output): Clean up.
18063 * src/output.c (output_gram, output): Clean up.
18064
18065 2001-12-10 Akim Demaille <akim@epita.fr>
18066
18067 * src/lalr.c (initialize_lookaheads): New. Extracted from...
18068 * src/LR0.c (set_state_table): here.
18069 * src/lalr.c (lalr): Call it.
18070
18071 2001-12-10 Akim Demaille <akim@epita.fr>
18072
18073 * src/state.h (shifts): Remove the `number' member: shifts are
18074 attached to state, hence no longer need to be labelled with a
18075 state number.
18076
18077 2001-12-10 Akim Demaille <akim@epita.fr>
18078
18079 Now that states have a complete set of members, the linked list of
18080 shifts is useless: just fill directly the state's shifts member.
18081
18082 * src/state.h (shifts): Remove the `next' member.
18083 * src/LR0.c (first_state, last_state): Remove.
18084 Adjust the callers.
18085 (augment_automaton): Don't look for the shifts that must be added
18086 a shift on EOF: it is those of the state we looked for! But now,
18087 since shifts are attached, it is no longer needed to looking
18088 merely by its id: its number.
18089
18090 2001-12-10 Akim Demaille <akim@epita.fr>
18091
18092 * src/LR0.c (augment_automaton): Better variable locality.
18093 Remove an impossible branch: if there is a state corresponding to
18094 the start symbol being shifted, then there is shift for the start
18095 symbol from the initial state.
18096
18097 2001-12-10 Akim Demaille <akim@epita.fr>
18098
18099 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
18100 only when appropriate: when insert_start_shifting_state' is not
18101 invoked.
18102 * tests/regression.at (Rule Line Numbers): Adjust.
18103
18104 2001-12-10 Akim Demaille <akim@epita.fr>
18105
18106 * src/LR0.c (augment_automaton): Now that all states have shifts,
18107 merge the two cases addition shifts to the initial state.
18108
18109 2001-12-10 Akim Demaille <akim@epita.fr>
18110
18111 * src/lalr.c (set_state_table): Move to...
18112 * src/LR0.c: here.
18113 * src/lalr.c (lalr): Don't call it...
18114 * src/LR0.c (generate_states): do it.
18115 * src/LR0.h (first_state): Remove, only the table is used.
18116
18117 2001-12-10 Akim Demaille <akim@epita.fr>
18118
18119 * src/LR0.h (first_shift, first_reduction): Remove.
18120 * src/lalr.c: Don't use first_shift: find shifts through the
18121 states.
18122
18123 2001-12-10 Akim Demaille <akim@epita.fr>
18124
18125 * src/LR0.c: Attach shifts to states as soon as they are
18126 computed.
18127 * src/lalr.c (set_state_table): Instead of assigning shifts to
18128 state, just assert that the mapping was properly done.
18129
18130 2001-12-10 Akim Demaille <akim@epita.fr>
18131
18132 * src/LR0.c (insert_start_shift): Rename as...
18133 (insert_start_shifting_state): this.
18134 (insert_eof_shifting_state, insert_accepting_state): New.
18135 (augment_automaton): Adjust.
18136 Better locality of the variables.
18137 When looking if the start_symbol is shifted from the initial
18138 state, using `while (... symbol != start_symbol ...)' sounds
18139 better than `while (... symbol < start_symbol ...)': If fail
18140 to see how the order between symbols could be relevant!
18141
18142 2001-12-10 Akim Demaille <akim@epita.fr>
18143
18144 * src/getargs.h: Don't declare `spec_name_prefix' and
18145 `spec_file_prefix', declared by src/files.h.
18146 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
18147 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
18148 * src/output.c (prepare): Adjust.
18149 * src/reader.c (symbols_output): Likewise.
18150 * src/vmsgetargs.c: Vaguely adjust, but who cares?
18151
18152 2001-12-10 Akim Demaille <akim@epita.fr>
18153
18154 * src/muscle_tab.c (muscle_init): NULL is a better default than
18155 `"0"'.
18156
18157 2001-12-10 Akim Demaille <akim@epita.fr>
18158
18159 * src/reader.c (reader): Calling symbols_output once is enough.
18160
18161 2001-12-10 Akim Demaille <akim@epita.fr>
18162
18163 Now that states have a complete set of members, the linked list of
18164 reductions is useless: just fill directly the state's reductions
18165 member.
18166
18167 * src/state.h (struct reductions): Remove member `number' and
18168 `next'.
18169 * src/LR0.c (first_reduction, last_reduction): Remove.
18170 (save_reductions): Don't link the new reductions, store them in
18171 this_state.
18172 * src/lalr.c (set_state_table): No need to attach reductions to
18173 states, it's already done.
18174 * src/output.c (output_actions): No longer free the shifts, then
18175 the reductions, then the states: free all the states and their
18176 members.
18177
18178 2001-12-10 Akim Demaille <akim@epita.fr>
18179
18180 * src/options.c (OPTN, DRTV, BOTH): New.
18181 (option_table): Use them.
18182
18183 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
18184 the job of system.h.
18185 * src/options.c: Don't include stdio.h and xalloc.h for the same
18186 reasons.
18187
18188 2001-12-10 Akim Demaille <akim@epita.fr>
18189
18190 * src/output.c (output, prepare): Make sure the values of the
18191 muscles `action' and `prologue' are 0-terminated.
18192
18193 2001-12-10 Akim Demaille <akim@epita.fr>
18194
18195 Clean up GCC warnings.
18196
18197 * src/reader.c (copy_action): `buf' is not used.
18198 (parse_skel_decl): Be static.
18199 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
18200 * src/options.h (create_long_option_table): Have a real prototype.
18201 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
18202 (hash_delete_at): Return const void *.
18203 Adjust casts to preserve the const.
18204
18205 2001-12-10 Akim Demaille <akim@epita.fr>
18206
18207 * configure.in: Require 2.52g.
18208 M4 is not needed, but AUTOM4TE is.
18209 * m4/m4.m4: Remove.
18210 * tests/Makefile.am: Adjust.
18211
18212 2001-12-10 Akim Demaille <akim@epita.fr>
18213
18214 One structure for states is enough, even though theoretically
18215 there are LR(0) states and LALR(1) states.
18216
18217 * src/lalr.h (state_t): Remove.
18218 (state_table): Be state_t **, not state_t *.
18219 * src/state.h (core, CORE_ALLOC): Rename as...
18220 (state_t, STATE_ALLOC): this.
18221 Add the LALR(1) members: shifts, reductions, errs.
18222 * src/LR0.c (state_table): Rename as...
18223 (state_hash): this, to avoid name clashes with the global
18224 `state_table'.
18225 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
18226 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
18227
18228 2001-12-10 Akim Demaille <akim@epita.fr>
18229
18230 Bison dumps core on bash.y.
18231 Reported by Pascal Bart.
18232
18233 * src/warshall.c (bitmatrix_print): New.
18234 (TC): Use it.
18235 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
18236 j must be the outer loop.
18237 * tests/regression.at (Broken Closure): New.
18238
18239 2001-12-05 Akim Demaille <akim@epita.fr>
18240
18241 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
18242 its argument.
18243 Reported by Peter Hamorsky.
18244
18245 2001-12-05 Akim Demaille <akim@epita.fr>
18246
18247 * src/conflicts.c (err_table): Remove.
18248 (resolve_sr_conflict): Adjust.
18249 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
18250 Rename as...
18251 (state_t.reductions, state_t.shifts): this.
18252
18253 2001-12-05 Akim Demaille <akim@epita.fr>
18254
18255 * src/reduce.c (reduce_grammar_tables): No longer disable the
18256 removal of useless rules via CPP but via `if (0)', so that the
18257 compiler still check the code is valid.
18258 For instance, it should have noticed `rline' no longer exists: use
18259 the `line' member of rule_t.
18260 * src/gram.c (dummy, rline): Remove, unused.
18261
18262 2001-12-05 Akim Demaille <akim@epita.fr>
18263
18264 * src/output.c (pack_vector): Use assert, not berror.
18265 * src/main.c (berror): Remove, unused.
18266
18267 2001-12-05 Akim Demaille <akim@epita.fr>
18268
18269 New experimental feature: if --verbose --trace output all the
18270 items of a state, not only its kernel.
18271
18272 * src/print.c (print_core): If `trace_flag', then invoke closure
18273 before outputting the items of the state (print_core is no longer
18274 a correct name them).
18275 (print_results): Invoke new_closure/free_closure if needed.
18276
18277 2001-12-05 Akim Demaille <akim@epita.fr>
18278
18279 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
18280 * src/closure.c, src/closure.h (itemsetsize): Rename as...
18281 (nitemset): for consistency with the rest of the project.
18282
18283 2001-12-05 Akim Demaille <akim@epita.fr>
18284
18285 * src/closure.c (print_closure): Improve.
18286 (closure): Use it for printing input and output.
18287
18288 2001-12-05 Akim Demaille <akim@epita.fr>
18289
18290 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
18291 indexed by nonterminals.
18292
18293 2001-12-05 Akim Demaille <akim@epita.fr>
18294
18295 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
18296 what it was!).
18297 * src/warshall.h: Remove accidental duplication of the content.
18298
18299 2001-12-05 Akim Demaille <akim@epita.fr>
18300
18301 * src/closure.c (set_fderives): De-obfuscate.
18302
18303 2001-12-05 Akim Demaille <akim@epita.fr>
18304
18305 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
18306
18307 2001-12-05 Akim Demaille <akim@epita.fr>
18308
18309 * src/closure.c (set_firsts): De-obfuscate.
18310
18311 2001-12-05 Akim Demaille <akim@epita.fr>
18312
18313 * src/output.c (action_row): De-obfuscate
18314 using the good o' techniques: arrays not pointers, variable
18315 locality, BITISSET, RESETBIT etc.
18316
18317 2001-12-05 Akim Demaille <akim@epita.fr>
18318
18319 Pessimize the code to simplify it: from now on, all the states
18320 have a valid SHIFTS, which NSHIFTS is possibly 0.
18321
18322 * src/LR0.c (shifts_new): Be global and move to..
18323 * src/state.c, src/state.h: here.
18324 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18325 * src/print_graph: Adjust.
18326
18327 2001-12-05 Akim Demaille <akim@epita.fr>
18328
18329 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18330 * src/conflicts.c: Use it.
18331 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18332 incorrectly ``simplified''.
18333
18334 2001-12-05 Akim Demaille <akim@epita.fr>
18335
18336 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18337 using the good o' techniques: arrays not pointers, variable
18338 locality, BITISSET, RESETBIT etc.
18339
18340 2001-12-05 Akim Demaille <akim@epita.fr>
18341
18342 * src/state.h (SHIFT_SYMBOL): New.
18343 * src/conflicts.c: Use it to deobfuscate.
18344
18345 2001-12-05 Akim Demaille <akim@epita.fr>
18346
18347 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18348 (print_reductions): De-obfuscate using the good o' techniques:
18349 arrays not pointers, variable locality, BITISSET.
18350
18351 2001-12-05 Akim Demaille <akim@epita.fr>
18352
18353 * src/conflicts.c (print_reductions): Arrays, not pointers.
18354 Use BITISSET.
18355
18356 2001-12-05 Akim Demaille <akim@epita.fr>
18357
18358 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18359
18360 2001-12-05 Akim Demaille <akim@epita.fr>
18361
18362 * src/conflicts.c (print_reductions): Improve variable locality.
18363
18364 2001-12-05 Akim Demaille <akim@epita.fr>
18365
18366 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18367
18368 2001-12-05 Akim Demaille <akim@epita.fr>
18369
18370 * src/conflicts.c (print_reductions): Improve variable locality.
18371
18372 2001-12-05 Akim Demaille <akim@epita.fr>
18373
18374 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18375 * src/lalr.c: Use them.
18376
18377 2001-12-05 Akim Demaille <akim@epita.fr>
18378
18379 * src/LR0.c (augment_automaton): Formatting changes.
18380 Better variable locality.
18381
18382 2001-12-05 Akim Demaille <akim@epita.fr>
18383
18384 * src/lalr.c (matrix_print): New.
18385 (transpose): Use it.
18386 Use arrays instead of pointers.
18387
18388 2001-12-05 Akim Demaille <akim@epita.fr>
18389
18390 * src/lalr.c (maxrhs): Move to...
18391 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18392 * src/lalr.c (build_relations): Adjust.
18393
18394 2001-12-05 Akim Demaille <akim@epita.fr>
18395
18396 * src/lalr.c (transpose): Free the memory allocated to the
18397 argument, as it is replaced by the results by the unique caller.
18398 (build_relations): Merely invoke transpose: it handles the memory
18399 deallocation.
18400 Improve variable locality.
18401 Avoid variables used as mere abbreviations.
18402 (compute_lookaheads): Use arrays instead of pointers.
18403
18404 2001-12-05 Akim Demaille <akim@epita.fr>
18405
18406 * src/lalr.c (initialize_F): Improve variable locality.
18407 Avoid variables used as mere abbreviations.
18408
18409 2001-12-05 Akim Demaille <akim@epita.fr>
18410
18411 * src/derives.c (print_derives): Display the ruleno.
18412 * src/lalr.c (initialize_F, transpose): Better variable locality
18413 to improve readability.
18414 Avoid variables used as mere abbreviations.
18415
18416 2001-12-05 Akim Demaille <akim@epita.fr>
18417
18418 * src/lalr.c (traverse): Use arrays instead of pointers.
18419
18420 2001-12-05 Akim Demaille <akim@epita.fr>
18421
18422 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18423 the handling of squeue.
18424 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18425
18426 2001-12-05 Akim Demaille <akim@epita.fr>
18427
18428 Because useless nonterminals are now kept alive (instead of being
18429 `destroyed'), we now sometimes examine them, and store information
18430 related to them. Hence we need to know their number, and adjust
18431 memory allocations.
18432
18433 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18434 static.
18435 * src/LR0.c (allocate_itemsets): The memory allocated to
18436 `symbol_count' was used for two different purpose: once to count
18437 the number of occurrences of each symbol, and later reassigned to
18438 `shift_symbol', containing the symbol that can be shifted from a
18439 given state.
18440 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18441 only, and...
18442 (new_itemsets): Allocate `shift_symbol' here.
18443 (allocate_itemsets): symbol_count includes useless nonterminals.
18444 Make room for them.
18445 (free_storage): Use `free', not `XFREE', for pointers that cannot
18446 be null.
18447
18448 2001-12-05 Akim Demaille <akim@epita.fr>
18449
18450 * src/nullable.c (set_nullable): Deobfuscate the handling of
18451 ritem.
18452 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18453
18454 2001-12-05 Akim Demaille <akim@epita.fr>
18455
18456 * src/gram.c, src/gram.h (ritem_print): New.
18457 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18458 (This useless function was defined only to work around VMS linkers
18459 that can't handle compilation units with variables only).
18460 * src/reduce.c (dump_grammar): Use it to trace the construction of
18461 ritem.
18462
18463 2001-12-04 Paul Eggert <eggert@twinsun.com>
18464
18465 * src/bison.simple (union yyalloc): Change member names
18466 to be the same as the stack names.
18467 (yyparse): yyptr is now union yyalloc *, not char *.
18468 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18469 and may generate better code on some machines.
18470 (yystpcpy): Use prototype if __STDC__ is defined, not just
18471 if __cplusplus is defined.
18472
18473 2001-11-30 Akim Demaille <akim@epita.fr>
18474
18475 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18476 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18477 Gettext doesn't compile cleanly, and dies with -Werror.
18478 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18479 Include WARNING_CFLAGS here.
18480 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18481 before being defined.
18482
18483 2001-11-27 Paul Eggert <eggert@twinsun.com>
18484
18485 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18486 First arg is int, not unsigned.
18487 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18488 (SIZE_MAX, UINT_MAX): New macros.
18489 (quotearg_n_options): Abort if N is negative.
18490 Avoid overflow check on hosts where size_t is 64 bits and int
18491 is 32 bits, as overflow is impossible there.
18492 Fix off-by-one typo that caused unnecessary reallocation.
18493
18494 2001-11-29 Paul Eggert <eggert@twinsun.com>
18495
18496 Name space cleanup in generated parser.
18497
18498 * doc/bison.texinfo (Bison Parser): Discuss system headers
18499 and their effect on the user name space.
18500
18501 * src/bison.simple:
18502 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18503 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18504 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18505
18506 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18507 on user names when possible.
18508
18509 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18510 Simplify test for whather <alloca.h> exists.
18511
18512 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18513
18514 (<stdio.h>): Include if YYDEBUG.
18515
18516 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18517 ! defined (yyoverflow) && ! defined (yymemcpy).
18518
18519 (yymemcpy, yyparse): Rename local variables as needed so that
18520 they all begin with 'yy'.
18521
18522 (yystrlen, yystpcpy): New functions.
18523
18524 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18525 All uses changed.
18526
18527 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18528 instead of relying on string.h functions. Use YYSTACK_ALLOC
18529 and YYSTACK_FREE instead of malloc and free.
18530
18531 2001-11-30 Akim Demaille <akim@epita.fr>
18532
18533 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18534 before their first uses.
18535 (YYBISON, YYPURE): Move to the top of the output.
18536
18537 2001-11-30 Akim Demaille <akim@epita.fr>
18538
18539 * tests/reduce.at (Useless Nonterminals): Fix.
18540
18541 2001-11-30 Akim Demaille <akim@epita.fr>
18542
18543 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18544 if body instead of `;' to pacify GCC's warnings.
18545
18546 2001-11-30 Akim Demaille <akim@epita.fr>
18547
18548 Instead of mapping the LHS of unused rules to -1, keep the LHS
18549 valid, but flag the rules as invalid.
18550
18551 * src/gram.h (rule_t): `useful' is a new member.
18552 * src/print.c (print_grammar): Adjust.
18553 * src/derives.c (set_derives): Likewise.
18554 * src/reader.c (packgram, reduce_output): Likewise.
18555 * src/reduce.c (reduce_grammar_tables): Likewise.
18556 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18557
18558 2001-11-30 Akim Demaille <akim@epita.fr>
18559
18560 * src/reduce.c (reduce_output): Formatting changes.
18561 * src/print.c (print_results, print_grammar): Likewise.
18562 * tests/regression.at (Rule Line Numbers)
18563 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18564
18565 2001-11-30 Akim Demaille <akim@epita.fr>
18566
18567 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18568 useless nonterminals, move them at the end of the symbol arrays.
18569 (reduce_output): Adjust.
18570 * tests/reduce.at (Useless Nonterminals): Adjust.
18571
18572 2001-11-30 Akim Demaille <akim@epita.fr>
18573
18574 * src/reduce.c: Various comment/formatting changes.
18575 (nonterminals_reduce): New, extracted from...
18576 (reduce_grammar_tables): here.
18577 (reduce_grammar): Call nonterminals_reduce.
18578
18579 2001-11-29 Paul Eggert <eggert@twinsun.com>
18580
18581 * src/bison.simple (YYSTACK_REALLOC): Remove.
18582 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18583 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18584 New macros.
18585 (union yyalloc): New type.
18586 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18587 an arbitrary restriction on hosts where size_t is wider than int.
18588
18589 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18590 a parser stack overflow. Allocate just one block of memory for all
18591 three stacks, instead of allocating three blocks; this typically is
18592 faster and reduces fragmentation.
18593
18594 Do not limit the number of items in the stack to a value that fits
18595 in 'int', as this is an arbitrary limit on hosts with 64-bit
18596 size_t and 32-bit int.
18597
18598 2001-11-29 Marc Autret <autret_m@epita.fr>
18599
18600 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18601 of defining YYERROR_VERBOSE.
18602 [AT_DATA]: $4 is now out of C declarations in the prologue.
18603
18604 2001-11-28 Marc Autret <autret_m@epita.fr>
18605
18606 * src/reader.c (parse_dquoted_param): New.
18607 (parse_skel_decl): Use it.
18608 * src/lex.h: Add its prototype.
18609 * src/lex.c (literalchar): Become not static.
18610
18611 2001-11-28 Marc Autret <autret_m@epita.fr>
18612
18613 * src/output.h: And put its extern declaration here.
18614 * src/output.c (error_verbose): Define here.
18615 (prepare): Echo name modification.
18616 * src/getargs.h: Clean its extern declaration.
18617 * src/getargs.c (error_verbose_flag): Remove.
18618 (getargs): Remove case 'e'.
18619 * src/options.c (option_table): 'error-verbose' is now seen as simple
18620 percent option.
18621 Include output.h.
18622
18623 * src/reader.c (read_declarations): Remove case tok_include.
18624 (parse_include_decl): Remove.
18625 * src/lex.h (token_t): Remove tok_include.
18626 * src/options.c (option_table): 'include' is now a simple command line
18627 option.
18628
18629 2001-11-28 Marc Autret <autret_m@epita.fr>
18630
18631 * src/bison.simple: Adjust muscle names.
18632 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18633 * src/output.c (prepare): s/_/-/ for the muscles names.
18634 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18635
18636 2001-11-28 Marc Autret <autret_m@epita.fr>
18637
18638 * src/bison.simple: Fix debug.
18639 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18640
18641 2001-11-28 Akim Demaille <akim@epita.fr>
18642
18643 * src/LR0.c (shifts_new): New.
18644 (save_shifts, insert_start_shift, augment_automaton): Use it.
18645
18646 2001-11-28 Akim Demaille <akim@epita.fr>
18647
18648 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18649 keep ruleno only.
18650
18651 2001-11-28 Akim Demaille <akim@epita.fr>
18652
18653 * src/closure.c (closure): Instead of looping over word in array
18654 then bits in words, loop over bits in array.
18655
18656 2001-11-28 Akim Demaille <akim@epita.fr>
18657
18658 * src/closure.c (closure): No longer optimize the special case
18659 where all the bits of `ruleset[r]' are set to 0, to make the code
18660 clearer.
18661
18662 2001-11-28 Akim Demaille <akim@epita.fr>
18663
18664 * src/closure.c (closure): `r' and `c' are new variables, used to
18665 de-obfuscate accesses to RULESET and CORE.
18666
18667 2001-11-28 Akim Demaille <akim@epita.fr>
18668
18669 * src/reduce.c (reduce_print): Use ngettext.
18670 (dump_grammar): Improve the trace accuracy.
18671
18672 2001-11-28 Akim Demaille <akim@epita.fr>
18673
18674 * src/reduce.c (dump_grammar): Don't translate trace messages.
18675
18676 2001-11-28 Akim Demaille <akim@epita.fr>
18677
18678 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
18679 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
18680 as all tags are free'ed afterwards.
18681 From Enrico Scholz.
18682
18683 2001-11-27 Paul Eggert <eggert@twinsun.com>
18684
18685 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
18686 use alloca when we didn't want to, and vice versa.
18687
18688 2001-11-27 Marc Autret <autret_m@epita.fr>
18689
18690 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
18691 initialization.
18692 * src/output.c (prepare): Remove its update.
18693
18694 2001-11-27 Marc Autret <autret_m@epita.fr>
18695
18696 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
18697 Use %error-verbose.
18698
18699 2001-11-27 Marc Autret <autret_m@epita.fr>
18700
18701 * src/bison.simple: Remove YYERROR_VERBOSE using.
18702 Use %%error_verbose.
18703 (yyparse): Likewise.
18704 * src/output.c (prepare): Give its final value.
18705 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
18706 * src/getargs.h: Add its extern declaration.
18707 * src/getargs.c (error_verbose_flag): New int.
18708 (getargs): Update to catch new case.
18709 * src/options.c (option_table): 'error-verbose' is a new option.
18710 (shortopts): Update.
18711
18712 2001-11-27 Akim Demaille <akim@epita.fr>
18713
18714 * src/system.h: Use intl/libgettext.h.
18715 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
18716
18717 2001-11-27 Akim Demaille <akim@epita.fr>
18718
18719 * tests/torture.at (Exploding the Stack Size with Malloc):
18720 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
18721
18722 2001-11-27 Akim Demaille <akim@epita.fr>
18723
18724 * src/files.c: Include error.h.
18725 Reported by Hans Aberg.
18726
18727 2001-11-26 Marc Autret <autret_m@epita.fr>
18728
18729 * src/reader.c (parse_include_decl): New, not yet implemented.
18730 (read_declarations): Add case tok_include.
18731 * src/getargs.h (include): Add its extern definition.
18732 * src/getargs.c (include): New const char *.
18733 (getargs): Add case '-I'.
18734 * src/options.c (option_table): Add include as command line and
18735 percent option.
18736 * src/lex.h (token_t): Add tok_include.
18737
18738 2001-11-26 Akim Demaille <akim@epita.fr>
18739
18740 * src/reader.c (readgram): Make sure rules for mid-rule actions
18741 have a lineno equal to that of their host rule.
18742 Reported by Hans Aberg.
18743 * tests/regression.at (Rule Line Numbers): New.
18744
18745 2001-11-26 Akim Demaille <akim@epita.fr>
18746
18747 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
18748 size_ts.
18749
18750 2001-11-26 Akim Demaille <akim@epita.fr>
18751
18752 * src/complain.c, src/complain.h (error): Remove, provided by
18753 lib/error.[ch].
18754
18755 2001-11-26 Akim Demaille <akim@epita.fr>
18756
18757 * src/reader.c (read_declarations): Don't abort on tok_illegal,
18758 issue an error message.
18759 * tests/regression.at (Invalid %directive): New.
18760 Reported by Hans Aberg.
18761
18762 2001-11-26 Akim Demaille <akim@epita.fr>
18763
18764 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
18765 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18766
18767 2001-11-26 Akim Demaille <akim@epita.fr>
18768
18769 * src/conflicts.c (conflicts_print): Don't complain at all when
18770 there are no reduce/reduce conflicts, and as many shift/reduce
18771 conflicts as expected.
18772 * tests/regression.at (%expect right): Adjust.
18773
18774 2001-11-23 Akim Demaille <akim@epita.fr>
18775
18776 * lib/alloca.c: Update, from fileutils.
18777
18778 2001-11-23 Akim Demaille <akim@epita.fr>
18779
18780 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
18781
18782 2001-11-23 Akim Demaille <akim@epita.fr>
18783
18784 * src/system.h: Include alloca.h.
18785 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
18786
18787 2001-11-23 Akim Demaille <akim@epita.fr>
18788
18789 * src/print_graph.c (print_actions): Remove `rule', unused.
18790 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
18791 pacify GCC's signed < unsigned warnings.
18792 * src/closure.c (itemsetsize): Likewise.
18793 * src/reader.c (symbol_list_new): Static.
18794
18795 2001-11-23 Akim Demaille <akim@epita.fr>
18796
18797 Attaching lineno to buckets is stupid, since only one copy of each
18798 symbol is kept, only the line of the first occurrence is kept too.
18799
18800 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
18801 * src/reader.c (rline_allocated): Remove, unused.
18802 (symbol_list): Have a `line' member.
18803 (symbol_list_new): New.
18804 (readgram): Use it.
18805 * src/print.c (print_grammar): Output the rule line numbers.
18806 * tests/regression.at (Solved SR Conflicts)
18807 (Unresolved SR Conflicts): Adjust.
18808 Reported by Hans Aberg.
18809
18810 2001-11-22 Marc Autret <autret_m@epita.fr>
18811
18812 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
18813
18814 2001-11-22 Marc Autret <autret_m@epita.fr>
18815
18816 * src/muscle_tab.c (muscle_init): Remove initialization of
18817 skeleton muscle.
18818 * src/output.c (output_master_parser): Do it here.
18819
18820 2001-11-20 Akim Demaille <akim@epita.fr>
18821
18822 * po/sv.po: New.
18823 * configure.in (ALL_LINGUAS): Adjust.
18824 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
18825 longer contains strings to translate.
18826
18827 2001-11-19 Akim Demaille <akim@epita.fr>
18828
18829 * src/conflicts.c (conflicts_print): Add a missing \n.
18830
18831 2001-11-19 Akim Demaille <akim@epita.fr>
18832
18833 * src/nullable.c (nullable_print): New.
18834 (set_nullable): Call it when tracing.
18835 Better locality of variables.
18836
18837 2001-11-19 Akim Demaille <akim@epita.fr>
18838
18839 * src/print.c (print_actions): Better locality of variables.
18840
18841 2001-11-19 Akim Demaille <akim@epita.fr>
18842
18843 * src/derives.c (print_derives): Fix and enrich.
18844 * src/closure.c (print_fderives): Likewise.
18845
18846 2001-11-19 Akim Demaille <akim@epita.fr>
18847
18848 * src/closure.c (itemsetend): Remove, replaced with...
18849 (itemsetsize): new.
18850
18851 2001-11-19 Akim Demaille <akim@epita.fr>
18852
18853 * src/LR0.c (kernel_end): Remove, replaced with...
18854 (kernel_size): new.
18855
18856 2001-11-19 Akim Demaille <akim@epita.fr>
18857
18858 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
18859 to clarify.
18860
18861 2001-11-19 Akim Demaille <akim@epita.fr>
18862
18863 * src/closure.c (closure): Use arrays instead of pointers to clarify.
18864
18865 2001-11-19 Akim Demaille <akim@epita.fr>
18866
18867 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
18868 trace messages.
18869 * src/LR0.c: Likewise.
18870 (allocate_itemsets): Use arrays instead of pointers to clarify.
18871
18872 2001-11-19 Akim Demaille <akim@epita.fr>
18873
18874 * src/getargs.c (statistics_flag): Replace with...
18875 (trace_flag): New.
18876 (longopts): Accept --trace instead of --statistics.
18877 * src/getargs.h, src/options.c: Adjust.
18878 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
18879 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
18880
18881 2001-11-19 Akim Demaille <akim@epita.fr>
18882
18883 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
18884 pointers to clarify the code.
18885 (save_reductions, save_shifts): Factor common parts of alternatives.
18886
18887 2001-11-19 Akim Demaille <akim@epita.fr>
18888
18889 * src/LR0.c (new_state, get_state): Complete TRACE code.
18890 * src/closure.c: Include `reader.h' to get `tags', needed by the
18891 trace code.
18892 Rename the conditional DEBUG as TRACE.
18893 Output consistently TRACEs to stderr, not stdout.
18894 * src/derives.c: Likewise.
18895 * src/reduce.c: (inaccessable_symbols): Using if is better style
18896 than goto.
18897 Use `#if TRACE' instead of `#if 0' for tracing code.
18898
18899 2001-11-19 Akim Demaille <akim@epita.fr>
18900
18901 * src/system.h (LIST_FREE, shortcpy): New.
18902 * src/LR0.c: Use them.
18903 * src/output.c (free_itemsets, free_reductions, free_shifts):
18904 Remove, replaced by LIST_FREE.
18905
18906 2001-11-19 Akim Demaille <akim@epita.fr>
18907
18908 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
18909 (REDUCTIONS_ALLOC): New.
18910 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
18911 allocation.
18912
18913 2001-11-19 Akim Demaille <akim@epita.fr>
18914
18915 * src/LR0.c (new_state): Complete trace code.
18916 * src/nullable.c (set_nullable): Don't translate traces.
18917
18918 2001-11-19 Akim Demaille <akim@epita.fr>
18919
18920 * src/print_graph.c (print_core): Better locality of variables.
18921 * src/print.c (print_core): Likewise.
18922
18923 2001-11-19 Akim Demaille <akim@epita.fr>
18924
18925 * src/vcg.c: You do the output, so you are responsible of the
18926 handling of VCG syntax, in particular: use quotearg.
18927 * src/print_graph.c: Don't.
18928 (print_actions): Don't output the actions as part of the nodes,
18929 since that's the job of the edges.
18930 (print_state): Don't output by hand: fill the node description,
18931 and ask for its output.
18932
18933 2001-11-19 Akim Demaille <akim@epita.fr>
18934
18935 * src/bison.simple (yyparse): When verbosely reporting an error,
18936 no longer put additional quotes around token names.
18937 * tests/calc.at: Adjust.
18938
18939 2001-11-19 Akim Demaille <akim@epita.fr>
18940
18941 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
18942 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
18943 * src/output.c: Adjust.
18944
18945 2001-11-19 Akim Demaille <akim@epita.fr>
18946
18947 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
18948 (rule_t): this.
18949 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
18950
18951 2001-11-19 Akim Demaille <akim@epita.fr>
18952
18953 * src/gram.h (rule_t): New.
18954 (rule_table): New.
18955 (rrhs, rlhs): Remove, part of state_t.
18956 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
18957 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18958 * src/reader.c, src/reduce.c: Adjust.
18959
18960 2001-11-19 Akim Demaille <akim@epita.fr>
18961
18962 * src/reader.c (symbols_output): New, extracted from...
18963 (packsymbols): Here.
18964 (reader): Call it.
18965
18966 2001-11-19 Akim Demaille <akim@epita.fr>
18967
18968 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
18969 (maxrhs): this new function.
18970
18971 2001-11-19 Akim Demaille <akim@epita.fr>
18972
18973 * src/lalr.c (F): New macro to access the variable F.
18974 Adjust.
18975
18976 2001-11-19 Akim Demaille <akim@epita.fr>
18977
18978 * src/lalr.h (LA): New macro to access the variable LA.
18979 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18980 * src/lalr.c: Adjust.
18981
18982 2001-11-19 Akim Demaille <akim@epita.fr>
18983
18984 * src/lalr.c (initialize_LA): Only initialize LA. Let...
18985 (set_state_table): handle the `lookaheads' members.
18986
18987 2001-11-19 Akim Demaille <akim@epita.fr>
18988
18989 * src/lalr.h (lookaheads): Removed array, whose contents is now
18990 a member of...
18991 (state_t): this structure.
18992 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18993 Adjust.
18994
18995 2001-11-19 Akim Demaille <akim@epita.fr>
18996
18997 * src/lalr.h (consistent): Removed array, whose contents is now
18998 a member of...
18999 (state_t): this structure.
19000 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19001 Adjust.
19002
19003 2001-11-19 Akim Demaille <akim@epita.fr>
19004
19005 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
19006 contents are now members of...
19007 (state_t): this structure.
19008 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19009 Adjust.
19010
19011 2001-11-19 Akim Demaille <akim@epita.fr>
19012
19013 * src/lalr.h (state_t): New.
19014 (state_table): Be a state_t * instead of a core **.
19015 (accessing_symbol): Remove, part of state_t.
19016 * src/lalr.c: Adjust.
19017 (set_accessing_symbol): Merge into...
19018 (set_state_table): this.
19019 * src/print_graph.c, src/conflicts.c: Adjust.
19020
19021 2001-11-14 Akim Demaille <akim@epita.fr>
19022
19023 * tests/calc.at, tests/output.at, tests/regression.at,
19024 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
19025 now the tests are run in private dirs, therefore AC_CLEANUP and
19026 family can be simplified to 0-ary.
19027 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
19028 use abs. path to find config.h.
19029 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
19030 stderr, there can be way too much random noise.
19031 Instead pass -Werror to GCC and rely on the exit status.
19032 Reported by Wolfram Wagner.
19033
19034 2001-11-14 Akim Demaille <akim@epita.fr>
19035
19036 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
19037 defined only if yyoverflow is defined, to avoid `warning: unused
19038 variable `yyvs1''.
19039 Reported by The Test Suite.
19040
19041 2001-11-14 Akim Demaille <akim@epita.fr>
19042
19043 * src/print.c: Include reduce.h.
19044 Reported by Hans Aberg.
19045
19046 2001-11-14 Akim Demaille <akim@epita.fr>
19047
19048 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
19049 Revert a previous patch: these are really const.
19050 * src/conflicts.c (conflict_report): Additional useless pair of
19051 braces to pacify GCC's warnings for `if () if () {} else {}'.
19052 * src/lex.c (parse_percent_token): Replace equal_offset with
19053 arg_offset.
19054 arg is const.
19055 Be sure to strdup `arg' when used, since there is no reason for
19056 token_buffer not to change.
19057
19058 2001-11-14 Akim Demaille <akim@epita.fr>
19059
19060 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
19061 definition.
19062 * src/main.c (main): Use them.
19063 Suggested by Hans Aberg.
19064
19065 2001-11-12 Akim Demaille <akim@epita.fr>
19066
19067 * src/system.h (ngettext): Now that we use ngettext, be sure to
19068 provide a default definition when NLS are not used.
19069
19070 2001-11-12 Akim Demaille <akim@epita.fr>
19071
19072 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
19073 Use @kbd to denote user input.
19074 (Language and Grammar): ANSIfy the example.
19075 Adjust its layout for info/notinfo.
19076 (Location Tracking Calc): Output error messages to stderr.
19077 Output locations in a more GNUtically correct way.
19078 Fix a couple of Englishos.
19079 Adjust @group/@end group pairs.
19080
19081 2001-11-12 Akim Demaille <akim@epita.fr>
19082
19083 %expect was not functioning at all.
19084
19085 * src/conflicts.c (expected_conflicts): Set to -1.
19086 (conflict_report): Use ngettext.
19087 (conflicts_print): Check %expect and make its violation an error.
19088 * doc/bison.texinfo (Expect Decl): Adjust.
19089 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
19090 * tests/regression.at (%expect not enough, %expect right)
19091 (%expect too much): New.
19092
19093 2001-11-12 Akim Demaille <akim@epita.fr>
19094
19095 * tests/regression.at (Conflicts): Rename as...
19096 (Unresolved SR Conflicts): this.
19097 (Solved SR Conflicts): New.
19098
19099 2001-11-12 Akim Demaille <akim@epita.fr>
19100
19101 * src/reduce.c (print_results): Rename as...
19102 (reduce_output): This.
19103 Output to OUT, passed as argument, instead of output_obstack.
19104 (dump_grammar): Likewise.
19105 (reduce_free): New.
19106 Also free V1.
19107 (reduce_grammar): No longer call reduce_output, since...
19108 * src/print.c (print_results): do it.
19109 * src/main.c (main): Call reduce_free;
19110
19111 2001-11-12 Akim Demaille <akim@epita.fr>
19112
19113 * src/conflicts.c (print_reductions): Accept OUT as argument.
19114 Output to it, not to output_obstack.
19115 * src/print.c (print_actions): Adjust.
19116
19117 2001-11-12 Akim Demaille <akim@epita.fr>
19118
19119 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
19120 the result instead of using...
19121 (src_total, rrc_total, src_count, rrc_count): Remove.
19122 (any_conflicts): Remove.
19123 (print_conflicts): Split into...
19124 (conflicts_print, conflicts_output): New.
19125 * src/conflicts.h: Adjust.
19126 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
19127 * src/print.c (print_grammar): Issue `\n' between two rules.
19128 * tests/regression.at (Conflicts): New.
19129 Reported by Tom Lane.
19130
19131 2001-11-12 Akim Demaille <akim@epita.fr>
19132
19133 * tests/regression.at (Invalid input): Remove, duplicate with
19134 ``Invalid input: 1''.
19135
19136 2001-11-12 Akim Demaille <akim@epita.fr>
19137
19138 * tests/torture.at (AT_DATA_STACK_TORTURE)
19139 (Exploding the Stack Size with Alloca)
19140 (Exploding the Stack Size with Malloc): New.
19141
19142 2001-11-12 Akim Demaille <akim@epita.fr>
19143
19144 * src/bison.simple (YYSTACK_REALLOC): New.
19145 (yyparse) [!yyoverflow]: Use it and free the old stack.
19146 Reported by Per Allansson.
19147
19148 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
19149
19150 * src/bison.simple: Define type yystype instead of YYSTYPE, and
19151 define CPP macro, which substitute YYSTYPE by yystype.
19152 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
19153 with yyltype/YYLTYPE. This allows inclusion of the generated
19154 header within the parser if the compiler, such as GGC, accepts
19155 multiple equivalent #defines.
19156 From Akim.
19157
19158 2001-11-05 Akim Demaille <akim@epita.fr>
19159
19160 * src/reader.c (symbols_output): New, extracted from...
19161 (packsymbols): here.
19162 (reader): Adjust.
19163
19164 2001-11-05 Akim Demaille <akim@epita.fr>
19165
19166 * src/lex.c (parse_percent_token): s/quotearg/quote/.
19167
19168 2001-11-05 Akim Demaille <akim@epita.fr>
19169
19170 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
19171 pattern.
19172
19173 2001-11-05 Akim Demaille <akim@epita.fr>
19174
19175 * src/options.h (struct option_table_struct): set_flags is void*.
19176 * src/options.c (longopts): Support `--output' and `%output'.
19177 (usage): Adjust.
19178 * src/lex.h (tok_setopt): Remove, replaced with...
19179 (tok_intopt, tok_stropt): these new guys.
19180 * src/lex.c (getopt.h): Not needed.
19181 (token_buffer, unlexed_token_buffer): Not const.
19182 (percent_table): Promote `-' over `_' in directive names.
19183 Active `%name-prefix', `file-prefix', and `output'.
19184 (parse_percent_token): Accept possible arguments to directives.
19185 Promote `-' over `_' in directive names.
19186
19187 2001-11-04 Akim Demaille <akim@epita.fr>
19188
19189 * doc/bison.texinfo (Decl Summary): Split the list into
19190 `directives for grammars' and `directives for bison'.
19191 Sort'em.
19192 Add description of `%name-prefix', `file-prefix', and `output'.
19193 Promote `-' over `_' in directive names.
19194 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
19195 Simplify the description of `--name-prefix'.
19196 Promote `-' over `_' in directive names.
19197 Promote `--output' over `--output-file'.
19198 Fix the description of `--defines'.
19199 * tests/output.at: Exercise %file-prefix and %output.
19200
19201 2001-11-02 Akim Demaille <akim@epita.fr>
19202
19203 * doc/refcard.tex: Update.
19204
19205 2001-11-02 Akim Demaille <akim@epita.fr>
19206
19207 * src/symtab.h (SUNDEF): New.
19208 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
19209 stand for `uninitialized', instead of 0.
19210 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
19211 * src/lex.c (lex): Adjust.
19212
19213 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
19214 Number it 0.
19215 Let yylex return it instead of a plain 0.
19216 Reported by Dick Streefland.
19217
19218 2001-11-02 Akim Demaille <akim@epita.fr>
19219
19220 * tests/regression.at (Mixing %token styles): New test.
19221
19222 2001-11-02 Akim Demaille <akim@epita.fr>
19223
19224 * src/reader.c (parse_thong_decl): Formatting changes.
19225 (token_translations_init): New, extracted from...
19226 (packsymbols): Here.
19227 Adjust.
19228
19229 2001-11-01 Akim Demaille <akim@epita.fr>
19230
19231 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
19232 Check that `9foo.y' produces correct cpp guards.
19233 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
19234 guards.
19235 Reported by Wwp.
19236
19237 2001-11-01 Akim Demaille <akim@epita.fr>
19238
19239 * tests/regression.at (Invalid input: 2): New.
19240 * src/lex.c (unlexed_token_buffer): New.
19241 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
19242 too.
19243 Reported by Wwp.
19244
19245 2001-11-01 Akim Demaille <akim@epita.fr>
19246
19247 * tests/calc.at: Catch up with 1.30.
19248 * configure.in: Bump to 1.49a.
19249 Adjust to newer Autotest.
19250
19251 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
19252
19253 * src/conflicts.c: Move global variables rrc_total and src_total ...
19254 (print_conflicts): here.
19255 * src/output.c (output): Free global variable user_toknums.
19256 * src/lex.c (token_obstack): Become static.
19257
19258 2001-10-18 Akim Demaille <akim@epita.fr>
19259
19260 * tests/atlocal.in (GCC): Add.
19261 * tests/calc.at: s/m4_match/m4_bmatch/.
19262 s/m4_patsubst/m4_bpatsubst/.
19263 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
19264 * configure.in: AC_SUBST(GCC).
19265
19266 2001-10-14 Marc Autret <autret_m@epita.fr>
19267
19268 * src/options.c (create_long_option_table): Fix.
19269
19270 2001-10-10 Akim Demaille <akim@epita.fr>
19271
19272 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
19273
19274 2001-10-04 Akim Demaille <akim@epita.fr>
19275
19276 * src/reader.c (parse_union_decl): Push the caracters in
19277 union_obstack, not attrs_obstack.
19278
19279 2001-10-04 Akim Demaille <akim@epita.fr>
19280
19281 Merge in the branch 1.29.
19282
19283 * src/reader.c (packsymbols): Use a temporary obstack for
19284 `%%tokendef', since output_stack is already used elsewhere.
19285
19286 2001-10-02 Akim Demaille <akim@epita.fr>
19287
19288 Bump 1.29d.
19289
19290 2001-10-02 Akim Demaille <akim@epita.fr>
19291
19292 Version 1.29c.
19293
19294 2001-10-02 Akim Demaille <akim@epita.fr>
19295
19296 * tests/regression.at (Invalid CPP headers): New.
19297 From Alexander Belopolsky.
19298 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
19299
19300 2001-10-02 Akim Demaille <akim@epita.fr>
19301
19302 * tests/regression.at (Invalid input): New.
19303 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
19304 Reported by Shura.
19305
19306 2001-10-02 Akim Demaille <akim@epita.fr>
19307
19308 * tests/calc.at: Now that --debug works, the tests must be adjusted.
19309
19310 2001-10-02 Akim Demaille <akim@epita.fr>
19311
19312 * src/output.c (output_parser): Assert `skeleton'.
19313 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19314 systems.
19315 From Shura.
19316
19317 2001-10-01 Marc Autret <autret_m@epita.fr>
19318
19319 * src/lex.h: Echo modifications.
19320 * src/lex.c (unlex): Parameter is now token_t.
19321 From Hans Aberg.
19322
19323 2001-10-01 Marc Autret <autret_m@epita.fr>
19324
19325 * src/main.c: Include lex.h.
19326 From Hans Aberg.
19327
19328 2001-09-29 Akim Demaille <akim@epita.fr>
19329
19330 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19331
19332 2001-09-28 Akim Demaille <akim@epita.fr>
19333
19334 * tests/testsuite.at: Update to newer Autotest.
19335 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19336
19337 2001-09-27 Akim Demaille <akim@epita.fr>
19338
19339 Position independent wrapper.
19340
19341 * tests/bison: Remove.
19342 * tests/bison.in: New.
19343 * configure.in: Adjust.
19344
19345 2001-09-27 Paul Eggert <eggert@twinsun.com>
19346
19347 Port quotearg fixes from tar 1.13.24.
19348
19349 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19350 tm to be declared.
19351 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19352 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19353
19354 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19355 * m4/mbrtowc.m4: New file.
19356 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19357 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19358
19359 2001-09-27 Akim Demaille <akim@epita.fr>
19360
19361 Bump to 1.29c.
19362
19363 2001-09-27 Akim Demaille <akim@epita.fr>
19364
19365 Version 1.29b.
19366
19367 2001-09-25 Akim Demaille <akim@epita.fr>
19368
19369 * src/system.h: Include `xalloc.h'.
19370 Remove it from the C files.
19371 * src/files.c (output_files): Free the obstacks.
19372 * src/lex.c (init_lex): Rename as...
19373 (lex_init): this.
19374 (lex_free): New.
19375 * src/main.c (main): Use it.
19376
19377 2001-09-24 Marc Autret <autret_m@epita.fr>
19378
19379 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19380 to output informations in fout (FILE*).
19381 (open_graph, close_graph): Likewise.
19382 (output_graph, output_edge, output_node): Likewise.
19383 * src/vcg.h: Update function prototypes.
19384 * src/print_graph.c (print_graph): Open output graph file.
19385 (print_actions): Adjust.
19386 * src/files.h: Remove extern declaration.
19387 * src/files.c: Remove graph_obstack declaration.
19388 (open_files): Remove graph_obstack initialization.
19389 (output_files): Remove graph_obstack saving.
19390
19391 2001-09-24 Marc Autret <autret_m@epita.fr>
19392
19393 * src/files.c (compute_output_file_names): Fix.
19394
19395 2001-09-24 Marc Autret <autret_m@epita.fr>,
19396 Akim Demaille <akim@epita.fr>
19397
19398 * src/reader.c (reader): Remove call to free_symtab ().
19399 * src/main.c (main): Call it here.
19400 Include symtab.h.
19401 * src/conflicts.c (initialize_conflicts): Rename as...
19402 (solve_conflicts): this.
19403 * src/print.c (print_core, print_actions, print_state)
19404 (print_grammar): Dump to a file instead a `output_obstack'.
19405 (print_results): Dump `output_obstack', and then proceed with the
19406 FILE *.
19407 * src/files.c (compute_output_file_names, close_files): New.
19408 (output_files): Adjust.
19409 * src/main.c (main): Adjust.
19410
19411 2001-09-23 Marc Autret <autret_m@epita.fr>
19412
19413 * src/files.c (compute_header_macro): Computes header macro name
19414 from spec_defines_file when given.
19415
19416 2001-09-23 Marc Autret <autret_m@epita.fr>
19417
19418 * src/files.c (output_files): Add default extensions.
19419
19420 2001-09-22 Akim Demaille <akim@epita.fr>
19421
19422 * src/conflicts.c (finalize_conflicts): Rename as...
19423 (free_conflicts): this.
19424
19425 2001-09-22 Akim Demaille <akim@epita.fr>
19426
19427 * src/gram.c (gram_free): Rename back as...
19428 (dummy): this.
19429 (output_token_translations): Free `token_translations'.
19430 * src/symtab.c (free_symtab): Free the tag field.
19431
19432 2001-09-22 Akim Demaille <akim@epita.fr>
19433
19434 Remove `translations' as it is always set to true.
19435
19436 * src/gram.h: Adjust.
19437 * src/reader.c (packsymbols, parse_token_decl): Adjust
19438 * src/print.c (print_grammar): Adjust.
19439 * src/output.c (output_token_translations): Adjust.
19440 * src/lex.c (lex): Adjust.
19441 * src/gram.c: Be sure the set pointers to NULL.
19442 (dummy): Rename as...
19443 (gram_free): this.
19444
19445 2001-09-22 Akim Demaille <akim@epita.fr>
19446
19447 * configure.in: Invoke AM_LIB_DMALLOC.
19448 * src/system.h: Use dmalloc.
19449 * src/LR0.c: Be sure to have pointers initialized to NULL.
19450 (allocate_itemsets): Allocate kernel_items only if needed.
19451
19452 2001-09-22 Akim Demaille <akim@epita.fr>
19453
19454 * configure.in: Bump to 1.29b.
19455 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19456 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19457 need xmalloc.c in calc.y.
19458 From Pascal Bart.
19459
19460 2001-09-21 Akim Demaille <akim@epita.fr>
19461
19462 Version 1.29a.
19463 * Makefile.maint, config/config.guess, config/config.sub,
19464 * config/missing: Update from masters.
19465 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19466 upon package.m4.
19467 * configure.in (ALL_LINGUAS): Add `tr'.
19468
19469 2001-09-21 Akim Demaille <akim@epita.fr>
19470
19471 * tests/Makefile.am (package.m4): Move to...
19472 ($(srcdir)/$(TESTSUITE)): here.
19473
19474 2001-09-20 Akim Demaille <akim@epita.fr>
19475
19476 * src/complain.c: No longer try to be standalone: use system.h.
19477 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19478 * src/complain.h: Likewise.
19479 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19480 Remove the unused variable `n'.
19481 From Albert Chin-A-Young.
19482
19483 2001-09-18 Marc Autret <autret_m@epita.fr>
19484
19485 * doc/bison.1: Update.
19486 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19487 descriptions.
19488 (Option Cross Key): Update.
19489 Add --graph.
19490
19491 2001-09-18 Marc Autret <autret_m@epita.fr>
19492
19493 * tests/regression.at: New test (comment in %union).
19494
19495 2001-09-18 Marc Autret <autret_m@epita.fr>
19496
19497 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19498 do that.
19499 Reported by Keith Browne.
19500
19501 2001-09-18 Marc Autret <autret_m@epita.fr>
19502
19503 * tests/output.at: Add tests for --defines and --graph.
19504
19505 2001-09-18 Marc Autret <autret_m@epita.fr>
19506
19507 * tests/output.at: Removes tests of %{header,src}_extension features.
19508
19509 2001-09-18 Akim Demaille <akim@epita.fr>
19510
19511 * tests/Makefile.am (package.m4): New.
19512 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19513 (_AT_CHECK_CALC_ERROR): Likewise.
19514 Factor the `, ' part of verbose error messages.
19515
19516 2001-09-18 Marc Autret <autret_m@epita.fr>
19517
19518 * src/getargs.c (longopts): Declare --defines and --graph as options
19519 with optional arguments.
19520 * src/files.h: Add extern declarations.
19521 * src/files.c (spec_graph_file, spec_defines_file): New.
19522 (output_files): Update.
19523 Remove CPP-outed code.
19524
19525 2001-09-18 Marc Autret <autret_m@epita.fr>
19526
19527 Turn off %{source,header}_extension feature.
19528
19529 * src/files.c (compute_exts_from_gf): Update.
19530 (compute_exts_from_src): Update.
19531 (output_files): CPP-out useless code.
19532 * src/files.h: Remove {header,source}_extension extern declarations.
19533 * src/reader.c (parse_dquoted_param): CPP-out.
19534 (parse_header_extension_decl): Remove.
19535 (parse_source_extension_decl): Remove.
19536 (read_declarations): Remove cases tok_{hdrext,srcext}.
19537 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19538 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19539
19540 2001-09-10 Akim Demaille <akim@epita.fr>
19541
19542 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19543 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19544 (AT_CHECK_OUTPUT): this.
19545 Merely check ls' exit status, its output is useless.
19546
19547 2001-09-10 Akim Demaille <akim@epita.fr>
19548
19549 * tests/calc.at: Use m4_match.
19550 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19551
19552 2001-09-10 Marc Autret <autret_m@epita.fr>,
19553 Akim Demaille <akim@epita.fr>
19554
19555 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19556 enum color_e.
19557 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19558 to `normal'.
19559 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19560 * src/lex.h: Adjust prototype.
19561 (token_t): Add `tok_undef'.
19562 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19563 (parse_percent_token): Now returns token_t.
19564 Add default statement in switch.
19565 (lex): Separate `c' as an input variable, from the token_t result
19566 part.
19567 (unlexed): Is a token_t.
19568
19569 2001-09-10 Akim Demaille <akim@epita.fr>
19570
19571 * configure.in: Bump to 1.29a.
19572
19573 2001-09-07 Akim Demaille <akim@epita.fr>
19574
19575 Version 1.29.
19576
19577 2001-08-30 Akim Demaille <akim@epita.fr>
19578
19579 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19580 * m4/atconfig.m4: Remove.
19581 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19582 * tests/bison: New.
19583 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19584 m4_if, m4_patsubst, and m4_regexp.
19585 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19586 `input' file instead of echo.
19587
19588 2001-08-29 Akim Demaille <akim@epita.fr>
19589
19590 Bump to 1.28e.
19591
19592 2001-08-29 Akim Demaille <akim@epita.fr>
19593
19594 Version 1.28d.
19595
19596 2001-08-29 Paul Eggert <eggert@twinsun.com>
19597
19598 * src/bison.simple (yyparse): Don't take the address of an
19599 item before the start of an array, as that doesn't conform to
19600 the C Standard.
19601
19602 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19603
19604 * doc/bison.texinfo (Location Tracking Calc): New node.
19605
19606 2001-08-29 Paul Eggert <eggert@twinsun.com>
19607
19608 * src/output.c (output): Do not define const, as this now
19609 causes more problems than it cures.
19610
19611 2001-08-29 Akim Demaille <akim@epita.fr>
19612
19613 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19614 the nodes.
19615 Be sure to tag the `detailmenu'.
19616
19617 2001-08-29 Akim Demaille <akim@epita.fr>
19618
19619 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19620 download in a tmp dir.
19621
19622 2001-08-28 Marc Autret <autret_m@epita.fr>
19623
19624 * config/depcomp: New file.
19625
19626 2001-08-28 Marc Autret <autret_m@epita.fr>
19627
19628 * doc/bison.1 (mandoc): Adjust.
19629 From Juan Manuel Guerrero.
19630
19631 2001-08-28 Marc Autret <autret_m@epita.fr>
19632
19633 * src/print_graph.c (print_state): Fix.
19634
19635 2001-08-27 Marc Autret <autret_m@epita.fr>
19636
19637 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19638 char * members.
19639 Echo modifications to the functions prototypes.
19640 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19641
19642 2001-08-27 Marc Autret <autret_m@epita.fr>
19643
19644 * src/vcg.c: Include `xalloc.h'.
19645 (add_colorentry): New.
19646 (add_classname): New.
19647 (add_infoname): New.
19648 * src/vcg.h: Add new prototypes.
19649
19650 2001-08-27 Akim Demaille <akim@epita.fr>
19651
19652 * Makefile.maint: Sync. again with CVS Autoconf.
19653
19654 2001-08-27 Akim Demaille <akim@epita.fr>
19655
19656 * Makefile.maint: Formatting changes.
19657 (po-update, cvs-update, update): New targets.
19658 (AMTAR): Remove.
19659
19660 2001-08-27 Akim Demaille <akim@epita.fr>
19661
19662 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19663 * Makefile.maint: Sync. with CVS Autoconf.
19664
19665 2001-08-27 Marc Autret <autret_m@epita.fr>
19666
19667 * src/vcg.h (struct infoname_s): New.
19668 (struct colorentry_s): New.
19669 (graph_s): New fields {vertical,horizontal}_order in structure.
19670 Add `infoname' field.
19671 Add `colorentry' field;
19672 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
19673 (G_HORIZONTAL_ORDER): New.
19674 (G_INFONAME): New.
19675 (G_COLORENTRY): New.
19676 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
19677 Add output of `infoname'.
19678 Add output of `colorentry'.
19679
19680 2001-08-27 Marc Autret <autret_m@epita.fr>
19681
19682 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
19683 This one shadowed a global parameter.
19684
19685 2001-08-24 Marc Autret <autret_m@epita.fr>
19686
19687 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
19688 instead of `unsigned'.
19689 (print_state): Do not call obstack_object_size () in obstack_grow ()
19690 to avoid macro variables shadowing.
19691
19692 2001-08-23 Marc Autret <autret_m@epita.fr>
19693
19694 * src/lex.c (percent_table): Typo: s/naem/name/.
19695 Add graph option.
19696 Normalize new options declarations.
19697
19698 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
19699
19700 * tests/suite.at: Exercise %header_extension and %source_extension.
19701
19702 2001-08-16 Marc Autret <autret_m@epita.fr>
19703
19704 * src/reader.c (parse_dquoted_param): New.
19705 (parse_header_extension_decl): Use it.
19706 (parse_source_extension_decl): Likewise.
19707
19708 2001-08-16 Marc Autret <autret_m@epita.fr>
19709
19710 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
19711 (get_xxxx_str): Use assert () instead of complain ().
19712 Remove return invokations in default cases.
19713 (get_decision_str): Modify default behaviour. Remove second argument.
19714 Echo modifications on calls.
19715 (output_graph): Fix.
19716
19717 2001-08-16 Marc Autret <autret_m@epita.fr>
19718
19719 * src/getargs.c (usage): Update with ``-g, --graph''.
19720
19721 2001-08-16 Marc Autret <autret_m@epita.fr>
19722
19723 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
19724 (Option Cross Key): Likewise.
19725 * doc/bison.1: Update.
19726
19727 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
19728
19729 * src/output.c (output_master_parser): Don't finish action_obstack.
19730 (output_parser): Don't care about the muscle action, here.
19731 (prepare): Copy the action_obstack in the action muscle.
19732 (output): Free action_obstack.
19733
19734 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19735
19736 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
19737 will contain `%union' declaration.
19738 (parse_union_decl): Delete #line directive output.
19739 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
19740 informations about %union.
19741 (parse_union_decl): Copy the union_obstack in the muscle stype.
19742 * src/bison.simple: Add new #line directive.
19743 Add typdef %%stype YYSTYPE.
19744
19745 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19746
19747 * src/bison.simple: Add new `#line' directive.
19748
19749 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
19750
19751 * src/bison.simple: New `#line' directive.
19752 * src/output.c (output_parser): Support new dynamic muscle input_line.
19753
19754 2001-09-22 Marc Autret <autret_m@epita.fr>
19755
19756 * src/output.c (output_master_parser): New.
19757 (output_parser): Be more re-entrant.
19758
19759 2001-09-21 Marc Autret <autret_m@epita.fr>
19760
19761 * src/reader.c (copy_definition, parse_union_decl): Update and use
19762 `linef' muscle.
19763 (copy_action): Likewise.
19764 Use obstack_1grow ().
19765 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
19766
19767 2001-09-21 Marc Autret <autret_m@epita.fr>
19768
19769 * src/options.c (option_table): Adjust.
19770 * src/lex.c (parse_percent_token): Fix.
19771
19772 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19773
19774 * src/options.c (symtab.h): Include it, need by lex.h.
19775
19776 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19777
19778 * src/lex.c (parse_percent_token): Change type of variable `tx', which
19779 is now an option_table_struct*.
19780 (option_strcmp): New function option_strcmp.
19781 (parse_percent_token): Call option_strcmp.
19782 * src/getargs.c (xalloc.h, options.h): Include it.
19783 (getargs): Call create_long_option_table.
19784 (getargs): Free longopts at the end of the function.
19785 (shortopts): Move in options.c.
19786 * src/options.c (create_long_option_table): New function. Convert
19787 information from option_table to option structure.
19788 * src/reader.c (options.h): Include it.
19789
19790 * src/Makefile.am: Adjust.
19791 * src/options.c (option_table): Create from longopts and percent_table.
19792 * src/getargs.c (longopts): Delete.
19793 * src/lex.c (struct percent_table_struct): Delete.
19794 (percent_table): Delete.
19795 (options.h): Include it.
19796 * src/options.c: Create.
19797 * src/options.h: Create.
19798 Declare enum opt_access_e.
19799 Define struct option_table_struct.
19800
19801 2001-09-20 Marc Autret <autret_m@epita.fr>
19802
19803 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
19804 sections of Bison.
19805
19806 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
19807
19808 * src/bison.simple: s/%%filename/%%skeleton.
19809 * src/muscle_tab.c (getargs.h): Include it.
19810 (muscle_init): Insert new muscle skeleton.
19811
19812 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
19813
19814 * src/output.c (output_parser): Delete unused variable actions_dumped.
19815
19816 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
19817
19818 * src/output.c (output): Delete call to reader_output_yylsp.
19819 * src/reader.c (reader): Likewise.
19820 * src/reader.h: Delete declaration of reader_output_yylsp.
19821
19822 2001-09-02 Marc Autret <autret_m@epita.fr>
19823
19824 * src/reader.c: Include muscle_tab.h.
19825 (parse_union_decl): Update.
19826 (parse_macro_decl): Rename parse_muscle_decl.
19827 Update to use renamed functions and variable.
19828 (read_declarations, copy_action, read_additionnal_code, : Updated
19829 with correct variables and functions names.
19830 (packsymbols, reader): Likewise.
19831
19832 * src/reader.h (muscle_obstack): Extern declaration update.
19833
19834 * src/output.c: Include muscle_tab.h
19835 In all functions using macro_insert, change by using muscle_insert ().
19836 (macro_obstack): Rename muscle_obstack.
19837 Echo modifications in the whole file.
19838 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
19839 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
19840 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
19841
19842 * src/muscle_tab.h: Update double inclusion macros.
19843 (macro_entry_s): Rename muscle_entry_s.
19844 Update prototypes.
19845
19846 * src/muscle_tab.c: Include muscle_tab.h.
19847 Rename macro_tabble to muscle_table.
19848 (mhash1, mhash2, mcmp): Use muscle_entry.
19849 (macro_init): Rename muscle_init. Update.
19850 (macro_insert): Rename muscle_insert. Update.
19851 (macro_find): Rename muscle_find. Update.
19852
19853 * src/main.c: Include muscle_tab.h.
19854 (main): Call muscle_init ().
19855 * src/Makefile.am (bison_SOURCES): Echo modifications.
19856
19857 2001-09-02 Marc Autret <autret_m@epita.fr>
19858
19859 Now the files macro_tab.[ch] are named muscle_tab.[ch].
19860
19861 * src/muscle_tab.c, src/muscle_tab.h: Add files.
19862
19863 2001-09-02 Marc Autret <autret_m@epita.fr>
19864
19865 * src/macrotab.c, src/macrotab.h: Remove.
19866
19867 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
19868
19869 * src/reader.c (copy_guard): Use muscle to specify the `#line'
19870 filename.
19871
19872 2001-09-01 Marc Autret <autret_m@epita.fr>
19873
19874 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
19875 to an explicit value to activate the feature. We do it here.
19876
19877 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19878
19879 * src/output.c (prepare): Delete the `filename' muscule insertion.
19880 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
19881 (parse_union_decl): Likewise.
19882 * src/macrotab.c (macro_init): Initialize filename by infile.
19883
19884 2001-08-31 Marc Autret <autret_m@epita.fr>
19885
19886 * src/bison.simple (YYLSP_NEEDED): New definition.
19887 * src/output.c (prepare): Add macro insertion of `locations_flag'
19888
19889 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19890
19891 * src/output.c (prepare): Delete insertion of previous muscles,
19892 and insert the `prefix' muscles.
19893 * src/macrotab.c (macro_init): Likewise.
19894 (macro_init): Initialization prefix directive by `yy'.
19895 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
19896 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
19897 yylval, yydebug, yyerror, yynerrs and yyparse.
19898 New directive `#define' to substitute yydebug, ... with option
19899 name_prefix.
19900
19901 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19902
19903 * src/main.c (main): Standardize.
19904 * src/output.c (output_table_data, output_parser): Likewise.
19905 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
19906
19907 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
19908
19909 * src/reader.c (read_additionnal_code): Rename %%user_code to
19910 %%epilogue.
19911 * src/output.c (output): Rename %%declarations to %%prologue.
19912 * src/bison.simple: Echo modifications.
19913
19914 2001-08-31 Marc Autret <autret_m@epita.fr>
19915
19916 * src/reader.c (readgram): CleanUp.
19917 (output_token_defines): Likewise.
19918 (packsymbols): Likewise.
19919 (reader): Likewise.
19920 * src/output.c (output): CPP-out useless code.
19921
19922 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19923
19924 * src/reader.c (reader): Delete obsolete call to function
19925 output_trailers and output_headers.
19926 * src/output.h: Remove obsolete functions prototypes of output_headers
19927 and output_trailers.
19928
19929 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
19930
19931 * src/main.c: Include macrotab.h.
19932 * src/macrotab.h (macro_entry_s): Constify fields.
19933 Adjust functions prototypes.
19934 * src/macrotab.c (macro_insert): Constify key and value.
19935 (macro_find): Constify key.
19936 (macro_insert): Include 'xalloc.h'
19937 (macro_insert): Use XMALLOC.
19938 (macro_find): Constify return value.
19939 * src/output.c (output_table_data): Rename table to table_data.
19940 (output_parser): Constify macro_key, macro_value.
19941
19942 2001-08-30 Marc Autret <autret_m@epita.fr>
19943
19944 * src/reader.c (parse_skel_decl): New.
19945 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
19946 * src/lex.h (token_t): New token `tok_skel'.
19947 * src/lex.c (percent_table): Add skeleton option entry.
19948 Standardize.
19949
19950 2001-08-29 Marc Autret <autret_m@epita.fr>
19951
19952 * src/bison.simple: Add %%user_code directive at the end.
19953 * src/reader.c (read_additionnal_code): New.
19954 (reader): Use it.
19955 * src/output.c (output_program): Remove.
19956 (output): Update.
19957
19958 2001-08-28 Marc Autret <autret_m@epita.fr>
19959
19960 * src/output.c (output_actions): Clean up.
19961 (output_gram): CPP-out useless code.
19962 * src/reader.c (reader): Clean up, CPP-out useless code.
19963
19964 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
19965
19966 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
19967 directive.
19968 * src/bison.simple: Add `%%definitions'.
19969
19970 2001-08-28 Marc Autret <autret_m@epita.fr>
19971
19972 * config/depcomp: New file.
19973
19974 2001-08-27 Paul Eggert <eggert@twinsun.com>
19975
19976 * src/bison.simple (yyparse): Don't take the address of an
19977 item before the start of an array, as that doesn't conform to
19978 the C Standard.
19979
19980 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19981
19982 * src/output.c (output): Remove the initialization of the macro
19983 obstack. It was done too late here.
19984
19985 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
19986 completely wrong.
19987 (reader): Initialize the macro obstack here, since we need it to grow
19988 '%define' directives.
19989
19990 * src/reader.h: Declare the macro obstack as extern.
19991
19992 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19993
19994 * src/output.c (output_parser): Fix. Store single '%' characters in
19995 the output obstack instead of throwing them away.
19996
19997 2001-08-27 Akim Demaille <akim@epita.fr>
19998
19999 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
20000
20001 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20002
20003 * lib/Makefile.am: Adjust.
20004
20005 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20006
20007 * src/bison.simple: Update and add '%%' directives.
20008
20009 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20010
20011 * src/reader.c (reader): Remove calls to 'output_headers' and
20012 'output_trailers'. Remove some C output.
20013 (readgram): Disable a piece of code that was writing a default
20014 definition for 'YYSTYPE'.
20015 (reader_output_yylsp): Remove.
20016 (packsymbols): Output token defintions to a macro.
20017 (copy_definition): Disable C output.
20018
20019 * src/reader.c (parse_macro_decl): New function used to parse macro
20020 declarations.
20021 (copy_string2): Put the body of copy_string into this new function.
20022 Add a parameter to let the caller choose whether he wants to copy the
20023 string delimiters or not.
20024 (copy_string): Be a simple call to copy_string2 with the last argument
20025 bound to true.
20026 (read_declarations): Add case for macro definition.
20027 (copy_identifier): New.
20028 (parse_macro_decl): Read macro identifiers using copy_identifier
20029 rather than lex.
20030
20031 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20032
20033 * src/output.c (prepare): Add prefixed names.
20034 (output_parser): Output semantic actions.
20035 (output_parser): Fix bug on '%%line' directives.
20036
20037 * src/output.c (output_headers): Remove. The C code printed by this
20038 function should now be in the skeletons.
20039 (output_trailers): Remove.
20040 (output): Disable call to 'reader_output_yylsp'.
20041 (output_rule_data): Do not output tables to the table obstack.
20042
20043 * src/output.c: Remove some C dedicated output.
20044 Improve the use of macro and output obstacks.
20045 (output_defines): Remove.
20046
20047 * src/output.c (output_token_translations): Associate 'translate'
20048 table with a macro. No output to the table obstack.
20049 (output_gram): Same for 'rhs' and 'prhs'.
20050 (output_stos): Same for 'stos'.
20051 (output_rule_data): Same for 'r1' and 'r2'.
20052 (token_actions): Same for 'defact'.
20053 (goto_actions): Same for 'defgoto'.
20054 (output_base): Same for 'pact' and 'pgoto'.
20055 (output_table): Same for 'table'.
20056 (output_check): Same for 'check'.
20057
20058 * src/output.c (output_table_data): New function.
20059 (output_short_table): Remove.
20060 (output_short_or_char_table): Remove.
20061
20062 * src/output.c (output_parser): Replace most of the skeleton copy code
20063 with something new. Skeletons are now processed character by character
20064 rather than line by line, and Bison looks for '%%' macros. This is the
20065 first step in making Bison's output process (a lot) more flexible.
20066 (output_parser): Use the macro table.
20067
20068 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20069
20070 * src/main.c (main): Initialize the macro table.
20071
20072 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20073
20074 * src/lex.c (percent_table): Add tok_define.
20075 * src/lex.h: Add tok_define.
20076
20077 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20078
20079 * src/macrotab.c: New file.
20080 * src/macrotab.h: New file.
20081 * src/Makefile.am: Update.
20082
20083 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20084
20085 * lib/hash.c: New file.
20086 * lib/hash.h: New file.
20087 * lib/Makefile.am: Update.
20088
20089 2001-08-15 Akim Demaille <akim@epita.fr>
20090
20091 Version 1.28c.
20092
20093 2001-08-15 Marc Autret <autret_m@epita.fr>
20094
20095 * src/reader.c (readgram): Indent output macro YYSTYPE.
20096 (packsymbols): Likewise.
20097 (output_token_defines): Likewise.
20098 * src/files.c: Standardize.
20099 (compute_header_macro): New.
20100 (defines_obstack_save): New. Use compute_header_macro.
20101 (output_files): Update. Use defines_obstack_save.
20102
20103 2001-08-15 Akim Demaille <akim@epita.fr>
20104
20105 * doc/bison.texinfo (Table of Symbols): Document
20106 YYSTACK_USE_ALLOCA.
20107
20108 2001-08-15 Akim Demaille <akim@epita.fr>
20109
20110 * missing: Update from CVS Automake.
20111 * config/config.guess, config/config.sub, config/texinfo.tex:
20112 Update from gnu.org.
20113
20114 2001-08-15 Akim Demaille <akim@epita.fr>
20115
20116 * Makefile.maint: Sync with CVS Autoconf.
20117
20118 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
20119
20120 * doc/bison.texinfo: Include GNU Free Documentation License from
20121 `fdl.texi'.
20122 * doc/fdl.texi: Add to package.
20123
20124 2001-08-14 Marc Autret <autret_m@epita.fr>
20125
20126 Turn on %{source,header}_extension features.
20127
20128 * src/lex.c (percent_table): Un-CPP out header_extension and
20129 source_extension.
20130 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
20131 (compute_exts_from_src): Remove conditions. It restores priorities
20132 between options.
20133
20134 2001-08-14 Marc Autret <autret_m@epita.fr>
20135
20136 * src/files.c (compute_base_names): Add extensions computing when
20137 `--file-prefix' used.
20138 Standardize function calls.
20139
20140 2001-08-13 Marc Autret <autret_m@epita.fr>
20141
20142 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
20143 defining it (defined but null disables alloca).
20144
20145 2001-08-13 Marc Autret <autret_m@epita.fr>
20146
20147 * src/bison.simple (_yy_memcpy): CPP reformat.
20148
20149 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
20150
20151 * tests/atconfig.in (CPPFLAGS): Fix.
20152
20153 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
20154
20155 * doc/bison.texinfo: Include GNU General Public License from
20156 `gpl.texi'.
20157 * doc/gpl.texi: Add to package.
20158
20159 2001-08-10 Marc Autret <autret_m@epita.fr>
20160
20161 * src/print_graph.h: Fix.
20162 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
20163
20164 2001-08-10 Akim Demaille <akim@epita.fr>
20165
20166 * src/system.h: Provide default declarations for stpcpy, strndup,
20167 and strnlen.
20168
20169 2001-08-10 Robert Anisko <anisko_r@epita.fr>
20170
20171 * doc/bison.texinfo (Locations): Update @$ stuff.
20172
20173 2001-08-09 Robert Anisko <anisko_r@epita.fr>
20174
20175 * src/bison.simple (YYLLOC_DEFAULT): Update.
20176 (yyparse): Adjust.
20177
20178 2001-08-08 Marc Autret <autret_m@epita.fr>
20179
20180 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
20181 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
20182 Reported by Fabrice Bauzac.
20183
20184 2001-08-08 Marc Autret <autret_m@epita.fr>
20185
20186 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
20187 * src/vcg.c (output_node): Fix.
20188 * src/vcg.h: Cleanup.
20189 * src/print_graph.c: Add comments.
20190 (node_output_size): New global variable. Simplify the formatting of
20191 the VCG graph output.
20192 (print_actions): Unused code is now used. It notifies the final state
20193 and no action states in the VCG graph. It also give the reduce actions.
20194 The `shift and goto' edges are red and the `go to state' edges are
20195 blue.
20196 Get the current node name and node_obstack by argument.
20197 (node_obstack): New variable.
20198 (print_state): Manage node_obstack.
20199 (print_core): Use node_obstack given by argument.
20200 A node is not only computed here but in print_actions also.
20201 (print_graph): CPP out useless code instead of commenting it.
20202
20203 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
20204
20205 * tests/atconfig.in (CPPFLAGS): Fix.
20206
20207 2001-08-07 Akim Demaille <akim@epita.fr>
20208
20209 * src/print_graph.c (quote): New.
20210 (print_core): Use it.
20211
20212 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
20213
20214 * src/vcg.c (complain.h): Include it.
20215 Unepitaize `return' invocations.
20216 [NDEBUG] (main): Remove.
20217 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
20218 * src/files.c (open_files): Initialize graph_obstack.
20219 * src/print_graph.c (print_actions): CPP out useless code.
20220 (print_core): Don't output the last `\n' in labels.
20221 Use `quote'.
20222 * src/files.c (output_files): Output the VCG file.
20223 * src/main.c (main): Invoke print_graph ();
20224
20225 2001-08-06 Marc Autret <autret_m@epita.fr>
20226
20227 Automaton VCG graph output.
20228 Using option ``-g'' or long option ``--graph'', you can generate
20229 a gram_filename.vcg file containing a VCG description of the LALR (1)
20230 automaton of your grammar.
20231
20232 * src/main.c: Call to print_graph() function.
20233 * src/getargs.h: Update.
20234 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
20235 (graph_flag): New flag.
20236 (longopts): Update.
20237 (getargs): Add case `g'.
20238 * src/files.c (graph_obstack): New obstack struct.
20239 (open_files): Initialize new obstack.
20240 (output_files): Saves graph_obstack if required.
20241 * src/files.h (graph_obstack): New extern declaration.
20242 * src/Makefile.am: Add new source files.
20243
20244 2001-08-06 Marc Autret <autret_m@epita.fr>
20245
20246 * src/print_graph.c, src/print_graph.h (graph): New.
20247 * src/vcg.h: New file.
20248 * src/vcg.c: New file, VCG graph handling.
20249
20250 2001-08-06 Marc Autret <autret_m@epita.fr>
20251
20252 Add of %source_extension and %header_extension which specify
20253 the source or/and the header output file extension.
20254
20255 * src/files.c (compute_base_names): Remove initialisation of
20256 src_extension and header_extension.
20257 (compute_exts_from_gf): Update.
20258 (compute_exts_from_src): Update.
20259 (output_files): Update.
20260 * src/reader.c (parse_header_extension_decl): New.
20261 (parse_source_extension_decl): New.
20262 (read_declarations): New case statements for the new tokens.
20263 * src/lex.c (percent_table): Add entries for %source_extension
20264 and %header_extension.
20265 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
20266
20267 2001-08-06 Marc Autret <autret_m@epita.fr>
20268
20269 * configure.in: Bump to 1.28c.
20270 * doc/bison.texinfo: Texinfo thingies.
20271
20272 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
20273
20274 * tests/atconfig.in (CPPFLAGS): Add.
20275 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
20276
20277 2001-08-03 Akim Demaille <akim@epita.fr>
20278
20279 Version 1.28b.
20280
20281 2001-08-03 Akim Demaille <akim@epita.fr>
20282
20283 * tests/Makefile.am (check-local): Ship testsuite.
20284 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
20285 Include `string.h'.
20286
20287 2001-08-03 Akim Demaille <akim@epita.fr>
20288
20289 * configure.in: Try using -Wformat when compiling.
20290
20291 2001-08-03 Akim Demaille <akim@epita.fr>
20292
20293 * configure.in: Bump to 1.28b.
20294
20295 2001-08-03 Akim Demaille <akim@epita.fr>
20296
20297 * src/complain.c: Adjust strerror_r portability issues.
20298
20299 2001-08-03 Akim Demaille <akim@epita.fr>
20300
20301 Version 1.28a.
20302
20303 2001-08-03 Akim Demaille <akim@epita.fr>
20304
20305 * src/getargs.c, src/getarg.h (skeleton)): Constify.
20306 * src/lex.c (literalchar): Avoid name clashes on `buf'.
20307 * src/getargs.c: Include complain.h.
20308 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
20309 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
20310
20311 2001-08-03 Akim Demaille <akim@epita.fr>
20312
20313 * src/reader.c (readgram): Display hidden chars in error messages.
20314
20315 2001-08-03 Akim Demaille <akim@epita.fr>
20316
20317 Update to gettext 0.10.39.
20318
20319 2001-08-03 Akim Demaille <akim@epita.fr>
20320
20321 * lib/strspn.c: New.
20322
20323 2001-08-01 Marc Autret <autret_m@epita.fr>
20324
20325 * doc/bison.texinfo: Update.
20326 * doc/bison.1 (mandoc): Update.
20327 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20328 * src/files.c: Support output files extensions computing.
20329 (src_extension): New static variable.
20330 (header_extension): New static variable.
20331 (tr): New function.
20332 (get_extension_index): New function, gets the index of an extension
20333 filename in a string.
20334 (compute_exts_from_gf): New function, computes extensions from the
20335 grammar file extension.
20336 (compute_exts_from_src): New functions, computes extensions from the
20337 C source file extension, file given by ``-o'' option.
20338 (compute_base_names): Update.
20339 (output_files): Update.
20340
20341 2001-08-01 Robert Anisko <anisko_r@epita.fr>
20342
20343 * doc/bison.texi: Document @$.
20344 (Locations): New section.
20345
20346 2001-07-18 Akim Demaille <akim@epita.fr>
20347
20348 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20349 * config/prev-version.txt, config/move-if-change: New.
20350 * Makefile.am: Adjust.
20351
20352 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
20353
20354 * src/bison.simple (yyparse): Suppress warning `comparaison
20355 between signed and unsigned'.
20356
20357 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
20358
20359 * src/getargs.h (raw_flag): Remove.
20360 * src/getargs.c: Die on `-r'/`--raw'.
20361 * src/lex.c (parse_percent_token): Die on `%raw'.
20362 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20363 * tests/calc.at: Suppress test with option `--raw'.
20364
20365 2001-07-14 Akim Demaille <akim@epita.fr>
20366
20367 * config/: New.
20368 * configure.in: Require Autoconf 2.50.
20369 Update to gettext 0.10.38.
20370
20371 2001-03-16 Akim Demaille <akim@epita.fr>
20372
20373 * doc/bison.texinfo: ANSIfy the examples.
20374
20375 2001-03-16 Akim Demaille <akim@epita.fr>
20376
20377 * getargs.c (skeleton): New variable.
20378 (longopts): --skeleton is a new option.
20379 (shortopts, getargs): -S is a new option.
20380 * getargs.h: Declare skeleton.
20381 * output.c (output_parser): Use it.
20382
20383 2001-03-16 Akim Demaille <akim@epita.fr>
20384
20385 * m4/strerror_r.m4: New.
20386 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20387 * lib/error.h, lib/error.c: Update.
20388
20389 2001-03-16 Akim Demaille <akim@epita.fr>
20390
20391 * src/getargs.c (longopts): Clean up.
20392
20393 2001-02-21 Akim Demaille <akim@epita.fr>
20394
20395 * src/reader.c (gensym): `gensym_count' is your own.
20396 Use a static buf to create the symbol name, as token_buffer is no
20397 longer a buffer.
20398
20399 2001-02-08 Akim Demaille <akim@epita.fr>
20400
20401 * src/conflicts.c (conflict_report): Be sure not to append to res
20402 between two calls, which could happen if both first sprintf were
20403 skipped, but not the first cp += strlen.
20404
20405 2001-02-08 Akim Demaille <akim@epita.fr>
20406
20407 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20408 New, from fileutils 4.0.37.
20409 * configure.in: Require Autoconf 2.49c. I took some time before
20410 making this decision. This is the only way out for portability
20411 issues in Bison, it would mean way too much duplicate effort to
20412 import in Bison features implemented in 2.49c since 2.13.
20413 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20414
20415 2001-02-02 Akim Demaille <akim@epita.fr>
20416
20417 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
20418 * lib/xalloc.h, lib/xmalloc.c: Update.
20419
20420 2001-01-19 Akim Demaille <akim@epita.fr>
20421
20422 Get rid of the ad hoc handling of token_buffer in the scanner: use
20423 the obstacks.
20424
20425 * src/lex.c (token_obstack): New.
20426 (init_lex): Initialize it. No longer call...
20427 (grow_token_buffer): this. Remove it.
20428 Adjust all the places which used it to use the obstack.
20429
20430 2001-01-19 Akim Demaille <akim@epita.fr>
20431
20432 * src/lex.h: Rename all the tokens:
20433 s/\bENDFILE\b/tok_eof/g;
20434 s/\bIDENTIFIER\b/tok_identifier/g;
20435 etc.
20436 Let them be enums, not #define, to ease debugging.
20437 Adjust all the code.
20438
20439 2001-01-18 Akim Demaille <akim@epita.fr>
20440
20441 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20442 * src/lex.c (maxtoken, grow_token_buffer): Static.
20443
20444 2001-01-18 Akim Demaille <akim@epita.fr>
20445
20446 Since we now use obstacks, more % directives can be enabled.
20447
20448 * src/lex.c (percent_table): Also accept `%yacc',
20449 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20450 `%debug'.
20451 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20452 instead of returning a token.
20453 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20454 * src/reader.c (read_declarations): Adjust.
20455 * src/files.c (open_files): Don't call `compute_base_names', don't
20456 compute `attrsfile' since they depend upon data which might be
20457 *in* the input file now.
20458 (output_files): Do it here.
20459 * src/output.c (output_headers): Document the fact that this patch
20460 introduces a guaranteed SEGV for semantic parsers.
20461 * doc/bison.texinfo: Document them.
20462 * tests/suite.at: Exercise these %options.
20463
20464 2000-12-20 Akim Demaille <akim@epita.fr>
20465
20466 Also handle the output file (--verbose) with obstacks.
20467
20468 * files.c (foutput): Remove.
20469 (output_obstack): New.
20470 Adjust all dependencies.
20471 * src/conflicts.c: Return a string.
20472 * src/system.h (obstack_grow_string): Rename as...
20473 (obstack_sgrow): this. Be ready to work with non literals.
20474 (obstack_fgrow4): New.
20475
20476 2000-12-20 Akim Demaille <akim@epita.fr>
20477
20478 * src/files.c (open_files): Fix the computation of short_base_name
20479 in the case of `-o foo.tab.c'.
20480
20481 2000-12-20 Akim Demaille <akim@epita.fr>
20482
20483 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20484 (copy_dollar): Now that everything uses obstacks, get rid of the
20485 FILE * parameters.
20486
20487 2000-12-20 Akim Demaille <akim@epita.fr>
20488
20489 * src/files.c (open_files): Actually the `.output' file is based
20490 on the short_base_name, not base_name.
20491 * tests/suite.at (Checking output file names): Adjust.
20492
20493 2000-12-20 Akim Demaille <akim@epita.fr>
20494
20495 * src/bison.s1: Remove, we now use directly...
20496 * src/bison.simple: this.
20497 * src/Makefile.am: Use pkgdata instead of data.
20498
20499 2000-12-20 Akim Demaille <akim@epita.fr>
20500
20501 * src/files.c (guard_obstack): New.
20502 (open_files): Initialize it.
20503 (output_files): Dump it...
20504 * src/files.h: Export it.
20505 * src/reader.c (copy_guard): Use it.
20506
20507 2000-12-19 Akim Demaille <akim@epita.fr>
20508
20509 * src/files.c (outfile, defsfile, actfile): Removed as global
20510 vars.
20511 (open_files): Don't compute them.
20512 (output_files): Adjust.
20513 (base_name, short_base_name): Be global.
20514 Adjust dependencies.
20515
20516 2000-12-19 Akim Demaille <akim@epita.fr>
20517
20518 * src/files.c (strsuffix): New.
20519 (stringappend): Be just like strcat but allocate.
20520 (base_names): Eve out from open_files.
20521 Try to simplify the rather hairy computation of base_name and
20522 short_base_name.
20523 (open_files): Use it.
20524 * tests/suite.at (Checking output file names): New test.
20525
20526 2000-12-19 Akim Demaille <akim@epita.fr>
20527
20528 * src/system.h (obstack_grow_literal_string): Rename as...
20529 (obstack_grow_string): this.
20530 * src/output.c (output_parser): Recognize `%% actions' instead of
20531 `$'.
20532 * src/bison.s1: s/$/%% actions/.
20533 * src/bison.hairy: Likewise.
20534
20535 2000-12-19 Akim Demaille <akim@epita.fr>
20536
20537 * src/output.c (output_parser): Compute the `#line' lines when
20538 there are.
20539 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20540 Suggested by Hans Aberg.
20541
20542 2000-12-19 Akim Demaille <akim@epita.fr>
20543
20544 Let the handling of the skeleton files be local to the procedures
20545 that use it.
20546
20547 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20548 longer static.
20549 (fparser, open_extra_files): Remove.
20550 (open_files, output_files): Don't take care of fparser.
20551 * src/files.h: Adjust.
20552 * src/output.c (output_parser): Open and close the file to the
20553 skeleton.
20554 * src/reader.c (read_declarations): When %semantic_parser, open
20555 fguard.
20556
20557 2000-12-19 Akim Demaille <akim@epita.fr>
20558
20559 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20560 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20561
20562 2000-12-19 Akim Demaille <akim@epita.fr>
20563
20564 * src/files.c (open_files): Yipee! We no longer need all the code
20565 looking for `/tmp' since we have no tmp file.
20566
20567 2000-12-19 Akim Demaille <akim@epita.fr>
20568
20569 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20570 New macros.
20571 * src/files.c (open_files): Less dependency on MSDOS etc.
20572
20573 2000-12-14 Akim Demaille <akim@epita.fr>
20574
20575 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20576 Provide a default definition.
20577 Use it when executing the default @ action.
20578 * src/reader.c (reader_output_yylsp): No longer include
20579 `timestamp' and `text' in the default YYLTYPE.
20580
20581 2000-12-12 Akim Demaille <akim@epita.fr>
20582
20583 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20584 (copy_guard): Quote the file names.
20585 Reported by Laurent Mascherpa.
20586
20587 2000-12-12 Akim Demaille <akim@epita.fr>
20588
20589 * src/output.c (output_headers, output_program, output): Be sure
20590 to escape special characters when outputting filenames.
20591 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20592 (output_headers): Don't depend on them, Use ACTSTR.
20593
20594 2000-11-17 Akim Demaille <akim@epita.fr>
20595
20596 * lib/obstack.h: Formatting changes.
20597 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20598 prevents type checking.
20599 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20600 cast the value to (void *): assigning a `foo *' to a `void *'
20601 variable is valid.
20602 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20603 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20604 append characters.
20605
20606 2000-11-17 Akim Demaille <akim@epita.fr>
20607
20608 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20609 as...
20610 (suite.m4, regression.m4, calc.m4): these.
20611 * tests/atgeneral.m4: Update from CVS Autoconf.
20612
20613 2000-11-17 Akim Demaille <akim@epita.fr>
20614
20615 * tests/regression.m4 (%union and --defines): New test,
20616 demonstrating a current bug in the obstack implementation.
20617
20618 2000-11-17 Akim Demaille <akim@epita.fr>
20619
20620 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20621 macros.
20622 Use them to declare the variables which are global or local to
20623 `yyparse'.
20624
20625 2000-11-17 Akim Demaille <akim@epita.fr>
20626
20627 * acconfig.h: Remove, no longer used.
20628
20629 2000-11-07 Akim Demaille <akim@epita.fr>
20630
20631 * src: s/Copyright (C)/Copyright/g.
20632
20633 2000-11-07 Akim Demaille <akim@epita.fr>
20634
20635 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20636 defining.
20637 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20638
20639 2000-11-07 Akim Demaille <akim@epita.fr>
20640
20641 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20642 Merge in a single CPP if/else.
20643
20644 2000-11-07 Akim Demaille <akim@epita.fr>
20645
20646 * src/output.c (output): Remove useless variables.
20647 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20648 argument `data' for consistency with the prototypes.
20649 Qualify it `const'.
20650 (obstack_copy, obstack_copy0): Rename the second argument as
20651 `address' for consistency. Qualify it `const'.
20652 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20653 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20654 `const' their input argument (`data' or `address').
20655 Adjust the corresponding macros to include `const' in casts.
20656
20657 2000-11-03 Akim Demaille <akim@epita.fr>
20658
20659 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
20660 s/PFILE1/BISON_HAIRY/.
20661 Adjust dependencies.
20662
20663 2000-11-03 Akim Demaille <akim@epita.fr>
20664
20665 For some reason, this was not applied.
20666
20667 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20668 `unlink': it's no longer used.
20669
20670 2000-11-03 Akim Demaille <akim@epita.fr>
20671
20672 * src/files.c (skeleton_find): New function, eved out of...
20673 (open_files, open_extra_files): here.
20674
20675 2000-11-03 Akim Demaille <akim@epita.fr>
20676
20677 Don't use `atexit'.
20678
20679 * src/files.c (obstack_save): New function.
20680 (done): Rename as...
20681 (output_files): this.
20682 Use `obstack_save'.
20683 * src/main.c (main): Don't use `atexit' to register `done', since
20684 it no longer has to remove tmp files, just call `output_files'
20685 when there are no errors.
20686
20687 2000-11-02 Akim Demaille <akim@epita.fr>
20688
20689 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20690 `unlink': it's no longer used.
20691 * src/files.h: Formatting changes.
20692
20693 2000-11-02 Akim Demaille <akim@epita.fr>
20694
20695 Remove the last uses of mktemp and unlink/delete.
20696
20697 * src/files.c (fdefines, ftable): Removed.
20698 (defines_ostack, table_obstack): New.
20699 Adjust dependencies of the former into uses of the latter.
20700 * src/output.c (output_short_or_char_table, output_short_table):
20701 Convert to using obstacks.
20702 * src/reader.c (copy_comment2): Accept one FILE * and two
20703 obstacks.
20704 (output_token_defines, reader_output_yylsp): Use obstacks.
20705 * src/system.h (obstack_fgrow3): New.
20706 * po/POTFILES.in: Adjust.
20707
20708 2000-11-01 Akim Demaille <akim@epita.fr>
20709
20710 Change each use of `fattrs' into a use of `attrs_obstack'.
20711
20712 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
20713 * src/files.c (fattrs): Remove.
20714 (attrs_obstack): New.
20715 Adjust all dependencies.
20716 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
20717
20718 2000-11-01 Akim Demaille <akim@epita.fr>
20719
20720 Introduce obstacks.
20721 Change each use of `faction' into a use of `action_obstack'.
20722
20723 * lib/obstack.h, lib/obstack.c: New files.
20724 * src/files.c (faction): Remove.
20725 (action_obstack): New.
20726 Adjust all dependencies.
20727
20728 2000-10-20 Akim Demaille <akim@epita.fr>
20729
20730 * lib/quote.h (PARAMS): New macro. Use it.
20731
20732 2000-10-16 Akim Demaille <akim@epita.fr>
20733
20734 * src/output.c (output_short_or_char_table): New function.
20735 (output_short_table, output_token_translations): Use it.
20736 (goto_actions): Use output_short_table.
20737
20738 2000-10-16 Akim Demaille <akim@epita.fr>
20739
20740 * src/symtab.c (bucket_new): New function.
20741 (getsym): Use it.
20742
20743 * src/output.c (output_short_table): New argument to display the
20744 comment associated with the table.
20745 Adjust dependencies.
20746 (output_gram): Use it.
20747 (output_rule_data): Nicer output layout for YYTNAME.
20748
20749 2000-10-16 Akim Demaille <akim@epita.fr>
20750
20751 * src/lex.c (read_typename): New function.
20752 (lex): Use it.
20753 * src/reader.c (copy_dollar): Likewise.
20754
20755 2000-10-16 Akim Demaille <akim@epita.fr>
20756
20757 * src/reader.c (copy_comment2): Expect the input stream to be on
20758 the `/' which is suspected to open a comment, instead of being
20759 called after `//' or `/*' was read.
20760 (copy_comment, copy_definition, parse_union_decl, copy_action)
20761 (copy_guard): Adjust.
20762
20763 2000-10-16 Akim Demaille <akim@epita.fr>
20764
20765 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
20766 `read_signed_integer'.
20767
20768 2000-10-16 Akim Demaille <akim@epita.fr>
20769
20770 * src/reader.c (copy_dollar): New function.
20771 (copy_guard, copy_action): Use it.
20772
20773 2000-10-16 Akim Demaille <akim@epita.fr>
20774
20775 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
20776 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
20777 New files, from Fileutils 4.0.27.
20778 * src/main.c (printable_version): Remove.
20779 * src/lex.c, src/reader.c: Use `quote'.
20780
20781 2000-10-04 Akim Demaille <akim@epita.fr>
20782
20783 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
20784
20785 2000-10-04 Akim Demaille <akim@epita.fr>
20786
20787 * doc/bison.texinfo: Various typos spotted by Neil Booth.
20788
20789 2000-10-04 Akim Demaille <akim@epita.fr>
20790
20791 When a literal string is used to define two different tokens,
20792 `bison -v' segfaults.
20793 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
20794
20795 * tests/regression.m4: New file.
20796 Include the core of the sample provided by Piotr Gackiewicz.
20797 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
20798 properly.
20799
20800 2000-10-04 Akim Demaille <akim@epita.fr>
20801
20802 * src/reader.c (parse_expect_decl): Keep `count' within the size
20803 of `buffer'.
20804 From Neil Booth.
20805
20806 2000-10-02 Paul Eggert <eggert@twinsun.com>
20807
20808 * bison.s1 (yyparse): Assign the default value
20809 unconditionally, to avoid a GCC warning and make the parser a
20810 tad smaller.
20811
20812 2000-10-02 Akim Demaille <akim@epita.fr>
20813
20814 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
20815 options.
20816
20817 2000-10-02 Akim Demaille <akim@epita.fr>
20818
20819 * src/derives.c, src/print.c, src/reduce.c: To ease the
20820 translation, move some `\n' out of the translated strings.
20821
20822 2000-10-02 Akim Demaille <akim@epita.fr>
20823
20824 The location tracking mechanism is precious for parse error
20825 messages. Nevertheless, it is enabled only when `@n' is used in
20826 the grammar, which is a different issue (you can use it in error
20827 message, but not in the grammar per se). Therefore, there should
20828 be another means to enable it.
20829
20830 * src/getargs.c (getargs): Support `--locations'.
20831 (usage): Report it.
20832 * src/getargs.h (locationsflag): Export it.
20833 * src/lex.c (percent_table): Support `%locations'.
20834 * src/reader.c (yylsp_needed): Remove this variable, now replaced
20835 with `locationsflag'.
20836 * doc/bison.texinfo: Document `--locations' and `%locations'.
20837 Sort the options.
20838 * tests/calc.m4: Test it.
20839
20840 For regularity of the names, replace each
20841 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
20842 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
20843 In addition replace each `flag' with `_flag'.
20844
20845 2000-10-02 Akim Demaille <akim@epita.fr>
20846
20847 Also test parse error messages, including with YYERROR_VERBOSE.
20848
20849 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
20850 associative).
20851 Use it to check the computations.
20852 Use it to check `nonassoc' is honored.
20853 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
20854 `--yyerror-verbose'.
20855 (_AT_CHECK_CALC): Adjust to this option.
20856 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
20857
20858 2000-10-02 Akim Demaille <akim@epita.fr>
20859
20860 Test also `--verbose', `--defines' and `--name-prefix'. Testing
20861 the latter demonstrates a flaw in the handling of non debugging
20862 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
20863 was used in order to simplify:
20864
20865 #if YYDEBUG
20866 if (yydebug)
20867 {
20868 ...
20869 }
20870 #endif
20871
20872 into
20873
20874 if (yydebug)
20875 {
20876 ...
20877 }
20878
20879 unfortunately this leads to a CPP conflict when
20880 `--name-prefix=foo' is used since it produces `#define yydebug
20881 foodebug'.
20882
20883 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
20884 (YYDPRINTF): New macro.
20885 Spread its use.
20886 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
20887 the bison options.
20888 Also test `--verbose', `--defines' and `--name-prefix'.
20889
20890 2000-10-02 Akim Demaille <akim@epita.fr>
20891
20892 Improve the readability of the produced parsers.
20893
20894 * src/bison.s1: Formatting changes.
20895 Improve the comment related to the `$' mark.
20896 (yydefault): Don't fall through to `yyresume': `goto' there.
20897 * src/output.c (output_parser): When the `$' is met, skip the end
20898 of its line.
20899 New variable, `number_of_dollar_signs', to check there's exactly
20900 one `$' in the parser skeleton.
20901
20902 2000-10-02 Akim Demaille <akim@epita.fr>
20903
20904 * lib/xstrdup.c: New file, from the fileutils.
20905 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
20906 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
20907 instead of strlen + xmalloc + strcpy.
20908 * src/symtab.c (copys): Remove, use xstrdup instead.
20909
20910 2000-10-02 Akim Demaille <akim@epita.fr>
20911
20912 * src/gram.h (associativity): New enum type which replaces the
20913 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
20914 `right_assoc', `left_assoc' and `non_assoc'.
20915 Adjust all dependencies.
20916 * src/reader.c: Formatting changes.
20917 (LTYPESTR): Don't define it, use it as a literal in
20918 `reader_output_yylsp'.
20919 * src/symtab.h (symbol_class): New enum type which replaces the
20920 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
20921 `sunknown', `stoken and `snterm'.
20922
20923 2000-10-02 Akim Demaille <akim@epita.fr>
20924
20925 * src/getargs.c (fixed_outfiles): Rename as...
20926 (yaccflag): for consistency and accuracy.
20927 Adjust dependencies.
20928
20929 2000-10-02 Akim Demaille <akim@epita.fr>
20930
20931 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
20932 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
20933 difficult and introduced a lot of core dump. It turns out that
20934 Bison used an implementation of `xmalloc' based on `calloc', and
20935 at various places it does depend upon the initialization to 0. I
20936 have not tried to isolate the pertinent places, and all the former
20937 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
20938 someone should address this issue.
20939
20940 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
20941 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
20942 files.
20943 Adjust dependencies.
20944 * src/warshall.h: New file.
20945 Propagate.
20946
20947 2000-10-02 Akim Demaille <akim@epita.fr>
20948
20949 Various anti-`extern in *.c' changes.
20950
20951 * src/system.h: Include `assert.h'.
20952
20953 2000-10-02 Akim Demaille <akim@epita.fr>
20954
20955 * src/state.h (nstates, final_state, first_state, first_shift)
20956 (first_reduction): Move their exportation from here...
20957 * src/LR0.h: to here.
20958 Adjust dependencies.
20959 * src/getargs.c (statisticsflag): New variable.
20960 Add support for `--statistics'.
20961 Adjust dependencies.
20962
20963 Remove a lot of now useless `extern' statements in most files.
20964
20965 2000-10-02 Akim Demaille <akim@epita.fr>
20966
20967 * src/LR0.h: New file.
20968 Propagate its use.
20969
20970 2000-10-02 Akim Demaille <akim@epita.fr>
20971
20972 * src/print.h: New file.
20973 Propagate its use.
20974 * src/print.c: Formatting and ordering changes.
20975 (verbose, terse): Replace with...
20976 (print_results): this new function.
20977 Adjust dependencies.
20978
20979 2000-10-02 Akim Demaille <akim@epita.fr>
20980
20981 * src/conflicts.c (conflict_report): New function.
20982 (conflict_log, verbose_conflict_log): Replace with...
20983 (print_conflicts): this function.
20984 Adjust dependencies.
20985 * src/conflicts.h: New file.
20986 Propagate its inclusion.
20987
20988 2000-10-02 Akim Demaille <akim@epita.fr>
20989
20990 * src/nullable.h: New file.
20991 Propagate its inclusion.
20992 * src/nullable.c: Formatting changes.
20993
20994 2000-10-02 Akim Demaille <akim@epita.fr>
20995
20996 * src/reduce.h: New file.
20997 Propagate its inclusion.
20998 * src/reduce.c: Topological sort and other formatting changes.
20999 (bool, TRUE, FALSE): Move their definition to...
21000 * src/system.h: here.
21001
21002 2000-10-02 Akim Demaille <akim@epita.fr>
21003
21004 * src/files.c: Formatting changes.
21005 (tryopen, tryclose, openfiles): Rename as...
21006 (xfopen, xfclose, open_files): this.
21007 (stringappend): static.
21008 * src/files.h: Complete the list of exported symbols.
21009 Propagate its use.
21010
21011 2000-10-02 Akim Demaille <akim@epita.fr>
21012
21013 * src/reader.h: New file.
21014 Propagate its use instead of tedious list of `extern' and
21015 prototypes.
21016 * src/reader.c: Formatting changes, topological sort,
21017 s/register//.
21018
21019 2000-10-02 Akim Demaille <akim@epita.fr>
21020
21021 * src/lex.h: Prototype `lex.c' exported functions.
21022 * src/reader.c: Adjust.
21023 * src/lex.c: Formatting changes.
21024 (safegetc): Rename as...
21025 (xgetc): this.
21026
21027 2000-10-02 Akim Demaille <akim@epita.fr>
21028
21029 * src/lalr.h: New file.
21030 Propagate its inclusion instead of prototypes and `extern'.
21031 * src/lalr.c: Formatting changes, topological sorting etc.
21032
21033 2000-10-02 Akim Demaille <akim@epita.fr>
21034
21035 * src/output.c (token_actions): Introduce a temporary array,
21036 YYDEFACT, that makes it possible for this function to use
21037 output_short_table.
21038
21039 2000-10-02 Akim Demaille <akim@epita.fr>
21040
21041 `user_toknums' is output as a `short[]' in `output.c', while it is
21042 defined as a `int[]' in `reader.c'. For consistency with the
21043 other output tables, `user_toknums' is now defined as a table of
21044 shorts.
21045
21046 * src/reader.c (user_toknums): Be a short table instead of an int
21047 table.
21048 Adjust dependencies.
21049
21050 Factor the short table outputs.
21051
21052 * src/output.c (output_short_table): New function.
21053 * src/output.c (output_gram, output_stos, output_rule_data)
21054 (output_base, output_table, output_check): Use it.
21055
21056 2000-10-02 Akim Demaille <akim@epita.fr>
21057
21058 * src/output.c (output): Topological sort of the functions, in
21059 order to get rid of the `static' prototypes.
21060 No longer use `register'.
21061 * src/output.h: New file.
21062 Propagate its inclusion in files explicitly prototyping functions
21063 from output.c.
21064
21065 2000-09-21 Akim Demaille <akim@epita.fr>
21066
21067 * src/atgeneral.m4: Update from Autoconf.
21068
21069 2000-09-21 Akim Demaille <akim@epita.fr>
21070
21071 * src/closure.h: New file.
21072 * src/closure.c: Formatting changes, topological sort over the
21073 functions, use of closure.h.
21074 (initialize_closure, finalize_closure): Rename as...
21075 (new_closure, free_closure): these. Adjust dependencies.
21076 * src/LR0.c: Formatting changes, topological sort, use of
21077 cloture.h.
21078 (initialize_states): Rename as...
21079 (new_states): this.
21080 * src/Makefile.am (noinst_HEADERS): Adjust.
21081
21082 2000-09-20 Akim Demaille <akim@epita.fr>
21083
21084 * src/acconfig.h: Don't protect config.h against multiple
21085 inclusion.
21086 Don't define PARAMS.
21087 * src/system.h: Define PARAMS.
21088 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
21089 purpose of config.h. system.h must not try to fix wrong
21090 definitions in config.h.
21091
21092 2000-09-20 Akim Demaille <akim@epita.fr>
21093
21094 * src/derives.h: New file.
21095 * src/main.c, src/derives.h: Use it.
21096 Formatting changes.
21097 * src/Makefile.am (noinst_HEADERS): Adjust.
21098
21099 2000-09-20 Akim Demaille <akim@epita.fr>
21100
21101 * tests/atgeneral.m4: Update from Autoconf.
21102 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
21103 (AT_CHECK_CALC): New macros.
21104 Use these macros to test bison with options `', `--raw',
21105 `--debug', `--yacc', `--yacc --debug'.
21106
21107 2000-09-19 Akim Demaille <akim@epita.fr>
21108
21109 * src/output.c: Formatting changes.
21110 * src/machine.h: Remove, leaving its contents in...
21111 * src/system.h: here.
21112 Include stdio.h.
21113 Adjust all dependencies on stdio.h and machine.h.
21114 * src/getargs.h: New file.
21115 Let all `extern' declarations about getargs.c be replaced with
21116 inclusion of `getargs.h'.
21117 * src/Makefile.am (noinst_HEADERS): Adjust.
21118
21119 * tests/calc.m4 (yyin): Be initialized in main, not on the global
21120 scope.
21121 (yyerror): Returns void, not int.
21122 * doc/bison.texinfo: Formatting changes.
21123
21124 2000-09-19 Akim Demaille <akim@epita.fr>
21125
21126 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
21127 portable.
21128
21129 2000-09-18 Akim Demaille <akim@epita.fr>
21130
21131 * configure.in: Append WARNING_CFLAGS to CFLAGS.
21132 * src/Makefile.am (INCLUDES): Don't.
21133 Be ready to fetch headers in lib/.
21134
21135 2000-09-18 Akim Demaille <akim@epita.fr>
21136
21137 * doc/bison.texinfo: Update the copyright.
21138 ANSIfy and GNUify the examples.
21139 Remove the old menu.
21140
21141 2000-09-18 Akim Demaille <akim@epita.fr>
21142
21143 First set of tests: use the `calc' example from the documentation.
21144
21145 * src/bison.s1 (yyparse): Condition the code using `yytname' which
21146 is defined only when YYDEBUG is.
21147 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
21148 * src/files.c (tryopen, tryclose): Formatting changes.
21149 Move to the top and be static.
21150 * src/reader.c (read_signed_integer): Likewise.
21151 * tests/calc.m4: New file.
21152 * Makefile.am, suite.m4: Adjust.
21153 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
21154
21155 2000-09-18 Akim Demaille <akim@epita.fr>
21156
21157 Add support for an Autotest test suite for Bison.
21158
21159 * m4/m4.m4, m4/atconfig.m4: New files.
21160 * m4/Makefile.am (EXTRA_DIST): Adjust.
21161 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
21162 files.
21163 * src/getargs.c: Display a more standard --version message.
21164 * src/reader.c (reader): Formatting changes.
21165 No longer depend upon VERSION_STRING.
21166 * configure.in: No longer use `dnl'.
21167 Set up the test suite and the new directory `tests/.
21168 (VERSION_STRING): Remove.
21169
21170 2000-04-14 Akim Demaille <akim@epita.fr>
21171
21172 * src/reader.c (copy_comment2): New function, same as former
21173 `copy_comment', but outputs into two FILE *.
21174 (copy_comment): Use it.
21175 (parse_union_decl): Use it.
21176 (get_type, parse_start_decl): Use the same `invalid' message.
21177 (parse_start_decl, parse_union_decl): Use the same `multiple'
21178 message.
21179 (parse_union_decl, copy_guard, copy_action): Use the same
21180 `unmatched' message.
21181 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
21182
21183 2000-03-31 Akim Demaille <akim@epita.fr>
21184
21185 * src/files.c (tryopen, tryclose): Move to the top.
21186 Be static.
21187
21188 2000-03-31 Akim Demaille <akim@epita.fr>
21189
21190 * src/main.c (main): Don't call `done', exit does it.
21191
21192 2000-03-31 Akim Demaille <akim@epita.fr>
21193
21194 * allocate.c: s/return (foo)/return foo/.
21195 * lalr.c: Likewise.
21196 * LR0.c: Likewise.
21197 * output.c: Likewise.
21198 * reader.c: Likewise.
21199 * symtab.c: Likewise.
21200 * vmsgetargs.c: Likewise.
21201
21202 2000-03-31 Akim Demaille <akim@epita.fr>
21203
21204 Clean up the error reporting functions.
21205
21206 * src/report.c: New file.
21207 * src/report.h: Likewise.
21208 * src/Makefile.am: Adjust.
21209 * m4/error.m4: New file.
21210 * m4/Makefile.am: Adjust.
21211 * configure.in (jm_PREREQ_ERROR): Call it.
21212 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
21213 Remove.
21214 (fatal, fatals): Remove. All callers use complain.c::fatal.
21215 (warn, warni, warns, warnss, warnss): Remove. All callers use
21216 complain.c::complain.
21217 (toomany): Remove, use fatal instead.
21218 * src/files.c (done): No argument, use complain_message_count.
21219 * src/main.c (main): Register `done' to `atexit'.
21220
21221 * src/getargs.c (usage): More `fputs', less `fprintf'.
21222
21223 2000-03-28 Akim Demaille <akim@epita.fr>
21224
21225 * lib/: New directory.
21226 * Makefile.am (SUBDIRS): Adjust.
21227 * configure.in: Adjust.
21228 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
21229 useless.
21230 * src/alloca.c: Moved to lib/.
21231 * src/getopt.c: Likewise.
21232 * src/getopt1.c: Likewise.
21233 * src/getopt.h: Likewise.
21234 * src/ansi2knr.c: Likewise.
21235 * src/ansi2knr.1: Likewise.
21236 * src/Makefile.am: Adjust.
21237 * lib/Makefile.am: New file.
21238
21239 2000-03-28 Akim Demaille <akim@epita.fr>
21240
21241 * src/getargs.c (usage): Refresh the help message.
21242
21243 2000-03-17 Akim Demaille <akim@epita.fr>
21244
21245 * src/getopt1.c: Updated from textutils 2.0e
21246 * src/getopt.c: Likewise.
21247 * src/getopt.h: Likewise.
21248
21249 2000-03-17 Akim Demaille <akim@epita.fr>
21250
21251 * src/Makefile.am (bison.simple): Fix the awk program: quote only
21252 the file name, not the whole `#line LINE FILE'.
21253
21254 2000-03-17 Akim Demaille <akim@epita.fr>
21255
21256 On syntax errors, report the token on which we choked.
21257
21258 * src/bison.s1 (yyparse): In the label yyerrlab, when
21259 YYERROR_VERBOSE, add yychar in msg.
21260
21261 2000-03-17 Akim Demaille <akim@epita.fr>
21262
21263 * src/reader.c (copy_at): New function.
21264 (copy_guard): Use it.
21265 (copy_action): Use it.
21266
21267 2000-03-17 Akim Demaille <akim@epita.fr>
21268
21269 Be kind to translators, save some useless translations.
21270
21271 * src/main.c (banner): New function.
21272 (fatal_banner): Use it.
21273 (warn_banner): Use it.
21274
21275 2000-03-17 Akim Demaille <akim@epita.fr>
21276
21277 * src/reader.c (copy_definition): Use copy_string and
21278 copy_comment. Removed now unused `match', `ended',
21279 `cplus_comment'.
21280 (copy_comment, copy_string): Moved, to be visible from
21281 copy_definition.
21282
21283 2000-03-17 Akim Demaille <akim@epita.fr>
21284
21285 * src/reader.c (copy_string): Declare `static inline'. No
21286 problems with inline, since it is checked by configure.
21287 (copy_comment): Likewise.
21288
21289 2000-03-17 Akim Demaille <akim@epita.fr>
21290
21291 * src/reader.c (packsymbols): Formatting changes.
21292
21293 2000-03-17 Akim Demaille <akim@epita.fr>
21294
21295 * src/reader.c (copy_comment): New function, factored out from:
21296 (copy_action): Use it. Removed now unused `match', `ended',
21297 `cplus_comment'.
21298 (copy_guard): Likewise.
21299
21300 2000-03-17 Akim Demaille <akim@epita.fr>
21301
21302 * src/reader.c (copy_string): New function, factored out from:
21303 (copy_action): Use it.
21304 (copy_guard): Likewise.
21305
21306 2000-03-17 Akim Demaille <akim@epita.fr>
21307
21308 Change the handling of @s so that they behave exactly like $s.
21309 There is now a pseudo variable @$ (readble and writable), location
21310 of the lhs of the rule (by default ranging from the location of
21311 the first symbol of the rhs, to the location of the last symbol,
21312 or, if the rhs is empty, YYLLOC).
21313
21314 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21315 yyval.
21316 (yyparse): When providing a default semantic action, provide a
21317 default location action.
21318 (after the $): No longer change `*YYLSP', just stack YYLOC the
21319 same way you stack YYVAL.
21320 * src/reader.c (read_declarations): Use warns.
21321 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21322 (copy_action, case '@'): Likewise.
21323 Use a standard error message, to save useless work from
21324 translators.
21325
21326 2000-03-17 Akim Demaille <akim@epita.fr>
21327
21328 * src/bison.s1: Formatting and cosmetics changes.
21329 * src/reader.c: Likewise.
21330 Update the Copyright notice.
21331
21332 2000-03-17 Akim Demaille <akim@epita.fr>
21333
21334 * src/bison.s1 (#line): All set to `#line' only, since the
21335 Makefile now handles them.
21336
21337 2000-03-16 Akim Demaille <akim@epita.fr>
21338
21339 * src/output.c (output_rule_data): Output the documentation of
21340 some of the tables.
21341 (Copyright notice): Update.
21342 Formatting changes.
21343
21344 2000-03-16 Akim Demaille <akim@epita.fr>
21345
21346 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21347 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21348 One `#if YYDEBUG' remains, since it uses variables which are
21349 defined only if `YYDEBUG != 0'.
21350
21351 2000-03-16 Akim Demaille <akim@epita.fr>
21352
21353 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21354 and related variables so that the similarities are highlighted.
21355
21356 2000-03-16 Akim Demaille <akim@epita.fr>
21357
21358 * src/bison.s1: Properly indent CPP directives.
21359
21360 2000-03-16 Akim Demaille <akim@epita.fr>
21361
21362 * src/bison.s1: Properly indent the `alloca' CPP section.
21363
21364 2000-03-16 Akim Demaille <akim@epita.fr>
21365
21366 Do not hard code values of directories in `configure.in'.
21367 Update the `configure' tool chain.
21368
21369 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21370 src/makefile.am.
21371 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21372 (AC_OUTPUT): Add m4/Makefile.
21373 Bump to bison 1.28a, 1.29 has never been released.
21374 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21375 handled via src/Makefile.am.
21376 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21377 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21378 autoheader.
21379 * Makefile.am (SUBDIRS): Add m4.
21380 (ACLOCAL_AM_FLAGS): New variable.
21381 (AUTOMAKE_OPTIONS): Add check-news.
21382 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21383 the proper line number and file name.
21384 (DEFS): Propagate the location of bison library files and of the
21385 locale files.
21386 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21387 builddir.
21388 * acinclude.m4: Remove, replaced by the directory m4.
21389 * m4/Makefile.am (EXTRA_DIST): New variable.
21390 * m4/gettext.m4: New file, from the fileutils.
21391 * m4/lcmessage.m4: Likewise
21392 * m4/progtest.m4: Likewise.
21393 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21394
21395 2000-03-10 Akim Demaille <akim@epita.fr>
21396
21397 * src/closure.c:
21398 Formatting changes of various comments.
21399 Respect the GNU coding standards at various places.
21400 Don't use `_()' when no translation is needed.
21401
21402 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21403
21404 * src/files.c:
21405 OS/2 honors TMPDIR environment variable.
21406
21407 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21408
21409 * doc/bison.texinfo: Tweaked spelling and grammar.
21410 Updated ISBN.
21411 Removed reference to price of printed copy.
21412 Mention BISON_SIMPLE and BISON_HAIRY.
21413
21414 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21415
21416 * configure.in, NEWS:
21417 Bison 1.29 released.
21418
21419 1999-10-27 Jesse Thilo <jthilo@gnu.org>
21420
21421 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21422 Added reference card.
21423
21424 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21425
21426 * po/ru.po: Added Russian translation.
21427
21428 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21429
21430 * configure.in: Added Russian translation.
21431
21432 1999-07-06 Jesse Thilo <jthilo@gnu.org>
21433
21434 * configure.in, NEWS, README:
21435 Released version 1.28.
21436
21437 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21438
21439 * src/system.h:
21440 Squashed redefinition warning on some systems.
21441
21442 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21443 Have configure build version string instead of relying on ANSI string
21444 concatentation.
21445
21446 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21447
21448 * po/POTFILES.in: Got rid of version.c.
21449
21450 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21451
21452 * acconfig.h, configure.in:
21453 Have configure build version string instead of relying on ANSI string
21454 concatentation.
21455
21456 1999-06-08 Jesse Thilo <jthilo@gnu.org>
21457
21458 * doc/bison.1:
21459 Dropped mention of `+' for long-named options.
21460
21461 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21462
21463 * src/files.c: Added <unistd.h> for unlink().
21464
21465 * src/Makefile.am, src/system.h:
21466 I18n fixes.
21467
21468 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21469
21470 * README: Added a FAQ list.
21471
21472 * configure.in, acconfig.h:
21473 I18n fixes.
21474
21475 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21476
21477 * doc/FAQ, doc/Makefile.am:
21478 Added a FAQ list.
21479
21480 1999-05-19 Jesse Thilo <jthilo@gnu.org>
21481
21482 * src/alloc.h, src/symtab.h, src/version.c:
21483 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21484
21485 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21486
21487 * src/.cvsignore, src/Makefile.am:
21488 Reorganized: sources in `src', documentation in `doc'.
21489
21490 * src/lex.c (literalchar):
21491 fixed the code for escaping double quotes (thanks
21492 Jonathan Czisny.)
21493
21494 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21495
21496 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21497 Adjusted paths to reflect directory reorganization.
21498
21499 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21500
21501 * doc/.cvsignore, doc/Makefile.am:
21502 Reorganized: sources in `src', documentation in `doc'.
21503
21504 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21505
21506 * configure.in:
21507 Updated AC_INIT file to reflect directory reorganization.
21508
21509 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21510 Reorganized: sources in `src', documentation in `doc'.
21511
21512 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21513
21514 * src/allocate.c:
21515 Don't declare calloc() and realloc() if not necessary.
21516
21517 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21518
21519 * configure.in, acconfig.h, acinclude.m4:
21520 Don't declare calloc() and realloc() if not necessary.
21521
21522 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21523
21524 * po/.cvsignore: Added i18n support.
21525
21526 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21527
21528 * acconfig.h, configure.in, Makefile.am:
21529 Added i18n support.
21530
21531 1999-03-22 Jesse Thilo <jthilo@gnu.org>
21532
21533 * src/bison.s1: Fixed #line numbers.
21534
21535 1999-03-15 Jesse Thilo <jthilo@gnu.org>
21536
21537 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21538 Added PO files from Translation Project.
21539
21540 1999-03-03 Jesse Thilo <jthilo@gnu.org>
21541
21542 * Makefile.am:
21543 Added support for non-ANSI compilers (ansi2knr).
21544
21545 1999-02-16 Jesse Thilo <jthilo@gnu.org>
21546
21547 * configure.in: Bumped version number to 1.27.
21548
21549 * Makefile.am:
21550 Added `bison.simple' to list of files removed by `make distclean'.
21551
21552 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21553
21554 * src/files.c, src/files.h:
21555 Defined locations of parser files in config.h instead of Makefile.
21556
21557 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21558
21559 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21560 Defined locations of parser files in config.h instead of Makefile.
21561
21562 1999-02-09 Jesse Thilo <jthilo@gnu.org>
21563
21564 * Makefile.am:
21565 Removed inappropriate use of $< macro.
21566
21567 1999-02-05 Jesse Thilo <jthilo@gnu.org>
21568
21569 * po/Makefile.in.in, po/POTFILES.in:
21570 Add `po' directory skeleton.
21571
21572 1999-01-27 Jesse Thilo <jthilo@gnu.org>
21573
21574 * README: Document help-bison list.
21575
21576 * configure.in: Add check for mkstemp().
21577
21578 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21579
21580 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21581 Hush a few compiler warnings.
21582
21583 * src/files.c:
21584 Add tryclose(), which verifies that fclose was successful.
21585 Hush a couple of compiler warnings.
21586
21587 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21588
21589 * Makefile.am, OChangeLog:
21590 ChangeLog is now automatically generated. Include the old version as
21591 OChangeLog.
21592
21593 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21594
21595 * 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:
21596 Update FSF address.
21597
21598 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21599
21600 * doc/bison.texinfo: Fix formatting glitch.
21601
21602 * doc/bison.texinfo: Update FSF address.
21603
21604 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21605
21606 * acconfig.h: Update FSF address.
21607
21608 1999-01-08 Jesse Thilo <jthilo@gnu.org>
21609
21610 * src/system.h:
21611 Don't define PACKAGE here, since config.h defines it.
21612
21613 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21614
21615 * src/reader.c: Update copyright date.
21616
21617 * src/main.c:
21618 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21619 favor of output directly to stderr (avoids buffer overruns).
21620
21621 * src/reader.c: Some checks for premature EOF.
21622
21623 * 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:
21624 Use prototypes if the compiler understands them.
21625
21626 * src/files.c: Honor TMPDIR on Unix hosts.
21627 Use prototypes if the compiler understands them.
21628
21629 * src/reader.c:
21630 Fix a couple of buffer overrun bugs.
21631 Use prototypes if the compiler understands them.
21632
21633 * src/system.h: Include unistd.h and ctype.h.
21634 Use #ifdef instead of #if for NLS symbols.
21635
21636 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21637
21638 * doc/bison.texinfo:
21639 Delete comment "consider using @set for edition number, etc..." since
21640 we now are doing so.
21641
21642 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21643
21644 * configure.in:
21645 Use prototypes if the compiler understands them.
21646
21647 * NEWS: Document 1.26 highlights.
21648
21649 * Makefile.am: Require Automake 1.3 or later.
21650
21651 * acconfig.h:
21652 Use prototypes if the compiler understands them.
21653
21654 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21655
21656 * src/version.c:
21657 Use VERSION symbol from automake for version number.
21658
21659 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21660
21661 * acconfig.h, configure.in, version.cin:
21662 Use VERSION symbol from automake for version number.
21663
21664 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21665
21666 * Makefile.am:
21667 Distribute original version of simple parser (bison.s1), not built
21668 version (bison.simple).
21669
21670 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21671
21672 * doc/bison.texinfo: Add info dir entry.
21673
21674 * doc/bison.texinfo:
21675 Let automake put version number into documentation.
21676
21677 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21678
21679 * src/bison.cld, src/build.com, src/vmshlp.mar:
21680 Add non-RCS files from /gd/gnu/bison.
21681
21682 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21683
21684 * doc/bison.1:
21685 Document the BISON_HAIRY and BISON_SIMPLE variables.
21686
21687 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21688
21689 * src/version.c: Build version.c automatically.
21690
21691 * src/reader.c:
21692 Fix token numbering (used to start at 258, not 257).
21693
21694 * src/system.h: Include config.h.
21695
21696 * src/getargs.c: Update bug report address.
21697
21698 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
21699 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
21700
21701 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21702
21703 * Makefile.am:
21704 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21705
21706 * configure.in, version.cin:
21707 Build version.c automatically.
21708
21709 * AUTHORS: Add AUTHORS file.
21710
21711 * README: Update bug report address.
21712
21713 * bison.simple:
21714 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21715
21716 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
21717 Add automake stuff.
21718
21719 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21720
21721 * doc/bison.texinfo: Clean up some formatting.
21722
21723 1998-05-05 Richard Stallman <rms@gnu.org>
21724
21725 * doc/bison.texinfo:
21726 Explain better why to make a pure parser.
21727
21728 1998-01-05 Richard Stallman <rms@gnu.org>
21729
21730 * src/files.c (openfiles):
21731 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
21732 find a temporary directory, if possible. Do not unlink files while
21733 they are open.
21734
21735 1997-08-25 Richard Stallman <rms@gnu.org>
21736
21737 * src/reader.c (stack_offset;):
21738 Change some warni to warns.
21739
21740 * src/lex.c (literalchar): Use warns, not warni.
21741
21742 1997-06-28 Richard Stallman <rms@gnu.org>
21743
21744 * src/bison.s1: Add a Bison version comment.
21745
21746 * src/main.c (fatal, warn, berror):
21747 Use program_name.
21748
21749 1997-06-28 Richard Stallman <rms@gnu.org>
21750
21751 * Makefile.in (bison_version): New variable.
21752 (dist): Use that variable.
21753 (bison.s1): Substitute the Bison version into bison.simple.
21754
21755 * bison.simple: Add a Bison version comment.
21756
21757 1997-06-18 Richard Stallman <rms@gnu.org>
21758
21759 * src/main.c (fatal, warn, berror):
21760 Make error messages standard.
21761 (toomany): Improve error message text.
21762
21763 * 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:
21764 new.h renamed to alloc.h.
21765
21766 1997-06-18 Richard Stallman <rms@gnu.org>
21767
21768 * Makefile.in: new.h renamed to alloc.h.
21769
21770 1997-05-24 Richard Stallman <rms@gnu.org>
21771
21772 * src/lex.c (literalchar):
21773 Fix the code for escaping \, " and '.
21774
21775 (lex): Avoid trouble when there are many chars
21776 to discard in a char literal with just several chars in it.
21777
21778 1997-05-17 Richard Stallman <rms@gnu.org>
21779
21780 * src/bison.s1:
21781 Use malloc, if using alloca is troublesome.
21782 (YYSTACK_USE_ALLOCA): New flag macro.
21783 Define it for some systems and compilers.
21784 (YYSTACK_ALLOC): New macro.
21785 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21786 If it was malloc'd, free it.
21787
21788 1997-05-17 Richard Stallman <rms@gnu.org>
21789
21790 * bison.simple:
21791 Use malloc, if using alloca is troublesome.
21792 (YYSTACK_USE_ALLOCA): New flag macro.
21793 Define it for some systems and compilers.
21794 (YYSTACK_ALLOC): New macro.
21795 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21796 If it was malloc'd, free it.
21797
21798 1997-04-23 Richard Stallman <rms@gnu.org>
21799
21800 * src/bison.s1:
21801 (alloca) [__hpux]: Always define as __builtin_alloca.
21802
21803 1997-04-23 Richard Stallman <rms@gnu.org>
21804
21805 * bison.simple:
21806 (alloca) [__hpux]: Always define as __builtin_alloca.
21807
21808 1997-04-22 Richard Stallman <rms@gnu.org>
21809
21810 * src/bison.s1:
21811 [__hpux]: Include alloca.h (right for HPUX 10)
21812 instead of declaring alloca (right for HPUX 9).
21813
21814 * src/bison.s1 (__yy_memcpy):
21815 Declare arg `count' as unsigned int.
21816 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21817
21818 1997-04-22 Richard Stallman <rms@gnu.org>
21819
21820 * bison.simple:
21821 [__hpux]: Include alloca.h (right for HPUX 10)
21822 instead of declaring alloca (right for HPUX 9).
21823
21824 * bison.simple (__yy_memcpy):
21825 Declare arg `count' as unsigned int.
21826 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21827
21828 1997-01-03 Richard Stallman <rms@gnu.org>
21829
21830 * src/allocate.c: [__STDC__ or _MSC_VER]:
21831 Declare calloc and realloc to return void *.
21832
21833 1997-01-02 Richard Stallman <rms@gnu.org>
21834
21835 * src/system.h:
21836 [_MSC_VER]: Include stdlib.h and process.h.
21837 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
21838
21839 * src/main.c (main): Return FAILURE as a value.
21840 (printable_version): Declare arg as int, not char.
21841
21842 1997-01-02 Richard Stallman <rms@gnu.org>
21843
21844 * Makefile.in (dist):
21845 Explicitly check for symlinks, and copy them.
21846
21847 1996-12-19 Richard Stallman <rms@gnu.org>
21848
21849 * src/files.c:
21850 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
21851
21852 1996-12-18 Paul Eggert <eggert@gnu.org>
21853
21854 * src/bison.s1 (yyparse):
21855 If __GNUC__ and YYPARSE_PARAM are both defined,
21856 declare yyparse to have a void * argument.
21857
21858 1996-12-18 Paul Eggert <eggert@gnu.org>
21859
21860 * bison.simple (yyparse):
21861 If __GNUC__ and YYPARSE_PARAM are both defined,
21862 declare yyparse to have a void * argument.
21863
21864 1996-12-17 Richard Stallman <rms@gnu.org>
21865
21866 * src/reduce.c (nbits): Add some casts.
21867
21868 1996-08-12 Richard Stallman <rms@gnu.org>
21869
21870 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
21871
21872 1996-08-12 Richard Stallman <rms@gnu.org>
21873
21874 * bison.simple: Test _MSDOS as well as _MSDOS_.
21875
21876 1996-07-31 Richard Stallman <rms@gnu.org>
21877
21878 * src/bison.s1:
21879 [__sun && __i386]: Include alloca.h.
21880
21881 1996-07-31 Richard Stallman <rms@gnu.org>
21882
21883 * bison.simple:
21884 [__sun && __i386]: Include alloca.h.
21885
21886 1996-07-30 Richard Stallman <rms@gnu.org>
21887
21888 * src/bison.s1: Comment change.
21889
21890 * src/bison.s1: Test _MSDOS_, not MSDOS.
21891
21892 1996-07-30 Richard Stallman <rms@gnu.org>
21893
21894 * bison.simple: Comment change.
21895
21896 * bison.simple: Test _MSDOS_, not MSDOS.
21897
21898 1996-06-01 Richard Stallman <rms@gnu.org>
21899
21900 * 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:
21901 Insert `_' macro around many string constants.
21902
21903 * src/main.c:
21904 Insert `_' macro around many string constants.
21905
21906 (main): Call setlocale, bindtextdomain and textdomain.
21907
21908 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
21909 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
21910 [ENABLE_NLS]: Include libintl.h.
21911 [ENABLE_NLS] (gettext): Define.
21912 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
21913 (N_, PACKAGE, LOCALEDIR): New macros.
21914
21915 1996-06-01 Richard Stallman <rms@gnu.org>
21916
21917 * POTFILES.in: New file.
21918
21919 * Makefile.in (allocate.o):
21920 Define target explicitly.
21921
21922 * Makefile.in (CFLAGS): Set to @CFLAGS@.
21923 (LDFLAGS): Set to @LDFLAGS@.
21924 (configure): Run autoconf only if preceding `cd' succeeds.
21925 (bison.s1): Redirect output to temporary file then move the
21926 temporary to the target, rather than redirecting directly to bison.s1.
21927 (clean): Remove config.status and config.log.
21928 (distclean): Don't remove config.status here.
21929
21930 1996-05-12 Richard Stallman <rms@gnu.org>
21931
21932 * src/bison.s1:
21933 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21934
21935 1996-05-12 Richard Stallman <rms@gnu.org>
21936
21937 * bison.simple:
21938 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21939
21940 1996-05-11 Richard Stallman <rms@gnu.org>
21941
21942 * src/bison.s1 (__yy_memcpy):
21943 Really reorder the args, as was supposedly done on Feb 14 1995.
21944 (yyparse): Calls changed accordingly.
21945
21946 1996-05-11 Richard Stallman <rms@gnu.org>
21947
21948 * Makefile.in (dist): Don't use $(srcdir).
21949
21950 * bison.simple (__yy_memcpy):
21951 Really reorder the args, as was supposedly done on Feb 14 1995.
21952 (yyparse): Calls changed accordingly.
21953
21954 1996-01-27 Richard Stallman <rms@gnu.org>
21955
21956 * src/output.c (output_rule_data):
21957 Test YYERROR_VERBOSE in the conditional
21958 around the definition of ttyname.
21959
21960 1995-12-29 Richard Stallman <rms@gnu.org>
21961
21962 * src/bison.s1:
21963 Fix line numbers in #line commands.
21964
21965 1995-12-29 Richard Stallman <rms@gnu.org>
21966
21967 * bison.simple:
21968 Fix line numbers in #line commands.
21969
21970 1995-12-27 Richard Stallman <rms@gnu.org>
21971
21972 * src/bison.s1 (YYPARSE_PARAM_DECL):
21973 In C++, make it always null.
21974 (YYPARSE_PARAM_ARG): New macro.
21975 (yyparse): Use YYPARSE_PARAM_ARG.
21976
21977 1995-12-27 Richard Stallman <rms@gnu.org>
21978
21979 * bison.simple (YYPARSE_PARAM_DECL):
21980 In C++, make it always null.
21981 (YYPARSE_PARAM_ARG): New macro.
21982 (yyparse): Use YYPARSE_PARAM_ARG.
21983
21984 1995-11-29 Richard Stallman <rms@gnu.org>
21985
21986 * doc/bison.texinfo:
21987 Describe literal string tokens, %raw, %no_lines, %token_table.
21988
21989 1995-11-29 Daniel Hagerty <hag@gnu.org>
21990
21991 * doc/bison.texinfo: Fixed update date
21992
21993 1995-10-16 Richard Stallman <rms@gnu.org>
21994
21995 * src/version.c: Version 1.25.
21996
21997 1995-10-16 Richard Stallman <rms@gnu.org>
21998
21999 * NEWS: *** empty log message ***
22000
22001 1995-10-16 Richard Stallman <rms@gnu.org>
22002
22003 * doc/bison.1, doc/bison.rnh:
22004 Add new options.
22005
22006 1995-10-15 Richard Stallman <rms@gnu.org>
22007
22008 * src/vmsgetargs.c, src/getargs.c:
22009 Added -n, -k, and -raw switches.
22010 (noparserflag, toknumflag, rawtoknumflag): New variables.
22011
22012 * src/symtab.h (SALIAS):
22013 New #define for adding aliases to %token.
22014 (struct bucket): Added `alias' field.
22015
22016 * src/reduce.c (reduce_grammar):
22017 Revise error message.
22018 (print_notices): Remove final `.' from error message.
22019
22020 * src/reader.c (reader_output_yylsp):
22021 New function.
22022 (readgram): Use `#if 0' around code that accepted %command
22023 inside grammar rules: The documentation doesn't allow it,
22024 and it will fail since the %command processors scan for the next %.
22025 (parse_token_decl): Extended the %token
22026 declaration to allow a multi-character symbol as an alias.
22027 (parse_thong_decl): New function.
22028 (read_declarations): Added %thong declarations.
22029 (read_declarations): Handle NOOP to deal with allowing
22030 % declarations as another means to specify the flags.
22031 (readgram): Allow %prec prior to semantics embedded in a rule.
22032 (skip_to_char, read_declarations, copy_definition)
22033 (parse_token_decl, parse_start_decl, parse_type_decl)
22034 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
22035 (get_type_name, copy_guard, copy_action, readgram)
22036 (get_type, packsymbols): Revised most error messages.
22037 Changed `fatal' to `warnxxx' to avoid aborting for error.
22038 Revised and use multiple warnxxx functions to avoid using VARARGS1.
22039 (read_declarations): Improve the error message for
22040 an invalid character. Do not abort.
22041 (read_declarations, copy_guard, copy_action): Use
22042 printable_version to avoid unprintable characters in printed output.
22043 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
22044 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
22045 Allow the type of a non-terminal can be given
22046 more than once, as long as all specifications give the same type.
22047
22048 * src/output.c:
22049 (output_headers, output_trailers, output, output_gram)
22050 (output_rule_data): Implement noparserflag variable.
22051 Implement toknumflag variable.
22052 (output): Call reader_output_yylsp to output LTYPESTR.
22053
22054 * src/main.c (main):
22055 If reader sees an error, don't process the grammar.
22056 (fatals): Updated to not use VARARGS1.
22057 (printable_version, int_to_string, warn, warni, warns, warnss)
22058 (warnsss): New error reporting functions. Avoid abort for error.
22059
22060 * src/lex.h:
22061 Added THONG and NOOP for alias processing.
22062 Added SETOPT for the new code that allows setting options with %flags.
22063
22064 * src/lex.c:
22065 Include getopt.h. Add some extern decls.
22066 (safegetc): New function to deal with EOF gracefully.
22067 (literalchar); new function to deal with reading \ escapes.
22068 (lex): Use literalchar.
22069 (lex): Implemented "..." tokens.
22070 (literalchar, lex, parse_percent_token): Made tokenbuffer
22071 always contain the token. This includes growing the token
22072 buffer while reading an integer.
22073 (parse_percent_token): Replaced if-else statement with percent_table.
22074 (parse_percent_token): Added % declarations as another
22075 way to specify the flags -n, -l, and -r. Also added hooks for
22076 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
22077 major changes to files.c.
22078 (lex) Retain in the incoming stream a character following
22079 an incorrect '/'.
22080 (skip_white_space, lex): Revised most error messages
22081 and changed fatal to warn to avoid aborting.
22082 (percent_table): Added %thong declarations.
22083
22084 * src/gram.h: Comment changes.
22085
22086 * src/files.c (openfiles, open_extra_files, done):
22087 Add faction flag
22088 and actfile file. Handle noparserflag. Both for -n switch.
22089
22090 * src/conflicts.c (resolve_sr_conflict):
22091 Remove use of alloca.
22092
22093 1995-06-01 Jim Meyering <meyering@gnu.org>
22094
22095 * doc/bison.texinfo: *** empty log message ***
22096
22097 1995-05-06 Richard Stallman <rms@gnu.org>
22098
22099 * src/bison.s1: Comment change.
22100
22101 1995-05-06 Richard Stallman <rms@gnu.org>
22102
22103 * bison.simple: Comment change.
22104
22105 1995-05-03 Richard Stallman <rms@gnu.org>
22106
22107 * src/version.c: Version now 1.24.
22108
22109 * src/bison.s1: Change distribution terms.
22110
22111 * src/version.c: Version now 1.23.
22112
22113 1995-05-03 Richard Stallman <rms@gnu.org>
22114
22115 * doc/bison.texinfo:
22116 Rewrite "Conditions for Using Bison".
22117 Update version to 1.24.
22118
22119 1995-05-03 Richard Stallman <rms@gnu.org>
22120
22121 * bison.simple: Change distribution terms.
22122
22123 1995-02-23 Richard Stallman <rms@gnu.org>
22124
22125 * src/files.c: Test __VMS_POSIX as well as VMS.
22126
22127 1995-02-14 Jim Meyering <meyering@gnu.org>
22128
22129 * src/bison.s1 (__yy_memcpy):
22130 Renamed from __yy_bcopy to avoid
22131 confusion. Reverse FROM and TO arguments to be consistent with
22132 those of memcpy.
22133
22134 1995-02-14 Jim Meyering <meyering@gnu.org>
22135
22136 * bison.simple (__yy_memcpy):
22137 Renamed from __yy_bcopy to avoid
22138 confusion. Reverse FROM and TO arguments to be consistent with
22139 those of memcpy.
22140
22141 1994-11-10 David J. MacKenzie <djm@gnu.org>
22142
22143 * NEWS: reformat
22144
22145 * NEWS: New file.
22146
22147 * Makefile.in (DISTFILES): Include NEWS.
22148
22149 * Makefile.in (DISTFILES):
22150 Include install-sh, not install.sh.
22151
22152 * configure.in: Update to Autoconf v2 macro names.
22153
22154 1994-10-05 David J. MacKenzie <djm@gnu.org>
22155
22156 * Makefile.in: fix typo
22157
22158 * Makefile.in (prefix, exec_prefix):
22159 Let configure set them.
22160
22161 1994-09-28 David J. MacKenzie <djm@gnu.org>
22162
22163 * Makefile.in: Set datadir to $(prefix)/share.
22164
22165 1994-09-15 Richard Stallman <rms@gnu.org>
22166
22167 * src/bison.s1:
22168 Update copyright notice and GPL version.
22169
22170 1994-09-15 Richard Stallman <rms@gnu.org>
22171
22172 * bison.simple:
22173 Update copyright notice and GPL version.
22174
22175 1994-07-12 Richard Stallman <rms@gnu.org>
22176
22177 * src/reduce.c, src/reader.c:
22178 entered into RCS
22179
22180 1994-05-05 David J. MacKenzie <djm@gnu.org>
22181
22182 * Makefile.in: entered into RCS
22183
22184 1994-03-26 Richard Stallman <rms@gnu.org>
22185
22186 * src/bison.s1: entered into RCS
22187
22188 1994-03-26 Richard Stallman <rms@gnu.org>
22189
22190 * bison.simple: entered into RCS
22191
22192 1994-03-25 Richard Stallman <rms@gnu.org>
22193
22194 * src/main.c: entered into RCS
22195
22196 1994-03-24 Richard Stallman <rms@gnu.org>
22197
22198 * src/conflicts.c: entered into RCS
22199
22200 1994-01-02 Richard Stallman <rms@gnu.org>
22201
22202 * Makefile.in: *** empty log message ***
22203
22204 1993-11-21 Richard Stallman <rms@gnu.org>
22205
22206 * src/bison.s1: *** empty log message ***
22207
22208 1993-11-21 Richard Stallman <rms@gnu.org>
22209
22210 * doc/bison.texinfo: entered into RCS
22211
22212 * doc/bison.texinfo: *** empty log message ***
22213
22214 1993-11-21 Richard Stallman <rms@gnu.org>
22215
22216 * bison.simple: *** empty log message ***
22217
22218 1993-10-25 David J. MacKenzie <djm@gnu.org>
22219
22220 * doc/bison.texinfo: *** empty log message ***
22221
22222 1993-10-19 Richard Stallman <rms@gnu.org>
22223
22224 * src/bison.s1: *** empty log message ***
22225
22226 1993-10-19 Richard Stallman <rms@gnu.org>
22227
22228 * bison.simple: *** empty log message ***
22229
22230 1993-10-14 Richard Stallman <rms@gnu.org>
22231
22232 * src/bison.s1: *** empty log message ***
22233
22234 1993-10-14 Richard Stallman <rms@gnu.org>
22235
22236 * bison.simple: *** empty log message ***
22237
22238 1993-09-14 David J. MacKenzie <djm@gnu.org>
22239
22240 * doc/bison.texinfo: *** empty log message ***
22241
22242 1993-09-13 Noah Friedman <friedman@gnu.org>
22243
22244 * Makefile.in: *** empty log message ***
22245
22246 1993-09-10 Richard Stallman <rms@gnu.org>
22247
22248 * src/conflicts.c: *** empty log message ***
22249
22250 * src/system.h: entered into RCS
22251
22252 1993-09-10 Richard Stallman <rms@gnu.org>
22253
22254 * doc/bison.1: entered into RCS
22255
22256 1993-09-06 Noah Friedman <friedman@gnu.org>
22257
22258 * src/version.c: entered into RCS
22259
22260 1993-09-06 Noah Friedman <friedman@gnu.org>
22261
22262 * Makefile.in: *** empty log message ***
22263
22264 1993-07-30 David J. MacKenzie <djm@gnu.org>
22265
22266 * Makefile.in: *** empty log message ***
22267
22268 1993-07-24 Richard Stallman <rms@gnu.org>
22269
22270 * src/bison.s1: *** empty log message ***
22271
22272 1993-07-24 Richard Stallman <rms@gnu.org>
22273
22274 * bison.simple: *** empty log message ***
22275
22276 1993-07-08 David J. MacKenzie <djm@gnu.org>
22277
22278 * Makefile.in: *** empty log message ***
22279
22280 1993-07-04 Richard Stallman <rms@gnu.org>
22281
22282 * src/bison.s1: *** empty log message ***
22283
22284 1993-07-04 Richard Stallman <rms@gnu.org>
22285
22286 * bison.simple: *** empty log message ***
22287
22288 1993-06-26 David J. MacKenzie <djm@gnu.org>
22289
22290 * src/getargs.c: entered into RCS
22291
22292 1993-06-26 David J. MacKenzie <djm@gnu.org>
22293
22294 * doc/bison.texinfo: *** empty log message ***
22295
22296 * doc/bison.1: New file.
22297
22298 1993-06-25 Richard Stallman <rms@gnu.org>
22299
22300 * src/getargs.c: New file.
22301
22302 1993-06-16 Richard Stallman <rms@gnu.org>
22303
22304 * src/bison.s1: *** empty log message ***
22305
22306 1993-06-16 Richard Stallman <rms@gnu.org>
22307
22308 * bison.simple: *** empty log message ***
22309
22310 1993-06-03 Richard Stallman <rms@gnu.org>
22311
22312 * src/bison.s1: New file.
22313
22314 1993-06-03 Richard Stallman <rms@gnu.org>
22315
22316 * doc/bison.texinfo: *** empty log message ***
22317
22318 1993-06-03 Richard Stallman <rms@gnu.org>
22319
22320 * bison.simple: New file.
22321
22322 1993-05-19 Richard Stallman <rms@gnu.org>
22323
22324 * doc/bison.texinfo: New file.
22325
22326 1993-05-07 Noah Friedman <friedman@gnu.org>
22327
22328 * Makefile.in: *** empty log message ***
22329
22330 1993-04-28 Noah Friedman <friedman@gnu.org>
22331
22332 * src/reader.c: *** empty log message ***
22333
22334 1993-04-23 Noah Friedman <friedman@gnu.org>
22335
22336 * src/alloc.h: entered into RCS
22337
22338 1993-04-20 David J. MacKenzie <djm@gnu.org>
22339
22340 * src/version.c: *** empty log message ***
22341
22342 * src/files.c, src/allocate.c:
22343 entered into RCS
22344
22345 * src/reader.c: *** empty log message ***
22346
22347 * src/lex.c: entered into RCS
22348
22349 * src/conflicts.c: New file.
22350
22351 * src/symtab.c: entered into RCS
22352
22353 * src/alloc.h: New file.
22354
22355 * src/LR0.c: entered into RCS
22356
22357 1993-04-18 Noah Friedman <friedman@gnu.org>
22358
22359 * src/reader.c: New file.
22360
22361 * src/version.c: *** empty log message ***
22362
22363 1993-04-18 Noah Friedman <friedman@gnu.org>
22364
22365 * Makefile.in: *** empty log message ***
22366
22367 1993-04-17 Noah Friedman <friedman@gnu.org>
22368
22369 * Makefile.in: *** empty log message ***
22370
22371 1993-04-15 Richard Stallman <rms@gnu.org>
22372
22373 * src/main.c, src/files.c:
22374 New file.
22375
22376 1993-04-15 Noah Friedman <friedman@gnu.org>
22377
22378 * configure.in: entered into RCS
22379
22380 * configure.in: *** empty log message ***
22381
22382 * configure.in: New file.
22383
22384 1993-04-14 Richard Stallman <rms@gnu.org>
22385
22386 * Makefile.in: New file.
22387
22388 1993-04-13 Richard Stallman <rms@gnu.org>
22389
22390 * src/version.c: New file.
22391
22392 1993-03-25 Richard Stallman <rms@gnu.org>
22393
22394 * src/output.c: entered into RCS
22395
22396 1992-09-25 Richard Stallman <rms@gnu.org>
22397
22398 * configure.bat: entered into RCS
22399
22400 1992-06-22 Richard Stallman <rms@gnu.org>
22401
22402 * src/vmsgetargs.c: entered into RCS
22403
22404 1992-06-22 Richard Stallman <rms@gnu.org>
22405
22406 * doc/bison.rnh: entered into RCS
22407
22408 1992-04-20 David J. MacKenzie <djm@gnu.org>
22409
22410 * README: entered into RCS
22411
22412 1992-01-22 Richard Stallman <rms@gnu.org>
22413
22414 * src/machine.h: entered into RCS
22415
22416 1991-12-21 Richard Stallman <rms@gnu.org>
22417
22418 * src/lalr.c, src/closure.c:
22419 entered into RCS
22420
22421 1991-12-20 Richard Stallman <rms@gnu.org>
22422
22423 * src/state.h: entered into RCS
22424
22425 1991-12-18 Richard Stallman <rms@gnu.org>
22426
22427 * src/print.c, src/nullable.c, src/derives.c:
22428 entered into RCS
22429
22430 1991-11-03 David J. MacKenzie <djm@gnu.org>
22431
22432 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22433 entered into RCS
22434
22435 1988-09-09 Richard Stallman <rms@gnu.org>
22436
22437 * src/bison.hairy: entered into RCS
22438
22439 1987-12-16 Richard Stallman <rms@gnu.org>
22440
22441 * REFERENCES: entered into RCS
22442
22443
22444 -----
22445
22446 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
22447 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
22448 2007, 2008, 2009 Free Software Foundation, Inc.
22449
22450 Copying and distribution of this file, with or without
22451 modification, are permitted provided the copyright notice and this
22452 notice are preserved.