]> git.saurik.com Git - bison.git/blob - ChangeLog
35b71eebed10b6ac6064600b84a96fc55a374e06
[bison.git] / ChangeLog
1 2009-10-03 Alex Rozenman <rozenman@gmail.com>
2
3 Add additional space after periods in NEWS.
4 * NEWS (2.5): here.
5
6 2009-09-29 Joel E. Denny <jdenny@clemson.edu>
7
8 Use the correct conversion specifier for size_t.
9 Reported by Jim Meyering.
10 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
11 because Sbitset__Index is size_t.
12 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
13
14 2009-09-27 Joel E. Denny <jdenny@clemson.edu>
15
16 tests: don't abuse AT_BISON_CHECK.
17 * tests/regression.at (parse-gram.y: LALR = IELR): Move
18 additional shell commands outside of AT_BISON_CHECK.
19
20 2009-09-26 Joel E. Denny <jdenny@clemson.edu>
21
22 tests: check that parse-gram.y's IELR and LALR are identical.
23 * tests/atlocal.in (abs_top_srcdir): New shell variable.
24 * tests/regression.at (parse-gram.y: LALR = IELR): New test
25 group.
26
27 2009-09-19 Alex Rozenman <rozenman@gmail.com>
28
29 Keep sub-messages aligned. Fix strings for translation.
30 * src/location.h (location_print): Add return value.
31 * src/location.c (location_print): Return number of printed
32 characters.
33 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
34 new functions.
35 * src/complain.cpp (indent_ptr): New static variable.
36 (error_message, complain_at_indent, warn_at_indent): Implement
37 the alignment mechanism.
38 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
39 for translations. Use new alignment mechanism.
40 * tests/named-ref.at: Adjust test-cases.
41 * NEWS (2.5): Add an announcement about named references.
42
43 2009-09-17 Akim Demaille <demaille@gostai.com>
44
45 doc: fixes.
46 * doc/bison.texinfo: here.
47 Reported by Alex Rozenman.
48
49 2009-09-16 Akim Demaille <demaille@gostai.com>
50
51 doc: lalr1.cc and variants.
52 * doc/bison.texinfo (Decl Summary): Document the "lex_symbol" and
53 "variant" %define variables.
54 (C++ Semantic Values): Split into...
55 (C++ Unions, C++ Variants): these.
56 The latter is new.
57 (C++ Parser Interface): Fix type names.
58 Document parser::syntax_error.
59 Document the fact that locations are not mandatory.
60 (C++ Scanner Interface): Split into...
61 (Split Symbols, Complete Symbols): these.
62 The later is new.
63 (Calc++ Parsing Driver): Use variants.
64 Add more comments.
65 Adjust style.
66 (Calc++ Parser): Declare all the tokens, no
67 longer accept raw characters.
68 Remove %union.
69 Adjust types and printers.
70 Remove destructors.
71 (Calc++ Scanner): Use make_<SYMBOL> functions.
72 Use strerror in error message.
73
74 2009-09-16 Akim Demaille <demaille@gostai.com>
75
76 doc: spell checking.
77 * doc/bison.texinfo: here.
78
79 2009-09-16 Akim Demaille <demaille@gostai.com>
80
81 doc: comment changes.
82 * doc/bison.texinfo: Comment changes.
83
84 2009-09-16 Akim Demaille <demaille@gostai.com>
85
86 lalr1.cc: factor the yytranslate_ invocation in make_SYMBOLS.
87 * data/c++.m4, data/lalr1.cc (parser::symbol_type): Change the
88 constructor to take a token_type instead of the (internal) symbol
89 number.
90 Call yytranslate_.
91 * data/variant.hh (b4_symbol_constructor_define_): Therefore,
92 don't call yytranslate_ here.
93
94 2009-09-16 Akim Demaille <demaille@gostai.com>
95
96 TODO: statistics.
97 * TODO (Figures): New.
98
99 2009-09-13 Joel E. Denny <jdenny@clemson.edu>
100
101 tests: clean up push.at test group titles.
102 * tests/push.at: Remove "Push Parsing: " from test group titles
103 because these are already under the banner "Push Parsing Tests".
104
105 2009-09-12 Alex Rozenman <rozenman@gmail.com>
106
107 Provide an additional sub-message for clarity.
108 Add "symbol not found in production" error message when
109 an "invalid reference" is detected in named references
110 resolution.
111 * src/scan-code.l: Update "invalid reference" case.
112 * tests/named-ref.at: Adjust test-cases.
113
114 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
115
116 Clean up yacc.c a little.
117 * data/yacc.c: Clean up M4 for readability, and make output
118 whitespace more consistent. For the main parse function
119 comment, instead of saying "yyparse or yypush_parse", say either
120 "yyparse" or "yypush_parse" depending on which it actually is.
121
122 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
123
124 Fix --enable-gcc-warnings.
125 * src/parse-gram.y (%printer <param>): Handle param_none.
126
127 2009-09-09 Akim Demaille <demaille@gostai.com>
128
129 lalr1.cc: syntax_error as exceptions.
130 It is common to use sort of factories in the user actions. These
131 factories may check some "syntactic" constraints that are not
132 enforced by the grammar itself. This is possible using YYERROR
133 within the action itself. Provide the user with a means to throw
134 a syntax_error exception.
135
136 * data/c++.m4 (b4_public_types_declare, b4_public_types_define):
137 Declare and define yy::parser::syntax_error.
138 * data/lalr1.cc: Include stdexcept.
139 (yy::parser::parse): Wrap the user action within a try/catch.
140 * data/glr.cc: Include stdexcept.
141
142 2009-09-09 Akim Demaille <demaille@gostai.com>
143
144 lalr1.cc: add missing "inline".
145 * data/c++.m4 (b4_public_types_define): Add missing inline to
146 implementations provided in headers.
147
148 2009-09-09 Akim Demaille <demaille@gostai.com>
149
150 %param: documentation.
151 * NEWS (2.6): Document %param, %lex-param, and %parse-param
152 changes.
153 * doc/bison.texinfo: Document that %lex-param and %parse-param
154 are n-ary.
155 Changes some examples to demonstrate it.
156 (Calc++ Parser): Use %param.
157
158 2009-09-09 Akim Demaille <demaille@gostai.com>
159
160 Regen.
161
162 2009-09-09 Akim Demaille <demaille@gostai.com>
163
164 style changes.
165 * src/parse-gram.y (add_param): Scope changes.
166
167 2009-09-09 Akim Demaille <demaille@gostai.com>
168
169 %parse: support several arguments.
170 * src/parse-gram.y (current_param): New.
171 (param_type): Add param_none.
172 (params): New nonterminal.
173 Use it.
174
175 2009-09-09 Akim Demaille <demaille@gostai.com>
176
177 Regen.
178
179 2009-09-09 Akim Demaille <demaille@gostai.com>
180
181 %param.
182 Provide a means to factor lex-param and parse-param common
183 declarations.
184
185 * src/parse-gram.y (param_type): New.
186 Define a %printer for it.
187 (add_param): Use it.
188 (%parse-param, %lex-param): Merge into...
189 (%parse): this new token.
190 Adjust the grammar to use it.
191 * src/scan-gram.l (RETURN_VALUE): New.
192 (RETURN_PERCENT_FLAG): Use it.
193 (RETURN_PERCENT_PARAM): New.
194 Use it to support %parse-param, %lex-param and %param.
195
196 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
197
198 Use aver not assert.
199 * src/output.c: Don't include assert.h.
200 (output_skeleton): Use aver not assert.
201 * src/system.h (aver): In documentation of why, add links to
202 Paul Eggert's explanations in the mailing lists.
203
204 2009-09-05 Alex Rozenman <rozenman@gmail.com>
205
206 Use "Unresolved reference" error message when no symbols were found
207 in a symbolic reference resolution. Remove .expr and -expr from
208 the shown reference when the reference is unresolved.
209 * src/scan-code.l: Change the error message, adjust location columns,
210 rename variable "exact_mode" to "explicit_bracketing".
211 * tests/named-ref.at: Adjust existing tests and add a new one.
212
213 2009-09-04 Akim Demaille <demaille@gostai.com>
214
215 Adjust synclines in src/parse-gram.[ch].
216 * tests/bison.in: Do some magic (including working around issues
217 with ylwrap) when this wrapper is used to compile
218 src/parse-gram.y.
219
220 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
221
222 Complain about unused %define variables and %code qualifiers.
223 * NEWS (2.5): Document.
224 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
225 * doc/bison.texinfo (Decl Summary): Document complaint, and
226 improve %define documentation a little otherwise.
227 * tests/input.at (Reject unused %code qualifiers): Update.
228 (%define errors): Update.
229 (%define, --define, --force-define): Update.
230 (%define backward compatibility): Update.
231 (Unused %define api.pure): Update.
232 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
233
234 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
235
236 Don't suppress warnings about unused parse.error.
237 * data/bison.m4 (b4_error_verbose_flag): Don't examine value of
238 %define variable parse.error unless b4_error_verbose_flag is
239 actually expanded in a skeleton.
240
241 2009-09-03 Akim Demaille <demaille@gostai.com>
242
243 * NEWS (2.4.2): Add "Internationalization" item.
244
245 2009-09-03 Akim Demaille <demaille@gostai.com>
246
247 bootstrap: fix/improve find_tool.
248 * bootstrap (find_tool): Improve error messages.
249 Fix typo about find_tool_names.
250
251 2009-08-29 Joel E. Denny <jdenny@clemson.edu>
252
253 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
254 See
255 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
256 * src/scan-code.h (code_props_rule_action_init): Rename
257 named_ref arg to name so it doesn't shadow named_ref type. This
258 makes it consistent with the function definition in scan-code.l
259 anyway.
260
261 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
262
263 %define: accept unquoted values.
264 * NEWS (2.5): Group all %define changes together, and document
265 this one. Remove quotes in IELR and canonical LR entry.
266 * doc/bison.texinfo: Remove quotes in most examples throughout.
267 (Decl Summary): Update %define documentation.
268 (Table of Symbols): Likewise.
269 * src/ielr.c (LrType): Update documentation.
270 * src/parse-gram.y (content.opt): Add production for ID.
271 * tests/actions.at: Remove quotes in most tests.
272 * tests/calc.at: Likewise.
273 * tests/existing.at: Likewise.
274 * tests/input.at: Likewise.
275 * tests/local.at: Likewise.
276 * tests/push.at: Likewise.
277 * tests/reduce.at: Likewise.
278 * tests/torture.at: Likewise.
279
280 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
281
282 %define lr.type: make values lowercase IDs.
283 That is, "LALR" => "lalr", "IELR" => "ielr", and
284 "canonical LR" => "canonical-lr".
285 * NEWS (2.5): Update documentation.
286 * doc/bison.texinfo (Decl Summary): Likewise.
287 * src/ielr.c (ielr): Use new values.
288 * src/ielr.h (ielr): Update documentation.
289 * src/reader.c (prepare_percent_define_front_end_variables): Use
290 and validate new values.
291 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
292 grammars.
293 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
294
295 2009-08-27 Eric Blake <ebb9@byu.net>
296
297 scan-gram: avoid portability trap with ctype usage.
298 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
299 Avoid compiler warning.
300
301 2009-08-27 Joel E. Denny <jdenny@clemson.edu>
302
303 tests: use perl for printing special sequences to files.
304 And skip tests if perl is not available. This is better than
305 playing tricks with shell portability. Suggested by Akim
306 Demaille.
307 * tests/input.at (Bad character literals): Use it here for
308 omitting final newlines.
309 (Bad escapes in literals): Use it here for special characters.
310
311 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
312
313 tests: show a use of %define lr.default-reductions "consistent"
314 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
315 prevents the omission of expected tokens for %error-verbose.
316
317 2009-08-26 Akim Demaille <demaille@gostai.com>
318
319 tests: portability fix.
320 * tests/input.at (Bad escapes in literals): Don't expect "echo
321 '\0'" to output \ then 0.
322
323 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
324
325 Actually handle the yytable zero value correctly this time.
326 * data/bison.m4 (b4_integral_parser_tables_map): Don't mention
327 zero values in the YYTABLE comments.
328 * data/glr.c (yytable_value_is_error): Don't check for zero
329 value.
330 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
331 * data/yacc.c (yytable_value_is_error): Likewise.
332 * data/lalr1.java (yy_table_value_is_error_): Likewise.
333 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
334 * src/tables.h: In header comments, explain why it's useless to
335 check for a zero value in yytable.
336
337 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
338
339 More fixes related to last two patches.
340 * data/bison.m4 (b4_integral_parser_tables_map): Fix YYTABLE
341 comments: zero indicates syntax error not default action.
342 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
343 defined.
344 * data/glr.c (yyis_pact_ninf): Rename to...
345 (yypact_value_is_default): ... this.
346 (yyisDefaultedState): Update for rename.
347 (yyis_table_ninf): Rename to...
348 (yytable_value_is_error): ... this, and check for value zero
349 besides just YYTABLE_NINF.
350 (yygetLRActions): Check for default value from yypact. It
351 appears that this check is always performed before this function
352 is invoked, and so adding the check here is probably redundant.
353 However, the code may evolve after this subtlety is forgotten.
354 Also, update for rename to yytable_value_is_error. Because that
355 macro now checks for zero, a different but equivalent branch of
356 the if-then-else here is evaluated.
357 (yyreportSyntaxError): Update for rename to
358 yytable_value_is_error. The zero condition was mishandled
359 before.
360 (yyrecoverSyntaxError): Update for renames. No behavioral
361 changes.
362 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
363 New function.
364 (yy_table_value_is_error_): New function.
365 (parse): Use new functions where possible. No behavioral
366 changes.
367 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
368 The zero condition was mishandled before.
369 * data/yacc.c (yyis_pact_ninf): Rename to...
370 (yypact_value_is_default): ... this.
371 (yyis_table_ninf): Rename to...
372 (yytable_value_is_error): ... this, and check for value zero
373 besides just YYTABLE_NINF.
374 (yysyntax_error): Update for rename to yytable_value_is_error.
375 The zero condition was mishandled before.
376 (yyparse): Update for renames. No behavioral changes.
377 * src/tables.h: Improve comments about yypact, yytable, etc.
378 more. Most importantly, say yytable value of zero means syntax
379 error not default action.
380
381 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
382
383 Fix %error-verbose for conflicts resolved by %nonassoc.
384 * NEWS (2.5): Document.
385 * data/glr.c (yyreportSyntaxError): Fix this by checking
386 yyis_table_ninf.
387 * data/yacc.c (yysyntax_error): Likewise.
388 * data/lalr1.cc (yysyntax_error_): Fix this by checking
389 yytable_ninf_.
390 * data/lalr1.java (yysyntax_error): Likewise.
391 * tests/conflicts.at (%nonassoc and eof): Update expected output
392 and remove FIXME.
393
394 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
395
396 Some code and documentation improvements.
397 * data/c.m4 (b4_table_value_equals): New macro to capture
398 some repeated code.
399 * data/glr.c (yyis_pact_ninf): Use it here.
400 (yyis_table_ninf): Likewise.
401 (yyreportSyntaxError): Improve internal comments.
402 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
403 Use it everywhere possible.
404 (yyis_table_ninf): Likewise.
405 (yysyntax_error): Improve internal comments.
406 * data/lalr1.cc (yysyntax_error_): Likewise.
407 * data/lalr1.java (yysyntax_error): Likewise.
408 * src/tables.h: Improve comments about yypact, yytable, etc.
409
410 2009-08-21 Joel E. Denny <jdenny@clemson.edu>
411
412 Use locale when quoting.
413 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
414 quote rather than implementing quoting here.
415
416 2009-08-20 Eric Blake <ebb9@byu.net>
417
418 Make previous patch more robust.
419 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
420 argmatch.h.
421 (output_skeleton): Use it.
422 Suggested by Akim Demaille.
423
424 Import latest m4/m4.m4.
425 * submodules/autoconf: Update to autoconf 2.64.
426 * configure.ac (M4_GNU_OPTION): New define.
427 * src/output.c (output_skeleton): Use it to resolve FIXME.
428 * NEWS: Mention this.
429
430 2009-08-19 Joel E. Denny <jdenny@clemson.edu>
431
432 Fix complaints about escape sequences.
433 Discussed starting at
434 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
435 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
436 For a \0 and similar escape sequences meaning the null
437 character, report an invalid escape sequence instead of an
438 invalid null character because the latter does not actually
439 appear in the user's input.
440 In all escape sequence complaints, don't escape the initial
441 backslash, and don't quote when the sequence appears at the end
442 of the complaint line unless there's whitespace that quotearg
443 won't escape.
444 Consistently say "invalid" not "unrecognized".
445 Consistently prefer "empty character literal" over "extra
446 characters in character literal" warning for invalid escape
447 sequences; that is, consistently discard those sequences.
448 * tests/input.at (Bad escapes in literals): New.
449
450 2009-08-19 Akim Demaille <demaille@gostai.com>
451
452 doc: fixes.
453 * doc/bison.texinfo: Fix minor Texinfo errors.
454
455 2009-08-19 Akim Demaille <demaille@gostai.com>
456
457 tests: distcc compliance.
458 * tests/synclines.at (AT_SYNCLINES_COMPILE): Discard distcc's
459 error messages from the output.
460
461 2009-08-19 Akim Demaille <demaille@gostai.com>
462
463 variables: simplify the upgrade of namespace into api.namespace.
464
465 This patch simplifies "variables: rename namespace as
466 api.namespace", commit 67501061076ba46355cfd9f9361c7eed861b389c.
467 Suggested by Joel E. Denny in
468 http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00006.html
469
470 * src/muscle-tab.c (muscle_percent_variable_update): New.
471 (muscle_percent_define_insert): Use it in replacement of the
472 previous tr invocation.
473 Remove variable_tr, no longer needed.
474 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
475 Remove.
476 * data/c++.m4: No longer handle namespace -> api.namespace.
477 * tests/input.at (%define backward compatibility): Check that
478 namespace is treated as api.namespace.
479
480 2009-08-19 Akim Demaille <demaille@gostai.com>
481
482 doc: %initial-action to initialize yylloc.
483 Reported by Bill Allombert.
484 * doc/bison.texinfo: Set fill-column to 76.
485 (Location Type): Document the use of %initial-action to initialize
486 yylloc.
487
488 2009-08-19 Akim Demaille <demaille@gostai.com>
489
490 lalr1.cc: use state_type.
491 * data/lalr1.cc (yysyntax_error_): Use state_type.
492 Move argument names into yy*.
493
494 2009-08-19 Akim Demaille <demaille@gostai.com>
495
496 lalr1.cc: get rid of yyparse's yystate.
497 yystate and yystack_[0].state are equal, keep only the latter.
498 The former was also used as a temporary variable to compute the
499 post-reduction state. Move this computation into an auxiliary
500 function.
501
502 * data/glr.c (yyLRgotoState): Fuse variable definition and first
503 assignment.
504 * data/lalr1.cc (yy_lr_goto_state_): New.
505 (yyparse): Use it.
506 Replace remaining uses of yystate by yystate_[0].state.
507 Remove the former.
508
509 2009-08-19 Akim Demaille <demaille@gostai.com>
510
511 lalr1.cc: destroy $$ when YYERROR is called.
512 * data/lalr1.cc (yyreduce): Compute the resulting state before
513 running the user action so that yylhs is a valid symbol.
514 (yyerrorlab): Since yylhs is complete (it knows its type), we can
515 simply call yy_destroy_ to destroy $$ on YYERROR invocations.
516 * tests/c++.at (AT_CHECK_VARIANTS): Test YYERROR with variants.
517
518 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
519
520 maint: update for gnulib's recent update-copyright changes
521 * gnulib: Update.
522 * .x-update-copyright (COPYING): Add as it's no longer implied
523 when .x-update-copyright is present.
524 * cfg.mk (update-copyright-local): Remove, now ignored.
525 (update-copyright): Declare update-b4-copyright as a dependency.
526
527 2009-08-17 Akim Demaille <demaille@gostai.com>
528
529 build: require gettext 0.17.
530
531 Suggested by Bruno Haible.
532 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
533 * configure.ac: require gettext 0.17 to ensure compatibility with
534 gnulib.
535
536 2009-08-17 Akim Demaille <demaille@gostai.com>
537
538 build: lower gettext requirements.
539
540 Bison was uselessly requiring the formatstring macros from
541 gettext, which resulted in mo files not being installed on systems
542 that perfectly supported Bison mo files. Lower the requirement.
543 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
544
545 * configure.ac: Require need-ngettext instead of
546 need-formatstring-macros.
547 Reported by Martin Jabocs.
548 Suggested by Bruno Haible.
549 * INSTALL: Restructure.
550 (Internationalization): New.
551
552 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
553
554 maint: fix use of copyright year intervals.
555 * gnulib: Update.
556 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
557 as now recommended in gnulib/NEWS.
558 * build-aux/update-b4-copyright: Fix.
559 * cfg.mk (update-copyright-env): Configure update-copyright.
560
561 2009-08-13 Joel E. Denny <jdenny@clemson.edu>
562
563 Make it easier to write deterministic tests.
564 Continues Akim's work from his 2009-06-10 commits.
565 * src/reader.c (check_and_convert_grammar): Don't add any
566 symbols after the first symbols_do invocation.
567 * src/symtab.c (symbols_sorted): New static global.
568 (user_token_number_redeclaration): Update comments.
569 (symbol_from_uniqstr): If a new symbol is being created, assert
570 that symbols_sorted hasn't been allocated yet.
571 (symbols_free): Free symbols_sorted.
572 (symbols_cmp, symbols_cmp_qsort): New functions.
573 (symbols_do): Sort symbol_table into symbols_sorted on first
574 invocation.
575 * tests/input.at (Numbered tokens): Recombine tests now that the
576 output should be deterministic across multiple numbers.
577
578 2009-08-12 Akim Demaille <demaille@gostai.com>
579
580 tests: GCC 4.5 compliance.
581 * tests/synclines.at (AT_SYNCLINES_COMPILE): Adjust to GCC 4.5's
582 messages about #error.
583
584 2009-08-12 Akim Demaille <demaille@gostai.com>
585
586 build: fix the generation of the documentation.
587 Some of our targets use "bison --help", but they can't depend on
588 "bison" itself (to avoid additional requirements on the user), so
589 they used to call "make src/bison" in the commands. Then
590 concurrent builds may fail: one make might be aiming one of its
591 jobs at compiling src/bison, and another job at generating the man
592 page. If the latter is faster than the former, then we have two
593 makes that concurrently try to compile src/bison.
594
595 This might also be a more convincing explanation for the failure
596 described in the patch "build: fix paths".
597
598 * Makefile.am (SUFFIXES): Initialize.
599 * build-aux/move-if-change: New, symlink to gnulib's.
600 * build-aux/local.mk: Ship it.
601 * doc/common.x: Remove, merged into...
602 * doc/bison.x: here.
603 * doc/local.mk (doc/bison.help): New.
604 ($(CROSS_OPTIONS_TEXI)): Depend on it.
605 Use src/bison.
606 (.x.1): Replace with...
607 (doc/bison.1): this explicit, simpler, target.
608 (common_dep): Remove, inlined where appropriate.
609 (SUFFIXES, PREPATH): Remove, unused.
610
611 2009-08-12 Akim Demaille <demaille@gostai.com>
612
613 gnulib: improve prefixing.
614 * configure.ac (gl_PREFIXED_LIBOBJS): Don't rename it, rather,
615 change the value of...
616 (gl_LIBOBJS): this.
617 Adjust more variables.
618 * etc/prefix-gnulib-mk (prefix_assignment): Don't rename
619 gl_LIBOBJS.
620 (prefix): Also transform rules whose targets have slashes.
621 Use $prefix liberally.
622 Map @MKDIR_P@ to $(MKDIR_P).
623 Prefix directories that are mkdir'd.
624
625 2009-08-12 Akim Demaille <demaille@gostai.com>
626
627 build: fix paths.
628 When using $(top_builddir) inconsistently, Make (including GNU
629 Make) is sometimes confused. As a result it may want to build
630 lib/libbison.la and $(top_builddir)/lib/libbison.la (the same
631 file, different names) concurrently, which, amusingly enough,
632 might end with:
633
634 ranlib lib/libbison.a
635 ranlib lib/libbison.a
636 make[2]: *** [lib/libbison.a] Segmentation fault
637
638 on OS X.
639
640 * doc/local.mk, src/local.mk: Do not use $(top_builddir) when not
641 needed.
642
643 2009-08-12 Akim Demaille <demaille@gostai.com>
644
645 distcheck: fix.
646
647 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
648
649 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
650
651 * tests/local.mk (TESTSUITE_AT): Add named-refs.at.
652
653 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
654
655 Miscellaneous code readability improvements.
656
657 * src/reader.c (reader): Move %define front-end variable
658 defaults and checking into...
659 (prepare_percent_define_front_end_variables): ... this new
660 function.
661
662 * src/scan-gram.l (INITIAL): For consistency with string
663 literals, don't store open quote on character literal. It's
664 discarded before returning anyway.
665 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
666 Make length test more readable, and make the character stored
667 for an empty literal more obvious while consistent with the
668 previous behavior.
669
670 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
671 USER_NUMBER_HAS_STRING_ALIAS throughout.
672 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
673 that is repeated in symtab.h. Improve argument names to make it
674 clear which side of the symbol-string alias pair is which.
675 (symbol_check_alias_consistency): Improve local variable names
676 for the same purpose.
677 * src/symtab.h (struct symbol): Make comments about aliases
678 clearer.
679 (symbol_make_alias): Improve comments and argument name.
680 * src/output.c (token_definitions_output): Update for rename to
681 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
682
683 2009-08-08 Alex Rozenman <rozenman@gmail.com>
684
685 Convert "misleading reference" messages to warnings.
686 * src/scan-code.l: New function 'show_sub_messages', more
687 factoring.
688 * tests/named-ref.at: Adjust tests.
689
690 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
691
692 maint: run "make update-copyright"
693
694 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
695
696 maint: make update-b4-copyright easier to use
697 * build-aux/update-b4-copyright: In warnings, report line
698 numbers rather than character positions.
699 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
700 that update-copyright runs it.
701 * gnulib: Update.
702
703 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
704
705 maint: clean up update-b4-copyright code
706 * build-aux/update-b4-copyright: Do not accept 2-digit
707 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
708 Don't accept a `[' in a b4_copyright argument.
709 Format code more consistently.
710 Don't assume b4*copyright never occurs.
711
712 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
713
714 maint: automate b4_copyright updates.
715 * Makefile.am (update-b4-copyright): New target rule.
716 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
717 * build-aux/update-b4-copyright: New.
718 * data/yacc.c: Remove stray characters around b4_copyright
719 invocations.
720
721 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
722
723 maint: automate annual package-wide copyright-year update.
724 * .x-update-copyright: New.
725 * Makefile.am (EXTRA_DIST): Remove maint.mk.
726 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
727 update-copyright. Remove gnumakefile, which is implied by
728 maintainer-makefile.
729 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
730 * gnulib: Update.
731 * maint.mk: Remove, now copied from gnulib.
732 * examples/extexi: Add missing "(C)" in copyright statement so
733 update-copyright can recognize it.
734 * src/LR0.h: Likewise.
735 * src/print.h: Likewise.
736 * src/print_graph.h: Likewise.
737 * src/gram.c: Add missing comma in copyright statement.
738 * src/gram.h: Likewise.
739
740 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
741
742 Fix "make distcheck".
743 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
744 of just calc.stamp.
745
746 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
747
748 Pacify "gcc -Wunused" for the input function from Flex.
749 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
750 and later.
751 * src/scan-code.l: Add "%option noinput", which I cannot find in
752 the Flex manual, but which Flex has supported since at least as
753 far back as 2.5.4. However, if any of our developers still use
754 Flex 2.5.4, they'll need to stop configuring with
755 --enable-gcc-warnings because "%option noinput" didn't work
756 correctly until Flex 2.5.6.
757 * src/scan-gram.l: Likewise.
758 * src/scan-skel.l: Likewise.
759
760 2009-07-31 Alex Rozenman <rozenman@gmail.com>
761
762 Fix --enable-gcc-warnings problems.
763 * src/reader.c: Adjust variable names.
764 * src/scan-code.l: Fix prototypes and adjust names.
765 * src/named-ref.c: Remove redundant "if".
766
767 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
768
769 Fix a --enable-gcc-warnings problem.
770 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
771 variable.
772
773 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
774
775 Warn about character literals not of length one.
776 * NEWS (2.5): Document.
777 * src/scan-gram.l (INITIAL): Remove comment that we don't check
778 the length.
779 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
780 * tests/input.at (Bad character literals): New test group.
781
782 2009-07-24 Alex Rozenman <rozenman@gmail.com>
783
784 Fix some memory leaks.
785 * src/named-ref.c: Add a pointer check (named_ref_free).
786 * src/scan-code.l: New function (variant_table_free). Called in
787 code_scanner_free.
788 * src/symlist.c: Call to named_ref_free (symbol_list_free).
789
790 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
791
792 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
793
794 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
795
796 Some M4 cleanup in the testsuite.
797 Suggested by Eric Blake at
798 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
799 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
800 complicate the code by distinguishing between a missing value
801 and an empty string value for an optional argument. This fix is
802 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
803 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
804 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
805 arguments are not needed because of the following changes.
806 Fix stale comments.
807 Bison developers should use GNU M4 and should not use
808 POSIXLY_CORRECT when building the test suite, so do not
809 complicate the code by avoiding $10 and above.
810 Do not quote an empty string value for an optional argument, and
811 do not distinguish between a missing value and an empty string
812 value.
813
814 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
815
816 Revert unnecessary column realignment in --help output.
817 Reported by Akim Demaille at
818 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
819 * src/getargs.c (usage): Here.
820
821 2009-07-04 Alex Rozenman <rozenman@gmail.com>
822
823 Alphabetical order in src/local.mk.
824 * src/local.mk: Adjust.
825
826 2009-07-04 Alex Rozenman <rozenman@gmail.com>
827
828 Style changes and factoring.
829 * src/named-ref.h: Add comments.
830 * src/parse-gram.y: Readability and style changes.
831 * src/reader.c: Factoring: assign_named_ref function.
832 * src/scan-code.l: Factoring and style changes. Rename
833 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
834 Use "unsigned" type for variant index. Improve readablity.
835 * src/scan-gram.l: Change error messages and add comments.
836 * src/symlist.h: symbol_list_null: New function decl.
837 * src/symlist.c: symbol_list_null: Implement here.
838 * tests/named-refs.at: Adjust for new error messages.
839
840 2009-06-29 Eric Blake <ebb9@byu.net>
841
842 scan-code: avoid compiler warnings
843 * src/scan-code.l (parse_named_ref): Use correct specifiers.
844
845 2009-06-29 Akim Demaille <demaille@gostai.com>
846
847 build: avoid concurrent extraction of calc++.
848 * examples/calc++/Makefile.am (calc.stamp): New.
849 Depend on it to create the sources of calc++ so that concurrent
850 builds don't launch several "extexi" in parallel.
851 Not only this is inefficient, this also builds incorrect sources
852 with several extractions mixed together.
853
854 2009-06-29 Akim Demaille <demaille@gostai.com>
855
856 parse.error: fix.
857 * data/bison.m4: Move code related to specific variables after the
858 definition of the variable-maintaining macros so that we don't
859 "invoke" b4_percent_define_check_values before it is defined.
860
861 2009-06-29 Akim Demaille <demaille@gostai.com>
862
863 variables: parse.error
864
865 Implement, document, and test the replacement of %error-verbose
866 by %define parse.error "verbose".
867 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
868 values of the parse.error variable.
869 Make "simple" its default value.
870 Check the valid values.
871 * src/parse-gram.y: Use %define parse.error.
872 (PERCENT_ERROR_VERBOSE): New token.
873 Support it.
874 * src/scan-gram.l: Support %error-verbose.
875
876 * doc/bison.texinfo (Decl Summary): Replace the documentation of
877 %define error-verbose by that of %define parse.error.
878 * NEWS: Document it.
879
880 * tests/actions.at, tests/calc.at: Use parse.error instead of
881 %error-verbose.
882
883 2009-06-27 Alex Rozenman <rozenman@gmail.com>
884
885 Implement support for named symbol references.
886 * src/parse-gram.y: Add new syntax (named_ref.opt).
887 * src/reader.c: Store named refs in symbol lists.
888 * src/reader.h: New argument for symbol_append and
889 action_append functions.
890 * src/scan-code.h: Add new field (named_ref) into
891 code_props data structure. Keeps named ref of midrule
892 actions.
893 * src/scan-code.l: Support for named refs in semantic
894 action code. New function 'parse_named_ref'.
895 * src/scan-gram.l: Support bracketed id.
896 * src/symlist.c: Store named refs in symbol lists.
897 * src/symlist.h: New field in symbol list: named_ref.
898 * src/named-ref.h: New file, a struct for named_ref.
899 * src/named-ref.cp: New file, named_ref_new function.
900 * src/local.mk: Add two new files.
901 * tests/testsuite.at: Include new test group:
902 * tests/named-refs.at: this new file.
903
904 2009-06-25 Akim Demaille <demaille@gostai.com>
905
906 hash: check insertion for memory exhaustion.
907 * src/uniqstr.c (uniqstr_new): New.
908
909 2009-06-24 Akim Demaille <demaille@gostai.com>
910
911 variables: rename namespace as api.namespace.
912 Discussed in
913 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
914
915 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
916 New.
917 (b4_percent_define_use): New.
918 Use it where applicable.
919 * data/c++.m4: Replace uses of the variable "namespace" by
920 "api.namespace".
921 Default the latter to the former.
922 * doc/bison.texinfo (Decl Summary): Document "namespace" as
923 obsolete.
924 Document api.namespace.
925 Use @samp to document %define uses, keep @code for identifiers.
926 * NEWS: Likewise.
927 * tests/c++.at, tests/input.at: Test api.namespace instead of
928 namespace. (The tests passed with namespace.)
929
930 2009-06-11 Akim Demaille <demaille@gostai.com>
931
932 style changes.
933 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
934 * src/print-xml.c: Style changes.
935 * tests/conflicts.at: Comment changes.
936
937 2009-06-11 Akim Demaille <demaille@gostai.com>
938
939 xml: beware of user strings used to give a %prec to rules.
940 * tests/conflicts.at (%prec with user strings): New.
941 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
942 XML output.
943
944 2009-06-11 Akim Demaille <demaille@gostai.com>
945
946 hash: check insertion for memory exhaustion.
947 * src/muscle-tab.c (muscle_insert, muscle_grow)
948 * src/state.c (state_hash_insert): Check the return value of
949 hash_insert.
950
951 2009-06-11 Akim Demaille <demaille@gostai.com>
952
953 tests: honor TESTSUITEFLAGS in every check target.
954 * tests/local.mk (RUN_TESTSUITE): New.
955 (check-local, installcheck-local, maintainer-check-g++)
956 (maintainer-check-posix, maintainer-check-valgrind): Use it.
957
958 2009-06-10 Akim Demaille <demaille@gostai.com>
959
960 deterministic test suite.
961 Some consistency checks on symbols are performed after all the
962 symbols were read, by an iteration over the symbol table. This
963 traversal is nondeterministic, which can be a problem for test
964 cases.
965 Avoid this.
966 Addresses another form of nondeterminism reported by Joel E. Denny.
967 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
968
969 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
970 test in two.
971 Use different file names for the three tests to make the
972 maintenance easier.
973
974 2009-06-10 Akim Demaille <demaille@gostai.com>
975
976 gnulib: update.
977 * gnulib: Update to latest.
978 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
979 * m4/.gitignore: Regen.
980 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
981 Call xalloc_die on hash_insert failures.
982 Requested by the new __warn_unused_result__ attribute of
983 hash_insert.
984
985 2009-06-10 Akim Demaille <demaille@gostai.com>
986
987 deterministic user-token-number redeclaration errors.
988 Address nondeterminism reported by Joel E. Denny.
989 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
990
991 * src/uniqstr.h: Comment changes.
992 * src/location.h (boundary_cmp, location_cmp): New.
993 * src/symtab.c (user_token_number_redeclaration): New.
994 (symbol_translation): Use it.
995 * tests/input.at (Numbered tokens): Adjust the expected output.
996
997 2009-05-25 Akim Demaille <demaille@gostai.com>
998
999 build: avoid ignored errors.
1000 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
1001 errors, they pollute the output.
1002
1003 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1004
1005 Convert multiple variable definition warnings to complaints.
1006 * NEWS (2.5): Add a new entry for that change.
1007 * doc/bison.texinfo (Decl Summary): Update %define entry.
1008 (Bison Options): Update -D/--define/-F/--force-define entry.
1009 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
1010 * src/muscle-tab.h (muscle_percent_define_insert): Update
1011 comments.
1012 * tests/input.at (`%define errors'): Update.
1013 (`%define, --define, --force-define'): Update.
1014
1015 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1016
1017 -F/--force-define and relative %define/-D/--define priorities.
1018 * NEWS (2.5): Add documentation to -D/--define entry.
1019 * build-aux/cross-options.pl: Hard-code association of
1020 --force-define with %define.
1021 * doc/bison.texinfo (Decl Summary): In %define entry,
1022 cross-reference command-line options.
1023 (Bison Options): Add documentation to -D/--define entry.
1024 (Option Cross Key): Widen column for --force-define row.
1025 * src/getargs.c (usage): Document -F/--force-define. Realign
1026 options in output.
1027 (short_options, long_options, getargs): Parse -F/--force-define,
1028 and update muscle_percent_define_insert invocations.
1029 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
1030 (muscle_percent_define_insert): Add argument with that type.
1031 * src/muscle-tab.c (muscle_percent_define_insert): Implement
1032 -F/--force-define behavior and priorities.
1033 (muscle_percent_define_ensure): Update
1034 muscle_percent_define_insert invocation.
1035 * src/parse-gram.y (prologue_declaration): Update
1036 muscle_percent_define_insert invocations.
1037 * tests/input.at (`%define, --define'): Rename to...
1038 (`%define, --define, --force-define'): ... this and extend.
1039
1040 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1041
1042 Update some comments to make sense for -D.
1043 * data/bison.m4 (b4_check_user_names): In header comments, say
1044 "user occurrence" instead of "grammar occurrence".
1045 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
1046 (muscle_percent_code_grow): Likewise just for consistency.
1047
1048 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1049
1050 * data/c++.m4 (b4_namespace_close): Simplify slightly.
1051
1052 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
1053
1054 Handle a trailing `:' in a user-supplied C++ namespace better.
1055 * data/c++.m4 (b4_namespace_close): Don't let it be printed
1056 among the closing braces here. This fix might make the
1057 generated code easier to debug, but otherwise it should be
1058 insignificant because a trailing `:' is a C++ error already.
1059
1060 2009-05-19 Akim Demaille <demaille@gostai.com>
1061
1062 remove useless variable.
1063 * src/getargs.c (skeleton_arg): Remove now useless variable.
1064 Should help the compiler see that this printf-like call is sane.
1065
1066 2009-05-15 Akim Demaille <demaille@gostai.com>
1067
1068 Rename token.prefix as api.tokens.prefix.
1069 Discussed here.
1070 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
1071
1072 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
1073 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
1074 (token.prefix): Rename as...
1075 (api.tokens.prefix): this.
1076
1077 2009-05-11 Akim Demaille <demaille@gostai.com>
1078
1079 doc: use C++ headers.
1080 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
1081 headers.
1082
1083 2009-05-11 Akim Demaille <demaille@gostai.com>
1084
1085 doc: token.prefix
1086 * doc/bison.simple (Decl Summary): Document token.prefix.
1087 (Calc++ Parser): Various fixes.
1088 Formatting changes.
1089 Use token.prefix.
1090 Introduce a macro TOKEN to shorten the code and make it more
1091 readable.
1092 (Calc++ Scanner): Adjust.
1093 * NEWS (Variable token.prefix): New.
1094
1095 2009-05-04 Akim Demaille <demaille@gostai.com>
1096
1097 bison: catch bad symbol names.
1098 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
1099 * tests/input.at: Adjust.
1100
1101 2009-05-04 Akim Demaille <demaille@gostai.com>
1102
1103 identifiers: dashes are letters.
1104 Dashes can now start identifiers (symbols and directives).
1105
1106 * src/scan-gram.l ({letter}): Add dash.
1107 ({id}): Remove it.
1108 * tests/input.at (Symbols): Adjust.
1109 Remove stray comment.
1110 * tests/regression.at (Invalid inputs): Adjust error message.
1111 * doc/bison.texinfo (Symbols): Update.
1112
1113 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
1114
1115 Declare %code to be a permanent feature.
1116 * NEWS (2.4.2): Here.
1117 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
1118 experimental.
1119 (Decl Summary): Likewise.
1120
1121 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1122
1123 Convert underscores to dashes in some %define variable names.
1124 For now, just api.push-pull and lr.keep-unreachable-states.
1125 Maintain old names for backward compatibility.
1126 * NEWS (2.5): Document.
1127 * data/c.m4 (b4_identification): Update comment.
1128 * data/yacc.c: Update access.
1129 * doc/bison.texinfo: Update.
1130 * etc/bench.pl.in (bench_push_parser): Update use.
1131 * src/files.c (tr): Move to...
1132 * src/getargs.c, src/getargs.h (tr): ... here because I can't
1133 think of a better place to expose it. My logic is that, for all
1134 uses of tr so far, command-line arguments can be involved, and
1135 getargs.h is already included.
1136 * src/main.c (main): Update access.
1137 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
1138 variable names to new variable names before assigning value.
1139 * src/reader.c (reader): Update setting default.
1140 * tests/calc.at: Update uses.
1141 * tests/conflicts.at (Unreachable States After Conflict
1142 Resolution): Update use.
1143 * tests/input.at (%define enum variables): Update use.
1144 (%define backward compatibility): New test group.
1145 * tests/push.at: Update uses.
1146 * tests/reduce.at: Update uses.
1147 * tests/torture.at: Update uses.
1148
1149 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1150
1151 Set all front-end %define defaults in one place.
1152 * src/main.c (main): Move lr.keep_unreachable_states default...
1153 * src/reader.c (reader): ... to here.
1154
1155 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1156
1157 Rename lr.default_reductions to lr.default-reductions.
1158 * NEWS (2.5): Here.
1159 * doc/bison.texinfo: Here.
1160 * src/lalr.c (initialize_LA): Here.
1161 * src/print.c (print_reductions): Here.
1162 * src/reader.c (reader): Here.
1163 * src/tables.c (action_row): Here.
1164 * tests/input.at (%define enum variables): Here.
1165 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
1166
1167 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1168
1169 Pacify ./configure --enable-gcc-warnings.
1170 * tests/input.at (Symbols): Prototype yyerror and yylex.
1171
1172 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1173
1174 Document how `%define "var" "value"' is not M4-friendly.
1175 * src/parse-gram.y (variable): In comments here.
1176
1177 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1178
1179 Clean up recent patches a little.
1180 Reported by Akim Demaille.
1181 * doc/bison.texinfo (Understanding): Fix typos.
1182 * src/print.c (print_reductions): Don't use negated variable.
1183
1184 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1185
1186 List accepted values for a %define enum variable with an invalid value.
1187 Suggested by Akim Demaille at
1188 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
1189 * data/bison.m4 (_b4_percent_define_check_values): Implement.
1190 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
1191 * tests/input.at (%define lr.default_reductions invalid values): Merge
1192 into...
1193 (%define enum variables): ... here, and update output.
1194
1195 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
1196
1197 Rename "default rule" to "default reduction".
1198 This includes changing variable names in code, changing
1199 comments, and renaming %define lr.default_rules to %define
1200 lr.default_reductions.
1201 * NEWS (2.5): Update IELR documentation.
1202 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
1203 documentation.
1204 * data/glr.c, data/lalr1.java: Sync copyright dates.
1205 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
1206 and lr.type documentation. Make some other wording
1207 improvements.
1208 (Glossary): Adjust cross-references and Default Reduction
1209 definition.
1210 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
1211 Remove a confusing comment pointed out by Akim Demaille.
1212 (initialize_LA): Adjust code.
1213 * src/print-xml.c (print_reductions): Adjust code.
1214 * src/print.c (print_reductions): Adjust code.
1215 * src/reader.c (reader): Adjust code.
1216 * src/tables.c (action_row): Adjust code.
1217 (token_actions): Adjust code.
1218 * src/tables.h: Adjust YYDEFACT documentation.
1219 * tests/input.at (%define lr.default_rules invalid values):
1220 Rename test group to...
1221 (%define lr.default_reductions invalid values): ... this, and
1222 update grammar file and expected output.
1223 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
1224 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
1225
1226 2009-04-21 Akim Demaille <demaille@gostai.com>
1227
1228 tests: check the use of dashes and periods in symbols.
1229 * tests/input.at (Symbol): New test group.
1230
1231 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1232
1233 Document %define lr.type and lr.default_rules.
1234 * NEWS (2.5): Add an entry.
1235 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
1236 besides just LALR(1) and GLR(1).
1237 * doc/bison.texinfo (Introduction): Likewise.
1238 (Language and Grammar): Bison is no longer limited to LALR(1)
1239 restrictions.
1240 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
1241 when trying to distinguish from GLR. Talk about LR(1) grammars
1242 rather than LALR(1) grammars.
1243 (Decl Summary): In %define api.push_pull entry, say it applies
1244 to deterministic parsers in C rather than LALR(1) parsers in C.
1245 Add lr.default_rules entry.
1246 Add lr.type entry.
1247 (Mystery Conflicts): Bison is no longer limited to LALR(1)
1248 restrictions.
1249 (Generalized LR Parsing): Same changes as for the previous GLR
1250 section.
1251 (Memory Management): Say deterministic rather than LALR(1).
1252 (Understanding): Correct some bison output.
1253 Index discussion of "accepting state".
1254 Say deterministic rather than LALR(1).
1255 (Bison Options): In --yacc entry, say deterministic rather than
1256 LALR(1).
1257 In --report, --graph, and --xml entries, just don't mention
1258 LALR(1).
1259 (C++ Parsers): Say deterministic rather than LALR(1).
1260 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
1261 (Glossary): Add Accepting State, Consistent State, Default Rule,
1262 and IELR(1) definitions.
1263 In Generalized LR (GLR) definition, make same changes as in
1264 previous GLR sections.
1265 In LALR(1) definition, say Bison uses LALR(1) by default rather
1266 than implying Bison is limited to LALR(1).
1267 (LocalWords): Add IELR.
1268
1269 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1270
1271 Finish implementing %define lr.type.
1272 Its value can be "LALR", "IELR", or "canonical LR".
1273 * lib/timevar.def (TV_IELR_PHASE1): New var.
1274 (TV_IELR_PHASE2): New var.
1275 (TV_IELR_PHASE3): New var.
1276 (TV_IELR_PHASE4): New var.
1277 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
1278 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
1279 Sbitset.h, ielr.h, and ielr.c.
1280 * src/getargs.h, src/getargs.c (enum trace, trace_args,
1281 trace_types): Add trace_ielr.
1282 * src/lalr.h, src/lalr.c (ngotos): Export it.
1283 (F): Rename to...
1284 (goto_follows): ... this, update all uses, and export it.
1285 (set_goto_map): Export it.
1286 (map_goto): Export it.
1287 (compute_lookahead_tokens): Don't free goto_follows yet. Now
1288 handled in ielr.
1289 (initialize_LA): Export it. Move lookback allocation to...
1290 (lalr): ... here because, for canonical LR, initialize_LA must
1291 be invoked but lookback and much of the rest of LALR isn't
1292 needed.
1293 * main.c (main): Instead of lalr, invoke ielr, which invokes
1294 lalr.
1295 * src/reader.c (reader): Default lr.type to "LALR".
1296 Default lr.default_rules to "accepting" if lr.type is "canonical
1297 LR". Leave the default as "all" otherwise.
1298 Check for a valid lr.type value.
1299 * src/state.h, src/state.c (struct state_list): Add state_list
1300 member.
1301 (state_new): Initialize state_list member to NULL.
1302 (state_new_isocore): New function, exported.
1303 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
1304 exercises all values of lr.type.
1305 (GNU AWK Grammar): Rename test group to...
1306 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
1307 AT_TEST_EXISTING_GRAMMAR.
1308 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
1309 (GNU pic Grammar): Rename test group to...
1310 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
1311 AT_TEST_EXISTING_GRAMMAR.
1312 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
1313 all values of lr.type.
1314 (Single State Split): New test groups using AT_TEST_LR_TYPE.
1315 (Lane Split): Likewise.
1316 (Complex Lane Split): Likewise.
1317 (Split During Added Lookahead Propagation): Likewise.
1318
1319 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1320
1321 Add new files for IELR and canonical LR implementation.
1322 * src/AnnotationList.c: New.
1323 * src/AnnotationList.h: New.
1324 * src/InadequacyList.c: New.
1325 * src/InadequacyList.h: New.
1326 * src/Sbitset.c: New.
1327 * src/Sbitset.h: New.
1328 * src/ielr.c: New.
1329 * src/ielr.h: New.
1330
1331 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1332
1333 Implement %define lr.default_rules.
1334 Its value describes the states that are permitted to contain
1335 default rules: "all", "consistent", or "accepting".
1336 * src/reader.c (reader): Default lr.default_rules to "all".
1337 Check for a valid lr.default_rules value.
1338 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
1339 is "accepting", then only mark the accepting state as
1340 consistent.
1341 (initialize_LA): Tell state_lookahead_tokens_count whether
1342 lr.default_rules is "accepting".
1343 * src/tables.c (action_row): If lr.default_rules is not "all",
1344 then disable default rules in inconsistent states.
1345 * src/print.c (print_reductions): Use this opportunity to
1346 perform some assertions about whether lr.default_rules was
1347 obeyed correctly.
1348 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
1349 helps with checking the parser tables for a grammar.
1350 * tests/input.at (%define lr.default_rules invalid values): New
1351 test group.
1352 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
1353 AT_TEST_TABLES_AND_PARSE.
1354 (`no %define lr.default_rules'): New test group generated by
1355 AT_TEST_LR_DEFAULT_RULES.
1356 (`%define lr.default_rules "all"'): Likewise.
1357 (`%define lr.default_rules "consistent"'): Likewise.
1358 (`%define lr.default_rules "accepting"'): Likewise.
1359
1360 2009-04-20 Akim Demaille <demaille@gostai.com>
1361
1362 Formatting change.
1363
1364 2009-04-20 Akim Demaille <demaille@gostai.com>
1365
1366 bison: factoring.
1367 * src/output.c (token_definitions_output): Use symbol_id_get
1368 instead of duplicating its logic.
1369 * TODO (YYERRCODE): Extend.
1370
1371 2009-04-20 Akim Demaille <demaille@gostai.com>
1372
1373 variables: prefer error-verbose to error_verbose.
1374 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
1375 instead of error_verbose.
1376 * src/scan-gram.l (%error-verbose): Map to the error-verbose
1377 variable.
1378 * doc/bison.texinfo: Promote %define error-verbose instead of
1379 %error-verbose.
1380 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
1381
1382 2009-04-15 Akim Demaille <demaille@gostai.com>
1383
1384 variables: accept dashes.
1385 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
1386 underscores.
1387 * src/scan-gram.l ({id}): Also accept dashes after the initial
1388 letter.
1389 ({directive}): Use {id}.
1390 * src/parse-gram.y: Comment and formatting changes.
1391 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
1392 symbols.
1393 * src/complain.h, src/complain.c (yacc_at): New.
1394 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
1395 symbol names.
1396 * src/output.c (token_definitions_output): Do not #define token
1397 names with dashes.
1398
1399 2009-04-20 Akim Demaille <demaille@gostai.com>
1400
1401 Consistently refer to Yacc, not YACC.
1402 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
1403
1404 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
1405
1406 Pacify make maintainer-check-posix.
1407 * tests/input.at (%define, --define): Move bison command-line
1408 options before grammar file name.
1409
1410 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1411
1412 Document semicolon warnings.
1413 * NEWS (2.5): Here.
1414
1415 2009-04-14 Akim Demaille <demaille@gostai.com>
1416
1417 variables: use `parse.assert' instead of `assert'.
1418 * TODO (assert): Remove.
1419 * data/bison.m4 (b4_assert_if): Replace with...
1420 (b4_parse_assert_if): this.
1421 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
1422 * doc/bison.texinfo (Decl Summary): Document parse.assert.
1423
1424 2009-04-14 Akim Demaille <demaille@gostai.com>
1425
1426 variables: use `parse.trace' instead of `debug'.
1427 * src/getargs.c (getargs): Map -t to %define trace.parse.
1428 * src/scan-gram.l (%debug): Map to %define trace.parse.
1429 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
1430 names to `_' in macro names.
1431 (b4_debug_if): Replace with...
1432 (b4_parse_trace_if): this.
1433 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1434 * data/yacc.c: Adjust.
1435 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
1436 Use @code to label the variable list.
1437 Document the variable parse.trace.
1438 (Tracing): Promote the parse.trace variable.
1439 * TODO: %printer is not documented.
1440
1441 2009-04-14 Akim Demaille <demaille@gostai.com>
1442
1443 doc: minor fixes.
1444 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
1445 (Table of Symbols): Remove duplicate entry for %debug.
1446
1447 2009-04-10 Eric Blake <ebb9@byu.net>
1448
1449 submodules: update to latest
1450 * submodules/autoconf: Use latest upstream Autoconf.
1451
1452 2009-04-06 Eric Blake <ebb9@byu.net>
1453
1454 Work around autoconf 2.63b bug in testsuite.
1455 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
1456 autoconf bug related to # in test.
1457
1458 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1459
1460 * NEWS (2.5): New section. Describe new -D/--define feature.
1461
1462 2009-04-06 Akim Demaille <demaille@gostai.com>
1463
1464 Regen.
1465 * src/parse-gram.h, src/parse-gram.c: Regen.
1466
1467 2009-04-06 Akim Demaille <demaille@gostai.com>
1468
1469 rename muscle_tab.* as muscle-tab.* for consistency.
1470 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
1471 * src/muscle-tab.h, src/muscle-tab.c: these.
1472 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
1473 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
1474
1475 2009-04-06 Akim Demaille <demaille@gostai.com>
1476
1477 Makefile: introduce $(BISON).
1478 * src/local.mk (BISON): New.
1479 (YACC): Use it.
1480
1481 2009-04-06 Akim Demaille <demaille@gostai.com>
1482
1483 parser: handle %locations as %define locations.
1484 * src/getargs.h, src/getargs.c (locations_flag): Remove.
1485 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
1486 to set "locations" to true.
1487 * src/output.c (prepare): Don't output "locations".
1488 * src/scan-gram.l (%locations): Handle it as a %<flag>.
1489 * src/parse-gram.y: It's no longer a token.
1490 Don't handle it.
1491 * data/bison.m4 (b4_locations_if): Define it with
1492 b4_percent_define_if_define.
1493 * data/c.m4, data/glr.cc: Adjust.
1494
1495 2009-04-06 Akim Demaille <demaille@gostai.com>
1496
1497 Regen.
1498 * src/parse-gram.c: Regen.
1499
1500 2009-04-06 Akim Demaille <demaille@gostai.com>
1501
1502 muscle: factor the handling of obsolete of obsolete directives.
1503 Suggested by Joel E. Denny.
1504
1505 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
1506 New, extracted from...
1507 * src/parse-gram.y (prologue_declaration: pure-parser): here.
1508 Remove it.
1509 (prologue_declaration: "%<flag>"): Use
1510 muscle_percent_define_ensure.
1511 (%error-verbose, %pure-parser): No longer tokens.
1512 * src/scan-gram.l (pure-parser): Return as a %<flag>.
1513
1514 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1515
1516 Fix options documentation.
1517 * build-aux/cross-options.pl: As in --help output, write optional
1518 arguments as [=ARG] not =[ARG].
1519 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
1520
1521 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1522
1523 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
1524 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
1525 requirements for a correct m4 are stricter.
1526 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
1527 * configure.ac: Update to use AC_PROG_GNU_M4.
1528 Reported by Eric Blake.
1529
1530 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1531
1532 Help with updating web manual.
1533 * HACKING: Incorporate instructions from gnulib/doc/README.
1534 * bootstrap.conf (gnulib_modules): Add gendocs.
1535
1536 2009-04-03 Akim Demaille <demaille@gostai.com>
1537
1538 Regen.
1539 * src/parse-gram.h, src/parse-gram.c: Regen.
1540
1541 2009-04-03 Akim Demaille <demaille@gostai.com>
1542
1543 Factor %FLAG at scan level.
1544 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
1545 definitions and associated rules, replaced by....
1546 (PERCENT_FLAG): this new token type, and rule.
1547 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
1548 Use it for %debug and %error-verbose.
1549
1550 2009-04-03 Akim Demaille <demaille@gostai.com>
1551
1552 Regen.
1553 * src/parse-gram.h, src/parse-gram.c: Regen.
1554
1555 2009-04-03 Akim Demaille <demaille@gostai.com>
1556
1557 Treat %debug as %define debug.
1558 * data/bison.m4 (b4_debug_if): New.
1559 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
1560 * data/lalr1.java: Use it instead of b4_debug_flag.
1561 * src/getargs.h, src/getargs.c (debug_flag): Remove.
1562 * src/output.c (prepare): Don't output it.
1563 * src/parse-gram.y: Treat %debug as %define debug.
1564
1565 2009-04-03 Akim Demaille <demaille@gostai.com>
1566
1567 Treat %error-verbose as %define error_verbose.
1568 This allows to pass -Derror_verbose on the command line. Better
1569 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
1570 ERROR_VERBOSE being defined as false or true.
1571 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
1572 on b4_percent_define_ifdef, for does not check the defined value,
1573 but only whether the symbol is defined, rely on
1574 b4_percent_define_flag_if, so that a value of "false" is processed
1575 as a false.
1576 If not defined, define the flag to "false".
1577 (b4_error_verbose_if): New.
1578 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
1579 b4_error_verbose_flag.
1580 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
1581 * src/output.c (prepare): Don't output it.
1582 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
1583
1584 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1585
1586 Fix strange %define locations for default values.
1587 Reported by Akim Demaille at
1588 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
1589 and discussed again starting at
1590 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
1591 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
1592 because location information is bogus.
1593 Use angle brackets to delimit fake file name because square brackets
1594 look like underexpanded m4. Choose a better fake file name.
1595 Use negative line numbers.
1596 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
1597 * src/location.c (location_print): If line for a boundary is negative,
1598 only print that boundary's file name.
1599 * src/location.h: Document that.
1600 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1601 defaults): Update output.
1602
1603 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1604
1605 Pacify ./configure --enable-gcc-warnings.
1606 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
1607 in lib won't compile with it.
1608 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
1609
1610 2009-03-31 Akim Demaille <demaille@gostai.com>
1611
1612 bootstrap: --help to stdout.
1613 * bootstrap (usage): Don't send --help to stderr.
1614 Use a here doc instead of a long string.
1615
1616 2009-03-31 Akim Demaille <demaille@gostai.com>
1617
1618 bootstrap: README-hacking no longer exists
1619 * bootstrap (checkout_only_file): Set to HACKING.
1620
1621 2009-03-26 Akim Demaille <demaille@gostai.com>
1622
1623 doc: merge HACKING and README-hacking.
1624 Two files is confusing.
1625 Reported by Alexandre Duret-Lutz.
1626
1627 * README-hacking: Merge into...
1628 * HACKING (Working from the repository): here.
1629
1630 2009-03-26 Akim Demaille <demaille@gostai.com>
1631
1632 doc: update README-hacking.
1633 * README-hacking: We now use git and git submodules.
1634 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
1635
1636 2009-03-26 Akim Demaille <demaille@gostai.com>
1637
1638 lalr1.cc: avoid GCC 4.3 warnings.
1639 GCC 4.3 now warns about "a || b && c" and asks for explicit
1640 parentheses.
1641 Reported by Alexandre Duret-Lutz.
1642 * data/location.cc: Update copyright years.
1643 (Position::operator==): Use parens to make precedence explicit.
1644 Compare lines and columns first, as they are more likely to be
1645 different, and they are faster to compare.
1646
1647 2009-03-26 Akim Demaille <demaille@gostai.com>
1648
1649 gnulib: update.
1650 * gnulib: Update to latest.
1651 * src/local.mk (AM_CFLAGS): Move to...
1652 * Makefile.am: here.
1653 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
1654 AM_CFLAGS.
1655
1656 2009-03-02 Akim Demaille <demaille@gostai.com>
1657
1658 Comment changes.
1659
1660 2009-03-02 Akim Demaille <demaille@gostai.com>
1661
1662 Share b4_yytranslate_define.
1663 * data/lalr1.cc (b4_yytranslate_define): Move to...
1664 * data/c++.m4: here.
1665
1666 2009-03-02 Akim Demaille <demaille@gostai.com>
1667
1668 Use locations in the variant example.
1669 Yes, this obfuscates the point of this example, variants only.
1670 But glr.cc cannot work (yet?) without locations. This change
1671 makes it easier to use this example with glr.cc.
1672
1673 * examples/variant.yy (assert): %define it.
1674 (locations): Request them.
1675 (yylex): Bind the location to the stage.
1676
1677 2009-03-02 Akim Demaille <demaille@gostai.com>
1678
1679 Dub make_TOKEN as a public type interface.
1680 * data/c++.m4 (b4_symbol_constructor_declare)
1681 (b4_symbol_constructor_define): New empty stubs.
1682 (b4_public_types_declare, b4_public_types_define): Use them.
1683 * data/lalr1.cc (b4_symbol_constructor_declare)
1684 (b4_symbol_constructor_declare_)
1685 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
1686 Move to...
1687 * data/variant.hh: here.
1688 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
1689 needed.
1690 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
1691 b4_symbol_constructor_declare, as it is now done by
1692 b4_public_types_define and b4_public_types_declare.
1693
1694 2009-03-02 Akim Demaille <demaille@gostai.com>
1695
1696 Coding style changes.
1697 * data/lalr1.cc (b4_symbol_constructor_declaration_)
1698 (b4_symbol_constructor_declarations)
1699 (b4_symbol_constructor_definition_)
1700 (b4_symbol_constructor_definitions)
1701 (b4_yytranslate_definition): Rename as...
1702 (b4_symbol_constructor_declare_)
1703 (b4_symbol_constructor_declare)
1704 (b4_symbol_constructor_define_)
1705 (b4_symbol_constructor_define)
1706 (b4_yytranslate_define): these.
1707 * data/variant.hh (b4_variant_definition): Rename as...
1708 (b4_variant_define): this.
1709
1710 2009-03-02 Akim Demaille <demaille@gostai.com>
1711
1712 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
1713 * data/bison.m4 (b4_percent_define_if_define): New.
1714 * data/c++.m4 (b4_variant_if): Move to...
1715 * data/bison.m4: Here, using b4_percent_define_if_define.
1716 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
1717 * data/bison.m4: Here, using b4_percent_define_if_define.
1718
1719 2009-03-02 Akim Demaille <demaille@gostai.com>
1720
1721 Dub symbol_type_base as a public type.
1722 * data/c++.m4 (b4_public_types_declare): Now define
1723 symbol_type_base and symbol_type.
1724 (b4_public_types_define): New.
1725 In both cases, the definitions are taken verbatim from lalr1.cc.
1726 * data/lalr1.cc: Adjust.
1727
1728 2009-03-02 Akim Demaille <demaille@gostai.com>
1729
1730 b4_public_types_declare.
1731 * data/c++.m4 (b4_public_types_declare): New.
1732 * data/glr.cc, data/lalr1.cc: Use it.
1733
1734 2009-03-02 Akim Demaille <demaille@gostai.com>
1735
1736 b4_semantic_type_declare.
1737 * data/c++.m4 (b4_semantic_type_declare): New.
1738 Factors and generalizes what was in glr.cc and lalr1.cc.
1739 * data/variant.hh (b4_semantic_type_declare): Redefine it for
1740 variants.
1741 * data/lalr1.cc, data/glr.cc: Use it.
1742
1743 2009-02-26 Akim Demaille <demaille@gostai.com>
1744
1745 Upgrade gnulib.
1746 * gnulib: Upgrade from master.
1747 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
1748 Regen.
1749
1750 2009-02-25 Akim Demaille <demaille@gostai.com>
1751
1752 Remove useless arguments.
1753 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
1754 relevant.
1755
1756 2009-02-25 Akim Demaille <demaille@gostai.com>
1757
1758 Comment changes.
1759 * data/lalr1.cc: here.
1760
1761 2009-02-25 Akim Demaille <demaille@gostai.com>
1762
1763 Fix glr.cc's debug level handling.
1764 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
1765 glr.c which is used.
1766 (debug_level, set_debug_level): Adjust.
1767
1768 2009-02-25 Akim Demaille <demaille@gostai.com>
1769
1770 Copyright years.
1771 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
1772
1773 2009-02-25 Akim Demaille <demaille@gostai.com>
1774
1775 Style changes.
1776 * etc/bench.pl.in (generate_grammar_list): Consitently use
1777 location_type, not yy::location.
1778
1779 2009-02-25 Akim Demaille <demaille@gostai.com>
1780
1781 Comment change.
1782 * data/lalr1.cc: here.
1783
1784 2009-02-19 Akim Demaille <demaille@gostai.com>
1785
1786 Make yyparser::error public.
1787 * data/lalr1.cc: here.
1788 There is no good reason to keep it private (and it is convenient
1789 to use it from the scanner for instance). It is already public in
1790 glr.cc.
1791
1792 2009-02-19 Akim Demaille <demaille@gostai.com>
1793
1794 Comment changes.
1795 * data/glr.cc: here.
1796
1797 2009-02-19 Akim Demaille <demaille@gostai.com>
1798
1799 Remove trailing blanks.
1800 The epilogue has its own ending \n, no need to add another.
1801
1802 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
1803 epilogue.
1804 * data/glr.cc: dnl when extending the epilogue.
1805 Remove stray "private:".
1806
1807 2009-02-19 Akim Demaille <demaille@gostai.com>
1808
1809 Use b4_c_modern.
1810 * data/c.m4 (b4_c_function_decl): Here.
1811
1812 2009-02-19 Akim Demaille <demaille@gostai.com>
1813
1814 Comment changes.
1815 * data/lalr1.cc: here.
1816
1817 2009-02-19 Akim Demaille <demaille@gostai.com>
1818
1819 Extract variant.hh
1820 * data/variant.hh: New, extracted from...
1821 * data/lalr1.cc: here.
1822 Adjust.
1823 * data/local.mk: Adjust.
1824
1825 2009-02-19 Akim Demaille <demaille@gostai.com>
1826
1827 Extract stack.hh from lalr1.cc.
1828 * data/stack.hh: New.
1829 * data/lalr1.cc: Extract from here.
1830 * data/local.mk: Adjust.
1831
1832 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
1833
1834 Add reminder about uploading public key to keys.gnupg.net.
1835 * HACKING (Release Procedure): Here.
1836
1837 2009-01-28 Akim Demaille <demaille@gostai.com>
1838
1839 * NEWS: Update information about 2.4.1 and 2.4.2.
1840
1841 2008-11-04 Akim Demaille <demaille@gostai.com>
1842
1843 Reformat NEWS.
1844 * NEWS: Use more outline-mode markup.
1845 Suggested by Jim Meyering.
1846
1847 2009-01-08 Akim Demaille <demaille@gostai.com>
1848
1849 Fix grep portability issues.
1850 Grep on Solaris does not support -q.
1851 Reported by Summum Bonum.
1852
1853 * NEWS: Add a stub for 2.4.2.
1854 * THANKS: Add Summum Bonum.
1855 * tests/atlocal.in (EGREP): New.
1856 (CC, CXX, XSLTPROC): Make it possible to override them via
1857 envvars.
1858 * tests/java.at: Use $EGREP instead of egrep.
1859 Use AT_CHECK's ignore instead of grep's -q.
1860
1861 2008-12-11 Akim Demaille <demaille@gostai.com>
1862
1863 Pass the token type to yysyntax_error.
1864 * data/yacc.c (yysyntax_error): Take the transated token instead
1865 of the raw number.
1866 Adjust callers.
1867 * TODO: Update.
1868
1869 2008-12-11 Akim Demaille <demaille@gostai.com>
1870
1871 Formatting changes.
1872 * data/glr.c: Formatting changes.
1873
1874 2008-12-11 Akim Demaille <demaille@gostai.com>
1875
1876 Propagate i18n changes into glr.c.
1877 * TODO: Update.
1878 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
1879 building the error message format dynamically.
1880 * data/lalr1.java: Formatting changes.
1881
1882 2008-12-11 Akim Demaille <demaille@gostai.com>
1883
1884 Use testsuite -C.
1885 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
1886 Solves problems when top_srcdir is an absolute path.
1887 Suggested by Eric Blake.
1888 * configure.ac: Require Autoconf 2.62.
1889
1890 2008-12-11 Akim Demaille <demaille@gostai.com>
1891
1892 Simplify the i18n of the error messages.
1893 * data/lalr1.cc: Comment changes.
1894 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
1895 lalr1.cc instead of building dynamically the format string.
1896
1897 2008-12-08 Akim Demaille <demaille@gostai.com>
1898
1899 Fix portability issue in the test suite.
1900 * tests/local.at (AT_MATCHES_CHECK): New.
1901 Based on Perl instead of Sed. Sed has too many portability
1902 pitfalls, not ever Sed is GNU Sed.
1903 * tests/actions.at (Fix user actions without a trailing semicolon):
1904 Use it.
1905
1906 2008-12-08 Akim Demaille <demaille@gostai.com>
1907
1908 Update data/README.
1909 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
1910
1911 2008-12-08 Akim Demaille <demaille@gostai.com>
1912
1913 Install autoconf as a submodule to get m4sugar.
1914 * .gitmodules: Add submodules/autoconf.
1915 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
1916 submodules/autoconf.
1917
1918 2008-12-08 Akim Demaille <demaille@gostai.com>
1919
1920 Test token.prefix in all the skeletons.
1921 * data/java.m4 (b4_token_enum): Use the token.prefix.
1922 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
1923 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
1924 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
1925 * tests/java.at: Comment changes.
1926 (AT_CHECK_JAVA_MINIMAL): Define the END token.
1927 (Java parser class and package names): Add token.prefix check.
1928
1929 2008-12-08 Akim Demaille <demaille@gostai.com>
1930
1931 Fix regeneration of atconfig.
1932 * tests/local.mk (tests/atconfig): The rule was incorrect, but
1933 remove it: now that there is no tests/Makefile.am, the top-level
1934 Makefile properly updates atconfig when needed.
1935
1936 2008-12-07 Di-an Jan <dianj@freeshell.org>
1937
1938 Implement the FIXME that ends an user action with a semicolon
1939 if it seems necessary.
1940 * src/scan-code.l (flex rules section): Flag cpp directive from
1941 any `#' to the first unescaped end-of-line. Semicolon is not
1942 needed after `;', `{', '}', or cpp directives and is needed after
1943 any other token (whitespaces and comments have no effect).
1944 * tests/actions.at (Fix user actions without a trailing semicolon):
1945 New test.
1946 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
1947 to make user actions complete statements.
1948 Adjust column numbers in error messages.
1949 * tests/regression.at (Fix user actions without a trailing semicolon):
1950 Remove. Covered by new test.
1951
1952 2008-12-07 Akim Demaille <demaille@gostai.com>
1953
1954 Update gnulib.
1955 * gnulib: Update from master.
1956
1957 2008-12-05 Eric Blake <ebb9@byu.net>
1958
1959 Avoid compiler warning.
1960 * src/output.c (muscle_insert_item_number_table): Delete unused
1961 function.
1962
1963 2008-12-02 Eric Blake <ebb9@byu.net>
1964
1965 Build testsuite with newer autoconf.
1966 * tests/output.at (m4_expand): Don't override in newer autoconf,
1967 where the underlying implementation changed.
1968 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
1969 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
1970 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
1971 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
1972 since some of them contain unbalanced ')'.
1973
1974 2008-12-01 Akim Demaille <demaille@gostai.com>
1975
1976 Use b4_symbol for printers and destructors everywhere.
1977 * data/bison.m4 (b4_symbol_action_location): New.
1978 * data/c.m4 (b4_symbol_actions): Remove.
1979 Adjust all callers to use by b4_symbol_foreach and the corresponding
1980 b4_symbol_printer/destructor macro.
1981 * data/glr.cc: Adjust.
1982 * data/lalr1.java: Adjust the %destructor sanity check.
1983 * src/output.c (symbol_code_props_output): Remove, we no longer
1984 need the b4_symbol_printers/destructors tables.
1985
1986 2008-12-01 Akim Demaille <demaille@gostai.com>
1987
1988 Use b4_symbol_case_.
1989 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
1990 b4_symbol_case_.
1991
1992 2008-12-01 Akim Demaille <demaille@gostai.com>
1993
1994 Move b4_symbol based macro to bison.m4.
1995 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
1996 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
1997 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
1998 (b4_type_foreach): Move to...
1999 * data/bison.m4: Here.
2000 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
2001 b4_symbol_value_template instead of b4_symbol_value.
2002
2003 2008-12-01 Akim Demaille <demaille@gostai.com>
2004
2005 b4_symbol/type_foreach.
2006 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
2007 Use them.
2008
2009 2008-12-01 Akim Demaille <demaille@gostai.com>
2010
2011 Use the symbol properties to output the printer/destructor for lalr1.cc.
2012 Instead of defining complex list of tuples to define various
2013 properties of the symbols, we now prefer to define symbols as
2014 "structs" in m4: using the symbol key (its number), and the
2015 property name, b4_symbol gives it value. Use this to handle
2016 destructors and printers.
2017
2018 * src/output.c (CODE_PROP): New.
2019 (prepare_symbol_definitions): Use it to define the printer and
2020 destructor related attributes of the symbols.
2021 * data/lalr1.cc (b4_symbol_actions): Rename as...
2022 (b4_symbol_action): this.
2023 Use b4_symbol instead of 6 arguments.
2024 (b4_symbol_printer, b4_symbol_destructor): New.
2025 Use them instead of b4_symbol_actions.
2026
2027 2008-12-01 Akim Demaille <demaille@gostai.com>
2028
2029 Avoid capturing variables too easily.
2030 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
2031 v__ and p__ instead of v and p.
2032
2033 2008-12-01 Akim Demaille <demaille@gostai.com>
2034
2035 Remove spurious empty line before syncline.
2036 * data/bison.m4 (b4_syncline): Don't output an empty line before
2037 the output.
2038
2039 2008-11-26 Akim Demaille <demaille@gostai.com>
2040
2041 Convert lib/Makefile.am into lib/local.mk.
2042 The real problem is rather gnulib.mk, which itself is extracted
2043 from a Makefile.am that gnulib expects to the "recursive". The
2044 tool prefix-gnulib-mk converts such a gnulib.mk to be
2045 non-recursive. Also, some AC_SUBST variables need to be adjusted.
2046
2047 * etc/prefix-gnulib-mk: New.
2048 * bootstrap (slurp): Use it to convert further gnulib.mk.
2049 No longer try to avoid re-creation of lib/gnulib.mk as the changes
2050 are deeper.
2051 * lib/Makefile.am: Rename as...
2052 * lib/local.mk: this.
2053 Adjust to be prefixed.
2054 * Makefile.am, configure.ac: Adjust.
2055 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
2056
2057 2008-11-26 Akim Demaille <demaille@gostai.com>
2058
2059 s/_FLAGS/FLAGS/.
2060 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
2061 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
2062 Reported by Eric Blake.
2063
2064 2008-11-26 Akim Demaille <demaille@gostai.com>
2065
2066 Use b4_parser_tables_define in glr.cc.
2067 * data/glr.c: Use b4_parser_tables_define instead of defining the
2068 (deterministic integral) tables by hand.
2069
2070 2008-11-26 Akim Demaille <demaille@gostai.com>
2071
2072 Use b4_parser_tables_define in Java.
2073 * data/java.m4 (b4_typed_parser_table): Rename as...
2074 (b4_typed_parser_table_define): this, for consistency.
2075 Accept a comment as $4.
2076 Move $2 into yy*_.
2077 (b4_integral_parser_table): Rename as...
2078 (b4_integral_parser_table_define): this.
2079 * data/lalr1.java: Adjust all uses.
2080 Use b4_parser_tables_define instead of generation by hand.
2081
2082 2008-11-26 Akim Demaille <demaille@gostai.com>
2083
2084 Prepare the convergence bw C style and Java table generation.
2085 * data/bison.m4 (b4_tables_map, b4_tables_declare)
2086 (b4_tables_define): Rename as...
2087 (b4_integral_parser_tables_map, b4_parser_tables_declare)
2088 (b4_parser_tables_define): these.
2089 * data/c.m4 (b4_table_define): Rename as...
2090 (b4_integral_parser_table_define): this.
2091 * data/lalr1.cc: Adjust.
2092 (b4_table_define, b4_table_declare): Rename as...
2093 (b4_integral_parser_table_define)
2094 (b4_integral_parser_table_declare): these.
2095 (yyrline_): Move the comment where it is actually used.
2096 * data/yacc.c: Adjust.
2097 (yyrline): Use b4_integral_parser_table_define.
2098
2099 2008-11-26 Akim Demaille <demaille@gostai.com>
2100
2101 Regen.
2102 * src/parse-gram.h, src/parse-gram.c: Regen.
2103
2104 2008-11-26 Akim Demaille <demaille@gostai.com>
2105
2106 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
2107 * data/lalr1.cc (b4_tables_map): Move to...
2108 * data/bison.m4: here.
2109 Update the comment for yytable during the flight.
2110 (b4_tables_declare, b4_tables_define): New.
2111 * data/lalr1.cc: Use them.
2112 * data/c.m4 (b4_table_define): New.
2113 * data/yacc.c: Use b4_tables_define instead of output the tables
2114 by hand.
2115 * tests/regression.at (Web2c Actions): Adjust the expected output,
2116 the order of the tables changed.
2117
2118 2008-11-26 Akim Demaille <demaille@gostai.com>
2119
2120 Get rid of (yy)rhs and (yy)prhs.
2121 These tables are no longer needed in the parsers, and they don't seem to
2122 be useful. They are not documented either.
2123
2124 * src/output.c (prepare_rules): Get rid of rhs and prhs.
2125 Adjust the computation of (yy)r2.
2126
2127 2008-11-26 Akim Demaille <demaille@gostai.com>
2128
2129 Rule length is unsigned.
2130 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
2131
2132 2008-11-26 Akim Demaille <demaille@gostai.com>
2133
2134 Get rid of lalr1-split.cc.
2135 It was no longer maintainer.
2136
2137 * data/lalr1-split.cc: Remove.
2138 * etc/bench.pl.in (bench_fusion_parser): Remove.
2139 Adjust.
2140
2141 2008-11-26 Akim Demaille <demaille@gostai.com>
2142
2143 Use yy* consistently.
2144 * data/glr.c: Now that yyrhs no longer exists as a global
2145 variable, rename local "rhs" variables into "yyrhs" for
2146 consistency.
2147
2148 2008-11-25 Akim Demaille <demaille@gostai.com>
2149
2150 Get rid of yyrhs and yyprhs in glr.c.
2151 * data/glr.c (yyrhs, yyprhs): Remove.
2152 Instead, use the state stack and yystos.
2153
2154 2008-11-25 Akim Demaille <demaille@gostai.com>
2155
2156 Flag glr tests.
2157 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
2158 as an Autotest keyword.
2159
2160 2008-11-25 Akim Demaille <demaille@gostai.com>
2161
2162 Prefer TESTSUITE_FLAGS.
2163 TESTSUITEFLAGS is barely readable.
2164
2165 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
2166 for backward compatibility.
2167 Use the former instead of the latter.
2168
2169 2008-11-25 Akim Demaille <demaille@gostai.com>
2170
2171 Get rid of yyrhs and yyprhs in larl1.java.
2172 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
2173 (yy_reduce_print): Rather, use yystos_ and the state stack.
2174
2175 2008-11-25 Akim Demaille <demaille@gostai.com>
2176
2177 Formatting changes.
2178
2179 2008-11-25 Akim Demaille <demaille@gostai.com>
2180
2181 Get rid of yyrhs and yyprhs in yacc.c.
2182 They were used to get the symbol types, given a rule number, when
2183 displaying the top of the stack before a reduction. But the
2184 symbol type is available from the state stack. This has two be
2185 benefits: two tables less in the parser (making it smaller), and a
2186 more consistent use of the three stacks which will help to fuse
2187 them.
2188
2189 * data/yacc.c (yyprhs, yyrhs): Remove.
2190 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
2191 (yy_reduce_print): Take yyssp as argument.
2192 Use it, together with yystos, to get the symbol type.
2193 * tests/regression.at (Web2c Report): Remove these tables from the
2194 expected output.
2195
2196 2008-11-25 Akim Demaille <demaille@gostai.com>
2197
2198 b4_tables_map.
2199 The point is to factor the generation of the tables across skeletons.
2200 This is language dependant.
2201
2202 * data/c.m4 (b4_comment_): New.
2203 Should be usable to define how to generate tables independently of
2204 the language.
2205 (b4_c_comment): New.
2206 (b4_comment): Bounce to b4_c_comment.
2207 Now support $2 = [PREFIX] for indentation.
2208 * data/lalr1.cc (b4_table_declare): Don't output a comment if
2209 there is no comment.
2210 Indent it properly when there is one.
2211 Output the ending semicolon.
2212 (b4_table_define): Space changes.
2213 Output the ending semicolon.
2214 (b4_tables_map): New.
2215 Use it twice instead of declaring and defining the (integral)
2216 tables by hand.
2217
2218 2008-11-25 Akim Demaille <demaille@gostai.com>
2219
2220 b4_table_declare.
2221 * data/lalr1.cc (b4_table_declare): New.
2222 Use it to declare the tables defined with b4_table_define.
2223 (b4_table_define): Declare a third arg to match b4_table_declare
2224 signature.
2225 Move all the comments around invocations of b4_table_define into
2226 the invocations itselves.
2227 Move things around to have the order for declarations and
2228 definitions.
2229
2230 2008-11-25 Akim Demaille <demaille@gostai.com>
2231
2232 Formatting changes.
2233 * data/lalr1.java: here.
2234
2235 2008-11-25 Akim Demaille <demaille@gostai.com>
2236
2237 b4_args is more general than only C++.
2238 * data/lalr1.cc (b4_args, _b4_args): Move to...
2239 * data/bison.m4: here.
2240
2241 2008-11-21 Di-an Jan <dianj@freeshell.org>
2242
2243 Implement no-XXX arguments for --warnings, --report, --trace.
2244 * src/getargs.c (flags_argmatch): Handles no-XXX.
2245 Fix typo in doxygen comment.
2246
2247 2008-11-21 Akim Demaille <demaille@gostai.com>
2248
2249 Display the changes in cross-options.texi.
2250 * build-aux/cross-options.pl ($sep): New, to separate items.
2251 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
2252 changes.
2253
2254 2008-11-20 Di-an Jan <dianj@freeshell.org>
2255
2256 Improves options in the manual.
2257 * doc/bison.texinfo (-g, -x): Add space before argument.
2258 (Option Cross Key): Implement FIXME: listing directives also.
2259 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2260 (Short Option): Special case -d. Put arguments inside @option.
2261 (Bison Directive): Add column, automatically extracted from
2262 src/scan-gram.l (actual name passed as the first argument)
2263 with special case for %define.
2264 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
2265 to build-aux/cross-options.pl.
2266 * src/getargs.c (usage): Document limitations of cross-options.pl.
2267 * src/scan-gram.l: Likewise.
2268
2269 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2270
2271 Fix unexpanded macros in GLR defines file.
2272 Reported by Csaba Raduly at
2273 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
2274 * THANKS (Csaba Raduly): Add.
2275 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
2276 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
2277 lexer in a separate module that includes the defines file.
2278 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
2279 source.
2280 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
2281 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
2282 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
2283 (AT_DATA_SOURCE_PROLOGUE): New.
2284 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
2285 (AT_DATA_SOURCE): New.
2286 (AT_FULL_COMPILE): Extend to support an additional source file.
2287
2288 2008-11-18 Akim Demaille <demaille@gostai.com>
2289
2290 More TODO.
2291 * TODO: More short term issues.
2292
2293 2008-11-18 Akim Demaille <demaille@gostai.com>
2294
2295 Regen.
2296 * src/parse-gram.h, src/parse-gram.c: Regen.
2297
2298 2008-11-18 Akim Demaille <demaille@gostai.com>
2299
2300 Use b4_subtract where possible.
2301 * data/lalr1.cc (b4_subtract): Move to...
2302 * data/bison.m4: here.
2303 * data/glr.c (b4_rhs_data): Use it.
2304 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
2305
2306 2008-11-18 Akim Demaille <demaille@gostai.com>
2307
2308 Remove incorrect mode specification.
2309 * data/glr.cc: Don't pretend it's C code.
2310
2311 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2312
2313 Simplify last patch slightly.
2314 * src/getargs.c (getargs): Here.
2315
2316 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2317
2318 Fix last warning from --enable-gcc-warnings.
2319 * src/getargs.c (getargs): Don't assign const address to non-const
2320 pointer.
2321
2322 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2323
2324 Don't let maintainer-*-check targets force a version update.
2325 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
2326 handled.
2327
2328 2008-11-17 Di-an Jan <dianj@freeshell.org>
2329
2330 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
2331 Align menus. Adjust word wrapping. Use node names for menu names.
2332 (Examples): Don't abbreviate node names.
2333 (LocalWords): Remove abbreviations.
2334 (Copying): Make description a sentence.
2335 (Java Action Features): Remove period to match the rest of menu.
2336
2337 2008-11-17 Di-an Jan <dianj@freeshell.org>
2338
2339 Handles several --enable-gcc-warnings.
2340 * src/getargs.c (command_line_location): Set parameters to void.
2341 * src/output.c (symbol_type_name_cmp): Make static.
2342 (symbols_by_type_name): Set parameters to void.
2343 (symbol_definitions_output): Remove unused parameter. Rename as...
2344 (prepare_symbol_definitions): this.
2345 (muscles_output): Move symbol_definitions_output to...
2346 (output): here as prepare_symbol_definitions.
2347 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
2348 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
2349
2350 2008-11-17 Di-an Jan <dianj@freeshell.org>
2351
2352 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
2353 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
2354
2355 2008-11-16 Akim Demaille <demaille@gostai.com>
2356
2357 Add missing $(EXEEXT).
2358 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
2359 "src/bison$(EXEEXT)".
2360 Reported by Di-an Jan.
2361
2362 2008-11-15 Akim Demaille <demaille@gostai.com>
2363
2364 * TODO: Update.
2365
2366 2008-11-15 Akim Demaille <demaille@gostai.com>
2367
2368 Formatting changes.
2369 * tests/input.at: here.
2370
2371 2008-11-15 Akim Demaille <demaille@gostai.com>
2372
2373 Remove duplicate header inclusion.
2374 * src/LR0.c: here.
2375
2376 2008-11-15 Akim Demaille <demaille@gostai.com>
2377
2378 * src/parse-gram.h, src/parse-gram.c: Regen.
2379
2380 2008-11-15 Akim Demaille <demaille@gostai.com>
2381
2382 Support parametric types.
2383
2384 There are two issues to handle: first scanning nested angle
2385 bracket pairs to support types such as std::pair< std::string,
2386 std::list<std::string> > >.
2387
2388 Another issue is to address idiosyncracies of C++: do not glue two
2389 closing angle brackets together (otherwise it's operator>>), and
2390 avoid sticking blindly a TYPE to the opening <, as it can result
2391 in '<:' which is a digraph for '['.
2392
2393 * src/scan-gram.l (brace_level): Rename as...
2394 (nesting): this.
2395 (SC_TAG): New.
2396 Implement support for complex tags.
2397 (tag): Accept
2398 , but not <.
2399 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
2400 (b4_symbol_variant): Leave space around types as parameters.
2401 * examples/variant.yy: Use nested template types and leading ::.
2402 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
2403 Rename as...
2404 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
2405 * tests/c++.at: Test parametric types.
2406
2407 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2408
2409 Test token.prefix.
2410 This is not sufficient, but we test at least that the make_SYMBOL
2411 interface is not affected by token.prefix. A more general test
2412 will be implemented when the support of token.prefix is generalized
2413 to more skeletons.
2414
2415 * tests/c++.at: One more variant test, using token.prefix.
2416
2417 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2418
2419 Test the make_TOKEN interface.
2420 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
2421 Factor the common code in yylex.
2422 Use it to test "%define lex_symbol".
2423
2424 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2425
2426 Formatting change.
2427
2428 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2429
2430 Simplify code for variants bench marks.
2431 * etc/bench.pl.in (&generate_grammar_list): Define and use
2432 location_type.
2433 Factor the common code in yylex.
2434
2435 2008-11-15 Akim Demaille <demaille@gostai.com>
2436
2437 Better error message.
2438 * bootstrap (find_tool): Fix the error message.
2439
2440 2008-11-15 Akim Demaille <demaille@gostai.com>
2441
2442 Update variant.yy to newest interface.
2443 * examples/variant.yy: Define lex_symbol.
2444 Adjust.
2445
2446 2008-11-15 Akim Demaille <demaille@gostai.com>
2447
2448 Don't use locations in variant.yy.
2449 * examples/variant.yy: Adjust to not using locations.
2450
2451 2008-11-15 Akim Demaille <demaille@gostai.com>
2452
2453 Comment changes.
2454 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
2455 comments for the license.
2456
2457 2008-11-15 Akim Demaille <demaille@gostai.com>
2458
2459 Remove tests/Makefile.am.
2460 * tests/Makefile.am: Rename as...
2461 * tests/local.mk: this.
2462 * Makefile.am, configure.ac: Adjust.
2463 * Makefile.am (DISTCLEANFILES): Define.
2464 (maintainer-check, maintainer-xml-check, maintainer-push-check):
2465 Remove, we no longer need to bounce to the real targets.
2466
2467 2008-11-15 Akim Demaille <demaille@gostai.com>
2468
2469 Comment changes.
2470
2471 2008-11-15 Akim Demaille <demaille@gostai.com>
2472
2473 djgpp/local.mk.
2474 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
2475 * djgpp/local.mk: this new file.
2476
2477 2008-11-15 Akim Demaille <demaille@gostai.com>
2478
2479 Remove doc/Makefile.am.
2480 * doc/Makefile.am: Rename as...
2481 * doc/local.mk: this.
2482 Adjust paths
2483 * Makefile.am, configure.ac: Adjust.
2484 * Makefile.am (MOSTLYCLEANFILES): New.
2485 * src/local.mk: Adjust.
2486
2487 2008-11-15 Akim Demaille <demaille@gostai.com>
2488
2489 Move sc_tight_scope into maint.mk.
2490 It does not work, and I don't know how it was supposed to work: it
2491 seems to be looking for sources in the build tree. I just moved
2492 it at a better place, fixing it is still required.
2493
2494 * src/local.mk (echo): Remove.
2495 (sc_tight_scope): Move to...
2496 * maint.mk: here.
2497
2498 2008-11-15 Akim Demaille <demaille@gostai.com>
2499
2500 Regen.
2501 * src/parse-gram.h, src/parse-gram.h: Regen.
2502
2503 2008-11-15 Akim Demaille <demaille@gostai.com>
2504
2505 Remove src/Makefile.am.
2506 * src/Makefile.am: Rename as...
2507 * src/local.mk: this.
2508 Prefix all the paths with src/.
2509 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
2510 (AM_CPPFLAGS): Find find in builddir/src.
2511 (YACC): Move the flags into...
2512 (AM_YFLAGS): here.
2513 * maint.mk (sc_tight_scope): Disable.
2514 It used to bounce to the version in src/Makefile.am which is now
2515 part of this very Makefile.
2516 * Makefile.am, configure.ac: Adjust.
2517 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
2518 include "..." to find files "here": we are no longer in src/, so
2519 qualify the includes with src/.
2520 * doc/Makefile.am (PREPATH): No longer include the top_builddir
2521 prefix.
2522 (.x.1): Adjust to be able to create src/foo from the top level
2523 Makefile, instead of going bounce to src/Makefile the creation of
2524 foo.
2525
2526 2008-11-15 Akim Demaille <demaille@gostai.com>
2527
2528 Remove useless variable.
2529 * doc/Makefile.am (srcsrcdir): Remove.
2530
2531 2008-11-15 Akim Demaille <demaille@gostai.com>
2532
2533 Remove data/Makefile.am.
2534 * data/Makefile.am: Rename as...
2535 * data/local.mk: this.
2536 Adjust paths.
2537 * Makefile.am, configure.ac: Adjust.
2538
2539 2008-11-15 Akim Demaille <demaille@gostai.com>
2540
2541 Remove etc/Makefile.am.
2542 * etc/Makefile.am: Rename as...
2543 * etc/local.mk: this.
2544 Adjust.
2545 * Makefile.am, configure.ac: Adjust.
2546
2547 2008-11-15 Akim Demaille <demaille@gostai.com>
2548
2549 Remove examples/local.mk.
2550 examples/calc++/Makefile.am might be interesting to keep as is, since
2551 it is an example in itself.
2552
2553 * examples/Makefile.am: Rename as...
2554 * examples/local.mk: this.
2555 Adjust.
2556 * Makefile.am, configure.ac: Adjust.
2557
2558 2008-11-15 Akim Demaille <demaille@gostai.com>
2559
2560 Remove build-aux/Makefile.am.
2561 Recursive Makefiles are really way too slow, let's get rid of some of
2562 them.
2563
2564 * build-aux/Makefile.am: Rename as...
2565 * build-aux/local.mk: this.
2566 Adjust paths.
2567 * Makefile.am, configure.ac: Adjust.
2568
2569 2008-11-15 Akim Demaille <demaille@gostai.com>
2570
2571 Provide convenience constructors for locations and positions.
2572 * data/location.cc (position::position): Accept file, line and
2573 column as arguments with default values.
2574 Always qualify initial line and column literals as unsigned.
2575 (location::location): Provide convenience constructors.
2576
2577 2008-11-15 Akim Demaille <demaille@gostai.com>
2578
2579 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
2580 token type.
2581 Using template buys us nothing, and makes it uselessly complex to
2582 construct a symbol. Besides, it could not be generalized to other
2583 languages, while make_FOO would work in C/Java etc.
2584
2585 * data/lalr1.cc (b4_symbol_): New.
2586 (b4_symbol): Use it.
2587 (b4_symbol_constructor_declaration_)
2588 (b4_symbol_constructor_definition_): Instead of generating
2589 specializations of an overloaded template function, just generate
2590 several functions whose names are forged from the token names
2591 without the token.prefix.
2592 (b4_symbol_constructor_declarations): Generate them for all the
2593 symbols, not just by class of symbol type, now that instead of
2594 specializing a function template by the token, we generate a
2595 function named after the token.
2596 (b4_symbol_constructor_specialization_)
2597 (b4_symbol_constructor_specializations): Remove.
2598 * etc/bench.pl.in: Adjust to this new API.
2599
2600 2008-11-13 Akim Demaille <demaille@gostai.com>
2601
2602 %define token.prefix.
2603 Provide a means to add a prefix to the name of the tokens as
2604 output in the generated files. Because of name clashes, it is
2605 good to have such a prefix such as TOK_ that protects from names
2606 such as EOF, FILE etc. But it clutters the grammar itself.
2607
2608 * data/bison.m4 (token.prefix): Empty by default.
2609 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
2610 * data/lalr1.cc (b4_symbol): Ditto.
2611
2612 2008-11-13 Akim Demaille <demaille@gostai.com>
2613
2614 Compute at M4 time some of the subtractions.
2615 * data/lalr1.cc (b4_subtract): New.
2616 (b4_rhs_data): Use it.
2617
2618 2008-11-13 Akim Demaille <demaille@gostai.com>
2619
2620 symbol::token.
2621 This allows the user to get the type of a token returned by yylex.
2622
2623 * data/lalr1.cc (symbol::token): New.
2624 (yytoknum_): Define when %define lex_symbol, independently of
2625 %debug.
2626 (yytoken_number_): Move into...
2627 (symbol::token): here, since that's the only use.
2628 The other one is YYPRINT which was not officially supported
2629 by lalr1.cc, and anyway it did not work since YYPRINT uses this
2630 array under a different name (yytoknum).
2631
2632 2008-11-13 Akim Demaille <demaille@gostai.com>
2633
2634 YYERRCODE.
2635 * TODO (YYERRCODE): Mention the case of $undef.
2636
2637 2008-11-13 Akim Demaille <demaille@gostai.com>
2638
2639 TODO: YYPRINT.
2640 * TODO (YYPRINT): New.
2641
2642 2008-11-13 Akim Demaille <demaille@gostai.com>
2643
2644 Comment changes.
2645 * data/lalr1.cc, data/yacc.c: Fix the description of the
2646 yytranslate and yytoknum tables.
2647
2648 2008-11-13 Akim Demaille <demaille@gostai.com>
2649
2650 Define make_symbol in the header.
2651 To reach good performances these functions should be inlined (yet
2652 this is to measure precisely). To this end they must be available
2653 to the caller.
2654
2655 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
2656 location_type with the class name.
2657 Since will now be output in the header, declare "inline".
2658 No longer use b4_symbol_constructor_specializations, but
2659 b4_symbol_constructor_definitions in the header.
2660 Don't call it in the *.cc file.
2661
2662 2008-11-13 Akim Demaille <demaille@gostai.com>
2663
2664 Define yytranslate in the header for lex_symbol.
2665 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
2666 into the header file when using %define lex_symbol.
2667 (yytranslate_): Declare inline.
2668
2669 2008-11-13 Akim Demaille <demaille@gostai.com>
2670
2671 Define the constructors of symbol_type in
2672 b4_symbol_constructor_definitions.
2673 The constructors are called by the make_symbol functions, which a
2674 forthcoming patch will move elsewhere. Hence the interest of
2675 putting them together.
2676
2677 The stack_symbol_type does not need to be moved, it is used only
2678 by the parser.
2679
2680 * data/lalr1.cc: Move symbol_type and symbol_base_type
2681 constructors into...
2682 (b4_symbol_constructor_definitions): here.
2683 Adjust.
2684
2685 2008-11-13 Akim Demaille <demaille@gostai.com>
2686
2687 Make it easier to move the definition of yytranslate_.
2688 Forthcoming changes will make it possible to use yytranslate_
2689 from outside the parser implementation file.
2690
2691 * data/lalr1.cc (b4_yytranslate_definition): New.
2692 Use it.
2693
2694 2008-11-13 Akim Demaille <demaille@gostai.com>
2695
2696 Remove useless class specification.
2697 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
2698 to refer to the class name to use a type defined by the class for
2699 arguments of member functions.
2700
2701 2008-11-13 Akim Demaille <demaille@gostai.com>
2702
2703 Finer input type for yytranslate.
2704 This patch is debatable: the tradition expects yylex to return an int
2705 which happens to correspond to token_number (which is an enum). This
2706 allows for instance to return characters (such as '*' etc.). But this
2707 goes against the stronger typing I am trying to have with the new
2708 lex interface which return a symbol_type. So in this case, feed
2709 yytranslate_ with a token_type.
2710
2711 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
2712 expect a token_type.
2713
2714 2008-11-13 Akim Demaille <demaille@gostai.com>
2715
2716 Honor lex-params in %define lex_symbol mode.
2717 * data/lalr1.cc: Use b4_lex_param.
2718
2719 2008-11-13 Akim Demaille <demaille@gostai.com>
2720
2721 Simplify names.
2722 * src/output.c (symbol_definitions_output): Rename symbol
2723 attributes type_name and has_type_name as type and has_type.
2724 * data/lalr1.cc: Adjust uses.
2725
2726 2008-11-13 Akim Demaille <demaille@gostai.com>
2727
2728 Use b4_type_names for the union type.
2729 The union used to compute the size of the variant used to iterate
2730 over the type of all the symbols, with a lot of redundancy. Now
2731 iterate over the lists of symbols having the same type-name.
2732
2733 * data/lalr1.cc (b4_char_sizeof_): New.
2734 (b4_char_sizeof): Use it.
2735 Adjust to be called with a list of numbers instead of a single
2736 number.
2737 Adjust its caller for new-line issues.
2738
2739 2008-11-13 Akim Demaille <demaille@gostai.com>
2740
2741 Define the "identifier" of a symbol.
2742 Symbols may have several string representations, for instance if
2743 they have an alias. What I call its "id" is a string that can be
2744 used as an identifier. May not exist.
2745
2746 Currently the symbols which have the "tag_is_id" flag set are
2747 those that don't have an alias. Look harder for the id.
2748
2749 * src/output.c (is_identifier): Move to...
2750 * src/symtab.c (is_identifier): here.
2751 * src/symtab.h, src/symtab.c (symbol_id_get): New.
2752 * src/output.c (symbol_definitions_output): Use it to define "id"
2753 and "has_id".
2754 Remove the definition of "tag_is_id".
2755 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
2756 "tag_is_id" were used to produce code.
2757 We still use "tag" for documentation.
2758
2759 2008-11-11 Akim Demaille <demaille@gostai.com>
2760
2761 Locations are no longer required by lalr1.cc.
2762 * data/lalr1.cc (_b4_args, b4_args): New.
2763 Adjust all uses of locations to make them optional.
2764 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
2765 (AT_CHECK_NAMESPACE): Check the use of locations.
2766 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
2767 without locations with lalr1.cc.
2768 Test these cases.
2769 * tests/output.at: Check lalr1.cc with and without location
2770 support.
2771 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
2772 Don't use locations.
2773
2774 2008-11-11 Akim Demaille <demaille@gostai.com>
2775
2776 AT_FULL_COMPILE.
2777 * tests/local.at (AT_FULL_COMPILE): New.
2778 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
2779
2780 2008-11-11 Akim Demaille <demaille@gostai.com>
2781
2782 Support parens in calc++.
2783 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
2784 * examples/calc++/test (run): Check the expected output.
2785 Adjust callers.
2786 Check parens too.
2787
2788 2008-11-11 Akim Demaille <demaille@gostai.com>
2789
2790 Simplify lalr1.cc since %defines is mandatory.
2791 * data/lalr1.cc: Remove useless calls to b4_defines_if.
2792
2793 2008-11-11 Akim Demaille <demaille@gostai.com>
2794
2795 TODO: yyfmt.
2796 * TODO (yysyntax_error): New item.
2797
2798 2008-11-11 Akim Demaille <demaille@gostai.com>
2799
2800 Prefer M4 to CPP.
2801 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
2802 YYERROR_VERBOSE.
2803
2804 2008-11-11 Akim Demaille <demaille@gostai.com>
2805
2806 Support i18n of the parse error messages.
2807 * TODO (lalr1.cc/I18n): Remove.
2808 * data/lalr1.cc (yysyntax_error_): Support the translation of the
2809 error messages, as done in yacc.c.
2810 Stay within the yy* pseudo namespace.
2811
2812 2008-11-11 Akim Demaille <demaille@gostai.com>
2813
2814 More TODO.
2815 * TODO (single stack, yysyntax_error): New.
2816
2817 2008-11-11 Akim Demaille <demaille@gostai.com>
2818
2819 Make it possible to return a symbol_type from yylex.
2820 * data/lalr1.cc (b4_lex_symbol_if): New.
2821 (parse): When lex_symbol is defined, expected yylex to return the
2822 complete lookahead.
2823 * etc/bench.pl.in (generate_grammar_list): Extend to support this
2824 yylex interface.
2825 (bench_variant_parser): Exercise it.
2826
2827 2008-11-11 Akim Demaille <demaille@gostai.com>
2828
2829 Remove useless bench case.
2830 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
2831 no longer used.
2832
2833 2008-11-11 Akim Demaille <demaille@gostai.com>
2834
2835 Improve display of directives.
2836 * etc/bench.pl.in (parse_term): Don't add useless eol.
2837
2838 2008-11-11 Akim Demaille <demaille@gostai.com>
2839
2840 Use string_cast in the bench.
2841 * etc/bench.pl.in (generate_grammar_list): Define and use
2842 string_cast.
2843
2844 2008-11-11 Akim Demaille <demaille@gostai.com>
2845
2846 Replace yychar with a Boolean.
2847 * data/lalr1.cc (parse::yychar): Replace by...
2848 (parse::yyempty): this.
2849
2850 2008-11-11 Akim Demaille <demaille@gostai.com>
2851
2852 Factor the tables.
2853 * TODO: New item.
2854
2855 2008-11-11 Akim Demaille <demaille@gostai.com>
2856
2857 Let yytranslate handle the eof case.
2858 * data/lalr1.cc (yytranslate_): Handle the EOF case.
2859 Adjust callers.
2860 No longer expect yychar to be equal to yyeof_, rather, test the
2861 lookahead's (translated) kind.
2862
2863 2008-11-11 Akim Demaille <demaille@gostai.com>
2864
2865 yychar cannot be empty in yyerrlab.
2866 * TODO (yychar == yyempty_): New.
2867 * data/lalr1.cc: Remove the handling of this case.
2868 This eases forthcoming changes related to yychar and yytranslate.
2869
2870 2008-11-11 Akim Demaille <demaille@gostai.com>
2871
2872 Bench: syntactic sugar for %define/#define.
2873 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
2874 (&bench_push_parser, bench_variant_parser): Use this feature.
2875 (&eat): New.
2876 Use it.
2877
2878 2008-11-11 Akim Demaille <demaille@gostai.com>
2879
2880 Less memory pressure on the "list" bench.
2881 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
2882 the values, to limit memory pressure.
2883
2884 2008-11-11 Akim Demaille <demaille@gostai.com>
2885
2886 Introduce make_symbol.
2887 make_symbol provides a means to construct a full symbol (kind,
2888 value, location) in a single shot. It is meant to be a Symbol
2889 constructor, parameterized by the symbol kind so that overloading
2890 would prevent incorrect kind/value pairs. Unfortunately
2891 parameterized constructors do not work well in C++ (unless the
2892 parameter also appears as an argument, which is not acceptable),
2893 hence the use of a function instead of a constructor.
2894
2895 * data/lalr1.cc (b4_symbol_constructor_declaration_)
2896 (b4_symbol_constructor_declarations)
2897 (b4_symbol_constructor_specialization_)
2898 (b4_symbol_constructor_specializations)
2899 (b4_symbol_constructor_definition_)
2900 (b4_symbol_constructor_definitions): New.
2901 Use them where appropriate to generate declaration, declaration of
2902 the specializations, and implementations of the templated
2903 overloaded function "make_symbol".
2904 (variant::variant): Always define a default ctor.
2905 Also provide a copy ctor.
2906 (symbol_base_type, symbol_type): New ctor overloads for value-less
2907 symbols.
2908 (symbol_type): Now public, so that functions such as yylex can use
2909 it.
2910
2911 2008-11-11 Akim Demaille <demaille@gostai.com>
2912
2913 Inform m4 whether a tag is a valid id.
2914 * src/output.c (is_identifier): New.
2915 (symbol_definitions_output): Use it to define tag_is_id.
2916 But maybe this should be done at m4 level?
2917
2918 2008-11-11 Akim Demaille <demaille@gostai.com>
2919
2920 Test 214 was failing: it greps with a pattern containing [ ]*
2921 which obviously meant to catch spaces and tabs, but contained only
2922 spaces. Tabulations in sources are a nuisance, so to simplify the
2923 matter, get rid of all the tabulations in the Java sources. The
2924 other skeletons will be treated equally later.
2925
2926 * data/java.m4, data/lalr1.java: Untabify.
2927 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
2928 tabulations are no longer generated.
2929
2930 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
2931
2932 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
2933 * configure.ac: Adjust usage.
2934 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2935 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2936 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
2937
2938 2008-11-10 Di-an Jan <dianj@freeshell.org>
2939
2940 Workaround Java's ``code too large'' problem for parser tables
2941 in most cases, by using one function per initialization.
2942 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
2943 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
2944 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
2945 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
2946 (yytname_): Use b4_typed_parser_table.
2947 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
2948 ``code too large'' error.
2949
2950 2008-11-10 Di-an Jan <dianj@freeshell.org>
2951
2952 * NEWS: Document them.
2953
2954 General Java skeleton improvements.
2955 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
2956 using gcj < 4.3 in the testsuite, according to comments in
2957 gnulib/m4/javacomp.m4.
2958 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
2959 location_type, position_type): Remove extraneous brackets from
2960 b4_percent_define_default.
2961 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
2962 m4_define and m4_define_default.
2963 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
2964 which marks the end of user code with appropriate syncline, like all
2965 the other skeletons.
2966 (b4_user_post_prologue): Add. Don't silently drop.
2967 (yylex): Remove.
2968 (parse): Inline yylex.
2969 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
2970 (%{...%}): Fix typo of %code imports.
2971 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
2972
2973 Support annotations on parser class with %define annotations.
2974 * data/lalr1.java (annotations): Add to parser class modifier.
2975 * doc/bison.texinfo (Java Parser Interface): Document
2976 %define annotations.
2977 (Java Declarations Summary): Document %define annotations.
2978 * tests/java.at (Java parser class modifiers): Test annotations.
2979
2980 Do not generate code for %error-verbose unless requested.
2981 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
2982 Make private. Make conditional on %error-verbose.
2983 (getErrorVerbose, setErrorVerbose): New.
2984 (yytnamerr_): Make conditional on %error-verbose.
2985 (yysyntax_error): Make some code conditional on %error-verbose.
2986 * doc/bison.texinfo (Java Bison Interface): Remove the parts
2987 about %error-verbose having no effect.
2988 (getErrorVerbose, setErrorVerbose): Document.
2989
2990 Move constants for token names to Lexer interface.
2991 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
2992 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
2993 (parse): Qualify EOF to Lexer.EOF.
2994 * doc/bison.texinfo (Java Parser Interface): Move documentation of
2995 EOF and token names to Java Lexer Interface.
2996 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
2997
2998 Make yyerror public.
2999 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
3000 (yyerror): Change to public. Add Javadoc comments. Use longer
3001 parameter names. Make the body rather than the declarator
3002 conditional on %locations.
3003 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
3004
3005 Allow user to add code to the constructor with %code init.
3006 * data/java.m4 (b4_init_throws): New, for %define init_throws.
3007 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
3008 Add %code init to the front of the constructor body.
3009 * doc/bison.texinfo (YYParser.YYParser): Document %code init
3010 and %define init_throws.
3011 (Java Declarations Summary): Document %code init and
3012 %define init_throws.
3013 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
3014 (Java constructor init and init_throws): Add tests.
3015
3016 2008-11-10 Akim Demaille <demaille@gostai.com>
3017
3018 Update TODO.
3019 * TODO (-D): is implemented.
3020 (associativity): Same precedence must have the same associativity.
3021 For instance, how can a * b / c be parsed if * is %left and / is
3022 %right?
3023 (YYERRORCODE, YYFAIL, YYBACKUP): New.
3024
3025 2008-11-10 Akim Demaille <demaille@gostai.com>
3026
3027 Formatting changes.
3028
3029 2008-11-10 Akim Demaille <demaille@gostai.com>
3030
3031 More information about the symbols.
3032 * src/output.c (type_names_output): Document all the symbols,
3033 including those that don't have a type-name.
3034 (symbol_definitions_output): Define "is_token" and
3035 "has_type_name".
3036 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
3037 type-name, now that they are defined too in b4_type_names.
3038
3039 2008-11-10 Akim Demaille <demaille@gostai.com>
3040
3041 Regen.
3042
3043 2008-11-10 Akim Demaille <demaille@gostai.com>
3044
3045 Make parser::yytranslate static.
3046 Small speedup (1%) on the list grammar. And makes yytranslate_
3047 available in non member functions.
3048
3049 * data/lalr1.cc (yytranslate_): Does not need to be a instance
3050 function.
3051
3052 2008-11-10 Akim Demaille <demaille@gostai.com>
3053
3054 Avoid trailing spaces.
3055 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
3056 * data/lalr1.cc: Don't indent before rule and symbol actions, as
3057 they can be empty, and anyway this incorrectly indents the first
3058 action.
3059
3060 2008-11-10 Akim Demaille <demaille@gostai.com>
3061
3062 Comment changes.
3063
3064 2008-11-10 Akim Demaille <demaille@gostai.com>
3065
3066 Use "enum" for integral constants.
3067 This is just nicer to read, I observed no speedup.
3068
3069 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
3070 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
3071 (yyuser_token_number_max_, yyundef_token_): Move into...
3072 (yytranslate_): here.
3073
3074 2008-11-10 Akim Demaille <demaille@gostai.com>
3075
3076 Shortcuts in bench directives.
3077 * etc/bench.pl.in (parse_dirs): New.
3078 Use it.
3079 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
3080 Create the benches in "benches/".
3081
3082 2008-11-10 Akim Demaille <demaille@gostai.com>
3083
3084 Formatting changes.
3085 * data/lalr1.cc: here.
3086
3087 2008-11-10 Akim Demaille <demaille@gostai.com>
3088
3089 Adjust verbose message to using emacs.
3090 * etc/bench.pl.in: Inform compilation-mode when we change the
3091 directory.
3092 (generate_grammar_list): Recognize %define "variant" in addition
3093 to %define variant.
3094
3095 2008-11-10 Akim Demaille <demaille@gostai.com>
3096
3097 Classify symbols by type-name.
3098 * src/uniqstr.h (UNIQSTR_CMP): New.
3099 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
3100 (type_names_output): New.
3101 (muscles_output): Use it.
3102 * data/lalr1.cc (b4_symbol_action_): Remove.
3103 (b4_symbol_case_, b4_type_action_): New.
3104 Adjust uses of b4_symbol_action_ to use b4_type_action_.
3105
3106 2008-11-10 Akim Demaille <demaille@gostai.com>
3107
3108 Change the handling of the symbols in the skeletons.
3109 Before we were using tables which lines were the symbols and which
3110 columns were things like number, tag, type-name etc. It is was
3111 difficult to extend: each time a column was added, all the numbers had
3112 to be updated (you asked for colon $2, not for "tag"). Also, it was
3113 hard to filter these tables when only a subset of the symbols (say the
3114 tokens, or the nterms, or the tokens that have and external number
3115 *and* a type-name) was of interest.
3116
3117 Now instead of monolithic tables, we define one macro per cell. For
3118 instance "b4_symbol(0, tag)" is a macro name which contents is
3119 self-decriptive. The macro "b4_symbol" provides easier access to
3120 these cells.
3121
3122 * src/output.c (type_names_output): Remove.
3123 (symbol_numbers_output, symbol_definitions_output): New.
3124 (muscles_output): Call them.
3125 (prepare_symbols): Define b4_symbols_number.
3126
3127 2008-11-10 Akim Demaille <demaille@gostai.com>
3128
3129 --trace=muscles
3130 * src/getargs.h, src/getargs.c (trace_muscle): New.
3131 (trace_types, trace_args): Support it.
3132 * src/output.c (output_skeleton): Use it.
3133
3134 2008-11-10 Akim Demaille <demaille@gostai.com>
3135
3136 muscles_output.
3137 * src/output.c (muscles_output): New, extracted from...
3138 (output_skeleton): here.
3139 Adjust.
3140
3141 2008-11-10 Akim Demaille <demaille@gostai.com>
3142
3143 Formatting changes.
3144
3145 2008-11-10 Akim Demaille <demaille@gostai.com>
3146
3147 Update the variant example.
3148 * examples/variant.yy: Formatting changes.
3149 One stage build.
3150
3151 2008-11-10 Akim Demaille <demaille@gostai.com>
3152
3153 Support constructor with an argument.
3154 This improves the "list" bench by 2%.
3155
3156 * data/lalr1.cc (variant::build): Add an overloaded version with
3157 an argument.
3158 * tests/c++.at (AT_CHECK_VARIANT): Check it.
3159
3160 2008-11-10 Akim Demaille <demaille@gostai.com>
3161
3162 Test variants.
3163 * tests/c++.at (AT_CHECK_VARIANTS): New.
3164 Use it with and without %define assert.
3165
3166 2008-11-10 Akim Demaille <demaille@gostai.com>
3167
3168 Add %precedence support.
3169 Unfortunately it is not possible to reuse the %prec directive. This
3170 is because to please POSIX, we do not require to end the rules with a
3171 semicolon. As a result,
3172
3173 foo: bar %prec baz
3174
3175 is ambiguous: either a rule which precedence is that of baz, or a rule,
3176 and then a declaration of the precedence of the token baz.
3177
3178 * doc/bison.texinfo: Document %precedence.
3179 (Precedence Only): New.
3180 * src/assoc.h, src/assoc.c (precedence_assoc): New.
3181 * src/conflicts.c (resolve_sr_conflict): Support it.
3182 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
3183 Parse it.
3184 * tests/calc.at: Use %precedence for NEG.
3185 * tests/conflicts.at (%precedence does not suffice)
3186 (%precedence suffices): New tests.
3187
3188 2008-11-09 Akim Demaille <demaille@gostai.com>
3189
3190 Make benches in a sub dirs.
3191 * etc/bench.pl.in ($dir): New.
3192 Use it.
3193 Check the use of constructors with an argument.
3194 (bench_variant_parser): Fix.
3195
3196 2008-11-09 Akim Demaille <demaille@gostai.com>
3197
3198 fix eof condition
3199
3200 2008-11-09 Akim Demaille <demaille@gostai.com>
3201
3202 Fix --help.
3203
3204 2008-11-09 Akim Demaille <demaille@gostai.com>
3205
3206 Require the generation of parse-gram.output.
3207 * src/Makefile.am (YACC): Pass --report=all.
3208
3209 2008-11-09 Akim Demaille <demaille@gostai.com>
3210
3211 Formatting changes.
3212
3213 2008-11-09 Akim Demaille <demaille@gostai.com>
3214
3215 Update TODO.
3216 * TODO: Remove obsolete items.
3217 Update others.
3218
3219 2008-11-09 Akim Demaille <demaille@gostai.com>
3220
3221 Enhance bench.pl.
3222 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
3223 (@token, $grammar, $bench): New.
3224 (generate_grammar_variant): Rename as...
3225 (generate_grammar_list): this.
3226 (generate_grammar): Adjust.
3227 (bench_grammar): Rename as...
3228 (bench): this.
3229 Use it in the various bench-marking routines.
3230 (-b, -g): New options.
3231
3232 2008-11-09 Akim Demaille <demaille@gostai.com>
3233
3234 Use a static hierarchy for symbols in the C++ parser.
3235 * data/lalr1.cc (symbol_base_type, symbol_type)
3236 (stack_symbol_type): Make it a static hierarchy.
3237 Adjust dependencies.
3238
3239 2008-11-09 Akim Demaille <demaille@gostai.com>
3240
3241 bench.pl -d, --directive.
3242 * etc/bench.pl.in (@directive): New.
3243 (&bench_grammar): Use it.
3244 (&bench_list_grammar): New, to provide access to the "variant"
3245 grammar.
3246 Use it.
3247 (getopts): Support -d, --directive.
3248
3249 2008-11-09 Akim Demaille <demaille@gostai.com>
3250
3251 Use inline for small operations.
3252 * data/lalr1.cc (symbol_base_type, symbol_type)
3253 (stack_symbol_type): Declare constructor and other operations as
3254 inline.
3255 (yy_destroy_): Inline.
3256
3257 2008-11-09 Akim Demaille <demaille@gostai.com>
3258
3259 Introduce a hierarchy for symbols.
3260 * data/lalr1.cc (symbol_base_type, symbol_type): New.
3261 (data_type): Rename as...
3262 (stack_symbol_type): this.
3263 Derive from symbol_base_type.
3264 (yy_symbol_value_print_): Merge into...
3265 (yy_symbol_print_): this.
3266 Rename as...
3267 (yy_print_): this.
3268 (yydestruct_): Rename as...
3269 (yy_destroy_): this.
3270 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
3271 (parser::parse): yyla is now of symbol_type.
3272 Use its type member instead of yytoken.
3273
3274 2008-11-09 Akim Demaille <demaille@gostai.com>
3275
3276 Rename data_type and stack_symbol_type.
3277 * data/lalr1.cc (data_type): Rename as...
3278 (stack_symbol_type): this.
3279
3280 2008-11-09 Akim Demaille <demaille@gostai.com>
3281
3282 Handle semantic value and location together.
3283 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
3284 yydata.value and yydata.location.
3285 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
3286 (YY_SYMBOL_PRINT): Now take semantic value and location as a
3287 single arg.
3288 Adjust all callers.
3289 (yydestruct_): New overload for a stack symbol.
3290
3291 2008-11-09 Akim Demaille <demaille@gostai.com>
3292
3293 Push a complete symbol, not connected parts.
3294 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
3295 state, value and location.
3296 Adjust callers.
3297
3298 2008-11-09 Akim Demaille <demaille@gostai.com>
3299
3300 Agregate yylval and yylloc.
3301 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
3302 (parser::yyla): this.
3303
3304 2008-11-09 Akim Demaille <demaille@gostai.com>
3305
3306 Rely on the state stack to display reduction traces.
3307 To display rhs symbols before a reduction, we used information
3308 about the rule reduced, which required the tables yyrhs and
3309 yyprhs. Now use rely only on the state stack to get the same
3310 information.
3311
3312 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
3313 Use them.
3314 (parser::yyrhs_, parser::yyprhs_): Remove.
3315 (parser::yy_reduce_print_): Use the state stack.
3316
3317 2008-11-09 Akim Demaille <demaille@gostai.com>
3318
3319 Fuse yyval and yyloc into yylhs.
3320 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
3321 yylhs.
3322 (parse): Replace yyval and yyloc with yylhs.value and
3323 yylhs.location.
3324 After a user action, compute yylhs.state earlier.
3325 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
3326 fresh error_token.
3327
3328 2008-11-09 Di-an Jan <dianj@freeshell.org>
3329
3330 Remove unused variable.
3331 * src/output.c (type_names_output): Remove unused variable sep.
3332
3333 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
3334
3335 Change tests/output.at quoting.
3336 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
3337 expanding arguments.
3338
3339 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3340
3341 Don't add a semicolon to actions for %skeleton or %language.
3342 It breaks Java test cases as reported by Akim Demaille.
3343 * src/scan-code.l: Implement.
3344
3345 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3346
3347 Clean up %skeleton and %language priority implementation.
3348 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
3349 remove static qualifier because others will soon need to see it.
3350 (language_prio): Likewise.
3351 (getargs): Use command_line_prio rather than 0.
3352 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
3353 enum fields.
3354 (skeleton_prio): Extern it.
3355 (language_prio): Extern it.
3356 * src/parse-gram.y: Use grammar_prio rather than 1.
3357
3358 2008-11-07 Akim Demaille <demaille@gostai.com>
3359
3360 Moving push traces into yypush_.
3361 * data/lalr1.cc (yypush_): Now takes a optional trace message.
3362 Adjust all uses.
3363
3364 2008-11-07 Akim Demaille <demaille@gostai.com>
3365
3366 The single-stack C++ parser is now the standard one.
3367 * data/lalr1.cc: Rename as...
3368 * data/lalr1-split.cc: this.
3369 * data/lalr1-fusion.cc: Rename as...
3370 * data/lalr1.cc: this.
3371 * etc/bench.pl.in: Adjust.
3372
3373 2008-11-07 Akim Demaille <demaille@gostai.com>
3374
3375 Avoid empty-if warnings.
3376 Reported by Quentin Hocquet.
3377
3378 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
3379 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
3380
3381 2008-11-07 Akim Demaille <demaille@gostai.com>
3382
3383 Pass command line location to skeleton_arg and language_argmatch.
3384 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
3385 The location argument is now mandatory.
3386 Adjust all dependencies.
3387 (getargs): Use command_line_location.
3388
3389 2008-11-07 Akim Demaille <demaille@gostai.com>
3390
3391 -D, --define.
3392 * src/getargs.c (usage): Document -D.
3393 Fix help string for --locations.
3394 (command_line_location): New.
3395 (short_options, long_options, getargs): Support -D, --define.
3396 (getargs): Move -d support at the right place.
3397 * doc/bison.texinfo (Bison Options): Update.
3398 * tests/input.at (%define, --define): New.
3399
3400 2008-11-07 Akim Demaille <demaille@gostai.com>
3401
3402 Initialize the muscle table before parsing the command line.
3403 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
3404 (getargs): Define file_name.
3405 * src/main.c (main): Initialize muscle_tab before calling
3406 getargs.
3407 * src/muscle_tab.c (muscle_init): No longer define file_name, as
3408 its value is not available yet.
3409
3410 2008-11-07 Akim Demaille <demaille@gostai.com>
3411
3412 Locations without columns for command line arguments.
3413 * src/location.c (location_print): Don't display negative columns.
3414 * src/location.h: Document this.
3415
3416 2008-11-07 Akim Demaille <demaille@gostai.com>
3417
3418 Fix --help.
3419 * src/getargs.c (usage): Fix help string for -W.
3420
3421 2008-11-07 Akim Demaille <demaille@gostai.com>
3422
3423 Handle more general types of option arguments.
3424 * build-aux/cross-options.pl: The argument ends at the first
3425 space, not the first non-symbol character.
3426 Use @var for each word appearing the argument description.
3427
3428 2008-11-07 Akim Demaille <demaille@gostai.com>
3429
3430 Destroy the variants that remain on the stack in case of error.
3431 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
3432 destructor.
3433 Display the value only if yymsg is nonnull.
3434 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
3435
3436 2008-11-07 Akim Demaille <demaille@gostai.com>
3437
3438 Add "%define assert" to variants.
3439 This is used to help the user catch cases where some value gets
3440 ovewritten by a new one. This should not happen, as this will
3441 probably leak.
3442
3443 Unfortunately this uncovered a bug in the C++ parser itself: the
3444 lookahead value was not destroyed between two calls to yylex. For
3445 instance if the previous lookahead was a std::string, and then an int,
3446 then the value of the std::string was correctly taken (i.e., the
3447 lookahead was now an empty string), but std::string structure itself
3448 was not reclaimed.
3449
3450 This is now done in variant::build(other&) (which is used to take the
3451 value of the lookahead): other is not only stolen from its value, it
3452 is also destroyed. This incurs a new performance penalty of a few
3453 percent, and union becomes faster again.
3454
3455 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
3456 (b4_variant_if): New.
3457 (variant::built): New.
3458 Use it whereever the status of the variant changes.
3459 * etc/bench.pl.in: Check the penalty of %define assert.
3460
3461 2008-11-07 Akim Demaille <demaille@gostai.com>
3462
3463 Use "%define variant" in bench.pl.
3464 * etc/bench.pl.in: No longer use the pseudo directive %variants,
3465 just use %define variants.
3466
3467 2008-11-07 Akim Demaille <demaille@gostai.com>
3468
3469 Regen.
3470 * src/parse-gram.h, src/parse-gram.c: Regen.
3471
3472 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
3473
3474 Fix user actions without a trailing semicolon.
3475 Reported by Sergei Steshenko at
3476 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
3477 * THANKS (Sergei Steshenko): Add.
3478 * src/scan-code.l (SC_RULE_ACTION): Fix it.
3479 * tests/regression.at (Fix user actions without a trailing semicolon):
3480 New test case.
3481
3482 2008-11-04 Akim Demaille <demaille@gostai.com>
3483
3484 Use b4_copyright_years.
3485 * data/yacc.c (b4_copyright_years): New.
3486 Fix its value according to the comments in the file.
3487 Use it and undefine it.
3488
3489 2008-11-04 Akim Demaille <demaille@gostai.com>
3490
3491 Formatting changes.
3492 * data/lalr1-fusion.cc, src/parse-gram.y: here.
3493
3494 2008-11-04 Akim Demaille <demaille@gostai.com>
3495
3496 Formatting changes.
3497 * data/lalr1-fusion.cc: here.
3498
3499 2008-11-04 Akim Demaille <demaille@gostai.com>
3500
3501 Use strict on bench.pl.
3502 * etc/bench.pl.in (&run, &generate_grammar): New.
3503 Rename the grammar generating functions for consistency.
3504 Change the interface so that the list of benches to run is passed
3505 as (optionless) arguments.
3506 (&compile): Use &run.
3507
3508 2008-11-04 Akim Demaille <demaille@gostai.com>
3509
3510 Remove spurious initial empty lines.
3511 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
3512 * data/yacc.c: End the @output lines with an @.
3513
3514 2008-11-04 Akim Demaille <demaille@gostai.com>
3515
3516 Improve the display of sizes.
3517 * etc/bench.p.in: Higher precision.
3518 Sort by decreasing size.
3519
3520 2008-11-04 Akim Demaille <demaille@gostai.com>
3521
3522 Don't memcpy C++ structures.
3523 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
3524 arguments.
3525 (variant::build): New overload for
3526 copy-construction-that-destroys.
3527 (variant::swap): New.
3528 (parser::yypush_): Use it in variant mode.
3529
3530 2008-11-04 Akim Demaille <demaille@gostai.com>
3531
3532 Better defaults for bench.pl.
3533 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
3534 default values.
3535 Adjust &verbose uses.
3536 (-q, --quiet): New.
3537
3538 2008-11-04 Akim Demaille <demaille@gostai.com>
3539
3540 Make variant.yy more complex.
3541 std::list cannot be copied via memcpy, they are more demanding than
3542 std::string. Use one std::list to strengthen the test.
3543
3544 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
3545 Adjust.
3546 Create a list of strings, instead of a single large string.
3547
3548 2008-11-04 Akim Demaille <demaille@gostai.com>
3549
3550 bench.pl --bench.
3551 * etc/bench.pl.in (--bench, $bench): New.
3552
3553 2008-11-04 Akim Demaille <demaille@gostai.com>
3554
3555 Sort methods.
3556 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
3557 Define it after as().
3558
3559 2008-11-04 Akim Demaille <demaille@gostai.com>
3560
3561 Useless parens.
3562 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
3563
3564 2008-11-04 Akim Demaille <demaille@gostai.com>
3565
3566 Issue missing synclines after user actions.
3567 * data/c.m4 (b4_case): Issue synclines on the output file.
3568
3569 2008-11-04 Akim Demaille <demaille@gostai.com>
3570
3571 Remove trailing empty line.
3572 * data/lalr1-fusion.cc: Don't add an empty line after the user's
3573 epilogue.
3574
3575 2008-11-04 Akim Demaille <demaille@gostai.com>
3576
3577 Fix output of copyright years.
3578 * data/bison.m4 (b4_copyright): Fix the indentation of the
3579 copyright year paragraph.
3580 Use b4_copyright_years when no years are given.
3581 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
3582 (b4_copyright_years): New.
3583 Use it.
3584
3585 2008-11-04 Akim Demaille <demaille@gostai.com>
3586
3587 Avoid the spurious initial empty line.
3588 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
3589 the end of @output request to suppress the empty line that
3590 results.
3591
3592 2008-11-04 Akim Demaille <demaille@gostai.com>
3593
3594 Remove parser::rhs_number_type.
3595 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
3596 (yyrhs_): Use b4_table_define.
3597
3598 2008-11-04 Akim Demaille <demaille@gostai.com>
3599
3600 Fix iteration type.
3601 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
3602
3603 2008-11-04 Akim Demaille <demaille@gostai.com>
3604
3605 Factor the declaration of the integer tables.
3606 * data/lalr1-fusion.cc (b4_table_define): New.
3607 Use it.
3608
3609 2008-11-03 Akim Demaille <demaille@gostai.com>
3610
3611 Fix indentation of tables in lalr1.cc
3612 * data/lalr1-fusion.cc: Fix the indentation.
3613
3614 2008-11-03 Akim Demaille <demaille@gostai.com>
3615
3616 Destroy the lhs symbols after reduction.
3617 * data/lalr1-fusion.cc (parse): After the user action, when in
3618 variant mode, destroy the lhs symbols.
3619
3620 2008-11-03 Akim Demaille <demaille@gostai.com>
3621
3622 Simplify yysyntax_error_ use.
3623 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
3624 type, but make it unnamed in the declaration when it is not used.
3625
3626 2008-11-03 Akim Demaille <demaille@gostai.com>
3627
3628 Let yy::variant::build return an lvalue.
3629 * data/lalr1-fusion.cc (variant::build): Return a reference to the
3630 object.
3631
3632 2008-11-03 Akim Demaille <demaille@gostai.com>
3633
3634 Define yy::variant only when needed.
3635 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
3636 used.
3637
3638 2008-11-03 Akim Demaille <demaille@gostai.com>
3639
3640 Bench the three-stack lalr1.cc.
3641 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
3642 one-stack one.
3643
3644 2008-11-03 Akim Demaille <demaille@gostai.com>
3645
3646 Fail on parse error in calc++.
3647 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
3648 status.
3649 * examples/calc++/test ($me, $number, $exit, run): New.
3650 Use them to propagate errors to the exit status.
3651
3652 2008-11-03 Akim Demaille <demaille@gostai.com>
3653
3654 Don't specify the skeleton twice in the example.
3655 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
3656 file does what is needed.
3657
3658 2008-11-03 Akim Demaille <demaille@gostai.com>
3659
3660 bench: Improve output.
3661 * etc/bench.pl.in (bench_grammar): Tune the printf format.
3662
3663 2008-11-03 Akim Demaille <demaille@gostai.com>
3664
3665 bench: check impact of %debug on variants.
3666 * etc/bench.pl.in (variant_grammar): Fix the computation of
3667 $variant.
3668 Generate a grammar file that can work with or without %debug.
3669 Do use the @directive.
3670 (bench_variant_parser): Check impact of %debug.
3671 (@directives): Rename all the occurrences to...
3672 (@directive): this, for consistency.
3673
3674 2008-11-03 Akim Demaille <demaille@gostai.com>
3675
3676 bench: report the size too.
3677 * etc/bench.pl.in ($iterations): Defaults to -3.
3678 (&bench_grammar): Require hireswallclock.
3679 Compute and display the size of the result.
3680 More comments.
3681
3682 2008-11-03 Akim Demaille <demaille@gostai.com>
3683
3684 bench: More use of the verbosity level.
3685 * etc/bench.pl.in ($verbose, &verbose): New.
3686 Use them.
3687 More POD documentation.
3688
3689 2008-11-03 Akim Demaille <demaille@gostai.com>
3690
3691 bench.pl: a command line interface
3692 * etc/bench.pl.in: More doc.
3693 Some fixes in the documentation.
3694 ($cflags, $iterations, &help, &getopt): New.
3695 Use them.
3696 (&variant_grammar): Let the number of stages be 10 times what is
3697 specified.
3698
3699 2008-11-03 Akim Demaille <demaille@gostai.com>
3700
3701 Bench the use of Boost.Variants.
3702 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
3703 New.
3704 (&compile): Be ready to compile C++ parsers.
3705 (&bench_push_parser): Move debug information to the outermost
3706 level.
3707 * THANKS: Add Michiel De Wilde.
3708
3709 2008-11-03 Akim Demaille <demaille@gostai.com>
3710
3711 bench.pl: Pass directives as a list instead of as a string.
3712 * etc/bench.pl.in (&directives): New.
3713 (&triangular_grammar, &calc_grammar): Use it to format the Bison
3714 directives.
3715 (&triangular_grammar): Do use the directives (were ignored).
3716 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
3717 directives.
3718
3719 2008-11-03 Akim Demaille <demaille@gostai.com>
3720
3721 Improve genericity of bench.pl.
3722 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
3723 argument.
3724 (&bench_push_parser): New.
3725 Call it.
3726
3727 2008-11-03 Akim Demaille <demaille@gostai.com>
3728
3729 Add documentation to bench.pl.
3730 * etc/bench.pl.in: Comment changes.
3731
3732 2008-11-03 Akim Demaille <demaille@gostai.com>
3733
3734 Fuse the three stacks into a single one.
3735
3736 In order to make it easy to perform benchmarks to ensure that
3737 there are no performance loss, lalr1.cc is forked into
3738 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
3739 lalr1.cc.
3740
3741 Meanwhile, to make sure that lalr1-fusion.cc is correctly
3742 exercized by the test suite, the user must install a symbolic link
3743 from lalr1.cc to it.
3744
3745 Instead of having three stacks (state, value, location), use a
3746 stack of triples. This considerably simplifies the code (and it
3747 will be easier not to require locations as currently does the C++
3748 parser), and also gives a 10% speedup according to
3749 etc/bench (probably mainly since memory allocation is done once
3750 instead of three times).
3751
3752 Another motivation is to make it easier to destruct properly
3753 semantic values: now that they are bound to their state (hence
3754 symbol type) it will be easier to call the appropriate destructor.
3755
3756 These changes should probably benefit the C parser too.
3757
3758 * data/lalr1.cc: Copy as...
3759 * data/lalr1-fusion.cc: this new file.
3760 (b4_rhs_value, b4_rhs_location): New definitions overriding those
3761 from c++.m4.
3762 (state_stack_type, semantic_stack_type, location_stack_type)
3763 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
3764 (data_type, stack_type, yystack_): New.
3765 (YYLLOC_DEFAULT, yypush_): Adjust.
3766 (yyerror_range): Now based on data_type, not location_type.
3767
3768 2008-11-03 Akim Demaille <demaille@gostai.com>
3769
3770 Push the state, value, and location at the same time.
3771 This is needed to prepare a forthcoming patch that fuses the three
3772 stacks into one.
3773
3774 * data/lalr1.cc (parser::yypush_): New.
3775 (parser::yynewstate): Change the semantics: instead of arriving to
3776 this label when value and location have been pushed, but yystate
3777 is to be pushed on the state stack, now the three of them must
3778 have been pushed before. yystate still must be the new state.
3779 This allows to use yypush_ everywhere instead of individual
3780 handling of the stacks.
3781
3782 2008-11-03 Akim Demaille <demaille@gostai.com>
3783
3784 Prefer references to pointers.
3785 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
3786 definition to use references instead of pointers.
3787 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
3788 Take the value and location as references.
3789 Adjust callers.
3790
3791 2008-11-03 Akim Demaille <demaille@gostai.com>
3792
3793 stack::size instead of stack::height.
3794 * data/lalr1.cc (stack::height): Rename as...
3795 (stack::size): this.
3796 Fix the output type.
3797 Comment changes.
3798
3799 2008-11-03 Akim Demaille <demaille@gostai.com>
3800
3801 Use variants to support objects as semantic values.
3802 This patch was inspired by work by Michiel De Wilde. But he used
3803 Boost variants which (i) requires Boost on the user side, (ii) is
3804 slow, and (iii) has useless overhead (the parser knows the type of
3805 the semantic value there is no reason to duplicate this
3806 information as Boost.Variants do).
3807
3808 This implementation reserves a buffer large enough to store the
3809 largest objects. yy::variant implements this buffer. It was
3810 implemented with Quentin Hocquet.
3811
3812 * src/output.c (type_names_output): New.
3813 (output_skeleton): Invoke it.
3814 * data/c++.m4 (b4_variant_if): New.
3815 (b4_symbol_value): If needed, provide a definition for variants.
3816 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
3817 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
3818 (b4_char_sizeof, yy::variant): New.
3819 (parser::parse): If variants are requested, define
3820 parser::union_type, parser::variant, change the definition of
3821 semantic_type, construct $$ before running the user action instead
3822 of performing a default $$ = $1.
3823 * examples/variant.yy: New.
3824 Based on an example by Michiel De Wilde.
3825
3826 2008-11-03 Akim Demaille <demaille@gostai.com>
3827
3828 Parameterize the extraction of semantic values.
3829 To make future changes easier, no longer rely on ".TYPE" being the
3830 way to get a semantic value.
3831
3832 * data/c.m4 (b4_symbol_value): New.
3833 Use it.
3834 * data/c++.m4, data/yacc.c: Use it.
3835 * data/glr.c: Use b4_symbol_value.
3836 (b4_rhs_data): New.
3837 Use it.
3838
3839 2008-11-03 Akim Demaille <demaille@gostai.com>
3840
3841 Prepare easier M4 changes.
3842 * data/lalr1.cc: Use escaped [] instead of literals to prepare
3843 future changes.
3844
3845 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3846
3847 Initiate further development.
3848 * NEWS: Create an empty section for new entries.
3849 * gnulib: Update submodule to HEAD.
3850
3851 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3852
3853 * NEWS: Version 2.4.
3854
3855 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3856
3857 Prepare for next release.
3858 * NEWS: Briefly mention changes since 2.3b.
3859 * README: Say GNU m4 1.4.6, which we've been requiring in release
3860 announcements already, not 1.4.3, which breaks the build.
3861
3862 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3863
3864 Say %language is experimental.
3865 We're thinking of extending it's effect on output file naming. See the
3866 thread at
3867 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
3868 * NEWS: Say it's experimental.
3869 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
3870 recommend it over %skeleton for now.
3871 (Bison Options): Likewise.
3872 (C++ Bison Interface): Use %skeleton not %language.
3873 (Calc++ Parser): Use %skeleton not %language.
3874 * src/getargs.c (usage): Say it's experimental.
3875
3876 2008-11-01 Di-an Jan <dianj@freeshell.org>
3877 Paolo Bonzini <bonzini@gnu.org>
3878
3879 Support all Java parser class modifiers.
3880 * data/java.m4 (b4_percent_define_get3): New.
3881 (b4_final_if, b4_strictfp_if): New.
3882 * data/lalr1.java (final, strictfp, extends, implements): Support.
3883 * doc/bison.texinfo (final, strictfp, extends, implements): Add
3884 documentation.
3885 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
3886 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
3887 (AT_CHECK_JAVA_GREP): New.
3888 (Java parser class modifiers): New test.
3889 (Java parser class extends and implements): New test.
3890
3891 Model exception propagation better with throws and lex_throws.
3892 * data/java.m4 (b4_list2): New.
3893 (throws): Change default.
3894 * data/lalr1.java (yyaction): Add throws.
3895 (parse): Add lex_throws in addition to throws.
3896 * doc/bison.texinfo (throws, lex_throws): Add documentation.
3897 * tests/java.at (Java throws specifications): New test.
3898
3899 Improve documentation for Java parsers.
3900 * doc/bison.texinfo (Java Parsers): Add subsections.
3901 Don't quote first argument of %define.
3902 (Java Bison Interface): Document output files. Move documentation
3903 of parser class and merge into Java Parser Interface. Document
3904 features that error out. Document directives with no effect.
3905 Move note about Javadoc higher.
3906 (Java Semantic Values): Explicitly mention stype.
3907 Document that generic types cannot be used.
3908 (Java Location Values): Use @deftypeivar. Document constructors.
3909 Correct return value for toString.
3910 (Java Parser Interface): List undocumented constants/fields.
3911 Move documentation of fields added by %parse-param closer to list
3912 of members. Document that token names are added as fields.
3913 Document constructors accurately. Remove error method.
3914 (Java Scanner Interface): Move note on %pure-parser to Java Bison
3915 Interface. Describe %code lexer and yylex accutately.
3916 Remove documentation that does not match the code.
3917 (Java Action Features): New.
3918 (Java Differences): Add reference. Add item on semantic values.
3919 Add note about @{ ... @}. Clarify %% epilogue placement.
3920 (Java Declarations Summary): New.
3921
3922 Fix Java skeleton.
3923 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
3924 (b4_remove_comma): Quote test argument.
3925 (b4_identification): Remove "bison" field.
3926 * tests/java.at (Java parser class and package names): New test.
3927 (Java %parse-param and %lex-param): New test.
3928 (Java stype, position_class and location_class): New test.
3929
3930 2008-10-31 Di-an Jan <dianj@freeshell.org>
3931
3932 * data/lalr1.jave: Update copyright years.
3933 (YYParser): Correct name of "generated from" file in Javadoc:
3934 use b4_file_name instead of @ofile@.
3935 (Location constructor): Correct Javadoc parameter name.
3936 (yylloc): Add missing opening m4 quote after b4_location_if.
3937 This removes a stray [ in the Javadoc of Lexer.getStartPos.
3938 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
3939 (YYParser constructor): Correct Javadoc parameter name.
3940
3941 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
3942
3943 Always put auxiliary code files in the same dir as other output files.
3944 * src/files.c (compute_file_name_parts): When the user specifies
3945 --output but not --file-prefix, extract the directory prefix from the
3946 file prefix not from the grammar file name. This affects the location
3947 of files like location.hh generated by the C++ skeleton. The includes
3948 in the other output files require this fix.
3949 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
3950 for expected output files.
3951 (Output files): Add a test for the above.
3952
3953 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
3954
3955 * gnulib: Update submodule to HEAD.
3956
3957 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3958
3959 Update copyright year.
3960 * src/files.c: Here.
3961
3962 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
3963
3964 Don't overwrite the input file.
3965 * src/files.c (output_file_name_check): Fatal error if using input file
3966 for output.
3967 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
3968 argument.
3969 (Conflicting output files): Add test.
3970
3971 2008-10-28 Akim Demaille <demaille@gostai.com>
3972
3973 Space changes.
3974 * data/lalr1.cc: Formatting changes.
3975
3976 2008-10-28 Akim Demaille <demaille@gostai.com>
3977
3978 Don't define debugging functions when !YYDEBUG.
3979 * data/lalr1.cc (debug_stream, set_debug_stream)
3980 (debug_level_type, debug_level, set_debug_level): Don't
3981 declare them when YYDEBUG is not defined.
3982 The implementation are already YYDEBUG-aware.
3983
3984 2008-10-28 Akim Demaille <demaille@gostai.com>
3985
3986 Prefer "continue" for empty loop bodies.
3987 * etc/bench.pl.in: Use "continue" instead of {}.
3988
3989 2008-10-28 Akim Demaille <demaille@gostai.com>
3990
3991 Space and comments changes.
3992 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
3993 * data/c.m4, data/lalr1.cc: Space changes.
3994
3995 2008-10-28 Akim Demaille <demaille@gostai.com>
3996
3997 Make gnulib a submodule.
3998 * gnulib: New.
3999 * .gitmodules (gnulib): New.
4000
4001 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4002
4003 Fix yyerror_range for user-defined location type in C++. Reported by
4004 Georg Sauthoff at
4005 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
4006 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
4007 * THANKS (Georg Sauthoff): Add.
4008
4009 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4010
4011 Update several administrative files mainly to facilitate releasing.
4012 * HACKING (Administrivia): Make the git-merge-changelog notes more
4013 helpful.
4014 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
4015 (Release Procedure): Update for git and add numerous details that were
4016 previously missing.
4017 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
4018 * maint.mk (announcement): Don't list bison as a bootstrap tool so
4019 that announcements don't claim we bootstrapped with whatever bison
4020 happened to be in PATH. Add flex as a bootstrap tool.
4021 * Makefile.maint: Remove, previously replaced by maint.mk.
4022 * Makefile.cfg: Remove, and migrate settings to...
4023 * cfg.mk: ... here for the sake of `make announcement'.
4024 * bootstrap.conf (gnulib_modules): Add announce-gen.
4025 * README: Say GNU Bison instead of just Bison. Suggested by Karl
4026 Berry.
4027
4028 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
4029
4030 Small but important bugfixes for the Java skeleton.
4031 * data/lalr1.java (yyerror): Change Location to b4_location_type.
4032 (yy_symbol_print): Call toString on yyvaluep.
4033
4034 2008-08-29 Akim Demaille <demaille@gostai.com>
4035
4036 Clarify UPDATED use.
4037 * doc/bison.texinfo: It refers to the last edition of this file,
4038 not to the release date of Bison.
4039 Reported by Joel E. Denny.
4040
4041 2008-08-29 Akim Demaille <demaille@gostai.com>
4042
4043 * README: Update FAQ pointer.
4044 Reported by Joel E. Denny.
4045
4046 2008-08-27 Eric Blake <ebb9@byu.net>
4047
4048 Resync m4sugar from autoconf.
4049 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
4050 (m4_init): Adjust to latest m4.git changes.
4051 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
4052 effects.
4053 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
4054 (_m4_list_cmp): Reduce side effects.
4055
4056 2008-08-27 Akim Demaille <demaille@gostai.com>
4057
4058 Check yyerrok in calc.at.
4059 * tests/calc.at (calc.y): Use yyerrok on "( error )".
4060 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
4061 expected.
4062
4063 2008-08-27 Akim Demaille <demaille@gostai.com>
4064
4065 Support yyerrok in lalr1.cc.
4066 YYBACKUP is still to import back into lalr1.cc.
4067 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
4068
4069 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4070
4071 For maintainer-check*, don't recompile for a $(VERSION) update.
4072 * cfg.mk: New file.
4073 (_is-dist-target): Override the one in GNUmakefile.
4074 * Makefile.am (EXTRA_DIST): Add cfg.mk.
4075
4076 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4077
4078 Update for recent change to gnulib.
4079 * src/parse-gram.y: Don't include strverscmp.h. It comes from
4080 string.h now.
4081
4082 2008-08-15 Eric Blake <ebb9@byu.net>
4083
4084 Remaining m4sugar merge from autoconf.
4085 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
4086 * data/m4sugar/foreach.m4: New file, copied from autoconf.
4087 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
4088 * src/output.c (output_skeleton): Tell m4 how to find it.
4089
4090 Partial m4sugar merge from autoconf: m4_map.
4091 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
4092 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
4093 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
4094 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
4095 for empty list.
4096 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
4097 Likewise.
4098 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
4099 declares it.
4100
4101 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
4102
4103 Keep .version and PACKAGE_VERSION in sync.
4104 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
4105 dependency, and add comments justifying this in more detail. Discussed
4106 starting at
4107 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
4108
4109 2008-08-06 Eric Blake <ebb9@byu.net>
4110
4111 Partial m4sugar merge from autoconf: m4_shiftn.
4112 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
4113 (m4_shift2, m4_shift3): New macros.
4114 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
4115 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
4116 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
4117 * data/java.m4 (b4_remove_comma): Likewise.
4118
4119 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
4120 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
4121 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
4122 (m4_init): Consolidate wrapped text into single m4_wrap.
4123 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
4124 in wrapped text.
4125
4126 2008-08-05 Eric Blake <ebb9@byu.net>
4127
4128 Partial m4sugar merge from autoconf: builtins, version.m4.
4129 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
4130 (m4_prepend): Remove, as it is unused and inherently quadratic,
4131 whereas m4_append is linear in newer m4.
4132 (m4_mkstemp): New builtin.
4133 (m4_symbols): Make rename conditional.
4134 (m4_version_prereq): Ensure fatal error if used in bison, which
4135 intentionally lacks version.m4.
4136
4137 Fix comments in m4sugar.
4138 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
4139
4140 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4141
4142 Update for recent .gitignore fix in Gnulib.
4143 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
4144 anchored .gitignore entries.
4145
4146 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4147
4148 Set gnu or gnits strictness.
4149 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
4150 development and gnits strictness for releases. Based on Eric Blake's
4151 suggestion at
4152 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
4153
4154 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
4155
4156 * NEWS: Clarify documentation of %language.
4157
4158 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
4159
4160 Support usage of git-merge-changelog.
4161 * .gitattributes: New.
4162 * HACKING: Document usage of git-merge-changelog.
4163 * bootstrap: Install git-merge-changelog entries in .git/config
4164 if appropriate.
4165
4166 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4167
4168 Remove remaining dependence on CVS Id keyword.
4169 * ChangeLog: For the sake of people still using CVS, don't use dollars
4170 when mentioning Id.
4171 * data/xslt/bison.xsl: Remove Id from header comments, where it was
4172 unusual anyway.
4173 * data/xslt/xml2dot.xsl: Likewise.
4174 * data/xslt/xml2text.xsl: Likewise.
4175 * data/xslt/xml2xhtml.xsl: Likewise.
4176 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
4177 * doc/Makefile.am (neutralize): Remove, no longer needed.
4178 (.x.1): Don't use neutralize.
4179 (edit): Don't substitute for ID.
4180 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
4181
4182 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4183
4184 Fix dependence on computed configure variables.
4185 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
4186 $(top_srcdir)/configure.ac so that changes to computed variables, such
4187 as PACKAGE_VERSION, are seen.
4188 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
4189
4190 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
4191
4192 Update copyright dates for recent changes.
4193 * Makefile.am: Here.
4194 * src/Makefile.am: Here.
4195 * src/reduce.c: Here.
4196 * tests/reduce.at: Here.
4197
4198 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
4199
4200 Use git-version-gen for version names between releases.
4201 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
4202 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
4203 * .prev-version: New.
4204 * .version.in: Remove.
4205 * ChangeLog: Remove the Id previously used for capturing the CVS
4206 revision.
4207 * GNUmakefile: Remove, now copied from Gnulib.
4208 * Makefile.am: Add code suggested by comments in
4209 build-aux/git-version-gen.
4210 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
4211 .prev-version, and .version.
4212 * NEWS (2.3b+): Rename to...
4213 (?.?): ... this because we're dropping the "+" version naming scheme,
4214 but, in general, we still can't be sure of our next release name.
4215 * bootstrap: Add a quick hack to remove from .gitignore the
4216 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
4217 entry. This should really be fixed in gnulib instead.
4218 * bootstrap.conf (gnulib_modules): Add gnumakefile.
4219 * configure.ac (AC_INIT): Set version name by invoking
4220 build-aux/git-version-gen.
4221 (AC_CONFIG_FILES): Remove .version, now generated by
4222 build-aux/git-version-gen.
4223 * maint.mk: New, copied from coreutils.
4224 * doc/.cvsignore (bison.1): Add.
4225 * doc/.gitignore (/bison.1): Add.
4226 * doc/bison.1: Remove, generated.
4227 * src/.cvsignore (revision.c): Remove.
4228 * src/.gitignore (/revision.c): Remove.
4229 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
4230 (BUILT_SOURCES): Remove revision.c.
4231 (revision.c): Remove.
4232 * src/getargs.c (version): Don't print revision after the VERSION.
4233 * src/revision.h: Remove.
4234
4235 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4236
4237 Fix untranslatable composition of sentences. Reported by Goran
4238 Uddeborg at
4239 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
4240 * THANKS (Goran Uddeborg): Add.
4241 * src/reduce.c (reduce_print): Report the number of nonterminals and
4242 rules useless in the grammar in separate sentences.
4243 * tests/reduce.at (Useless Rules): Update output.
4244 (Reduced Automaton): Likewise.
4245 (Underivable Rules): Likewise.
4246 (Empty Language): Likewise.
4247
4248 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4249
4250 Fix some .gitignore and .cvsignore problems.
4251 * bootstrap (insert_sorted_if_absent): Replace all uses with...
4252 (insert_vc_ignore): ... this new function, which prepends `/' to all
4253 .gitignore entries before passing them to insert_sorted_if_absent.
4254 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
4255 .cvsignore files are maintained even though Bison developers run
4256 bootstrap while using Git.
4257 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
4258 unneeded by Bison.
4259 (gnulib): Add.
4260 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
4261 unneeded. Reported by Eric Blake.
4262 * lib/.gitignore (/*~): Add.
4263 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
4264 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
4265 Blake.
4266 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
4267
4268 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4269
4270 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
4271 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
4272 * bootstrap.conf (gnulib_modules): Add unsetenv.
4273 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
4274 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
4275 (/setenv.m4): Add.
4276 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
4277 the first argument because it may become position-dependent, and unset
4278 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
4279 Add comments explaining these issues in more detail.
4280
4281 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
4282
4283 Add .gitignore everywhere based on .cvsignore.
4284 * .gitignore: New.
4285 * build-aux/.gitignore: New.
4286 * data/.gitignore: New.
4287 * doc/.gitignore: New.
4288 * etc/.gitignore: New.
4289 * examples/.gitignore: New.
4290 * examples/calc++/.gitignore: New.
4291 * lib/.gitignore: New.
4292 * m4/.gitignore: New.
4293 * po/.gitignore: New.
4294 * runtime-po/.gitignore: New.
4295 * src/.gitignore: New.
4296 * tests/.gitignore: New.
4297
4298 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4299
4300 * NEWS (2.3b+): New section, empty for now.
4301 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
4302
4303 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4304
4305 * NEWS (2.3b): Update release date since there has been a delay in
4306 getting the announcements and tarballs out.
4307
4308 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4309
4310 * NEWS: Version 2.3b.
4311 * configure.ac (AC_INIT): Likewise.
4312 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
4313
4314 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4315
4316 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
4317 been doing it for years.
4318 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
4319 (Release Procedure): Add FIXME about make alpha being unmaintained.
4320
4321 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
4322
4323 * data/yacc.c: Reformat m4 a little for readability.
4324 * src/lalr.c (build_relations): Correct comment.
4325
4326 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4327
4328 DJGPP specific issue.
4329 * djgpp/config.sed: Fixes required to run configure scripts generated
4330 by autoconf 2.62.
4331
4332 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4333
4334 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
4335 coordinator@translationproject.org.
4336
4337 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4338
4339 * THANKS: Add Eric Blake.
4340
4341 2008-04-23 Eric Blake <ebb9@byu.net>
4342
4343 Revert prior patch, by working around autoconf regression.
4344 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
4345 ("Output file name: ("): Uncomment test.
4346 ("Output file name: )"): Likewise.
4347 Based on an idea from Noah Misch.
4348
4349 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4350
4351 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
4352 2.61. Reported by Juan Manuel Guerrero at
4353 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
4354 * tests/output.at ("Output file name: ("): Comment out test case for
4355 now.
4356 ("Output file name: )"): Likewise.
4357
4358 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4359
4360 * GNUmakefile: Update git-version-gen invocation so make dist
4361 succeeds.
4362
4363 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4364
4365 Update to the current gnulib CVS repository, and fix trigraph handling
4366 in Bison.
4367 * bootstrap: Update gnulib CVS repository URL.
4368 (symlink_to_dir): Encapsulate the code that guarantees the destination
4369 directory exists into...
4370 (check_dst_dir): ... this new function, and...
4371 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
4372 fail when copying files into lib/uniwidth/.
4373 * src/output.c (prepare_symbols): When writing yytname muscles, where
4374 symbol names will be encoded in C-string literals, tell quotearg to
4375 escape trigraphs. This used to be the default in gnulib.
4376 * tests/regression.at (Token definitions): Because of the change in
4377 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
4378 escapes trigraphs in symbol names. Thus, yytname no longer has
4379 trigraphs unnecessarily doubly escaped. Update test case output.
4380 Extend test case to be sure Bison's own error messages will no longer
4381 have trigraphs in symbol names unnecessarily escaped once.
4382
4383 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
4384
4385 Fix make dist infinite loop reported by Juan Manuel Guerrero at
4386 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
4387 * .cvsignore: Add .version.
4388 * .version.in: New.
4389 * bootstrap.conf (gnulib_modules): Add git-version-gen.
4390 * configure.ac (AC_CONFIG_FILES): Add .version.
4391 * build-aux/.cvsignore: Add git-version-gen.
4392
4393 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
4394
4395 * NEWS (2.3a+): Mention that -g now takes an argument.
4396 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
4397 consistency. Update the -g and -x entries now that they take
4398 arguments. Use brackets to indicate optional arguments.
4399 * src/getargs.c (usage): Explain the relationship between arguments of
4400 long and short options more completely. Document --defines and -d
4401 separately since the former takes an argument but, for POSIX Yacc, the
4402 latter does not.
4403 (short_options): Let -W take an optional argument like --warnings.
4404 (getargs): Sort cases.
4405
4406 2008-02-28 Akim Demaille <demaille@gostai.com>
4407
4408 * doc/bison.texinfo: Fix a few typos.
4409
4410 2008-02-28 Akim Demaille <akim@epita.fr>
4411
4412 * doc/bison.texinfo (Bison Options): Document -W.
4413 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
4414
4415 2008-02-28 Akim Demaille <akim@epita.fr>
4416
4417 * src/getargs.c (short_options): Split and sort for readability.
4418 -g and -x take optional arguments, just like their long options.
4419 * build-aux/cross-options.pl: Use /x to make the regexp easier to
4420 understand.
4421 Fix the handling of $opt which resulted in all the argument to be
4422 considered as optional.
4423
4424 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
4425
4426 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
4427 say its interface is experimental.
4428 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4429 Java.
4430 (Bison Options): In the -L and --language entry, mention Java.
4431 (Java Bison Interface): Say the interface is experimental.
4432 * src/getargs.c (usage): Mention -L and --language.
4433
4434 * NEWS (2.3a+): Say the push parsing interface is experimental.
4435 * doc/bison.texinfo (Push Decl): Likewise.
4436 (Decl Summary): Likewise in the "%define api.push_pull" entry.
4437 (Push Parser Function): Likewise.
4438 (Pull Parser Function): Likewise.
4439 (Parser Create Function): Likewise.
4440 (Parser Delete Function): Likewise.
4441 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
4442 yypull_parse, and yypush_parse entries.
4443
4444 * NEWS (2.3a+): Mention XML support, and say the schema is
4445 experimental.
4446 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
4447 * src/getargs.c (usage): Say the XML schema is experimental.
4448
4449 * NEWS (2.3a+): Say option instead of flag.
4450
4451 2008-02-21 Wojciech Polak <polak@gnu.org>
4452
4453 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
4454 text.
4455
4456 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
4457
4458 Fix impure push parser compile error reported by Bob Rossi at
4459 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
4460 * data/yacc.c: Clean up whitespace in the output a little.
4461 (yypstate_allocated): Define for impure push parsers regardless of
4462 whether the pull interface is also requested.
4463 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
4464 check impure push parsers without the pull interface.
4465
4466 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
4467 yyerror takes arguments specified by %parse-param while yypstate_new
4468 does not.
4469 * doc/bison.texinfo (Parser Create Function): Document that
4470 yypstate_new returns 0 for multiple impure parser instances.
4471 * tests/push.at (Push Parsing: Multiple impure instances): Update
4472 expected stderr output.
4473
4474 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4475
4476 * runtime-po/POTFILES.in (push.c): Remove.
4477
4478 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4479
4480 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
4481 * data/push.c: Rename to...
4482 * data/yacc.c: ... this, overwriting it.
4483 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
4484 `%push-pull-parser' -> `%define api.push_pull "both"'.
4485 Remove old yacc.c tests, and update push.c tests to yacc.c.
4486
4487 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4488
4489 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
4490 `"%code top" blocks' instead of `%code "top" blocks'.
4491 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
4492 Clean up whitespace in the output a little.
4493
4494 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4495
4496 Fix documentation problems reported by Tim Josling at
4497 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
4498 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
4499 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
4500 integers. Explain the effect of literal string aliases on error
4501 messages. Copy token 0 documentation from the C++ skeleton
4502 documentation.
4503
4504 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4505
4506 Accept a token number in a %left, %right, or %nonassoc for POSIX
4507 conformance. Reported by Tim Josling at
4508 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
4509 * NEWS (2.3a+): Mention.
4510 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
4511 and code numbers are treated by precedence declarations.
4512 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
4513 of symbols.1.
4514 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
4515 of symbol.
4516 (symbol.prec): New, just like symbol but allows INT.
4517 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
4518 longer holds.
4519 * tests/regression.at (Token number in precedence declaration): New
4520 test case.
4521
4522 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4523
4524 DJGPP specific issues.
4525 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
4526 be changed. Copyright timestamp adjusted.
4527 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
4528 be changed. Copyright timestamp adjusted.
4529 * djgpp/config.site: Copyright timestamp adjusted.
4530 * djgpp/config_h.sed: Copyright timestamp adjusted.
4531 * djgpp/djunpack.bat: Copyright timestamp adjusted.
4532 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
4533 filename translation list.
4534 * djgpp/subpipe.c (init_subpipe): Check the environment variables
4535 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
4536 files shall be created. Before trying to use the temp dir where the
4537 environment variable points to check that the dir really exists. If
4538 not default to the cwd as temp dir. Copyright timestamp adjusted.
4539 * djgpp/subpipe.h: Copyright timestamp adjusted.
4540 * djgpp/testsuite.sed: Copyright timestamp adjusted.
4541
4542 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
4543
4544 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
4545
4546 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
4547
4548 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
4549 Problem reported by Claudio Saavedra in
4550 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
4551
4552 2008-01-05 Wojciech Polak <polak@gnu.org>
4553
4554 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
4555 document's title with the input grammar file name.
4556
4557 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
4558
4559 Automate regression testing of the XML/XSLT implementation. Discussed
4560 starting at
4561 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
4562 * configure.ac (XSLTPROC): New substitution.
4563 * Makefile.am (maintainer-xml-check): New phony target invoking...
4564 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
4565 invoking make maintainer-check with BISON_TEST_XML=1.
4566 * tests/atlocal.in (XSLTPROC): New.
4567 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
4568 not to report reachable memory when Bison is expected to have a
4569 non-zero exit status and (2) to compare XML/XSLT output with --graph
4570 and --report=all output for every working grammar when
4571 BISON_TEST_XML=1.
4572 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
4573 (AT_BISON_CHECK_XML): New.
4574 (AT_QUELL_VALGRIND): New.
4575 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
4576 (AT_CHECK): ... don't redefine this since this was the old way to
4577 quell Valgrind.
4578 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
4579 AT_BISON_CHECK invocations.
4580 * tests/c++.at: Likewise.
4581 * tests/calc.at: Likewise.
4582 * tests/conflicts.at: Likewise.
4583 * tests/cxx-type.at: Likewise.
4584 * tests/existing.at: Likewise.
4585 * tests/glr-regression.at: Likewise.
4586 * tests/headers.at: Likewise.
4587 * tests/input.at: Likewise.
4588 * tests/java.at: Likewise.
4589 * tests/output.at: Likewise.
4590 * tests/push.at: Likewise.
4591 * tests/reduce.at: Likewise.
4592 * tests/regression.at: Likewise.
4593 * tests/sets.at: Likewise.
4594 * tests/skeletons.at: Likewise.
4595 * tests/synclines.at: Likewise.
4596 * tests/torture.at: Likewise.
4597 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
4598 tends to hang xsltproc.
4599 (Big horizontal): Likewise.
4600
4601 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
4602
4603 In XML output, remove redundant class attribute on symbol element.
4604 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
4605 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
4606 look up a symbol to determine whether it's a nonterminal or terminal.
4607 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
4608 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
4609
4610 Add prec/assoc information to XML output.
4611 * src/gram.c (grammar_rules_print_xml): For each rule that has a
4612 %prec, add a percent_prec attribute.
4613 * src/print-xml.c (print_grammar): For each terminal that has a
4614 precedence or associativity, add a prec or assoc attribute.
4615 (xml_indent): New.
4616 (xml_puts): Use xml_indent.
4617 (xml_printf): Use xml_indent.
4618 * src/print-xml.h (xml_indent): Prototype.
4619
4620 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
4621 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
4622
4623 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
4624
4625 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
4626 (bison:ruleByNumber): ... this for clarity.
4627 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
4628 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
4629 (xsl:template match="reduction"): Update.
4630 (xsl:template match="item"): Update.
4631 (xsl:template match="reduction"): Update.
4632
4633 In the XML output, don't print the list of rules where symbols appear.
4634 Compute it in XSLT instead. Discussed at
4635 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
4636 * data/xslt/bison.xsl (bison:ruleByLhs): New.
4637 (bison:ruleByRhs): New.
4638 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
4639 bison:ruleByRhs.
4640 (xsl:template match="terminal/rule"): Remove.
4641 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
4642 bison:ruleByRhs.
4643 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
4644 Remove.
4645 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
4646 bison:ruleByRhs and mode="number-link" for rule template.
4647 (xsl:template match="terminal/rule"): Remove.
4648 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
4649 bison:ruleByRhs and mode="number-link" for rule template.
4650 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
4651 Rewrite as...
4652 (xsl:template match="rule" mode="number-link"): ... this.
4653 * src/print-xml.c (print_grammar): Don't print the list of rules.
4654
4655 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4656
4657 Don't let --report affect XML output; always print all information.
4658 Discussed at
4659 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
4660 * src/conflicts.c (log_resolution): Implement.
4661 * src/print-xml.c (print_core): Implement.
4662 (print_state): Implement.
4663 (print_xml): Implement.
4664
4665 * NEWS (2.3a+): Fix quotes.
4666 * src/parse-gram.y (prologue_declaration): For consistency with -v,
4667 don't let %verbose clear the list specified by --report.
4668
4669 2007-11-26 Akim Demaille <akim@epita.fr>
4670
4671 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
4672
4673 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
4674
4675 In the XML output, list useless and unused symbols and rules with the
4676 useful ones and add a "usefulness" attribute. Discussed starting at
4677 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
4678 * src/gram.c (grammar_rules_partial_print_xml): Remove.
4679 (grammar_rules_print_xml): Print all rules instead of just those
4680 useful in the grammar, and add a "usefulness" attribute.
4681 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
4682 * src/print-xml.c (print_rules_useless_in_parser): Remove.
4683 (print_grammar): Print all nonterminals instead of just useful ones,
4684 and add a "usefulness" attribute to nonterminals and terminals.
4685 (print_xml): Don't print a separate "reductions" or
4686 "rules-useless-in-parser" element.
4687 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
4688 (reduce_xml): Remove.
4689 (reduce_token_unused_in_grammar): New.
4690 (reduce_nonterminal_useless_in_grammar): New.
4691 * src/reduce.h (reduce_xml): Remove prototype.
4692 (reduce_token_unused_in_grammar): Add prototype.
4693 (reduce_nonterminal_useless_in_grammar): Add prototype.
4694 * data/xslt/xml2text.xsl: Update for XML changes.
4695 * data/xslt/xml2xhtml.xsl: Update for XML changes.
4696 * tests/reduce.at (Useless Terminals): Update output.
4697 (Useless Rules): Update output.
4698 (Reduced Automaton): Update output.
4699
4700 Say "Terminals unused in grammar" instead of "Unused terminals".
4701 * NEWS (2.3a+): Update.
4702 * doc/bison.texinfo (Understanding): Update example output.
4703 * src/reduce.c (reduce_output): Implement.
4704 * data/xslt/xml2text.xsl: Implement.
4705 * data/xslt/xml2xhtml.xsl: Implement.
4706
4707 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
4708
4709 Accept --report-file=FILE to override the default `.output' filename.
4710 * NEWS (2.3a+): Mention.
4711 * doc/bison.texinfo (Bison Options): Add an entry.
4712 * src/files.c (compute_output_file_names): Don't override
4713 spec_verbose_file if already set.
4714 * src/getargs.c (usage): Document --report-file.
4715 (REPORT_FILE_OPTION): New anonymous enum member.
4716 (long_options): Add entry for it.
4717 (getargs): Add case for it setting spec_verbose_file.
4718
4719 * build-aux/cross-options.pl: Don't record a short option just because
4720 there's an arg.
4721 * doc/.cvsignore: Add yacc.1.
4722
4723 2007-11-14 Akim Demaille <akim@epita.fr>
4724
4725 * doc/yacc.1.in: New.
4726 * configure.ac, doc/Makefile.am: Adjust.
4727 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
4728 config.h symbol.
4729 Use AC_SUBST for assignments too.
4730 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
4731
4732 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4733
4734 * src/gram.c: Remove comments that duplicate comments in gram.h.
4735
4736 When reporting useless rules and nonterminals, say "useless in grammar"
4737 instead of "useless", and say "useless in parser" instead of "never
4738 reduced". Discussed starting at
4739 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
4740 * NEWS (2.3a+): Mention this change.
4741 * data/xslt/xml2text.xsl: Update output text and expected input XML
4742 element names to match changes below.
4743 * data/xslt/xml2xhtml.xsl: Likewise.
4744 (xsl:template match="bison-xml-report"): Add missing entry in Table of
4745 Contents: "Rules useless in parser due to conflicts".
4746 * doc/bison.texinfo (Decl Summary): Reword a little.
4747 (Understanding): Update example output for changes below.
4748 * src/gram.c: (rule_useful_p): Rename to...
4749 (rule_useful_in_grammar_p): ... this.
4750 (rule_useless_p): Rename to...
4751 (rule_useless_in_grammar_p): ... this.
4752 (rule_never_reduced_p): Rename to...
4753 (rule_useless_in_parser_p): ... this.
4754 (grammar_rules_print): Update for renames.
4755 (grammar_rules_print_xml): Update for renames.
4756 (grammar_rules_never_reduced_report): Rename to...
4757 (grammar_rules_useless_report): ... this since it is used for either
4758 kind of useless rule.
4759 * src/gram.h: Reword comments and update function names in prototypes.
4760 * src/main.c (main): Say "rule useless in parser due to conflicts".
4761 * src/print-xml.c (print_rules_never_reduced): Rename to...
4762 (print_rules_useless_in_parser): ... this, and rename output XML
4763 element "rules-never-reduced" to "rules-useless-in-parser".
4764 (print_xml): Update for rename.
4765 * src/print.c (print_results): Say "Rules useless in parser due to
4766 conflicts".
4767 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
4768 (nonterminals_reduce): Say "nonterminal useless in grammar".
4769 (reduce_output): Say "Nonterminals useless in grammar".
4770 Say "Rules useless in grammar".
4771 (reduce_xml): Rename output XML element "useless" to
4772 "useless-in-grammar".
4773 (reduce_print): Don't report the count of grammatically useless rules
4774 as "rules never reduced" just because %yacc is specified.
4775 In the correct report of this count, say nonterminal(s) and rule(s)
4776 "useless in grammar".
4777 * tests/conflicts.at (S/R in initial): Update expected output.
4778 (Defaulted Conflicted Reduction): Likewise.
4779 (Unreachable States After Conflict Resolution): Likewise.
4780 * tests/existing.at (GNU pic Grammar): Likewise.
4781 * tests/reduce.at (Useless Nonterminals): Likewise.
4782 (Useless Rules): Likewise.
4783 (Reduced Automaton): Likewise.
4784 (Underivable Rules): Likewise.
4785 (Empty Language): Likewise.
4786
4787 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4788
4789 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
4790 here document and before the EOF so that BSD's implementation of Bourne
4791 shell doesn't parse the delimiter as part of the here document.
4792 * doc/.cvsignore: Add cross-options.texi.
4793 * src/getargs.c (usage): Add a blank line after the warning categories.
4794
4795 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
4796
4797 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
4798
4799 2007-11-05 Akim Demaille <akim@epita.fr>
4800
4801 Remove Id: from bison.1.
4802 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
4803 (perl -0777 -pi -e 's/\.PP\nId): New.
4804 (.x.1): Use it to ignore the version control revision.
4805
4806 2007-11-05 Akim Demaille <demaille@gostai.com>
4807
4808 * build-aux/Makefile.am: Ship cross-options.pl.
4809 * doc/Makefile.am: Always refer to cross-options.texi with
4810 $(srcdir).
4811 (MAINTAINERCLEANFILES): Add it.
4812
4813 2007-11-04 Akim Demaille <demaille@gostai.com>
4814
4815 Generate the long/short option cross-table.
4816 * build-aux/cross-options.pl: New.
4817 * doc/Makefile.am (cross-options.texi): New.
4818 * doc/bison.texinfo: Use it.
4819
4820 2007-11-04 Akim Demaille <demaille@gostai.com>
4821
4822 Generate bison.1 using help2man.
4823 * doc/common.x, doc/bison.x: New.
4824 * doc/Makefile.am (bison.1, .x.1): New.
4825 The code is taken from autoconf-2.61/man/Makefile.am.
4826 * configure.ac: Look for help2man.
4827
4828 2007-11-04 Akim Demaille <demaille@gostai.com>
4829
4830 Complete --help.
4831 * src/getargs.c (usage): Document -W, make it clear that -d,
4832 -g and -x have optional arguments.
4833
4834 2007-11-04 Akim Demaille <demaille@gostai.com>
4835
4836 Find sha1sum when named gsha1sum.
4837 * bootstrap (find_tool): New.
4838 ($SHA1SUM): New.
4839
4840 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4841
4842 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
4843 at
4844 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
4845 * NEWS (2.3a+): Mention.
4846 * data/bison.m4 (b4_pure_if): Don't define it here.
4847 * data/c.m4 (b4_identification): Depend on individual skeletons to
4848 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
4849 values of the %define variables api.pure or api.push_pull. Define
4850 YYPURE, YYPUSH, and YYPULL accordingly.
4851 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
4852 glr.cc has already defined b4_pure_flag.
4853 * data/push.c: Define b4_pure_if based on `%define api.pure'.
4854 Remove YYPUSH and YYPULL since they're back in b4_identification again.
4855 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
4856 * doc/bison.texinfo (Pure Decl): Update.
4857 (Push Decl): Update.
4858 (Decl Summary): Add api.pure to %define entry.
4859 In %pure-parser entry, say it's deprecated and reference %define.
4860 (Pure Calling): Update.
4861 (Error Reporting): Update.
4862 (C++ Scanner Interface): Update.
4863 (How Can I Reset the Parser): Update.
4864 (Table of Symbols): In %pure-parser entry, say it's deprecated and
4865 reference %define.
4866 * src/getargs.c (pure_parser): Remove global variable.
4867 * src/getargs.h (pure_parser): Remove extern.
4868 * src/output.c (prepare): Don't define pure_flag muscle.
4869 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
4870 wrapper around `%define api.pure'.
4871 * tests/calc.at (Simple LALR Calculator): Update.
4872 (Simple GLR Calculator): Update.
4873 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
4874 Update.
4875 (GLR: Resolve ambiguity, pure, locations): Update.
4876 (GLR: Merge conflicting parses, pure, no locations): Update.
4877 (GLR: Merge conflicting parses, pure, locations): Update.
4878 * tests/glr-regression.at (Uninitialized location when reporting
4879 ambiguity): Update
4880 * tests/input.at (Unused %define api.pure): New test case.
4881 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
4882 AT_PURE_IF and AT_PURE_AND_LOC_IF.
4883 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
4884
4885 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4886
4887 %define push_pull -> %define api.push_pull. Discussed starting at
4888 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
4889 * data/push.c: Expect the new name.
4890 * data/yacc.c: Likewise.
4891 * doc/bison.texinfo (Push Decl): Update.
4892 (Decl Summary): Update %define entry.
4893 (Push Parser Function): Update.
4894 (Pull Parser Function): Update.
4895 (Parser Create Function): Update.
4896 (Parser Delete Function): Update.
4897 * tests/calc.at (Simple LALR Calculator): Update.
4898 * tests/input.at (%define enum variables): Update.
4899 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
4900 (Push Parsing: Multiple impure instances): Update.
4901 (Push Parsing: Unsupported Skeletons): Update.
4902 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
4903 (Exploding the Stack Size with Malloc): Update.
4904
4905 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
4906 other entries some.
4907
4908 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
4909
4910 For the XML output's terminal element, rename @number to @token-number,
4911 and add @symbol-number. In the nonterminal element, rename @number to
4912 @symbol-number. Discussed starting at
4913 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
4914 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
4915 renames.
4916 (xsl:template match="nonterminal"): Likewise.
4917 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
4918 (xsl:template match="nonterminal"): Likewise.
4919 * src/print-xml.c (print_grammar): Implement.
4920
4921 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4922
4923 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
4924 2007-10-11 change, the child elements here are items not rules.
4925 (xsl:template match="item"): New.
4926 (xsl:template match="rule"): Update for new reduced itemset.
4927 (xsl:template match="point"): Remove.
4928 (xsl:template match="empty"): For consistency with --graph, don't
4929 output "/* empty */".
4930 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
4931 line-wrap, don't pass a negative value as first-line-length since this
4932 won't work with the following changes.
4933 (xsl:template name="line-wrap"): Simplify slightly.
4934 (xsl:template name="ws-search"): Eliminate recursion.
4935 * src/print_graph.c (print_core): Don't print a reduction's lookahead
4936 set next to an item whose dot is not at the end of the RHS even if it
4937 happens to be associated with the same rule.
4938
4939 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
4940
4941 Add %define lr.keep_unreachable_states.
4942 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
4943 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
4944 * src/main.c (main): Implement it.
4945 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4946 Extend to test it, and fix a typo.
4947
4948 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
4949
4950 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
4951 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
4952 the example .output text.
4953 * tests/regression.at (Extra lookahead sets in report): Improve wording
4954 of comments.
4955
4956 2007-10-17 Wojciech Polak <polak@gnu.org>
4957
4958 * src/print-xml.c (print_grammar): Renamed
4959 <terminal> and <nonterminal> attributes:
4960 "type" to "number" and "symbol" to "name".
4961 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
4962 Use new attribute names.
4963 (xsl:template match="nonterminal"): Likewise.
4964 * data/xslt/xml2xhtml.xsl: Likewise.
4965
4966 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
4967
4968 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
4969 (Option Cross Key): Likewise.
4970
4971 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
4972 next to an item whose dot is not at the end of the RHS even if it
4973 happens to be associated with the same rule.
4974 * src/print.c (print_core): Likewise.
4975 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
4976 (Resolved SR Conflicts): Update output.
4977 * tests/regression.at (Extra lookahead sets in report): New test case.
4978
4979 2007-10-11 Wojciech Polak <polak@gnu.org>
4980
4981 * src/print-xml.c (print_core): Remove item set
4982 redundancy.
4983 * data/xslt/bison.xsl (bison:ruleNumber): New key.
4984 Improve processing time. Suggested by Joel E. Denny.
4985 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
4986 Write xsl:param "required" attribute as comment.
4987 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
4988 (xsl:template match="rule"): Support new reduced itemset.
4989 (xsl:template match="point"): Remove.
4990 * data/xslt/xml2xhtml.xsl: Likewise.
4991
4992 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4993
4994 * src/getargs.c (version): Update copyright year.
4995
4996 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4997
4998 Make xml2dot.xsl and --graph produce the same output.
4999 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
5000 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
5001 escaped later.
5002 (xsl:template name="output-node"): Use the new escape template instead
5003 of the string-replace template directly.
5004 (xsl:template name="output-edge"): Likewise.
5005 (xsl:template name="escape"): New, escapes backslashes and newlines in
5006 addition to quotation marks.
5007 * src/graphviz.c (start_graph, output_node, output_edge): Add
5008 whitespace to output for legibility.
5009
5010 Make xml2text.xsl and --report produce the same output, and remove the
5011 XML "conflicts" element since a conflict summary is easily extracted
5012 from the automaton.
5013 * data/xslt/bison.xsl: New.
5014 (xsl:template match="state" mode="bison:count-conflicts): New.
5015 * data/xslt/xml2text.xsl: Import bison.xsl.
5016 (xsl:template match="bison-xml-report"): Instead of styling the
5017 "conflicts" element, style the "automaton" element with mode
5018 "conflicts". Unlike the former, the latter lists S/R and R/R
5019 conflicts for a state on the same line.
5020 (xsl:template match="conflicts"): Remove.
5021 (xsl:template match="conflict"): Remove.
5022 (xsl:template match="terminal"): Line-wrap the list of rules in which
5023 the terminal is used.
5024 (xsl:template match="nonterminal"): Likewise for nonterminals.
5025 (xsl:template match="automaton" mode="conflicts"): New.
5026 (xsl:template match="state" mode="conflicts"): New.
5027 (xsl:template name="line-wrap"): New.
5028 (xsl:template name="ws-search"): New.
5029 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
5030 (xsl:template match="bison-xml-report"): Instead of styling the
5031 "conflicts" element, style the "automaton" element with mode
5032 "conflicts."
5033 (xsl:template match="conflicts"): Remove.
5034 (xsl:template match="conflict"): Remove.
5035 (xsl:template match="automaton" mode="conflicts"): New.
5036 (xsl:template match="state" mode="conflicts): New.
5037 * src/conflicts.c (conflicts_output_xml): Remove.
5038 * src/conflicts.h (conflicts_output_xml): Remove prototype.
5039 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
5040 * src/print.c (print_grammar): Consistently wrap at the 66th column so
5041 the corresponding XSLT is easier. Also, never wrap between a word and
5042 the comma that follows it.
5043
5044 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5045
5046 Improve C++ namespace support. Discussed starting at
5047 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
5048 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
5049 b4_namespace_close): New macros that interpret the %define variable
5050 "namespace" so its value can contain "::" to indicate nested
5051 namespaces.
5052 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
5053 the above macros.
5054 * data/lalr1.cc (b4_namespace): Likewise.
5055 * data/location.cc (b4_namespace): Likewise.
5056 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
5057 inside a new table in the general %define entry. Document `%define
5058 namespace' there as well. Point the %name-prefix entry to it since it
5059 explains it more completely in the case of C++.
5060 (C++ Bison Interface): Mention `%define namespace' instead of
5061 %name-prefix.
5062 (Table of Symbols): Remove the `%define push_pull' entry. The %define
5063 entry suffices.
5064 * tests/c++.at (Relative namespace references): New test case.
5065 (Absolute namespace references): New test case.
5066 (Syntactically invalid namespace references): New test case.
5067 * tests/input.at (C++ namespace reference errors): New test case.
5068
5069 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5070
5071 Add syncline support and location accessor to internal %define
5072 interfaces.
5073 * data/bison.m4 (b4_percent_define_get_loc): New.
5074 (b4_percent_define_get_syncline): New.
5075 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
5076 (b4_percent_define_default): Record defining location as line 1 rather
5077 than 0 for the sake of synchronizing #line's, and define
5078 b4_percent_define_syncline(VARIABLE).
5079 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
5080 * src/muscle_tab.c (muscle_syncline_grow): New.
5081 (muscle_code_grow): Use muscle_syncline_grow.
5082 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
5083 define b4_percent_define_syncline(VARIABLE).
5084 (muscle_percent_define_get_loc): New.
5085 (muscle_percent_define_get_syncline): New.
5086 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
5087 remove some unused variables.
5088 (muscle_percent_define_default): Record defining location as line 1
5089 rather than 0 for the sake of synchronizing #line's, and define
5090 b4_percent_define_syncline(VARIABLE).
5091 (muscle_percent_define_check_values): Use
5092 muscle_percent_define_get_loc.
5093 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
5094 (muscle_percent_define_get_syncline): Prototype.
5095 * tests/skeletons.at (%define Boolean variables: invalid skeleton
5096 defaults): Update output for location change.
5097 (Complaining during macro argument expansion): Extend to test
5098 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
5099
5100 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
5101
5102 Fix some error-reporting macro bugs.
5103 * data/bison.m4 (b4_cat): New.
5104 (b4_error, b4_error_at): Use b4_cat to send error directives directly
5105 to stdout so they don't become arguments to other macros. Update
5106 comments and add examples.
5107 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
5108 add examples.
5109 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
5110 after printing the error directive so that M4 doesn't report subsequent
5111 problems that are induced by this problem.
5112 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
5113 instead of just in them. Recognize @\n in both places. Both expand to
5114 the empty string. Needed by b4_cat.
5115 * tests/skeletons.at (Complaining during macro argument expansion):
5116 New test case.
5117 (Fatal errors make M4 exit immediately): New test case.
5118
5119 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
5120
5121 Implement --print-datadir.
5122 * src/getargs.c (usage): Mention.
5123 (PRINT_DATADIR_OPTION): New anonymous enum member.
5124 (long_options): Add entry for it.
5125 (getargs): Add case for it calling compute_pkgdatadir.
5126 * src/output.c (output_skeleton): Encapsulate data directory
5127 computation from here...
5128 (prepare): ... and from here...
5129 (compute_pkgdatadir): ... into this new function.
5130 * src/output.h (compute_pkgdatadir): Prototype.
5131
5132 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
5133
5134 * src/print-xml.c (escape_bufs): New static global variable
5135 replacing...
5136 (xml_escape_n): ... the static local variable buf here.
5137 (print_xml): Free memory for escape_bufs.
5138 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
5139
5140 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
5141
5142 Replace `%push-parser' and `%push-pull-parser' with
5143 `%define push_pull "push"' and `%define push_pull "both"'.
5144 `%define push_pull "pull"' is the default.
5145 * doc/bison.texinfo (Push Decl, Push Parser Function,
5146 Pull Parser Function, Parser Create Function, Parser Delete Function):
5147 Update declarations.
5148 (Decl Summary, Table of Symbols): Replace %push-parser and
5149 %push-pull-parser entries with a %define push_pull entry.
5150 * data/bison.m4 (b4_percent_define_check_values): New macro.
5151 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
5152 definitions...
5153 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
5154 definitions...
5155 * data/push.c: ... to here and compute them from the value of the
5156 %define variable push_pull.
5157 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
5158 parsing requests here...
5159 * data/yacc.c: ... hack this to switch to push.c any time
5160 b4_use_push_pull_flag or the %define variable push_pull is set. This
5161 will go away when we mv push.c yacc.c.
5162 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
5163 push parsing is not supported since unused %define variables are
5164 reported anyway.
5165 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
5166 * src/muscle_tab.h (muscle_percent_define_check_values): Update
5167 comments for consistency with b4_percent_define_check_values.
5168 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
5169 muscles.
5170 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
5171 Remove.
5172 (prologue_declaration): Remove %push-parser and %push-pull-parser
5173 rules.
5174 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
5175 * tests/calc.at: Update declarations.
5176 * tests/input.at (%define enum variables): New test case.
5177 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
5178 declaration.
5179 (Push Parsing: Multiple impure instances): Update declaration.
5180 (Push Parsing: Unsupported Skeletons): New test case.
5181 * tests/torture.at (Exploding the Stack Size with Alloca): Update
5182 declaration.
5183 (Exploding the Stack Size with Malloc): Update declaration.
5184
5185 2007-09-24 Wojciech Polak <polak@gnu.org>
5186
5187 Add XSLT transformations.
5188
5189 * data/xslt/xml2dot.xsl: Transform XML into DOT.
5190 * data/xslt/xml2text.xsl: Transform XML into plain text.
5191 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
5192 * data/Makefile.am (xsltdir): New variable.
5193 (dist_xslt_DATA): Add xslt/*.xsl files.
5194
5195 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
5196
5197 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
5198 Problem reported by Wojciech Polak.
5199 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
5200 (xml_printf): Undo change I made on 21 September; that is,
5201 indent 2 spaces, not 1.
5202
5203 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
5204
5205 Pacify ./configure --enable-gcc-warnings.
5206 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
5207 `char const *' instead of `char *'.
5208 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
5209 local variable `sep'.
5210
5211 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5212
5213 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
5214 elsewhere.
5215 * src/print-xml.c: Prefer "const" after types; that's more consistent.
5216 (xml_printf): Indent just 1 space for level.
5217 (e_char, xlate_char): Remove.
5218 (xml_escape_string): Rewrite to avoid undefined behavior (used
5219 storage that was freed from the stack).
5220 (xml_escape_n): Don't bother checking for subscript error.
5221
5222 2007-09-21 Wojciech Polak <polak@gnu.org>
5223
5224 Add Bison XML Automaton Report.
5225
5226 Add support for an -x option to generate an XML report.
5227 It is not documented yet.
5228 * src/print-xml.c: New file.
5229 * src/print-xml.h: Likewise.
5230 * lib/timevar.def (TV_XML): New var.
5231 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
5232 * src/conflicts.c: Include print-xml.h.
5233 (solved_conflicts_xml_obstack): New var.
5234 (log_resolution, conflicts_solve, conflicts_free):
5235 Add support for XML report.
5236 (conflicts_output_val): New function.
5237 * src/conflicts.h (conflicts_output_val): New decl.
5238 * src/files.c (spec_xml_file): New var.
5239 (compute_output_file_names, output_file_names_free): Add XML support.
5240 * src/files.h (spec_xml_file): New decl.
5241 * src/getargs.c (xml_flag): New var.
5242 (usage, short_options, long_options, getargs): Add XML support.
5243 * src/getargs.h (xml_flag): New decl.
5244 * src/gram.c: Include print-xml.h.
5245 (rule_lhs_print_xml, rule_rhs_print_xml):
5246 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
5247 New functions.
5248 * src/gram.h: Declare external ones.
5249 * src/main.c: Include print-xml.h.
5250 (main): Add XML support.
5251 * src/reduce.c: Include print-xml.h.
5252 (reduce_xml): New function.
5253 * src/reduce.h: Declare it.
5254 * src/state.c: Include print-xml.h.
5255 (state_new): Add XML support.
5256 (state_rule_lookahead_tokens_print_xml): New function.
5257 * src/state.h: Declare it.
5258 (struct state): New member solved_conflicts_xml.
5259 * src/symtab.c (symbol_class_get_string): New function.
5260 * src/symtab.h: Declare it.
5261
5262 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5263
5264 * GNUmakefile: Switch to coreutils's version.
5265 * bootstrap: Likewise.
5266 * Makefile.cfg: Adjust to new GNUmakefile.
5267 * README-hacking: Likewise.
5268
5269 Import from gnulib:
5270
5271 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
5272 Bruno Haible <bruno@clisp.org>
5273
5274 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5275 and is a script that invokes bison. Tighten the code. Add comments.
5276
5277 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
5278
5279 Spell "boolean" as "Boolean". Reported by Akim Demaille.
5280 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
5281 * doc/bison.texinfo (Decl Summary): Fix.
5282 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
5283 * tests/input.at (Boolean %define variables): Update output.
5284 * tests/skeletons.at (%define boolean variables: invalid skeleton
5285 defaults): Rename to...
5286 (%define Boolean variables: invalid skeleton defaults): ... this and
5287 update output.
5288
5289 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
5290
5291 In impure push mode, don't allow more than one yypstate to be allocated
5292 since multiple impure parsers would corrupt yynerrs.
5293 * data/push.c (yypstate_allocated): New static global variable
5294 initialized to 0.
5295 (yypull_parse): If yypstate_new returns 0, don't report it as memory
5296 exhaustion if yypstate_allocated is 1, but still return 2.
5297 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
5298 already 1. Otherwise, set it to 1.
5299 (yypstate_delete): Set it to 0.
5300 * tests/push.at (Push Parsing: Multiple impure instances): New test
5301 case.
5302
5303 2007-08-17 Bob Rossi <bob@brasko.net>
5304
5305 * doc/bison.texinfo (Push Decl): Document the push parser.
5306 (Table of Symbols): Ditto.
5307 (Pure Decl): Ditto.
5308 (Decl Summary): Ditto.
5309 (Multiple Parsers, Push Parser Function, Pull Parser Function,
5310 Parser Create Function, Parser Delete Function):
5311 Add new push parser symbols.
5312 (Table of Symbols): Document push-parser, push-pull-parser,
5313 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
5314
5315 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
5316
5317 Update to GPLv3.
5318 * doc/gpl-3.0.texi: New file.
5319 * doc/gpl.texi: Remove.
5320 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
5321 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
5322 * README-hacking, TODO, bootstrap, bootstrap.conf:
5323 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
5324 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
5325 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
5326 * data/lalr1.cc, data/lalr1.java, data/location.cc:
5327 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
5328 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
5329 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
5330 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
5331 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
5332 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
5333 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
5334 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
5335 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
5336 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
5337 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
5338 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
5339 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
5340 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
5341 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
5342 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
5343 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
5344 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
5345 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
5346 * src/complain.c, src/complain.h, src/conflicts.c:
5347 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
5348 * src/files.h, src/flex-scanner.h, src/getargs.c:
5349 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
5350 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
5351 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
5352 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
5353 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
5354 * src/print.c, src/print.h, src/print_graph.c:
5355 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
5356 * src/reduce.h, src/relation.c, src/relation.h:
5357 * src/revision.h, src/scan-code.h, src/scan-code.l:
5358 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
5359 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
5360 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
5361 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
5362 * tests/Makefile.am, tests/actions.at, tests/c++.at:
5363 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
5364 * tests/existing.at, tests/glr-regression.at:
5365 * tests/headers.at, tests/input.at, tests/java.at:
5366 * tests/local.at, tests/output.at, tests/push.at:
5367 * tests/reduce.at, tests/regression.at, tests/sets.at:
5368 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
5369 * tests/torture.at:
5370 Update to GPLv3.
5371
5372 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5373
5374 Get rid of broken %no-parser, -n, and --no-parser implementation and
5375 documentation.
5376 * TODO: Don't mention them.
5377 * doc/bison.1: Likewise.
5378 * doc/bison.texinfo (Decl Summary): Likewise.
5379 (Bison Options): Likewise.
5380 (Option Cross Key): Likewise.
5381 * src/getargs.c (no_parser_flag): Remove global variable.
5382 (usage): Don't print description of -n and --no-parser.
5383 (long_options): Remove --no-parser entry here.
5384 (getargs): Remove -n case in the switch here.
5385 * src/getargs.h (no_parser_flag): Remove extern.
5386 * tests/regression.at (Web2c Actions): Remove comment that mentions
5387 --no-parser.
5388
5389 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5390
5391 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
5392 name user variables starting with `yy'. Just pass NULL instead of a
5393 dummy local &yylval to yypush_parse.
5394 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
5395 starting with `yy'.
5396
5397 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
5398
5399 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
5400 true since it's then always used regardless of whether yyoverflow is
5401 defined. Reported by Christian Burger at
5402 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
5403 * THANKS: Add Christian Burger.
5404
5405 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5406 node names: say "Decl Summary" not "Bison Declaration Summary".
5407
5408 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
5409
5410 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
5411 determine whether this function has already complained about an invalid
5412 value for a %define boolean variable, don't check whether Bison has
5413 ever examined the value. As written, the check was a tautology.
5414 Instead, record and check for this complaint using a separate muscle.
5415
5416 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5417
5418 Fix push parsing memory leak reported by Brandon Lucia at
5419 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
5420 * THANKS: Add Brandon Lucia.
5421 * data/push.c (yypstate_delete): Free the stack if it was reallocated
5422 but the parse never completed and thus freed it.
5423 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
5424 * tests/testsuite.at: Include push.at.
5425 * test/push.at: New.
5426 (Push Parsing: Memory Leak for Early Deletion): New test case.
5427
5428 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
5429
5430 Improve handling of multiple S/R conflicts in the same state and of S/R
5431 conflicts involving multiple reductions.
5432 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
5433 set for a state here or Bison will abort if it is reassigned on a
5434 later conflicted reduction in the same state.
5435 Similarly, don't finalize and assign the solved conflicts report here
5436 or it will be lost if it is reassigned on a later conflicted reduction
5437 in the same state.
5438 (set_conflicts): Instead, assign them both here after all S/R conflicts
5439 in the state have been fully examined.
5440 * src/print.c (shift_set): Rename to...
5441 (no_reduce_set): ... this.
5442 (print_reductions): Update for rename, and add %nonassoc error action
5443 tokens to no_reduce_set so that, when printing the first remaining
5444 reduction on an error action token, the reduction is enclosed in
5445 brackets.
5446 (print_results): Update for rename.
5447 * tests/conflicts.at (Solved conflicts report for multiple reductions
5448 in a state): New test case.
5449 (%nonassoc error actions for multiple reductions in a state): New test
5450 case.
5451
5452 * src/main.c (main): Don't depend on C99 features.
5453
5454 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
5455
5456 * build-aux/.cvsignore: Add compile.
5457 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
5458 uniwidth.
5459
5460 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
5461
5462 * bootstrap (slurp): Create target directories that don't exist.
5463 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
5464
5465 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5466
5467 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
5468 than item number.
5469 * closure.c (closure): Likewise.
5470 * state.h (reductions): Comment sorting of rules.
5471 (state): Comment sorting of items.
5472
5473 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
5474
5475 Fix C++ test cases after recent Gnulib changes. Discussed starting at
5476 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
5477 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
5478 definition in order to avoid Gnulib headers since we don't use config.h
5479 here.
5480 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
5481 rather than AT_DATA so that config.h is included.
5482
5483 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
5484
5485 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
5486 instead of fprintf. Guard these functions with #if YYDEBUG instead of
5487 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
5488 and so that YYFPRINTF is guaranteed to be defined here.
5489
5490 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5491
5492 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
5493 with...
5494 (muscle_percent_define_check_values): ... this more helpful function.
5495 Again, it's not used yet, but it will be.
5496 * src/muscle_tab.h: Likewise.
5497
5498 Improve some comments in parser table construction.
5499 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
5500 (generate_states): Don't mention ruleset, which is internal to closure.
5501 * src/closure.c (closure): Explain sorting of core and itemset, which
5502 is required for this function to behave correctly.
5503 * src/closure.h (closure): Mention sorting.
5504
5505 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
5506
5507 * src/lalr.c (state_lookahead_tokens_count): For code readability,
5508 move the check for disabled transitions to an aver since conflict
5509 resolution hasn't happened yet.
5510
5511 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
5512 labels a state as inconsistent just because it has error transitions.
5513 The original form of this check appeared in revision 1.1 of lalr.c,
5514 which was committed on 1991-12-21. Now (at least), changing the
5515 consistency label on such a state appears to have no useful effect in
5516 any of the places it is examined, which I enumerate below. The key
5517 point to understanding each item in this enumeration is that a state
5518 with an error transition is labelled consistent in the first place only
5519 if it has no rules, so the check cannot matter for states that have
5520 rules. (1) Labelling a state as inconsistent will cause set_conflicts
5521 to try to identify its conflicts, and a state must have *rules* to have
5522 conflicts. (2) Labelling a state as inconsistent will affect how
5523 action_row sets the default *rule* for the state. (3) Labelling a
5524 state as inconsistent will cause build_relations to add lookback edges
5525 to *rules* in that state.
5526 * src/state.h (struct state): Word the comment for member consistent
5527 more carefully.
5528
5529 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
5530
5531 Don't depend on C99 features.
5532 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
5533 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
5534 * src/reader.c (check_and_convert_grammar): Fix for-loop.
5535 * src/state.c (state_mark_reachable_states): Fix for-loop.
5536 (state_remove_unreachable_states): Fix for-loop.
5537
5538 Don't widen struct state with member reachable just to temporarily
5539 record reachability. Instead, use a local bitset.
5540 * src/state.h (struct state): Remove member.
5541 * src/state.c (state_new): Don't initialize it.
5542 (state_mark_reachable_states): Rename to...
5543 (state_record_reachable_states): ... this, and use bitset.
5544 (state_remove_unreachable_states): Use bitset.
5545
5546 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
5547
5548 * src/Makefile.am (yacc): Quote target action commands properly so
5549 that the yacc script isn't corrupt. Reported by Hans Aberg at
5550 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
5551
5552 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
5553 the case of pure parsers. Reported by Frans Englich at
5554 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
5555 * THANKS: Add Frans Englich.
5556
5557 * NEWS (2.3a+): In the %code entry, reference section `Bison
5558 Declaration Summary' from the manual now since the %code summary has
5559 moved there.
5560 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
5561 in the rules section must be terminated by semicolons.
5562
5563 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
5564
5565 Extend the front-end API for %define variables to more completely
5566 mirror the back-end. This will be useful in the future.
5567 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
5568 Update comments to mention the new front-end counterparts of these
5569 macros.
5570 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
5571 for muscle_string_decode and muscle_location_decode.
5572 (muscle_string_decode): New static function.
5573 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
5574 (muscle_percent_define_get, muscle_percent_define_ifdef): New
5575 functions.
5576 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
5577 muscle_percent_define_get to mimic the b4_percent_define_flag_if
5578 implementation more closely.
5579 (muscle_percent_define_invalid_value): New function.
5580 * src/muscle_tab.h (muscle_percent_define_get,
5581 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
5582 Prototype.
5583
5584 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
5585
5586 * NEWS (2.3a+): Mention yesterday's state-removal change.
5587 (2.3a): Remove the %language entry, which was added after 2.3a.
5588 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
5589 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
5590 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
5591 tests/existing.at: Update copyright date.
5592
5593 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
5594
5595 If conflict resolution makes states unreachable, remove those states,
5596 report rules that are then unused, and don't report conflicts in those
5597 states.
5598 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
5599 New global function.
5600 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
5601 function.
5602 * src/main.c (main): After conflict resolution, remove the unreachable
5603 states and update all data structures that reference states by number.
5604 * src/state.c (state_new): Initialize each state's reachable member to
5605 false.
5606 (state_mark_reachable_states): New static function.
5607 (state_remove_unreachable_states): New global function.
5608 * src/state.h (struct state): Add member bool reachable.
5609 (state_remove_unreachable_states): Prototype.
5610 * tests/conflicts.at (Unreachable States After Conflict Resolution):
5611 New test case.
5612 * tests/existing.at (GNU pic Grammar): Update test case output now that
5613 an unused rule is discovered.
5614
5615 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
5616
5617 Minor code cleanup in parser table construction.
5618 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
5619 (new_itemsets, save_reductions): Update for rename to nitemset.
5620 * src/closure.c (nritemset): Rename to...
5621 (nitemset): ... this since the "r" appears to meaningless and isn't
5622 used in the comments.
5623 (closure): Update for rename.
5624 * src/closure.h (nritemset): Update extern to...
5625 (nitemset): ... this.
5626 * src/lalr.c (LA): Fix a typo in comments.
5627 * src/print.c (print_core): Update for rename to nitemset.
5628 * src/print_graph.c (print_graph): Likewise.
5629 * src/state.h: Fix some typos in header comments.
5630
5631 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
5632
5633 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
5634 still sticks to ASCII. Sorry!
5635
5636 * README-hacking: New file, taken mostly from coreutils, with changes
5637 for Bison. Contains much of the contents of:
5638 * README-cvs: Remove.
5639 * bootstrap: Sync from gnulib.
5640 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
5641 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
5642
5643 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
5644
5645 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
5646 Setzer.
5647 (Java Differences): Fix some typos.
5648 * THANKS: Add Sebastian Setzer.
5649
5650 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
5651
5652 * data/java.m4 (b4_single_class_if): Remove.
5653 (b4_abstract_if): Look at "%define abstract".
5654 (b4_lexer_if): New.
5655 (b4_union_name): Rename...
5656 (b4_yystype): ... to this. Map to "%define stype".
5657 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
5658 b4_maybe_throws): Fix quoting.
5659 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
5660 * data/lalr1.java (Lexer interface): Always define.
5661 (Lexer interface within parser class): Remove.
5662 (YYLexer class): New, used when "%code lexer" is present.
5663 (constructor): When "%code lexer" is used, pass %lex-param
5664 to the lexer constructor.
5665 (yylex, yyparse): Remove %lex-param from method invocations
5666 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
5667
5668 * doc/bison.texinfo (Java Bison Interface): Mention "%define
5669 abstract". Rename "%define union_name" to "%define stype".
5670 Rename method names according to previous patch.
5671 (Java Scanner Interface): Describe "%code lexer" instead of
5672 "%pure-parser" and "%define single_class".
5673 (Java Differences): Mention "%code lexer".
5674
5675 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
5676 Include scanner here, using macros from tests/local.at.
5677 (AT_DATA_CALC_Y): Remove final argument.
5678 (_AT_CHECK_JAVA_CALC): Likewise.
5679 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
5680 of %locations and %error-verbose.
5681 (main): Test with and without %lex-param.
5682 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
5683 (AT_BISON_OPTION_POPDEFS): Pop it.
5684
5685 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5686
5687 DJGPP spefic issue. Inhibit the use of disallowed characters for
5688 file name genertion on Win98, WinXP, etc. These are |<>":?*\
5689 and concern testsuite case 46.
5690 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
5691 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
5692 * djgpp/config.bat: Inhibit the use of disallowed characters.
5693
5694 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5695
5696 Miscellaneous %define and %code cleanup.
5697 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
5698 values are interpreted.
5699 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
5700 documentation a little more.
5701 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
5702 muscle_percent_define_insert, muscle_percent_code_grow): New
5703 functions/macros.
5704 * src/muscle_tab.h (muscle_percent_define_insert,
5705 muscle_percent_code_grow): Prototype.
5706 * src/parse-gram.y (prologue_declaration): Use
5707 muscle_percent_define_insert and muscle_percent_code_grow when parsing
5708 %define and %code directives.
5709
5710 Make it easy to share %define boolean variables between the front-end
5711 and back-end. Though not used yet, this will be useful in the future.
5712 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
5713 Bison uses of names rather than just skeleton uses of names.
5714 (b4_percent_define_get, b4_percent_define_ifdef): Rename
5715 b4_percent_define_skeleton_variables(VARIABLE) to
5716 b4_percent_define_bison_variables(VARIABLE).
5717 (b4_percent_code_get, b4_percent_code_ifdef): Rename
5718 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
5719 b4_percent_code_bison_qualifiers(QUALIFIER).
5720 (b4_check_user_names_wrap): Update for renames.
5721 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
5722 muscle_percent_define_default): New functions mimicking
5723 b4_percent_define_flag_if and b4_percent_define_default.
5724
5725 For %define variables, report locations for invalid values and
5726 redefinitions.
5727 * data/bison.m4 (b4_percent_define_flag_if): Read
5728 b4_percent_define_loc(VARIABLE) to report the location of an invalid
5729 value for VARIABLE.
5730 (b4_percent_define_default): Save a special location in
5731 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
5732 must later be reported as invalid.
5733 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
5734 functions.
5735 (muscle_percent_define_insert): Record the location of VARIABLE in
5736 muscle percent_define_loc(VARIABLE), and use it to report the previous
5737 location for a redefinition.
5738 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
5739 (muscle_percent_define_default): Update like b4_percent_define_default.
5740 (muscle_grow_user_name_list): Rename to...
5741 (muscle_user_name_list_grow): ... this for consistency and use
5742 muscle_location_grow.
5743 * src/muscle_tab.h (muscle_location_grow): Prototype.
5744 * tests/input.at (%define errors): Update expected output.
5745 * tests/skeletons.at (%define boolean variables: invalid skeleton
5746 defaults): New test case.
5747
5748 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
5749
5750 * src/print.c (lookahead_set, state_default_rule): Remove.
5751 (print_reductions): Replace state_default_rule invocation with
5752 equivalent use of yydefact, which was computed in token_actions in
5753 tables.c.
5754 (print_results): Don't allocate lookahead_set.
5755
5756 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
5757
5758 * data/lalr1.java: Prefix all private members with yy.
5759
5760 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
5761
5762 Use YYFPRINTF instead of fprintf where appropriate. Reported by
5763 Sebastien Fricker at
5764 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
5765 * THANKS: Add Sebastien Fricker.
5766 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
5767 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
5768 accept a variable number of arguments.
5769
5770 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
5771
5772 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
5773
5774 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5775
5776 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
5777 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
5778 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
5779
5780 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
5781
5782 Undo my 2007-02-07 change, switching back to the c-strcase module
5783 introduced in the 2007-02-03 change. Bruno Haible reported that
5784 the 2007-02-07 change would be dangerous in Turkish if we add a
5785 language whose name contains "i", since "i" is not lowercase "I"
5786 in Turkish.
5787 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
5788 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
5789 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
5790 * m4/.cvsignore: Remove strcase.m4.
5791 * src/getargs.c: Revert 2007-02-07 change, as follows.
5792 Include c-strcase.h.
5793 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
5794
5795 2007-02-11 Bruno Haible <bruno@clisp.org>
5796
5797 Enable the Java related testsuite tests when the only Java compiler
5798 found is a gcj < 4.3. Discussed at
5799 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
5800 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
5801
5802 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
5803
5804 * data/Makefile.am: Update copyright date.
5805 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
5806 yypstate_new returns NULL.
5807 (yypstate_new): Return NULL if malloc does.
5808 * src/reader.c (packgram): Move translation of rule actions from the
5809 beginning of packgram to...
5810 (check_and_convert_grammar): ... here right before packgram is invoked
5811 so it's easier to write more complete comments, and remove redundant
5812 code.
5813
5814 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
5815
5816 As in semantic actions, make @$ in %initial-action, %destructor, and
5817 %printer imply %locations.
5818 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
5819 scanning @$.
5820 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
5821 (@$ in %initial-action implies %locations,
5822 @$ in %destructor implies %locations,
5823 @$ in %printer implies %locations): ... these new test cases.
5824
5825 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
5826
5827 Undo most of the 2007-02-03 change, switching to the strcase module
5828 now that gnulib strcase has been fixed.
5829 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
5830 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
5831 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
5832 * m4/.cvsignore: Add strcase.m4.
5833 * src/getargs.c: Revert 2007-02-03 change, as follows.
5834 Don't include c-strcase.h.
5835 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
5836 strcasecmp has "unspecified behavior" outside the POSIX locale,
5837 but it works fine in practice if at least one argument is ASCII,
5838 as is the case in Bison.
5839
5840 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
5841
5842 * tests/java.at: Skip tests if only one of javac/java is present.
5843 Reported by Joel E. Denny.
5844 * tests/atlocal.in: Adjust copyright years.
5845
5846 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
5847
5848 * data/lalr1.java (Stack): Work around old verifiers that disallow
5849 access to the private fields of an inner class, from the outer class.
5850 We can make Stack's fields public because user code doesn't have access
5851 to the instance of Stack used by parse(). Reported by Paul Eggert.
5852
5853 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
5854
5855 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
5856 the right spot for these files?
5857 * bootstrap.conf (gnulib_modules): Add c-strcase.
5858 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
5859 c-strncasecmp.c.
5860 * src/getargs.c: Include c-strcase.h.
5861 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
5862 to avoid unspecified behavior.
5863
5864 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
5865
5866 * doc/bison.texinfo (Decl Summary): Correct typo.
5867
5868 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
5869
5870 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
5871 Complain if the value does not match empty, "true" or "false".
5872 * data/c++.m4: Adjust default definitions of %define variables.
5873 * data/java.m4: Adjust default definitions of %define variables.
5874 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
5875 to above behavior.
5876 * tests/input.at (Boolean %define variables): Test new behavior.
5877
5878 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
5879
5880 * NEWS: Mention java.
5881 * TODO: Remove things that are done.
5882 * bootstrap.conf: Add javacomp-script and javaexec-script.
5883 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
5884
5885 * data/Makefile.am: Add new files.
5886 * data/java-skel.m4: New.
5887 * data/java.m4: New.
5888 * data/lalr1.java: New.
5889
5890 * doc/bison.texinfo: Put "A Complete C++ Example" under
5891 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
5892 under Other Languages.
5893
5894 * src/getargs.c (valid_languages): Add Java.
5895 * src/getargs.h (struct bison_language): Update size of string fields.
5896
5897 * tests/Makefile.am: Add java.at.
5898 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
5899 * tests/java.at: New.
5900 * tests/testsuite.at: Include it.
5901
5902 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
5903
5904 Clean up.
5905 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
5906 at_directive_argv arguments so these no longer have to be global
5907 variables. Also, update the implementation for the following changes.
5908 (fail_for_at_directive_too_many_args,
5909 fail_for_at_directive_too_few_args): Add at_directive_name argument.
5910 (at_directive_name): Remove as at_directive_argv[0] will be used for
5911 this now.
5912 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
5913 for the directive name.
5914 (at_directive_argc, at_directive_argv): Make these local within
5915 skel_lex instead of global.
5916 (INITIAL): Update directive start action for above changes.
5917 (SC_AT_DIRECTIVE_ARG): Rename to...
5918 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
5919 (SC_AT_DIRECTIVE_SKIP_WS): Update.
5920 (scan_skel): Move yylex_destroy to...
5921 (skel_scanner_free): ... here.
5922 * tests/skeletons.at (installed skeleton file name): Rename to...
5923 (installed skeleton file names): ... this.
5924
5925 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
5926
5927 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5928 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
5929 Summary" not "Directives".
5930 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
5931 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
5932 since the former is now the more complete one.
5933 (Prologue Alternatives): Likewise and do the same for %defines.
5934 (Table of Symbols): Add summary of %code, add summary of %define, and
5935 move full %code documentation to...
5936 (Decl Summary): ... here for consistency with other entries in these
5937 sections.
5938 Move %define entry in order to keep this list alphabetized.
5939 Reword %define entry a little to put less emphasis on the skeleton
5940 concept, which most users shouldn't have to think about.
5941
5942 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
5943
5944 Adjust to recent gnulib changes.
5945 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
5946 Add string.h, string_.h, unistd_.h, wchar_.h.
5947 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
5948 * src/system.h: Don't include <stpcpy.h>; this is now done by
5949 <string.h>.
5950
5951 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
5952
5953 Simplify implementation of unqualified %code, implement macros for
5954 uniform treatment of boolean %define flags. Document %define.
5955 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
5956 b4_percent_code_ifdef): New.
5957 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
5958 * data/c++.m4: Define default value for global_tokens_and_yystype.
5959 * data/glr.cc: Likewise.
5960 * data/location.cc: Use b4_percent_define_flag_if.
5961
5962 * doc/bison.texinfo (Decl Summary): Document %define.
5963
5964 * src/parse-gram.y (Unqualified %code): Change muscle name to
5965 b4_percent_code().
5966 (content.opt): Default to empty.
5967
5968 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
5969
5970 Implement support for relative and absolute skeleton file names.
5971 Discussed starting at
5972 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
5973 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
5974 (Bison Options): Document in --skeleton entry.
5975 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
5976 full_skeleton can't necessarily hold all of pkgdatadir.
5977 If the specified skeleton file name contains a `/', don't prepend
5978 pkgdatadir.
5979 * src/parse-gram.y (prologue_declaration): If the specified skeleton
5980 file name contains a `/', prepend the grammar file directory.
5981 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
5982 * skeletons.at: New file.
5983 (relative skeleton file names): New test case.
5984 (installed skeleton file names): New test case.
5985 * tests/testsuite.at: Include skeletons.at.
5986
5987 * bootstrap: Update copyright to 2007.
5988
5989 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
5990
5991 * bootstrap: Remove occurrences of .#bootmp from the files.
5992
5993 2007-01-17 Akim Demaille <akim@epita.fr>
5994
5995 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
5996 nonterminals.
5997 Use per-type %printer.
5998
5999 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6000
6001 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
6002 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6003 djgpp/config.site, src/files.c, src/files.h, src/main.c,
6004 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
6005 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
6006 tests/glr-regression.at, tests/input.at, tests/local.at,
6007 tests/output.at, tests/torture.at: Update copyright to 2007.
6008
6009 2007-01-16 Akim Demaille <akim@epita.fr>
6010
6011 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
6012 error code.
6013 (Calc++ Scanner): Exit with failure if we can't open the input
6014 file.
6015 Accept "-" standing for stdin.
6016 (Calc++ Top Level): Print the result only if the parsing was
6017 successful.
6018
6019 2007-01-16 Akim Demaille <akim@epita.fr>
6020
6021 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
6022
6023 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
6024 and Joel E. Denny <jdenny@ces.clemson.edu>
6025
6026 Clean up %define and %code implementation in M4 some. Most
6027 importantly, rename all related macros to be in the b4_percent_define
6028 and b4_percent_code namespaces. Also, complete support for `.' in
6029 %define variable names and %code qualifiers.
6030 * data/bison.m4 (b4_check_user_names): Check for special
6031 "SKELETON-NAMESPACE(name)" macros instead of using two nested
6032 m4_foreach loops.
6033 (b4_get_percent_define, b4_get_percent_code): Rename to...
6034 (b4_percent_define_get, b4_percent_code_get): ... these.
6035 Extend documentation with examples.
6036 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
6037 b4_percent_define_skeleton_variables and
6038 b4_percent_code_skeleton_qualifiers.
6039 Expect any value for the %define variable `foo' to be stored in the
6040 macro named `b4_percent_define(foo)'; expect any %code blocks for the
6041 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
6042 expect any unqualified %code blocks to be stored in a macro named
6043 `b4_percent_code_unqualified'.
6044 Use m4_indir so that %define variable names and %code qualifiers can
6045 contain `.', which is allowed by the grammar parser.
6046 (b4_percent_define_default): New macro to set a default value for a
6047 %define variable.
6048 (m4_wrap): Update wrapped code, and fix some underquoting.
6049 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
6050 Expect grammar uses of %define variables and %code qualifiers to be
6051 defined in b4_percent_define_user_variables and
6052 b4_percent_code_user_qualifiers.
6053 * data/c++.m4: Use b4_percent_define_default rather than
6054 m4_define_default. Fix some underquoting. Skeleton usage of %define
6055 variable define_location_comparison now implies skeleton usage of
6056 %define variable filename_type.
6057 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6058 data/push.c, data/yacc.c: Update macro names.
6059 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
6060 muscle names.
6061
6062 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6063
6064 DJGPP specific issues.
6065
6066 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
6067 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
6068
6069 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6070
6071 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
6072 run parsers in all tests so that Valgrind is invoked during
6073 maintainer-check-valgrind.
6074 (Duplicate representation of merged trees): Free all semantic values.
6075 (Duplicated user destructor for lookahead): Likewise.
6076
6077 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6078
6079 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
6080 command-line prefix.
6081 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
6082 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
6083 miss Valgrind messages.
6084 (Exploding the Stack Size with Malloc): Likewise.
6085
6086 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6087
6088 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
6089 locals. Reported by Juan Manuel Guerrero at
6090 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
6091 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
6092 Fix some indentation also.
6093 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
6094 explaining this issue.
6095
6096 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
6097 and Joel E. Denny <jdenny@ces.clemson.edu>
6098
6099 Simplify union and prologue handling, and escape union and lex/parse
6100 params with digraphs.
6101 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
6102 values to the empty string since these are no longer guaranteed
6103 initialized by the front-end.
6104 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
6105 braces around b4_user_stype since this is no longer done by the
6106 front-end.
6107 * src/files.c, src/files.h (pre_prologue_obstack,
6108 post_prologue_obstack): Remove.
6109 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
6110 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
6111 with digraphs. This fixes lex params and parse params.
6112 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
6113 * src/output.c (prepare): Remove muscle insertion of the prologues.
6114 (output): Remove freeing of pre_prologue_obstack and
6115 post_prologue_obstack.
6116 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
6117 than prologue_augment for prologue parsing so you don't need prologue
6118 obstacks.
6119 (grammar_declaration): For %union RHS, use `braceless' instead of
6120 "{...}" so that braces are already stripped and code is escaped with
6121 digraphs.
6122 * src/reader.c (prologue_augment): Remove.
6123 (reader): Remove initialization of pre_prologue_obstack and
6124 post_prologue_obstack.
6125 * src/reader.h (prologue_augment): Remove.
6126
6127 * data/c.m4: Remove stray parenthesis.
6128
6129 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6130
6131 Remove quotes from variables names in %define directives and from
6132 qualifiers in %code directives, and restrict the characters that are
6133 allowed in them to M4-friendly ones. For %define, continue to support
6134 the quoted form as a deprecated feature. Discussed starting at
6135 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
6136 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
6137 %code.
6138 * doc/bison.texinfo (Prologue Alternatives): Update.
6139 (Decl Summary): In %defines entry, update mention of `%code requires'
6140 and `%code provides'.
6141 (C++ Location Values): Update %define uses.
6142 (Calc++ Parser Interface): Likewise.
6143 (Calc++ Parser): Likewise, and update `%code requires' uses.
6144 (Table of Symbols): Update %code documentation.
6145 * src/parse-gram.y (prologue_declaration): For %define variables, use
6146 `variable' instead of `STRING'.
6147 (grammar_declaration): For %code qualifiers, use `ID' instead of
6148 `STRING'.
6149 (variable): New nonterminal that takes an `ID' or a `STRING'.
6150 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
6151 and %define uses.
6152 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
6153 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
6154 (%define errors): Update %define uses.
6155
6156 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6157
6158 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
6159 instead of muscle_insert for %define values so that M4-special
6160 characters are replaced with digraphs.
6161 * tests/input.at (%define errors): Extend to check weird values.
6162
6163 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6164
6165 Instead of having skeletons declare all valid %define variables and
6166 %code qualifiers, provide macros that retrieve the associated values
6167 and build these lists automatically. Thus Bison will now warn when a
6168 variable or qualifier is not used by the skeleton in the current
6169 invocation regardless of whether it might sometimes be used by that
6170 skeleton in other invocations. Also, move all %define value macros to
6171 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
6172 form, which is replaced by %code.
6173 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
6174 (b4_check_user_names): ... this, and change the series of valid name
6175 arguments to a single list argument for names used in the skeleton
6176 similar to the existing list argument for names used in the grammar.
6177 Warn instead of complaining.
6178 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
6179 values and %code code, to format %code code properly, and to build
6180 lists of all %define variables and %code qualifiers used in the
6181 skeleton: b4_skeleton_percent_define_variables and
6182 b4_skeleton_percent_code_qualifiers.
6183 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
6184 Remove, and...
6185 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
6186 the skeleton names lists can finish building first. In place of
6187 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
6188 expect the lists b4_user_percent_define_variables and
6189 b4_user_percent_code_qualifiers.
6190 * data/c++.m4: Where setting default values for b4_parser_class_name,
6191 b4_location_type, b4_filename_type, b4_namespace, and
6192 b4_define_location_comparison, update their names to the
6193 b4_percent_define_ namespace.
6194 * data/glr.c: Don't use b4_check_percent_define_variables and
6195 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6196 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
6197 (b4_parser_class_name, b4_namespace): Define these using
6198 b4_get_percent_define for parser_class_name and namespace.
6199 * data/location.cc: Use b4_get_percent_define.
6200 * data/push.c: Don't use b4_check_percent_define_variables and
6201 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6202 * data/yacc.c: Likewise, and don't call m4_exit in
6203 b4_use_push_for_pull_if or m4_wrap code will never execute.
6204 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
6205 Rename to...
6206 (muscle_grow_user_name_list): ... this for consistency with the
6207 terminology used in bison.m4.
6208 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
6209 %define variable names, and rename muscle used_percent_define_variables
6210 to user_percent_define_variables.
6211 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
6212 user_percent_code_qualifiers.
6213 (content): Remove.
6214 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
6215 {CODE} form is no longer accepted.
6216 * tests/input.at (Reject bad %code qualifiers): Rename to...
6217 (Reject unused %code qualifiers): ... this, and update test output.
6218 (%define error): Update test output.
6219
6220 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
6221
6222 Check for unrecognized %define variables similar to checking for
6223 unrecognized %code qualifiers. Check for redefined %define variables.
6224 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
6225 generalizes...
6226 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
6227 (b4_check_percent_define_variables): New, also wraps it.
6228 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
6229 variables using b4_check_percent_define_variables.
6230 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
6231 all those exercised in the test suite and all those listed in the
6232 `Default values' section of c++.m4. Are there others?
6233 * data/push.c, data/yacc.c: Declare no valid %define variables.
6234 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
6235 similar to muscle_find, but it works even when the muscle stores a
6236 const value.
6237 (muscle_grow_used_name_list): New function for constructing the used
6238 name list muscles that b4_check_for_unrecognized_names requires.
6239 * src/parse-gram.y (prologue_declaration): Warn if a variable is
6240 %define'd more than once. Define the b4_used_percent_define_variables
6241 muscle with muscle_grow_used_name_list.
6242 (grammar_declaration): Abbreviate %code code with
6243 muscle_grow_used_name_list.
6244 * tests/input.at (%define errors): New.
6245
6246 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6247
6248 Provide warn_at, complain_at, and fatal_at function callbacks to the
6249 skeletons, and use this for %code qualifier complaints.
6250 * data/bison.m4 (b4_error_at): New, invoked by...
6251 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
6252 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
6253 @fatal_at(...@) directives.
6254 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
6255 qualifiers in b4_used_percent_code_qualifiers and to use
6256 b4_complain_at.
6257 * src/location.c, src/location.h (boundary_set_from_string): New global
6258 function.
6259 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
6260 function.
6261 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
6262 to b4_used_percent_code_qualifiers.
6263 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
6264 function.
6265 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
6266 (lineno): Rename to...
6267 (out_lineno): ... this so I don't misunderstand it again.
6268 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
6269 here; these newlines are in the input but not the output file.
6270 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
6271 (at_directive_perform): ... this new static function, and add handling
6272 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
6273 directives.
6274 * tests/input.at (Reject bad %code qualifiers): Update test output with
6275 locations and extend.
6276
6277 * tests/output.at (Output file name: [, Output file name: ]): Remove
6278 bogus comment about these tests failing.
6279
6280 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6281
6282 Clean up b4_check_percent_code_qualifiers a little.
6283 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
6284 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
6285 documentation and add examples.
6286 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
6287 qualifiers here.
6288
6289 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6290
6291 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
6292 unreliable -- especially when they're hidden inside another macro.
6293 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
6294 data/c.m4: Remove m4_divert(-1).
6295 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6296 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
6297 m4_divert_push(0) and m4_divert_pop(0).
6298 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
6299 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
6300 pushed and popped by m4sugar, should be first on the stack.
6301
6302 Provide warn, complain, and fatal function callbacks to the skeletons.
6303 This provides more flexibility than m4_fatal, improves the error
6304 message format, and captures messages for translation. Discussed
6305 starting at
6306 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
6307 * data/bison.m4 (b4_error): New, invoked by...
6308 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
6309 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
6310 directives. Because these M4 macros might be called when the current
6311 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
6312 the previous removal of uses of m4_divert, which caused trouble.
6313 (b4_check_percent_code_qualifiers): Use b4_complain instead of
6314 m4_fatal to report unrecognized %code qualifiers.
6315 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
6316 push parser requests.
6317 * data/glr.c: Use b4_complain instead of m4_fatal to report
6318 non-deterministic push parser requests.
6319 Update @output usage to @output(...@) form.
6320 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
6321 report missing %defines. Update @output usage to @output(...@) form.
6322 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
6323 @output(...@) form.
6324 * src/main.c (main): Invoke skel_scanner_free.
6325 * src/scan-skel.h (skel_scanner_free): Prototype new function.
6326 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
6327 obstack_for_string from flex-scanner.h.
6328 (YY_DECL): Use to declare skel_lex static.
6329 (decode_at_digraphs): Remove; now handled in the new
6330 SC_AT_DIRECTIVE_ARG start condition.
6331 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
6332 functions.
6333 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
6334 at_directive_argv): New static globals.
6335 (INITIAL): Use fail_for_invalid_at.
6336 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
6337 recognize the start of a generalized `@directive(...@)' form and
6338 start...
6339 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
6340 directive args (using the new obstack_for_string), to decode the
6341 contained @ diagraphs, and to perform the directive. It recognizes
6342 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
6343 @output(...@).
6344 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
6345 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
6346 `@,'.
6347 (scan_skel): Initialize obstack_for_string on the first call.
6348 (skel_scanner_free): New function to free obstack_for_string.
6349 * tests/input.at (Reject bad %code qualifiers): Update test output.
6350
6351 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
6352
6353 Consolidate the 4 prologue alternative directives (%code, %requires,
6354 %provides, and %code-top) into a single %code directive with an
6355 optional qualifier field. Discussed at
6356 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
6357 * NEWS (2.3a+): Rewrite the existing entry for the prologue
6358 alternatives.
6359 * doc/bison.texinfo (Prologue Alternatives): Update.
6360 (Decl Summary): Update to %code "requires" and %code "provides".
6361 (Calc++ Parser): Update to %code "requires".
6362 (Table of Symbols): Remove entries for %requires, %provides, and
6363 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
6364 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
6365 are replaced by b4_percent_code_provides and b4_percent_code_requires,
6366 which are skeleton-specific.
6367 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
6368 declare what %code qualifiers it supports and to complain if any other
6369 qualifiers were used in the grammar.
6370 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
6371 and b4_user_code([b4_percent_code_provides]) in place of
6372 b4_user_requires and b4_user_provides.
6373 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
6374 Add b4_user_code([b4_percent_code_top]) and
6375 b4_user_code([b4_percent_code]).
6376 Invoke b4_check_percent_code_qualifiers.
6377 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6378 PERCENT_REQUIRES): Remove.
6379 (grammar_declaration): Remove RHS's for %code-top, %provides, and
6380 %requires. Rewrite the %code RHS as the unqualified form defining the
6381 muscle b4_percent_code. Add another RHS for the qualified %code form,
6382 which defines muscles of the form b4_percent_code_QUALIFIER and the
6383 b4_used_percent_code_qualifiers muscle.
6384 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6385 PERCENT_REQUIRES): Remove.
6386 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
6387 %code "requires" and %code "provides".
6388 * tests/input.at (Reject bad %code qualifiers): New.
6389
6390 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6391
6392 Use the new code_props interface for destructors and printers.
6393 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
6394 printer_location members, and change the type of the destructor and
6395 printer members to code_props.
6396 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
6397 symbol_printer_get, semantic_type_destructor_set,
6398 semantic_type_printer_set, default_tagged_destructor_set,
6399 default_tagless_destructor_set, default_tagged_printer_set,
6400 default_tagless_printer_set): Use code_props in arguments and return
6401 types in place of char const * and location.
6402 (symbol_destructor_location_get, symbol_printer_location_get): Remove
6403 since the locations are now contained in the return of
6404 symbol_destructor_get and symbol_printer_get.
6405 * src/output.c (symbol_destructors_output, symbol_printers_output):
6406 Replace with...
6407 (symbol_code_props_output): ... this to eliminate duplicate code.
6408 (output_skeleton): Update to use symbol_code_props_output.
6409 * src/reader.c (symbol_should_be_used): Update use of
6410 symbol_destructor_get.
6411 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6412 Update uses of the various _destructor_set and _printer_set functions.
6413 * src/symtab.c: (default_tagged_destructor_location,
6414 default_tagless_destructor_location, default_tagged_printer_location,
6415 default_tagless_printer_location): Remove since we...
6416 (default_tagged_destructor, default_tagless_destructor,
6417 default_tagged_printer, default_tagless_printer): ... change the type
6418 of these to code_props.
6419 (symbol_new, semantic_type_new, symbol_destructor_set,
6420 semantic_type_destructor_set, symbol_destructor_get,
6421 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
6422 symbol_check_alias_consistency, default_tagged_destructor_set,
6423 default_tagless_destructor_set, default_tagged_printer_set,
6424 default_tagless_printer_set): Update.
6425 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
6426 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
6427 code_props members.
6428 (symbol_print): Use SYMBOL_CODE_PRINT.
6429
6430 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6431
6432 Use the new code_props interface for rule actions.
6433 * src/symlist.h (symbol_list): Replace action, action_location, and
6434 used members with a code_props action_props member.
6435 * src/reader.c (symbol_should_be_used, grammar_rule_check,
6436 grammar_midrule_action, grammar_current_rule_merge_set,
6437 grammar_current_rule_symbol_append, packgram): Update.
6438 * src/scan-code.h (translate_rule_action): Remove, no longer used.
6439 * src/scan-code.l (handle_action_dollar): Update.
6440 (translate_rule_action): Remove, no longer used.
6441 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
6442
6443 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6444
6445 Use the new code_props interface in parse-gram.y.
6446 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
6447 Update all uses of translate_* functions to use the new code_props
6448 interface and to use gram_scanner_last_string_free and
6449 code_scanner_last_string_free where possible.
6450 (grammar_declaration): symbol_list_destructor_set and
6451 symbol_list_printer_set now perform the translation, so don't do it
6452 here. Use gram_scanner_last_string_free where possible.
6453 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
6454 translate_code): Remove, no longer used.
6455 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
6456 symbol_list_printer_set): Perform code translation here rather than
6457 depending on the caller to do so.
6458
6459 * src/symlist.h (struct symbol_list): Correct some documentation typos.
6460 * src/scan-gram.h (gram_last_string): Remove declaration.
6461 * src/scan-gram.l (last_string): Declare it static.
6462
6463 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6464
6465 Encapsulate code properties and related functionality for the various
6466 destructors, printers, and actions into a code_props structure and
6467 interface. This patch merely implements code_props in scan-code.h and
6468 scan-code.l. Future patches will rewrite other modules to use it.
6469 Discussed starting at
6470 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
6471 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
6472 consistently initialize const structs that have an empty location
6473 field.
6474 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
6475 to ensure consistency.
6476 * src/scan-code.h (code_props): New structure.
6477 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
6478 function, macro, and const global variable for initializing a
6479 code_props with no code.
6480 (code_props_plain_init, code_props_symbol_action_init,
6481 code_props_rule_action_init, code_props_translate_code): The rest of
6482 the new code_props functional interface. Among other things, the init
6483 functions set the code_props kind field so that
6484 code_props_translate_code will know whether to behave like
6485 translate_symbol_action, translate_rule_action, or translate_code.
6486 These old translate functions must remain until all other modules are
6487 updated to use the new code_props interface.
6488 (code_scanner_last_string_free): New function similar to
6489 gram_scanner_last_string_free.
6490 (code_scanner_free): Add documentation.
6491 * src/scan-code.l: Implement the new interface.
6492 (code_lex): Make it static, add a code_props* argument, and remove the
6493 rule argument.
6494 (last_string): New static global similar to the one in scan-gram.l.
6495 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
6496 instead of rule.
6497 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
6498 code_props since Bison may one day use this information for destructors
6499 and printers.
6500 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
6501 (handle_action_dollar): Use symbol_list_n_get and set used flag
6502 directly since symbol_list_n_used_set is removed.
6503 (translate_action): Add a code_props* argument and remove the rule,
6504 action, and location arguments. Pass the code_props* on to code_lex.
6505 (translate_rule_action, translate_symbol_action, translate_code):
6506 Rewrite as wrappers around the new code_props interface.
6507 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
6508 it would eventually need to break the encapsulation of code_props.
6509
6510 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
6511
6512 * etc/.cvsignore: New.
6513
6514 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
6515
6516 Add maintainer-push-check to run maintainer-check using push parsing in
6517 place of pull parsing where available.
6518 * Makefile.am (maintainer-push-check): New.
6519 * data/bison.m4 (b4_use_push_for_pull_if): New.
6520 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
6521 appropriately based on their existing values.
6522 (yypush_parse): Don't print push-parser-specific diagnostics if push
6523 parsing is being used in place of pull parsing.
6524 * data/yacc.c: If push parsing should replace pull parsing, redirect to
6525 push.c.
6526 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
6527 variable, and insert b4_use_push_for_pull_flag into muscles.
6528 * tests/Makefile.am (maintainer-push-check): New.
6529
6530 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
6531
6532 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
6533 (whether successful or failed) so that yypush_parse can be invoked
6534 again to start a new parse using the same yypstate.
6535 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
6536 check multiple yypull_parse invocations on the same yypstate. For pull
6537 mode, extend to check multiple yyparse invocations.
6538 (Exploding the Stack Size with Alloca): Extend to try with
6539 %push-pull-parser.
6540 (Exploding the Stack Size with Malloc): Likewise.
6541
6542 * tests/calc.at (Simple LALR Calculator): Don't specify
6543 %skeleton "push.c" since %push-pull-parser implies that now.
6544 * tests/headers.at (export YYLTYPE): Don't check for the push
6545 declarations. Otherwise, this test case can't be used to see if push
6546 mode can truly emulate pull mode.
6547 * tests/input.at (Torturing the Scanner): Likewise.
6548 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
6549 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
6550 AT_YACC_IF, which now includes the case of push mode since %skeleton
6551 need not be used for push mode. This will be more intuitive once
6552 push.c is renamed to yacc.c.
6553
6554 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
6555
6556 For push mode, convert yyparse from a macro to a function, invoke yylex
6557 instead of passing a yylexp argument to yypull_parse, and don't
6558 generate yypull_parse or yyparse unless %push-pull-parser is declared.
6559 Discussed starting at
6560 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
6561 * data/bison.m4 (b4_pull_if): New.
6562 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
6563 * data/push.c: Improve M4 quoting a little.
6564 (b4_generate_macro_args, b4_parenthesize): Remove.
6565 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
6566 any time a pull parser is requested.
6567 Don't #define this as a wrapper around yypull_parse. Instead, when
6568 both push and pull are requested, make it a function that does that
6569 same thing.
6570 (yypull_parse): If there's a b4_prefix, #define this to
6571 b4_prefix[pull_parse] when both push and pull are requested.
6572 Don't define this as a function unless both push and pull are
6573 requested.
6574 Remove the yylexp argument and hard-code yylex invocation instead.
6575 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
6576 %push-parser.
6577 * src/getargs.c (pull_parser): New global initialized to true.
6578 * getargs.h (pull_parser): extern it.
6579 * src/output.c (prepare): Insert pull_flag muscle.
6580 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
6581 (prologue_declaration): Set both push_parser and pull_parser = true for
6582 %push-pull-parser. Set push_parser = true and pull_parser = false for
6583 %push-parser.
6584 * src/scan-gram.l: Don't accept %push_parser as an alternative to
6585 %push-parser since there's no backward-compatibility concern here.
6586 Scan %push-pull-parser.
6587 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
6588 instead of %push-parser.
6589 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
6590 prototype it in the module that calls yyparse.
6591 * tests/input.at (Torturing the Scanner): Likewise.
6592 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
6593
6594 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
6595
6596 Update etc/bench.pl. Optimize push mode a little (the yyn change
6597 deserves most of the credit).
6598 * Makefile.am (SUBDIRS): Add etc subdirectory.
6599 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
6600 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
6601 yytoken, yyval, and yyloc declarations to...
6602 (yyparse or yypush_parse): ... here to improve performance. For
6603 yypush_parse invocations after the first, be sure to assign yyn its old
6604 value again.
6605 (yypstate_new): Don't bother initializing the yyresult field since the
6606 initial value isn't used.
6607 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
6608 remove the #define that, in push mode, set it to yyps->NAME.
6609 * etc/Makefile.am: New.
6610 * etc/bench.pl: Remove and build it instead from...
6611 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
6612 "tests/bison" from the build directory by default rather than just
6613 invoking "bison" from $PATH.
6614 (calc_grammar): Update push parser code: don't declare yylval globally,
6615 don't define yyparse_wrapper, and don't #define yyparse.
6616 (bench_grammar): Update to check all working combinations of yacc.c,
6617 push.c, impure, pure, pull, and push.
6618
6619 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
6620
6621 For push mode, add pull wrappers around yypush_parse.
6622 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
6623 (yypull_parse): New function wrapping yypush_parse.
6624 (yyparse): New #define wrapping yypull_parse.
6625 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
6626 is declared.
6627 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
6628 prototype yylex in the module that calls yyparse, and don't prototype
6629 yyparse there. Otherwise, the yyparse expansion won't compile.
6630 * tests/input.at (Torturing the Scanner): Likewise.
6631
6632 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
6633
6634 Enable push parsers to operate in impure mode. Thus, %push-parser no
6635 longer implies %pure-parser. The point of this change is to move
6636 towards being able to test the push parser code by running the entire
6637 test suite as if %push-parser had been declared.
6638 * data/push.c (yypush_parse): For impure mode, remove the
6639 yypushed_char, yypushed_val, and yypushed_loc arguments.
6640 Instead, declare these as local variables initialized to the global
6641 yychar, yylval, and yylloc.
6642 For the first yypush_parse invocation only, restore the initial values
6643 of these global variables when it's time to read a token since they
6644 have been overwritten.
6645 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
6646 %push-parser.
6647 * tests/calc.at (Simple LALR(1) Calculator): Always declare
6648 %pure-parser along with %push-parser since this test case was designed
6649 for pure push parsers.
6650 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
6651 (AT_YACC_OR_PUSH_IF): New.
6652 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
6653 add a note that it's still wrong for some cases (as it has been for a
6654 while).
6655 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
6656 %push-parser no longer implies %pure-parser.
6657
6658 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6659
6660 Remove some unnecessary differences between the pull parser code and
6661 the push parser code. This patch enables yynerrs in push mode.
6662 * data/push.c: Reformat M4 a little.
6663 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
6664 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
6665 because push mode is on. Instead, if pure mode is on, move yynerrs
6666 to...
6667 (b4_declare_parser_state_variables): ... here.
6668 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
6669 to yyps->NAME so it can be used in yypush_parse.
6670 (yypush_parse): Don't omit uses of yynerrs in push mode.
6671
6672 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6673
6674 Fix bug such that the first pushed token's value and location are
6675 sometimes overwritten (sometimes by %initial-action) before being used.
6676 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
6677 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
6678 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
6679 more closely mimic the pull parser logic.
6680 Don't copy the pushed token to yychar, yylval, and yylloc until it's
6681 time to read a token, which is after any initialization of yylval and
6682 yylloc.
6683 (gottoken): Rename label to...
6684 (yyread_pushed_token): ... for clarity and to avoid infringing on the
6685 user namespace.
6686
6687 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6688
6689 Rearrange initialization of the parser state variables so that the
6690 skeleton doesn't have to have a copy for pull mode and another for push
6691 mode. This patch also fixes at least a bug such that yylloc was not
6692 initialized (with b4_location_initial_line and
6693 b4_location_initial_column) upon calling yypush_parse. However, that
6694 initialization now overwrites the first token's location;
6695 %initial-action assigning @$ already did the same thing, and both bugs
6696 will be fixed in a later patch.
6697 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
6698 (b4_declare_parser_state_variables): Remove initialization of yytoken,
6699 yyss, yyvs, yyls, and yystacksize.
6700 (yypstate_new): Remove initialization of some yypstate fields: yystate,
6701 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
6702 yylsp.
6703 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
6704 yyps->NAME so it can be used in yypush_parse.
6705 (yyparse or yypush_parse): For yypush_parse, don't print the
6706 "Starting parse" diagnostic for invocations after the first.
6707 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
6708 yypush_parse, only do it for the first invocation.
6709 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
6710 initialization to occur in yypush_parse but only on the first
6711 invocation.
6712
6713 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6714
6715 * data/push.c: Add CPP guards around push parser declarations in both
6716 the header and the code file.
6717 In the code file, move the push parser declarations to the same place
6718 they appear in the header file.
6719 Clean up the M4 some, especially the inconsistent underquoting in
6720 some b4_c_function_def and b4_c_function_decl uses.
6721
6722 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6723
6724 Encapsulate the push parser state variables into an M4 macro so the
6725 push skeleton doesn't have to list them again for pull mode's yyparse.
6726 For push mode, remove yypush_parse's local equivalents of these
6727 variables to eliminate unnecessary copying between the two sets at
6728 run-time. This patch also fixes at least a bug related to multiple
6729 %initial-action invocations in push mode.
6730 * data/push.c (b4_declare_parser_variables): Rename to...
6731 (b4_declare_scanner_communication_variables): ... this for clarity and
6732 update both uses.
6733 (b4_declare_yyparse_variables): Remove and move its contents to the one
6734 spot where it was invoked.
6735 (b4_declare_parser_state_variables): New macro containing the parser
6736 state variables required by push mode.
6737 (struct yypstate): Replace all fields but yynew with
6738 b4_declare_parser_state_variables.
6739 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
6740 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
6741 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
6742 (yyparse or yypush_parse): For yyparse in pull mode, replace local
6743 parser state variable declarations with
6744 b4_declare_parser_state_variables.
6745 Don't initialize parser state variables when calling yypush_parse since
6746 yypstate_new already does that.
6747 Invoke the user's initial action only upon the first yypush_parse
6748 invocation.
6749 Remove all code that copies between the local parser state variables
6750 and the yypstate.
6751
6752 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6753
6754 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
6755 prevent a name collision in a future patch where these names will
6756 sometimes be #define'd.
6757 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
6758 since it no longer has the same name as the existing argument.
6759 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
6760
6761 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
6762 and Joel E. Denny <jdenny@ces.clemson.edu>
6763
6764 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
6765 that the argument is case-insensitive, and there's no `=' here.
6766 For the %skeleton entry, mention that %language is better.
6767 (Bison Options): Likewise for --language and --skeleton. Move the
6768 --skeleton entry so that the `Tuning the parser' section is sorted
6769 alphabetically on long options.
6770 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
6771 %language directive in detail here; cross-reference the %language
6772 documentation instead.
6773 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
6774 `%require "2.3b"' so that the example is always up-to-date.
6775 (Table of Symbols): Add entries for %language and %skeleton.
6776 * examples/extexi (normalize): Instead of replacing every %require
6777 argument with the current Bison version, just substitute for
6778 `@value{VERSION}'. This guarantees that we're testing what actually
6779 appears in the documentation.
6780 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
6781 rather than `@VERSION@'.
6782
6783 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6784
6785 * NEWS: Reword the %language news a bit, and put it earlier.
6786
6787 * src/getargs.c (skeleton_arg): Last arg is now location const *.
6788 Rewrite to simplify the logic.
6789 (language_argmatch): Likewise.
6790 (program_name): We now own this var.
6791 * src/getargs.h (struct bison_language): Use char[] rather than
6792 const char *.
6793
6794 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
6795 Java is supported.
6796 * src/complain.c (program_name): Remove decl; no longer needed.
6797 * src/main.c (program_name): Remove; now belongs to getargs.
6798
6799 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
6800
6801 * NEWS: Document %language.
6802
6803 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
6804
6805 * data/c-skel.m4, data/c++-skel.m4: New files.
6806 * data/glr.c: Complain on push parsers.
6807
6808 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
6809 over %skeleton.
6810 (Decl Summary): Document %language and %skeleton.
6811 (Command line): Document -L.
6812
6813 * examples/extexi: Rewrite %require directive.
6814 * examples/calc++/Makefile.am: Pass VERSION to extexi.
6815
6816 * src/files.c (compute_exts_from_gc): Look in language structure
6817 for .y extension.
6818 (compute_file_name_parts): Check whether .tab should be added.
6819 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
6820 (language, skeleton_arg, language_argmatch): New.
6821 (long_options): Add --language.
6822 (getargs): Use skeleton_arg, add -L/--language.
6823 * src/getargs.h: Include location.h.
6824 (struct bison_language, language, skeleton_arg, language_argmatch): New.
6825 * src/output.c (prepare): Pick default skeleton from struct language.
6826 Don't dispatch C skeletons here.
6827 * src/parse-gram.y (PERCENT_LANGUAGE): New.
6828 (prologue_declaration): Add "%language" rule, use skeleton_arg.
6829 * src/scan-gram.l ("%language"): New rule.
6830
6831 * tests/calc.at: Test %skeleton and %language.
6832 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
6833 (AT_GLR_IF): Look for %skeleton "glr.cc".
6834 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
6835 (AT_YACC_IF): Reject %language.
6836
6837 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6838
6839 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
6840 since it wasn't used; only the typedef name 'semantic_type' is needed.
6841 Also, omit trailing white space.
6842
6843 * bootstrap: Sync from coreutils.
6844 (gnulib_extra_files): Add build-aux/announce.gen.
6845 (slurp): Adjust .gitignore files like .cvsignore files.
6846 * build-aux/announce-gen: Remove from CVS, since bootstrap
6847 now creates this.
6848
6849 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
6850
6851 Make %push-parser imply %pure-parser. This fixes several bugs; see
6852 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
6853 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
6854 pure_parser = true.
6855 * data/push.c: Don't bother testing b4_push_if when deciding whether
6856 to expand b4_declare_parser_variables globally.
6857 (yypush_parse): Likewise in here.
6858
6859 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
6860 (yy_reduce_print): Reformat M4 for readability.
6861
6862 2006-12-15 Bob Rossi <bob@brasko.net>
6863 and Joel Denny <jdenny@ces.clemson.edu>
6864
6865 * data/push.c (yypstate): Add typedef, and update all uses of
6866 struct yypstate to just yypstate.
6867 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
6868
6869 2006-12-14 Bob Rossi <bob@brasko.net>
6870
6871 * data/push.c (yypush_parse): Declare prototype regardless of
6872 %locations option.
6873
6874 2006-12-14 Bob Rossi <bob@brasko.net>
6875
6876 * data/push.c (yyparse): Remove the prototype and the #define when in
6877 push-parser mode.
6878
6879 2006-12-13 Bob Rossi <bob@brasko.net>
6880
6881 * data/push.c (yypstate_init): Rename to...
6882 (yypstate_new): ... this and use b4_c_function_def.
6883 (yypstate_delete): New.
6884 (yypush_parse): Change parameters yynval and yynlloc to be const.
6885 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
6886 yypstate_delete functions.
6887
6888 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
6889
6890 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
6891 strange test case titles. Reported by Bob Rossi.
6892
6893 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
6894
6895 * TODO: Add pointer to Sylvain Schmitz's work on static detection
6896 of potential ambiguities in GLR grammers.
6897
6898 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
6899
6900 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
6901 `bison ', use m4_index instead of m4_substr since chopping up a string
6902 containing M4-special characters causes problems here.
6903
6904 Fix a couple of bugs related to special characters in user-specified
6905 file names, and make it easier for skeletons to compute output file
6906 names with the same file name prefix as Bison-computed output file
6907 names.
6908 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
6909 b4_parser_file_name and b4_spec_defines_file instead of
6910 @output_parser_name@ and @output_header_name@, which are now redundant.
6911 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
6912 b4_parser_file_name, b4_spec_defines_file, and the new
6913 @basename(FILENAME@) instead of @output_parser_name@ and
6914 @output_header_name@, which inappropriately escaped the file names as
6915 C string literals.
6916 * src/files.c (all_but_ext): Remove static qualifier.
6917 (compute_output_file_names): Move `free (all_but_ext)' to...
6918 (output_file_names_free): ... here since all_but_ext is needed later.
6919 * src/files.h (all_but_ext): Extern.
6920 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
6921 exactly what MUSCLE_INSERT_STRING used to do.
6922 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
6923 characters are escaped properly.
6924 * src/output.c (prepare): Define muscle file_name_all_but_ext as
6925 all_but_ext.
6926 For pkgdatadir muscle, maintain previous functionality by using
6927 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
6928 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
6929 digraphs would never be expanded. Hopefully no one has M4-special
6930 characters in his Bison installation path.
6931 * src/scan-skel.l: Don't parse @output_header_name@ and
6932 @output_parser_name@ anymore since they're now redundant.
6933 In @output, use decode_at_digraphs.
6934 Parse a new @basename command that invokes last_component.
6935 (decode_at_digraphs): New.
6936 (BASE_QPUTS): Remove unused.
6937 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
6938 (Output file name): New tests.
6939
6940 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
6941
6942 Warn about output files that are generated by the skeletons and that
6943 conflict with other output files.
6944 * data/glr.c: Don't generate the header file here when glr.cc does.
6945 * src/files.c (file_names, file_names_count): New static globals.
6946 (compute_output_file_names): Invoke output_file_name_check for files
6947 not generated by the skeletons and remove existing checks.
6948 (output_file_name_check): New function that warns about conflicting
6949 output file names.
6950 (output_file_names_free): Free file_names.
6951 * src/files.h (output_file_name_check): Declare.
6952 * src/scan-skel.l: Invoke output_file_name_check for files generated by
6953 the skeletons.
6954 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
6955 (Conflicting output files): New tests.
6956
6957 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6958
6959 * doc/bison.texinfo: Fix a couple of typos.
6960
6961 2006-12-08 Bob Rossi <bob@brasko.net>
6962
6963 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
6964 Rename to...
6965 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
6966 update all uses.
6967 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
6968 (yypush_parse): Rename yypvars argument to yyps and remove redundant
6969 local pv.
6970 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
6971 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
6972
6973 2006-12-07 Bob Rossi <bob@brasko.net>
6974 and Joel Denny <jdenny@ces.clemson.edu>
6975
6976 * data/push.c (yypvarsinit): Change return type from void* to struct
6977 yypvars*. No longer cast to void* on return.
6978 (struct yypvars): Remove yylen since it need not be remembered between
6979 yypushparse invocations.
6980 (yypushparse): Don't copy between yylen and pv->yylen.
6981
6982 2006-12-05 Bob Rossi <bob@brasko.net>
6983
6984 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
6985 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
6986 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
6987 (struct yypvars): Remove b4_declare_parser_variables.
6988 (yypvarsinit): Remove init code for removed variables.
6989 (global scope): Do not declare b4_declare_parser_variables if
6990 push or pure mode.
6991 (yypushparse): Add b4_declare_parser_variables.
6992 Init new local variables, and remove init code for removed
6993 yypvars variables.
6994 (yyparse): Delete.
6995 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
6996 and yyparse for other modes.
6997 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
6998 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
6999 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
7000 (AT_PURE_LEX_IF): True if pure or push parser.
7001
7002 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
7003
7004 Document Yacc prologue alternatives and default %destructor's and
7005 %printer's as experimental. Don't mention Java yet. Discussed at
7006 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
7007 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
7008 (2.3a): Annotate this entry to say the old forms of these features were
7009 also experimental.
7010 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
7011 Table of Symbols): Say they're experimental. Comment out any mention
7012 of Java (we'll want this back eventually).
7013
7014 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
7015
7016 Support a file name argument to %defines. Deprecate `=' in
7017 %file-prefix, %name-prefix, and %output. Discussed at
7018 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
7019 * NEWS (2.3a+): Mention.
7020 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
7021 form of %defines, and remove `=' from entries for %file-prefix,
7022 %name-prefix, and %output.
7023 * src/parse-gram.y (prologue_declaration): Implement.
7024 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
7025 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
7026 all but one occurrence of %name-prefix.
7027 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
7028 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
7029 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
7030 occurrence of each of %file-prefix and %output. Add check for %defines
7031 with argument.
7032 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
7033 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
7034 Remove the `=' from %output.
7035
7036 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
7037
7038 Don't escape $ in test case titles since Autoconf 2.61 now does that
7039 correctly.
7040 * tests/actions.at (Default %printer and %destructor are not for error
7041 or $undefined): Here.
7042 (Default %printer and %destructor are not for $accept): Here.
7043 * tests/input.at (Invalid $n and @n): Here.
7044
7045 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
7046
7047 Rename <!> to <>. Discussed starting at
7048 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
7049 * NEWS (2.3a+): Update.
7050 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
7051 Update.
7052 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
7053 * src/scan-gram.l (INITIAL): Implement.
7054 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
7055 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
7056 comment.
7057 * tests/actions.at (Default tagless %printer and %destructor,
7058 Default tagged and per-type %printer and %destructor,
7059 Default %printer and %destructor are not for error or $undefined,
7060 Default %printer and %destructor are not for $accept,
7061 Default %printer and %destructor for mid-rule values): Update.
7062 * tests/input.at (Default %printer and %destructor redeclared,
7063 Unused values with default %destructor): Update.
7064
7065 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
7066
7067 Don't let %prec take a nonterminal.
7068 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
7069 token.
7070 * tests/input.at (%prec takes a token): New test checking that %prec
7071 won't take a nonterminal.
7072
7073 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7074
7075 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
7076 it was double-quoted.
7077 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
7078 grammar is maintained with Bison's highest standards.
7079 * src/getargs.c: Fix some typos in Doxygen comments.
7080
7081 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7082
7083 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
7084 later. Reported by Paul Eggert in
7085 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
7086 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
7087 * src/scan-code.l (translate_action): Don't bother invoking
7088 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
7089 (code_scanner_free): Instead of invoking
7090 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
7091 which frees more.
7092 * src/scan-gram.l (gram_scanner_free): Likewise.
7093 * src/scan-skel.l (scan_skel): Likewise.
7094
7095 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
7096
7097 * src/files.c (tr): Change return type to void.
7098 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
7099 has been called previously for the same key.
7100 (muscle_find): Return storage instead of value so that
7101 --enable-gcc-warnings doesn't produce warnings that the return discards
7102 const. aver that the value and storage are the same since storage
7103 could potentially be NULL when value is not.
7104 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
7105 same as 0.
7106
7107 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7108
7109 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
7110 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
7111 us a slightly cleaner distribution, and also works.
7112 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
7113 gnulib changes.
7114
7115 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
7116 and Paul Eggert <eggert@cs.ucla.edu>
7117
7118 Don't let Bison leak memory except when it complains.
7119 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
7120 (spec_defines_file, dir_prefix): Now char *, not const char *,
7121 since they are freed.
7122 * src/files.c: Likewise.
7123 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
7124 Likewise.
7125 (tr): Now operates in-place. All uses changed.
7126 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
7127 values.
7128 (compute_file_name_parts, compute_output_file_names): Don't store
7129 read-only data in variables that will be freed.
7130 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
7131 src_extension, and header_extension.
7132 (output_file_names_free): New public function to free
7133 spec_verbose_file, spec_graph_file, spec_defines_file,
7134 parser_file_name, and dir_prefix.
7135 * src/getargs.c (getargs): Don't store read-only data in variables that
7136 will be freed.
7137 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
7138 (which previously existed but was unused), and quotearg_free.
7139 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
7140 * src/muscle_tab.c: Likewise.
7141 (muscle_entry): Make the value char const *,
7142 and add a new storage member that is char * and can be freed.
7143 (muscle_entry_free): New private function.
7144 (muscle_init): Use it instead of free.
7145 (muscle_insert, muscle_grow): Update and use new storage member.
7146 (muscle_code_grow): Free the string passed to muscle_grow
7147 since it's not needed anymore.
7148 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
7149 add a new `char *code' member.
7150 ("{...}"): Declare semantic type as code.
7151 * src/scan-code.h (translate_rule_action):
7152 (translate_symbol_action, translate_code, translate_action): Return
7153 `char const *' rather than `char *' since external code should not free
7154 these strings.
7155 * src/scan-code.l: Likewise.
7156 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
7157 which is "{...}" in the parser.
7158 * tests/Makefile.am (maintainer-check-valgrind): Set
7159 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
7160 Valgrind.
7161 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
7162 complain.
7163 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
7164 expecting a non-zero exit status sets --leak-check=summary and
7165 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
7166 this case, and we don't want to hear about it.
7167
7168 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7169
7170 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
7171 instead of from the template, to simplify configuration a bit.
7172 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
7173 and m4/wint_t.m4, as they are needed with the latest gnulib.
7174
7175 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7176
7177 Disable unset/unused mid-rule value warnings by default, and recognize
7178 --warnings=midrule-values to enable them. Discussed starting at
7179 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
7180 * NEWS (2.3a+): Mention.
7181 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
7182 warnings): Add entry for midrule-values subargument.
7183 * src/reader.c (symbol_should_be_used): Don't return true just because
7184 the value is a set/used mid-rule value unless
7185 --warnings=midrule-values was specified.
7186 * tests/input.at (Unused values, Unused values before symbol
7187 declarations): Run tests with and without --warnings=midrule-values.
7188
7189 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
7190 than LIST_FREE directly.
7191
7192 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7193
7194 Finish implementing --warnings=error, which should not be implied by
7195 --warnings=all (or by its synonyms -W and --warnings without
7196 subarguments).
7197 * src/complain.c (set_warning_issued): New function to report that
7198 warnings are being treated as errors and to record an error if so.
7199 Invoke...
7200 (warn_at, warn): ... here.
7201 * src/getargs.c (warnings_args, warnings_types): Reorder so that
7202 "error - warnings are errors" does not appear above "all - all of the
7203 above".
7204 (getargs): For -W and --warnings without subarguments, don't let
7205 FLAGS_ARGMATCH set warnings_error in warnings_flag.
7206 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
7207
7208 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7209
7210 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
7211 empty subargument list. For example: `bison --warnings= parser.y'.
7212
7213 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7214
7215 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
7216 the parser header file so that gcc doesn't warn.
7217
7218 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7219
7220 Split the default %destructor/%printer into two kinds: <*> and <!>.
7221 Discussed starting at
7222 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
7223 * NEWS (2.3a+): Mention.
7224 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
7225 previous change today related to mid-rules.
7226 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
7227 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
7228 (TYPE_TAG_ANY): Add as <*>.
7229 (TYPE_TAG_NONE): Add as <!>.
7230 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
7231 for <*> and <!>.
7232 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
7233 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
7234 * src/symlist.c (symbol_list_default_new): Split into tagged and
7235 tagless versions.
7236 (symbol_list_destructor_set, symbol_list_printer_set): Split
7237 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
7238 SYMLIST_DEFAULT_TAGLESS.
7239 * src/symlist.h: Update symbol_list_default*_new prototypes.
7240 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
7241 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
7242 * src/symtab.c (default_destructor, default_destructor_location,
7243 default_printer, default_printer_location): Split each into tagged and
7244 tagless versions.
7245 (symbol_destructor_get, symbol_destructor_location_get,
7246 symbol_printer_get, symbol_printer_location_get): Implement tagged
7247 default and tagless default cases.
7248 (default_destructor_set, default_printer_set): Split each into tagged
7249 and tagless versions.
7250 * src/symtab.h: Update prototypes.
7251 * tests/actions.at (Default %printer and %destructor): Rename to...
7252 (Default tagless %printer and %destructor): ... this, and extend.
7253 (Per-type %printer and %destructor): Rename to...
7254 (Default tagged and per-type %printer and %destructor): ... this, and
7255 extend.
7256 (Default %printer and %destructor for user-defined end token): Extend.
7257 (Default %printer and %destructor are not for error or $undefined):
7258 Update.
7259 (Default %printer and %destructor are not for $accept): Update.
7260 (Default %printer and %destructor for mid-rule values): Extend.
7261 * tests/input.at (Default %printer and %destructor redeclared): Extend.
7262 (Unused values with default %destructor): Extend.
7263
7264 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7265
7266 Don't apply the default %destructor/%printer to an unreferenced midrule
7267 value. Mentioned at
7268 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
7269 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
7270 like $@n instead of just @n so that the default %destructor/%printer
7271 logic doesn't see them as user-defined symbols.
7272 (symbol_is_dummy): Check for both forms of the name.
7273 * src/reader.c (packgram): Remove the `$' from each midrule symbol
7274 name for which the midrule value is referenced in any action.
7275 * tests/actions.at (Default %printer and %destructor for mid-rule
7276 values): New test.
7277 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
7278 for change to dummy symbol names.
7279
7280 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7281
7282 Warn about unset midrule $$ if the corresponding $n is used.
7283 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
7284 $n usage.
7285 (packgram): Before invoking grammar_rule_check on any rule, make sure
7286 all actions have already been scanned in order to set `used' flags.
7287 Otherwise, checking that a midrule's $$ is set will not always work
7288 properly because the midrule check must forward-reference the midrule's
7289 parent rule.
7290 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
7291 warning.
7292
7293 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7294
7295 More improvements to the documentation of the prologue alternatives:
7296 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
7297 Bison manual.
7298 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
7299 some text to clarify the relative importance of the new directives and
7300 to show how these directives may be viewed as code labels.
7301
7302 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
7303
7304 Similar to the recently removed %before-header, add %code-top as the
7305 alternative to the pre-prologue. Mentioned at
7306 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
7307 Also, let the prologue alternatives appear in the grammar section.
7308 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
7309 (prologue_declaration): Move the existing prologue alternatives to...
7310 (grammar_declaration): ... here and add %code-top.
7311 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
7312
7313 Clean up and extend documentation for the prologue alternatives.
7314 * NEWS (2.3a+): Describe prologue alternatives.
7315 * doc/bison.texinfo (Prologue): Move discussion of prologue
7316 alternatives to...
7317 (Prologue Alternatives): ... this new section, and extend it to discuss
7318 all 4 directives in detail.
7319 (Table of Symbols): Clean up discussion of prologue alternatives and
7320 add %code-top.
7321
7322 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7323
7324 DJGPP specific issues.
7325
7326 * djgpp/config.bat: config.hin has been moved to lib. Adjust
7327 config.bat accordingly.
7328 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
7329 * djgpp/config.site: Likewise.
7330
7331 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
7332
7333 Replace %*-header with %provides, %requires, %code. See discussion at
7334 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
7335
7336 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
7337 (b4_user_start_header): Remove.
7338 * data/glr.c: Use new macros instead of b4_*start_header
7339 and b4_*end_header.
7340 * data/glr.cc: Likewise.
7341 * data/lalr1.cc: Likewise.
7342 * data/push.c: Likewise.
7343 * data/yacc.c: Likewise.
7344
7345 * doc/bison.texinfo: Remove %before-header, rename
7346 %{start,end,after}-header to %requires, %provides, %code.
7347
7348 * src/parse-gram.y: Likewise (also rename token names accordingly).
7349 * src/scan-gram.l: Likewise.
7350 * tests/actions.at: Likewise.
7351
7352 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
7353
7354 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
7355 Problem reported by Joel E. Denny.
7356
7357 2006-10-14 Jim Meyering <jim@meyering.net>
7358
7359 (Sync from coreutils.)
7360 Work also when the working directory (with e.g. coreutils sources)
7361 is version controlled with git, rather than CVS.
7362 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
7363 rather than CVS.
7364 In messages and comments, say e.g., "checked-out sources",
7365 rather than "CVS sources".
7366 (version_controlled_file): New function. Work for git as well as
7367 for CVS. Don't use grep's -q option.
7368 (slurp): Call it here, in place of CVS-specific code.
7369
7370 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
7371
7372 Fix testsuite for ./configure --enable-gcc-warnings:
7373 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
7374 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
7375 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
7376 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
7377 * test/regression.at (Diagnostic that expects two alternatives):
7378 Likewise.
7379
7380 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7381
7382 * bootstrap.conf (gnulib_modules): Add config-h.
7383 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
7384 worry about HAVE_CONFIG_H.
7385 * lib/abitset.c: Likewise.
7386 * lib/bitset.c: Likewise.
7387 * lib/bitset_stats.c: Likewise.
7388 * lib/bitsetv-print.c: Likewise.
7389 * lib/bitsetv.c: Likewise.
7390 * lib/ebitset.c: Likewise.
7391 * lib/get-errno.c: Likewise.
7392 * lib/lbitset.c: Likewise.
7393 * lib/subpipe.c: Likewise.
7394 * lib/timevar.c: Likewise.
7395 * lib/vbitset.c: Likewise.
7396 * lib/bitset.c: Include "bitset.h" first, to test interface.
7397 * lib/bitset_stats.c: Include "bitset_stats.h" first.
7398 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
7399 * lib/bitsetv.c: Include "bitsetv.h" first.
7400 * lib/get-errno.c: Include "get-errno.h" first.
7401 * m4/.cvsignore: Add config-h.m4.
7402 * tests/actions.at (Default %printer and %destructor for ...):
7403 Adjust expected line numbers in output to reflect removal of #if
7404 HAVE_CONFIG_H lines.
7405 * tests/glr-regression.at (Missed %merge type warnings when ...):
7406 Likewise.
7407 * tests/regression.at (Braced code in declaration in rules section):
7408 Likewise.
7409 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
7410 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
7411 Include <config.h> unconditionally.
7412
7413 * bootstrap: Sync from coreutils, as follows:
7414
7415 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7416
7417 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
7418 variable was sometimes used without being initialized. This
7419 messed up the installation of the INSTALL file in some cases.
7420
7421 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7422
7423 * bootstrap (usage, main program, symlink_to_gnulib): Add option
7424 --copy. Inspired by a suggestion from Bruno Haible.
7425
7426 2006-10-03 Jim Meyering <jim@meyering.net>
7427
7428 * bootstrap: Undo last change to this file, since now gnulib-tool
7429 sticks with the automake default in generating dependencies.
7430
7431 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7432
7433 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
7434 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
7435
7436 * doc/bison.1: Add copyright notice.
7437
7438 * data/glr.c: Don't include <stdarg.h>; not used.
7439
7440 * NEWS: The -g and --graph options now output graphs in Graphviz
7441 DOT format, not VCG format.
7442 * doc/bison.1: Likewise.
7443 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
7444 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
7445 of this change in
7446 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
7447 * TODO: Remove Graphviz entry.
7448 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
7449 remove vcg.c, vcg.h, vcg_defaults.h.
7450 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
7451 * src/graphviz.c, src/graphviz.h: New files.
7452 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
7453 * src/files.h: Make comment more generic.
7454 * src/main.c (main): Likewise.
7455 * src/print_graph.h: Likewise.
7456 * src/getargs.c (usage): Make usage description more generic.
7457 * src/print_graph.c: Include graphviz.h rather than vcg.h.
7458 (static_graph, fgraph): Remove. All uses changed to pass
7459 arguments instead of sharing a static var.
7460 (print_core, print_actions, print_state, print_graph):
7461 Output graphviz format rather than VCG format.
7462 * tests/.cvsignore: Remove *.vcg; add *.dot.
7463 * tests/output.at: Expect *.dot files, not *.vcg files.
7464
7465 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
7466 accommodates the 2006-10-08 change.
7467
7468 2006-10-11 Bob Rossi <bob@brasko.net>
7469
7470 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
7471 (b4_yyssa, b4_yyerror_range): New macros.
7472 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
7473 (yypvarsinit): Remove init of removed fields.
7474 (yypushparse): Remove use of removed fields; use new macros instead.
7475
7476 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7477
7478 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
7479 in a push parser. Reindent slightly to match yacc.c better.
7480
7481 2006-10-11 Bob Rossi <bob@brasko.net>
7482
7483 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
7484 yymsg_alloc fields.
7485 (yypvarsinit, yypushparse): Remove init of removed fields.
7486 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
7487
7488 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7489
7490 * THANKS: Add Paolo Bonzini and Bob Rossi.
7491
7492 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
7493
7494 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
7495 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
7496 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
7497 b4_define_user_cde and uses): Remove.
7498 (b4_comment, b4_prefix, b4_sync_start): New.
7499 * data/bison.m4: New file, with most of the content removed from c.m4.
7500 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
7501 * src/output.c (output_skeleton): Pass bison.m4.
7502 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
7503 only if specified.
7504
7505 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
7506
7507 Fix test failure reported by Tom Lane in
7508 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
7509 and try to make such failures easier to catch in the future.
7510 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
7511 that's now the caller's responsibility.
7512 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
7513 Set yychar = YYEOF if it's negative.
7514 * tests/actions.at (yylex): Abort if asked to read past EOF.
7515 * tests/conflicts.at (yylex): Likewise.
7516 * tests/cxx-type.at (yylex): Likewise.
7517 * tests/glr-regression.at (yylex): Likewise.
7518 * tests/input.at (yylex): Likewise.
7519 * tests/regression.at (yylex): Likewise.
7520 * tests/torture.at (yylex): Likewise.
7521
7522 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
7523
7524 Fix problems with translating English-language diagnostics.
7525 * bootstrap: Fix bug introduced in recent bootstrap changes, with
7526 respect to bison-runtime pot generation. The YY_ stuff
7527 wasn't being captured.
7528 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
7529 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
7530 * runtime-po/POTFILES.in: Add data/push.c.
7531
7532 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
7533
7534 Merge bootstrap changes from coreutils.
7535
7536 2006-09-28 Jim Meyering <jim@meyering.net>
7537
7538 Automatically generated dependencies are important even
7539 when all of the sources in a directory come from gnulib.
7540 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
7541 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
7542
7543 2006-09-23 Jim Meyering <jim@meyering.net>
7544
7545 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
7546
7547 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7548
7549 * bootstrap: Add support for --force.
7550 (usage): New function. Describe usage less tersely.
7551 (CVS_only_file): New var.
7552
7553 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
7554
7555 * data/push.c (YYPUSH_MORE): Make it an enum instead.
7556 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
7557 Adjust white space and comments to match GNU style better.
7558
7559 2006-09-20 Bob Rossi <bob@brasko.net>
7560
7561 * data/push.c (yyresult_get): Remove function.
7562 (YYPUSH_MORE): Add #define.
7563 (yypushparse): Modify return value.
7564
7565 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7566
7567 * stamp-h.in: Remove; no longer needed.
7568 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
7569 Remove config.h, config.hin, intl (no longer created).
7570 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
7571 stamp-h1.
7572
7573 Sync bootstrap from coreutils, as follows:
7574
7575 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
7576
7577 * bootstrap (symlink_to_gnulib): New function.
7578 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
7579 to copies-of-gnulib.
7580 (cp_mark_as_generated, slurp, gnulib_files):
7581 Avoid making a copy if it's the same as the old version.
7582 (gnulib_files): Add support for this variable (used by Bison).
7583
7584 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7585
7586 * src/getargs.c (usage): Rework to use conventions similar to
7587 coreutils, to make translation a bit easier and the code a bit
7588 smaller. Problem reported by Tim Van Holder.
7589
7590 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
7591
7592 Use some of gnulib's new modules, taken from coreutils.
7593
7594 * bootstrap: Sync from coreutils, except add support for gnulib_files.
7595 * bootstrap.conf: New file.
7596 (gnulib_modules): Add configmake, inttypes, unistd.
7597 (XGETTEXT_OPTIONS): Add complain, complain_at,
7598 fatal, fatal_at, warn, warn_at, unexpected_end.
7599 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
7600 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
7601 (gl_EARLY): Add.
7602 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
7603 (gl_INIT): Add
7604 (GNULIB_AUTOCONF_SNIPPET): Remove.
7605 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
7606 the pickiest.
7607 * lib/.cvsignore: Add inttypes_.h.
7608 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
7609 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
7610 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
7611 no-longer-necessary initializations.
7612 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
7613 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
7614 use the unistd module.
7615 * src/system.h: Likewise.
7616 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
7617 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
7618 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
7619 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
7620 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
7621 * src/system.h: Include inttypes.h unconditionally, now that we
7622 use the inttypes module. Don't bother to include stdint.h, since
7623 inttypes.h now does that for us.
7624 (LOCALEDIR): Remove, now that we use the configmake module.
7625 * src/getargs.c: Include configmake.h.
7626 * src/main.c: Likewise.
7627 * src/output.c: Likewise.
7628 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
7629 not from $abs_top_builddir, since config.h moved.
7630
7631
7632 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
7633 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
7634
7635 * src/parse-gram.y (symbol_declaration): Don't put statements
7636 before declarations; it's not portable to C89.
7637 * src/scan-code.l (handle_action_at): Likewise.
7638
7639 * src/scan-code.l: Always initialize braces_level; the old code
7640 left it uninitialized and therefore had undefined behavior.
7641
7642 Don't attempt to redefine 'assert', since it runs afoul of
7643 systems where standard headers (mistakenly) include <assert.h>.
7644 Instead, define and use our own alternative, called 'aver'.
7645 * src/reader.c: Don't include assert.h, since we no longer
7646 use assert.
7647 * src/scan-code.l: Likewise.
7648 * src/system.h (assert): Remove, replacing with....
7649 (aver): New function, taking a bool arg. All uses changed.
7650 * src/tables.c (pack_vector): Ensure that aver arg is bool,
7651 not merely an integer.
7652
7653 2006-09-15 Bob Rossi <bob@brasko.net>
7654
7655 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
7656 * data/c.m4 (YYPUSH): New.
7657 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
7658 * src/getargs.c (push_parser): New var.
7659 * src/getargs.h (push_parser): New declaration.
7660 * src/output.c (prepare): Add macro insertion of `push_flag'.
7661 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
7662 (prologue_declaration): Parse %push-parser.
7663 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
7664 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
7665 list of removed lines from the traces observed.
7666 (AT_CHECK_CALC_LALR): Added push parser tests.
7667
7668 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
7669
7670 * NEWS: Version 2.3a.
7671 * configure.ac (AC_INIT): Likewise.
7672
7673 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
7674 "#define YYSTYPE int" that caused "make maintainer-check" to fail
7675 due to header ordering dependencies. I don't know why the #define
7676 was there.
7677
7678 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
7679 runtime cost when YYDEBUG is not defined, and so that some tests
7680 that used to fail now work. Problem and initial suggestion by
7681 Paolo Bonzini.
7682 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
7683 * data/glr.cc (b4_parser_class_name):
7684 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
7685 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
7686 (yydebug_) [YYDEBUG]: New member.
7687 (yycdebug_): Now defined only if YYDEBUG.
7688 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
7689 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
7690 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
7691 if YYYDEBUG.
7692 (debug_stream, set_debug_stream, debug_level, set_debug_level):
7693 Define only if YYDEBUG.
7694 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
7695 set_debug_level.
7696 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
7697 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
7698 AT_CHECK_CALC_GLR_CC that are working now.
7699
7700 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
7701
7702 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
7703 We don't need them in glr.cc, and glr.c defines them.
7704 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
7705 assumes that defining it to anything is the same as defining
7706 it to 1. Problem reported by Paolo Bonzini.
7707
7708 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
7709
7710 * data/c.m4 (b4_null, b4_case): Define.
7711 * src/output.c (prepare_symbols): Use b4_null.
7712 (user_actions_output): Use b4_case.
7713
7714 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
7715
7716 * data/glr.c (b4_shared_declarations): Put start-header first,
7717 before any #includes that we generate, so that feature-test
7718 macros work. Problem reported by Michael Deutschmann in
7719 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
7720 * data/lalr1.cc: Likewise.
7721 * doc/bison.texinfo (Prologue): Document that feature-test macros
7722 should be defined before any Bison declarations.
7723 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
7724 that depend on location.hh after, not before, Bison decls, since
7725 we now include location.hh after the first user prologue.
7726
7727 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
7728 Sander Brandenburg in
7729 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
7730 Also, fix minor white space and comment issues.
7731 (Prologue): Mention that it's better to define feature-test macros
7732 before Bison declarations. Problem reported by Michael Deutschmann.
7733
7734 * README-cvs: Fix typo: "&" should be "&&". Problem reported
7735 by Jim Meyering.
7736 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
7737 This adjusts to recent gnulib changes.
7738
7739 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7740
7741 Finish implementation of per-type %destructor/%printer. Discussed
7742 starting at
7743 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
7744 and
7745 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
7746 * NEWS (2.3+): Add a description of this feature to the default
7747 %destructor/%printer description.
7748 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
7749 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
7750 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
7751 list node contains a semantic type.
7752 * src/symtab.c, src/symtab.h: Extend with a table that associates
7753 semantic types with their %destructor's and %printer's.
7754 (semantic_type_from_uniqstr, semantic_type_get,
7755 semantic_type_destructor_set, semantic_type_printer_set): New functions
7756 composing the public interface of that table.
7757 (symbol_destructor_get, symbol_destructor_location_get,
7758 symbol_printer_get, symbol_printer_location_get): If there's no
7759 per-symbol %destructor/%printer, look up the per-type before trying
7760 the default.
7761 * tests/actions.at (Per-type %printer and %destructor): New test case.
7762 * tests/input.at (Default %printer and %destructor redeclared):
7763 Extend to check that multiple occurrences of %symbol-default in a
7764 single %destructor/%printer declaration is an error.
7765 (Per-type %printer and %destructor redeclared, Unused values with
7766 per-type %destructor): New test cases.
7767
7768 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7769
7770 Require default %destructor/%printer to be declared using
7771 %symbol-default instead of an empty symbol list, and start working on
7772 new per-type %destructor/%printer. Discussed at
7773 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
7774 * NEWS (2.3+): Add %symbol-default to example.
7775 * bison.texinfo (Freeing Discarded Symbols): Likewise.
7776 (Table of Symbols): Add entry for %symbol-default.
7777 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
7778 (generic_symlist, generic_symlist_item): New nonterminals for creating
7779 a list in which each item is a symbol, semantic type, or
7780 %symbol-default.
7781 (grammar_declaration): Use generic_symlist in %destructor and %printer
7782 declarations instead of symbols.1 or an empty list.
7783 (symbol_declaration, precedence_declaration, symbols.1): Update actions
7784 for changes to symbol_list.
7785 * src/reader.c: Update for changes to symbol_list.
7786 * src/scan-code.l: Likewise.
7787 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
7788 * src/symlist.c, src/symlist.h: Extend such that a list node may
7789 represent a semantic type or a %symbol-default in addition to just an
7790 ordinary symbol. Add switched functions for setting %destructor's and
7791 %printer's.
7792 * tests/actions.at, tests/input.at: Add %symbol-default to all default
7793 %destructor/%printer declarations.
7794
7795 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
7796
7797 Whether the default %destructor/%printer applies to a particular symbol
7798 isn't a question of whether the user *declares* that symbol (in %token,
7799 for example). It's a question of whether the user by any means
7800 *defines* the symbol at all (by simply using a char token, for
7801 example). $end is defined by Bison whereas any other token with token
7802 number 0 is defined by the user. The error token is always defined by
7803 Bison regardless of whether the user declares it with %token, but we
7804 may one day let the user define error as a nonterminal instead.
7805 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
7806 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
7807 the meaning of "user-defined".
7808 * tests/actions.at (Default %printer and %destructor for user-declared
7809 end token): Rename to...
7810 (Default %printer and %destructor for user-defined end token): ...
7811 this.
7812
7813 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
7814 computation of whether to apply the default, don't maintain a list of
7815 every Bison-defined symbol. Instead, just check for a first character
7816 of '$', which a user symbol cannot have, and check for the error token.
7817
7818 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
7819
7820 Don't apply the default %destructor or %printer to the error token,
7821 $undefined, or $accept. This change fits the general rule that the
7822 default %destructor and %printer are only for user-declared symbols,
7823 and it solves several difficulties that are described in the new test
7824 cases listed below.
7825 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
7826 * tests/actions.at (Default %printer and %destructor are not for error
7827 or $undefined, Default %printer and %destructor are not for $accept):
7828 New test cases.
7829
7830 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
7831
7832 Allow %start after the first rule.
7833 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
7834 when parsing the first rule.
7835 (check_and_convert_grammar): Search for it here after all grammar
7836 declarations have been parsed. Skip midrules, which have dummy LHS
7837 nonterminals.
7838 * src/symtab.c (symbol_is_dummy): New function.
7839 * src/symtab.h (symbol_is_dummy): Declare it.
7840 * tests/input.at (%start after first rule): New test.
7841
7842 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
7843
7844 Redo some of the previous commit: add back the ability to use
7845 non-aliased/undeclared string literals since it might be useful to
7846 those declaring %token-table.
7847 * src/reader.c (check_and_convert_grammar): Undo changes in previous
7848 commit: don't worry about complaints from symbols_pack.
7849 * src/symtab.c (symbol_new, symbol_class_set,
7850 symbol_check_alias_consistency): Undo changes in previous commit: count
7851 each string literal as a new symbol and token, assign it a symbol
7852 number, and don't complain about non-aliased string literals.
7853 (symbols_pack): Since symbol_make_alias still does not decrement symbol
7854 and token counts but does still set aliased tokens to the same number,
7855 symbol_pack_processor now leaves empty slots in the symbols array.
7856 Remove those slots.
7857 * tests/regression.at (Undeclared string literal): Remove test case
7858 added in previous commit since non-aliased string literals are allowed
7859 again.
7860 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
7861 remove unnecessary string literal declarations.
7862 * tests/sets.at (Firsts): Likewise.
7863
7864 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
7865
7866 Don't allow an undeclared string literal, but allow a string literal to
7867 be used before its declaration.
7868 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
7869 symbols_pack complained.
7870 * src/symtab.c (symbol_new): Don't count a string literal as a new
7871 symbol.
7872 (symbol_class_set): Don't count a string literal as a new token, and
7873 don't assign it a symbol number since symbol_make_alias does that.
7874 (symbol_make_alias): It's not necessary to decrement the symbol and
7875 token counts anymore. Don't assume that an alias declaration occurs
7876 before any uses of the identifier or string, and thus don't assert that
7877 one of them has the highest symbol number so far.
7878 (symbol_check_alias_consistency): Complain if there's a string literal
7879 that wasn't declared as an alias.
7880 (symbols_pack): Bail if symbol_check_alias_consistency failed since
7881 symbol_pack asserts that every token has been assigned a symbol number
7882 although undeclared string literals have not.
7883 * tests/regression.at (String alias declared after use, Undeclared
7884 string literal): New test cases.
7885 (Characters Escapes, Web2c Actions): Declare string literals as
7886 aliases.
7887 * tests/sets.at (Firsts): Likewise.
7888
7889 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
7890
7891 In the grammar scanner, STRING_FINISH unclosed constructs and return
7892 them to the parser in order to improve error messages.
7893 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
7894 SC_BRACED_CODE, SC_PROLOGUE): Implement.
7895 * tests/input.at (Unclosed constructs): New test case.
7896 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
7897 seen.
7898
7899 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
7900 unused global.
7901
7902 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
7903
7904 Handle string aliases for character tokens correctly.
7905 * src/symtab.c (symbol_user_token_number_set): If the token has an
7906 alias, check and set its alias's user token number instead of its own,
7907 which is set to indicate the alias. Previously, every occurrence of
7908 the character token in the grammar overwrote that alias indicator with
7909 the character code.
7910 * tests/input.at (String aliases for character tokens): New test.
7911
7912 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
7913
7914 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
7915
7916 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
7917
7918 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
7919 to prevent failures when building on older platforms.
7920 Check for autopoint failure.
7921 Set XGETTEXT_OPTIONS to values that check for C format strings,
7922 so that translators are warned about them (this also helps
7923 prevent core dumps).
7924
7925 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
7926 function, since it simplifies our code a bit.
7927
7928 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
7929 rather than -W, so we don't get bogus warnings about sign comparisons.
7930 Add -Wpointer-arith, since that warning is useful (it reports code
7931 that does not conform to C89 and that some compilers reject).
7932 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
7933 since it's no longer needed.
7934
7935 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
7936
7937 Clean up scanners a bit.
7938 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
7939 definitions so gcc won't warn when obstack_for_string is unused.
7940 * src/scan-code.l: config.h and system.h are already #include'd by
7941 scan-code-c.c, so get rid of them here.
7942 * src/scan-gram.l: Likewise.
7943 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
7944 definitions rather than duplicating the rest of it.
7945 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
7946
7947 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
7948
7949 Suppress signed/unsigned comparison warnings for yycheck.
7950 * data/c.m4 (b4_safest_int_type): New macro.
7951 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
7952 a signed int type, cast it to b4_safest_int_type first.
7953 * data/yacc.c: Likewise.
7954 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
7955 also overwritten.
7956
7957 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
7958
7959 * doc/bison.texinfo: Fix some typos.
7960
7961 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
7962
7963 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
7964 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
7965
7966 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
7967 the latest gnulib does this a different way.
7968 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
7969 translation was patched, so stop omitting it.
7970
7971 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
7972
7973 Enable declaration of default %printer/%destructor. Make the parser
7974 use these for all user-declared grammar symbols for which the user does
7975 not declare a specific %printer/%destructor. Thus, the parser uses it
7976 for token 0 if the user declares it but not if Bison generates it as
7977 $end. Discussed starting at
7978 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
7979 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
7980 and
7981 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
7982 * NEWS (2.3+): Mention.
7983 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
7984 declare a %destructor for a mid-rule's semantic value. It's just
7985 impossible to declare one specific to it.
7986 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
7987 code. Describe default %destructor form.
7988 * src/parse-gram.y (grammar_declaration): Parse default
7989 %printer/%destructor declarations.
7990 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
7991 and symbol_destructor_location_get rather than accessing the destructor
7992 and destructor_location members of struct symbol.
7993 (symbol_printers_output): Likewise but for %printer's.
7994 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
7995 again.
7996 * src/symtab.c (default_destructor, default_destructor_location,
7997 default_printer, default_printer_location): New static global
7998 variables to record the default %destructor and %printer.
7999 (symbol_destructor_get, symbol_destructor_location_get,
8000 symbol_printer_get, symbol_printer_location_get): New functions to
8001 compute the appropriate %destructor and %printer for a symbol.
8002 (default_destructor_set, default_printer_set): New functions to set the
8003 default %destructor and %printer.
8004 * src/symtab.h: Prototype all those new functions.
8005 * tests/actions.at (Default %printer and %destructor): New test to
8006 check that the right %printer and %destructor are called, that they're
8007 not called for $end, and that $$ and @$ work correctly.
8008 (Default %printer and %destructor for user-declared end token): New
8009 test to check that the default %printer and %destructor are called for
8010 a user-declared end token.
8011 * tests/input.at (Default %printer and %destructor redeclared, Unused
8012 values with default %destructor): New tests to check related grammar
8013 warnings and errors.
8014
8015 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8016
8017 Clean up handling of %destructor for the end token (token 0).
8018 Discussed starting at
8019 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
8020 and
8021 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
8022
8023 Make the skeletons consistent in how they pop the end token and invoke
8024 its %destructor.
8025 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
8026 state, which has token number 0, since this would invoke the
8027 %destructor for the end token.
8028 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
8029 until after shifting the end token, or else it won't be popped.
8030 * data/yacc.c (yyparse): Likewise.
8031
8032 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
8033 it's the end token. Upon termination, destroy an unshifted lookahead
8034 even when it's the end token.
8035 * data/lalr1.cc (yy::parser::parse): Likewise.
8036 * data/yacc.c (yyparse): Likewise.
8037
8038 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
8039 value warnings for the end token when the user gives the end token a
8040 %destructor.
8041
8042 * tests/actions.at (Printers and Destructors): Test all the above.
8043
8044 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
8045
8046 Update to latest gnulib and gettext versions.
8047 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
8048 Add fopen-safer.
8049 (gnulib_files): Add m4/warning.m4. Don't worry about files
8050 overwritten by autopoint.
8051 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
8052 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
8053 rejects them.
8054 Don't use autoreconf; instead, invoke autopoint etc. by hand,
8055 so that we can remove the intl files at a better time.
8056 (intl_files_to_remove): Remove aclocal.m4, since it gets
8057 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
8058 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
8059 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
8060 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
8061 Remove datarootdir hack; no longer needed.
8062 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
8063 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
8064 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
8065 strdup.h.
8066 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
8067 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
8068
8069 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
8070
8071 * bootstrap: Adjust to today's change to gnulib-tool by invoking
8072 it with --assume-autoconf='latest-stable'.
8073
8074 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
8075
8076 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
8077 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
8078 YYSTYPE' and `{'.
8079 * src/muscle_tab.h (muscle_grow): Replace the header comments with
8080 those from muscle_tab.c since the old ones are misleading.
8081
8082 2006-07-13 Akim Demaille <akim@epita.fr>
8083
8084 Support %define "KEY" {VALUE}.
8085 * src/scan-code.h, src/scan-code.l (translate_action)
8086 (translate_rule_action, translate_symbol_action, translate_code):
8087 Return char *, not const char *.
8088 * src/parse-gram.y (declaration): Rename as...
8089 (prologue_declaration): this.
8090 (string_content): Remove this nonterminal, use STRING.
8091 (braceless, content, content.opt): New nonterminal.
8092 Use them.
8093 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
8094 as value.
8095 * src/scan-gram.l (getargs.h): Don't include it.
8096
8097 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
8098
8099 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
8100 rather than a for-loop that declares a local bool variable. This
8101 should work around a compatibility problem with a Cray x1e C++
8102 compiler reported by Hung Nguyen in
8103 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
8104 The for-loop was introduced in the 2004-11-17 change but I don't
8105 know why it was needed.
8106
8107 2006-07-12 Akim Demaille <akim@epita.fr>
8108
8109 * data/c.m4: Comment changes.
8110
8111 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
8112
8113 * src/complain.c (error_message, ERROR_MESSAGE): New.
8114 To factor...
8115 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
8116 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
8117
8118 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8119
8120 * NEWS: Instead of %union, you can define and use your own union type
8121 YYSTYPE if your grammar contains at least one <type> tag.
8122 Your YYSTYPE need not be a macro; it can be a typedef.
8123 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
8124 (Union Decl, Decl Summary): Document this.
8125 * data/glr.c (YYSTYPE): Implement this.
8126 * data/glr.cc (YYSTYPE): Likewise.
8127 * data/lalr1.cc (YYSTYPE): Likewise.
8128 * data/yacc.c (YYSTYPE): Likewise.
8129 * src/output.c (prepare): Output tag_seen_flag.
8130 * src/parse-gram.y (declaration, grammar_declaration):
8131 Use 'union_seen' rather than 'typed' to determine whether
8132 %union has been seen, since grammars can now be typed without
8133 %union.
8134 (symbol_declaration, type.opt, symbol_def):
8135 Keep track of whether a tag has been seen.
8136 * src/reader.c (union_seen, tag_seen): New vars.
8137 (typed): remove.
8138 * src/reader.h (union_seen, tag_seen, typed): Likewise.
8139 * src/scan-code.l (untyped_var_seen): New variable.
8140 (handle_action_dollar): Adjust to above changes.
8141 (handle_action_dollar, handle_action_at):
8142 Improve overflow checking for outlandish numbers.
8143 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
8144 avoid new diagnostics generated by above changes.
8145 * tests/regression.at (YYSTYPE typedef): Add test to check
8146 for type tags without %union.
8147
8148 * src/symlist.c (symbol_list_length): Return int, not unsigned
8149 int, since callers expect int. This may need to get revisited
8150 once we have proper integer overflow checking.
8151
8152 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
8153 object is now static.
8154
8155 * src/getargs.c (flags_argmatch): Return void, not int,
8156 to pacify ./configure --enable-gcc-warnings.
8157
8158 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
8159 since last_string is already defined to FLEX_PREFIX (last_string).
8160
8161 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
8162
8163 Implement --warnings/-W.
8164 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
8165 replaced by...
8166 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
8167 Adjust callers.
8168 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
8169 (warnings_args, warnings_types): New.
8170 (getargs, short_options, long_options): Accept -W/--warnings.
8171 Sort the options by alphabetical order, upper case letter right
8172 before its lower case.
8173
8174 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
8175
8176 Change %merge result type clash warnings to errors. Discussed at
8177 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
8178 * src/reader.c (record_merge_function_type): Use complain_at.
8179 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8180 declared later): Update test case results.
8181
8182 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
8183
8184 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
8185 to be in alphabetical order.
8186 (trace_args): Spelling fixes.
8187
8188 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8189
8190 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
8191 so they don't collide with user-defined macros.
8192 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
8193 this was never guaranteed, and now that we're using gnulib stdint,
8194 which defines int_fast16_t to long int, the problem is exposed.
8195
8196 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
8197
8198 * data/c.m4 (b4_basename): Simplify a bit, since we don't
8199 need the full POSIX semantics (and weren't implementing them
8200 anyway).
8201
8202 Adjust to Autoconf 2.60 and today's gnulib.
8203 * bootstrap (gnulib_modules): Add stdint.
8204 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
8205 no longer copies it.
8206 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
8207 since stdint needs the former and wcwidth (which is now required
8208 by mbswidth) needs the latter.
8209 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
8210 work around a compatibility glitch between gettext 0.14.6 and
8211 Autoconf 2.60.
8212 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
8213 Do not check for uintptr_t, since new stdint module does the right
8214 thing.
8215 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
8216 Add stdint.h, stdint_.h, wcwidth.h.
8217 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
8218 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
8219 stdint.m4, wchar_t.m4, wcwidth.m4.
8220 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
8221 usual order for ../lib/*.h files.
8222 (file_name_split): Use last_component, not base_name, to adjust
8223 to gnulib changes.
8224 * src/parse-gram.h: Include <strverscmp.h> in the usual order
8225 for ../lib/*.h files.
8226 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
8227 Define unconditionally, since we now assume the stdint module.
8228 * src/scan-skel.l: Include <dirname.h>.
8229 (BASE_QPUTS): Use last_component, not base_name.
8230 * src/system.h: Include <unlocked-io.h> in the usual order
8231 for ../lib/*.h files. Include <stdint.h> unconditionally,
8232 since we now use the stdint module.
8233 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
8234 HAVE_UINTPTR_T, since we now use the stdint module.
8235 (base_name): Remove decl, since files now include <dirname.h>
8236 to get the decl.
8237
8238 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
8239
8240 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
8241 New, default to 1.
8242 * data/yacc.c, data/glr.c, data/location.cc: Use them.
8243 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
8244 default.
8245 * tests/calc.at: Adjust.
8246
8247 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
8248
8249 * data/c.m4 (b4_basename): New.
8250 (b4_syncline): Also output the location of its invocation (from
8251 the skeleton).
8252 (b4_user_action, b4_define_user_action, b4_user_actions)
8253 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
8254 (b4_user_stype): New.
8255 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
8256
8257 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8258
8259 In the grammar file, the first column is 1 not 0 on the first line as
8260 on every other line.
8261 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
8262 * tests/input.at (Torturing the Scanner): Update output.
8263
8264 * src/scan-gram.l (scanner_cursor): Declare it static.
8265
8266 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8267
8268 In warnings, say "previous declaration" rather than "first
8269 declaration".
8270 * src/symtab.c (redeclaration): Do that here.
8271 * src/reader.c (record_merge_function_type): In the case of a result
8272 type clash, report the previous declaration rather than the very first
8273 one in the grammar file.
8274 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8275 declared later): Add a third declaration to check this behavior.
8276 * tests/input.at (Incompatible Aliases): Update output.
8277
8278 2006-06-27 Akim Demaille <akim@epita.fr>
8279
8280 * doc/Doxyfile.in: New.
8281 * doc/Makefile.am: Use it.
8282 * src/lalr.h, src/symtab.h: Initial doxygenation.
8283
8284 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8285
8286 Don't miss %merge result type warnings just because the LHS types are
8287 declared after the %merge. This continues the effort of the previous
8288 patch.
8289 * src/reader.c (get_merge_function): Don't set the merger type yet.
8290 (record_merge_function_type): New function for setting the merger type
8291 and checking for clashes.
8292 (grammar_current_rule_merge_set): Set the location of the %merge for
8293 the current rule.
8294 (packgram): Invoke record_merge_function_type for each rule now that
8295 all symbol type declarations have been parsed.
8296 * src/reader.h (merger_list.type_declaration_location): New member
8297 storing the location of the first %merge from which the type for this
8298 merging function was derived.
8299 * src/symlist.h (symbol_list.merger_declaration_location): New member
8300 storing the location of a rule's %merge, if any.
8301 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8302 declared later): New test to catch the error fixed by the above patch.
8303
8304 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8305
8306 Get action warnings (grammar_rule_check) right even when symbol
8307 declarations appear after the rules. Discussed at
8308 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
8309 and
8310 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
8311 Don't mistake the type of $$ in a midrule to be that of its parent
8312 rule's $$.
8313 * src/reader.c (grammar_current_rule_end): Don't invoke
8314 grammar_rule_check yet since not all symbol declarations may have been
8315 parsed yet.
8316 (grammar_midrule_action): Likewise.
8317 Don't record whether the midrule's $$ has been used yet since actions
8318 haven't been translated yet.
8319 Record the midrule's parent rule and its RHS index within the parent
8320 rule.
8321 (grammar_current_rule_action_append): Don't translate the action yet
8322 since not all symbol declarations may have been parsed yet and, thus,
8323 warnings about types for $$, $n, @$, and @n can't be reported yet.
8324 (packgram): Translate the action and invoke grammar_rule_check now that
8325 all symbol declarations have been parsed.
8326 * src/scan-code.l (handle_action_dollar): Now that this is invoked
8327 after parsing the entire grammar file, the symbol list here in the case
8328 of a midrule is actually the midrule's empty RHS, so reference its
8329 parent rule's RHS where necessary.
8330 On the other hand, now that you can already know it's a midrule, you
8331 aren't forced to think $$ has the same type as its parent rule's $$.
8332 (handle_action_at): In the case of a midrule, reference the parent rule
8333 where necessary.
8334 * src/symlist.c (symbol_list_new): Initialize new midrule-related
8335 members.
8336 (symbol_list_length): Now that this is invoked after all rules have
8337 been parsed, a NULL symbol (rather than a NULL symbol list node)
8338 terminates a rule. symbol_list_print already does this correctly.
8339 * src/symlist.h (symbol_list.midrule_parent_rule,
8340 symbol_list.midrule_parent_rhs_index): New members so that midrules can
8341 remember their relationships with their parents.
8342 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
8343 fixed by the above patch.
8344 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
8345 implementing...
8346 (Unused values): ... this old test case and...
8347 (Unused values before symbol declarations): ... this new test case.
8348 This one is the same as `Unused values' except that all symbol
8349 declarations appear after the rules in order to catch the rest of the
8350 errors fixed by the above patch.
8351
8352 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8353
8354 More cleanup.
8355 * src/reader.c (current_rule): Declare it static since it's no longer
8356 used outside this file.
8357 (grammar_current_rule_action_append): Remove redundant arguments from
8358 translate_rule_action invocation.
8359 * src/reader.h (current_rule): Remove this unused extern.
8360 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
8361 * src/scan-code.l (translate_rule_action): Likewise.
8362
8363 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
8364
8365 Clean up yesterday's patch.
8366 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
8367 to...
8368 * src/reader.c (grammar_current_rule_action_append): ... here for
8369 consistency with grammar_current_rule_symbol_append.
8370 * tests/regression.at (Braced code in declaration in rules section):
8371 Make yyerror and yylex static as usual.
8372
8373 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
8374
8375 Fix bug that mistakes braced code in a declaration in the rules section
8376 to be a rule action. Mentioned at
8377 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
8378 * src/scan-gram.l: Move midrule action detection from the start of the
8379 scanning of any braced code to...
8380 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
8381 action. For readability, use $2 and @2 rather than the equivalent
8382 global variables.
8383 * tests/regression.at (Braced code in declaration in rules section):
8384 New test to catch the error fixed by the above patch.
8385
8386 Work on code readability some.
8387 * src/scan-code.l (current_rule): Get rid of this misleading and
8388 redundant declaration: it's actually extern'ed in reader.h.
8389 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
8390 translate_action): Add a rule argument and use it instead of the global
8391 current_rule.
8392 (translate_rule_action): This already receives current_rule through an
8393 argument, so pass it on to translate_action instead of assigning
8394 current_rule to current_rule.
8395 (translate_symbol_action, translate_code): Pass rule = NULL to
8396 translate_action.
8397
8398 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
8399
8400 Rename %before-definitions to %start-header and %after-definitions to
8401 %end-header. Don't use these declarations to separate pre-prologue
8402 blocks from post-prologue blocks. Add new order-independent
8403 declarations %before-header and %after-header as alternatives to the
8404 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
8405 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
8406 * NEWS (2.3+): Update for these changes.
8407 * data/glr.c (b4_before_definitions): Update to...
8408 (b4_start_header): ... this.
8409 (b4_after_definitions): Update to...
8410 (b4_end_header): ... this.
8411 * data/glr.cc: Likewise.
8412 * data/lalr1.cc: Likewise.
8413 * data/yacc.c: Likewise.
8414 * doc/bison.texinfo (The prologue): Update names, and replace remaining
8415 prologue blocks with %*-header declarations.
8416 (Calc++ Parser): Likewise.
8417 (Decl Summary): Update names.
8418 (Table of Symbols): Update description.
8419 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
8420 (PERCENT_END_HEADER): ... this.
8421 (PERCENT_BEFORE_DEFINITIONS): Update to...
8422 (PERCENT_START_HEADER): ... this.
8423 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8424 (declaration): Update token names and m4 macro names.
8425 When parsing %end-header and %start-header, invoke translate_code
8426 before muscle_code_grow, and no longer set global booleans to remember
8427 whether these declarations have been seen.
8428 Parse new %after-header and %before-header.
8429 * src/reader.c (before_definitions, after_definitions): Remove.
8430 (prologue_augment): Accept a new bool argument to specify whether to
8431 augment the pre-prologue or post-prologue.
8432 * src/reader.h (before_definitions, after_definitions): Remove these
8433 extern's.
8434 (prologue_augment): Add new bool argument.
8435 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
8436 (PERCENT_END_HEADER): ... this.
8437 (PERCENT_BEFORE_DEFINITIONS): Update to...
8438 (PERCENT_START_HEADER): ... this.
8439 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8440 * tests/actions.at (Printers and Destructors): Update names.
8441
8442 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
8443
8444 Add comparison operators for C++ location classes. Discussed at
8445 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
8446 * data/c++.m4 (b4_define_location_comparison): New boolean %define
8447 declaration indicating whether filename_type has an operator==. If
8448 filename_type is `std::string', it defaults to `1', `0' otherwise.
8449 * data/location.cc: Iff b4_define_location_comparison is `1', add
8450 operator== and operator!= for class position and for class location.
8451
8452 Some minor fixes.
8453 * src/scan-action.l: Remove unused file.
8454 * src/symtab.c (symbol_printer_set): Use printer_location not
8455 destructor_location.
8456 * src/symtab.h (struct symbol): Replace incorrect source comment for
8457 printer members.
8458 * tests/input.at (Incompatible Aliases): Update output with correct
8459 printer location.
8460
8461 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
8462
8463 Don't put the pre-prologue in the header file. For the yacc.c code
8464 file and the glr.c header and code files, move the pre-prologue before
8465 the token definitions. Add new %before-definitions and
8466 %after-definitions to declare code that will go in both the header file
8467 and code file. Discussed at
8468 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
8469 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
8470 and
8471 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
8472 * NEWS (2.3+): Describe these changes.
8473 * data/glr.c (b4_pre_prologue): Move from within to before...
8474 (b4_shared_declarations): ... this.
8475 Add new b4_before_definitions before b4_token_enums.
8476 Add new b4_after_definitions at the end.
8477 * data/glr.cc (b4_pre_prologue): Replace with...
8478 (b4_before_definitions): ... this in the header file.
8479 (b4_after_definitions): New near the end of the header file.
8480 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
8481 code file right before including the header file.
8482 (b4_before_definitions): New in the previous position of
8483 b4_pre_prologue in the header file.
8484 (b4_after_definitions): New near the end of the header file.
8485 * data/yacc.c: Clean up some m4 quoting especially in the header file.
8486 (b4_token_enums_defines): In the code file, move to right before
8487 YYSTYPE for consistency with the header file.
8488 (b4_before_definitions): New right before b4_token_enums_defines in
8489 both the header and code file.
8490 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
8491 header and code file.
8492 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
8493 of prologues for %union dependencies.
8494 (Decl Summary): In %defines description, mention the effect of
8495 %before-definitions and %after-definitions on the header file.
8496 (Calc++ Parser): Forward declare driver in a %before-definitions rather
8497 than in the pre-prologue so that make check succeeds.
8498 (Table of Symbols): Add entries for %before-definitions and
8499 %after-definitions.
8500 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
8501 %before-definitions.
8502 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
8503 (declaration): Parse those declarations and append to
8504 b4_before_definitions and b4_after_definitions, respectively.
8505 * src/reader.c (before_definitions, after_definitions): New bools to
8506 track whether those declarations have been seen.
8507 (prologue_augment): Add to the post-prologue if %union,
8508 %before-definitions, or %after-definitions has been seen.
8509 * src/reader.h (before_definitions, after_definitions): New extern's.
8510 * src/scan-gram.l: Scan the new declarations.
8511 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
8512 prologue block in a %before-definitions or a %after-definitions based
8513 on whether the %union is declared.
8514 * tests/regression.at (Early token definitions with --yacc, Early token
8515 definitions without --yacc): Move tests for token definitions into the
8516 post-prologue since token names are no longer defined in the
8517 pre-prologue.
8518
8519 2006-06-20 Akim Demaille <akim@epita.fr>
8520
8521 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
8522 (symbol_get): Use it.
8523 * src/parse-gram.y: Use it.
8524
8525 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
8526
8527 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
8528 build succeeds when configured with --enable-gcc-warnings.
8529
8530 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
8531
8532 * src/parse-gram.y (char_name): New function.
8533 (CHAR, STRING, string_content): For %printer, properly escape.
8534 (ID): Prefer fputs to fprintf.
8535 (id): Reindent to be consistent with other rules.
8536 Properly quote char.
8537
8538 The Translation Project changed its way of publishing translations
8539 to maintainers. I haven't received any responses to my request
8540 for supporting the old way, or for documenting the new way. I
8541 have modified 'bootstrap' to use screen scraping
8542 (in this case, HTML scraping). This is unreliable and inelegant,
8543 but I don't see any better way. Yuck.
8544 * bootstrap (TP_URL, WGET_COMMAND): New vars.
8545 (get_translations): New function, which uses HTML scraping to
8546 deduce locations of latest translations.
8547 Use this function to grab both bison and bison-runtime .po files.
8548 Don't bother priming the pump for the runtime-po domain any more,
8549 as it's now translated better than bison is.
8550
8551 2006-06-19 Akim Demaille <akim@epita.fr>
8552
8553 * src/scan-gram.l: No longer "parse" things after `%union' until
8554 `{'. Rather, return a single "%union" token.
8555 No longer make symbols: return strings, and leave the conversion
8556 to symbols to the parser.
8557 (SC_PRE_CODE, token_type): Remove.
8558 * src/parse-gram.y (%union): New field `character'.
8559 Sort tokens.
8560 (CHAR): New token.
8561 (ID, ID_COLON): Now that the scanner no longer makes them
8562 identifiers, adjust all uses to invoke symbol_get.
8563 (id_colon): New, wraps the conversion from string to symbol.
8564 (%union): Accept a possible union_name.
8565 (symbol): Now can be a char.
8566 * data/c.m4 (b4_union_name): Leave a default value.
8567 * data/glr.c, data/yacc.c: Use it.
8568
8569 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
8570
8571 For associating token numbers with token names for "yacc.c", don't use
8572 #define statements unless `--yacc' is specified; always use enum
8573 yytokentype. Most important discussions start at:
8574 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
8575 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
8576 and
8577 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
8578 * NEWS (2.3+): Mention.
8579 * data/c.m4 (b4_yacc_if): New.
8580 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
8581 token #define's.
8582 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
8583 on token name definitions.
8584 * src/getargs.c (usage): Capitalize `Yacc' in English.
8585 * src/output.c (prepare): Define b4_yacc_flag.
8586 * tests/regression.at (Early token definitions): Test that tokens names
8587 are defined before the pre-prologue not just before the post-prologue.
8588 Remove this test case and copy to...
8589 (Early token definitions with --yacc): ... this to test #define's.
8590 (Early token definitions without --yacc): ... and this to test enums.
8591
8592 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
8593
8594 * NEWS: Reword the post-2.3 change to not be so optimistic about
8595 removing the old "look-ahead" spelling.
8596 Update previous look-ahead/lookahead change reports.
8597 * REFERENCES: look-ahead -> lookahead (since that's
8598 what he actually wrote).
8599 * doc/refcard.tex: look ahead -> lookahead,
8600 look-ahead -> lookahead
8601
8602 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
8603
8604 For consistency, use `lookahead' instead of `look-ahead' or
8605 `look_ahead'. Discussed starting at
8606 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
8607 and then at
8608 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
8609 * NEWS: For the next release, note the change to `--report'.
8610 * TODO, doc/bison.1: Update English.
8611 * doc/bison.texinfo: Update English.
8612 (Understanding Your Parser, Bison Options): Document as
8613 `--report=lookahead' rather than `--report=look-ahead'.
8614 * src/conflicts.c: Update English in comments.
8615 (lookahead_set): Rename from look_ahead_set.
8616 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
8617 (resolve_sr_conflict): Rename local look_ahead_tokens to
8618 lookahead_tokens, and update other uses.
8619 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
8620 count_rr_conflicts, conflicts_free): Update uses.
8621 * src/getargs.c (report_args): Move "lookahead" before alternate
8622 spellings.
8623 (report_types): Update uses.
8624 (usage): For `--report' usage description, state `lookahead' spelling
8625 rather than `look-ahead'.
8626 * src/getargs.h (report.report_lookahead_tokens): Rename from
8627 report_look_ahead_tokens.
8628 * src/lalr.c: Update English in comments.
8629 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
8630 (state_lookahead_tokens_count): Rename from
8631 state_look_ahead_tokens_count.
8632 Rename local n_look_ahead_tokens to n_lookahead_tokens.
8633 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
8634 Rename local n_look_ahead_tokens to n_lookahead_tokens.
8635 Update other uses.
8636 Update English in output.
8637 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
8638 * src/print.c: Update English in comments.
8639 (lookahead_set): Rename from look_ahead_set.
8640 (print_reduction): Rename argument lookahead_token from
8641 look_ahead_token.
8642 (print_core, state_default_rule, print_reductions, print_results):
8643 Update uses.
8644 * src/print_graph.c: Update English in comments.
8645 (print_core): Update uses.
8646 * src/state.c: Update English in comments.
8647 (reductions_new): Update uses.
8648 (state_rule_lookahead_tokens_print): Rename from
8649 state_rule_look_ahead_tokens_print, and update other uses.
8650 * src/state.h: Update English in comments.
8651 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
8652 (state_rule_lookahead_tokens_print): Rename from
8653 state_rule_look_ahead_tokens_print.
8654 * src/tables.c: Update English in comments.
8655 (conflict_row, action_row): Update uses.
8656 * tests/glr-regression.at
8657 (Incorrect lookahead during deterministic GLR,
8658 Incorrect lookahead during nondeterministic GLR): Rename
8659 print_look_ahead to print_lookahead.
8660 * tests/torture.at: Update English in comments.
8661 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
8662 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
8663 (Many lookahead tokens): Update uses.
8664 * data/glr.c: Update English in comments.
8665 * lalr1.cc: Likewise.
8666 * yacc.c: Likewise.
8667 * src/conflicts.h: Likewise.
8668 * src/lalr.h: Likewise.
8669 * src/main.c: Likewise.
8670 * src/output.c: Likewise.
8671 * src/parse-gram.c: Likewise.
8672 * src/tables.h: Likewise.
8673 * tests/calc.at: Likewise.
8674
8675 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
8676
8677 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
8678
8679 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
8680
8681 * TODO: Add request from Nelson H. F. Beebe to be able to install
8682 Bison without installing the yacc script.
8683
8684 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
8685
8686 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
8687 and yytext if they're already #define'd.
8688 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
8689 * src/scan-code-c.c: ... here.
8690 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
8691 <config.h>.
8692
8693 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
8694
8695 Get Bison to build again when configured with --enable-gcc-warnings.
8696 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
8697 missing #include's.
8698 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
8699 loc argument as it shadows a global.
8700 * src/scan-gram.l: Remove stray comma that prevents boundary_set
8701 invocation.
8702
8703 * src/.cvsignore: Add scan-code.c.
8704
8705 2006-06-07 Akim Demaille <akim@epita.fr>
8706
8707 * src/scan-gram.l: Move the "add a trailing ; to actions" code
8708 to...
8709 * src/scan-code.l: here.
8710 * tests/input.at (Torturing the Scanner): Fix another location
8711 error.
8712
8713 2006-06-07 Akim Demaille <akim@epita.fr>
8714
8715 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
8716
8717 2006-06-06 Akim Demaille <akim@epita.fr>
8718
8719 Extract the parsing of user actions from the grammar scanner.
8720 As a consequence, the relation between the grammar scanner and
8721 parser is much simpler. We can also split "composite tokens" back
8722 into simple tokens.
8723 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
8724 * src/scan-gram.l (add_column_width, adjust_location): Move to and
8725 rename as...
8726 * src/location.h, src/location.c (add_column_width)
8727 (location_compute): these.
8728 Fix the column count: the initial column is 0.
8729 (location_print): Be robust to ending column being 0.
8730 * src/location.h (boundary_set): New.
8731 * src/main.c: Adjust to scanner_free being renamed as
8732 gram_scanner_free.
8733 * src/output.c: Include scan-code.h.
8734 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
8735 Use boundary_set.
8736 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
8737 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
8738 which is now, again, a separate token.
8739 Adjust all dependencies.
8740 Whereever actions with $ and @ are used, use translate_code.
8741 (action): Remove this nonterminal which is now useless.
8742 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
8743 (grammar_current_rule_action_append): Use translate_code.
8744 (packgram): Bound check ruleno, itemno, and rule_length.
8745 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
8746 (last_string, last_braced_code_loc, max_left_semantic_context)
8747 (scanner_initialize, scanner_free, scanner_last_string_free)
8748 (gram_out, gram_lineno, YY_DECL_): Move to...
8749 * src/scan-gram.h: this new file.
8750 (YY_DECL): Rename as...
8751 (GRAM_DECL): this.
8752 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
8753 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8754 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8755 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8756 Move these declarations, and...
8757 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
8758 these to...
8759 * src/flex-scanner.h: this new file.
8760 * src/scan-gram.l (rule_length, rule_length_overflow)
8761 (increment_rule_length): Remove.
8762 (last_braced_code_loc): Rename as...
8763 (gram_last_braced_code_loc): this.
8764 Adjust to the changes of the parser.
8765 Move all the handling of $ and @ into...
8766 * src/scan-code.l: here.
8767 * src/scan-gram.l (handle_dollar, handle_at): Remove.
8768 (handle_action_dollar, handle_action_at): Move to...
8769 * src/scan-code.l: here.
8770 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
8771 scan-code.h, scan-code-c.c, scan-gram.h.
8772 (EXTRA_bison_SOURCES): Add scan-code.l.
8773 (BUILT_SOURCES): Add scan-code.c.
8774 (yacc): Be robust to white spaces.
8775
8776 * tests/conflicts.at, tests/input.at, tests/reduce.at,
8777 * tests/regression.at: Adjust the column numbers.
8778 * tests/regression.at: Adjust the error message.
8779
8780 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8781
8782 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8783 Use Akim's wording from
8784 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
8785
8786 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8787
8788 Between Bison releases, manually append `+' to the previous Bison
8789 release number, and use that as a signal to automatically print the
8790 ChangeLog's CVS Id keyword from --version. Discussed starting at
8791 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
8792 * ChangeLog: Add Id header.
8793 * configure.ac (AC_INIT): Append `+' to `2.3'.
8794 * src/.cvsignore: Add revision.c.
8795 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
8796 (BUILT_SOURCES): Add revision.c.
8797 (revision.c): New target rule. This file defines a new global variable
8798 named revision. It initializes it with either the Id from ChangeLog
8799 or, if VERSION doesn't contain `+', with the empty string.
8800 * src/getargs.c (version): Print the value of revision.
8801 * src/revision.h: Extern revision.
8802
8803 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
8804
8805 * NEWS: Version 2.3.
8806 * configure.ac (AC_INIT): Likewise.
8807
8808 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
8809
8810 * data/glr.c (YYRECOVERING): Define to be a function-like macro
8811 with no arguments, not as an object-like macro. This is for
8812 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
8813 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
8814 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
8815 Document this.
8816
8817 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
8818
8819 * src/getargs.c (usage): Back out yesterday's modification of the
8820 --help output so that we don't have to wait for translation before
8821 releasing 2.3.
8822
8823 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
8824
8825 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
8826 Problem reported by Akim Demaille.
8827
8828 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
8829
8830 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8831
8832 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
8833
8834 * data/yacc.c (yy_reduce_print): Omit trailing white space in
8835 generated source code. Problem reported by Frans Englich in
8836 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
8837
8838 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
8839
8840 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
8841 shell, not within 'make', so that 'make' by an ordinary builder
8842 (using GNU make) does not worry about configuring gzip. This also
8843 works around a bug reported independently by Keith Thompson and by
8844 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
8845 stderr rather than stdout, messing up the build logs.
8846
8847 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
8848
8849 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
8850 to make sure that YYID will never be unused. This fixes a 'make
8851 maintainer-check' failure caused by the recent changes to the 'Trivial
8852 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
8853 not used.
8854 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
8855
8856 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
8857
8858 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
8859 state before an empty RHS is always resolved here. Only the location
8860 of that state is guaranteed to be resolved, and that's enough. This
8861 fixes the remaining bug reported by Derek M. Jones in
8862 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
8863 * tests/glr-regression.at (Uninitialized location when reporting
8864 ambiguity): Test the above case.
8865 Also, the embedded comments in this test case claim it checks the case
8866 of an empty RHS that has inherited the initial location. However, the
8867 corresponding LHS was already resolved, so yyresolveLocations didn't
8868 actually have reason to modify it. Fix this by forcing
8869 nondeterministic operation at the beginning of the parse.
8870
8871 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
8872
8873 * data/c.m4 (b4_yy_symbol_print_generate):
8874 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
8875 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
8876 of the bugs reported today by Derek M Jones in
8877 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
8878 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
8879 defined to be a type name without parens or brackets.
8880 (Location Type): Similarly for YYLTYPE.
8881 * tests/regression.at (Trivial grammars): Put in a test for this
8882 bug that will be caught by 'make maintainer-check' (though not,
8883 alas, by 'make check' unless your compiler is picky).
8884
8885 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
8886
8887 * NEWS: Version 2.2.
8888 * configure.ac (AC_INIT): Likewise.
8889
8890 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
8891
8892 * data/glr.c (yyreportTree): Make room in yystates for the state
8893 preceding the RHS. This fixes the segmentation fault reported by Derek
8894 M. Jones in
8895 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
8896 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
8897 to the user. Reported for yyreportTree by Derek M. Jones later in the
8898 same thread.
8899 * THANKS: Add Derek M. Jones.
8900 Update my email address.
8901 Fix typo in Steve Murphy's name.
8902
8903 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
8904
8905 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
8906 checking against YYLAST that caused the parser to miss a potential
8907 alternative in its diagnostic.
8908 Problem reported by Maria Jose Moron Fernandez in
8909 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
8910 * data/lalr1.cc (yysyntax_error_): Likewise.
8911 * data/yacc.c (yysyntax_error): Likewise.
8912 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
8913 tokens, in case we run into an older C compiler.
8914 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
8915 Use them to check for the off-by-one error fixed above.
8916
8917 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
8918 YYSIZE_T, not size_t.
8919 * tests/regression.at (Trivial grammars): New test, to catch
8920 the error fixed by the above patch.
8921
8922 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
8923
8924 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
8925 scheme.
8926 Reported by Steve Murphy.
8927
8928 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
8929
8930 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
8931 * data/glr.cc: b4_location_flag is now b4_locations_flag.
8932
8933 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
8934
8935 Implement --trace=m4.
8936 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
8937 * src/output.c (output_skeleton): When set, pass -dV to m4.
8938
8939 Factor the handling of flags in m4.
8940 * src/output.c (prepare): Rename the muscle names debug, defines,
8941 error_verbose to debug_flag, defines_flag, error_verbose_flag.
8942 * data/c.m4: Adjust.
8943 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
8944 Use b4_define_flag_if to define other b4_FLAG_if macros.
8945 (b4_location_if): As a consequence, rename as...
8946 (b4_locations_if): this, for consistency.
8947 Adjust all the skeletons.
8948
8949 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
8950
8951 * etc/bench.pm: Shorten bench names.
8952
8953 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
8954
8955 * src/output.h, src/output.c (error_verbose): Move to...
8956 * src/getargs.h, src/getargs.c: here.
8957 Sort the flags.
8958 Adjust dependencies.
8959
8960 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
8961
8962 * data/c.m4 (b4_copyright): Put the special exception for Bison
8963 skeletons here, so we don't have to put it in each skeleton. All
8964 uses changed. Suggested by Akim Demaille. Also, wrap the
8965 copyright notice, in case it is longer than 80 columns. Replace
8966 comma by newline after title.
8967
8968 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
8969
8970 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
8971 incompatibility, not a bug. Mention that it wasn't fixed as of
8972 flex 2.5.33.
8973
8974 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
8975
8976 * examples/extexi: Enforce the precedence of concatenation over
8977 >>.
8978 Reported by Tommy Nordgren.
8979
8980 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
8981
8982 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
8983 with the member "token".
8984 Reported by Martin Nylin.
8985
8986 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
8987
8988 * data/glr.c: Switch to Bison 2.2 special-exception language in
8989 the copyright notice. Use more-regular format for titles and
8990 copyright notices.
8991 * data/glr.cc: Likewise.
8992 * data/location.cc: Likewise.
8993 * data/yacc.cc: Likewise.
8994 * doc/bison.texinfo (Conditions): Document this.
8995 * NEWS: likewise. Upgrade version to 2.2.
8996
8997 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
8998
8999 * data/glr.cc: Remove dead code.
9000
9001 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
9002
9003 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
9004 that variable and the line breaks the bootstrap. Problem reported
9005 by Juan M. Guerrero.
9006
9007 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
9008
9009 * doc/bison.texinfo (Multiple start-symbols): New.
9010
9011 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
9012
9013 * etc/README, etc/bench.pl: New.
9014
9015 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
9016
9017 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
9018 rule.
9019 Reported by Mickael Labau.
9020 * tests/input.at (Torturing the Scanner): Test it.
9021
9022 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
9023
9024 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
9025 Problem reported by Bob Rossi.
9026
9027 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
9028
9029 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
9030 and didn't really work.
9031 For the index, use @ifnotinfo, not @iftex.
9032 Minor cleanups of spacing and terminology.
9033
9034 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
9035
9036 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
9037 of AT_NAME_PREFIX when %name-prefix is not used.
9038
9039 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
9040
9041 Apply --prefix to C++ skeletons too: they change the namespace.
9042 The test suite already exercize these cases.
9043 * data/c++.m4 (b4_namespace): New.
9044 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
9045 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
9046 * data/yacc.c, data/glr.c: Remove a useless `[]'.
9047 * doc/bison.texinfo: Document it.
9048 (Option Cross Key): Use @multitable in all formats. It looks
9049 nicer, even in TeX outputs.
9050 (Rules): Use the same code whatever the output type is.
9051 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
9052 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
9053 * tests/calc.at: Use it, instead of hard coding `yy'.
9054
9055 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9056
9057 * TODO: Remove dead items.
9058
9059 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9060
9061 * doc/FAQ: Remove, merged into...
9062 * doc/bison.texinfo (FAQ): this.
9063 * doc/Makefile.am (EXTRA_DIST): Adjust.
9064
9065 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
9066
9067 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
9068 even if empty.
9069 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
9070 * doc/bison.texinfo (Calc++ Scanner): Use it.
9071
9072 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
9073
9074 Fix two nits reported by twlevo, plus one more that I discovered.
9075
9076 * src/assoc.h (assoc_to_string): Give a name to the arg, as
9077 this is the usual Bison style.
9078 * src/location.h (location_print): Likewise.
9079
9080 * src/reader.h (token_name): Likewise.
9081
9082 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
9083
9084 Fix some nits reported by twlevo.
9085 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
9086 and "POSIX". Use more-modern syntax for URLs. Mention C++
9087 and ask for Java. Don't hardwire OS version numbers. Add
9088 copyright notice.
9089 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
9090 * src/conflicts.c (solved_conflicts_obstack): Now static.
9091
9092 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
9093
9094 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
9095 page. Say "you can use it" not "you may use it" as on the web page;
9096 we're describing capabilities not granting permission.
9097
9098 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
9099
9100 * data/glr.c (yyresolveLocations): Rename local variables to avoid
9101 shadowing warnings. Use usual patter for iterating through RHS.
9102 * tests/glr-regression.at
9103 (Uninitialized location when reporting ambiguity):
9104 Modify yylex so that it uses its argument, rather than trying
9105 to rely on ARGSUSED (which doesn't work for gcc with warnings).
9106 const char -> char const.
9107
9108 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
9109 Don't use tabs inside commands; it messes up 'ps'.
9110 Problem reported by twlevo.
9111
9112 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
9113
9114 * tests/glr-regression.at (Uninitialized location when reporting
9115 ambiguity): New test case.
9116 * data/glr.c (yyresolveLocations): New function, which uses
9117 YYLLOC_DEFAULT.
9118 (yyresolveValue): Invoke yyresolveLocations before reporting an
9119 ambiguity.
9120 * doc/bison.texinfo (Default Action for Locations): Note
9121 YYLLOC_DEFAULT's usage for ambiguity locations.
9122 (GLR Semantic Actions): Cross-reference those notes.
9123
9124 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
9125
9126 * tests/glr-regression.at (Leaked semantic values when reporting
9127 ambiguity): Remove unnecessary union and type declarations.
9128 (Leaked lookahead after nondeterministic parse syntax error): New test
9129 case.
9130 * data/glr.c (yyparse): Check for zero stacks remaining before
9131 attempting to shift the lookahead so that you don't lose it.
9132
9133 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9134
9135 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
9136 * tests/glr-regression.at (Leaked semantic values when reporting
9137 ambiguity): New test case.
9138 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
9139 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
9140 now unnecessary yystackp parameter.
9141 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
9142 destructors can be called.
9143
9144 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
9145 in existing testcases.
9146
9147 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9148
9149 Don't leak semantic values for parent RHS when a user action cuts the
9150 parser, and clean up related code a bit.
9151 * tests/glr-regression.at (Leaked merged semantic value if user action
9152 cuts parse): Rename to...
9153 (Leaked semantic values if user action cuts parse): ... this. Add check
9154 for leaked parent RHS values.
9155 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
9156 between an unresolved state (non-empty chain of semantic options) and
9157 an incomplete one (signaled by an empty chain).
9158 (yyresolveStates): Document the interface. Move all manipulation of a
9159 successfully or unsuccessfully resolved yyGLRState to...
9160 (yyresolveValue): ... here so that yyresolveValue always leaves a
9161 yyGLRState with consistent data and thus is easier to understand.
9162 Remove the yyvalp and yylocp parameters since they are always just
9163 taken from the yys parameter. When reporting a discarded merged value
9164 in debugging output, note that it is incompletely merged. Document the
9165 interface.
9166 (yyresolveAction): If resolving any of the RHS states fails, destroy
9167 them all rather than leaking them. Thus, as long as user actions are
9168 written to clean up the RHS correctly, yyresolveAction always cleans up
9169 the RHS of a semantic option. Document the interface.
9170
9171 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
9172
9173 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
9174 led to a segmentation fault in GNU Pascal. Problem reported
9175 by Waldek Hebisch.
9176
9177 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
9178
9179 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
9180 mid-rule action inside a nonterminal symbol in order to declare a
9181 destructor for its semantic value.
9182
9183 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
9184
9185 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
9186 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
9187 __cplusplus && ! defined _STDLIB_H && !
9188 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
9189 defined free))]: Include <stdlib.h> rather than rolling our own
9190 declarations of malloc and free, to avoid problems with
9191 incompatible declarations (using 'throw') C++'s stdlib.h. This
9192 should fix Debian bug 340012
9193 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
9194 reported by Guillaume Melquiond.
9195
9196 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9197
9198 * NEWS: Clarify symbols versus types in unused-value warnings.
9199
9200 * configure.ac (AC_INIT): Bump version number.
9201
9202 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9203
9204 * NEWS: Version 2.1a.
9205 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
9206 since C99 requires this.
9207
9208 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
9209
9210 * m4/c-working.m4: New file.
9211 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
9212
9213 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
9214
9215 * Makefile.maint: Merge from coreutils.
9216
9217 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
9218
9219 More portability fixes for problems summarized by Nelson H. F. Beebe.
9220
9221 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
9222 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
9223 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
9224 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
9225 messes up because C++ code is compiled in 32-bit mode but linked
9226 in 64-bit mode.
9227
9228 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
9229
9230 More portability fixes for problems summarized by Nelson H. F. Beebe.
9231
9232 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
9233 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
9234
9235 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
9236 nodist_PROGRAMS, since we don't need to actually compile the
9237 example if we're just doing a plain 'make'. This avoids bothering
9238 the installer unnecessarily about problems due to weird C++
9239 compilers.
9240
9241 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
9242
9243 More portability fixes for problems summarized by Nelson H. F. Beebe.
9244
9245 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
9246 than #include "...", and compile with -I'.'. The old method was
9247 not portable, according to Posix and the C standard, and it does
9248 not work with Sun C 5.7, where previous #line directives affect
9249 the working directory used in later #include "..." directives.
9250
9251 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9252
9253 Various DJGGP specific issues in /djgpp
9254
9255 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
9256
9257 More portability fixes for problems summarized by Nelson H. F. Beebe.
9258
9259 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
9260 '#include <map>' works and that you can apply ++ to iterators.
9261
9262 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
9263
9264 Work around portability problems summarized by Nelson H. F. Beebe in
9265 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
9266
9267 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9268 that '#include <string>' works.
9269
9270 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
9271 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
9272 "warning: sorry: semantics of inline function static data `const
9273 unsigned char translate_table[262]' are wrong (you'll wind up with
9274 multiple copies)".
9275
9276 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
9277 or, xor to not_, and_, or_, and xor_, respectively. This works
9278 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
9279 random system header somewhere that includes the equivalent of
9280 <iso646.h>.
9281
9282 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
9283 -E" works; it apparently doesn't work with PathScale EKO Compiler
9284 Suite Version 2.0.
9285
9286 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
9287
9288 During deterministic GLR operation, user actions should be able to
9289 influence the parse by changing yychar. To make this easier to fix and
9290 to make glr.c easier to evolve in general, don't maintain yytoken in
9291 parallel with yychar; just compute yytoken when needed.
9292 * tests/glr-regression.at (Incorrect lookahead during deterministic
9293 GLR): Check that setting yychar in a user action has the intended
9294 effect.
9295 * data/glr.c (yyGLRStack): Remove yytokenp member.
9296 (yyclearin): Don't set *yytokenp.
9297 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
9298 yychar rather than *yytokenp to determine the current lookahead.
9299 Compute yytoken locally when needed.
9300 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
9301 point to.
9302
9303 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
9304 after `--report' documentation.
9305
9306 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
9307
9308 * src/parse-gram.y (grammar_declaration): Location of printer
9309 symbol is @1, not list->location. Bug reported by twlevo.
9310 * tests/input.at (Incompatible Aliases): Adjust to above change.
9311
9312 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
9313
9314 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
9315 all the test at once. This makes the output easier to read in the
9316 normal case.
9317
9318 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
9319 got from <http://bro-ids.org/download.html>. The bug is that
9320 when two actions appeared in succession, the second one was
9321 scanned before the first one was added to the grammar rule
9322 as a midrule action. Bison then output the incorrect warning
9323 "parse.y:905.17-906.36: warning: unused value: $3".
9324 * src/parse-gram.y (BRACED_CODE, action): These are no longer
9325 associated with a value.
9326 (rhs): Don't invoke grammar_current_rule_action_append.
9327 (action): Invoke it here instead.
9328 * src/reader.c (grammar_midrule_action): Now extern.
9329 (grammar_current_rule_action_append): Don't invoke
9330 grammar_midrule_action; that is now the scanner's job.
9331 * src/reader.h (last_string, last_braced_code_loc):
9332 (grammar_midrule_action): New decls.
9333 * src/scan-gram.l (last_string): Now extern, sigh.
9334 (last_braced_code_loc): New extern variable.
9335 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
9336 rule already has an action.
9337 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
9338 * tests/input.at (AT_CHECK_UNUSED_VALUES):
9339 Add some tests to check that the above changes fixed the bug.
9340
9341 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
9342
9343 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
9344 All used changed. Check whether the symbol has a destructor,
9345 not whether it is typed.
9346 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
9347 that the values are still reported as unused. All line numbers
9348 adjusted.
9349
9350 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
9351
9352 Work around a bug in bro 0.8, which underparenthesizes its
9353 definition of YYLLOC_DEFAULT.
9354 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
9355 their arguments.
9356 * data/lalr1.cc: Likewise.
9357 * data/yacc.cc: Likewise.
9358
9359 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
9360
9361 Work around a bug in Pike 7.0, and give the Pike folks a
9362 better way to override the usual int widths.
9363 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
9364 user can override the types.
9365 (short): #undef, to work around a bug in Pike 7.0.
9366 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
9367 (union yyalloc.yyss): Use yytype_int16 rather than short.
9368 All uses changed.
9369 (yysigned_char): Remove.
9370 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
9371 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
9372 * tests/regression.at (Web2c Actions): Adjust to above changes.
9373
9374 * src/reader.c (check_and_convert_grammar): New function.
9375 (reader): Close the input file even if something went wrong during
9376 parsing. Minor file descriptor leak reported by twlevo.
9377
9378 * src/assoc.c (assoc_to_string): Use a default: abort (); case
9379 to pacify gcc -Wswitch-default.
9380 * src/scan-gram.l (adjust_location): Use a default: break; case
9381 to pacify gcc -Wswitch-default.
9382 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
9383 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9384 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9385 Move these decls to scan-skel.l, since they don't need to be
9386 visible elsewhere.
9387 * src/scan-skel.l: Accept the above decls.
9388 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
9389 is used.
9390
9391 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
9392
9393 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
9394 since we don't want to insist on a version number at the start
9395 of the changelog every time.
9396 * Makefile.maint: Sync from coreutils a bit better.
9397 (sc_trailing_blank): Renamed from sc_trailing_space.
9398 All uses changed.
9399 (sc_no_if_have_config_h, sc_require_config_h):
9400 (sc_prohibit_assert_without_use): New rules.
9401 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
9402 (sc_dd_max_sym_length): Fix leading spaces in rule.
9403 (sc_system_h_headers): Prefix with @.
9404 (sc_useless_cpp_parens, m4-check): Output line numbers.
9405 (changelog-check): Allow version only in head.
9406 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
9407 satisfy new Makefile.maint rule.
9408 * data/glr.c: Likewise.
9409 * data/glr.cc: Likewise.
9410 * data/lalr1.cc: Likewise.
9411 * data/yacc.c: Likewise.
9412 * lib/ebitsetv.c: Likewise.
9413 * lib/lbitset.c: Likewise.
9414 * lib/subpipe.c: Likewise.
9415 * lib/timevar.c: Likewise.
9416 * src/system.h: Likewise.
9417 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
9418 * djgpp/Makefile.maint: Add copyright notice.
9419 * djgpp/README.in: Likewise.
9420 * djgpp/config.bat: Likewise.
9421 * djgpp/config.site: Likewise.
9422 * djgpp/config_h.sed: Likewise.
9423 * djgpp/djunpack.bat: Likewise.
9424 * djgpp/config.sed: Fix copyright notice to match standard format.
9425 * djgpp/subpipe.h: Likewise.
9426 * lib/bitsetv-print.c: Likewise.
9427 * lib/bitsetv.c: Likewise.
9428 * lib/subpipe.h: Likewise.
9429 * lib/timevar.c: Likewise.
9430 * lib/timevar.h: Likewise.
9431 * djgpp/subpipe.c: Use standard recipe for config.h.
9432 * lib/abitset.c: Likewise.
9433 * lib/bitset.c: Likewise.
9434 * lib/bitset_stats.c: Likewise.
9435 * lib/bitsetv-print.c: Likewise.
9436 * lib/bitsetv.c: Likewise.
9437 * lib/ebitsetv.c: Likewise.
9438 * lib/get-errno.c: Likewise.
9439 * lib/lbitset.c: Likewise.
9440 * lib/subpipe.c: Likewise.
9441 * lib/timevar.c: Likewise.
9442 * lib/vbitset.c: Likewise.
9443 * tests/local.at: Likewise.
9444 * src/scan-gram.l: Don't include verify.h, since system.h does
9445 that for us.
9446 * .x-sc_require_config_h: New file.
9447 * .x-sc_unmarked_diagnostics: New file.
9448
9449 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
9450
9451 Be a bit more systematic about using 'abort'.
9452 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
9453 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
9454 Put 'default: abort ();' before some other case, to satisfy older
9455 pedantic compilers.
9456 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9457 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
9458 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
9459 * src/conflicts.c (resolve_sr_conflict): Likewise.
9460 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
9461 (get_decision_str, get_orientation_str, get_node_alignment_str):
9462 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
9463 (get_linestyle_str, get_arrowstyle_str): Likewise.
9464 * src/conflicts.c (resolve_sr_conflict):
9465 Use a default case rather than one for the one remaining enum
9466 value, to catch invalid enum values as well.
9467 * src/lalr.c (set_goto_map, map_goto):
9468 Prefer "assert (FOO);" to "if (!FOO) abort ();".
9469 * src/nullable.c (nullable_compute, token_definitions_output):
9470 Likewise.
9471 * src/reader.c (packgram, reader): Likewise.
9472 * src/state.c (transitions_to, state_new, state_reduction_find):
9473 Likewise.
9474 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
9475 (symbol_pack): Likewise.
9476 * src/tables.c (conflict_row, pack_vector): Likewise.
9477 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
9478 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
9479 * src/system.h: Don't include <assert.h>.
9480 (assert): New macro.
9481
9482 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
9483 (Destructor Decl, Parser Function, Pure Calling):
9484 Describe rules for braces inside C code more carefully.
9485
9486 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
9487
9488 Fix some porting glitches found by Nelson H. F. Beebe.
9489 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
9490 compilers that don't understand that abort () does not return.
9491 * src/state.c (transitions_to): Likewise.
9492 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9493 that '#include <cstdlib>' works.
9494 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
9495 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
9496 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
9497 for the benefit of some pre-C99 compilers.
9498
9499 * bootstrap: Undo changes to gnulib files that autoreconf made.
9500
9501 Minor fixups to get 'make maintainer-check' to work.
9502 * configure.ac: Don't use -Wnested-externs, as it's incompatible
9503 with the new verify.h implementation.
9504 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
9505 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
9506 * data/yacc.c (YYUSE): Likewise.
9507 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
9508 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
9509 * src/parse-gram.y (declaration): Don't pass a string constant
9510 to a function that expects char *, since GCC might complain
9511 about the constant value.
9512 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
9513 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
9514 before #defining them.
9515 * tests/glr-regression.at
9516 (Incorrectly initialized location for empty right-hand side in GLR):
9517 In yyerror, use the msg arg.
9518 (Corrupted semantic options if user action cuts parse):
9519 (Incorrect lookahead during deterministic GLR):
9520 (Incorrect lookahead during nondeterministic GLR):
9521 Don't name a local var 'index'; it shadows string.h's 'index'.
9522
9523 2006-01-19 Akim Demaille <akim@epita.fr>
9524
9525 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
9526 location, not just parts of it.
9527
9528 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
9529
9530 * NEWS: Document the fact that multiple %unions are now allowed.
9531 * doc/bison.texinfo (Union Decl): Likewise.
9532 * TODO: This feature is now implemented, so remove it from
9533 the wishlist.
9534
9535 * Makefile.maint: Merge with coreutils Makefile.maint.
9536 (CVS_LIST): Use build-aux version if available.
9537 (VERSION_REGEXP): New macro.
9538 (syntax-check-rules): Add sc_no_if_have_config_h,
9539 sc_prohibit_assert_without_use, sc_require_config_h,
9540 sc_useless_cpp_parens.
9541 (sc_obsolete_symbols): Check for O_NDELAY.
9542 (sc_dd_max_sym_length): Track coreutils.
9543 (sc_unmarked_diagnostics): Look in all files, not just *.c.
9544 (sc_useless_cpp_parens): New rule.
9545 (news-date-check): Look for version or today's date.
9546 (changelog-check): Don't require version number near head.
9547 (copyright-check): Use current year instead of hardwiring 2005.
9548 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
9549 (announcement): Add --gpg-key-ID.
9550
9551 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
9552 with "file system".
9553
9554 Avoid undefined behavior that addressed just before the start of an
9555 array. Problem reported by twlevo.
9556 * src/reader.c (packgram): Prepend a new sentinel before ritem.
9557 * src/lalr.c (build_relations): Rely on new sentinel.
9558 * src/gram.c (gram_free): Adjust to new sentinel.
9559
9560 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
9561
9562 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
9563 yylookaheadNeeds. All uses updated.
9564 (yysplitStack): Rename local yynewLookaheadStatuses to
9565 yynewLookaheadNeeds.
9566 * data/glr-regression.at (Incorrect lookahead during nondeterministic
9567 GLR): In comments, change `lookahead status' to `lookahead need'.
9568
9569 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9570
9571 * data/glr.c (yysplitStack): A little stylistic rewrite.
9572
9573 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9574
9575 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
9576
9577 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
9578
9579 * doc/bison.texinfo: Fix some typos.
9580 (GLR Semantic Actions): New subsection discussing special
9581 considerations because GLR semantic actions might be deferred.
9582 (Actions): Mention look-ahead usage of yylval.
9583 (Actions and Locations): Mention look-ahead usage of yylloc.
9584 (Special Features for Use in Actions): Add YYEOF entry and mention it
9585 in the yychar entry.
9586 In the yychar entry, remove mention of the local yychar case (pure
9587 parser) since this is irrelevant information when writing semantic
9588 actions and since it's already discussed in `Table of Symbols' where
9589 yychar is otherwise described as an external variable.
9590 In the yychar entry, don't call it the `current' look-ahead since it
9591 isn't when semantic actions are deferred.
9592 In the yychar and yyclearin entries, add note about deferred semantic
9593 actions.
9594 Add yylloc and yylval entries discussing look-ahead usage.
9595 (Look-Ahead Tokens): When discussing yychar, don't call it the
9596 `current' look-ahead, and do mention yylval and yylloc.
9597 (Error Recovery): Cross-reference `Action Features' when mentioning
9598 yyclearin.
9599 (Table of Symbols): In the yychar entry, don't call it the `current'
9600 look-ahead.
9601 In the yylloc and yylval entries, mention look-ahead usage.
9602
9603 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
9604
9605 * tests/glr-regression.at: Update copyright year to 2006.
9606
9607 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
9608
9609 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
9610 use during nondeterministic operation to track which stacks have
9611 actually needed the current lookahead.
9612 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
9613 Allocate, deallocate, resize, and otherwise shuffle space for
9614 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
9615 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
9616 appropriately during nondeterministic operation.
9617 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
9618 members to store the current lookahead to be used by the deferred
9619 user action.
9620 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
9621 from which the RHS is taken. Set the lookahead members of the new
9622 yySemanticOption according to the lookahead status for stack yyk.
9623 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
9624 yyaddDeferredAction.
9625 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
9626 members of yySemanticOption before invoking yyuserAction, and then set
9627 them back to their current values afterward.
9628 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
9629 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
9630 * tests/glr-regression.at: Remove `.' from the ends of recent test case
9631 titles for consistency.
9632 (Leaked merged semantic value if user action cuts parse): In order to
9633 suppress lint warnings, use arguments in merge function, and assign
9634 char value < 128 in main.
9635 (Incorrect lookahead during deterministic GLR): New test case.
9636 (Incorrect lookahead during nondeterministic GLR): New test case.
9637
9638 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
9639
9640 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
9641 !yyvaluep as signal that no semantic value is available to print.
9642 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
9643 to print a semantic value.
9644
9645 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
9646
9647 * tests/glr-regression.at: For consistency with my newer test cases,
9648 don't thank myself.
9649
9650 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
9651
9652 * data/glr.c (yyresolveValue): When merging semantic options, if at
9653 least one user action succeeds but a later one cuts the parse, then
9654 destroy the semantic value before returning rather than leaking it.
9655 (yyresolveStates): If a user action cuts the parse and thus
9656 yyresolveValue fails, ignore the (unset) semantic value rather than
9657 corrupting the yyGLRState, and empty the semantic options list since
9658 the user actions should have called all necessary destructors.
9659 Simplify code with YYCHK.
9660 * tests/glr-regression.at (Corrupted semantic options if user action
9661 cuts parse): New test case.
9662 (Undesirable destructors if user action cuts parse): New test case.
9663 Before applying any of this patch, this test case never actually failed
9664 for me... but only because the corrupted semantic options usually
9665 masked this bug.
9666 (Leaked merged semantic value if user action cuts parse): New test
9667 case.
9668
9669 2006-01-05 Akim Demaille <akim@epita.fr>
9670
9671 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
9672
9673 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
9674
9675 * data/c.m4 (b4_c_modern): New macro, with a new provision for
9676 _MSC_VER. Problem reported by Cenzato Marco.
9677 (b4_c_function_def): Use it.
9678 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
9679 b4_c_modern.
9680 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
9681 than rolling our own.
9682
9683 2006-01-04 Akim Demaille <akim@epita.fr>
9684
9685 Also warn about non-used mid-rule values.
9686 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
9687 member.
9688 (symbol_list_new): Adjust.
9689 * src/reader.c (symbol_typed_p): New.
9690 (grammar_rule_check): Use it.
9691 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
9692 Check its rule.
9693 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
9694 Use it.
9695 * tests/actions.at (Exotic Dollars): Adjust.
9696
9697 2006-01-04 Akim Demaille <akim@epita.fr>
9698
9699 * src/reader.c (grammar_midrule_action): If $$ is set in a
9700 mid-rule, move the `used' bit to its lhs.
9701 * tests/input.at (Unused values): New.
9702 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
9703
9704 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
9705
9706 * doc/bison.texinfo (Bison Options): Say more accurately what
9707 --yacc does.
9708 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
9709 about declarations in the grammar when in Yacc mode, as POSIX does
9710 not require a diagnostic when the grammar uses extensions.
9711
9712 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
9713
9714 Warn about dubious constructions like "%token T T".
9715 Reported by twlevo.
9716 * src/symtab.h (struct symbol.declared): New member.
9717 * src/symtab.c (symbol_new): Initialize it to false.
9718 (symbol_class_set): New arg DECLARING, specifying whether
9719 this is a declaration that we want to warn about, if there
9720 is more than one of them. All uses changed.
9721
9722 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
9723 Allow multiple %union directives, whose contents concatenate.
9724 * src/parse-gram.y (grammar_declaration): Likewise.
9725 Use muscle_code_grow, so that we don't need stype_line any more.
9726 All uses changed.
9727
9728 * src/muscle_tab.c (muscle_grow): Fix comment.
9729
9730 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
9731 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
9732 Update copyright year to 2006.
9733
9734 2006-01-03 Akim Demaille <akim@epita.fr>
9735
9736 Have glr.cc pass (some of) the calc.at tests.
9737 * data/glr.cc (b4_parse_param_orig): New.
9738 (b4_parse_param): Improve its definition, and bound it more
9739 clearly in the skeleton.
9740 (b4_epilogue): Append, instead of prepending, in order to keep
9741 #line consistency.
9742 Simplify the generation of auxiliary functions: locations and
9743 purity are mandated.
9744 (b4_global_tokens_and_yystype): Honor it.
9745 * data/location.cc (c++.m4): Don't include it.
9746 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
9747 and AT_SKEL_CC_IF.
9748 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
9749 AT_LALR1_CC_IF.
9750 Be sure to initialize the first position's filename.
9751 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
9752 mandated anyway.
9753 (AT_CHECK_CALC_GLR_CC): New.
9754 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
9755
9756 2006-01-02 Akim Demaille <akim@epita.fr>
9757
9758 * src/output.c (output_skeleton): Don't hard wire the inclusion of
9759 c.m4.
9760 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
9761 * data/glr.cc: Do not include stack.hh.
9762
9763 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
9764
9765 * data/glr.c: Reformat whitespace with tabs.
9766 (b4_lpure_formals): Remove this unused m4 macro.
9767 * tests/cxx-type.at: Reformat whitespace with tabs.
9768 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
9769 since it's a member. Rename type to isNterm for clarity.
9770
9771 2005-12-29 Akim <akim@sulaco.local>
9772
9773 Let glr.cc catch up with symbol_value_print.
9774 * data/glr.cc (b4_yysymprint_generate): Replace by...
9775 (b4_yy_symbol_print_generate): this.
9776 (yy_symbol_print, yy_symbol_value_print): Declare them.
9777
9778 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
9779
9780 * src/location.h (boundary): Note that a line or column equal
9781 to INT_MAX indicates an overflow.
9782 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
9783 (rule_length_overflow, increment_rule_length, add_column_width):
9784 New functions.
9785 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
9786 (<SC_BRACED_CODE>"}"):
9787 Use increment_rule_length rather than incrementing it by hand.
9788 (adjust_location, handle_syncline): Diagnose overflow.
9789 (handle_action_dollar, handle_action_at):
9790 Fix bug with monstrosities like $-2147483648.
9791 Remove now-unnecessary checks.
9792 (scan_integer): Verify assumptions and remove now-unnecessary checks.
9793 (convert_ucn_to_byte): Verify assumptions.
9794 (handle_syncline): New arg LOC. All callers changed.
9795 Don't store through a value derived from char const * pointer.
9796
9797 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
9798 GCC warnings.
9799
9800 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
9801
9802 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
9803 Remove unnecessary forward static decls.
9804
9805 2005-12-27 Akim Demaille <akim@epita.fr>
9806
9807 * src/reader.c (grammar_current_rule_check): Also check that $$
9808 is used.
9809 Take the rule to check as argument, hence rename as...
9810 (grammar_rule_check): this.
9811 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
9812 Rename as...
9813 (grammar_rule_begin, grammar_rule_end): these, for consistency.
9814 (grammar_midrule_action, grammar_symbol_append): Now static.
9815 * tests/torture.at (input): Don't rely on the default action
9816 being always performed.
9817 * tests/calc.at: "Set" $$ even when the action is "cut" with
9818 YYERROR or other.
9819 * tests/actions.at (Exotic Dollars): Instead of using unused
9820 values, check that the warning is issued.
9821
9822 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
9823
9824 * NEWS: Improve wording for unused-value warnings.
9825
9826 2005-12-22 Akim Demaille <akim@epita.fr>
9827
9828 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
9829 (b4_yysymprint_generate): Rename as...
9830 (b4_yy_symbol_print_generate): this.
9831 Generate yy_symbol_print instead of yysymprint.
9832 Generate also yy_symbol_value_print, and use it.
9833
9834 2005-12-22 Akim Demaille <akim@epita.fr>
9835
9836 * NEWS: Warn about unused values.
9837 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
9838 a `used' member.
9839 (symbol_list_n_get, symbol_list_n_used_set): New.
9840 (symbol_list_n_type_name_get): Use symbol_list_n_get.
9841 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
9842 * src/reader.c (grammar_current_rule_check): Check that values are
9843 used.
9844 * src/symtab.c (symbol_print): Accept 0.
9845 * tests/existing.at: Remove the type information.
9846 Empty the actions.
9847 Remove useless actions (beware of mid-rule actions: perl -000
9848 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
9849 * tests/actions.at (Exotic Dollars): Use unused values.
9850 * tests/calc.at: Likewise.
9851 * tests/glr-regression.at (No users destructors if stack 0 deleted):
9852 Likewise.
9853
9854 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
9855 rule_useful_p.
9856
9857 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
9858
9859 Undo 2005-12-01 tentative license wording change. The wording is
9860 still being reviewed by the lawyers, and we don't want to wait for
9861 them before publishing a test release. For now, revert to the
9862 previous wording.
9863 * NEWS: Undo 2005-12-01 change.
9864 * data/glr.c: Revert to previous license wording.
9865 * data/glr.cc: Likewise.
9866 * data/lalr1.cc: Likewise.
9867 * data/location.cc: Likewise.
9868 * data/yacc.c: Likewise.
9869
9870 * NEWS: Reword %destructor vs YYABORT etc.
9871 * data/glr.c: Use American spacing, for consistency.
9872 * data/glr.cc: Likewise.
9873 * data/lalr1.cc: Likewise.
9874 * data/yacc.c: Likewise.
9875 * data/yacc.c: Reformat comments slightly.
9876 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
9877 for consistency. Fix some spelling errors and reword recently-included
9878 text slightly.
9879 * tests/cxx-type.at: Cast results of malloc, for C++.
9880
9881 2005-12-21 Joel E. Denny <address@hidden>
9882
9883 * tests/cxx-type.at: Construct a tree, count the parents of shared
9884 nodes, and free each node once and only once. Previously, the memory
9885 for semantic values was leaked instead.
9886
9887 2005-12-21 Joel E. Denny <address@hidden>
9888
9889 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
9890 (yylval, yylloc): If pure, #define to yystackp->yyval and
9891 yystackp->yyloc similar to yychar and yynerrs.
9892 (yyparse): If pure, remove local yylval and yylloc. Add local
9893 yystackp to accommodate pure definitions of yylval and yylloc.
9894 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
9895 yylvalp and yyllocp to &yylval and &yylloc.
9896 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
9897 namespace. Previously, nerrs and char were missing, but lval and lloc
9898 weren't necessary.
9899 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
9900 yylvalp and yyllocp parameters since, if pure, these are now always
9901 accessible through yystackp. If not pure, they are still accessible
9902 globally.
9903 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
9904 `if (YYID (N))' to pacify lint.
9905
9906 2005-12-21 Akim Demaille <akim@epita.fr>
9907
9908 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
9909 destroy the RHS symbols of a rule.
9910 * data/yacc.c (yylen): Initialize to 0.
9911 Keep its value to the number of items to possibly shift.
9912 In particular, a regular successful parse that ends on YYFINAL by
9913 a (internal) YYACCEPT must not have yylen != 0.
9914 (yyerrorlab, yyreturn): Pop the RHS.
9915 Reorder a bit to emphasize the `shifting' bits of code.
9916 (YYPOPSTACK): Now accept a number of items to pop.
9917 * data/lalr1.cc: Likewise.
9918 * data/glr.c: Formatting changes.
9919 Use goto instead of fall through.
9920 * doc/bison.texinfo (Destructor Decl): Complete.
9921
9922 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9923
9924 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9925 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
9926 * djgpp/config.bat: Replace every occurence of the file name
9927 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
9928 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
9929 * djgpp/config.sed: Replace every occurence of the file name
9930 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
9931 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
9932 * djgpp/djunpack.bat: DJGPP specific file.
9933 * djgpp/fnchange.lst: DJGPP specific file.
9934 * djgpp/README.in: Add new information about how to unpack the bison
9935 source on MSDOS and other systems which have 8.3 file name restrictions
9936 using djunpack.bat and fnchange.lst.
9937
9938 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
9939
9940 * bootstrap (build_cvs_prefix): Remove; unused.
9941 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
9942 when getting gnulib.
9943
9944 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
9945
9946 * data/glr.c: Reorder typedef declarations for structs to match order
9947 of struct declarations.
9948 Rename yystack everywhere to yystackp except in yyparse where it's not
9949 a pointer.
9950 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
9951 consistency.
9952 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
9953 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
9954 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
9955 lint.
9956
9957 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
9958
9959 * tests/sets.at (Accept): Fix typos in regular expression used to
9960 sed out the final state number.
9961
9962 Work around portability problem on Solaris 10: flex-generated
9963 files include <stdio.h> before <config.h>, which messes up
9964 because the latter defines __EXTENSIONS__. Address the problem
9965 by creating two new little files that include <config.h> first,
9966 then include the flex-generated files. Rewrite everyone else
9967 to include <config.h> first, as well.
9968 * lib/timevar.c: Always include "config.h".
9969 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
9970 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
9971 (EXTRA_bison_SOURCES): New macro.
9972 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
9973 * src/system.h: Don't include config.h.
9974 * src/LR0.c: Include <config.h> first.
9975 * src/assoc.c: Likewise.
9976 * src/closure.c: Likewise.
9977 * src/complain.c: Likewise.
9978 * src/conflicts.c: Likewise.
9979 * src/derives.c: Likewise.
9980 * src/files.c: Likewise.
9981 * src/getargs.c: Likewise.
9982 * src/gram.c: Likewise.
9983 * src/lalr.c: Likewise.
9984 * src/location.c: Likewise.
9985 * src/main.c: Likewise.
9986 * src/muscle_tab.c: Likewise.
9987 * src/nullable.c: Likewise.
9988 * src/output.c: Likewise.
9989 * src/parse-gram.y: Likewise.
9990 * src/print.c: Likewise.
9991 * src/print_graph.c: Likewise.
9992 * src/reader.c: Likewise.
9993 * src/reduce.c: Likewise.
9994 * src/relation.c: Likewise.
9995 * src/state.c: Likewise.
9996 * src/symlist.c: Likewise.
9997 * src/symtab.c: Likewise.
9998 * src/tables.c: Likewise.
9999 * src/uniqstr.c: Likewise.
10000 * src/vcg.c: Likewise.
10001
10002 * src/parse-gram.y: Fix minor problems uncovered by lint.
10003 (current_lhs, current_lhs_location): Now static.
10004 (current_assoc): Remove unused variable.
10005
10006 Cleanups so that Bison-generated parsers have less lint.
10007 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
10008 Prepend /*ARGSUSED*/, for lint's sake.
10009 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
10010 definition if 'lint' is defined.
10011 (YYID): New macro (or function, if lint).
10012 All uses of /*CONSTCOND*/0 replaced by YYID(0).
10013 * data/yacc.c: Likewise.
10014 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
10015 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
10016 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
10017 is C++ only.
10018 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
10019 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
10020 Use YYID(0) rather than 0, for lint.
10021 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
10022 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
10023
10024 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
10025
10026 * tests/glr-regression.at
10027 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10028 Close memory leak reported by twlevo.
10029
10030 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
10031
10032 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
10033 all stacks.
10034 (yyparse): Iterate another stack in order to call user destructors.
10035 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10036 New test case.
10037 (Duplicated user destructor for lookahead): This test now is expected
10038 to succeed.
10039
10040 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
10041
10042 * NEWS: Document the following change.
10043 * data/yacc.c: Say "parser skeleton" rather than "file", since
10044 it's no longer just a file.
10045 * data/glr.c: Grant a special exception for C GLR parsers, that
10046 reads like the already-existing exception for C LALR(1) parsers.
10047 * data/glr.cc: Likewise.
10048 * data/lalr1.cc: Likewise.
10049 * data/location.cc: Likewise.
10050 * data/yacc.c: Reword the "written by" statement to clarify that
10051 it was the parser skeleton, not the entire output file.
10052 * data/glr.c: Written by Paul Hilfinger.
10053 * data/glr.cc: Written by Akim Demaille.
10054 * data/lalr1.cc: Likewise.
10055
10056 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
10057
10058 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
10059 Fix typos in previous change that broke 'make check'.
10060 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
10061 supported in C.
10062 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
10063 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
10064 We can revert this once things settle down.
10065
10066 * src/conflicts.c (conflicts_print): Don't print file name twice
10067 when %expect fails because there were no conflicts.
10068 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
10069 change.
10070 * tests/conflicts.at (%expect not enough, %expect too much):
10071 (%expect with reduce conflicts): Adjust to new behavior.
10072
10073 2005-11-18 Akim Demaille <akim@epita.fr>
10074
10075 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
10076 errors.
10077 * NEWS: Document this.
10078 * doc/bison.texinfo (Expect Decl): Likewise.
10079
10080 2005-11-16 Akim Demaille <akim@epita.fr>
10081
10082 Generalize the display of semantic values and locations in traces.
10083 * data/glr.c (yy_reduce_print): Fix indices (again).
10084 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
10085 literal integers.
10086 * data/lalr1.cc (yyreduce_print): Rename as...
10087 (yy_reduce_print): this.
10088 Display values and locations.
10089 * data/yacc.c (yy_reduce_print): Likewise.
10090 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
10091 (yysymprint): Move higher to be visible from yy_reduce_print).
10092 (yyparse): Adjust.
10093 * tests/calc.at: Adjust the expected length of the traces.
10094
10095 2005-11-14 Akim Demaille <akim@epita.fr>
10096
10097 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
10098 from 1 to N, while values and location start at 0.
10099 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
10100
10101 2005-11-14 Akim Demaille <akim@epita.fr>
10102
10103 * data/glr.c (yy_reduce_print): Fix the $ number.
10104
10105 2005-11-14 Akim Demaille <akim@epita.fr>
10106
10107 "Use" parse parameters.
10108 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
10109 * data/glr.c, data/glr.cc: Use them.
10110 * data/glr.c (YYUSE): Have a C++ definition that supports
10111 non-pointer types.
10112
10113 2005-11-14 Akim Demaille <akim@epita.fr>
10114
10115 * data/glr.c (yyexpandGLRStack): Declare only if defined.
10116
10117 2005-11-14 Akim Demaille <akim@epita.fr>
10118
10119 * data/glr.cc: New.
10120 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
10121
10122 2005-11-12 Akim Demaille <akim@epita.fr>
10123
10124 Let position and location be PODs.
10125 * data/location.cc (position::initialize, location::initialize): New.
10126 (position::position, location::location): Define only if
10127 b4_location_constructors is defined.
10128 * data/lalr1.cc (b4_location_constructors): Define it for backward
10129 compatibility.
10130 * doc/bison.texinfo (Initial Action Decl): Use initialize.
10131
10132 2005-11-12 Akim Demaille <akim@epita.fr>
10133
10134 * data/lalr1.cc: Move the body of the ctor and dtor into the
10135 parser file (instead of the header).
10136 Wrap the implementations in a "namespace yy".
10137
10138 2005-11-12 Akim Demaille <akim@epita.fr>
10139
10140 Have glr.c include its header file when created.
10141 * data/glr.c (b4_shared_declarations): New.
10142 Output them verbatim in the parser if !%defines, otherwise
10143 output then in the header file, and include it instead.
10144
10145 2005-11-11 Akim Demaille <akim@epita.fr>
10146
10147 * data/glr.c: Comment changes.
10148
10149 2005-11-11 Akim Demaille <akim@epita.fr>
10150
10151 When yydebug, report semantic and location values for reductions.
10152 * data/glr.c (yy_reduce_print): Report the semantic values and the
10153 locations.
10154 (YY_REDUCE_PRINT): Adjust.
10155 (yyglrReduce): Use them.
10156 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
10157 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
10158 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
10159 traces.
10160
10161 2005-11-10 Akim Demaille <akim@epita.fr>
10162
10163 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
10164 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
10165 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
10166
10167 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
10168
10169 * m4/cxx.m4, examples/Makefile.am: Don't build
10170 examples/calc++ if no C++ compiler is available. (trivial change)
10171
10172 2005-11-09 Akim Demaille <akim@epita.fr>
10173
10174 * src/scan-skel.l: Use a couple of asserts.
10175
10176 2005-11-03 Akim Demaille <akim@epita.fr>
10177
10178 In some (weird) cases, the final state number is incorrect.
10179 Reported by Alexandre Duret-Lutz.
10180 * src/LR0.c (state_list_append): Remove the computation of
10181 final_state.
10182 (save_reductions): Do it here.
10183 (get_state): Alpha conversion.
10184 (generate_states): Use a for loop.
10185 * src/gram.h (item_number_is_rule_number)
10186 (item_number_is_symbol_number): New.
10187 * src/state.c: Use assert.
10188 * src/system.h: Include assert.h.
10189 * tests/sets.at (Accept): New.
10190
10191 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10192
10193 * data/glr.c (yyfill): Adjust comment.
10194 (yyresolveAction): Initialize default location properly
10195 for empty right-hand sides.
10196 (yydoAction): Ditto.
10197 Add comment explaining apparently dead code.
10198 * tests/glr-regression.at
10199 (Incorrectly initialized location for empty right-hand side in GLR):
10200 New test.
10201
10202 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
10203
10204 * bootstrap (cleanup_gnulib): New function. Use it to clean up
10205 gnulib when interrupted. This fixes some race conditions and
10206 works around some portability problems (one noted by Paul
10207 Hilfinger).
10208
10209 2005-10-22 Akim <akim@epita.fr>
10210
10211 * Makefile.cfg: Adjust to config -> build-aux.
10212 Reported by twledo.
10213
10214 2005-10-21 Akim Demaille <akim@epita.fr>
10215
10216 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
10217 the %parse-params.
10218 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
10219 * data/yacc.c (b4_Pure_if): Rename as...
10220 (b4_yacc_pure_if): this.
10221 (YY_SYMBOL_PRINT, yyparse): Adjust.
10222 * doc/bison.texinfo: Formatting changes.
10223
10224 2005-10-21 Akim Demaille <akim@epita.fr>
10225
10226 Finish the transition config -> build-aux.
10227 * configure.ac, Makefile.am: Use build-aux.
10228 * config/prev-version, config/announce-gen, config/Makefile.am:
10229 Move to...
10230 * build-aux/prev-version, build-aux/announce-gen,
10231 * build-aux/Makefile.am: here.
10232
10233 2005-10-14 Akim Demaille <akim@epita.fr>
10234
10235 * examples/calc++/test: Use set -x only when VERBOSE.
10236
10237 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
10238
10239 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
10240 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
10241
10242 2005-10-13 Akim Demaille <akim@epita.fr>
10243
10244 * src/scan-skel.l: Output the base name parts of the parser and
10245 header file names.
10246 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
10247 additional checks.
10248 Use this to exercise C++ outputs in subdirs.
10249 Reported by Oleg Smolsky.
10250
10251 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
10252
10253 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
10254 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
10255 Problem reported by John P. Hartmann.
10256 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
10257 already defined it.
10258
10259 2005-10-12 Akim Demaille <akim@epita.fr>
10260
10261 * src/parse-gram.y (version_check): Exit 63 to please missing
10262 (stands for "version mismatch).
10263 * tests/input.at, doc/bison.texinfo: Adjust.
10264
10265 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
10266
10267 Work around portability problems with Visual Age C compiler
10268 (xlc and xlC_r) reported by John P. Hartmann.
10269 * data/location.cc (initial_column, initial_line): Remove.
10270 All uses replaced by 0 and 1.
10271 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
10272 that xlc complains about.
10273 * src/scan-skel.l (skel_wrap): Likewise.
10274 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
10275 as __STDC__.
10276 * data/yacc.c (YYMODERN_C): New macro, which also looks at
10277 __STDC_VERSION__. Use it everywhere instead of looking at
10278 __STDC__ and __cplusplus.
10279
10280 2005-10-10 Akim Demaille <akim@epita.fr>
10281
10282 * examples/calc++/test: Be quiet unless VERBOSE.
10283
10284 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
10285
10286 * data/c.m4 (yydestruct, yysymprint):
10287 Use YYUSE instead of casting to void.
10288 * data/glr.c (YYUSE): New macro.
10289 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10290 Use it instead of rolling our own.
10291 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10292 (YYCHK1):
10293 Use /*CONSTCOND*/ to suppress lint warnings.
10294 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10295 (YY_STACK_PRINT): Use 'false' not '0'.
10296 (YYUSE): New macro.
10297 (yysymprint_, yydestruct_): Use it instead of rolling our own.
10298 * data/yacc.c (YYUSE): New macro.
10299 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
10300 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
10301 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
10302
10303
10304 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
10305 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
10306
10307 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
10308
10309 Undo the parts of the unlocked-I/O change that substituted
10310 putc or puts for printf. This might hurt performance a bit,
10311 but some people prefer the printf style.
10312 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
10313 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
10314 All uses replaced by YYFPRINTF and YYDPRINTF.
10315 * data/yacc.c: Likewise.
10316 * lib/bitset.c (bitset_print): Likewise.
10317 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
10318 putc and puts.
10319 * lib/lbitset.c (debug_lbitset): Likewise.
10320 * src/closure.c (print_firsts, print_fderives): Likewise.
10321 * src/gram.c (grammar_dump): Likewise.
10322 * src/lalr.c (look_ahead_tokens_print): Likewise.
10323 * src/output.c (escaped_output): Likewise.
10324 (user_actions_output): Break apart two printfs.
10325 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
10326 * src/reduce.c (reduce_print): Likewise.
10327 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10328 * src/system.h: Include unlocked-io.h rathe than stdio.h.
10329
10330 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10331 Use assignments rather than casts-to-void to suppress
10332 unused-variable warnings. This pacifies 'lint'.
10333 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
10334 unused-variable warnings.
10335
10336 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10337
10338 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10339
10340 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
10341
10342 Use unlocked I/O for a minor performance improvement on hosts like
10343 GNU/Linux and Solaris that support unlocked I/O. The basic idea
10344 is to use the gnlib unlocked-io module, and to prefer putc and
10345 puts to printf when either will work (since the latter doesn't
10346 come in an unlocked flavor).
10347 * bootstrap (gnulib_modules): Add unlocked-io.
10348 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
10349 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
10350 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
10351 and similarly for puts and putc and printf.
10352 * data/yacc.c: Likewise.
10353 * lib/bitset.c (bitset_print): Likewise.
10354 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
10355 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
10356 to printf.
10357 * lib/lbitset.c (debug_lbitset): Likewise.
10358 * src/closure.c (print_firsts, print_fderives): Likewise.
10359 * src/gram.c (grammar_dump): Likewise.
10360 * src/lalr.c (look_ahead_tokens_print): Likewise.
10361 * src/output.c (escaped_output): Likewise.
10362 (user_actions_output): Coalesce two printfs.
10363 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
10364 * src/reduce.c (reduce_print): Likewise.
10365 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10366 * src/system.h: Include unlocked-io.h rather than stdio.h.
10367
10368 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
10369 this confuses xgettext.
10370
10371 2005-10-02 Akim Demaille <akim@epita.fr>
10372
10373 * bootstrap (gnulib_modules): Add strverscmp.
10374 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
10375 * m4/.cvsignore: Add strverscmp.m4.
10376 * src/parse-gram.y (%require): New token, new rule.
10377 (version_check): New.
10378 * src/scan-gram.l (%require): Adjust.
10379 * tests/input.at (AT_REQUIRE): New.
10380 Use it.
10381 * doc/bison.texinfo (Require Decl): New.
10382 (Calc++ Parser): Use %require.
10383
10384 2005-10-02 Akim Demaille <akim@epita.fr>
10385
10386 * data/location.cc: New.
10387
10388 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
10389 Akim Demaille <akim@epita.fr>
10390
10391 Make sure -odir/foo.cc creates dir/location.hh etc.
10392 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
10393 (spec_file_prefix, spec_verbose_file, spec_graph_file)
10394 (spec_defines_file): Now const.
10395 (dir_prefix): New.
10396 (short_base_name): Remove.
10397 * src/files.c: Adjust.
10398 (dirname.h): Include.
10399 (base_name): Don't prototype it.
10400 (finput): Remove, duplicates gram_in.
10401 (full_base_name, short_base_name): Replace by...
10402 (all_but_ext, all_but_tab_ext): these.
10403 (compute_base_names): Rename as...
10404 (compute_file_name_parts): this.
10405 Update to compute the new variables, including dir_prefix.
10406 Adjust dependencies.
10407 * src/output.c (prepare): Output them.
10408 * src/reader.c: Adjust to use gram_in, not finput.
10409 * src/scan-skel.l (@dir_prefix@): New.
10410
10411 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10412
10413 * lib/subpipe.c: New function end_of_output_subpipe() added
10414 to allow support for non-posix systems. This is a no-op function
10415 for posix systems.
10416
10417 * lib/subpipe.h: New function end_of_output_subpipe() added
10418 to allow support for non-posix systems. This is a no-op function
10419 for posix systems.
10420
10421 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
10422 handle the lack of pipe/fork functionality on non-posix systems.
10423
10424 * djgpp/Makefile.maint: DJGPP specific file.
10425
10426 * djgpp/README.in: DJGPP specific file.
10427
10428 * djgpp/config.bat: DJGPP specific configuration file.
10429
10430 * djgpp/config.sed: DJGPP specific configuration file.
10431
10432 * djgpp/config.site: DJGPP specific configuration file.
10433
10434 * djgpp/config_h.sed: DJGPP specific configuration file.
10435
10436 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
10437
10438 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
10439
10440 2005-10-02 Akim Demaille <akim@epita.fr>
10441
10442 * data/location.cc: New, extract from...
10443 * data/lalr1.cc: here.
10444 (location.hh): Include it after the user prologue, in case the
10445 filename type is defined by the user.
10446 Forward declation location and position before the pre-prologue.
10447 (yyresult_): Rename as...
10448 (yyresult): this, it's a local variable, not an attribute.
10449 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
10450
10451 2005-10-01 Akim Demaille <akim@epita.fr>
10452
10453 * examples/extexi: Restore the #line generation.
10454
10455 2005-09-30 Akim Demaille <akim@epita.fr>,
10456 Alexandre Duret-Lutz <adl@gnu.org>
10457
10458 Move the token type and YYSTYPE in the parser class.
10459 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
10460 (parser::token): New, from the moved free definition of tokens.
10461 (parser::semantic_value): Now a full definition instead of an
10462 indirection to YYSTYPE.
10463 (b4_post_prologue): No longer included in the header file, but
10464 in the implementation file.
10465 * doc/bison.texi (C+ Language Interface): Update.
10466 * src/parse-gram.y: Support unary %define.
10467 * tests/actions.at: Define global_tokens_and_yystype for backward
10468 compatibility until we update the tests.
10469 * tests/calc.at: Idem.
10470 (first_line, first_column, last_line, last_column): Define for lalr1.cc
10471 to simplify the code.
10472
10473 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
10474
10475 Port to SunOS 4.1.4, which lacks strtoul and strerror.
10476 Ah, the good old days! Problem reported by Peter Klein.
10477 * bootstrap (gnulib_modules): Add strerror, strtoul.
10478 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
10479 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
10480
10481 2005-09-29 Akim Demaille <akim@epita.fr>
10482
10483 * data/c.m4 (b4_error_verbose_if): New.
10484 * data/lalr1.cc: Use it.
10485 (YYERROR_VERBOSE_IF): Remove.
10486 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
10487 parser members, replaced by...
10488 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
10489 local variables.
10490 (yysyntax_error_): Takes the state number as argument.
10491 (yyreduce_print_): Use the argument yyrule, not the former
10492 attribute yyn_.
10493
10494 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
10495
10496 * bootstrap (gnulib_modules): Add verify.
10497 * lib/.cvsignore: Add verify.h.
10498 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
10499 * src/system.h (verify): Remove.
10500 Include verify.h instead.
10501 * src/tables.c (tables_generate): Use new API for 'verify'.
10502
10503 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
10504
10505 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
10506 local variables whose names begin with 'yy'.
10507 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
10508 Trivial changes from Joel E. Denny.
10509
10510 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
10511 it itself.
10512 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
10513 don't use alloca any more.
10514
10515 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
10516 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
10517 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
10518 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
10519 to match yacc.c, to test more hosts.
10520
10521 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
10522
10523 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
10524 doesn't affect behavior.
10525 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
10526 Solaris, AIX, MSC.
10527 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
10528 This works a bit better with glibc, if user code has already included
10529 stdlib.h.
10530 * doc/bison.texinfo (Bison Parser): Document that users can't
10531 arbitrarily use malloc and free for other purposes. Document
10532 that <alloca.h> and <malloc.h> might be included.
10533 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
10534 user must declare alloca.
10535
10536 * HACKING (release): Forwarn the Translation Project about
10537 stable releses.
10538
10539 2005-09-20 Akim Demaille <akim@epita.fr>
10540
10541 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
10542
10543 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
10544
10545 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
10546 (YYSTACK_ALLOC_MAXIMUM): Use it.
10547 (yysyntax_error): New function.
10548 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
10549 multiple syntax errors are reported, and alloca is being used.
10550 Instead, reallocate buffers twice as big each time, so that
10551 we waste at most half the allocated memory. Start with a small
10552 (128-byte) buffer that will suffice in most cases anyway.
10553 Use yysyntax_error to do most of the work.
10554
10555 * doc/bison.texinfo (Error Reporting, Table of Symbols):
10556 yynerrs is the number of errors reported, not the number of
10557 errors encountered.
10558
10559 * tests/glr-regression.at (Duplicated user destructor for lookahead):
10560 Mark it as expected to fail.
10561 Cast result of malloc; problem reported by twlevo@xs4all.nl.
10562 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
10563 Don't start user-code symbols with "yy", to avoid name space problems.
10564
10565 2005-09-19 Akim Demaille <akim@epita.fr>
10566
10567 Remove the traits, failed experiment.
10568 It never proved useful, and anyway because of the current
10569 definition, it was not possible to have several specialization of
10570 this traits, making it useless.
10571 * data/lalr1.cc (yy:traits): Remove.
10572 Inline its definitions in the parser class.
10573
10574 2005-09-19 Akim Demaille <akim@epita.fr>
10575
10576 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
10577 least Mac OSX with a /usr/local install of gettext.
10578
10579 2005-09-19 Akim Demaille <akim@epita.fr>
10580
10581 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
10582 and yytoken for similarity with the other skeletons.
10583
10584 2005-09-19 Akim Demaille <akim@epita.fr>
10585
10586 * NEWS, configure.ac: update version number to 2.1a.
10587
10588 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
10589
10590 * NEWS: Version 2.1.
10591
10592 * NEWS: Remove notice of yytname change, since it was never in an
10593 official release.
10594 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
10595 diagnostic.
10596 * src/output.c (prepare): Likewise.
10597 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
10598 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
10599 is not defined. This is an awful hack, but it's enough for now.
10600 All callers changed.
10601 * tests/glr-regression-at (make_value): Args are const pointers now,
10602 to avoid GCC warning.
10603 (Duplicated user destructor for lookahead): New test. Currently
10604 skipped. It fails on my host but I'm not sure it'll always fail.
10605
10606 2005-09-16 Akim Demaille <akim@epita.fr>
10607
10608 * src/symtab.h (struct symbol): Declare the printer and destructor
10609 as const, to avoid accidental calls to free.
10610 (symbol_destructor_set, symbol_printer_set): Adjust.
10611 * src/symtab.c: Adjust.
10612
10613 2005-09-16 Akim Demaille <akim@epita.fr>
10614
10615 * data/c.m4 (b4_token_enums): New.
10616 (b4_token_defines): Rename as...
10617 (b4_token_enums_defines): this.
10618 (b4_token_defines): New, output only the #defines.
10619 * data/yacc.c, data/glr.c: Adjust.
10620 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
10621 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
10622 as default values.
10623
10624 2005-09-16 Akim Demaille <akim@epita.fr>
10625
10626 * data/lalr1.cc (yylex_): Remove, inline its code.
10627 (yyreport_syntax_error_): Remove, replaced by...
10628 (yysyntax_error_): this which returns a string and leaves to the
10629 caller the call to the users' error function.
10630 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
10631 Move from members of the parser object...
10632 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
10633 to local variables of the parse function.
10634
10635 2005-09-16 Akim Demaille <akim@epita.fr>
10636
10637 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
10638 since it's in Bison's name space.
10639
10640 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
10641
10642 * data/glr.c (yyresolveValue): Add default case to pacify
10643 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
10644
10645 * NEWS: Document when yyparse started to return 2.
10646 * doc/bison.texinfo (Parser Function): Document when yyparse
10647 returns 2.
10648
10649 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
10650 (b4_filename_type): Renamed back from b4_file_name_type. All uses
10651 changed.
10652 (class position): file_name -> filename (reverting). All uses changed.
10653
10654 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
10655
10656 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
10657 do anything if $@ exists. This reverts part of the 2005-07-07
10658 patch.
10659
10660 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
10661
10662 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
10663 contains obsolete information and isn't worth distributing as a
10664 separate file anyway.
10665 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
10666 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
10667 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
10668 (yyparse): Abort if user code uses longjmp to throw an unexpected
10669 value.
10670
10671 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
10672
10673 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
10674 Suggested by twlevo@xs4all.nl.
10675
10676 * data/glr.c (YYCHK1): Do not assume YYE is in range.
10677 This avoids a diagnostic from gcc -Wswitch-enum.
10678 Problem reported by twlevo@xs4all.nl.
10679
10680 * doc/bison.texinfo: Don't use "filename", as per GNU coding
10681 standards. Use "file name" or "file" or "name", depending on
10682 the context.
10683 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
10684 not to hack/foo.tab.c.
10685 (Calc++ Top Level): 2nd arg of main is not const.
10686 * data/glr.c: b4_filename -> b4_file_name.
10687 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
10688 All uses changed.
10689 (class position): filename -> file_name. All uses changed.
10690 * data/yacc.c: b4_filename -> b4_file_name.
10691 * lib/bitset.h: filename -> file_name in local vars.
10692 * lib/bitset_stats.c: Likewise.
10693 * src/files.c: Likewise.
10694 * src/scan-skel.l ("@output ".*\n): Likewise.
10695 * src/files.c (file_name_split): Renamed from filename_split.
10696 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
10697
10698 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
10699
10700 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
10701 to accommodate latest gnulib.
10702
10703 * tests/glr-regression.at (Duplicate representation of merged trees):
10704 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
10705
10706 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
10707 needed.
10708
10709 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
10710
10711 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
10712 All uses changed. Invoke user destructor after an error during a
10713 split parse (trivial change from Joel E. Denny).
10714
10715 * tests/glr-regression.at
10716 (User destructor after an error during a split parse): New test case.
10717 Problem reported by Joel E. Denny in:
10718 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
10719
10720 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
10721
10722 * README-cvs: Give URLs for recommended tools.
10723 Mention Gzip version problem, and bootstrapping issues.
10724 Remove troubleshooting section, as it's somewhat obsolete.
10725
10726 * bootstrap (no_cache): New var, to accommodate different wget
10727 variants. Use it instead of '-C off'. Problem reported by
10728 twlevo@xs4all.nl.
10729
10730 * data/glr.c (yydestroyStackItem): New function.
10731 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
10732 debugging information. Problem reported by Joel E. Denny.
10733
10734 2005-08-25 Akim Demaille <akim@epita.fr>
10735
10736 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
10737
10738 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
10739
10740 * data/glr.c (yyrecoverSyntaxError, yyreturn):
10741 Don't invoke destructor on unresolved entries.
10742 * tests/glr-regression.at
10743 (User destructor for unresolved GLR semantic value): New test case.
10744 Problem reported by Joel E. Denny in:
10745 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
10746
10747 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
10748
10749 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
10750 Add strnlen.c.
10751 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
10752 lib-prefix.m4, po.m4.
10753
10754 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
10755 in yydestruct diagnostic, since it might not be an error.
10756 Problem reported by Joel Denny near end of
10757 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
10758 * data/lalr1.cc (yyerturn): Likewise.
10759 * data/yacc.c (yyreturn): Likewise.
10760 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
10761
10762 * src/files.c: Remove obsolete FIXME comment.
10763
10764 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
10765 with the other templates, and to fix bogus run-on messages such
10766 as the one reported at the end of
10767 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
10768 All callers changed to avoid the newline.
10769 (yyprocessOneStack): Output two lines rather than one, to accommodate
10770 the above change. This changes the debug output format slightly.
10771
10772 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
10773 reported by Joel E. Denny in
10774 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
10775 (trivial change).
10776 * tests/glr-regression.at (Duplicate representation of merged trees):
10777 New test, from Joel E. Denny in:
10778 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
10779 * THANKS: Add Joel E. Denny.
10780
10781 * configure.ac (AC_INIT): Bump to 2.0c.
10782
10783 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
10784
10785 * NEWS: Version 2.0b.
10786
10787 * Makefile.am (SUBDIRS): Put examples before tests, so that
10788 "make check" doesn't finish with "All 1 tests passed".
10789
10790 * tests/regression.at (Token definitions): Don't rely on
10791 AT_PARSER_CHECK for data that contains backslashes. It currently
10792 uses 'echo', and 'echo' isn't portable if its argument contains
10793 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
10794 that the byte '\0xff' is not printable in the C locale; it is,
10795 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
10796 not printable, so use '\0x81' to test.
10797
10798 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
10799 version of GCC, since the macro is used with non-GCC compilers.
10800
10801 Fix core dump reported by Pablo De Napoli in
10802 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
10803 * tests/regression.at (Invalid inputs with {}): New test.
10804 * src/parse-gram.y (token_name): Translate type before using
10805 it as an index.
10806
10807 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
10808 the user's name space. All uses changed to __attribute__
10809 ((__unused__)).
10810 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
10811 Add __attribute__ ((__noreturn__)).
10812
10813 * etc/clcommit: Remove. We weren't using it, and it failed
10814 "make maintainer-distcheck".
10815 * Makefile.maint: Merge from coreutils.
10816 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
10817 (syntax-check-rules): Change list of rules as described below.
10818 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
10819 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
10820 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
10821 (sc_trailing_space): New rules.
10822 (sc_xalloc_h_in_src): Remove.
10823 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
10824 (sc_space_tab, sc_error_exit_success, sc_changelog):
10825 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
10826 (makefile-check, po-check, author_mark_check):
10827 (makefile_path_separator_check, copyright-check):
10828 Use grep -n, to make it easier to find violations.
10829 Use CVS_LIST and CVS_LIST_EXCEPT.
10830 (header_regexp, h_re): Remove.
10831 (dd_c): New macro.
10832 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
10833 (my-distcheck): Use more-modern GCC flags.
10834 (signatures, %.asc): Remove.
10835 (rel-files, announcement): Remove signatures.
10836 Restore old updating code, even though we don't use it, so
10837 that we're the same as coreutils.
10838 (alpha, beta, major): Depend on news-date-check.
10839 Make the upload commands.
10840
10841 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
10842 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
10843 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
10844 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
10845 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
10846 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
10847 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
10848 * tests/sets.at: Likewise.
10849
10850 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
10851 we comment out the Autoconf version number.
10852 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
10853 it's error-prone and "make maintainer-distcheck" rejects it.
10854
10855 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
10856 Indent calls to "error" to pacify "make maintainer-distcheck",
10857 when the calls are not intended to be translated.
10858 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
10859
10860 * src/Makefile.am (DEFS): Use +=, to pacify
10861 "make maintainer-distcheck".
10862 (bison_SOURCES): Add scan-skel.h.
10863 (sc_tight_scope): New rule, from coreutils.
10864
10865 * src/files.c (src_extension, header_extension):
10866 Now static, not extern.
10867 * src/getargs.c (short_options): Likewise.
10868 * src/muscle_tab.c (muscle_table): Likewise.
10869 * src/parse-gram.y (current_class, current_type, current_prec):
10870 Likewise.
10871 * src/reader.c (grammar_end, previous_rule_end): Likewise.
10872 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
10873 * src/main.c (main): Cast bindtextdomain and textdomain calls to
10874 void, to avoid warning when NLS is disabled.
10875 * src/output.c: Include scan-skel.h.
10876 (scan_skel): Remove decl, since scan-skel.h does this.
10877 (output_skeleton):
10878 Indent calls to "error" to pacify "make maintainer-distcheck".
10879 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
10880 * src/reader.h (gram_end, gram_lineno): New decls to pacify
10881 "make maintainer-distcheck".
10882 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
10883 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
10884 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
10885 (skel_lex_destroy, scan_skel): Move these decls to...
10886 * src/scan-skel.h: New file.
10887 * src/uniqstr.c (uniqstr_assert):
10888 Indent calls to "error" to pacify "make maintainer-distcheck".
10889
10890 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
10891 not @VAR@.
10892
10893 * tests/torture.at: Revamp to avoid misuse of atoi that
10894 "make maintainer-distcheck" complained about.
10895
10896 * examples/extexi (message): Don't print a message more than once,
10897 and omit line-number decoration that makes Emacs compile think
10898 that informative messages are worth worrying about.
10899
10900 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
10901
10902 * configure.ac: Update version number.
10903
10904 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
10905 accidentally.
10906 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
10907 autogenerated by the maintainer.
10908 * examples/calc++/.cvsignore: Add *.yy.
10909
10910 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
10911 * lib/bitset_stats.c (bitset_stats_init): Likewise.
10912 * lib/bitsetv.c (bitsetv_alloc): Likewise.
10913
10914 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
10915
10916 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
10917 from maintainer-distcheck about casting the argument of 'free'.
10918
10919 * NEWS: Mention recent yytname changes.
10920 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
10921
10922 * bootstrap: For translations that have not yet been upgraded to
10923 the new runtime-po domain, prime the pump by extracting the
10924 relevant strings from the obsolete translations. This code can be
10925 removed once the bison-runtime domain has been translated by each
10926 team.
10927
10928 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
10929 now that token names are already quoted.
10930
10931 Fix problem reported by Anthony Heading.
10932 * data/glr.c (YYTOKEN_TABLE): New macro.
10933 (yytname): Define if YYTOKEN_TABLE.
10934 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
10935 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
10936 (YYERROR_VERBOSE): Define the same way the other skeletons do.
10937 * src/output.c (prepare_symbols): Output token_table_flag.
10938
10939 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
10940
10941 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
10942 again if the first call fails.
10943
10944 * data/glr.c (yytnamerr): New function.
10945 (yyreportSyntaxError): Use it to dequote most string literals.
10946 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
10947 with other skeletons. All uses changed.
10948 (yytnameerr_): New function.
10949 (yyreport_syntax_error): Use it to dequote most string literals.
10950 * data/yacc.c (yytnamerr): New function.
10951 (yyerrlab): Use it to decode most string literals.
10952 * doc/bison.texinfo (Decl Summary, Calling Convention):
10953 Clarify quoting convention of yytname.
10954 * src/output.c (prepare_symbols): Quote all names. This undoes
10955 the 2005-04-17 change, which is now accomplished (mostly) via
10956 changes in the parsers as described above.
10957 * tests/regression.at (Token definitions, Web2c Actions):
10958 Undo most 2005-04-17 change here, too.
10959
10960 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
10961
10962 Fix more problems reported by twlevo@xs4all.nl.
10963 * tests/cxx-type.at: Don't pipe output of ./types through sed to
10964 remove trailing spaces. This loses the exit status of ./types,
10965 and isn't needed since ./types shouldn't be emitting trailing
10966 spaces.
10967 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
10968 as the stack isn't valid in that case.
10969
10970 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
10971 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
10972 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
10973 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
10974 is used.
10975 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
10976 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
10977 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
10978 Likewise.
10979
10980 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
10981 overly-picky compilers that reject 'char *foo = "bar";'.
10982
10983 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
10984 to FILE * parameter, not to stderr. This fixes a typo introduced
10985 in the 2005-07-12 change.
10986
10987 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
10988 warnings from GCC 4.
10989
10990 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
10991 (yyglrShiftDefer, yysplitStack):
10992 Remove unused parameters b4_pure_formals. All uses changed.
10993 (yyglrShift): Remove unused parameters b4_user_formals.
10994 All uses changed.
10995 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
10996
10997 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
10998
10999 Destructor cleanups and regularization among the three skeletons.
11000 * NEWS: Document the behavior changes.
11001 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
11002 stack before failing, as the cleanup code will do it for us now.
11003 * data/lalr1.cc (yyerrlab): Likewise.
11004 * data/glr.c (yyparse): Pop everything off the stack before
11005 freeing it, so that destructors get called properly.
11006 * data/lalr1.cc (yyreturn): Likewise.
11007 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
11008 This is more consistent.
11009 * doc/bison.texinfo (Destructor Decl): Mention more reasons
11010 why destructors might be called. 1.875 -> 2.1.
11011 (Destructor Decl, Decl Summary, Table of Symbols):
11012 Some English-language cleanups for %destructor.
11013 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11014 Add output line for destructor of start symbol.
11015 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
11016 because of that same extra output line.
11017
11018 * NEWS: Document minor wording changes in diagnostics of
11019 Bison-generated parsers.
11020 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
11021 Remove unused formals. All uses changed.
11022 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
11023 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
11024 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
11025 Rename yyoverflowab to yyexhaustedlab.
11026 When memory exhaustion occurs during syntax-error reporting,
11027 report it separately rather than in a single diagnostic; this
11028 eases translation.
11029 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
11030 (Memory Exhausted): Renamed from Parser Stack Overflow.
11031 Revamp wording slightly to prefer "memory exhaustion".
11032 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
11033
11034 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
11035
11036 Add i18n support to the GLR skeleton. Partially fix the C++
11037 skeleton; a C++ expert needs to finish this. Remove debugging
11038 msgids; there's little point to having them translated, since they
11039 can be understood only by someone who can read the
11040 (English-language) source code.
11041
11042 Generate runtime-po/bison-runtime.pot automatically, so that we
11043 don't have to worry about garbage getting in that file. We'll
11044 make sure after the next official release that old msgids don't
11045 get lost. See
11046 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
11047
11048 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
11049 Now auto-generated.
11050 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
11051 Fix typos in explanations of the runtime file.
11052 * bootstrap: Change gettext keyword from YYI18N to YY_.
11053 Use standard Makefile.in.in in runtime-po, since we'll arrange
11054 for backward-compatible bison-runtime.po files in a different way.
11055 * data/glr.c (YY_): New macro, from yacc.c.
11056 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
11057 Translate messages intended for users.
11058 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
11059 the wording in the other skeletons. We don't know that the memory
11060 is virtual.
11061 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
11062 Use same method that yacc.c uses.
11063 Don't translate debugging messages.
11064 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
11065 it doesn't work (yet), and requires C++ expertise to fix.
11066 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
11067 Move defn to a more logical place, to be consistent with other
11068 skeletons.
11069 Don't translate debugging messages.
11070 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
11071 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
11072 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
11073 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
11074
11075 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
11076 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
11077 void, not int.
11078 * tests/glr-regression.at (Badly Collapsed GLR States):
11079 Likewise.
11080 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11081 yylex should return 0 at EOF rather than aborting.
11082
11083 Improve tests for stack overflow in GLR parser.
11084 Problem reported by twlevo@xs4all.nl.
11085 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
11086 All uses removed.
11087 (yyStackOverflow): Just longjmp, but with value 2 so that caller
11088 can handle the problem.
11089 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
11090 (yyparse): New local variable yyresult to record the result.
11091 Use result of setjmp to set it, rather than storing itinto
11092 struct.
11093 (yyDone): Remove label.
11094 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
11095 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
11096 if YYABORT is used).
11097 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
11098 yyparse status; put status > 1 into diagnostic.
11099 Check that status==2 works.
11100 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
11101 Use exit status 3 for failure to open (which shouldn't happen).
11102
11103 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
11104
11105 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
11106 1 on syntax error; just let yyparse do its thing.
11107 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
11108 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
11109 (Exploding the Stack Size with Alloca):
11110 (Exploding the Stack Size with Malloc):
11111 Expect exit status 2, not 1, since the parser is supposed to blow
11112 its stack. Problem reported by twlevo@xs4all.nl.
11113
11114 * data/glr.c (yyparse): Don't assume that the initial calls
11115 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
11116 Print a stack-overflow message and fail instead.
11117 Initialize the line-number information before creating the stack,
11118 so that the stack-overflow message can report line zero safely.
11119
11120 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
11121
11122 Fix problems reported by twlevo@xs4all.nl.
11123 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
11124 (yyuserMerge): Provide a default case if b4_mergers is empty.
11125 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
11126 * tests/glr-regression.at
11127 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11128 Add casts to pacify C++ compilers.
11129 * tests/glr-regression.at (Improper merging of GLR delayed action
11130 sets): Declare yylex before using it.
11131 * tests/Makefile.am (maintainer-check-g++): Fix a stray
11132 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
11133 test for valgrind; valgrind is independent of g++.
11134 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
11135 for compatibility with POSIX 1003.1-2001 (if running coreutils).
11136 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
11137 Use a destructor, so that we can expand the stack. Change
11138 YYSTYPE to char * so that we can free it. Cast result of malloc.
11139
11140 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11141
11142 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
11143 a valgrind failure. Problem reported by twlevo@xs4all.nl.
11144
11145 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
11146
11147 * PACKAGING: New file, suggested by Bruno Haible and taken from
11148 similar wording in gettext's PACKAGING file.
11149 * NEWS: Mention PACKAGING.
11150 * Makefile.am (EXTRA_DIST): Add PACKAGING.
11151
11152 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
11153
11154 * NEWS: Document recent i18n improvements.
11155 * bootstrap: Get runtime translations into runtime-po.
11156 Create runtime-po files automatically, if possible.
11157 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
11158 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
11159 does not infringe on the user's name space.
11160 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
11161 * doc/bison.texinfo (Internationalization): Revamp the English
11162 and Texinfo syntax a bit, to try to make it clearer.
11163 (Bison Options, Option Cross Key): Mention --print-localedir.
11164 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
11165 YYENABLE_NLS. Quote a bit more.
11166 * runtime-po/.cvsignore: New file.
11167 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
11168 * runtime-po/Rules-quot: Remove; now created by bootstrap.
11169 * runtime-po/quot.sed: Likewise.
11170 * runtime-po/boldquot.sed: Likewise.
11171 * runtime-po/en@quot.header: Likewise.
11172 * runtime-po/en@boldquot.header: Likewise.
11173 * runtime-po/insert-header.sin: Likewise.
11174 * runtime-po/remove-potcdate.sin: Likewise.
11175 * runtime-po/Makevars: Likewise.
11176 * runtime-po/LINGUAS: Likewise.
11177 * runtime-po/de.po: Likewise; we will rely on the translation project
11178 to maintain this, so "bootstrap" should get it.
11179 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
11180 its value.
11181 * src/main.c (main): Bind the bison-runtime domain, too.
11182
11183 2005-07-12 Bruno Haible <bruno@clisp.org>
11184
11185 * data/yacc.c: Include <libintl.h> when NLS is enabled.
11186 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
11187 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
11188 * runtime-po: New directory.
11189 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
11190 $(DOMAIN).pot-update rule, so that old messages are never dropped.
11191 * runtime-po/Rules-quot: New file, copied from po/.
11192 * runtime-po/quot.sed: Likewise.
11193 * runtime-po/boldquot.sed: Likewise.
11194 * runtime-po/en@quot.header: Likewise.
11195 * runtime-po/en@boldquot.header: Likewise.
11196 * runtime-po/insert-header.sin: Likewise.
11197 * runtime-po/remove-potcdate.sin: Likewise.
11198 * runtime-po/Makevars: New file.
11199 * runtime-po/POTFILES.in: New file.
11200 * runtime-po/LINGUAS: New file.
11201 * runtime-po/bison-runtime.pot: New file.
11202 * runtime-po/de.po: New file.
11203 * m4/bison.m4: New file.
11204 * Makefile.am (SUBDIRS): Add runtime-po.
11205 (aclocaldir, aclocal_DATA): New variables.
11206 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
11207 Define aclocaldir.
11208 * src/getargs.c (usage): Document --print-localedir option.
11209 (PRINT_LOCALEDIR_OPTION): New enum item.
11210 (long_options): Add --print-localedir option.
11211 (getargs): Handle --print-localedir option.
11212 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
11213 (Internationalization): New section.
11214
11215 2005-07-12 Akim Demaille <akim@epita.fr>
11216
11217 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
11218 for consistency with the rest of the code.
11219 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
11220 Add separators.
11221
11222 2005-07-12 Akim Demaille <akim@epita.fr>
11223
11224 * src/parse-gram.y: Use %printer instead of YYPRINT.
11225
11226 2005-07-12 Akim Demaille <akim@epita.fr>
11227
11228 * src/symtab.h, src/symtab.c (symbol_print): New.
11229 * src/symlist.h, src/symlist.c (symbol_list_print): New.
11230 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
11231
11232 2005-07-12 Akim Demaille <akim@epita.fr>
11233
11234 * data/glr.c (b4_syncline): Fix (swap) the definitions of
11235 b4_at_dollar and b4_dollar_dollar.
11236
11237 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
11238
11239 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
11240 and Pennello's paper.
11241
11242 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
11243
11244 * data/yacc.c (yyparse): Undo previous patch. Instead,
11245 set yylsp[0] and yyvsp[0] only if the initial action
11246 sets yylloc and yylval, respectively.
11247
11248 * data/yacc.c (yyparse): In the initial action, set
11249 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
11250 This avoids the use of undefined variables if the initial
11251 action does not set yylloc and/or yylval.
11252
11253 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
11254
11255 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
11256 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
11257 Remove from CVS. These files are automatically generated.
11258 * examples/extexi: Clarify that this file is now part of Bison,
11259 not GNU M4, and that it works with any POSIX-compatible Awk.
11260 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
11261 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
11262 so that we also get calc++-parser.yy. Geneate it.
11263 Use $(AWK), not gawk, since any conforming Awk will do.
11264 Put comment before action, since older 'make' can't handle comment
11265 in action.
11266 $(BUILT_SOURCES): List all built sources, not just some of them.
11267 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
11268 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
11269 $($(calc_sources_generated)): Remove unnecessary test for existence
11270 of target. (This had a shell syntax error anyway; a stray "x".)
11271 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
11272 calc++-parser.yy.
11273 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
11274
11275 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
11276 implied by the other modules.
11277
11278 2005-07-06 Akim Demaille <akim@epita.fr>
11279
11280 Bind examples/calc++ to the package.
11281 * examples/calc++/Makefile: Remove, replaced by...
11282 * examples/calc++/Makefile.am: ... this new file.
11283 * examples/calc++/test: Remove input.
11284 * examples/calc++/compile: Remove.
11285 * examples/Makefile.am: New.
11286 * configure.ac, Makefile.am: Adjust.
11287 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
11288
11289 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
11290
11291 * data/glr.c (yyFail): Drastically simplify; since the format argument
11292 never had any % directives, we can simply pass it to yyerror.
11293 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
11294 be modified later, as that is the usual style in glr.c.
11295 Problems reported by Paul Hilfinger.
11296
11297 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
11298 and size overflow errors.
11299 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
11300 in case the user prolog sets feature-test macros like _GNU_SOURCE.
11301 (YYSIZEMAX): New macro.
11302 (yystpcpy): New function, taken from yacc.c.
11303 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
11304 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
11305 so that we don't have to maintain their signatures.
11306 (yyFail): Check for buffer overflow, by using vsnprintf rather
11307 than vsprintf. Allocate a bigger buffer if possible.
11308 Report an error if buffer allocation fails.
11309 (yyStackOverflow): New function.
11310 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
11311 the initialization was successful. It might fail if storage was
11312 exhausted.
11313 (yyexpandGLRStack): Add more checks for storage allocation failure.
11314 Use yyStackOverflow to report failures.
11315 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
11316 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
11317 Don't assume stack number fits in int.
11318 (yysplitStack): Check for storage allocation failure.
11319 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
11320 can print diagnostics on storage allocation failure. All callers
11321 changed.
11322 (yyresolveValue): Use yybool for boolean.
11323 (yyreportSyntaxError): Check for size-calculation overflow.
11324 This code is taken from yacc.c.
11325 (yyparse): Check for storage allocation errors when allocating
11326 the initial stack.
11327
11328 2005-07-05 Akim Demaille <akim@epita.fr>
11329
11330 Extract calc++ from the documentation.
11331 * doc/bison.texinfo (Calc++): Add the extraction marks.
11332 * examples/extexi: New, from the aborted GNU Programming 2E.
11333 Separate the different paragraph of a file with empty lines.
11334 * examples/Makefile: Use it to extract the whole calc++ example.
11335
11336 2005-06-24 Akim Demaille <akim@epita.fr>
11337
11338 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
11339 class typedefs.
11340
11341 2005-06-22 Akim Demaille <akim@epita.fr>
11342
11343 * doc/bison.texinfo (C++ Language Interface): First stab.
11344 (C++ Parsers): Remove.
11345
11346 2005-06-22 Akim Demaille <akim@epita.fr>
11347
11348 * data/lalr1.cc (yylex_): Honor %lex-param.
11349
11350 2005-06-22 Akim Demaille <akim@epita.fr>
11351
11352 Start a set of simple examples.
11353 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
11354 * examples/calc++/calc++-driver.hh,
11355 * examples/calc++/calc++-parser.yy,
11356 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
11357 * examples/calc++/compile, examples/calc++/test: New.
11358
11359 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
11360
11361 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
11362 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
11363 which stems from the 2005-05-27 patch.
11364
11365 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11366
11367 * data/glr.c: Modify treatment of unused parameters to permit use
11368 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
11369
11370 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
11371
11372 Fix infringement on user name space reported by Janos Zoltan Szabo.
11373 * data/yacc.c (yyparse): strlen -> yystrlen.
11374
11375 2005-05-30 Akim Demaille <akim@epita.fr>
11376
11377 * data/lalr1.cc (_): New.
11378 Translate the various messages.
11379
11380 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
11381
11382 Fix infringement on user name space reported by Bruno Haible.
11383 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
11384 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
11385 the user's name space.
11386 (alloca): Include <stdlib.h> to get it, if it's not built in.
11387 (YYMALLOC, YYFREE): Define only if needed.
11388 (malloc, free): Declare, but only if needed, as this infringes on
11389 the user name space.
11390
11391 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
11392
11393 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
11394 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
11395 with %d format.
11396 * lib/ebitset.c (min, max): Undef before defining.
11397 * lib/vbitset.c (min, max): Likewise.
11398 * lib/subpipe.c (create_subpipe): Save local variables in case
11399 vfork clobbers them.
11400
11401 2005-05-24 Bruno Haible <bruno@clisp.org>
11402
11403 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
11404 error message syntax used by gcc-4.0.
11405
11406 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
11407
11408 * README: Mention m4 1.4.3. Remove obsolete advice about
11409 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
11410
11411 * bootstrap: Remove workaround for problem I encountered with
11412 gettext 0.14.1; it seems to be fixed now.
11413
11414 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
11415
11416 * NEWS: Version 2.0a.
11417
11418 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
11419 the previous change.
11420
11421 Various maintainer cleanups.
11422 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
11423 conftest*, for benefit of CVS commands run at the same time as
11424 "configure". Add build-aux, since "bootstrap" now creates it and
11425 its subfiles.
11426 * Makefile.cfg (move_if_change): Remove.
11427 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
11428 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
11429 (po_repo, do-po-update, po-update, wget_files, get-targets):
11430 (config.guess-url_prefix, config.sub-url_prefix):
11431 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
11432 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
11433 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
11434 Remove.
11435 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
11436 this is now the recommended name.
11437 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
11438 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
11439 ylwrap. These files now go into build-aux.
11440 * config/move-if-change: Remove.
11441 * config/prev-version.txt: Bump from 1.75 to 2.0.
11442
11443 * bootstrap: Add stdio-safer, unistd-safer modules.
11444 Remove m4/glibc2.m4 (introduced by latest gnulib, but
11445 we don't need it).
11446 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
11447 fopen-safer.c, stdio-safer.h, unistd-safer.h.
11448 * lib/subpipe.c: Include "unistd-safer.h".
11449 (create_subpipe): Make sure all the newly-created
11450 file descriptors are > 2, so that diagnostics don't
11451 get sent down them (which might cause Bison to hang, in theory).
11452 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
11453 * src/files.c (xfopen): Use fopen_safer, not fopen.
11454
11455 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
11456 yesterday's yacc.c fix.
11457
11458 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
11459
11460 * data/glr.c, data/lalr1.cc: Update copyright date.
11461
11462 Fix a destructor bug reported by Wolfgang Spraul in
11463 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
11464 * data/yacc.c (yyabortlab): Don't call destructor, and
11465 don't set yychar to EMPTY.
11466 (yyoverflowlab): Don't call destructor.
11467 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
11468 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
11469 since we no longer output the message "discarding lookahead token
11470 end of input ()".
11471
11472 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11473
11474 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
11475 fix a small glitch in debugging output.
11476 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
11477 after YY_SYMBOL_PRINT where needed.
11478
11479 (struct yyGLRState): Add some comments.
11480 (struct yySemanticOption): Add some comments.
11481 (union yyGLRStackItem): Add comment.
11482
11483 (yymergeOptionSets): Correct this to properly perform the union,
11484 avoiding infinite reported by Michael Rosien.
11485 Update comment.
11486
11487 * tests/glr-regression.at: Add test for GLR merging error reported
11488 by M. Rosien.
11489
11490 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
11491
11492 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
11493 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
11494 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
11495 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
11496 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
11497 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
11498 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
11499 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
11500 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
11501 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
11502 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
11503 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
11504 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
11505 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
11506 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
11507 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
11508 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
11509 src/derives.h, src/files.c, src/files.h, src/getargs.c,
11510 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
11511 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
11512 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
11513 src/output.h, src/parse-gram.c, src/parse-gram.h,
11514 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
11515 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
11516 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
11517 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
11518 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
11519 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
11520 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
11521 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
11522 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
11523 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
11524 tests/reduce.at, tests/regression.at, tests/sets.at,
11525 tests/synclines.at, tests/testsuite.at, tests/torture.at:
11526 Update FSF postal mail address.
11527
11528 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
11529
11530 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
11531 Problem reported by Ralf Menzel.
11532
11533 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
11534
11535 * tests/actions.at: Test that stack overflow invokes destructors.
11536 From Marcus Holland-Moritz.
11537 * data/yacc.c (yyerrlab): Move the code that destroys the stack
11538 from here....
11539 (yyreturn): to here. That way, destructors are called properly
11540 even if the stack overflows, or the user calls YYACCEPT or
11541 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
11542 (yyoverflowlab): Destroy the lookahead.
11543
11544 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
11545
11546 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
11547
11548 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
11549
11550 * NEWS: Bison-generated C parsers no longer quote literal strings
11551 associated with tokens.
11552 * src/output.c (prepare_symbols): Don't escape strings,
11553 since users don't want to see C escapes.
11554 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
11555 in diagnostics.
11556 * tests/input.at (Torturing the Scanner): Likewise.
11557 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
11558
11559 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
11560
11561 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
11562 the data size is known to be too small and we can't increase it.
11563 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
11564
11565 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
11566
11567 * src/parse-gram.y: Include quotearg.h.
11568 (string_as_id): Quote $1 before using it as a key, since the
11569 lexer no longer quotes it for us.
11570 (string_content): Don't strip quotes, since lexer no longer
11571 quotes it for us.
11572 * src/scan-gram.l: Include quotearg.h.
11573 ("\""): Omit quote.
11574 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
11575 a key, since the rest of the lexer doesn't quote it.
11576 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
11577 * tests/regression.at (Token definitions): Check for backslashes
11578 in token strings.
11579
11580 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
11581 (YYSIZE_T): Define to unsigned long int when using an older compiler.
11582 (yyparse): Revamp code to generate long syntax error message, to
11583 make it easier to translate, and to avoid problems with arithmetic
11584 overflow. Change "virtual memory" to "memory" in diagnostic, since
11585 we don't know whether the memory is virtual.
11586
11587 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
11588
11589 * NEWS: Bison-generated C parsers now use the _ macro to
11590 translate strings.
11591 * data/yacc.c (_) [!defined _]: New macro.
11592 All English strings wrapped inside this macro.
11593 * doc/bison.texinfo (Bison Parser): Document _.
11594 * po/POTFILES.in: Include src/parse-gram.c, since it now
11595 includes translateable strings that parse-gram.y doesn't.
11596
11597 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
11598
11599 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
11600 reverting the 2004-10-11 change to this function.
11601 (symbol_check_alias_consistency): Don't call symbol_type_set
11602 if the type name is already correct.
11603 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
11604
11605 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
11606
11607 * tests/regression.at (Token definitions): Don't use a token named
11608 c, as that generates a "#define c ..." that runs afoul of buggy
11609 stdlib.h that uses the identifier c as a member of struct
11610 drand48_data. Problem reported by Horst Wente.
11611
11612 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
11613
11614 * bootstrap: Change translation URL from
11615 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
11616 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
11617 redirection glitches. Problem reported by twlevo@xs4all.nl.
11618
11619 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
11620
11621 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
11622 after operands; POSIX says this isn't portable for the c99 command.
11623
11624 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
11625
11626 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
11627 immediately if a data overrun has occurred; this may help us track
11628 down what may be a spurious failure on MacOS.
11629
11630 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
11631
11632 Respond to problems reported by twlevo@xs4all.nl.
11633
11634 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
11635
11636 * src/vcg.h: Comment fix.
11637 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
11638 (G_CMAX): Change to -1 instead of INT_MAX.
11639
11640 * data/yacc.c (yyparse): Omit spaces before #line.
11641
11642 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
11643
11644 * src/tables.c (state_number_to_vector_number): Put it inside an
11645 "#if 0", since it's not currently used. Problem reported by
11646 Roland McGrath.
11647
11648 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
11649
11650 * src/output.c (escaped_output): Renamed from
11651 escaped_file_name_output, since we now use it for symbol tags as
11652 well. All uses changed.
11653 (symbol_destructors_output, symbol_printers_output):
11654 Escape symbol tags too.
11655 Problem reported by Matyas Forstner in
11656 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
11657
11658 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
11659 not needed.
11660 * src/output.c (user_actions_output, token_definitions_output,
11661 symbol_destructors_output, symbol_printers_output): Likewise.
11662 * src/reader.c (prologue_augment): Likewise.
11663 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
11664
11665 * src/vcg.c (output_edge): Don't quote linestyle arg.
11666 Problem reported by twlevo@xs4all.nl.
11667
11668 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
11669
11670 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
11671 example, reported by Derek M Jones. Also, make the example even
11672 more outrageous, to better illustrate how bad the problem is.
11673
11674 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
11675
11676 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
11677 putsym. Typo reported by Sebastian Piping.
11678
11679 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
11680
11681 * doc/bison.texinfo (Language and Grammar): some -> same
11682 (Epilogue): int he -> in the
11683 Typos reported by Sebastian Piping via Justin Pence.
11684
11685 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
11686
11687 * tests/glr-regression.at (Improper handling of embedded actions
11688 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
11689 embedded actions and $-N in GLR parsers", work around an Autoconf bug
11690 with dollar signs in test names.
11691 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
11692 for a similar reason.
11693
11694 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
11695
11696 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
11697 wants to redefine G_VIEW.
11698
11699 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
11700
11701 * src/vcg.c (get_view_str): Remove case for normal_view.
11702 Problem reported by twlevo@xs4all.nl.
11703
11704 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
11705
11706 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
11707 Problem reported by twlevo@xs4all.nl.
11708
11709 * doc/bison.texinfo: Change @dircategory from "GNU programming
11710 tools" to "Software development". Requested by Richard Stallman
11711 via Karl Berry.
11712
11713 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
11714
11715 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
11716 Problem reported by twlevo@xs4all.nl.
11717
11718 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
11719
11720 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
11721 keyword; it's not needed with modern compilers, and it doesn't
11722 affect correctness with older compilers. Suggested by
11723 twlevo@xs4all.nl.
11724
11725 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
11726
11727 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
11728 gcc -Wswitch-default.
11729 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11730 * data/yacc.c (yyparse): Likewise.
11731
11732 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
11733
11734 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
11735 already. Let config.h define any nonstandard values.
11736
11737 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
11738
11739 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
11740 for the benefit of slower hosts. Problem reported by
11741 Nelson H. F. Beebe.
11742
11743 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
11744
11745 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
11746 being defined and not used.
11747 * data/lalr1.cc (yyparse): Likewise.
11748 Use "if (false)" rather than "if (0)".
11749
11750 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
11751
11752 * TODO: Mention that we should allow NUL bytes in tokens.
11753
11754 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
11755
11756 * src/scan-skel.l (<<EOF>>): Don't close standard output.
11757 Problem reported by Hans Aberg.
11758
11759 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
11760
11761 * src/getargs.c (version): Happy new year; update overall
11762 program copyright date from 2004 to 2005.
11763
11764 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
11765 Problem reported by Hans Aberg.
11766 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
11767 (Output file names.): Add a test for the case when standard output
11768 is closed.
11769
11770 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
11771
11772 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
11773 to fix an oversight in the Bison 2.0 manual.
11774
11775 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
11776
11777 * NEWS: Version 2.0. Reformat the existing news items since
11778 1.875, so that related items are grouped together.
11779 * configure.ac (AC_INIT): Bump version to 2.0.
11780 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
11781
11782 * tests/torture.at (Exploding the Stack Size with Alloca): Set
11783 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
11784 otherwise, we're not testing alloca. Unfortunately there's no
11785 simple way to consult HAVE_ALLOCA here.
11786
11787 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
11788 for yymsg, too.
11789
11790 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
11791 hand. This avoids a warning about comparing int to size_t when
11792 GCC warnings are enabled.
11793
11794 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
11795
11796 * NEWS: Bison-generated parsers no longer default to using the
11797 alloca function (when available) to extend the parser stack, due
11798 to widespread problems in unchecked stack-overflow detection.
11799 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
11800 responsibility to set it to a positive value. This lets the user
11801 specify a value that is not a preprocessor constant.
11802 * data/yacc.c (YYMAXDEPTH): Likewise.
11803 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
11804 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
11805 to be a compile-time constant. However, explain the constraints on it.
11806 Also, explain the constraints on YYINITDEPTH.
11807 (Table of Symbols): Explain that alloca is no longer the default.
11808 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
11809 to 1.
11810
11811 * doc/bison.texinfo (Location Default Action): Mention that n must
11812 be zero when k is zero. Suggested by Frank Heckenbach.
11813
11814 2004-12-22 Akim Demaille <akim@epita.fr>
11815
11816 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
11817 (parser::state_type, parser::semantic_type, parser::location_type):
11818 Private, not public.
11819 (parser::parse): Return ints, not bool.
11820 Returning a bool introduces a problem: 0 corresponds to false, and
11821 it seems weird to return false on success. Returning true changes
11822 the conventions for yyparse.
11823 Alternatively we could return void and send an exception.
11824 There is no clear consensus (yet?).
11825 (state_stack, semantic_stack, location_stack): Rename as...
11826 (state_stack_type, semantic_stack_type, location_stack_type): these.
11827 Private, not public.
11828 * tests/c++.at: New.
11829 * tests/testsuite.at, tests/Makefile.am: Adjust.
11830
11831 2004-12-21 Akim Demaille <akim@epita.fr>
11832
11833 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
11834
11835 2004-12-21 Akim Demaille <akim@epita.fr>
11836
11837 Don't impose std::string for filenames.
11838
11839 * data/lalr1.cc (b4_filename_type): New.
11840 (position::filename): Use it.
11841 (parser.hh): Move the inclusion of stack.hh and location.hh below
11842 the user code, so that needed headers for the filename type can be
11843 included first.
11844 Forward declare them before the user code.
11845 * tests/Makefile.am (check-local, installcheck-local): Pass
11846 TESTSUITEFLAGS to the TESTSUITE.
11847
11848 2004-12-20 Akim Demaille <akim@epita.fr>
11849
11850 Use more STL like names: my_class instead of MyClass.
11851
11852 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
11853 (SemanticStack, SemanticType, StateStack, StateType)
11854 (TokenNumberType, Stack, Slice, Traits, Parser::location)
11855 (Parser::value): Rename as...
11856 (location_stack, location_type, rhs_number_type, semantic_stack)
11857 (semantic_type, state_stack, state_type, token_number_type, stack)
11858 (slice, traits, parser::yylloc, parser::yylval): these.
11859
11860 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
11861
11862 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
11863
11864 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
11865 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
11866
11867 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
11868
11869 Remove uses of 'short int' and 'unsigned short int'. This raises
11870 some arbitrary limits. It uses more memory but nowadays that's
11871 not much of an issue.
11872
11873 This change does not affect the generated parsers; that's a different
11874 task, as some users will want to conserve memory there.
11875
11876 Ideally we should use size_t to represent all object counts, and
11877 something like ptrdiff_t to represent signed differences of object
11878 counts; but that will require more code-cleanup than I have the
11879 time to do right now.
11880
11881 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
11882 Use size_t, not int or short int, to count objects.
11883 * src/closure.c (nritemset, closure): Likewise.
11884 * src/closure.h (nritemset, closure): Likewise.
11885 * src/nullable.c (nullable_compute): Likewise.
11886 * src/print.c (print_core): Likewise.
11887 * src/print_graph.c (print_core): Likewise.
11888 * src/state.c (state_compare, state_hash): Likewise.
11889 * src/state.h (struct state): Likewise.
11890 * src/tables.c (default_goto, goto_actions): Likewise.
11891
11892 * src/gram.h (rule_number, rule): Use int, not short int.
11893 * src/output.c (prepare_rules): Likewise.
11894 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
11895 errs, reductions): Likewise.
11896 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
11897 Likewise.
11898 * src/tables.c (vector_number, tally, action_number,
11899 ACTION_NUMBER_MINIMUM): Likewise.
11900 * src/output.c (muscle_insert_short_int_table): Remove.
11901
11902 2004-12-17 Akim Demaille <akim@epita.fr>
11903
11904 * data/lalr1.cc: Extensive Doxygenation.
11905 (error_): Rename as...
11906 (error): this, since it is visible to the user.
11907 Adjust callers.
11908 (Parser::message): Now an automatic variable from...
11909 (Parser::yyreport_syntax_error_): here.
11910 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
11911 Parser::error.
11912 * tests/input.at: Escape $.
11913
11914 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
11915
11916 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
11917 Parenthesize rhs to avoid obscure problems with mistakes like
11918 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
11919 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11920 b4_rhs_location): Likewise.
11921 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11922 b4_rhs_location): Likewise.
11923
11924 2004-12-16 Akim Demaille <akim@epita.fr>
11925
11926 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
11927 yacc.c: be sure to stay within yycheck_.
11928 * tests/actions.at: Re-enable C++ tests.
11929
11930 2004-12-16 Akim Demaille <akim@epita.fr>
11931
11932 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
11933 real.
11934
11935 2004-12-16 Akim Demaille <akim@epita.fr>
11936
11937 Use #define to handle the %name-prefix.
11938
11939 * data/glr.c, data/yacc.c: Comment changes.
11940 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
11941 so that one can refer to yylex in the parser file, and have it
11942 renamed, as is the case with other skeletons.
11943
11944 2004-12-16 Akim Demaille <akim@epita.fr>
11945
11946 Move lalr1.cc internals into yy*.
11947
11948 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
11949 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
11950 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
11951 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
11952 (empty_, final_, terror_, errcode_, ntokens_)
11953 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
11954 (looka_, ilooka_, error_range_, nerrs_):
11955 Rename as...
11956 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
11957 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
11958 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
11959 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
11960 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
11961 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
11962 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
11963 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
11964 these.
11965
11966 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
11967
11968 Fix some problems reported by twlevo at xs4all.
11969 * src/symtab.c (symbol_new): Report an error if the input grammar
11970 contains too many symbols. This is better than calling abort() later.
11971 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
11972 (struct node, struct graph):
11973 Rename member expand to stretch. All uses changed.
11974 (struct graph): Remove member layoutalgorithm. All uses removed.
11975 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
11976 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
11977 All uses changed.
11978 (N_STRETCH): Rename from N_EXPAND. All uses changed.
11979
11980 2004-12-15 Akim Demaille <akim@epita.fr>
11981
11982 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
11983 Add more Doxygen comments.
11984 (symprint_, stack_print_, reduce_print_, destruct_, pop)
11985 (report_syntax_error_, translate_): Rename as...
11986 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
11987 (yypop_, yyreport_syntax_error_, yytranslate_): this.
11988
11989 2004-12-15 Akim Demaille <akim@epita.fr>
11990
11991 * data/lalr1.cc (lex_): Rename as...
11992 (yylex_): this.
11993 Move the trace here.
11994 Take the %name-prefix into account.
11995 Reported by Alexandre Duret-Lutz.
11996
11997 2004-12-15 Akim Demaille <akim@epita.fr>
11998
11999 Simplify the C++ parser constructor.
12000
12001 * data/lalr1.cc (debug_): Rename as...
12002 (yydebug_): so that the parser's internals are always in the yy*
12003 pseudo namespace.
12004 Adjust uses.
12005 (b4_parse_param_decl): Remove the leading comma as it is now only
12006 called as unique argument list.
12007 (Parser::Parser): Remove the constructor accepting a location and
12008 an initial debugging level.
12009 Remove from the other ctor the argument for the debugging level.
12010 (debug_level_type, debug_level, set_debug_level): New.
12011
12012 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
12013 constructor calls.
12014
12015 2004-12-15 Akim Demaille <akim@epita.fr>
12016
12017 Remove b4_root related material: failure experiment
12018 (which goal was to allow to derive from a class).
12019
12020 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
12021 definitions and uses.
12022
12023 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
12024
12025 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
12026 not 2, since it's not portable to subtract 1 from the start of an
12027 array. The new item 0 is never set or used. All uses changed.
12028
12029 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
12030 the default definition of YYLLOC_DEFAULT. Problem reported
12031 by Frank Heckenbach.
12032
12033 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
12034
12035 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
12036 the normal case and one for the error case. Just use the
12037 first one uniformly. Problem reported by Frank Heckenbach.
12038 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
12039 use exactly the same macro in both places.
12040 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
12041 so that the normal-case YYRHSLOC works for the error case too.
12042 All uses changed.
12043 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
12044 (YYLLOC_DEFAULT): Use the same macro as glr.c.
12045 * doc/bison.texinfo (Location Default Action): Don't claim that
12046 we have an array of locations. Use the same macro for both glr
12047 and lalr parsers. Mention YYRHSLOC. Mention what happens when
12048 the index is 0.
12049
12050 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12051
12052 * HACKING: Update email addresses to send announcements to.
12053
12054 * configure.ac (AC_INIT): Bump version to 1.875f.
12055
12056 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12057
12058 * NEWS: Version 1.875e.
12059 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
12060
12061 * src/scan-skel.l: Include "complain.h", for "fatal".
12062
12063 * src/relation.h (relation_print, relation_digraph):
12064 Relation sizes are of type relation_node, not size_t (this is
12065 merely a doc fix, since the two types are equivalent).
12066 (relation_transpose): Relation sizes are of type relation_node,
12067 not int.
12068 * src/relation.c: Likewise.
12069 (top, infinity): Now of type relation_node, not int.
12070 (traverse, relation_transpose): Use relation_node, not int.
12071
12072 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
12073 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
12074 (yyparse): Remove unused local introduced in 2004-10-25 patch.
12075
12076 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
12077 specifying whether the test should be skipped. Use it tp
12078 specify that the [%defines %skeleton "lalr1.cc"] tests currently
12079 fail on some hosts, and should be skipped.
12080
12081 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
12082
12083 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
12084 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
12085 unless otherwise specified below.
12086
12087 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
12088 to allocate kernel_base, kernel_items, kernel_size, since
12089 they needn't be initialized to 0.
12090 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
12091 * src/closure.c (new_closure): Likewise, for itemset.
12092 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
12093 * src/lalr.c (set_goto_map): Likewise, for temp_map.
12094 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
12095 (build_relations): Likewise for edge, states1, includes.
12096 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
12097 * src/reader.c (packgram): Likewise, for ritem, rules.
12098 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
12099 * src/relation.c (relation_digraph): Likewise for VERTICES.
12100 (relation_transpose): Likewise for new_R, end_R.
12101 * src/symtab.c (symbols_token_translations_init): Likewise for
12102 token_translations.
12103 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
12104 (token_actions): Likewise for yydefact, actrow, conflrow,
12105 conflict_list.
12106 (save_column): Likewise for froms[symno], tos[symno].
12107 (goto_actions): Likewise for state_count.
12108 (pack_table): Likewise for base, pos, check.
12109 (tables_generate): Likewise for width.
12110
12111 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
12112 for initial core. Just have a separate core, so we needn't worry
12113 about whether kernel_size and kernel_base are initialized.
12114
12115 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
12116 kernel_size, kernel_items): Remove unnecessary initialization.
12117 * src/conflicts.c (conflicts): Likewise.
12118 * src/derives.c (derives): Likewise.
12119 * src/muscle_tablc (muscle_insert): Likewise.
12120 * src/relation.c (relation_digraph): Likewise.
12121 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
12122 conflrow, conflict_table, conflict_list, table, check):
12123 Likewise.
12124
12125 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
12126 This is because all callers pass unsigned int.
12127 * src/closure.h (new_closure): Likewise.
12128
12129 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
12130 (build_relations): Initialize includes[i] in all cases.
12131 * src/reader.c (packgram): Always initialize rules[ruleno].prec
12132 and rules[ruleno].precsym. Initialize members in order.
12133 * src/relation.c (relation_transpose): Always initialize new_R[i]
12134 and end_R[i].
12135 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
12136
12137 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
12138 conflict_list[0] was always 0, but now it isn't initialized.
12139
12140 * src/table.c (table_grow): When conflict_table grew, the grown
12141 area wasn't cleared. Fix this.
12142
12143 * lib/.cvsignore: Add strdup.c, strdup.h.
12144 * m4/.cvsignore: Add strdup.m4.
12145
12146 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
12147
12148 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
12149 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
12150 GOTO_NUMBER_MAXIMUM, since we occasionally compute
12151 ngotos + 1 without checking for overflow.
12152 (build_relations): Use END_NODE, not -1, to denote end of edges.
12153 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
12154 build_relations): Use goto_number, not int, for goto numbers.
12155 * src/tables.c (save_column, default_goto): Likewise.
12156
12157 2004-11-23 Akim Demaille <akim@epita.fr>
12158
12159 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
12160 of #defining from yystype.
12161 Don't typedef yystype, C++ does not need it.
12162 This lets it possible to forward declare it as union.
12163
12164 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
12165
12166 * bootstrap (gnulib_modules): Add extensions.
12167 Problem reported by Jim Meyering.
12168
12169 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
12170
12171 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
12172 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
12173 src/system.h, src/tables.c: XFREE -> free, to accommodate
12174 recent change to gnulib xalloc.h.
12175 Problem reported by Jim Meyering.
12176
12177 2004-11-17 Akim Demaille <akim@epita.fr>
12178
12179 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
12180
12181 2004-11-17 Akim Demaille <akim@epita.fr>,
12182 Alexandre Duret-Lutz <adl@gnu.org>
12183
12184 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
12185 changes.
12186 (YYCDEBUG): Adjust.
12187 Use it instead of cdebug_.
12188 (Parser::debug_stream, Parser::set_debug_stream): New.
12189 (Parser::symprint_): Define cdebug_ for temporary backward
12190 compatibility.
12191 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
12192 debug_stream ().
12193
12194 2004-11-17 Akim Demaille <akim@epita.fr>
12195
12196 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
12197 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
12198 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
12199 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12200
12201 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
12202
12203 * data/glr.c (yyloc_default): Remove; not used.
12204 Problem reported by Frank Heckenbach.
12205
12206 2004-10-25 Akim Demaille <akim@epita.fr>
12207
12208 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
12209 Introduce another definition to address simple location arrays.
12210 (yyGLRStack): New member: yyerror_range.
12211 (yyrecoverSyntaxError, yyparse): Update it.
12212 (yyrecoverSyntaxError): Use it when shifting the error token to
12213 have an accurate range, equivalent to the one computed by both
12214 yacc.c and lalr1.cc.
12215 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
12216 that column numbers start at column 0, as per GNU Coding
12217 Standards, the others tests, and the doc.
12218 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
12219 Adjust to the above change (first column is 0).
12220 And adjust the location of the "<error>", now covering the whole
12221 line.
12222
12223 2004-10-22 Akim Demaille <akim@epita.fr>
12224 and Paul Eggert <eggert@cs.ucla.edu>
12225
12226 Remove some arbitrary limits on goto numbers and relations.
12227 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
12228 initial values, since they're never used.
12229 (set_goto_map): ngotos is now unsigned, so test for overflow
12230 by seeing whether it wraps around to zero.
12231 * src/lalr.h (goto_number): Now size_t, not short int.
12232 (GOTO_NUMBER_MAXIMUM): Remove.
12233 * src/relation.c (relation_print, traverse, relation_transpose):
12234 Check for END_NODE rather than looking at sign.
12235 * src/relation.h (END_NODE): New macro.
12236 (relation_node): Now size_t, not short int.
12237
12238 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
12239
12240 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
12241 keyword, not an identifier. Problem reported by Baron Schwartz in
12242 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
12243
12244 2004-10-11 Akim Demaille <akim@epita.fr>
12245
12246 * src/symtab.c (symbol_check_alias_consistency): Also check
12247 type names, destructors, and printers.
12248 Reported by Alexandre Duret-Lutz.
12249 Recode the handling of associativity and precedence in terms
12250 of symbol_precedence_set.
12251 Accept no redeclaration at all, not even equal to the previous
12252 value.
12253 (redeclaration): New.
12254 Use it to factor redeclaration complaints.
12255 (symbol_make_alias): Don't set the type of the alias, let
12256 symbol_check_alias_consistency do it as for other features.
12257 * src/symtab.h (symbol): Add new member prec_location, and
12258 type_location.
12259 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
12260 * tests/input.at (Incompatible Aliases): New.
12261
12262 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
12263
12264 .cvsignore fixes to accommodate gnulib changes,
12265 and the practice of naming build directories "_build".
12266 * .cvsignore: Add "_*". Sort.
12267 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
12268 * m4/.cvsignore: Add "*_gl.m4".
12269
12270 2004-10-06 Akim Demaille <akim@epita.fr>
12271
12272 * src/parse-gram.y (add_param): Fix the truncation of trailing
12273 spaces.
12274
12275 2004-10-05 Akim Demaille <akim@epita.fr>
12276
12277 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
12278 whether the reducion was empty or not. This leaves room to
12279 improve the use of YYLLOC_DEFAULT in such a case.
12280 lalr1.cc is still experimental, so changing this is acceptable.
12281 And finally, there are probably not many users who changed the
12282 handling of locations in GLR, so changing is admissible too.
12283
12284 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
12285 empty reduction, set @$ to an empty location ending the previously
12286 stacked symbol.
12287 Adjust uses to make sure the code is triggered on empty
12288 reductions.
12289 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
12290 expected output: empty reductions have empty locations.
12291
12292 2004-09-29 Akim Demaille <akim@epita.fr>
12293
12294 * data/lalr1.cc: Move towards a more standard C++ coding style
12295 for templates: Class < T > -> Class<T>.
12296
12297 2004-09-29 Akim Demaille <akim@epita.fr>
12298
12299 * data/lalr1.cc: Reinstall the former ctor, for sake of
12300 compatibility, but warn it will be removed.
12301 Move towards a more standard C++ coding style (i.e., type *var ->
12302 type* var).
12303
12304 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
12305
12306 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
12307 since it's less likely to work if NULs are involved in the future.
12308
12309 2004-09-27 Akim Demaille <akim@epita.fr>
12310
12311 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
12312
12313 2004-09-27 Akim Demaille <akim@epita.fr>
12314
12315 * data/lalr1.cc (b4_parse_param_decl_1): New.
12316 (b4_parse_param_decl): Use it to have different names between attribute
12317 and argument names.
12318 (b4_cc_constructor_call): Likewise.
12319
12320 2004-09-24 Akim Demaille <akim@epita.fr>
12321
12322 * src/parse-gram.y (add_param): Strip the leading and trailing
12323 blanks from a formal argument declaration.
12324 (YY_LOCATION_PRINT): New.
12325
12326 2004-09-24 Akim Demaille <akim@epita.fr>
12327
12328 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
12329 after the location.
12330
12331 2004-09-24 Akim Demaille <akim@epita.fr>
12332
12333 * doc/bison.texinfo (Table of Symbols): Sort.
12334
12335 2004-09-21 Akim Demaille <akim@epita.fr>
12336
12337 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
12338 the useless parentheses.
12339 Suggested by Paul Eggert.
12340
12341 2004-09-20 Akim Demaille <akim@epita.fr>
12342
12343 Let the initial-action act on the look-ahead, and use it for the
12344 "initial push" (corresponding to an hypothetical beginning-of-file).
12345 And let lalr1.cc honor %initial-action.
12346
12347 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
12348 example.
12349 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
12350 (Parser::Parser): Remove the ctor that used to initialize it.
12351 (Parser::parse): Like in the other skeletons, issue the "starting
12352 parse" message before any action.
12353 Honor %initial-action.
12354 Initialize the stacks with the lookahead.
12355 * data/yacc.c: Let $$ and @$ in %initial-action designate the
12356 look-ahead.
12357 Push them in the stacks.
12358 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
12359
12360 2004-09-20 Akim Demaille <akim@epita.fr>
12361
12362 * doc/bison.texinfo (Initial Action Decl): New.
12363
12364 2004-09-20 Akim Demaille <akim@epita.fr>
12365
12366 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
12367 clearer criterion to define it.
12368 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
12369 When reducing on an empty RHS, use the latest stacked location as
12370 location.
12371 yylloc is not always available.
12372 * data/glr.c: Likewise.
12373 Also, honor initial-actions.
12374
12375 2004-09-20 Akim Demaille <akim@epita.fr>
12376
12377 * data/yacc.c (YY_LOCATION_PRINT): New.
12378 Define when we know YYLTYPE's structure, i.e., when the default
12379 YYLLOC_DEFAULT is used.
12380 * data/c.m4 (b4_yysymprint_generate): Use it.
12381 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
12382 value of the result.
12383 (error_start_): Replace with...
12384 (error_range_): this location array.
12385 This allows to replace code relying on the implementation of
12386 locations by portable code.
12387 * data/yacc.c (yylerrsp): Replace with...
12388 (yyerror_range): this.
12389 Every time a token is popped, update yyerror_range[0], to have an
12390 accurate location for the error token.
12391 * data/glr.c (YY_LOCATION_PRINT): New.
12392 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
12393 deference a pointer.
12394 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
12395 report the location in %printers.
12396
12397 * src/scan-skel.l: Instead of abort, report error messages to ease
12398 understanding skeleton scanning failures.
12399
12400 2004-09-16 Akim Demaille <akim@epita.fr>
12401
12402 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
12403 (iterator, const_iterator): these, to be more in the C++ spirit.
12404 Also, return reverse iterators so that when displaying the stack
12405 we display its bottom first.
12406 (Parser::stack_print_, Parser::reduce_print_): Match the messages
12407 from yacc.c.
12408 We should probably use vector here though.
12409
12410 2004-09-16 Akim Demaille <akim@epita.fr>
12411
12412 Have more complete shift traces.
12413
12414 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
12415 to report Shifts instead of ad hoc YYDPRINTF invocations,
12416 including for the error token.
12417 * data/lalr1.cc (symprint_): Output the location.
12418 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
12419 output the location within the %printer.
12420 Activate GLR tests, at least to make sure they compile properly.
12421 They still don't pass though.
12422 * tests/calc.at: Adjust expect verbose output, since now "Entering
12423 state..." is on a different line than the "Shifting" message.
12424
12425 2004-09-08 Akim Demaille <akim@epita.fr>
12426
12427 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
12428 Bison directive from the Bison file to the invocation of this
12429 macro, so that these directives are passed to
12430 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
12431 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
12432 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
12433 the extra Bison directives instead of the whole series.
12434 Change the grammar so that there are recoverable errors, and
12435 unrecoverable errors. Now we can have the parser give up before
12436 consuming the whole input. As a result we now can observe that
12437 the lookahead is freed when needed.
12438 Change the parser source to parse argv[1] instead of a hard coded
12439 string.
12440 Simplify yylex, and give a value and location to EOF.
12441 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
12442 passed directives already coded in the file.
12443 Add some tests to check the location of "error".
12444 For some tests, the C++ parser is correct, and not yacc.c.
12445 For other tests, they provide different, but unsatisfying, values,
12446 so keep the C++ value so that at least one parser is "correct"
12447 according to the test suite.
12448 (Actions after errors): Remove, this is subsumed by the
12449 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
12450
12451 2004-09-06 Akim Demaille <akim@epita.fr>
12452
12453 * data/lalr1.cc: Adjust the indentation of the labels.
12454 (Parser::pop): New.
12455 Use it.
12456
12457 2004-09-06 Akim Demaille <akim@epita.fr>
12458
12459 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
12460 argument, an informative message.
12461 Call YY_SYMBOL_PRINT.
12462 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
12463 * data/lalr1.cc (destruct_): Likewise.
12464 In addition, no longer depend on b4_yysymprint_generate and
12465 b4_yydestruct_generate to generate these functions, do it "by
12466 hand".
12467
12468 2004-09-03 Akim Demaille <akim@epita.fr>
12469
12470 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
12471 invoked, yydestruct the lookahead.
12472 * tests/calc.at (Calculator $1): Update the expected lengths of
12473 traces: there is an added line for the discarded lookahead.
12474 * doc/bison.texinfo (Destructor Decl): Some rewording.
12475 Define "discarded" symbols.
12476
12477 2004-09-02 Akim Demaille <akim@epita.fr>
12478
12479 * data/lalr1.cc (translate_, destruct_): No reason to be static.
12480
12481 2004-09-02 Akim Demaille <akim@epita.fr>
12482
12483 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
12484 (YYDSYMPRINTF): Rename as...
12485 (YY_SYMBOL_PRINT): this.
12486 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
12487 two.
12488 Use it instead of direct symprint_ calls.
12489 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
12490 one.
12491
12492 2004-09-02 Akim Demaille <akim@epita.fr>
12493
12494 * data/lalr1.cc (b4_yysymprint_generate): New.
12495 (symprint_): New member function, defined when YYDEBUG.
12496 Use it consistently instead of token/nterm debugging output by
12497 hand.
12498 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
12499 %printer calls to use cdebug_ when using lalr1.cc.
12500
12501 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
12502
12503 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
12504 with #ifdef YYDEBUG.
12505
12506 2004-08-26 Akim Demaille <akim@epita.fr>
12507
12508 * doc/bison.texinfo (Implementing Loops): Rename as...
12509 (Implementing Gotos/Loops): this.
12510
12511 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
12512
12513 Adjust to latest gnulib.
12514 * bootstrap (gnulib_modules): Add xalloc-die.
12515 Set LC_ALL=C so that file names sort consistently.
12516 Prefer the gnulib copies of gettext.m4, glibc21.m4,
12517 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
12518 uintmax_t.m4, ulonglong.m4.
12519 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
12520 po.m4 since we are now using _gl.m4 instead.
12521
12522 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
12523
12524 * src/scan-action.l: Remove. Scanning of semantic actions is
12525 handled in scan-gram.l.
12526
12527 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
12528
12529 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
12530
12531 * src/location.h (struct): The file member is a uniqstr.
12532 (equal_boundaries): Use UNIQSTR_EQ for comparison.
12533
12534 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
12535
12536 Fix bug with non-%union parsers that have printers or destructors,
12537 which led to a Bison core dump. Reported by Peter Fales in
12538 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
12539
12540 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
12541 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
12542 not to our own type.
12543 * src/output.c (symbol_destructors_output, symbol_printers_output):
12544 Don't assume %union.
12545 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
12546 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
12547 UNION-FLAG. All callers changed.
12548 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
12549 Use type char, not unsigned int, when declaring an array of char;
12550 this lets us remove a cast.
12551 (Printers and Destructors): Add non-%union test cases.
12552
12553 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
12554
12555 * doc/bison.texinfo: Minor editorial changes, mostly to the new
12556 GLR writeups. E.g., avoid frenchspacing and the future tense,
12557 change "lookahead" to "look-ahead", and change "wrt" to "with
12558 respect to".
12559
12560 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12561
12562 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
12563 New sections, split off from the GLR Parsers section. Put the new
12564 Simple GLR Parser near the start of the GLR section, for clarity.
12565 Rewrite connective text.
12566
12567 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
12568
12569 * doc/bison.texinfo (Simple GLR Parsers): New section.
12570
12571 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
12572
12573 * NEWS, TODO, doc/bison.texinfo:
12574 Use "look-ahead" instead of "lookahead", to be consistent.
12575 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
12576 while we're fixing "look-ahead".
12577 * src/conflicts.c (shift_set): Renamed from shiftset.
12578 (look_ahead_set): Renamed from lookaheadset.
12579 * src/print.c: Likewise.
12580 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
12581 name for "lookahead".
12582 (report_types, usage): Likewise.
12583 * src/getargs.h (report_look_ahead_tokens): Renamed from
12584 report_lookaheads.
12585 * src/lalr.c (compute_look_ahead_tokens): Renamed from
12586 compute_lookaheads.
12587 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
12588 (look_ahead_tokens_print): Renamed from lookaheads_print.
12589 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
12590 state_rule_lookaheads_print.
12591 * src/state.h: Likewise.
12592 (reductions.look_ahead_tokens): Renamed from lookaheads.
12593 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
12594 AT_DATA_LOOKAHEADS_GRAMMAR.
12595
12596 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
12597
12598 * README: Update location of patched M4 distribution.
12599
12600 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
12601
12602 Don't assume the C++ compiler takes the same arguments as the C compiler
12603 (trivial change).
12604 * configure.ac (O0CXXFLAGS): New var.
12605 * tests/atlocal.in (CXXFLAGS): Use it.
12606
12607 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
12608
12609 Fix some "make check" problems with C++ reported by
12610 Albert Chin-A-Young for Tru64 C++ in this thread:
12611 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
12612
12613 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
12614 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
12615 Output to a .cc file for C++, not to a .c file.
12616 * tests/calc.at (AT_CHECK_CALC): Likewise.
12617 * tests/regression.at (AT_CHECK_DANCER): Likewise.
12618 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
12619
12620 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
12621
12622 * tests/calc.at, tests/actions.at: Workaround for SGI
12623 C++ compiler. (trivial change)
12624
12625 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
12626
12627 Spent a few hours checking out which prerequisite versions the
12628 current sources actually require. I went all the way back to
12629 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
12630 a seemingly endless set of combinations of versions more recent
12631 than that. The bottom line is that the current sources require
12632 fairly recent versions of the build tools, and it'll be some work
12633 to change this.
12634 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
12635 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
12636 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
12637 Add comments explaining why those particular versions are
12638 currently needed.
12639
12640 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
12641 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
12642 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
12643
12644 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
12645 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
12646
12647 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
12648
12649 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
12650 0.11.5. Suggested by Bruno Haible.
12651 * bootstrap: Remove gettext version checking.
12652
12653 * doc/bison.texinfo (Decl Summary): Also mention that %union
12654 can depend on prerequisite types. Problem reported by Tim
12655 Van Holder.
12656
12657 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
12658
12659 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
12660 * README-alpha: Don't tell people not to package this.
12661
12662 * bootstrap: Don't assume $(...) works; use `...` instead.
12663 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
12664 gettext better.
12665
12666 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
12667 put into the -d output file, and mention what to do if YYSTYPE is
12668 defined as a macro.
12669
12670 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
12671
12672 Undo change made earlier today: it caused autopoint to not bring
12673 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
12674 autopoint's.
12675
12676 * bootstrap: Check that gettext version matches what's in
12677 configure.ac. Warn users to ignore robots.txt ERROR 404.
12678 * bootstrap: Undo today's earlier change (logged below).
12679 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
12680
12681 The gettext version checking is causing more trouble than it's
12682 curing; remove it. Problem reported by Paul Hilfinger.
12683
12684 * bootstrap: Issue a warning that one can expect a message
12685 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
12686 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
12687
12688 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
12689
12690 Ensure that the C++ compiler used for testing actually works on a
12691 simple test program; if not, skip the C++-related tests. Problem
12692 reported by Vin Shelton in:
12693 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
12694
12695 * m4/cxx.m4: New file.
12696 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
12697 * tests/atlocal.in (BISON_CXX_WORKS): Add.
12698 * tests/local.at (AT_COMPILE_CXX): Use it.
12699
12700 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
12701
12702 * data/glr.c (yylloc): Output this macro even if locations are not
12703 being generated, as the GLR parser needs it even in that case.
12704 Problem reported by Troy A. Johnson
12705 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
12706
12707 * configure.ac (AC_INIT): Update to 1.875e.
12708
12709 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
12710
12711 * NEWS: Version 1.875d.
12712 * configure.ac (AC_INIT): Likewise.
12713 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
12714
12715 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
12716 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
12717 lalr1.cc runs afoul of the first, and the last two are no longer
12718 supported by GCC 3.4.0.
12719 * README: Mention GNU m4 1.4 or later; mention m4 patches.
12720 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
12721
12722 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
12723
12724 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
12725 unsigned int, for compatibility with latest gnulib hash module.
12726 * src/state.c (state_hash, state_hasher): Likewise.
12727 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
12728 * src/uniqstr.c (hash_uniqstr): Likewise.
12729
12730 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
12731
12732 * NEWS: Unescaped newlines are no longer allowed in char & strings.
12733
12734 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
12735 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
12736 character and string literals.
12737 (unexpected_end): New function.
12738 (unexpected_eof): Use it.
12739 (unexpected_newline): New function.
12740 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
12741 actions.
12742
12743 * NEWS: Document %expect-rr.
12744
12745 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
12746 Fix typo by replacing $1 with $option.
12747 Remove more 'intl'-related files.
12748 Don't DEFUN AM_INTL_SUBDIR twice.
12749
12750 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
12751 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
12752 strtoul.c.
12753 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
12754 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
12755 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
12756 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
12757 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
12758 * src/.cvsignore: Add *.output.
12759
12760 * src/parse-gram.y: Put copyright notice inside %{ %} so it
12761 gets copied to the output file.
12762
12763 2004-04-28 Paul Eggert <eggert@twinsun.com>
12764
12765 Get files from the gnulib and po repositories, instead of relying
12766 on them being in our CVS. Upgrade to latest versions of gnulib
12767 and Automake.
12768
12769 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
12770 * bootstrap: Bootstrap from gnulib and po repositories.
12771 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
12772 * README-cvs: Document these changes. Remove version numbers from
12773 mentions of build tools, since they change so often. Mention Flex.
12774
12775 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
12776 (gl_USE_SYSTEM_EXTENSIONS): Add.
12777 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
12778 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
12779 does this for us.
12780 (AC_ISC_POSIX): Remove; we no longer support this
12781 ancient OS, as it gets in the way of latest Autoconf & gnulib.
12782 (AC_HEADER_STDC): Remove: we now assume C89 or better.
12783 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
12784 Do not check for C89 headers, except for locale.h which is used
12785 by the Yacc library and must port to K&R hosts.
12786 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
12787 Do not check for C89 functions, except for setlocale which is
12788 used by the Yacc library.
12789 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
12790 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
12791 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
12792 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
12793 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
12794 AM_GNU_GETTEXT): Remove; now done by:
12795 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
12796 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
12797 for us.
12798
12799 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
12800 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
12801 Define to empty, as gnulib.mk will do the rest for us.
12802 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
12803 for us.
12804 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
12805 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
12806
12807 * src/files.c: Include gnulib's xstrndup.h.
12808
12809 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
12810 (REALLOC): Use xnrealloc, for likewise.
12811 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
12812 (strnlen, memrchr): Remove decls; functions no longer used.
12813 Include <stpcpy.h>.
12814
12815 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
12816 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
12817 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
12818 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
12819 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
12820 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
12821 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
12822 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
12823 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
12824 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
12825 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
12826 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
12827 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
12828 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
12829 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
12830 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
12831 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
12832 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
12833 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
12834 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
12835 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
12836 Remove, as these files are now generated automatically
12837 by bootstrap or automake.
12838
12839 * po/ChangeLog: Remove: all but one entry was a duplicate
12840 of this file, and I moved that 2000-11-02 entry here.
12841
12842 * config/.cvsignore: Add Makefile, depcomp, install-sh.
12843 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
12844 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
12845 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
12846 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
12847 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
12848 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
12849 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
12850 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
12851 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
12852 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
12853 xstrndup.h.
12854 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
12855 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
12856 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
12857 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
12858 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
12859 * src/.cvsignore: Remove *_.c.
12860
12861
12862 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
12863 support it. (The latest stable gzip doesn't.)
12864
12865 2004-04-27 Paul Eggert <eggert@twinsun.com>
12866
12867 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
12868 case, as stos_ is now used by destructors due to the 2004-02-09
12869 change.
12870
12871 Remove more K&R C support.
12872 * lib/libiberty.y (PARAMS): Remove. All uses removed.
12873 * lib/subpipe.c (errno): Remove decl.
12874 Include <stdlib.h> unconditionally.
12875 (EXIT_FAILURE): Remove macro.
12876 * src/complain.c (vfprintf, strerror): Remove.
12877 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
12878 unconditionally.
12879 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
12880 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
12881 (strchr, strspn, memchr): Remove decls.
12882 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
12883 unconditionally. Do not declare perror.
12884 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
12885 unconditionally.
12886
12887 * src/complain.c (_): Remove useless defn, as system.h defines this.
12888
12889 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
12890 with latest obstack.h.
12891 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
12892 to procedure types, as obstack.h now does that for us.
12893 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
12894
12895 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
12896 so that this include file can stand alone.
12897 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
12898 does this now. Include subpipe.h first after config.h, to
12899 test whether it can stand alone.
12900
12901 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
12902 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
12903 unused declaration.
12904
12905 * tests/synclines.at (%union synch line): Put a dummy member in
12906 the union, because empty unions aren't allowed in C. Caught
12907 by GCC 3.4.0.
12908
12909 2004-04-13 Jim Meyering <jim@meyering.net>
12910
12911 * src/conflicts.c (conflicts_print): Correct format string typo:
12912 use `%%' to produce literal `%'. (trivial change)
12913
12914 2004-03-30 Paul Eggert <eggert@twinsun.com>
12915
12916 * src/getargs.c (version): Update copyright year to 2004.
12917
12918 * data/c.m4 (b4_int_type): Use 'short int' rather than
12919 'short', and similarly for 'long', 'unsigned', etc.
12920 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
12921 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
12922 yy_yypstack, yydumpstack): Likewise.
12923 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
12924 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
12925 Likewise.
12926 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
12927 yy_stack_print, yyparse): Likewise.
12928 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
12929 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
12930 * lib/bitset.c (bitset_print): Likewise.
12931 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
12932 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
12933 * lib/bitsetv.c (bitsetv_dump): Likewise.
12934 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
12935 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
12936 Likewise.
12937 * src/LR0.c (allocate_itemsets): Likewise.
12938 * src/gram.h (rule_number, rule): Likewise.
12939 * src/lalr.h (goto_number): Likewise.
12940 * src/nullable.c (nullable_compute): Likewise.
12941 * src/output.c (prepare_rules): Likewise.
12942 * src/relation.c (relation_print, relation_digraph): Likewise.
12943 * src/relation.h (relation_node): Likewise.
12944 * src/state.h (state_number, transitions, errs, reductions,
12945 struct state): Likewise.
12946 * src/symtab.h (symbol_number, struct symbol): Likewise.
12947 * src/tables.c (vector_number, tally, action_number,
12948 default_goto, goto_actions): Likewise.
12949 * tests/existing.at (GNU Cim Grammar): Likewise.
12950 * tests/regression.at (Web2c Actions): Likewise.
12951
12952 * src/output.c (muscle_insert_short_int_table): Renamed from
12953 muscle_insert_short_table. All uses changed.
12954
12955 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
12956
12957 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
12958 (declaration): Replace expected_conflicts with expected_sr_conflicts.
12959 Add %expect-rr rule.
12960
12961 * src/scan-gram.l: Recognize %expect-rr.
12962
12963 * src/conflicts.h (expected_sr_conflicts): Rename from
12964 expected_conflicts.
12965 (expected_rr_conflicts): Declare.
12966
12967 * src/conflicts.c (expected_sr_conflicts): Rename from
12968 expected_conflicts.
12969 (expected_rr_conflicts): Define.
12970 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
12971 for GLR parsers.
12972 Use expected_sr_conflicts in place of expected_conflicts.
12973 Warn if expected_rr_conflicts used in non-GLR parser.
12974
12975 * doc/bison.texinfo: Add documentation for %expect-rr.
12976
12977 2004-03-08 Paul Eggert <eggert@gnu.org>
12978
12979 Add support for hex token numbers. Suggested by Odd Arild Olsen in
12980 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
12981
12982 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
12983 in lalr1.cc.
12984 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
12985 * src/scan-gram.l (scan_integer): New function.
12986 ({int}): Use it.
12987 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
12988 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
12989 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
12990 Say "long int", not "long", for uniformity with GNU style.
12991
12992 2004-02-25 Paul Eggert <eggert@twinsun.com>
12993
12994 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
12995 compilers. This fixes a problem with Intel's C++ compiler being
12996 chatty, reported by Guido Trentalancia in
12997 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
12998
12999 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
13000
13001 Support %destructor and merge error locations in lalr1.cc.
13002
13003 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
13004 (Parser::stos_): Define unconditionally.
13005 (Parser::destruct_): New method. Generate its body with
13006 b4_yydestruct_generate.
13007 (Parser::error_start_): New attribute.
13008 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
13009 token which are discarded.
13010 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
13011 error_start_ when erroneous token are discarded.
13012 (Parser::parse) <yyerrlab1>: Compute the location of the error
13013 token so that it covers all the discarded tokens.
13014 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
13015 it can be called with `%skeleton "lalr1.cc"', and do that.
13016
13017 2004-02-02 Paul Eggert <eggert@twinsun.com>
13018
13019 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
13020 $(top_srcdir)/lib and ../lib. This fixes a bug reported
13021 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
13022 There's no need to mention top_builddir since Automake does that
13023 for us.
13024 (INCLUDES): Remove, as Automake says it's obsolescent.
13025 Contents migrated into AM_CPPFLAGS as described above.
13026 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
13027
13028 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13029
13030 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
13031 (yyreportSyntaxError): Handle case where lookahead token is
13032 YYEMPTY.
13033
13034 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13035
13036 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
13037 resulting parsers are compilable with C++.
13038
13039 2003-12-23 Paul Eggert <eggert@twinsun.com>
13040
13041 * config/depcomp, config/install-sh: Sync with Automake 1.8.
13042 * src/output.c (output_skeleton): Rename local var.
13043 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
13044 Bison tokens, as this runs afoul of the 2003-10-07 change that
13045 disallowed NUL bytes in character constants or string literals.
13046
13047 * tests/local.at: Require Autoconf 2.59's Autotest.
13048 * tests/testsuite.at: Don't include local.at, since we now assume
13049 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
13050 including it.
13051 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
13052 multiple inclusion warnings.
13053
13054 2003-12-02 Akim Demaille <akim@epita.fr>
13055
13056 * doc/bison.texinfo (How Can I Reset the Parser): More about start
13057 conditions.
13058 From Bruno Haible.
13059
13060 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
13061
13062 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
13063
13064 2003-10-07 Paul Eggert <eggert@twinsun.com>
13065
13066 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
13067 if testsuite doesn't exist.
13068
13069 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
13070 literals, unfortunately.
13071 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
13072 Complain about NUL bytes in character constants or string literals.
13073
13074 2003-10-05 Paul Eggert <eggert@twinsun.com>
13075
13076 * NEWS: Don't document %no-default-prec, as it's still
13077 too experimental.
13078 * doc/bison.texinfo: Document %no-default-prec only if
13079 the defaultprec flag is set. Normally it's not.
13080
13081 2003-10-04 Paul Eggert <eggert@twinsun.com>
13082
13083 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
13084 non-modifiable lvalue, instead of a modifiable one.
13085 * doc/bison.texinfo (Actions): Document that $$ can
13086 be assigned to. Do not claim that $$ and $N are
13087 array element references: user code should not rely on this.
13088
13089 2003-10-01 Paul Eggert <eggert@twinsun.com>
13090
13091 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
13092 (grammar_declaration): Use it.
13093 * src/scan-gram.l: New token %no-default-prec.
13094 * tests/conflicts.at: Revamp tests to use %no-default-prec.
13095 * NEWS, doc/bison.texinfo: Document the above.
13096
13097 2003-10-01 Akim Demaille <akim@epita.fr>
13098
13099 VCG no longer supports long_straight_phase.
13100
13101 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
13102 * src/print_graph.c (print_graph): Adjust.
13103
13104 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
13105 and Paul Eggert <eggert@twinsun.com>
13106
13107 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
13108 Table of Symbols): Document %default-prec.
13109 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
13110 (grammar_declaration): Set default_prec on %default-prec.
13111 * src/scan-gram.l (%default-prec): New token.
13112 * src/reader.h (default_prec): New flag.
13113 * src/reader.c: Likewise.
13114 (packgram): Handle it.
13115 * tests/conflicts.at (%default-prec without %prec,
13116 %default-prec with %prec, %default-prec 1): New tests.
13117
13118 2003-09-30 Paul Eggert <eggert@twinsun.com>
13119
13120 * tests/testsuite.at: Include local.at, not input.at, fixing
13121 a typo in the 2003-08-25 patch.
13122
13123 2003-08-27 Akim Demaille <akim@epita.fr>
13124
13125 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
13126 GCC warnings.
13127
13128 2003-08-26 Akim Demaille <akim@epita.fr>
13129
13130 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
13131 "<\#" to avoid magic from Gnus when posting parts of this script.
13132
13133 2003-08-26 Akim Demaille <akim@epita.fr>
13134
13135 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
13136 (Parser::parse): here.
13137 Adjust: nerrs and errstatus is now replaced by...
13138 (Parser::nerrs_, Parser::errstatus_): New.
13139
13140 2003-08-25 Akim Demaille <akim@epita.fr>
13141
13142 * config/announce-gen, Makefile.cfg: New.
13143 * Makefile.am: Adjust.
13144 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
13145 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
13146
13147 2003-08-25 Akim Demaille <akim@epita.fr>
13148
13149 When reducing initial empty rules, Bison parser read an initial
13150 location that is not defined. This results in garbage, and that
13151 affects Bison's own parser. Therefore we need (i) to extend Bison
13152 to support a means to initialize this location, and (ii) to use
13153 this CVS Bison to fix CVS Bison's parser.
13154
13155 * src/reader.h, reader.c (epilogue_augment): Remove, replace
13156 with...
13157 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
13158 * src/parse-gram.y: Adjust.
13159 (%initial-action): New.
13160 (%error-verbose): Since we require CVS Bison, there is no reason
13161 not to use it.
13162 * src/scan-gram.l: Adjust.
13163 * src/Makefile.am (YACC): New, to make sure we use our own parser.
13164 * data/yacc.c (yyparse): Use b4_initial_action.
13165
13166 2003-08-25 Akim Demaille <akim@epita.fr>
13167
13168 * doc/bison.texinfo: Don't promote stdout for error messages.
13169
13170 2003-08-25 Akim Demaille <akim@epita.fr>
13171
13172 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
13173 From Alexandre Duret-Lutz.
13174
13175 2003-08-25 Akim Demaille <akim@epita.fr>
13176
13177 Version 1.875c.
13178
13179 2003-08-25 Akim Demaille <akim@epita.fr>
13180
13181 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
13182 Use them.
13183
13184 2003-08-25 Akim Demaille <akim@epita.fr>
13185
13186 * data/lalr1.cc (Parser::reduce_print_): New.
13187 Use it.
13188
13189 2003-08-25 Akim Demaille <akim@epita.fr>
13190
13191 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
13192 error recovery loops. This patch is based on
13193 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
13194 Also, augment the similarity between lalr1.cc and yacc.c.
13195 Note: the locations of error recovery rules are not correct yet.
13196
13197 * data/lalr1.cc: Comment changes to augment the similarity between
13198 lalr1.cc and yacc.c.
13199 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
13200 (yyerrlab1): Remove, but where it used to be (now the bottom part of
13201 yyerrlab), when hitting EOF, pop the whole stack here instead of
13202 merely falling thru the default error handling mechanism.
13203 (yyerrorlab): New label, with the old contents of YYERROR,
13204 plus the following change: pop the stack of rhs corresponding
13205 to the production that invoked YYERROR. That is how Yacc
13206 behaves (required by POSIX).
13207 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
13208 fail.
13209
13210 2003-08-25 Akim Demaille <akim@epita.fr>
13211
13212 Tune local.at so that people can "autom4te -l autotest calc.at -o
13213 calc" for instance, to extract a sub test suite.
13214
13215 * tests/testsuite.at: Move the initialization, Autotest version
13216 requirement, and AT_TESTED invocation into...
13217 * tests/local.at: here.
13218 * tests/testsuite.at: Include it for compatibility with Autoconf
13219 2.57.
13220 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
13221 be ignore.
13222
13223 2003-08-04 Paul Eggert <eggert@twinsun.com>
13224
13225 Rework code slightly to avoid gcc -Wtraditional warnings.
13226 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
13227 The returned value is now stored in *YY0. All callers changed.
13228 * src/output.c (merge_output): Adjust to the above change.
13229
13230 2003-07-26 Paul Eggert <eggert@twinsun.com>
13231
13232 * data/glr.c (YYASSERT): New macro.
13233 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
13234 yyresolveStates, yyprocessOneStack):
13235 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
13236 Derived from a suggestion by Frank Heckenbach.
13237
13238 2003-07-25 Paul Eggert <eggert@twinsun.com>
13239
13240 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
13241 for portability to K&R C (after ansi2knr, presumably). See
13242 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
13243 by Frank Heckenbach, though I have omitted the structure-initialization
13244 part of his glr-knr.diff patch since I recall that the Portable
13245 C Compiler didn't require that change.
13246
13247 Let the user specify how to allocate and free memory.
13248 Derived from a suggestion by Frank Heckenbach in
13249 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
13250 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
13251 All uses of free, malloc, realloc changed to use these macros,
13252 and unnecessary casts removed.
13253 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
13254
13255 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
13256
13257 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
13258 use s.empty() rather than s == "" to test for empty string; see
13259 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
13260 (trivial change)
13261
13262 2003-06-25 Akim Demaille <akim@epita.fr>
13263
13264 * config/depcomp, config/install-sh: Update from masters.
13265
13266 2003-06-20 Paul Eggert <eggert@twinsun.com>
13267
13268 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
13269 and return properly parenthesized result.
13270 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
13271 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
13272 Remove unnecessary parentheses from uses.
13273 * doc/bison.texinfo (Location Default Action): Describe the
13274 conventions for parentheses.
13275
13276 2003-06-19 Paul Eggert <eggert@twinsun.com>
13277
13278 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
13279 yyreportTree): Do not assume that size_t is the same width as int,
13280 when printing sizes. Print sizes using an unsigned format.
13281 Problem reported by Frank Heckenbach in
13282 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
13283
13284 Port to Forte Developer 7 C compiler.
13285 * data/glr.c (struct YYLTYPE): If locations are not being used,
13286 declare a single dummy member, as empty structs do not conform
13287 to the C standard.
13288 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
13289 the Forte Developer 7 C compiler complains that end-of-loop
13290 code is not reached.
13291
13292 2003-06-17 Paul Eggert <eggert@twinsun.com>
13293
13294 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
13295 avoid warnings from picky compilers about redefinition of PARAMS.
13296
13297 2003-06-17 Paul Eggert <eggert@twinsun.com>
13298
13299 Version 1.875b.
13300
13301 * NEWS: Document 1.875b.
13302
13303 * lib/bbitset.h: Do not include config.h; that's the includer's job.
13304 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
13305 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
13306 Don't use 'index' in comments, as it's a builtin fn on some hosts.
13307 * lib/bitset_stats.c: Include gettext.h unconditionally, as
13308 per recent gettext manual's suggestion.
13309 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
13310 Use prototypes, not old-style definitions.
13311 * lib/lbitset.c (lbitset_unused_clear): Likewise.
13312 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
13313 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
13314 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
13315 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
13316 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
13317 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
13318 vbitset_or_and_cmp, vbitset_copy): Likewise.
13319
13320 * lib/libiberty.h: Do not include config.h; that's the includer's job.
13321 Do not include <stdlib.h>.
13322 (PARAMS): Define unconditionally for C89.
13323 (ATTRIBUTE_NORETURN): Remove.
13324 (ATTRIBUTE_UNUSED): Define unconditionally.
13325
13326 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
13327 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
13328 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
13329 * lib/vbitset.c, lib/vbitset.h: New files.
13330 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13331 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
13332 from libbitset.
13333
13334 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
13335 `How Can I Reset @code{yyparse}', since texinfo does not allow
13336 arbitrary @ in node names.
13337
13338 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
13339 shouldn't be needed according to the gettext 0.12.1 documentation
13340 but which seem to be needed anyway: codeset.m4 glibc21.m4
13341 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
13342 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
13343 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
13344
13345 * lib/.cvsignore: Add stdbool.h.
13346 * m4/.cvsignore: Add nls.m4, po.m4.
13347
13348 Upgrade to CVS gnulib.
13349 * stdbool_.h: File renamed from stdbool.h.in.
13350 * configure.ac (AM_STDBOOL_H): Invoke this instead of
13351 AC_HEADER_STDBOOL.
13352 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
13353 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
13354 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
13355 (MOSTLYCLEANFILES): New var.
13356 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
13357 (stdbool.h): New rule.
13358 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
13359 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
13360 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
13361 m4/quote.m4: Upgrade to today's gnulib.
13362
13363 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
13364 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
13365 the tests right now.
13366 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
13367 yyerror are declared before use; C99 requires this.
13368
13369 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13370
13371 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
13372 first.
13373 (yyrecoverSyntaxError): Correct the logic for setting and testing
13374 yyerrState.
13375 Correct comment on handling EOF.
13376 Allow states with only a default reduction, rather than failing
13377 (I can't quite reconstruct why these were not allowed before).
13378
13379 Fixes to avoid problem that $-N rules in GLR parsers can cause
13380 buffer overruns, corrupting state.
13381
13382 * src/output.c (prepare_rules): Output max_left_semantic_context
13383 definition.
13384 * src/reader.h (max_left_semantic_context): New variable declaration.
13385 * src/scan-gram.l (max_left_semantic_context): Define.
13386 (handle_action_dollar): Update max_left_semantic_context.
13387 * data/glr.c (YYMAXLEFT): New definition.
13388 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
13389 (yyresolveAction): Ditto.
13390
13391 Fixes to problems with location handling in GLR parsers reported by
13392 Frank Heckenbach (2003/06/05).
13393
13394 * data/glr.c (YYLTYPE): Make trivial if locations not used.
13395 (YYRHSLOC): Add parentheses, and define only if locations used.
13396 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
13397 locations not used.
13398 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
13399 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
13400
13401 * tests/cxx-type.at: Exercise location information; update tests
13402 to differentiate output with and without locations.
13403 Remove forward declarations of yylex and yyerror---caused errors
13404 because default YYLTYPE not yet defined.
13405 Change semantic actions to compute strings, rather than printing
13406 them directly (to test proper passing of semantics values). Change
13407 output to prefix notation and update test data and expected results.
13408 (yylex): Track locations.
13409 (stmtMerge): Return value rather than printing, and include arguments
13410 in value.
13411
13412 2003-06-03 Paul Eggert <eggert@twinsun.com>
13413
13414 Avoid warnings generated by GCC 2.95.4 when Bison is
13415 configured with --enable-gcc-warnings.
13416 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
13417 yy::]b4_parser_class_name[::translate_,
13418 yy::Stack::operator[] (unsigned),
13419 yy::Stack::operator[] (unsigned) const,
13420 yy::Slice::operator[] (unsigned),
13421 yy::Slice::operator[] (unsigned) const):
13422 Rename local vars to avoid warnings.
13423 * tests/glr-regression.at (Improper handling of embedded actions
13424 and $-N in GLR parsers): Remove unused local variable from yylex.
13425 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
13426 (void) as arg when not pure, since we now assume C89 when building
13427 Bison. Pacify GCC by using parameter.
13428
13429 2003-06-02 Paul Eggert <eggert@twinsun.com>
13430
13431 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
13432 yy::Location::lines, yy::Location::columns): Rename arguments
13433 to avoid shadowing; this removes a warning generated by GCC 3.3.
13434
13435 2003-06-01 Paul Eggert <eggert@twinsun.com>
13436
13437 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
13438 to g++, as GCC 3.3 complains if you do it.
13439 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
13440 everything that WARNING_CFLAGS has, except omit warnings
13441 not suitable for C++.
13442 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
13443 * tests/atlocal.in (CXXFLAGS): New var.
13444 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
13445
13446 Fix a GLR parser bug I reported in February; see
13447 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
13448 The problem was that GLR parsers did not conform to the C standard,
13449 because actions like { $1 = $2 + $3; } expanded to expressions
13450 that invoked YYFILL in separate subexpressions, and YYFILL assigned
13451 to a local variable. The C standard says that expressions
13452 like (var = f ()) + (var = f ()) have undefined behavior.
13453 Another problem was that GCC sometimes issues warnings that
13454 yyfill and its parameters are unused.
13455
13456 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
13457 as possibly unused.
13458 (yyfill): New function.
13459 (YYFILL): Use it.
13460 (yyuserAction): Change type of yynormal to bool, so that it matches
13461 the new yyfill signature. Mark it as possibly unused.
13462
13463
13464 Follow up on a bug I reported in February, where a Bison-generated
13465 parser can loop. Provide a test case and a fix for yacc.c. I
13466 don't have a fix for lalr1.cc or for glr.c, unfortunately.
13467 The original bug report is in:
13468 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
13469
13470 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
13471 macro's size was becoming unwieldy.
13472 (yyerrlab): Do not discard an empty lookahead symbol, as this
13473 might destroy garbage.
13474 (yyerrorlab): New label, with the old contents of YYERROR,
13475 plus the following change: pop the stack of rhs corresponding
13476 to the production that invoked YYERROR. That is how Yacc
13477 behaves, and POSIX requires this behavior.
13478 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
13479 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
13480 Define 'alarm' to do nothing if unistd.h is not available.
13481 Add a new rule "exp: '-' error;" to test the above change to
13482 data/yacc.c. Use 'alarm' to abort any test taking longer than
13483 10 seconds, as it's probably looping.
13484 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
13485 Also, the new yacc.c generates two fewer diagnostics for an
13486 existing test.
13487
13488 2003-05-24 Paul Eggert <eggert@twinsun.com>
13489
13490 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
13491 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
13492 This fixes a problem reported by John Bowman when the Compaq/HP
13493 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
13494 -ansi -Wall -gall).
13495 * data/yacc.c (union yyalloc): Likewise.
13496 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
13497
13498 Switch from 'int' to 'bool' where that makes sense.
13499
13500 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
13501 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
13502 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
13503 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
13504 Return or accept bool, not int. All callers changed.
13505 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
13506 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
13507 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
13508 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
13509 bitset_or_and_cmp_): Likewise.
13510 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
13511 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
13512 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
13513 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
13514 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
13515 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
13516 bitset_stats_or_and_cmp): Likewise.
13517 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
13518 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
13519 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
13520 ebitset_xor_cmp): Likewise.
13521 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
13522 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
13523 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
13524 lbitset_xor_cmp): Likewise.
13525 * lib/bbitset.h: Include <stdbool.h>.
13526 (struct bitset_vtable): The following members now return bool, not
13527 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
13528 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
13529 or_and_cmp).
13530 * src/conflicts.c (count_rr_conflicts): Likewise.
13531 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
13532 All uses changed.
13533 * lib/ebitset.c (ebitset_obstack_init): Likewise.
13534 * lib/lbitset.c (lbitset_obstack_init): Likewise.
13535 * src/getargs.c (debug_flag, defines_flag, locations_flag,
13536 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
13537 graph_flag): Likewise.
13538 * src/getargs.h (debug_flag, defines_flag, locations_flag,
13539 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
13540 graph_flag): Likewise.
13541 * src/output.c (error_verbose): Likewise.
13542 * src/output.h (error_verbose): Likewise.
13543 * src/reader.c (start_flag, typed): Likewise.
13544 * src/reader.h (typed): Likewise.
13545 * src/getargs.c (LOCATIONS_OPTION): New constant.
13546 (long_options, getargs): Use it.
13547 * src/lalr.c (build_relations): Use bool, not int.
13548 * src/nullable.c (nullable_compute): Likewise.
13549 * src/print.c (print_reductions): Likewise.
13550 * src/tables.c (action_row, pack_vector): Likewise.
13551 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
13552 * src/output.c (prepare): Use it.
13553 * src/output.c (token_definitions_output,
13554 symbol_destructors_output, symbol_destructors_output): Use string,
13555 not boolean integer, to keep track of whether to output separator.
13556 * src/print_graph.c (print_core): Likewise.
13557 * src/state.c (state_rule_lookaheads_print): Likewise.
13558
13559 * config/install-sh: Sync from automake 1.7.5.
13560
13561 2003-05-14 Paul Eggert <eggert@twinsun.com>
13562
13563 * src/parse-gram.y (rules_or_grammar_declaration): Require a
13564 semicolon after a grammar declaration, in the interest of possible
13565 future changes to the Bison input language.
13566 Do not allow a stray semicolon at the start of the grammar.
13567 (rhses.1): Allow one or more semicolons after any rule, including
13568 just before "|" as required by POSIX.
13569 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
13570 grammar.
13571
13572 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
13573
13574 %parse-param support for lalr1.cc.
13575
13576 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
13577 b4_cc_constructor_calls, b4_cc_constructor_call,
13578 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
13579 definitions.
13580 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
13581 parse-param arguments.
13582 (yy::b4_parser_class_name): Declare instance variables to
13583 hold parse-param arguments.
13584 * tests/calc.at: s/value/semantic_value/ because value clashes
13585 with a member of yy::b4_parser_class_name. Adjust C++ code
13586 to handle %parse-param. Enable %parse-param test in C++.
13587
13588 2003-05-12 Paul Eggert <eggert@twinsun.com>
13589
13590 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
13591 English a bit. Fix fclose typo. Change "const char" to "char
13592 const", and use ANSI C rather than K&R for "main". Suggest
13593 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
13594 and suggest yy_switch_to_buffer.
13595
13596 2003-05-05 Paul Eggert <eggert@twinsun.com>
13597
13598 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
13599 C89. This avoids a diagnostic on compilers that define __STDC__
13600 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
13601 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
13602
13603 2003-05-03 Paul Eggert <eggert@twinsun.com>
13604
13605 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
13606 Do not overrun array bounds.
13607 This should fix a bug reported today by Olatunji Oluwabukunmi in
13608 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
13609
13610 2003-04-29 Akim Demaille <akim@epita.fr>
13611
13612 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
13613 * src/getargs.c, src/getargs.h: here, as bool, not int.
13614 (nondeterministic_parser): New.
13615 * src/parse-gram.y, src/scan-gram.l: Support
13616 %nondeterministic-parser.
13617 * src/output.c (prepare): Use nondeterministic_parser instead
13618 of glr_parser where appropriate.
13619 * src/tables.c (conflict_row, action_row, save_row)
13620 (token_actions, token_actions, pack_vector): Ditto.
13621
13622 2003-04-29 Akim Demaille <akim@epita.fr>
13623
13624 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
13625
13626 2003-04-29 Akim Demaille <akim@epita.fr>
13627
13628 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
13629 with %pure-parser and %locations to exercise the patch from Yakov
13630 Markovitch below.
13631
13632 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
13633
13634 * data/yacc.c: (b4_lex_param): Corrected for the case where
13635 %lex-param is provided and %pure-parser isn't.
13636
13637 2003-04-27 Paul Eggert <eggert@twinsun.com>
13638
13639 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
13640 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
13641 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
13642 if it is not defined.
13643 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
13644
13645 2003-04-26 Paul Eggert <eggert@twinsun.com>
13646
13647 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
13648 Declare to be of type suitable for the ninf value itself, not of
13649 type suitable for the corresponding table, since the latter might
13650 be unsigned but the ninf value might be negative. This fixes a
13651 bug reported by Alexandre Duret-Lutz in
13652 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
13653
13654 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
13655 invokes it. We shouldn't invoke it twice because it will attempt
13656 to put error.o in the archive twice. This fixes a glitch reported
13657 by Martin Mokrejs in
13658 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
13659
13660 2003-04-21 Paul Eggert <eggert@twinsun.com>
13661
13662 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
13663 to gnulib.
13664
13665 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
13666
13667 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
13668 Fix obvious typo that results in uncompilable GLR parsers
13669 when both %pure-parser and %locations are used. (trivial change)
13670
13671 2003-04-17 Paul Eggert <eggert@twinsun.com>
13672
13673 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
13674 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
13675 Do not insert the expected token via unput, as this runs afoul
13676 of a POSIX-compatibility bug in flex 2.5.31.
13677 All uses changed to BEGIN the parent state,
13678 since we no longer insert the expected token via unput.
13679 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
13680 that is no longer emitted after the above change.
13681
13682 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
13683 the first one. This change is from Paul Hilfinger, and it fixes
13684 regression reported by Werner Lemberg in
13685 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
13686
13687 (resolve_sr_conflict): Don't invoke state_errs_set
13688 unless one or more tokens have been explicitly made errors.
13689 Otherwise, the above change causes Bison to abort.
13690
13691 * tests/existing.at (GNU pic Grammar): New test case, taken from
13692 Lemberg's email.
13693
13694 2003-03-31 Akim Demaille <akim@epita.fr>
13695
13696 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
13697
13698 2003-03-31 Akim Demaille <akim@epita.fr>
13699
13700 * src/output.c (prepare_symbols): Avoid trailing spaces in the
13701 output.
13702
13703 2003-03-31 Akim Demaille <akim@epita.fr>
13704
13705 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
13706 From Paul Hilfinger.
13707
13708 2003-03-29 Akim Demaille <akim@epita.fr>
13709
13710 * m4/error.m4: Do not put under dynamic conditions some code which
13711 expansion is under static control.
13712
13713 2003-03-29 Akim Demaille <akim@epita.fr>
13714
13715 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
13716
13717 2003-03-29 Akim Demaille <akim@epita.fr>
13718
13719 * doc/bison.texinfo (Strings are Destroyed): New.
13720
13721 2003-03-13 Paul Eggert <eggert@twinsun.com>
13722
13723 * .cvsignore: Add configure.lineno.
13724 * src/.cvsignore: Add yacc.
13725 * tests/.cvsignore: Add testsuite.log.
13726 * doc/fdl.texi: Sync with latest FSF version.
13727
13728 2003-03-12 Paul Eggert <eggert@twinsun.com>
13729
13730 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
13731 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
13732 cursor, instead of leaving it undefined. This fixes a bug
13733 reported by Tim Van Holder in
13734 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
13735 * tests/input.at (Torturing the Scanner): Test the scanner on
13736 an empty input file, which was Tim Van Holder's test case.
13737
13738 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
13739 <sys/resource.h> can be included, include sys/time.h and
13740 sys/times.h first, if available. This works around the SunOS
13741 4.1.4 porting bug reported by Bruce Becker in
13742 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
13743
13744 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
13745 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
13746 AC_HEADER_SYS_WAIT.
13747
13748 Merge changes from gnulib. This was prompted because the CVS
13749 snapshot didn't build on Solaris 7 due to strnlen problems.
13750
13751 These changes need to be merged back into gnulib:
13752 * lib/hash.c: Include <stdbool.h> unconditionally.
13753 * m4/onceonly.m4 (m4_quote): New macro.
13754 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
13755 Quote AC_FOREACH variable-expansions properly.
13756 The 2003-01-03 obstack.h change also needs merging.
13757 {end of changes requiring merging}
13758
13759 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13760 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
13761 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
13762 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
13763 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
13764 New files, imported from gnulib.
13765 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
13766 above.
13767
13768 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
13769 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
13770 gnulib sources.
13771
13772 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
13773 Add.
13774 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
13775 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
13776 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
13777 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
13778 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
13779 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
13780 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
13781 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
13782 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
13783 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
13784 (jm_PREREQ_ARGMATCH): Remove.
13785 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
13786 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
13787
13788 * src/system.h: Include <stdbool.h> unconditionally.
13789
13790 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
13791 assuming at least C89 in the bitset code for some time now.
13792
13793 2003-03-03 Akim Demaille <akim@epita.fr>
13794
13795 * ro.po: New.
13796
13797 2003-03-02 Akim Demaille <akim@epita.fr>
13798
13799 * doc/bison.texinfo (Table of Symbols): Reactivate the
13800 documentation for %lex-param, and %parse-param.
13801
13802 2003-03-02 Akim Demaille <akim@epita.fr>
13803
13804 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
13805 generate verbose error messages.
13806 Use the number of tokens as an upper bound in yytname, as it
13807 cannot be a non terminal.
13808
13809 2003-03-02 Akim Demaille <akim@epita.fr>
13810
13811 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
13812 message.
13813
13814 2003-03-02 Akim Demaille <akim@epita.fr>
13815
13816 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
13817 Use them to exercise yycheck overrun.
13818 Based on Andrew Suffield's grammar.
13819
13820 2003-03-02 Akim Demaille <akim@epita.fr>
13821
13822 Create tests/local.at for Bison generic testing macros.
13823
13824 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
13825 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
13826 This new file.
13827 * tests/calc.at (AT_CHECK_CALC): Adjust.
13828 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
13829 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
13830 * tests/local.at: here.
13831 (AT_COMPILE_CXX): Tags the tests using it as c++.
13832 Ignore the test if CXX is not functional.
13833
13834 2003-03-01 Paul Eggert <eggert@twinsun.com>
13835
13836 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
13837 not loc->end, since loc->end might contain garbage and this leads
13838 to undefined behavior on some platforms.
13839 (id_loc, token_start): Use (IF_LINTed) initial values that do not
13840 depend on *loc, so that the reader doesn't give the the false
13841 impression that *loc is initialized.
13842 (<INITIAL>"%%"): Do not bother setting code_start, since its value
13843 does not survive the return.
13844
13845 2003-03-01 Akim Demaille <akim@epita.fr>
13846
13847 * src/scan-gram.l (code_start): Always initialize it when entering
13848 into yylex, as SC_EPILOGUE is activated *before* the corresponding
13849 yylex invocation. An alternative would be making it static, but
13850 then it starts with the second %%'s beginning, instead of its end.
13851
13852 2003-02-28 Paul Eggert <eggert@twinsun.com>
13853
13854 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
13855 around a UnixWare 7.1.1 porting bug reported by John Hughes in
13856 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
13857
13858 2003-02-26 Paul Eggert <eggert@twinsun.com>
13859
13860 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
13861 Remove Sequent/Pyramid discussion (nobody uses them any more).
13862 Merge VMS and MS-DOS discussion; these ports may well be dead
13863 but let's keep mentioning them for now. Put <> around email
13864 addresses. Add copyright notice.
13865
13866 2003-02-24 Paul Eggert <eggert@twinsun.com>
13867
13868 * data/glr.c (yy_reduce_print): yylineno -> yylno,
13869 to avoid collision with flex use of yylineno.
13870 Problem reported by Bruce Lilly in
13871 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
13872 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
13873 * data/yacc.c (yy_reduce_print): Likewise.
13874
13875 * config/depcomp: Sync with Automake 1.7.3.
13876
13877 2003-02-21 Akim Demaille <akim@epita.fr>
13878
13879 * data/lalr1.cc: Use temporary variables instead of casts to
13880 change integer types.
13881 Suggested by Paul Eggert.
13882
13883 2003-02-21 Akim Demaille <akim@epita.fr>
13884
13885 * doc/bison.texinfo: Use "location" consistently to refer to @n,
13886 to avoid confusions with lalr1.cc's notion of Position.
13887 Suggested by Paul Eggert.
13888
13889 2003-02-20 Akim Demaille <akim@epita.fr>
13890
13891 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
13892 before initial_columns.
13893 (location.hh): Use consistent variable names when defining the
13894 operator<<.
13895 Use "last" so that we subtract from Positions, not from unsigned.
13896
13897 2003-02-20 Akim Demaille <akim@epita.fr>
13898
13899 * data/lalr1.cc (position.hh): New subfile, including the extended
13900 and Doxygen'ed documentation of class Position.
13901 (location.hh): Use it.
13902 Document a` la Doxygen.
13903 With the help of Benoit Perrot.
13904
13905 2003-02-20 Akim Demaille <akim@epita.fr>
13906
13907 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
13908 AT_YACC_IF.
13909 Redefine AT_YYERROR_SEES_LOC_IF using it.
13910 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
13911 not defined.
13912 Don't use the location in yy::Parser::error_ and
13913 yy::Parser::print_ when not %locations.
13914 Activate more lalr1.cc tests.
13915
13916 2003-02-19 Akim Demaille <akim@epita.fr>
13917
13918 * data/lalr1.cc: When displaying a line number, be sure to make it
13919 an int.
13920
13921 2003-02-19 Akim Demaille <akim@epita.fr>
13922
13923 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
13924 Remove, useless.
13925 (YYABORT, YYACCEPT, YYERROR): New.
13926 * tests/calc.at: Renable the lalr1.cc test.
13927
13928 2003-02-19 Akim Demaille <akim@epita.fr>
13929
13930 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
13931 error recovery, mixing with/without pops and discarding of the
13932 lookahead.
13933 Exercise YYERROR.
13934 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
13935
13936 2003-02-17 Paul Eggert <eggert@twinsun.com>
13937
13938 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
13939 * tests/testsuite.at (AT_COMPILE): Use them.
13940 This fixes the testsuite problem reported by Robert Lentz in
13941 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
13942
13943 2003-02-12 Paul Eggert <eggert@twinsun.com>
13944
13945 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
13946 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
13947 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
13948 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
13949 Check for malloc failure, for consistency with yacc.c.
13950 (yytname_size): Remove, for consistency with yacc.c.
13951
13952 The bug still remains in data/lalr1.cc, as I didn't have time
13953 to fix it there.
13954
13955 2003-02-06 Akim Demaille <akim@epita.fr>
13956
13957 * configure.ac (GXX): Rename as...
13958 (CXX): this, to keep the original Autoconf semantics.
13959 Require 2.57.
13960 * data/lalr1.cc: Fix b4_copyright invocations.
13961 If YYDEBUG is not defined, don't depend upon name_ being defined.
13962 (location.hh): Include string and iostream.
13963 (Position::filename): New member.
13964 (Position::Position ()): New.
13965 (operator<< (Position)): New.
13966 (operator- (Position, int)): New.
13967 (Location::first, Location::last): Rename as...
13968 (Location::begin, Location::end): these, to mock the conventional
13969 iterator names.
13970 (operator<< (Location)): New.
13971 * tests/atlocal.in (CXX): New.
13972 * tests/testsuite.at (AT_COMPILE_CXX): New.
13973 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
13974 locations in a more synthetic way.
13975 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
13976 lalr1.cc is used.
13977 Adjust the C locations to match those from Emacs: first column is
13978 column 0.
13979 Change all the expected results.
13980 Conform to the GCS: simplify the locations when applicable.
13981 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
13982 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
13983 these CPP macros with the m4 macros new defined by...
13984 (AT_CHECK_PUSHDEFS): this, i.e.:
13985 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
13986 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
13987 New macros.
13988 (AT_CHECK_POPDEFS): Undefine them.
13989 (AT_CHECK_CALC_LALR1_CC): New.
13990 Use it for the first lalr1.cc test.
13991
13992 2003-02-04 Akim Demaille <akim@epita.fr>
13993
13994 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
13995 Location as is defined.
13996
13997 2003-02-04 Akim Demaille <akim@epita.fr>
13998
13999 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
14000 name_ being defined.
14001
14002 2003-02-03 Paul Eggert <eggert@twinsun.com>
14003
14004 * src/gram.h (start_symbol): Remove unused decl.
14005
14006 Use more-consistent naming conventions for local vars.
14007
14008 * src/derives.c (derives_compute): Change type of local var from
14009 int to rule_number.
14010 * src/gram.c (grammar_rules_partial_print): Likewise.
14011 * src/print.c (print_core): Likewise.
14012 * src/reduce.c (reduce_grammar_tables): Likewise.
14013
14014 * src/gram.c (grammar_dump): Change name of item_number *
14015 local var from r to rp.
14016 * src/nullable.c (nullable_compute): Likewise.
14017
14018 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
14019
14020 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
14021 for symbol or symbol_number var.
14022 * src/reader.c (grammar_start_symbol_set): Likewise.
14023 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
14024 Likewise.
14025 * src/state.c (transitions_to): Likewise.
14026 * src/state.h: Likewise.
14027 * src/tables.c (symbol_number_to_vector_number): Likewise.
14028
14029 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
14030 char * var.
14031
14032 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
14033 var.
14034
14035 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
14036 var.
14037
14038 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
14039 Use str, not s, for char * var. Use ch, not c, for character var.
14040 Use size for size var.
14041
14042 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
14043 char * var.
14044 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
14045 uniqstr var.
14046 * src/uniqstr.h: Likewise.
14047
14048 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14049 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14050 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
14051 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
14052 param to have same name as that of enum, so that we don't use
14053 "s" to stand for a non-state.
14054
14055 2003-02-02 Akim Demaille <akim@epita.fr>
14056
14057 * src/scan-skel.l: Scan more than one inert character per yylex
14058 invocation.
14059
14060 2003-02-01 Paul Eggert <eggert@twinsun.com>
14061
14062 Version 1.875a.
14063
14064 * po/LINGUAS: Add ms.
14065
14066 2003-01-30 Akim Demaille <akim@epita.fr>
14067
14068 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
14069
14070 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14071
14072 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
14073 of $1.
14074
14075 Changes in response to error report by S. Eken: GLR mode does not
14076 handle negative $ indices or $ indices in embedded rules correctly.
14077 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
14078
14079 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
14080 (b4_rhs_location): Ditto.
14081 (yyfill): New function to copy from stack tree into array
14082 incrementally.
14083 (yyuserAction): Modify to allow incremental move of semantic values
14084 to rhs array when in GLR mode.
14085 Define YYFILL to use in user-defined actions to fill semantic array
14086 as needed.
14087 Remove dummy use of yystack, as there is now a guaranteed use.
14088 (yydoAction): Modify to allow incremental move of semantic values
14089 to rhs array when in GLR mode.
14090 (yyresolveAction): Ditto.
14091 (yyglrShiftDefer): Update comment.
14092 (yyresolveStates): Use X == NULL for pointers, not !X.
14093 (yyglrReduce): Ditto.
14094 (yydoAction): Ditto
14095
14096 * tests/glr-regr1.at: Rename to ...
14097 * tests/glr-regression.at: Add new regression test for the problems
14098 described above (adapted from S. Eken).
14099 Update copyright notice.
14100 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
14101 * tests/Makefile.am: Ditto.
14102
14103 2003-01-28 Paul Eggert <eggert@twinsun.com>
14104
14105 * data/lalr1.cc: Do not use @output_header_name@ unless
14106 b4_defines_flag is set. This fixes two bugs reported by
14107 Tim Van Holder in
14108 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
14109 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
14110
14111 2003-01-21 Paul Eggert <eggert@twinsun.com>
14112
14113 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
14114 we don't need to worry about yyerrlab1 being reported as an
14115 "unused label" by non-GCC C compilers. The downside is that if
14116 locations are used then a couple of statements are duplicated each
14117 time YYERROR is invoked, but the upside is that the warnings
14118 should vanish.
14119 (yyerrlab1): Move code to YERROR.
14120 (yyerrlab2): Remove. Change uses back to yyerrlab1.
14121 This reverts some of the 2002-12-27 change.
14122
14123 2003-01-17 Paul Eggert <eggert@twinsun.com>
14124
14125 * src/output.c (symbol_printers_output): Fix typo that led
14126 to core dump. Problem reported by Antonio Rus in
14127 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
14128
14129 2003-01-13 Akim Demaille <akim@epita.fr>,
14130 Quoc Peyrot <chojin@lrde.epita.fr>,
14131 Robert Anisko <anisko_r@lrde.epita.fr>
14132
14133 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
14134 when the stacks contain one element, as the loop would otherwise
14135 free the last state, and then use the top state (the one we just
14136 popped). This means that the initial elements will not be freed
14137 explicitly, as is the case in yacc.c; it is not a problem, as
14138 these elements have fake values.
14139
14140 2003-01-11 Paul Eggert <eggert@twinsun.com>
14141
14142 * NEWS: %expect-violations are now just warnings, reverting
14143 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
14144 bootstrapping problem reported by Matthias Klose; see
14145 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
14146 * src/conflicts.c (conflicts_print): Likewise.
14147 * tests/conflicts.at (%expect not enough, %expect too much,
14148 %expect with reduce conflicts): Likewise.
14149 * doc/bison.texinfo (Expect Decl): Document this. Also mention
14150 that the warning is enabled if the number of conflicts changes
14151 (not necessarily increases).
14152
14153 * src/getargs.c (version): Update copyright year.
14154
14155 2003-01-09 Akim Demaille <akim@epita.fr>
14156
14157 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
14158
14159 2003-01-08 Paul Eggert <eggert@twinsun.com>
14160
14161 * Makefile.maint (WGETFLAGS):
14162 New macro, containing "-C off" to disable proxy caches.
14163 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
14164 (rel-check): Use $(WGET) instead of wget.
14165
14166 2003-01-06 Paul Eggert <eggert@twinsun.com>
14167
14168 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
14169 the GLR paper of Scott, Johnstone and Hussain.
14170
14171 2003-01-04 Paul Eggert <eggert@twinsun.com>
14172
14173 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
14174 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
14175 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
14176 (EXTRA_LIBRARIES): New var, for liby.a.
14177 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
14178 (EXTRA_SCRIPTS): New var, for yacc.
14179
14180 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
14181 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
14182 Problem reported by Nelson H. F. Beebe.
14183
14184 2003-01-03 Paul Eggert <eggert@twinsun.com>
14185
14186 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
14187 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
14188 when compiling Bison 1.875's `bitset bset = obstack_alloc
14189 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
14190
14191 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
14192 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
14193 grow to a huge size with typical invocation.
14194
14195 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
14196 Use the pattern recommended by Autoconf 2.57, except also protect
14197 against double-definition.
14198 * src/system.h: Likewise.
14199 Portability issues reported by Nelson H. F. Beebe.
14200
14201 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
14202 All uses changed. Provide a definition in both C and C++.
14203 (yytrue, yyfalse): Define even if defined (__cplusplus).
14204
14205 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
14206 Reported by Nelson H. F. Beebe.
14207
14208 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
14209
14210 2003-01-02 Paul Eggert <eggert@twinsun.com>
14211
14212 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
14213 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
14214 Bug reported by Nelson H. F. Beebe.
14215
14216 2003-01-01 Paul Eggert <eggert@twinsun.com>
14217
14218 * Version 1.875.
14219
14220 2002-12-30 Paul Eggert <eggert@twinsun.com>
14221
14222 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
14223 Moved here from...
14224 (<INITIAL>","): Here. This causes stray "," to be treated
14225 more uniformly.
14226
14227 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
14228 last brace in braced code when not in Yacc mode, for compatibility
14229 with Bison 1.35. This resurrects the 2001-12-15 patch to
14230 src/reader.c.
14231
14232 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
14233 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
14234
14235 2002-12-28 Paul Eggert <eggert@twinsun.com>
14236
14237 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
14238 that of SYM's type. This fixes Debian bug 168069, reported by
14239 Thomas Olsson.
14240
14241 2002-12-28 Paul Eggert <eggert@twinsun.com>
14242
14243 Version 1.75f.
14244
14245 Switch back to the Yacc style of conflict reports, undoing some
14246 of the 2002-07-30 change.
14247 * doc/bison.texinfo (Understanding): Use Yacc style for
14248 conflict reports. Also, use new way of locating rules.
14249 * src/conflicts.c (conflict_report):
14250 Renamed from conflict_report_yacc, removing the old
14251 'conflict_report'. Translate the entire conflict report at once,
14252 so that we don't assume that "," has the same interpretation in
14253 all languages.
14254 (conflicts_output): Use Yacc-style conflict report for each state,
14255 instead of our more-complicated style.
14256 (conflicts_print): Use Yacc-style conflict report, except print
14257 the input file name when not emulating Yacc.
14258 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
14259 Conflicted Reduction, %expect not enough, %expect too much,
14260 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
14261 * tests/existing.at (GNU Cim Grammar): Likewise.
14262 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
14263
14264 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
14265 fatal): Don't invoke fflush; it's not needed and it might even be
14266 harmful for stdout, as stdout might not be open.
14267 * src/reduce.c (reduce_print): Likewise.
14268
14269 2002-12-27 Paul Eggert <eggert@twinsun.com>
14270
14271 Fix a bug where error locations were not being recorded correctly.
14272 This problem was originally reported by Paul Hilfinger in
14273 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
14274
14275 * data/yacc.c (yyparse): New local var yylerrsp, to record the
14276 top of the location stack's error locations.
14277 (yyerrlab): Set it. When discarding a token, push its location
14278 onto yylerrsp so that we don't lose track of the error's end.
14279 (yyerrlab1): Now is only the target of YYERROR, so that we can
14280 properly record the location of the action that failed. For GCC
14281 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
14282 GCC warning about yyerrlab1 being unused if YYERROR is unused.
14283 (yyerrlab2): New label, which yyerrlab now falls through to.
14284 Compute the error's location by applying YYLLOC_DEFAULT to
14285 the locations of all the symbols that went into the error.
14286 * doc/bison.texinfo (Location Default Action): Mention that
14287 YYLLOC_DEFAULT is also invoked for syntax errors.
14288 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
14289 Error locations include the locations of all the tokens that were
14290 discarded, not just the last token.
14291
14292 2002-12-26 Paul Eggert <eggert@twinsun.com>
14293
14294 * src/files.c: Include quote.h.
14295 (compute_output_file_names): Warn if we detect conflicting
14296 outputs to the same file. This should catch the misunderstanding
14297 exemplified by Debian Bug 165349, reported by Bruce Stephens..
14298
14299 * src/conflicts.c (conflicts_print): If the user specifies
14300 "%expect N", report an error if there are any reduce/reduce
14301 conflicts. This is what the manual says should happen.
14302 This fixes Debian bug 130890, reported by Anthony DeRobertis.
14303 * tests/conflicts.at (%expect with reduce conflicts): New test.
14304
14305 Don't use m4_include on relative file names, as it doesn't work as
14306 desired if there happens to be a file with that name under ".".
14307
14308 * m4sugar/version.m4: Remove; it was included but it wasn't used.
14309 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
14310 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
14311 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
14312 * src/output.c (output_skeleton): Use full path names when
14313 specifying a file to include; don't rely on include path, as
14314 it's unreliable when the working file contains a file with
14315 that name.
14316
14317 2002-12-25 Paul Eggert <eggert@twinsun.com>
14318
14319 Remove obsolete references to bison.simple and bison.hairy.
14320 Problem mentioned by Aubin Mahe in
14321 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
14322 * data/glr.c: Comment fix.
14323 * doc/bison.1: Remove references. Also, mention "yacc".
14324
14325 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
14326 with -g option.
14327
14328 * src/parse-gram.y (declaration): Use enum "report_states" rather
14329 than its numeric value 1.
14330
14331 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
14332 opening a new one. This fixes Debian bug 165349, reported by
14333 Bruce Stephens.
14334
14335 2002-12-24 Paul Eggert <eggert@twinsun.com>
14336
14337 Version 1.75e.
14338
14339 * Makefile.maint (cvs-update): Don't assume that the shell
14340 supports $(...), as Solaris sh doesn't.
14341
14342 * src/parse-gram.y (lloc_default): Remove test for empty
14343 nonterminals at the end, since it didn't change the result.
14344
14345 2002-12-24 Paul Eggert <eggert@twinsun.com>
14346
14347 If the user does not define YYSTYPE as a macro, Bison now declares it
14348 using typedef instead of defining it as a macro. POSIX requires this.
14349 For consistency, YYLTYPE is also declared instead of defined.
14350
14351 %union directives can now have a tag before the `{', e.g., the
14352 directive `%union foo {...}' now generates the C code
14353 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
14354 The default union tag is `YYSTYPE', for compatibility with Solaris 9
14355 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
14356 instead of `yyltype'.
14357
14358 `yystype' and `yyltype' are now obsolescent macros instead of being
14359 typedefs or tags; they are no longer documented and will be
14360 withdrawn in a future release.
14361
14362 * data/glr.c (b4_location_type): Remove.
14363 (YYSTYPE): Renamed from yystype.
14364 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
14365 (struct YYLTYPE): Renamed from struct yyltype.
14366 (YYLTYPE): Renamed from yyltype.
14367 (yyltype, yystype): New (and obsolescent) macros,
14368 for backward compatibility.
14369 * data/yacc.c: Likewise.
14370
14371 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
14372 does not specify a union tag. This is for compatibility with
14373 Solaris 9 yacc.
14374
14375 * src/parse-gram.y (add_param): 2nd arg is now char * not char
14376 const *, since it is now modified by stripping surrounding { }.
14377 (current_braced_code): Remove.
14378 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
14379 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
14380 trailing " {...}". Now of type <chars>.
14381 (grammar_declaration): Adjust to bundled tokens.
14382 (code_content): Remove; stripping is now done by add_param.
14383 (print_token_value): Print contents of bundled tokens.
14384 (token_name): New function.
14385
14386 * src/reader.h (braced_code, current_braced_code): Remove.
14387 (token_name): New decl.
14388
14389 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
14390 token_type, not braced_code code_kind. All uses changed.
14391 (SC_PRE_CODE): New state, for scanning after a keyword that
14392 has (or usually has) an immediately-following braced code.
14393 (token_type): New local var, to keep track of which token type
14394 to return when scanning braced code.
14395 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
14396 <INITIAL>"%parse-param", <INITIAL>"%printer",
14397 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
14398 instead of returning a token type immediately.
14399 (<INITIAL>"{"): Set token type.
14400 (<SC_BRACED_CODE>"}"): Use it.
14401 (handle_action_dollar, handle_action_at): Now returns bool
14402 indicating success. Fail if ! current_rule; this prevents a core dump.
14403 (handle_symbol_code_dollar, handle_symbol_code_at):
14404 Remove; merge body into caller.
14405 (handle_dollar, handle_at): Complain in invalid contexts.
14406
14407 * NEWS, doc/bison.texinfo: Document the above.
14408 * NEWS: Fix years and program names in copyright notice.
14409
14410 2002-12-17 Paul Eggert <eggert@twinsun.com>
14411
14412 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
14413 Reporting, Table of Symbols): Omit mentions of %lex-param and
14414 %parse-param from the documentation for now.
14415
14416 2002-12-15 Paul Eggert <eggert@twinsun.com>
14417
14418 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
14419 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
14420 lookahead symbol, and which sets yychar in parser actions) and it
14421 disagreed with the Bison documentation. Bug
14422 reported by Andrew Walrond.
14423
14424 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
14425 as the caller now does that.
14426 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
14427 (YYEMPTY): Parenthesize right hand side, since others use it.
14428 (yyparse): Don't assume that our generated code is the only code
14429 that sets yychar.
14430
14431 2002-12-13 Paul Eggert <eggert@twinsun.com>
14432
14433 Version 1.75d.
14434
14435 POSIX requires a "yacc" command.
14436 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
14437 (MOSTLYCLEANFILES): Add yacc.
14438 (yacc): New rule.
14439 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
14440 as an alias for bison y.
14441
14442 * po/LINGUAS: Add da.
14443
14444 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
14445 problem with latest <getopt.h>.
14446 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
14447
14448 * doc/fdl.texi: Upgrade to 1.2.
14449 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
14450 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
14451 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
14452 gnulib.
14453 * config/install-sh: Sync with autotools.
14454
14455 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
14456 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
14457 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
14458 locations are requested.
14459 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
14460 locations are requested.
14461
14462 2002-12-12 Paul Eggert <eggert@twinsun.com>
14463
14464 Remove unportable casts and storage allocation tricks.
14465 While we're at it, remove almost all casts, since they
14466 usually aren't needed and are a sign of trouble.
14467
14468 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
14469
14470 * src/derives.c (derives_compute): Do not subtract NTOKENS from
14471 the pointer DSET returned by malloc; this isn't portable.
14472 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
14473 Similarly for DERIVES.
14474 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
14475 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
14476 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
14477
14478 * src/derives.c (derives_compute): Do not bother invoking
14479 int_of_rule_number, since rule numbers are integers.
14480
14481 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
14482 rather than XMALLOC (char, N).
14483
14484 * src/files.c (filename_split): Rewrite to avoid cast.
14485
14486 * src/gram.h (symbol_number_as_item_number,
14487 item_number_as_symbol_number, rule_number_as_item_number,
14488 item_number_as_rule_number):
14489 Now inline functions rather than macros, to avoid casts.
14490 * src/state.h (state_number_as_int): Likewise.
14491 * src/tables.c (state_number_to_vector_number,
14492 symbol_number_to_vector_number): Likewise.
14493
14494 * src/gram.h (int_of_rule_number): Remove; no longer used.
14495
14496 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
14497 since the resulting storage is always stored into.
14498
14499 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
14500 where it's needed.
14501
14502 * src/muscle_tab.c (muscle_m4_output):
14503 Now inline. Return bool, not int.
14504 * src/state.c (state_compare): Likewise.
14505 * src/symtab.c (symbol_check_defined,
14506 symbol_check_alias_consistency, symbol_pack, symbol_translation,
14507 hash_compare_symbol, hash_symbol):
14508 Likewise.
14509 * src/uniqstr.c (uniqstr_print): Likewise.
14510 * src/muscle_tab.c (muscle_m4_output_processor):
14511 New function, to avoid casts.
14512 * src/state.c (state_comparator, stage_hasher): Likewise.
14513 * src/symtab.c (symbol_check_defined_processor,
14514 symbol_check_alias_consistency_processor, symbol_pack_processor,
14515 symbol_translation_processor, hash_symbol_comparator,
14516 hash_symbol_hasher): Likewise.
14517 * src/uniqstr.c (uniqstr_print_processor): Likewise.
14518 * src/muscle_tab.c (muscles_m4_output):
14519 Use new functions instead of casting old functions unportably.
14520 * src/state.c (state_hash_new): Likewise.
14521 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
14522 symbols_token_translations_init):
14523 Likewise.
14524 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
14525
14526 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
14527 var instead of casting to long, to avoid casts.
14528 (prepare_states): Use MALLOC rather than alloca, so that we don't
14529 have to worry about alloca.
14530 * src/state.c (state_hash_lookup): Likewise.
14531
14532 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
14533 local var instead of casting to unsigned char, to avoid casts.
14534
14535 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
14536 STATE_ALLOC): Remove.
14537 (transitions_new, errs_new, reductions_new, state_new): Use malloc
14538 rather than calloc, and use offsetof to avoid allocating slightly
14539 too much storage.
14540 (state_new): Initialize all members.
14541
14542 * src/state.c (state_hash): Use unsigned accumulator, not signed.
14543
14544 * src/symtab.c (symbol_free): Remove; unused.
14545 (symbol_get): Remove cast in lhs of assignment.
14546 (symbols_do): Now static. Accept generic arguments, not
14547 hashing-related ones.
14548
14549 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
14550 (symbol_processor): Remove.
14551 (symbols_do): Remove decl; now static.
14552
14553 * src/system.h (alloca): Remove; decl no longer needed.
14554 (<stddef.h>): Include, for offsetof.
14555 (<inttypes.>, <stdint.h>): Include if available.
14556 (uintptr_t): New type, if system lacks it.
14557 (CALLOC, MALLOC, REALLOC): New macros.
14558 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
14559 new macros.
14560
14561 * src/tables.c (table_size): Now int, to pacify GCC.
14562 (table_grow, table_ninf_remap): Use signed table size.
14563 (save_row): Don't bother initializing locals when not needed.
14564 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
14565 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
14566
14567 * src/vcg.h: Correct misspellings.
14568
14569 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
14570
14571
14572 * src/getargs.c (getargs): Don't assume EOF == -1.
14573
14574 2002-12-09 Paul Eggert <eggert@twinsun.com>
14575
14576 Change identifier spellings to avoid collisions with names
14577 that are reserved by POSIX.
14578
14579 Don't use names ending in _t, since POSIX reserves them.
14580 For consistency, remove _e and _s endings -- they're weren't
14581 needed to remove ambiguity. All uses changed.
14582 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
14583 turn was just renamed from struniq_t.
14584 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
14585 which in turn was just renamed from struniq_processor_t.
14586 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
14587 in turn was renamed from hash_compare_struniq_t.
14588 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
14589 (state_list): Renamed from state_list_t.
14590 * src/assoc.h (assoc): Renamed from assoc_t.
14591 * src/conflicts.c (enum conflict_resolution): Renamed from
14592 enum conflict_resolution_e.
14593 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
14594 (rule_list): Renamed from rule_list_t.
14595 * src/getargs.h (enum trace): Renamed from enum trace_e.
14596 (enum report): Renamed from enum report_e.
14597 * src/gram.h (item_number): Renamed from item_number_t.
14598 (rule_number): Renamed from rule_number_t.
14599 (struct rule_s): Remove the "rule_s" part; not used.
14600 (rule): Renamed from rule_t.
14601 (rule_filter): Renamed from rule_filter_t.
14602 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
14603 (goto_list): Renamed from goto_list_t.
14604 * src/lalr.h (goto_number): Renamed from goto_number_t.
14605 * src/location.h (location): Renamed from location_t.
14606 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
14607 and moved here from:
14608 * src/muscle_tab.h (muscle_entry_t): here.
14609 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
14610 (rule_list): Renamed from rule_list_t.
14611 * src/print_graph.c (static_graph): Renamed from graph.
14612 * src/reader.h (braced_code): Renamed from braced_code_t.
14613 Remove brace_code_e tag.
14614 * src/relation.h (relation_node): Renamed from relation_node_t.
14615 (relation_nodes): Renamed from relation_nodes_t.
14616 (relation): Renamed from relation_t.
14617 * src/state.h (state_number): Renamed from state_number_t.
14618 (struct state): Renamed from struct state_s.
14619 (state): Renamed from state_t.
14620 (transitions): Renamed from transitions_t. Unused (and
14621 misspelled) transtion_s tag removed.
14622 (errs): Renamed from errs_t. Unused errs_s tag removed.
14623 (reductions): Renamed from reductions_t. Unused tag
14624 reductions_s removed.
14625 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
14626 (struct symbol_list): Renamed from struct symbol_list_s.
14627 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
14628 (struct symbol): Renamed from struct symbol_s.
14629 (symbol): Renamed from symbol_t.
14630 * src/tables.c (vector_number): Renamed from vector_number_t.
14631 (action_number): Renamed from action_t.
14632 * src/tables.h (base_number): Renamed from base_t.
14633 * src/vcg.h (enum color): Renamed from enum color_e.
14634 (enum textmode): Renamed from enum textmode_e.
14635 (enum shape): Renamed from enum shape_e.
14636 (struct colorentry): Renamed from struct colorentry_s.
14637 (struct classname): Renamed from struct classname_s.
14638 (struct infoname): Renamed from struct infoname_s.
14639 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
14640 (enum decision): Renamed from enum decision_e.
14641 (enum orientation): Renamed from enum orientation_e.
14642 (enum alignment): Renamed from enum alignment_e.
14643 (enum arrow_mode): Renamed from enum arrow_mode_e.
14644 (enum crossing_type): Renamed from enum crossing_type_e.
14645 (enum view): Renamed from enum view_e.
14646 (struct node): Renamed from struct node_s.
14647 (node): Renamed from node_t.
14648 (enum linestyle): Renamed from enum linestyle_e.
14649 (enum arrowstyle): Renamed from enum arrowstyle_e.
14650 (struct edge): Renamed from struct edge.
14651 (edge): Renamed from edge_t.
14652 (struct graph): Renamed from struct graph_s.
14653 (graph): Renamed from graph_t.
14654 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
14655 Rename value_t -> value.
14656 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
14657 value_t_as_yystype -> value_as_yystype.
14658
14659 Don't include <errno.h> in the mainstream code, since it
14660 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
14661 * lib/get-errno.c, lib/get-errno.h: New files.
14662 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
14663 get-errno.c.
14664 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
14665 * src/output.c (output_skeleton): Likewise.
14666 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
14667 instead of errno.
14668 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
14669 Likewise.
14670 (handle_action_dollar, handle_action_at): Likewise.
14671 * src/system.h: Do not include <errno.h>.
14672 (TAB_EXT): Renamed from EXT_TAB.
14673 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
14674
14675 Avoid str[a-z]*, since <string.h> reserves that name space.
14676 Change all instances of "struniq" in names to "uniqstr", and
14677 likewise for "STRUNIQ" and "UNIQSTR".
14678 * src/uniqstr.c: Renamed from src/struniq.c.
14679 * src/uniqstr.h: Renamed from src/struniq.h.
14680 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
14681 * src/files.c (strsuffix): Remove; unused.
14682 (concat2): Renamed from stringappend. Now static.
14683 * src/files.h (strsuffix, stringappend): Remove; unused.
14684 * src/parse-gram.y (<chars>): Renamed from <string>.
14685 (<uniqstr>): Renamed from <struniq>.
14686 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
14687 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
14688 (struct graph_s.expand): Renamed from struct graph_s.stretch.
14689 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
14690 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
14691 (N_EXPAND): Renamed from N_STRETCH.
14692
14693 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
14694 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
14695 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
14696 Remove; unused.
14697 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
14698 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
14699 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
14700 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
14701 (BASE_MAXIMUM): Renamed from BASE_MAX.
14702 (BASE_MINIMUM): Renamed from BASE_MIN.
14703 (ACTION_MAX): Remove; unused.
14704 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
14705 Unnecessary casts removed from above defines.
14706
14707
14708 Fix misspelling in names.
14709 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
14710 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
14711 G_NODE_ALIGNEMENT.
14712
14713
14714 * lib/timevar.c (timevar_report): Renamed from time_report,
14715 for consistency with other names.
14716 * lib/timevar.h (timevar_report): New decl.
14717 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
14718
14719
14720 Sort include-file uses.
14721
14722 Reorder all include files under src to be in the order "system.h".
14723 then the ../lib include files in angle brackets (alphabetized),
14724 then the . include files in double-quotes (alphabetized). Fix
14725 dependency breakages encountered in this process, as follows:
14726 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
14727 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
14728 * src/state.h: Include "symtab.h".
14729
14730 2002-12-08 Paul Eggert <eggert@twinsun.com>
14731
14732 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
14733 since this causes problems when __file__ contains character
14734 sequences like "@" that are treated specially by src/scan-skel.l.
14735 Instead, just use the file's basename. This fixes the bug
14736 reported by Martin Mokrejs in
14737 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
14738
14739 2002-12-06 Paul Eggert <eggert@twinsun.com>
14740
14741 Add support for rules that do not have trailing semicolons, as
14742 POSIX requires. Improve the quality of locations in Bison
14743 diagnostics.
14744
14745 * src/location.c: Include <quotearg.h>.
14746 (empty_location): Now const.
14747 (location_print): New function. Follow the recommendation of the
14748 GNU Coding Standards for locations that span file boundaries.
14749 * src/location.h: Do not include <quotearg.h>; no longer needed.
14750 (boundary): New type.
14751 (location_t): Use it. This allows locations to span file boundaries.
14752 All member uses changed: file -> start.file or end.file (as needed),
14753 first_line -> start.line, first_column -> start.column,
14754 last_line -> end.line, last_column -> end.column.
14755 (equal_boundaries): New function.
14756 (LOCATION_RESET, LOCATION_STEP): Remove.
14757 (LOCATION_PRINT): Remove. All callers changed to use location_print.
14758 (empty_location): Now const.
14759 (location_print): New decl.
14760 * src/parse-gram.y (lloc_default): New function, which handles
14761 empty locations more accurately.
14762 (YYLLOC_DEFAULT): Use it.
14763 (%token COLON): Remove.
14764 (%token ID_COLON): New token.
14765 (rules): Use it.
14766 (declarations, rules): Remove trailing semicolon.
14767 (declaration, rules_or_grammar_declaration):
14768 Allow empty (";") declaration.
14769 (symbol_def): Remove empty actions; no longer needed.
14770 (rules_or_grammar_declaration): Remove trailing semicolon.
14771 (semi_colon.opt): Remove.
14772 * src/reader.h: Include location.h.
14773 (scanner_cursor): New decl.
14774 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
14775 rolling our own.
14776 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
14777 of *loc.
14778 (STEP): Remove. No longer needed, now that adjust_location does
14779 the work. All uses removed.
14780 (scanner_cursor): New var.
14781 (adjust_location): Renamed from extend_location. It now sets
14782 *loc and adjusts the scanner cursor. All uses changed.
14783 Don't bother testing for CR.
14784 (handle_syncline): Remove location arg; now updates scanner cursor.
14785 All callers changed.
14786 (unexpected_end_of_file): Now accepts start boundary of token or
14787 comment, not location. All callers changed. Update scanner cursor,
14788 not the location.
14789 (SC_AFTER_IDENTIFIER): New state.
14790 (context_state): Renamed from c_context. All uses changed.
14791 (id_loc, code_start, token_start): New local vars.
14792 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
14793 processing of Yacc white space and equivalents here.
14794 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
14795 instead of returning ID immediately, since we need to search for
14796 a subsequent colon.
14797 (<INITIAL>"'", "\""): Save token_start.
14798 (<INITIAL>"%{", "{", "%%"): Save code_start.
14799 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
14800 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
14801 BEGIN context_state at end, not INITIAL.
14802 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
14803 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
14804 Return correct token start.
14805 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
14806 the start of a character, string or multiline comment is found.
14807 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
14808 Reduction): Adjust reported locations to match the more-precise
14809 results now expected.
14810 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
14811 * tests/reduce.at (Useless Rules, Reduced Automaton,
14812 Underivable Rules): Likewise.
14813 * tests/regression.at (Invalid inputs): No longer `expecting ";"
14814 or "|"' now that so many other tokens are allowed by the new grammar.
14815
14816 * src/complain.h (current_file): Remove duplicate decl;
14817 current_file is now owned by files.h.
14818 * src/complain.c, src/scan-gram.l: Include files.h.
14819
14820 2002-12-06 Paul Eggert <eggert@twinsun.com>
14821
14822 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
14823 promotes to int; it might be unsigned int.
14824 * data/yacc.c (yy_reduce_print): Likewise.
14825
14826 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
14827 be #defined in the prologue, not in the Bison declarations.
14828 This fixes Debian Bug 102878, reported by Shaul Karl.
14829
14830 2002-12-02 Paul Eggert <eggert@twinsun.com>
14831
14832 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
14833 * lib/strtoul.c: New file, from gnulib.
14834 This fixes a porting bug reported by Peter Klein in
14835 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
14836
14837 2002-11-30 Paul Eggert <eggert@twinsun.com>
14838
14839 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
14840 and put only a forward declaration in the prologue. This is for
14841 consistency with the other scanner helper functions.
14842
14843 Type clashes now generate warnings, not errors, since it
14844 appears that POSIX may allow some grammars with type clashes.
14845 * src/reader.c (grammar_current_rule_check): Warn about
14846 type clashes instead of complaining.
14847 * tests/input.at (Type Clashes): Expect warnings, not complaints.
14848
14849 Add Yacc library, since POSIX requires it.
14850 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
14851 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
14852 * lib/main.c, lib/yyerror.c: New files.
14853
14854 gram_error can be static; it need not be extern.
14855 * src/reader.h (gram_error): Remove decl.
14856 * src/parse-gram.y (gram_error): Now static. Add static decl.
14857 (print_token_value): Omit parameter names from forward decl,
14858 for consistency.
14859
14860 2002-11-29 Paul Eggert <eggert@twinsun.com>
14861
14862 * doc/bison.texinfo: Emphasize that yylex and yyerror must
14863 be declared before being used. E.g., one should typically
14864 declare them in the prologue. Use GNU coding style in examples.
14865 Put "const" consistently after the type it modifies. Mention
14866 that C99 supports "inline". Mention that yyerror traditionally
14867 returns "int".
14868
14869 %parse-param and %lex-param now take just one argument, the
14870 declaration; the argument name is deduced from the declaration.
14871
14872 * doc/bison.texinfo (Parser Function, Pure Calling, Error
14873 Reporting, Table of Symbols): Document this.
14874 * src/parse-gram.y (add_param): New function.
14875 (COMMA): Remove.
14876 (declaration): Implement new rule for %parse-param and %lex-param.
14877 * src/scan-gram.l: "," now elicits a warning, rather than being
14878 a token; this is more compatible with byacc.
14879 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
14880
14881 2002-11-27 Paul Eggert <eggert@twinsun.com>
14882
14883 Rename identifiers to avoid real and potential collisions.
14884
14885 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
14886 to avoid collision with lex macro described by Bruce Lilly in
14887 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
14888 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
14889 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
14890 * src/parse-gram.y (print_token_value): Renamed from yyprint.
14891 All uses changed.
14892 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
14893 The name "yycontrol" violates the name space rules, and this stuff
14894 wasn't being used anyway.
14895 (input): Remove action; this stuff wasn't being used.
14896 (gram_error): Rename local variable yylloc -> loc.
14897 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
14898 (YY_DECL): Don't use "yy" at start of local variables.
14899 All uses changed, e.g., yylloc -> loc.
14900 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
14901 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
14902 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
14903 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
14904
14905 * src/parse-gram.y (gram_error): loc is now const *.
14906 * src/reader.h (gram_error): Likewise.
14907
14908 2002-11-24 Paul Eggert <eggert@twinsun.com>
14909
14910 Version 1.75c.
14911
14912 * tests/actions.at (Actions after errors): Use an output format
14913 more similar to that of the Printers and Destructors test.
14914 Test the position of the ';' token too.
14915 (Printers and Destructors): Likewise.
14916 (Printers and Destructors: %glr-parser): Remove for now, to avoid
14917 unnecessarily alarming people when the test fails.
14918
14919 * data/yacc.c (yyerrlab1): Move this label down, so that the
14920 parser does not discard the lookahead token if the user code
14921 invokes YYERROR. This change is required for POSIX conformance.
14922
14923 * lib/error.c: Sync with gnulib.
14924
14925 2002-11-22 Paul Eggert <eggert@twinsun.com>
14926
14927 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
14928 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
14929 * lib/xmalloc.c: Likewise.
14930
14931 2002-11-20 Paul Eggert <eggert@twinsun.com>
14932
14933 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
14934
14935 2002-11-20 Paul Eggert <eggert@twinsun.com>
14936
14937 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
14938 should use `if (! x) abort ();' rather than `assert (x);', and
14939 anyway it's one less thing to worry about configuring.
14940
14941 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
14942 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
14943 and replace all instances of assert with abort.
14944 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
14945 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
14946
14947 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
14948 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
14949 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
14950 hash_find_entry, hash_rehash, hash_insert): Likewise.
14951 * src/conflicts.c (resolve_sr_conflict): Likewise.
14952 * src/lalr.c (set_goto_map, map_goto): Likewise.
14953 * src/nullable.c (nullable_compute): Likewise.
14954 * src/output.c (prepare_rules, token_definitions_output): Likewise.
14955 * src/reader.c (packgram, reader): Likewise.
14956 * src/state.c (state_new, state_free, state_transitions_set,
14957 state_reduction_find): Likewise.
14958 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
14959 symbol_pack): Likewise.
14960 * src/tables.c (conflict_row, pack_vector): Likewise.
14961 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14962 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14963 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
14964 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
14965
14966 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
14967 (ARGMATCH_CONSTRAINT): New macro.
14968 (ARGMATCH_ASSERT): Use it.
14969
14970 * src/system.h (verify): New macro.
14971 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
14972 rather than assert.
14973 * src/tables.c (tables_generate): Likewise.
14974
14975 * src/struniq.c (struniq_assert): Now returns void, and aborts
14976 if the assertion is false.
14977 (struniq_assert_p): Remove.
14978 * src/struniq.h: Likewise.
14979
14980 2002-11-18 Paul Eggert <eggert@twinsun.com>
14981
14982 * data/glr.c (yygetLRActions): Replace `yyindex' with
14983 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
14984 This fixes the regression with Sun ONE Studio 7 cc that I reported in
14985 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
14986
14987 2002-11-18 Akim Demaille <akim@epita.fr>
14988
14989 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
14990 space.
14991 From Tim Van Holder.
14992
14993 2002-11-17 Paul Eggert <eggert@twinsun.com>
14994
14995 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
14996 to "SyntaxError" for consistency with my 2002-11-15 change.
14997
14998 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
14999 not define to {}, since this breaks the common use of `YYDPRINTF
15000 ((...));' if a single statement is desired (e.g. before `else').
15001 Work around GCC warnings by surrounding corresponding calls with
15002 {} if needed.
15003 (yyhasResolvedValue): Remove unused function.
15004 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
15005 loop body.
15006 (yyreportSyntaxError): Renamed from yyreportParseError.
15007 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
15008 All uses changed.
15009 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
15010 extern when possible. Remove unused initializations.
15011
15012 2002-11-16 Akim Demaille <akim@epita.fr>
15013
15014 Augment the similarity between GLR and LALR traces.
15015
15016 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
15017 (YY_REDUCE_PRINT): New.
15018 (yyparse): Use them.
15019 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
15020 YYDPRINT here.
15021 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
15022 state reached after the reduction/recovery, since...
15023 (yyparse, yyprocessOneStack): Report the state we are entering in.
15024
15025 2002-11-16 Akim Demaille <akim@epita.fr>
15026
15027 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
15028 Add support for --trace=skeleton.
15029 * src/scan-skel.l: %option debug.
15030 Scan strings of non-@ or \n instead of character by character.
15031 (scan_skel): Handle trace_skeleton.
15032 (QPUTS): New.
15033 (@output_parser_name@, @output_header_name@): ``Restore'' their
15034 support (used to be M4 macros).
15035 * data/yacc.c: Quote larger chunks, a la glr.c.
15036 * data/lalr1.cc: Likewise.
15037 The header guards are no longer available, so use some other
15038 string than `YYLSP_NEEDED'.
15039
15040 2002-11-16 Akim Demaille <akim@epita.fr>
15041
15042 Make the ``Printers and Destructors'' test more verbose, taking
15043 `yacc.c''s behavior as (possibly wrong) reference.
15044
15045 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
15046 instead of fprint on stdout.
15047 Set and report the last_line of the symbols.
15048 Consistently display values and locations.
15049
15050 2002-11-16 Paul Eggert <eggert@twinsun.com>
15051
15052 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
15053
15054 2002-11-15 Paul Eggert <eggert@twinsun.com>
15055
15056 * tests/actions.at (Actions after errors): New test case.
15057
15058 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
15059 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
15060 tests/action.at, tests/calc.at, tests/conflicts.at,
15061 tests/cxx-type.at, tests/regression.at:
15062 "parse error" -> "syntax error" for POSIX compatibility.
15063 "parsing stack overflow..." -> "parser stack overflow" so
15064 that code matches Bison documentation.
15065
15066 2002-11-15 Akim Demaille <akim@epita.fr>
15067
15068 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
15069 take two BRACED_CODE, not two string_content.
15070 Free the scanner's obstack when we are done.
15071 (code_content): New.
15072 * tests/calc.at: Adjust.
15073 * doc/bison.texinfo: Adjust.
15074 Also, make sure to include the `,' for these declarations.
15075
15076 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
15077
15078 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
15079 definition; avoids potential autoreconf problems.
15080
15081 2002-11-15 Akim Demaille <akim@epita.fr>
15082
15083 Always check the value returned by yyparse.
15084
15085 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
15086 returned by yyparse.
15087 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
15088 Adjust calls.
15089 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
15090 returned by yyparse.
15091
15092 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15093
15094 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
15095 on input.at test.
15096
15097 2002-11-14 Paul Eggert <eggert@twinsun.com>
15098
15099 * src/output.c (output_skeleton): Call xfopen instead of
15100 duplicating xfopen's body.
15101
15102 Fix bugs reported by Nelson H. F. Beebe in
15103 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
15104
15105 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
15106 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
15107 Group compiler. Instead, use "$CC -E bar.c". Include the .h
15108 file twice in the grammar, as an extra check.
15109
15110 * tests/input.at (Torturing the Scanner): Surround the
15111 backslash-newline tests with "#if 0", to make it less likely that
15112 we'll run into compiler bugs. Bring back solitary \ inside
15113 comment, but add a closing comment to work around HP C bug. Don't
15114 test backslash-newline in C character constant.
15115
15116 2002-11-14 Akim Demaille <akim@epita.fr>
15117
15118 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
15119 status of the compiler.
15120 Calling `exit 1' is no longer needed.
15121 Reported by Nelson H. F. Beebe.
15122
15123 2002-11-14 Akim Demaille <akim@epita.fr>
15124
15125 * tests/atlocal.in (CPPFLAGS): We have config.h.
15126 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
15127 New.
15128 * tests/actions.at, tests/calc.at, tests/conflicts.at,
15129 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
15130 * tests/regression.at, tests/torture.at: Use them for all the
15131 grammars that are to be compiled.
15132 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
15133 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
15134 * doc/bison.texinfo (GLR Parsers): Document `inline'.
15135
15136 2002-11-14 Akim Demaille <akim@epita.fr>
15137
15138 * doc/bison.texinfo: Various formatting changes (alignments in
15139 samples, additional @group/@end group, GCS in samples.
15140 Use @deffn instead of simple @table to define the directives,
15141 macros, variables etc.
15142
15143 2002-11-13 Paul Eggert <eggert@twinsun.com>
15144
15145 Fix some bugs reported by Albert Chin-A-Young in
15146 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
15147
15148 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
15149 -o c"; the HP C compiler chatters during compilation.
15150 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
15151 * tests/headers.at (export YYLTYPE): Likewise.
15152
15153 * tests/input.at (Torturing the Scanner): Remove lines containing
15154 solitary backslashes, as they tickle a bug in the HP C compiler.
15155
15156 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
15157 comments, since they're not portable. Use GNU coding style.
15158
15159 2002-11-13 Akim Demaille <akim@epita.fr>
15160
15161 * data/yacc.c: Leave bigger chunks of quoted text.
15162 (YYDSYMPRINTF): New.
15163 Use it to report symbol activities.
15164 * data/glr.c (YYDSYMPRINTF): New.
15165 Use it.
15166
15167 2002-11-12 Paul Eggert <eggert@twinsun.com>
15168
15169 Version 1.75b.
15170
15171 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
15172 (yyglrReduce): Return yyok, not 0.
15173 This should avoid the enumerated-type warnings reported
15174 by Nelson H. F. Beebe in
15175 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
15176
15177 * lib/bbitset.h (BITSET_INLINE): Remove.
15178 * lib/bitset.h [! BITSET_INLINE]: Remove.
15179 (bitset_set, bitset_reset, bitset_test): Rename local vars
15180 to avoid shadowing warnings by GCC.
15181
15182 * data/glr.c (inline): Remove #define. It's the user's
15183 responsibility to #define it away, just like 'const'.
15184 This fixes one of the bugs reported by Nelson H. F. Beebe in
15185 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
15186
15187 * Makefile.maint (po-check): Scan .l and .y files instead of the
15188 .c and the .h files that they generate. This fixes the bug
15189 reported by Tim Van Holder in:
15190 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
15191 Look for N_ as well as for _. Try to avoid matching #define for
15192 N_ and _.
15193 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
15194 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
15195 * src/scan-gram.l: Revamp regular expressions so that " and '
15196 do not confuse xgettext.
15197
15198 * src/struniq.h (struniq_new): Do not declare the return type
15199 to be 'const'; this violates the C standard.
15200 * src/struniq.c (struniq_new): Likewise.
15201
15202 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
15203
15204 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
15205 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
15206 linker.
15207
15208 2002-11-12 Akim Demaille <akim@epita.fr>
15209
15210 * Makefile.maint: Sync with Autoconf:
15211 (local_updates): New.
15212
15213 2002-11-12 Akim Demaille <akim@epita.fr>
15214
15215 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
15216
15217 2002-11-12 Akim Demaille <akim@epita.fr>
15218
15219 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
15220 locations.
15221
15222 2002-11-12 Akim Demaille <akim@epita.fr>
15223
15224 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
15225 not yyvalue.
15226
15227 2002-11-12 Akim Demaille <akim@epita.fr>
15228
15229 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
15230 Use it to test the GLR parser.
15231
15232 2002-11-12 Akim Demaille <akim@epita.fr>
15233
15234 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
15235 defines it.
15236 * data/glr.c (yystos): New.
15237 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
15238 (YYDSYMPRINT): New.
15239 (yyval): Don't define it, it is handled via M4.
15240 (yyrecoverParseError): Free verbosely the discarded symbols.
15241 * data/yacc.c (yysymprint): Remove, rather...
15242 (b4_yysymprint_generate): invoke.
15243 * data/c.m4 (b4_yysymprint_generate): New.
15244 Accept pointers as arguments, as opposed to the version from
15245 yacc.c.
15246 (b4_yydestruct_generate): Likewise.
15247 * tests/cations.at (Printers and Destructors): Use Bison directives
15248 instead of CPP macros.
15249 Don't rely on internal details.
15250
15251 2002-11-12 Akim Demaille <akim@epita.fr>
15252
15253 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
15254 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
15255 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
15256 it against YYEMPTY and so forth), work on yytoken (i.e., set
15257 it to YYEMPTY etc.).
15258 (yydestruct): Replace with a b4_yydestruct_generate invocation.
15259 (b4_symbol_actions): Remove.
15260 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
15261 for 0, end-of-input.
15262
15263 2002-11-12 Akim Demaille <akim@epita.fr>
15264
15265 * doc/bison.texinfo (Destructor Decl): New.
15266
15267 2002-11-12 Akim Demaille <akim@epita.fr>
15268
15269 * src/tables.c (tables_generate): Use free for pointers that
15270 cannot be NULL, not XFREE.
15271 (pack_vector): Use assert, not fatal, for bound violations.
15272 * src/state.c (state_new): Likewise.
15273 * src/reader.c (reader): Likewise.
15274 * src/lalr.c (set_goto_map): Likewise.
15275 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
15276 the file name.
15277
15278 2002-11-12 Akim Demaille <akim@epita.fr>
15279
15280 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
15281 Restore.
15282 * src/scan-gram.l (last_string): Is global to the file, not to
15283 yylex.
15284 * src/parse-gram.y (input): Don't append the epilogue here,
15285 (epilogue.opt): do it here, and free the scanner's obstack.
15286 * src/reader.c (epilogue_set): Rename as...
15287 (epilogue_augment): this.
15288 * data/c.m4 (b4_epilogue): Defaults to empty.
15289
15290 2002-11-12 Akim Demaille <akim@epita.fr>
15291
15292 * src/getargs.c (long_options): Remove duplicates.
15293 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
15294 Remove.
15295 * doc/bison.rnh: Remove.
15296 * doc/bison.texinfo (VMS Invocation): Remove.
15297
15298 2002-11-12 Akim Demaille <akim@epita.fr>
15299
15300 * src/struniq.h, src/struniq.c (struniq_t): Is const.
15301 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
15302
15303 Use struniq for symbols.
15304
15305 * src/symtab.h (symbol_t): The tag member is a struniq.
15306 (symbol_type_set): Adjust.
15307 * src/symtab.c (symbol_new): Takes a struniq.
15308 (symbol_free): Don't free the tag member.
15309 (hash_compare_symbol_t, hash_symbol_t): Rename as...
15310 (hash_compare_symbol, hash_symbol): these.
15311 Use the fact that tags as struniqs.
15312 (symbol_get): Use struniq_new.
15313 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
15314 Returns a strniq.
15315 * src/reader.h (merger_list, grammar_currentmerge_set): The name
15316 and type members are struniqs.
15317 * src/reader.c (get_merge_function)
15318 (grammar_current_rule_merge_set): Adjust.
15319 (TYPE, current_type): Are struniq.
15320
15321 Use struniq for file names.
15322
15323 * src/files.h, src/files.c (infile): Split into...
15324 (grammar_file, current_file): these.
15325 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
15326 * src/reduce.c (reduce_print): Likewise.
15327 * src/getargs.c (getargs): Likewise.
15328 * src/complain.h, src/complain.c: Likewise.
15329 * src/main.c (main): Call struniqs_new early enough to use it for
15330 file names.
15331 Don't free the input file name.
15332
15333 2002-11-12 Akim Demaille <akim@epita.fr>
15334
15335 * src/symtab.c (symbol_free): Remove dead deactivated code:
15336 type_name are properly removed.
15337 Don't use XFREE to free items that cannot be NULL.
15338 * src/struniq.h, src/struniq.c: New.
15339 * src/main.c (main): Initialize/free struniqs.
15340 * src/parse-gram.y (%union): Add astruniq member.
15341 (yyprint): Adjust.
15342 * src/scan-gram.l (<{tag}>): Return a struniq.
15343 Free the obstack bit that used to store it.
15344 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
15345
15346 2002-11-11 Paul Eggert <eggert@twinsun.com>
15347
15348 Revamp to fix many (but not all) of the C- and M4-related quoting
15349 problems. Among other things, this fixes the Bison bug reported
15350 by Jan Hubicka when processing the Bash grammar; see:
15351 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
15352
15353 Use new @ escapes consistently. Represent brackets with @{ and @}
15354 rather than @<:@ and @:>@, since this works a bit better with dumb
15355 editors like vi. Represent @ with @@, since @ is now consistently
15356 an escape. Use @oline@ and @ofile@ rather than __oline__ and
15357 __ofile__, to avoid unexpected expansions. Similarly, use @output
15358 rather than #output.
15359
15360 * data/c.m4 (b4_copyright): Omit file name from comment, since
15361 the file name could contain "*/".
15362 (b4_synclines_flag): Don't quote the 2nd argument; it should already
15363 be quoted. All uses changed.
15364
15365 * data/glr.c: Use new @ escapes consistently.
15366 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
15367 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
15368 Remove, since they couldn't handle arbitrary characters in file
15369 names.
15370 * data/lalr1.cc: Likewise.
15371 * data/yacc.c: Likewise.
15372
15373 * src/files.c (output_infix): Remove; all uses removed.
15374 * src/files.h: Likewise.
15375
15376 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
15377 mishandled funny characters in file names, and anyway it isn't
15378 needed any more.
15379 * data/yacc.c: Likewise.
15380 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
15381
15382 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
15383 * data/yacc.c: Likewise.
15384
15385 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
15386 strings now.
15387 (muscle_init): Quote filename as a C string.
15388 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
15389 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
15390 * src/output.c (escaped_file_name_output): New function.
15391 (prepare_symbols): Quote tokens for M4.
15392 (prepare): Don't insert output_infix, output_prefix,
15393 output_parser_name, output_header_name; this is now down by scan-skel.
15394 Insert skeleton as a C string.
15395
15396 * src/output.c (user_actions_output, symbol_destructors_output,
15397 symbol_printers_output): Quote filenames for C and M4.
15398 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15399
15400 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
15401 escapes other than \\ and \'; this simplifies the code.
15402 (<SC_STRING>): Likewise, for \\ and \".
15403 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
15404 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
15405 Use new escapes @{ and @} for [ and ].
15406
15407 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
15408 them with auto vars.
15409 Switch to new escape scheme, where @ is the escape character uniformly.
15410 Abort if a stray escape character is found. Avoid unbounded input
15411 buffer when parsing non-escaped text.
15412
15413 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
15414 __oline__, #output, $@, and @{ do not have unintended meanings.
15415
15416 2002-11-09 Paul Eggert <eggert@twinsun.com>
15417
15418 Fix the test failure due to GCC warnings described in
15419 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
15420 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
15421 evaluate to 0 if it's impossible for NINF to be in the respective
15422 table.
15423 (yygetLRActions, yyrecoverParseError): Use them.
15424
15425 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
15426 counted in the token inserted at end of file. Now takes
15427 location_t *, not location_t, so that the location can be
15428 adjusted. All uses changed.
15429
15430 * tests/regression.at (Invalid inputs): Adjust wording in
15431 diagnostic to match the new behavior.
15432
15433 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
15434 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
15435 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
15436 abort ();'. This reduces the runtime of the "Many lookaheads"
15437 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
15438 GCC 3.2.
15439
15440 2002-11-07 Paul Eggert <eggert@twinsun.com>
15441
15442 * src/parse-gram.y (CHARACTER): Remove unused token.
15443 All uses removed.
15444
15445 * src/scan-gram.l: Remove stack option. We no longer use the
15446 stack, since the stack was never deeper than 1; instead, use the
15447 new auto var c_context to record the stacked value.
15448
15449 Remove nounput option. At an unexpected end of file, we now unput
15450 the minimal input necessary to end cleanly; this simplifies the
15451 code.
15452
15453 Avoid unbounded token sizes where this is easy.
15454
15455 (unexpected_end_of_file): New function.
15456 Use it to systematize the error message on unexpected EOF.
15457 (last-string): Now auto, not static.
15458 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
15459 (scanner_last_string_free): Remove; not used.
15460 (percent_percent_count): Move decl to just before use.
15461 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
15462 not the (never otherwised-used) CHARACTER.
15463
15464 2002-11-07 Akim Demaille <akim@epita.fr>
15465
15466 Let yyerror always receive the msg as last argument, so that
15467 yyerror can be variadic.
15468
15469 * data/yacc.c (b4_yyerror_args): New.
15470 Use it when calling yyerror.
15471 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
15472 Use it when calling yyerror.
15473 * doc/bison.texinfo (Error Reporting): Adjust.
15474 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
15475 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
15476
15477 2002-11-06 Akim Demaille <akim@epita.fr>
15478
15479 #line should have quoted strings.
15480 Ideally, this should be done by m4_quotearg.
15481
15482 * src/scan-skel.l: Include quotearg.h.
15483 Quote __ofile__.
15484 * src/output.c (symbol_printers_output)
15485 (symbol_destructors_output): Quote the file name.
15486
15487 2002-11-06 Akim Demaille <akim@epita.fr>
15488
15489 * tests/regression.at (Invalid inputs): Adjust to the recent
15490 messages.
15491
15492 2002-11-06 Akim Demaille <akim@epita.fr>
15493
15494 Restore --no-lines.
15495 Reported by Jim Kent.
15496
15497 * data/c.m4 (b4_syncline): New.
15498 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
15499 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
15500 * src/output.c (user_actions_output): Likewise.
15501 (prepare): Define 'b4_synclines_flag'.
15502 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
15503
15504 2002-11-06 Akim Demaille <akim@epita.fr>
15505
15506 * src/main.c (main): Free `infile'.
15507 * src/scan-gram.l (handle_syncline): New.
15508 Recognize `#line'.
15509 * src/output.c (user_actions_output, symbol_destructors_output)
15510 (symbol_printers_output): Use the location's file name, not
15511 infile.
15512 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15513
15514 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15515
15516 * src/tables.c (matching_state): Don't allow states to match if
15517 either has GLR conflict entries.
15518
15519 2002-11-05 Paul Eggert <eggert@twinsun.com>
15520
15521 * src/scan-gram.l: Use more accurate diagnostics, e.g.
15522 "integer out of range" rather than "invalid value".
15523 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
15524 accordingly.
15525
15526 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
15527 Also, remove one static variable in the scanner.
15528
15529 * src/scan-gram.l (braces_level): Now auto, not static.
15530 Initialize to zero if the compiler is being picky.
15531 (INITIAL): Clear braces_level instead of incrementing it.
15532 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
15533 as POSIX 1003.1-2001 requires.
15534 * src/system.h (IF_LINT): New macro, taken from coreutils.
15535 * configure.ac: Define "lint" if --enable-gcc-warnings.
15536
15537 2002-11-05 Akim Demaille <akim@epita.fr>
15538
15539 * src/scan-gram.l: When it starts with `%', complain about the
15540 whole directive, not just that `invalid character: %'.
15541
15542 2002-11-04 Akim Demaille <akim@epita.fr>
15543
15544 * Makefile.maint: Update from Autoconf.
15545 (update, cvs-update, po-update, do-po-update): New.
15546
15547 2002-11-04 Akim Demaille <akim@epita.fr>
15548
15549 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
15550 and yyerror.
15551 Have yyerror `use' its arguments.
15552 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
15553 returns true when location & yacc & pure & parse-param.
15554 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
15555
15556 2002-11-04 Akim Demaille <akim@epita.fr>
15557
15558 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
15559 clashes.
15560 * src/scan-gram.l: Use [\'] instead of ['] to pacify
15561 font-lock-mode.
15562 Use complain_at.
15563 Use quote, not quote_n since LOCATION_PRINT no longer uses the
15564 slot 0.
15565
15566 2002-11-03 Paul Eggert <eggert@twinsun.com>
15567
15568 * src/reader.c (get_merge_function, grammar_current_rule_check):
15569 Use consistent diagnostics for reporting type name clashes.
15570 Quote the types with <>, for consistency with Yacc.
15571 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
15572
15573 2002-11-03 Akim Demaille <akim@epita.fr>
15574
15575 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
15576 New.
15577 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
15578 (b4_parse_param): Remove.
15579 Use b4_identification.
15580 Propagate b4_pure_args where needed to pass them to yyerror.
15581 * data/glr.m4 (b4_parse_param): Remove.
15582 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
15583 (b4_lpure_formals): New.
15584 Use b4_identification.
15585 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
15586 b4_user_formals and b4_user_args.
15587 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
15588 (yyreportAmbiguity): When using a pure parser, also need
15589 the location, and the parse-params.
15590 Adjust callers.
15591 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
15592 When using a pure parser, also need the parse-params.
15593 Adjust callers.
15594 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
15595 (%pure-parser + %parse-param) LALR and GLR parsers.
15596 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
15597 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
15598 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
15599 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
15600 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
15601 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
15602 * doc/bison.texinfo: Untabify the whole file.
15603 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
15604 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
15605 (Error Reporting): Adjust to these new directives.
15606 Document %error-verbose, deprecate YYERROR_VERBOSE.
15607
15608 2002-11-03 Akim Demaille <akim@epita.fr>
15609
15610 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
15611 AT_CHECK_CALC_GLR invocations to use % directives, instead of
15612 command line options.
15613 * tests/cxx-type.at: Formatting changes.
15614
15615 2002-11-03 Paul Eggert <eggert@twinsun.com>
15616
15617 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
15618 to count columns correctly, and to check for invalid inputs.
15619
15620 Use mbsnwidth to count columns correctly. Account for tabs, too.
15621 Include mbswidth.h.
15622 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
15623 (extend_location): New function.
15624 (YY_LINES): Remove.
15625
15626 Handle CRLF in C code rather than in Lex code.
15627 (YY_INPUT): New macro.
15628 (no_cr_read): New function.
15629
15630 Scan UCNs, even though we don't fully handle them yet.
15631 (convert_ucn_to_byte): New function.
15632
15633 Handle backslash-newline correctly in C code.
15634 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
15635 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
15636 all uses changed.
15637 (tag, splice): New EREs. Do not allow NUL or newline in tags.
15638 Use {splice} wherever C allows backslash-newline.
15639 YY_STEP after space, newline, vertical-tab.
15640 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
15641
15642 (letter, id): Don't assume ASCII; e.g., spell out a-z.
15643
15644 ({int}, handle_action_dollar, handle_action_at): Check for integer
15645 overflow.
15646
15647 (YY_STEP): Omit trailing semicolon, so that it's more like C.
15648
15649 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
15650 as well as \000. Check for UCHAR_MAX, not 255.
15651 Allow \x with an arbitrary positive number of digits, as in C.
15652 Check for overflow here.
15653 Allow \? and UCNs, for compatibility with C.
15654
15655 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
15656 with quote slot used by complain_at.
15657
15658 * tests/input.at: Add tests for backslash-newline, m4 quotes
15659 in symbols, long literals, and funny escapes in strings.
15660
15661 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
15662 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
15663 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
15664 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
15665 * m4/mbswidth.m4: New file, from GNU coreutils.
15666
15667 * doc/bison.texinfo (Grammar Outline): Document // comments.
15668 (Symbols): Document that trigraphs have no special meaning in Bison,
15669 nor is backslash-newline allowed.
15670 (Actions): Document that trigraphs have no special meaning.
15671
15672 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
15673 no longer used.
15674
15675 2002-11-02 Paul Eggert <eggert@twinsun.com>
15676
15677 * src/reader.c: Don't include quote.h; not needed.
15678 (get_merge_function): Reword warning to be consistent with
15679 type clash diagnostic in grammar_current_rule_check.
15680
15681 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
15682 bug in trigraph handling.
15683
15684 * src/output.c (prepare_symbols): When printing token names,
15685 escape "[" as "@<:@" and likewise for "]".
15686
15687 * src/system.h (errno): Remove declaration, as we are now
15688 assuming C89 or better, and C89 guarantees errno.
15689
15690 2002-10-30 Paul Eggert <eggert@twinsun.com>
15691
15692 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
15693 Check for close failures.
15694 * src/files.h (xfclose): Return void, not int, since it always
15695 returned zero.
15696 * src/files.c (xfclose): Likewise. Report I/O error if ferror
15697 indicates one.
15698 * src/output.c (output_skeleton): Use xfclose rather than fclose
15699 and ferror. xfclose now checks ferror.
15700
15701 * data/glr.c (YYLEFTMOST_STATE): Remove.
15702 (yyreportTree): Use a stack-based leftmost state. This avoids
15703 our continuing battles with bogus warnings about initializers.
15704
15705 2002-10-30 Akim Demaille <akim@epita.fr>
15706
15707 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
15708 #if.
15709
15710 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15711
15712 * tests/glr-regr1.at: New test for reported regressions.
15713 * tests/testsuite.at: Add glr-regr1.at test.
15714 * tests/Makefile.am: Add glr-regr1.at test.
15715
15716 2002-10-24 Paul Eggert <eggert@twinsun.com>
15717
15718 Version 1.75a.
15719
15720 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
15721 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
15722 we use malloc. Don't assume 'A' through 'Z' are contiguous.
15723 Don't assume strdup exists; POSIX says its an XSI extension.
15724 Check for buffer overflow on input.
15725
15726 2002-10-24 Akim Demaille <akim@epita.fr>
15727
15728 * src/output.c (output_skeleton): Don't disable M4sugar comments
15729 too soon: it results in comments being expanded.
15730 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
15731 first output.
15732
15733 2002-10-24 Akim Demaille <akim@epita.fr>
15734
15735 * data/yacc.c (m4_int_type): New.
15736 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
15737 char' as only yacc.c wants K&R portability.
15738 * data/glr.c (yysigned_char): Remove.
15739 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
15740 Reported by Quoc Peyrot.
15741
15742 2002-10-23 Paul Eggert <eggert@twinsun.com>
15743
15744 * src/main.c (main): With --trace=time, report times even if a
15745 non-fatal error occurs. Formerly, the times were reported in some
15746 such cases but not in others.
15747 * src/reader.c (reader): Just return if a complaint has been issued,
15748 instead of exiting, so that 'main' can report times.
15749
15750 2002-10-22 Akim Demaille <akim@epita.fr>
15751
15752 * src/system.h: Include sys/types.
15753 Reported by Bert Deknuydt.
15754
15755 2002-10-23 Paul Eggert <eggert@twinsun.com>
15756
15757 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
15758 Suggested by Art Haas.
15759
15760 2002-10-22 Paul Eggert <eggert@twinsun.com>
15761
15762 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
15763 decl; not needed any more.
15764 * src/main.c (main): Use return to exit, undoing yesterday's change.
15765 The last OS that we could find where this wouldn't work is
15766 SunOS 3.5, and that's too old to worry about now.
15767
15768 * data/glr.c (struct yyltype): Define members even when not
15769 doing locations. This is more consistent with yacc.c, and it
15770 works around the following bug reports:
15771 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
15772 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
15773
15774 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
15775 @acronym consistently. Standardize on "Yacc" instead of "YACC",
15776 "Algol" instead of "ALGOL". Give a bit more history about BNF.
15777
15778 2002-10-22 Akim Demaille <akim@epita.fr>
15779
15780 * data/README: New.
15781
15782 2002-10-21 Paul Eggert <eggert@twinsun.com>
15783
15784 Be consistent about 'bool'; the old code used an enum in one
15785 module and an int in another, and this violates the C standard.
15786 * m4/stdbool.m4: New file, from coreutils 4.5.3.
15787 * configure.ac (AC_HEADER_STDBOOL): Add.
15788 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
15789 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
15790 * src/symtab.c (hash_compare_symbol_t): Likewise.
15791 * src/system.h (bool, false, true): Use a definition consistent
15792 with ../lib/hash.c. All uses changed.
15793
15794 * src/complain.c (warning_issued): Renamed from warn_message_count,
15795 so that we needn't worry about integer overflow (!).
15796 Now of type bool. All uses changed.
15797 (complaint_issued): Renamed from complain_message_count; likewise.
15798
15799 * src/main.c (main): Use exit to exit with failure.
15800
15801 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
15802 rather than 1 and 0.
15803 * src/main.c (main): Likewise.
15804 * src/getargs.c (getargs): Likewise.
15805 * src/reader.c (reader): Likewise.
15806
15807 * src/getarg.c (getargs): Remove duplicate code for
15808 "Try `bison --help'".
15809
15810 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
15811 What was that "2" for?
15812
15813 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
15814 * src/getargs.c (usage): Likewise.
15815
15816 * src/getargs.c (getargs): When there are too few operands, report
15817 the last one. When there are too many, report the first extra
15818 one. This is how diffutils does it.
15819
15820 2002-10-20 Paul Eggert <eggert@twinsun.com>
15821
15822 Remove K&R vestiges.
15823 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
15824 * src/complain.c (VA_START): Remove. Assume prototypes.
15825 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
15826 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
15827 fatal): Assume prototypes.
15828 * src/complain.h: Assume prototypes.
15829 * src/system.h (PARAMS): Remove.
15830 Include <limits.h> unconditionally, since it's guaranteeed even
15831 for a freestanding C89 compiler.
15832 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
15833 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
15834
15835 2002-10-20 Akim Demaille <akim@epita.fr>
15836
15837 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
15838 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
15839 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
15840 (yyresolveStates, yyresolveAction, yyresolveStack)
15841 (yyprocessOneStack): Use them.
15842 (yy_reduce_print): New.
15843 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
15844
15845 2002-10-20 Akim Demaille <akim@epita.fr>
15846
15847 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
15848 arguments and output `void'.
15849 (b4_c_function): Rename as...
15850 (b4_c_function_def): this.
15851 (b4_c_function_decl, b4_c_ansi_function_def)
15852 (b4_c_ansi_function_decl): New.
15853 Change the interpretation of the arguments: before `int, foo', now
15854 `int foo, foo'.
15855 * data/yacc.c (yyparse): Prototype and define thanks to these.
15856 Adjust b4_c_function_def uses.
15857 * data/glr.c (yyparse): Likewise, but ANSI only.
15858
15859 2002-10-20 Akim Demaille <akim@epita.fr>
15860
15861 * src/output.c (prepare): Move the definition of `tokens_number',
15862 `nterms_number', `undef_token_number', `user_token_number_max'
15863 to...
15864 (prepare_tokens): Here.
15865 (prepare_tokens): Rename as...
15866 (prepare_symbols): this.
15867 (prepare): Move the definition of `rules_number' to...
15868 (prepare_rules): here.
15869 (prepare): Move the definition of `last', `final_state_number',
15870 `states_number' to...
15871 (prepare_states): here.
15872 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
15873
15874 2002-10-20 Akim Demaille <akim@epita.fr>
15875
15876 * src/tables.h, src/tables.c, src/output.c: Comment changes.
15877
15878 2002-10-20 Akim Demaille <akim@epita.fr>
15879
15880 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
15881 * data/c.m4: here.
15882
15883 2002-10-20 Akim Demaille <akim@epita.fr>
15884
15885 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
15886 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
15887 `pair'.
15888 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
15889 `name' to...
15890 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
15891 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
15892 These.
15893
15894 2002-10-19 Paul Eggert <eggert@twinsun.com>
15895
15896 Do not create a temporary file, as that involves security and
15897 cleanup headaches. Instead, use a pair of pipes.
15898 Derived from a suggestion by Florian Krohm.
15899 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
15900 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
15901 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
15902 (BISON_PREREQ_SUBPIPE): Add.
15903 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
15904 Add subpipe.h, subpipe.c.
15905 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
15906 * po/POTFILES.in: Add lib/subpipe.c.
15907 * src/output.c: Include "subpipe.h".
15908 (m4_invoke): Remove decl.
15909 (scan_skel): New decl.
15910 (output_skeleton): Use pipe rather than temporary file for m4 input.
15911 Check that m4sugar.m4 is readable, to avoid deadlock.
15912 Check for pipe I/O error.
15913 * src/scan-skel.l (readpipe): Remove decl.
15914 (scan_skel): New function, to be used in place of m4_invoke.
15915 Read from stream rather than file.
15916
15917 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
15918 float, as this generates a warning on Solaris 8 + GCC 3.2 with
15919 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
15920 this generates a more-accurate value anyway.
15921
15922 * lib/timevar.c (timervar_accumulate): Rename locals to
15923 avoid confusion with similarly-named more-global.
15924 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
15925
15926 * src/output.c (prepare): Use xstrdup to convert char const *
15927 to char *, to avoid GCC warning.
15928
15929 2002-10-19 Akim Demaille <akim@epita.fr>
15930
15931 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
15932 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
15933 Use them to have `calc.y' ready for %pure-parser.
15934 * data/yacc.c (YYLEX): Pass a yylex return type to
15935 b4_c_function_call.
15936
15937 2002-10-19 Akim Demaille <akim@epita.fr>
15938
15939 Prototype support of %lex-param and %parse-param.
15940
15941 * src/parse-gram.y: Add the definition of the %lex-param and
15942 %parse-param tokens, plus their rules.
15943 Drop the `_' version of %glr-parser.
15944 Add the "," token.
15945 * src/scan-gram.l (INITIAL): Scan them.
15946 * src/muscle_tab.c: Comment changes.
15947 (muscle_insert, muscle_find): Rename `pair' as `probe'.
15948 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
15949 (muscle_entry_s): The `value' member is no longer const.
15950 Adjust all dependencies.
15951 * src/muscle_tab.c (muscle_init): Adjust: use
15952 MUSCLE_INSERT_STRING.
15953 Initialize the obstack earlier.
15954 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
15955 (muscle_pair_list_grow): New.
15956 * data/c.m4 (b4_c_function_call, b4_c_args): New.
15957 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
15958 * tests/calc.at: Use %locations, not --locations.
15959 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
15960
15961 2002-10-19 Akim Demaille <akim@epita.fr>
15962
15963 * src/getargs.c (usage): Take status as argument and exit
15964 accordingly.
15965 Report the traditional `Try ... --help' message when status != 0.
15966 (usage, version): Don't take a FILE * as arg, it is pointless.
15967 (getargs): When there is an incorrect number of arguments, make it
15968 an error, and report it GNUlically thanks to `usage ()'.
15969
15970 2002-10-18 Paul Eggert <eggert@twinsun.com>
15971
15972 * data/glr.c (yyreportParseError): Don't assume that sprintf
15973 yields the length of the printed string, as this is not true
15974 on SunOS 4.1.4. Reported by Peter Klein.
15975
15976 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
15977 * tests/conflicts.at (%nonassoc and eof): Likewise.
15978 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
15979
15980 2002-10-17 Akim Demaille <akim@epita.fr>
15981
15982 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
15983 * src/getargs.c (trace_types, trace_args): Adjust.
15984 * src/reader.c (grammar_current_rule_prec_set)
15985 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
15986 Standardize error messages.
15987 And s/@prec/%prec/!
15988 (reader): Use trace_flag to enable scanner/parser debugging,
15989 instead of an adhoc scheme.
15990 * src/scan-gram.l: Remove trailing debugging code.
15991
15992 2002-10-16 Paul Eggert <eggert@twinsun.com>
15993
15994 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
15995 MUSCLE_TAB_H.
15996
15997 * NEWS: Officially drop support for building Bison with K&R C,
15998 since it didn't work anyway and it's not worth worrying about.
15999 * Makefile.maint (wget_files): Remove ansi2knr.c.
16000 (ansi2knr.c-url_prefix): Remove.
16001 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
16002 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16003 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16004
16005 2002-10-15 Paul Eggert <eggert@twinsun.com>
16006
16007 Stop using the "enum_" trick for K&R-style function definitions;
16008 it confused me, and I was the author! Instead, assume that people
16009 who want to use K&R C compilers (when using these modules in GCC,
16010 perhaps?) will run ansi2knr.
16011
16012 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
16013 All uses of "enum_" changed to "enum ".
16014 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16015 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16016
16017 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
16018 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
16019 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
16020 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
16021 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
16022 abitset_not, abitset_ones, abitset_or, abitset_or_and,
16023 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
16024 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
16025 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
16026 Use function prototypes; this removes the need for declaring
16027 static functions simply to provide their prototypes.
16028 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
16029 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
16030 bitset_count_, bitset_create, bitset_dump, bitset_first,
16031 bitset_free, bitset_init, bitset_last, bitset_next,
16032 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
16033 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
16034 bitset_print, bitset_release_memory, bitset_toggle_,
16035 bitset_type_choose, bitset_type_get, bitset_type_name_get,
16036 debug_bitset): Likewise.
16037 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
16038 * lib/bitset_stats.c (bitset_log_histogram_print,
16039 bitset_percent_histogram_print, bitset_stats_and,
16040 bitset_stats_and_cmp, bitset_stats_and_or,
16041 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
16042 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
16043 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
16044 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
16045 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
16046 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
16047 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
16048 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
16049 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
16050 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
16051 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
16052 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
16053 bitset_stats_zero): Likewise.
16054 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16055 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16056 bitsetv_dump, debug_bitsetv): Likewise.
16057 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
16058 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
16059 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
16060 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
16061 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
16062 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
16063 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
16064 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
16065 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
16066 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
16067 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
16068 Likewise.
16069 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
16070 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
16071 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
16072 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
16073 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
16074 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
16075 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
16076 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
16077 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
16078 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
16079 lbitset_xor_cmp, lbitset_zero): Likewise.
16080
16081 2002-10-14 Akim Demaille <akim@epita.fr>
16082
16083 Version 1.75.
16084
16085 2002-10-14 Akim Demaille <akim@epita.fr>
16086
16087 * tests/Makefile.am (maintainer-check-posix): New.
16088
16089 2002-10-14 Akim Demaille <akim@epita.fr>
16090
16091 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
16092 member.
16093
16094 2002-10-14 Akim Demaille <akim@epita.fr>
16095
16096 * src/tables.c (table_ninf_remap): base -> tab.
16097 Reported by Matt Rosing.
16098
16099 2002-10-14 Paul Eggert <eggert@twinsun.com>
16100
16101 * tests/action.at, tests/calc.at, tests/conflicts.at,
16102 tests/cxx-type.at, tests/headers.at, tests/input.at,
16103 tests/regression.at, tests/synclines.at, tests/torture.at:
16104 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
16105 so that the tests still work even if POSIXLY_CORRECT is set.
16106 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
16107
16108 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
16109 for portability to K&R hosts. Fix typo: signed char is guaranteed
16110 only to 127, not to 128.
16111 * data/glr.c (yysigned_char): New type.
16112 * data/yacc.c (yysigned_char): Likewise.
16113 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
16114
16115 2002-10-13 Paul Eggert <eggert@twinsun.com>
16116
16117 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
16118 true due to limited range of data type" warning from GCC.
16119
16120 * data/c.m4 (b4_token_defines): Protect against double-inclusion
16121 by wrapping enum yytokentype's definition inside #ifndef
16122 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
16123
16124 2002-10-13 Akim Demaille <akim@epita.fr>
16125
16126 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
16127 Un yy- yyrhs to avoid the name clash with the global YYRHS.
16128
16129 2002-10-13 Akim Demaille <akim@epita.fr>
16130
16131 * Makefile.maint: Update from Autoconf 2.54.
16132 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
16133
16134 2002-10-13 Akim Demaille <akim@epita.fr>
16135
16136 * src/print.c (print_state): Separate the list of solved conflicts
16137 from the other items.
16138 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
16139
16140 2002-10-13 Akim Demaille <akim@epita.fr>
16141
16142 Let nondeterministic skeletons be usable with deterministic
16143 tables.
16144
16145 With the patch, GAWK compiled by GCC without -O2 passes its test
16146 suite using a GLR parser driven by LALR tables. It fails with -O2
16147 because `struct stat' gives two different answers on my machine:
16148 88 (definition of an auto var) and later 96 (memset on this var).
16149 Hence the stack is badly corrumpted. The headers inclusion is to
16150 blame: if I move the awk.h inclusion before GLR's system header
16151 inclusion, the two struct stat have the same size.
16152
16153 * src/tables.c (pack_table): Always create conflict_table.
16154 (token_actions): Always create conflict_list.
16155 * data/glr.c (YYFLAG): Remove, unused.
16156
16157 2002-10-13 Akim Demaille <akim@epita.fr>
16158
16159 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
16160 (O0FLAGS): New.
16161 (VALGRIND, GXX): New.
16162 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
16163 * tests/bison.in: Run $PREBISON a pre-command.
16164 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
16165 (maintainer-check-g++): New.
16166 * Makefile.am (maintainer-check): New.
16167
16168 2002-10-13 Akim Demaille <akim@epita.fr>
16169
16170 * data/glr.c: Formatting changes.
16171 Tweak some trace messages to match yacc.c's.
16172
16173 2002-10-13 Akim Demaille <akim@epita.fr>
16174
16175 GLR parsers sometimes raise parse errors instead of performing the
16176 default reduction.
16177 Reported by Charles-Henry de Boysson.
16178
16179 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
16180 check the length of the traces when %glr.
16181 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
16182 GLR's traces.
16183 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
16184 Test GLR parsers.
16185 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
16186 (yyltype): Remove the yy prefix from the member names.
16187 (yytable): Complete its comment.
16188 (yygetLRActions): Map error action number from YYTABLE from
16189 YYTABLE_NINF to 0.
16190 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
16191 (which was a bug: it should have been YYTABEL_NINF, and yet it was
16192 not satisfying as we could compare an YYACTION computed from
16193 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
16194 only value for error actions.
16195 (yyreportParseError): In verbose parse error messages, don't issue
16196 `error' in the list of expected tokens.
16197 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
16198 next action to perform to match glr.c's decoding.
16199 (yytable): Complete its comment.
16200
16201 2002-10-13 Paul Eggert <eggert@twinsun.com>
16202
16203 Fix problem reported by Henrik Grubbstroem in
16204 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
16205 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
16206 because the Bison parser reads the second action before reducing
16207 the first one.
16208 * src/scan-gram.l (rule_length): New static var.
16209 Use it to keep track of the rule length in the scanner, since
16210 we can't expect the parser to be in lock-step sync with the scanner.
16211 (handle_action_dollar, handle_action_at): Use this var.
16212 * tests/actions.at (Exotic Dollars): Test for the problem.
16213
16214 2002-10-12 Paul Eggert <eggert@twinsun.com>
16215
16216 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
16217 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
16218 Include <sys/time.h> when checking for clock_t and struct tms.
16219 Use same include order as source.
16220 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
16221 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
16222
16223 * lib/timevar.c: Update copyright date and clarify comments.
16224 (get_time) [IN_GCC]: Keep the GCC version for reference.
16225
16226 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
16227 GCC version as of today, then merge Bison's changes.
16228 Change "GCC" to "Bison" in copyright notice. timevar.def's
16229 author is Akim, so change that too.
16230
16231 * src/reader.c (grammar_current_rule_check):
16232 Don't worry about the default action if $$ is untyped.
16233 Prevents bogus warnings reported by Jim Gifford in
16234 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
16235
16236 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
16237 * data/glr.c, data/lalr1.cc, data/yacc.c:
16238 Output token definitions before the first part of user declarations.
16239 Fixes compatibility problem reported by Jim Gifford for kbd in
16240 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
16241
16242 2002-10-11 Paul Eggert <eggert@twinsun.com>
16243
16244 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
16245 (yyparse): here. This undoes some of the 2002-07-25 change.
16246 Compatibility problem reported by Ralf S. Engelschall with
16247 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
16248
16249 2002-10-11 Akim Demaille <akim@epita.fr>
16250
16251 * tests/regression.at Characters Escapes): New.
16252 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
16253 characters.
16254 Reported by Jan Nieuwenhuizen.
16255
16256 2002-10-11 Akim Demaille <akim@epita.fr>
16257
16258 * po/id.po: New.
16259
16260 2002-10-10 Paul Eggert <eggert@twinsun.com>
16261
16262 Portability fixes for bitsets; this also avoids several GCC
16263 warnings.
16264
16265 * lib/abitset.c: Include <stddef.h>, for offsetof.
16266 * lib/lbitset.c: Likewise.
16267
16268 * lib/abitset.c (abitset_bytes): Return a size that is aligned
16269 properly for vectors of objects. Do not assume that adding a
16270 header size to a multiple of a word size yields a value that is
16271 properly aligned for the whole union.
16272 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16273
16274 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
16275 unique names for structures.
16276 * lib/ebitset.c (ebitset_bytes): Likewise.
16277 * lib/lbitset.c (lbitset_bytes): Likewise.
16278
16279 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
16280 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
16281 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
16282 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
16283 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
16284 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
16285 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
16286 to improve the type-checking that GCC can do.
16287 * lib/bitset.c (bitset_op4_cmp): Likewise.
16288 * lib/bitset_stats.c (bitset_stats_count,
16289 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
16290 bitset_stats_copy, bitset_stats_disjoint_p,
16291 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
16292 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
16293 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
16294 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
16295 bitset_stats_and_or_cmp, bitset_stats_andn_or,
16296 bitset_stats_andn_or_cmp, bitset_stats_or_and,
16297 bitset_stats_or_and_cmp): Likewise.
16298 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
16299 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
16300 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
16301 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
16302
16303 * lib/abitset.h: Include bitset.h, not bbitset.h.
16304 * lib/ebitset.h: Likewise.
16305 * lib/lbitset.h: Likewise.
16306
16307 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
16308 All instances of parameters of type enum bitset_opts are now of
16309 type enum_bitset_opts, to conform to the C Standard, and similarly
16310 for enum_bitset_type.
16311 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16312 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16313
16314 Do not use "struct bitset_struct" to mean different things in
16315 different modules. Not only is this confusing, it violates
16316 the C Standard, which requires that structure types in different
16317 modules must be compatible if one is to be passed to the other.
16318 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
16319 All instances of "struct bitset_struct *" replaced with "bitset".
16320 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
16321 (union bitset_union, struct abitset_struct, struct ebitset_struct,
16322 struct lbitset_struct, struct bitset_stats_struct): New types.
16323 All uses of struct bitset_struct changed to union bitset_union,
16324 etc.
16325 * lib/abitset.c (struct abitset_struct, abitset,
16326 struct bitset_struct): Remove.
16327 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
16328 struct bitset_struct): Remove.
16329 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
16330 bitset_struct): Remove.
16331 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
16332 Likewise.
16333
16334 Do not call a function of type T using a call that assumes the
16335 function is of a different type U. Standard C requires that a
16336 function must be called with a type that is compatible with its
16337 definition.
16338 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16339 New decls.
16340 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16341 New functions.
16342 * lib/ebitset.c (PFV): Remove.
16343 * lib/lbitset.c (PFV): Likewise.
16344 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
16345 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
16346 decls.
16347 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
16348 (ebitset_vtable): Use them.
16349 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
16350 lbitset_xor): New functions.
16351 (lbitset_vtable): Use them.
16352
16353 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
16354 Declare.
16355
16356 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
16357 GCC warning.
16358 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
16359 Use offsetof, for simplicity.
16360
16361 2002-10-06 Paul Eggert <eggert@twinsun.com>
16362
16363 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
16364 the same width as int. This reapplies a hunk of the 2002-08-12 patch
16365 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
16366 which was inadvertently undone by the 2002-09-30 patch.
16367 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
16368 the same width as int.
16369
16370 2002-10-04 Paul Eggert <eggert@twinsun.com>
16371
16372 Version 1.50.
16373
16374 * configure.ac (AC_INIT), NEWS: Increment version number.
16375
16376 * doc/bison.texinfo: Minor spelling, grammar, and white space
16377 fixes.
16378 (Symbols): Mention that any negative value returned from yylex
16379 signifies end-of-input. Warn about negative chars. Mention
16380 the portable Standard C character set.
16381
16382 The GNU coding standard says CFLAGS and YFLAGS are reserved
16383 for the installer to set.
16384 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
16385 * src/Makefile.am (AM_CFLAGS): Likewise.
16386 (AM_YFLAGS): Renamed from YFLAGS.
16387
16388 Fix some MAX and MIN problems.
16389 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
16390 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
16391 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
16392 * src/reader.c (reader): Use it.
16393
16394 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
16395 POSIX 1003.1-2001 has removed fgrep.
16396
16397 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
16398
16399 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
16400 interpreted as signed.
16401 * lib/ebitset.c (ebitset_list): Fix bug.
16402
16403 2002-10-01 Paul Eggert <eggert@twinsun.com>
16404
16405 More fixes for 64-bit hosts and large bitsets.
16406
16407 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
16408 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
16409 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
16410 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
16411 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
16412 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
16413 bitset_count_): Likewise.
16414 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
16415 bitset_first, bitset_last): Likewise.
16416 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
16417 bitset_stats_list_reverse, bitset_stats_size,
16418 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
16419 Likewise.
16420 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16421 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16422 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16423 bitsetv_reflexive_transitive_closure): Likewise.
16424 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
16425 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
16426 Likewise.
16427 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
16428 Likewise.
16429
16430 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
16431 Use size_t, not unsigned int, to count bytes.
16432 * lib/abitset.h (abitset_bytes): Likewise.
16433 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
16434 Likewise.
16435 * lib/bitset.h (bitset_bytes): Likewise.
16436 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
16437 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
16438 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16439 * lib/ebitset.c (ebitset_bytes): Likewise.
16440 * lib/ebitset.h (ebitset_bytes): Likewise.
16441 * lib/lbitset.c (lbitset_bytes): Likewise.
16442 * lib/lbitset.h (lbitset_bytes): Likewise.
16443
16444 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
16445 abitset_subset_p, abitset_disjoint_p, abitset_and,
16446 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
16447 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
16448 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
16449 abitset_or_and, abitset_or_and_cmp):
16450 Use bitset_windex instead of unsigned int.
16451 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16452 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
16453 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
16454 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
16455 Likewise.
16456 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
16457
16458 * lib/bitset.c (bitset_print):
16459 Use proper printf formats for widths of integer types.
16460 * lib/bitset_stats.c (bitset_percent_histogram_print,
16461 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
16462 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16463 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16464 * lib/lbitset.c (lbitset_bytes): Likewise.
16465
16466 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
16467 BITSET_SIZE_MAX): New macros.
16468 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
16469 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
16470 to BITSET_WINDEX_MAX.
16471
16472 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
16473 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
16474 since we now return the bitset_bindex type (not int).
16475
16476 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
16477 when computing sizes.
16478 * lib/ebitset.c (ebitset_elts_grow): Likewise.
16479
16480 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
16481 and avoid cast to unsigned.
16482
16483 2002-09-30 Akim Demaille <akim@epita.fr>
16484
16485 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
16486 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
16487 Updates from Michael Hayes.
16488
16489 2002-09-30 Art Haas <ahaas@neosoft.com>
16490
16491 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
16492 invocations.
16493 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
16494 defined.
16495
16496 2002-09-27 Akim Demaille <akim@epita.fr>
16497
16498 Version 1.49c.
16499
16500 2002-09-27 Akim Demaille <akim@epita.fr>
16501
16502 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
16503 (Because of AC_LIBSOURCE).
16504
16505 2002-09-27 Akim Demaille <akim@epita.fr>
16506
16507 Playing with Autoscan.
16508
16509 * configure.ac: Remove the old LIBOBJ tweaks.
16510 (AC_REPLACE_FUNCS): Add strrchr and strtol.
16511 * lib/strrchr.c: New.
16512 * lib/strtol.c: New, from the Coreutils 4.5.1.
16513
16514 2002-09-27 Akim Demaille <akim@epita.fr>
16515
16516 Playing with Autoscan.
16517
16518 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
16519 * lib/Makefile.am (libbison_a_SOURCES): No longer include
16520 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
16521 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
16522 Coreutils 4.5.1.
16523
16524 2002-09-24 Akim Demaille <akim@epita.fr>
16525
16526 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
16527 (Frequently Asked Questions, Parser Stack Overflow): New.
16528
16529 2002-09-13 Akim Demaille <akim@epita.fr>
16530
16531 Playing with autoscan.
16532
16533 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
16534 * src/files.c (skeleton_find): Remove, unused.
16535 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
16536 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
16537
16538 2002-09-13 Akim Demaille <akim@epita.fr>
16539
16540 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
16541 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
16542
16543 2002-09-13 Akim Demaille <akim@epita.fr>
16544
16545 * configure.ac: Require 2.54.
16546 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
16547 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
16548 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
16549 Remove, provided by Autoconf macros.
16550
16551 2002-09-12 Akim Demaille <akim@epita.fr>
16552
16553 * m4/prereq.m4: Update, from Coreutils 4.5.1.
16554
16555 2002-09-12 Akim Demaille <akim@epita.fr>
16556
16557 * m4/prereq.m4: Update, from Fileutils 4.1.5.
16558 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
16559 Reported by Martin Mokrejs.
16560
16561 2002-09-10 Akim Demaille <akim@epita.fr>
16562
16563 * src/parse-gram.y: Associate a human readable string to each
16564 token type.
16565 * tests/regression.at (Invalid inputs): Adjust.
16566
16567 2002-09-10 Gary V. Vaughan <gary@gnu.org>
16568
16569 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
16570 with an Autoconf-2.5x style configure.ac.
16571
16572 2002-09-06 Paul Eggert <eggert@twinsun.com>
16573
16574 * doc/bison.texinfo (Conditions): Make explicit that the GPL
16575 exception applies only to yacc.c. This is a modification of a
16576 patch originally suggested by Akim Demaille.
16577
16578 2002-09-06 Akim Demaille <akim@epita.fr>
16579
16580 * data/c.m4 (b4_copyright): Move the GPL exception comment from
16581 here to...
16582 * data/yacc.c: here.
16583
16584 * data/lalr1.cc (struct yyltype): Don't define it, since we use
16585 LocationType.
16586 (b4_ltype): Default to yy::Location from location.hh.
16587
16588 2002-09-04 Jim Meyering <jim@meyering.net>
16589
16590 * data/yacc.c: Guard the declaration of yytoknum also with
16591 `#ifdef YYPRINT', so it is declared only when used.
16592
16593 2002-09-04 Akim Demaille <akim@epita.fr>
16594
16595 * configure.in: Rename as...
16596 * configure.ac: this.
16597 Bump to 1.49c.
16598
16599 2002-09-04 Akim Demaille <akim@epita.fr>
16600
16601 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
16602 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
16603 translate maintainer only messages.
16604
16605 2002-08-12 Paul Eggert <eggert@twinsun.com>
16606
16607 Version 1.49b.
16608
16609 * Makefile.am (SUBDIRS): Remove intl.
16610 (DISTCLEANFILES): Remove.
16611 * NEWS: Mention that GNU M4 is now required. Clarify what is
16612 meant by "larger grammars". Mention the pt_BR translation.
16613 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
16614 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
16615 Bump version from 0.11.2 to 0.11.5.
16616 (BISON_PREREQ_STAGE): Remove.
16617 (AM_GNU_GETTEXT): Use external gettext.
16618 (AC_OUTPUT): Remove intl/Makefile.
16619
16620 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
16621
16622 * data/glr.c: Include string.h, for strlen.
16623 (yyreportParseError): Use size_t for yysize.
16624 (yy_yypstack): No longer nested inside yypstates, as nested
16625 functions are not portable. Do not assume size_t is the
16626 same width as int.
16627 (yypstates): Do not assume that ptrdiff_t is the same width
16628 as int, and similarly for yyposn and YYINDEX.
16629
16630 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
16631
16632 * lib/Makefile.am (INCLUDES): Do not include from the intl
16633 directory, which has been removed.
16634 * src/Makefile.am (INCLUDES): Likewise.
16635
16636 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
16637 (bitsets_sources, additional_bitsets_sources, timevars_sources):
16638 New vars.
16639
16640 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
16641 * tests/Makefile.am (EXTRA_DIST): Likewise.
16642
16643 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
16644 Do not assume that bitset_windex is the same width as unsigned.
16645
16646 * lib/abitset.c (abitset_unused_clear): Do not assume that
16647 bitset_word is the same width as int.
16648 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
16649 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
16650 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
16651 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
16652 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
16653
16654 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
16655 portability to one's complement hosts!).
16656 * lib/ebitset.c (ebitset_op1): Likewise.
16657 * lib/lbitset.c (lbitset_op1): Likewise.
16658
16659 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
16660 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
16661 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
16662 Sync with fileutils.
16663 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
16664 lib/gettext.h: Sync with diffutils.
16665
16666 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
16667 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
16668
16669 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
16670 PROTOTYPES to check for prototypes, and "defined __STDC__" to
16671 check for void *.
16672
16673 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
16674 size_t; the old version tried to do this but casted improperly.
16675 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
16676 (bitset_test): Now returns int, not unsigned long.
16677
16678 * lib/bitset_stats.c: Include "gettext.h".
16679 (_): New macro.
16680 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
16681 name locals "index", as it generates unnecessary warnings on some
16682 hosts that have an "index" function.
16683
16684 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
16685 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
16686 they need translation.
16687 * src/LR0.c (state_list_append, new_itemsets, get_state,
16688 append_states, generate_states): Likewise.
16689 * src/assoc.c (assoc_to_string): Likewise.
16690 * src/closure.c (print_closure, set_firsts, closure): Likewise.
16691 * src/gram.c (grammar_dump): Likewise.
16692 * src/injections.c (injections_compute): Likewise.
16693 * src/lalr.c (lookaheads_print): Likewise.
16694 * src/relation.c (relation_transpose): Likewise.
16695 * src/scan-gram.l: Likewise.
16696 * src/tables.c (table_grow, pack_vector): Likewise.
16697
16698 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
16699 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
16700 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
16701 * m4/mbstate_t.m4: Sync with fileutils.
16702 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
16703
16704 * po/LINGUAS: Add pt_BR.
16705 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
16706 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
16707 lib/timevar.c.
16708 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
16709 manual recommends.
16710 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
16711
16712 * src/complain.c (strerror_r): Remove decl; not needed.
16713 (strerror): Use same pattern as ../lib/error.c.
16714
16715 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
16716
16717 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
16718
16719 * src/main.c (main): Cast result of bindtextdomain and textdomain
16720 to void, to avoid a GCC warning when --disable-nls is in effect.
16721
16722 * src/scan-gram.l: Use strings rather than escapes when possible,
16723 to minimize the number of warnings from xgettext.
16724 (handle_action_dollar, handle_action_at): Don't use isdigit,
16725 as it mishandles negative chars and it may not work as expected
16726 outside the C locale.
16727
16728 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
16729 this is a GCC extension and is not portable to other compilers.
16730
16731 * src/system.h (alloca): Use same pattern as ../lib/error.c.
16732 Do not include <ctype.h>; no longer needed.
16733 Do not include <malloc.h>; no longer needed (and generates
16734 warnings on OpenBSD 3.0).
16735
16736 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
16737 it's not portable.
16738
16739 * tests/regression.at: Do not use 'cc -c input.c -o input';
16740 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
16741
16742 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
16743 exit status as failure, not just exit status 1. Sun C exits
16744 with status 2 sometimes.
16745
16746 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
16747 Use it for the two large tests.
16748
16749 2002-08-02 Akim Demaille <akim@epita.fr>
16750
16751 * src/conflicts.c (conflicts_output): Don't output rules never
16752 reduced here, since anyway that computation doesn't work.
16753 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
16754 (rule_useless_p, rule_never_reduced_p): New.
16755 (grammar_rules_partial_print): Use a filter instead of a range.
16756 Display the title only if needed.
16757 (grammar_rules_print): Adjust.
16758 (grammar_rules_never_reduced_report): New.
16759 * src/tables.c (action_row): Move the computation of rules never
16760 reduced to...
16761 (token_actions): here.
16762 * src/main.c (main): Make the parser before making the report, so
16763 that rules never reduced are computed.
16764 Call grammar_rules_never_reduced_report.
16765 * src/print.c (print_results): Report rules never reduced.
16766 * tests/conflicts.at, tests/reduce.at: Adjust.
16767
16768 2002-08-01 Akim Demaille <akim@epita.fr>
16769
16770 Instead of attaching lookaheads and duplicating the rules being
16771 reduced by a state, attach the lookaheads to the reductions.
16772
16773 * src/state.h (state_t): Remove the `lookaheads',
16774 `lookaheads_rule' member.
16775 (reductions_t): Add a `lookaheads' member.
16776 Use a regular array for the `rules'.
16777 * src/state.c (reductions_new): Initialize the lookaheads member
16778 to 0.
16779 (state_rule_lookaheads_print): Adjust.
16780 * src/state.h, src/state.c (state_reductions_find): New.
16781 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
16782 (count_rr_conflicts): Adjust.
16783 * src/lalr.c (LArule): Remove.
16784 (add_lookback_edge): Adjust.
16785 (state_lookaheads_count): New.
16786 (states_lookaheads_initialize): Merge into...
16787 (initialize_LA): this.
16788 (lalr_free): Adjust.
16789 * src/main.c (main): Don't free nullable and derives too early: it
16790 is used by --verbose.
16791 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
16792
16793 2002-08-01 Akim Demaille <akim@epita.fr>
16794
16795 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
16796 `rule_number_t**'.
16797 (set_derives, free_derives): Rename as...
16798 (derives_compute, derives_free): this.
16799 Adjust all dependencies.
16800 * src/nullable.c (set_nullable, free_nullable): Rename as...
16801 (nullable_compute, nullable_free): these.
16802 (rule_list_t): Store rule_t *, not rule_number_t.
16803 * src/state.c (state_rule_lookaheads_print): Directly compare rule
16804 pointers, instead of their numbers.
16805 * src/main.c (main): Call nullable_free, and derives_free earlier,
16806 as they were lo longer used.
16807
16808 2002-08-01 Akim Demaille <akim@epita.fr>
16809
16810 * lib/timevar.c (get_time): Include children time.
16811 * src/lalr.h (LA, LArule): Don't export them: used with the
16812 state_t.
16813 * src/lalr.c (LA, LArule): Static.
16814 * src/lalr.h, src/lalr.c (lalr_free): New.
16815 * src/main.c (main): Call it.
16816 * src/tables.c (pack_vector): Check whether loc is >= to the
16817 table_size, not >.
16818 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
16819 (tables_generate): do it, since that's also it which allocates
16820 them.
16821 Don't free LA and LArule, main does.
16822
16823 2002-07-31 Akim Demaille <akim@epita.fr>
16824
16825 Separate parser tables computation and output.
16826
16827 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
16828 (conflict_list, conflict_list_cnt, table, check, table_ninf)
16829 (yydefgoto, yydefact, high): Move to...
16830 * src/tables.h, src/tables.c: here.
16831 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
16832 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
16833 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
16834 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
16835 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
16836 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
16837 (action_row, save_row, token_actions, save_column, default_goto)
16838 (goto_actions, sort_actions, matching_state, pack_vector)
16839 (table_ninf_remap, pack_table, prepare_actions): Move to...
16840 * src/tables.c: here.
16841 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
16842 * src/output.c (token_actions, output_base, output_conflicts)
16843 (output_check): Merge into...
16844 (prepare_actions): this.
16845 (actions_output): Rename as...
16846 (user_actions_output): this.
16847 * src/main.c (main): Call tables_generate and tables_free.
16848
16849 2002-07-31 Akim Demaille <akim@epita.fr>
16850
16851 Steal GCC's --time-report support.
16852
16853 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
16854 stolen/adjusted from GCC.
16855 * m4/stage.m4: Remove time related checks.
16856 * m4/timevar.m4: New.
16857 * configure.in: Adjust.
16858 * src/system.h: Adjust to using timevar.h.
16859 * src/getargs.h, src/getargs.c: Support trace_time for
16860 --trace=time.
16861 * src/main.c (stage): Remove.
16862 (main): Replace `stage' invocations with timevar calls.
16863 * src/output.c: Insert pertinent timevar calls.
16864
16865 2002-07-31 Akim Demaille <akim@epita.fr>
16866
16867 Let --trace have arguments.
16868
16869 * src/getargs.h (enum trace_e): New.
16870 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
16871 (long_options, short_options): --trace/-T takes an optional
16872 argument.
16873 Change all the uses of trace_flag to reflect the new flags.
16874 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
16875
16876 Strengthen `stage' portability.
16877
16878 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
16879 * configure.in: Use it.
16880 Don't check for malloc.h and sys/times.h.
16881 * src/system.h: Include them when appropriate.
16882 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
16883 times and struct tms are available.
16884
16885 2002-07-30 Akim Demaille <akim@epita.fr>
16886
16887 In verbose parse error message, don't report `error' as an
16888 expected token.
16889 * tests/actions.at (Printers and Destructors): Adjust.
16890 * tests/calc.at (Calculator $1): Adjust.
16891 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
16892 error message, do not report the parser accepts the error token in
16893 that state.
16894
16895 2002-07-30 Akim Demaille <akim@epita.fr>
16896
16897 Normalize conflict related messages.
16898
16899 * src/complain.h, src/complain.c (warn, complain): New.
16900 * src/conflicts.c (conflicts_print): Use them.
16901 (conflict_report_yacc): New, extracted from...
16902 (conflicts_print): here.
16903 * tests/conflicts.at, tests/existing.at: Adjust.
16904
16905 2002-07-30 Akim Demaille <akim@epita.fr>
16906
16907 Report rules which are never reduced by the parser: those hidden
16908 by conflicts.
16909
16910 * src/LR0.c (save_reductions): Don't make the final state too
16911 different: save its reduction (accept) instead of having a state
16912 without any action (no shift or goto, no reduce).
16913 Note: the final state is now a ``regular'' state, i.e., the
16914 parsers now contain `reduce 0' as default reduction.
16915 Nevertheless, since they decide to `accept' when yystate =
16916 final_state, they still will not reduce rule 0.
16917 * src/print.c (print_actions, print_reduction): Adjust.
16918 * src/output.c (action_row): Track reduced rules.
16919 (token_actions): Report rules never reduced.
16920 * tests/conflicts.at, tests/regression.at: Adjust.
16921
16922 2002-07-30 Akim Demaille <akim@epita.fr>
16923
16924 `stage' was accidently included in a previous patch.
16925 Initiate its autoconfiscation.
16926
16927 * configure.in: Look for malloc.h and sys/times.h.
16928 * src/main.c (stage): Adjust.
16929 Report only when trace_flag.
16930
16931 2002-07-29 Akim Demaille <akim@epita.fr>
16932
16933 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
16934 state_number_t.
16935 (errs_t): symbol_t*, not symbol_number_t.
16936 (reductions_t): rule_t*, not rule_number_t.
16937 (FOR_EACH_SHIFT): New.
16938 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
16939 * src/print.c, src/print_graph.c: Adjust.
16940
16941 2002-07-29 Akim Demaille <akim@epita.fr>
16942
16943 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
16944
16945 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
16946 (endtoken, accept): these.
16947 * src/reader.c (reader): Set endtoken's default tag to "$end".
16948 Set undeftoken's tag to "$undefined" instead of "$undefined.".
16949 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
16950 Adjust.
16951
16952 2002-07-29 Akim Demaille <akim@epita.fr>
16953
16954 * src/reduce.c (reduce_grammar): When the language is empty,
16955 complain about the start symbol, not the axiom.
16956 Use its location.
16957 * tests/reduce.at (Empty Language): New.
16958
16959 2002-07-26 Akim Demaille <akim@epita.fr>
16960
16961 * src/reader.h, src/reader.c (gram_error): ... can't get
16962 yycontrol without making too strong assumptions on the parser
16963 itself.
16964 * src/output.c (prepare_tokens): Use the real 0th value of
16965 token_translations instead of `0'.
16966 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
16967 visible here.
16968 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
16969 for the time being: %locations ought to provide it to yyerror.
16970
16971 2002-07-25 Akim Demaille <akim@epita.fr>
16972
16973 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
16974 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
16975 * tests/regression.at (Web2c Actions): Adjust.
16976
16977 2002-07-25 Akim Demaille <akim@epita.fr>
16978
16979 Stop storing rules from 1 to nrules + 1.
16980
16981 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
16982 * src/nullable.c, src/output.c, src/print.c, src/reader.c
16983 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
16984 Iterate from 0 to nrules.
16985 Use rule_number_as_item_number and item_number_as_rule_number.
16986 Adjust to `derive' now containing possibly 0.
16987 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
16988 Handle the `- 1' part in rule numbers from/to item numbers.
16989 * src/conflicts.c (log_resolution): Fix the message which reversed
16990 shift and reduce.
16991 * src/output.c (action_row): Initialize default_rule to -1.
16992 (token_actions): Adjust.
16993 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
16994 expected output.
16995 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
16996
16997 2002-07-25 Akim Demaille <akim@epita.fr>
16998
16999 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
17000 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
17001 (b4_c_knr_arg_decl): New.
17002 * data/yacc.c: Use it to define yysymprint, yydestruct, and
17003 yyreport_parse_error.
17004
17005 2002-07-25 Akim Demaille <akim@epita.fr>
17006
17007 * data/yacc.c (yyreport_parse_error): New, extracted from...
17008 (yyparse): here.
17009 (yydestruct, yysymprint): Move above yyparse.
17010 Be K&R compliant.
17011
17012 2002-07-25 Akim Demaille <akim@epita.fr>
17013
17014 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
17015 replace...
17016 (b4_sint_type, b4_uint_type): these.
17017 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
17018 * tests/regression.at (Web2c Actions): Adjust.
17019
17020 2002-07-25 Akim Demaille <akim@epita.fr>
17021
17022 * src/gram.h (TIEM_NUMBER_MAX): New.
17023 (item_number_of_rule_number, rule_number_of_item_number): Rename
17024 as...
17025 (rule_number_as_item_number, item_number_as_rule_number): these.
17026 Adjust dependencies.
17027 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17028 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17029 (symbol_number_to_vector_number): New.
17030 (order): Of vector_number_t* type.
17031 (base_t, BASE_MAX, BASE_MIN): New.
17032 (froms, tos, width, pos, check): Of base_t type.
17033 (action_number_t, ACTION_MIN, ACTION_MAX): New.
17034 (actrow): Of action_number_t type.
17035 (conflrow): Of unsigned int type.
17036 (table_ninf, base_ninf): New.
17037 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
17038 (muscle_insert_int_table, muscle_insert_base_table)
17039 (muscle_insert_rule_number_table): New.
17040 (prepare_tokens): Output `toknum' as int_table.
17041 (action_row): Returns a rule_number_t.
17042 Use ACTION_MIN, not SHRT_MIN.
17043 (token_actions): yydefact is rule_number_t*.
17044 (table_ninf_remap): New.
17045 (pack_table): Use it for `base' and `table'.
17046 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
17047 replaced with...
17048 (YYPACT_NINF, YYTABLE_NINF): these.
17049 (yypact, yytable): Compute their types instead of hard-coded
17050 `short'.
17051 * tests/regression.at (Web2c Actions): Adjust.
17052
17053 2002-07-19 Akim Demaille <akim@epita.fr>
17054
17055 * src/scan-gram.l (id): Can start with an underscore.
17056
17057 2002-07-16 Akim Demaille <akim@epita.fr>
17058
17059 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
17060 Adjust all former `associativity' dependencies.
17061 * src/symtab.c (symbol_new): Default associativity is `undef', not
17062 `right'.
17063 (symbol_check_alias_consistence): Adjust.
17064
17065 2002-07-09 Akim Demaille <akim@epita.fr>
17066
17067 * doc/bison.texinfo: Properly set the ``header'' part.
17068 Use @dircategory ``GNU programming tools'' as per Texinfo's
17069 documentation.
17070 Use @copying.
17071
17072 2002-07-09 Akim Demaille <akim@epita.fr>
17073
17074 * lib/quotearg.h: Protect against multiple inclusions.
17075 * src/location.h (location_t): Add a `file' member.
17076 (LOCATION_RESET, LOCATION_PRINT): Adjust.
17077 * src/complain.c (warn_at, complain_at, fatal_at): Drop
17078 `error_one_per_line' support.
17079
17080 2002-07-09 Akim Demaille <akim@epita.fr>
17081
17082 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
17083 * src/reader.c (lineno): Remove.
17084 Adjust all dependencies.
17085 (get_merge_function): Take a location and use complain_at.
17086 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
17087 * tests/regression.at (Invalid inputs, Mixing %token styles):
17088 Adjust.
17089
17090 2002-07-09 Akim Demaille <akim@epita.fr>
17091
17092 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
17093 recovery rule, and forbid extensions when --yacc.
17094 (gram_error): Use complain_at.
17095 * src/reader.c (reader): Exit if there were parse errors.
17096
17097 2002-07-09 Akim Demaille <akim@epita.fr>
17098
17099 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
17100 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
17101 Reported by R Blake <blakers@mac.com>.
17102
17103 2002-07-09 Akim Demaille <akim@epita.fr>
17104
17105 * data/yacc.c: Output the copyright notive in the header.
17106
17107 2002-07-03 Akim Demaille <akim@epita.fr>
17108
17109 * src/output.c (froms, tos): Are state_number_t.
17110 (save_column): sp, sp1, and sp2 are state_number_t.
17111 (prepare): Rename `final' as `final_state_number', `nnts' as
17112 `nterms_number', `nrules' as `rules_number', `nstates' as
17113 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
17114 unused.
17115 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
17116 * data/lalr1.cc (nsym_): Remove, unused.
17117
17118 2002-07-03 Akim Demaille <akim@epita.fr>
17119
17120 * src/lalr.h, src/lalr.c (goto_number_t): New.
17121 * src/lalr.c (goto_list_t): New.
17122 Propagate them.
17123 * src/nullable.c (rule_list_t): New.
17124 Propagate.
17125 * src/types.h: Remove.
17126
17127 2002-07-03 Akim Demaille <akim@epita.fr>
17128
17129 * src/closure.c (print_fderives): Use rule_rhs_print.
17130 * src/derives.c (print_derives): Use rule_rhs_print.
17131 (rule_list_t): New, replaces `shorts'.
17132 (set_derives): Add comments.
17133 * tests/sets.at (Nullable, Firsts): Adjust.
17134
17135 2002-07-03 Akim Demaille <akim@epita.fr>
17136
17137 * src/output.c (prepare_actions): Free `tally' and `width'.
17138 (prepare_actions): Allocate and free `order'.
17139 * src/symtab.c (symbols_free): Free `symbols'.
17140 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
17141 * src/output.c (m4_invoke): Move to...
17142 * src/scan-skel.l: here.
17143 (<<EOF>>): Close yyout, and free its name.
17144
17145 2002-07-03 Akim Demaille <akim@epita.fr>
17146
17147 Fix some memory leaks, and fix a bug: state 0 was examined twice.
17148
17149 * src/LR0.c (new_state): Merge into...
17150 (state_list_append): this.
17151 (new_states): Merge into...
17152 (generate_states): here.
17153 (set_states): Don't ensure a proper `errs' state member here, do it...
17154 * src/conflicts.c (conflicts_solve): here.
17155 * src/state.h, src/state.c: Comment changes.
17156 (state_t): Rename member `shifts' as `transitions'.
17157 Adjust all dependencies.
17158 (errs_new): For consistency, also take the values as argument.
17159 (errs_dup): Remove.
17160 (state_errs_set): New.
17161 (state_reductions_set, state_transitions_set): Assert that no
17162 previous value was assigned.
17163 (state_free): New.
17164 (states_free): Use it.
17165 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
17166 temporary storage: use `errs' and `nerrs' as elsewhere.
17167 (set_conflicts): Allocate and free this `errs'.
17168
17169 2002-07-02 Akim Demaille <akim@epita.fr>
17170
17171 * lib/libiberty.h: New.
17172 * lib: Update the bitset implementation from upstream.
17173 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
17174 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
17175 * src/main.c: Adjust bitset stats calls.
17176
17177 2002-07-01 Paul Eggert <eggert@twinsun.com>
17178
17179 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
17180 char, so that negative chars don't collide with $.
17181
17182 2002-06-30 Akim Demaille <akim@epita.fr>
17183
17184 Have the GLR tests be `warning' checked, and fix the warnings.
17185
17186 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
17187 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
17188 (yyremoveDeletes): `yyi' and `yyj' are size_t.
17189 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
17190 (yyaddDeferredAction): static.
17191 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
17192 (yyreportParseError): yyprefix is const.
17193 yytokenp is used only when verbose.
17194 (yy__GNUC__): Replace with __GNUC__.
17195 (yypdumpstack): yyi is size_t.
17196 (yypreference): Un-yy local variables and arguments, to avoid
17197 clashes with `yyr1'. Anyway, we are not in the user name space.
17198 (yytname_size): be an int, as is compared with ints.
17199 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
17200 Use them.
17201 * tests/cxx-gram.at: Use quotation to protect $1.
17202 Use AT_COMPILE to enable warnings hunts.
17203 Prototype yylex and yyerror.
17204 `Use' argc.
17205 Include `string.h', not `strings.h'.
17206 Produce and prototype stmtMerge only when used.
17207 yylex takes a location.
17208
17209 2002-06-30 Akim Demaille <akim@epita.fr>
17210
17211 We spend a lot of time in quotearg, in particular when --verbose.
17212
17213 * src/symtab.c (symbol_get): Store a quoted version of the key.
17214 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
17215 Adjust all callers.
17216
17217 2002-06-30 Akim Demaille <akim@epita.fr>
17218
17219 * src/state.h (reductions_t): Rename member `nreds' as num.
17220 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
17221 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
17222
17223 2002-06-30 Akim Demaille <akim@epita.fr>
17224
17225 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
17226 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
17227 (shifts_to): Rename as...
17228 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
17229 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
17230 (TRANSITION_IS_DISABLED, transitions_to): these.
17231
17232 2002-06-30 Akim Demaille <akim@epita.fr>
17233
17234 * src/print.c (print_shifts, print_gotos): Merge into...
17235 (print_transitions): this.
17236 (print_transitions, print_errs, print_reductions): Align the
17237 lookaheads columns.
17238 (print_core, print_transitions, print_errs, print_state,
17239 print_grammar): Output empty lines separator before, not after.
17240 (state_default_rule_compute): Rename as...
17241 (state_default_rule): this.
17242 * tests/conflicts.at (Defaulted Conflicted Reduction),
17243 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
17244 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
17245
17246 2002-06-30 Akim Demaille <akim@epita.fr>
17247
17248 Display items as we display rules.
17249
17250 * src/gram.h, src/gram.c (rule_lhs_print): New.
17251 * src/gram.c (grammar_rules_partial_print): Use it.
17252 * src/print.c (print_core): Likewise.
17253 * tests/conflicts.at (Defaulted Conflicted Reduction),
17254 (Unresolved SR Conflicts): Adjust.
17255 (Unresolved SR Conflicts): Adjust and rename as...
17256 (Resolved SR Conflicts): this, as was meant.
17257 * tests/regression.at (Web2c Report): Adjust.
17258
17259 2002-06-30 Akim Demaille <akim@epita.fr>
17260
17261 * src/print.c (state_default_rule_compute): New, extracted from...
17262 (print_reductions): here.
17263 Pessimize, but clarify the code.
17264 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
17265
17266 2002-06-30 Akim Demaille <akim@epita.fr>
17267
17268 * src/output.c (action_row): Let default_rule be always a rule
17269 number.
17270
17271 2002-06-30 Akim Demaille <akim@epita.fr>
17272
17273 * src/closure.c (print_firsts, print_fderives, closure):
17274 Use BITSET_EXECUTE.
17275 * src/lalr.c (lookaheads_print): Likewise.
17276 * src/state.c (state_rule_lookaheads_print): Likewise.
17277 * src/print_graph.c (print_core): Likewise.
17278 * src/print.c (print_reductions): Likewise.
17279 * src/output.c (action_row): Likewise.
17280 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
17281
17282 2002-06-30 Akim Demaille <akim@epita.fr>
17283
17284 * src/print_graph.c: Use report_flag.
17285
17286 2002-06-30 Akim Demaille <akim@epita.fr>
17287
17288 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
17289 to...
17290 * src/relation.h, src/relation.c (traverse, relation_digraph)
17291 (relation_print, relation_transpose): New.
17292
17293 2002-06-30 Akim Demaille <akim@epita.fr>
17294
17295 * src/state.h, src/state.c (shifts_to): New.
17296 * src/lalr.c (build_relations): Use it.
17297
17298 2002-06-30 Akim Demaille <akim@epita.fr>
17299
17300 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
17301 (item_number_of_rule_number, rule_number_of_item_number): New.
17302 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
17303 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
17304 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
17305 Propagate their use.
17306 Much remains to be done, in particular wrt `shorts' from types.h.
17307
17308 2002-06-30 Akim Demaille <akim@epita.fr>
17309
17310 * src/symtab.c (symbol_new): Initialize the `printer' member.
17311
17312 2002-06-30 Akim Demaille <akim@epita.fr>
17313
17314 * src/LR0.c (save_reductions): Remove, replaced by...
17315 * src/state.h, src/state.c (state_reductions_set): New.
17316 (reductions, errs): Rename as...
17317 (reductions_t, errs_t): these.
17318 Adjust all dependencies.
17319
17320 2002-06-30 Akim Demaille <akim@epita.fr>
17321
17322 * src/LR0.c (state_list_t, state_list_append): New.
17323 (first_state, last_state): Now symbol_list_t.
17324 (this_state): Remove.
17325 (new_itemsets, append_states, save_reductions): Take a state_t as
17326 argument.
17327 (set_states, generate_states): Adjust.
17328 (save_shifts): Remove, replaced by...
17329 * src/state.h, src/state.c (state_shifts_set): New.
17330 (shifts): Rename as...
17331 (shifts_t): this.
17332 Adjust all dependencies.
17333 * src/state.h (state_t): Remove the `next' member.
17334
17335 2002-06-30 Akim Demaille <akim@epita.fr>
17336
17337 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
17338 escaped in slot 0.
17339
17340 2002-06-30 Akim Demaille <akim@epita.fr>
17341
17342 Use hash.h for the state hash table.
17343
17344 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
17345 (allocate_storage): Use state_hash_new.
17346 (free_storage): Use state_hash_free.
17347 (new_state, get_state): Adjust.
17348 * src/lalr.h, src/lalr.c (states): Move to...
17349 * src/states.h (state_t): Remove the `link' member, no longer
17350 used.
17351 * src/states.h, src/states.c: here.
17352 (state_hash_new, state_hash_free, state_hash_lookup)
17353 (state_hash_insert, states_free): New.
17354 * src/states.c (state_table, state_compare, state_hash): New.
17355 * src/output.c (output_actions): Do not free states now, since we
17356 still need to know the final_state number in `prepare', called
17357 afterwards. Do it...
17358 * src/main.c (main): here: call states_free after `output'.
17359
17360 2002-06-30 Akim Demaille <akim@epita.fr>
17361
17362 * src/state.h, src/state.c (state_new): New, extracted from...
17363 * src/LR0.c (new_state): here.
17364 * src/state.h (STATE_ALLOC): Move to...
17365 * src/state.c: here.
17366 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
17367 * src/state.h, src/state.c: here.
17368
17369 2002-06-30 Akim Demaille <akim@epita.fr>
17370
17371 * src/reader.c (gensym): Rename as...
17372 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
17373 (getsym): Rename as...
17374 (symbol_get): this.
17375
17376 2002-06-30 Akim Demaille <akim@epita.fr>
17377
17378 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
17379 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
17380 * src/output.c, src/print.c, src/print_graph.c: Propagate.
17381 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
17382
17383 2002-06-30 Akim Demaille <akim@epita.fr>
17384
17385 Make the test suite pass with warnings checked.
17386
17387 * tests/actions.at (Printers and Destructors): Improve.
17388 Avoid unsigned vs. signed issues.
17389 * tests/calc.at: Don't exercise the scanner here, do it...
17390 * tests/input.at (Torturing the Scanner): here.
17391
17392 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17393
17394 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
17395 reorganize first lines parallel to yacc.c.
17396
17397 2002-06-28 Akim Demaille <akim@epita.fr>
17398
17399 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
17400 (b4_token_enum, b4_token_defines): New, factored from...
17401 * data/lalr1.cc, data/yacc.c, glr.c: here.
17402
17403 2002-06-28 Akim Demaille <akim@epita.fr>
17404
17405 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
17406 unused variables.
17407 * src/output.c (merger_output): static.
17408
17409 2002-06-28 Akim Demaille <akim@epita.fr>
17410
17411 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
17412 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
17413 pacify GCC.
17414 * src/output.c (save_row): Initialize all the variables to pacify GCC.
17415
17416 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17417
17418 Accumulated changelog for new GLR parsing features.
17419
17420 * src/conflicts.c (count_total_conflicts): Change name to
17421 conflicts_total_count.
17422 * src/conflicts.h: Ditto.
17423 * src/output.c (token_actions): Use the new name.
17424 (output_conflicts): Change conflp => conflict_list_heads, and
17425 confl => conflict_list for better readability.
17426 * data/glr.c: Use the new names.
17427 * NEWS: Add self to GLR announcement.
17428
17429 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
17430
17431 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
17432 Akim Demaille.
17433
17434 * data/bison.glr: Change name to glr.c
17435 * data/glr.c: Renamed from bison.glr.
17436 * data/Makefile.am: Add glr.c
17437
17438 * src/getargs.c:
17439
17440 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
17441 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
17442
17443 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17444
17445 * data/bison.glr: Be sure to restore the
17446 current #line when returning to the skeleton contents after having
17447 exposed the input file's #line.
17448
17449 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17450
17451 * data/bison.glr: Bring up to date with changes to bison.simple.
17452
17453 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17454
17455 * data/bison.glr: Correct definitions that use b4_prefix.
17456 Various reformatting.
17457 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
17458 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
17459 yytokenp argument; now part of stack.
17460 (yychar): Define to behave as documented.
17461 (yyclearin): Ditto.
17462
17463 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17464
17465 * src/reader.h: Add declaration for free_merger_functions.
17466
17467 * src/reader.c (merge_functions): New variable.
17468 (get_merge_function): New function.
17469 (free_merger_functions): New function.
17470 (readgram): Check for %prec that is not followed by a symbol.
17471 Handle %dprec and %merge declarations.
17472 (packgram): Initialize dprec and merger fields in rules array.
17473
17474 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
17475 conflict_list_cnt, conflict_list_free): New variables.
17476 (table_grow): Also grow conflict_table.
17477 (prepare_rules): Output dprec and merger tables.
17478 (conflict_row): New function.
17479 (action_row): Output conflict lists for GLR parser. Don't use
17480 default reduction in conflicted states for GLR parser so that there
17481 are spaces for the conflict lists.
17482 (save_row): Also save conflict information.
17483 (token_actions): Allocate conflict list.
17484 (merger_output): New function.
17485 (pack_vector): Pack conflict table, too.
17486 (output_conflicts): New function to output yyconflp and yyconfl.
17487 (output_check): Allocate conflict_tos.
17488 (output_actions): Output conflict tables, also.
17489 (output_skeleton): Output b4_mergers definition.
17490 (prepare): Output b4_max_rhs_length definition.
17491 Use 'bison.glr' as default skeleton for GLR parsers.
17492
17493 * src/gram.c (glr_parser): New flag.
17494 (grammar_free): Call free_merger_functions.
17495
17496 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
17497 all pairs of conflicting reductions, rather than just all tokens
17498 causing conflicts. Needed to size conflict tables.
17499 (conflicts_output): Modify call to count_rr_conflicts for new
17500 interface.
17501 (conflicts_print): Ditto.
17502 (count_total_conflicts): New function.
17503
17504 * src/reader.h (merger_list): New type.
17505 (merge_functions): New variable.
17506
17507 * src/lex.h (tok_dprec, tok_merge): New token types.
17508
17509 * src/gram.h (rule_s): Add dprec and merger fields.
17510 (glr_parser): New flag.
17511
17512 * src/conflicts.h (count_total_conflicts): New function.
17513
17514 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
17515
17516 * doc/bison.texinfo (Generalized LR Parsing): New section.
17517 (GLR Parsers): New section.
17518 (Language and Grammar): Mention GLR parsing.
17519 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
17520 Correct typo ("tge" -> "the").
17521
17522 * data/bison.glr: New skeleton for GLR parsing.
17523
17524 * tests/cxx-gram.at: New tests for GLR parsing.
17525
17526 * tests/testsuite.at: Include cxx-gram.at.
17527
17528 * tests/Makefile.am: Add cxx-gram.at.
17529
17530 * src/parse-gram.y:
17531
17532 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
17533
17534 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
17535
17536 2002-06-27 Akim Demaille <akim@epita.fr>
17537
17538 * src/options.h, src/options.c: Remove.
17539 * src/getargs.c (short_options, long_options): New.
17540
17541 2002-06-27 Akim Demaille <akim@epita.fr>
17542
17543 * data/bison.simple, data/bison.c++: Rename as...
17544 * data/yacc.c, data/lalr1.cc: these.
17545 * doc/bison.texinfo (Environment Variables): Remove.
17546
17547 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
17548
17549 * src/getargs.c (report_argmatch): Initialize strtok().
17550
17551 2002-06-20 Akim Demaille <akim@epita.fr>
17552
17553 * data/bison.simple (b4_symbol_actions): New, replaces...
17554 (b4_symbol_destructor, b4_symbol_printer): these.
17555 (yysymprint): Be sure to call YYPRINT only for tokens, and using
17556 user token numbers.
17557
17558 2002-06-20 Akim Demaille <akim@epita.fr>
17559
17560 * data/bison.simple (yydestructor): Rename as...
17561 (yydestruct): this.
17562
17563 2002-06-20 Akim Demaille <akim@epita.fr>
17564
17565 * src/symtab.h, src/symtab.c (symbol_type_set)
17566 (symbol_destructor_set, symbol_precedence_set): The location is
17567 the last argument.
17568 Adjust all callers.
17569
17570 2002-06-20 Akim Demaille <akim@epita.fr>
17571
17572 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
17573 internals.
17574 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
17575 Takes a location.
17576 * src/symtab.h, src/symtab.c (symbol_class_set)
17577 (symbol_user_token_number_set): Likewise.
17578 Adjust all callers.
17579 Promote complain_at.
17580 * tests/input.at (Type Clashes): Adjust.
17581
17582 2002-06-20 Akim Demaille <akim@epita.fr>
17583
17584 * data/bison.simple (YYLEX): Fix the declaration when
17585 %pure-parser.
17586
17587 2002-06-20 Akim Demaille <akim@epita.fr>
17588
17589 * data/bison.simple (yysymprint): Don't print the token number,
17590 just its name.
17591 * tests/actions.at (Destructors): Rename as...
17592 (Printers and Destructors): this.
17593 Also exercise %printer.
17594
17595 2002-06-20 Akim Demaille <akim@epita.fr>
17596
17597 * data/bison.simple (YYDSYMPRINT): New.
17598 Use it to remove many of the #if YYDEBUG/if (yydebug).
17599
17600 2002-06-20 Akim Demaille <akim@epita.fr>
17601
17602 * src/symtab.h, src/symtab.c (symbol_t): printer and
17603 printer_location are new members.
17604 (symbol_printer_set): New.
17605 * src/parse-gram.y (PERCENT_PRINTER): New token.
17606 Handle its associated rule.
17607 * src/scan-gram.l: Adjust.
17608 (handle_destructor_at, handle_destructor_dollar): Rename as...
17609 (handle_symbol_code_at, handle_symbol_code_dollar): these.
17610 * src/output.c (symbol_printers_output): New.
17611 (output_skeleton): Call it.
17612 * data/bison.simple (yysymprint): New. Cannot be named yyprint
17613 since there are already many grammar files with a user `yyprint'.
17614 Replace the calls to YYPRINT to calls to yysymprint.
17615 * tests/calc.at: Adjust.
17616 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
17617 taking advantage of parser very internal details (stack size!).
17618
17619 2002-06-20 Akim Demaille <akim@epita.fr>
17620
17621 * src/scan-gram.l: Complete the scanner with the missing patterns
17622 to pacify Flex.
17623 Use `quote' and `symbol_tag_get' where appropriate.
17624
17625 2002-06-19 Akim Demaille <akim@epita.fr>
17626
17627 * tests/actions.at (Destructors): Augment to test locations.
17628 * data/bison.simple (yydestructor): Pass it the current location
17629 if locations are enabled.
17630 Prototype only when __STDC__ or C++.
17631 Change the argument names to move into the yy name space: there is
17632 user code here.
17633
17634 2002-06-19 Akim Demaille <akim@epita.fr>
17635
17636 * data/bison.simple (b4_pure_if): New.
17637 Use it instead of #ifdef YYPURE.
17638
17639 2002-06-19 Akim Demaille <akim@epita.fr>
17640
17641 * data/bison.simple (b4_location_if): New.
17642 Use it instead of #ifdef YYLSP_NEEDED.
17643
17644 2002-06-19 Akim Demaille <akim@epita.fr>
17645
17646 Prepare @$ in %destructor, but currently don't bind it in the
17647 skeleton, as %location use is not cleaned up yet.
17648
17649 * src/scan-gram.l (handle_dollar, handle_destructor_at)
17650 (handle_action_at): New.
17651 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
17652 a braced_code_t and a location as additional arguments.
17653 (handle_destructor_dollar): Instead of requiring `b4_eval', just
17654 unquote one when outputting `b4_dollar_dollar'.
17655 Adjust callers.
17656 * data/bison.simple (b4_eval): Remove.
17657 (b4_symbol_destructor): Adjust.
17658 * tests/input.at (Invalid @n): Adjust.
17659
17660 2002-06-19 Zack Weinberg <zack@codesourcery.com>
17661
17662 * doc/bison.texinfo: Document ability to have multiple
17663 prologue sections.
17664
17665 2002-06-18 Akim Demaille <akim@epita.fr>
17666
17667 * src/files.c (compute_base_names): When computing the output file
17668 names from the input file name, strip the directory part.
17669
17670 2002-06-18 Akim Demaille <akim@epita.fr>
17671
17672 * data/bison.simple.new: Comment changes.
17673 Reported by Andreas Schwab.
17674
17675 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
17676
17677 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
17678 there are no `label `yyoverflowlab' defined but not used' warnings
17679 when yyoverflow is defined.
17680
17681 2002-06-18 Akim Demaille <akim@epita.fr>
17682
17683 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
17684 new member.
17685 (symbol_destructor_set): Adjust.
17686 * src/output.c (symbol_destructors_output): Output the destructor
17687 locations.
17688 Output the symbol name.
17689 * data/bison.simple (b4_symbol_destructor): Adjust.
17690
17691 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
17692 and Akim Demaille <akim@epita.fr>
17693
17694 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
17695 what's left on the stack when the error recovery hits EOF.
17696 * tests/actions.at (Destructors): Complete to exercise this case.
17697
17698 2002-06-17 Akim Demaille <akim@epita.fr>
17699
17700 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
17701 arguments is really empty, not only equal to `[]'.
17702 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
17703 member.
17704 (symbol_destructor_set): New.
17705 * src/output.c (symbol_destructors_output): New.
17706 * src/reader.h (brace_code_t, current_braced_code): New.
17707 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
17708 (handle_dollar): Rename as...
17709 (handle_action_dollar): this.
17710 (handle_destructor_dollar): New.
17711 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
17712 (grammar_declaration): Use it.
17713 * data/bison.simple (yystos): Is always defined.
17714 (yydestructor): New.
17715 * tests/actions.at (Destructors): New.
17716 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
17717
17718 2002-06-17 Akim Demaille <akim@epita.fr>
17719
17720 * src/symlist.h, src/symlist.c (symbol_list_length): New.
17721 * src/scan-gram.l (handle_dollar, handle_at): Compute the
17722 rule_length only when needed.
17723 * src/output.c (actions_output, token_definitions_output): Output
17724 the full M4 block.
17725 * src/symtab.c: Don't access directly to the symbol tag, use
17726 symbol_tag_get.
17727 * src/parse-gram.y: Use symbol_list_free.
17728
17729 2002-06-17 Akim Demaille <akim@epita.fr>
17730
17731 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
17732 (symbol_list_prepend, get_type_name): Move to...
17733 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
17734 (symbol_list_prepend, symbol_list_n_type_name_get): here.
17735 Adjust all callers.
17736 (symbol_list_free): New.
17737 * src/scan-gram.l (handle_dollar): Takes a location.
17738 * tests/input.at (Invalid $n): Adjust.
17739
17740 2002-06-17 Akim Demaille <akim@epita.fr>
17741
17742 * src/reader.h, src/reader.c (symbol_list_new): Export it.
17743 (symbol_list_prepend): New.
17744 * src/parse-gram.y (%union): `list' is a new member.
17745 (symbols.1): New, replaces...
17746 (terms_to_prec.1, nterms_to_type.1): these.
17747 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
17748 Take a location as additional argument.
17749 Adjust all callers.
17750
17751 2002-06-15 Akim Demaille <akim@epita.fr>
17752
17753 * src/parse-gram.y: Move %token in the declaration section so that
17754 we don't depend upon CVS Bison.
17755
17756 2002-06-15 Akim Demaille <akim@epita.fr>
17757
17758 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
17759 * src/print.c (print_core): Use it.
17760
17761 2002-06-15 Akim Demaille <akim@epita.fr>
17762
17763 * src/conflicts.c (log_resolution): Accept the rule involved in
17764 the sr conflicts instead of the lookahead number that points to
17765 that rule.
17766 (flush_reduce): Accept the current lookahead vector as argument,
17767 instead of the index in LA.
17768 (resolve_sr_conflict): Accept the current number of lookahead
17769 bitset to consider for the STATE, instead of the index in LA.
17770 (set_conflicts): Adjust.
17771 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
17772
17773 2002-06-15 Akim Demaille <akim@epita.fr>
17774
17775 * src/state.h (state_t): Replace the `lookaheadsp' member, a
17776 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
17777 Adjust all dependencies.
17778 * src/lalr.c (initialize_lookaheads): Split into...
17779 (states_lookaheads_count, states_lookaheads_initialize): these.
17780 (lalr): Adjust.
17781
17782 2002-06-15 Akim Demaille <akim@epita.fr>
17783
17784 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
17785 out of...
17786 (grammar_rules_print): here.
17787 * src/reduce.c (reduce_output): Use it.
17788 * tests/reduce.at (Useless Rules, Reduced Automaton)
17789 (Underivable Rules): Adjust.
17790
17791 2002-06-15 Akim Demaille <akim@epita.fr>
17792
17793 Copy BYacc's nice way to report the grammar.
17794
17795 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
17796 New.
17797 Don't print the rules' location, it is confusing and useless.
17798 (rule_print): Use grammar_rhs_print.
17799 * src/print.c (print_grammar): Use grammar_rules_print.
17800
17801 2002-06-15 Akim Demaille <akim@epita.fr>
17802
17803 Complete and rationalize `useless thing' warnings.
17804
17805 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
17806 (symbol_tag_print): New.
17807 Use them everywhere in place of accessing directly the tag member.
17808 * src/gram.h, src/gram.c (rule_print): New.
17809 Use it where a rule used to be printed `by hand'.
17810 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
17811 (reduce_grammar_tables): Report the useless rules.
17812 (reduce_print): Useless things are a warning, not an error.
17813 Report it as such.
17814 * tests/reduce.at (Useless Nonterminals, Useless Rules):
17815 (Reduced Automaton, Underivable Rules): Adjust.
17816 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
17817 * tests/conflicts.at (Unresolved SR Conflicts)
17818 (Solved SR Conflicts): Adjust.
17819
17820 2002-06-15 Akim Demaille <akim@epita.fr>
17821
17822 Let symbols have a location.
17823
17824 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
17825 (getsym): Adjust.
17826 Adjust all callers.
17827 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
17828 Use location_t, not int.
17829 * src/symtab.c (symbol_check_defined): Take advantage of the
17830 location.
17831 * tests/regression.at (Invalid inputs): Adjust.
17832
17833 2002-06-15 Akim Demaille <akim@epita.fr>
17834
17835 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
17836 (input): Don't try to initialize yylloc here, do it in the
17837 scanner.
17838 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
17839 * src/gram.h (rule_t): Change line and action_line into location
17840 and action_location, of location_t type.
17841 Adjust all dependencies.
17842 * src/location.h, src/location.c (empty_location): New.
17843 * src/reader.h, src/reader.c (grammar_start_symbol_set)
17844 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
17845 (grammar_current_rule_symbol_append)
17846 (grammar_current_rule_action_append): Expect a location as argument.
17847 * src/reader.c (grammar_midrule_action): Adjust to attach an
17848 action's location as dummy symbol location.
17849 * src/symtab.h, src/symtab.c (startsymbol_location): New.
17850 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
17851 the line numbers.
17852
17853 2002-06-14 Akim Demaille <akim@epita.fr>
17854
17855 Grammar declarations may be found in the grammar section.
17856
17857 * src/parse-gram.y (rules_or_grammar_declaration): New.
17858 (declarations): Each declaration may end with a semicolon, not
17859 just...
17860 (grammar_declaration): `"%union"'.
17861 (grammar): Branch to rules_or_grammar_declaration.
17862
17863 2002-06-14 Akim Demaille <akim@epita.fr>
17864
17865 * src/main.c (main): Invoke scanner_free.
17866
17867 2002-06-14 Akim Demaille <akim@epita.fr>
17868
17869 * src/output.c (m4_invoke): Extracted from...
17870 (output_skeleton): here.
17871 Free tempfile.
17872
17873 2002-06-14 Akim Demaille <akim@epita.fr>
17874
17875 * src/parse-gram.y (directives, directive, gram)
17876 (grammar_directives, precedence_directives, precedence_directive):
17877 Rename as...
17878 (declarations, declaration, grammar, grammar_declaration)
17879 (precedence_declaration, precedence_declarator): these.
17880 (symbol_declaration): New.
17881
17882 2002-06-14 Akim Demaille <akim@epita.fr>
17883
17884 * src/files.c (action_obstack): Remove, unused.
17885 (output_obstack): Remove it, and all its dependencies, as it is no
17886 longer needed.
17887 * src/reader.c (epilogue_set): Build the epilogue in the
17888 muscle_obstack.
17889 * src/output.h, src/output.c (muscle_obstack): Move to...
17890 * src/muscle_tab.h, src/muscle_tab.h: here.
17891 (muscle_init): Initialize muscle_obstack.
17892 (muscle_free): New.
17893 * src/main.c (main): Call it.
17894
17895 2002-06-14 Akim Demaille <akim@epita.fr>
17896
17897 * src/location.h: New, extracted from...
17898 * src/reader.h: here.
17899 * src/Makefile.am (noinst_HEADERS): Merge into
17900 (bison_SOURCES): this.
17901 Add location.h.
17902 * src/parse-gram.y: Use location_t instead of Bison's.
17903 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
17904 Use location_t instead of ints.
17905
17906 2002-06-14 Akim Demaille <akim@epita.fr>
17907
17908 * data/bison.simple, data/bison.c++: Be sure to restore the
17909 current #line when returning to the skeleton contents after having
17910 exposed the input file's #line.
17911
17912 2002-06-12 Akim Demaille <akim@epita.fr>
17913
17914 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
17915 eager.
17916 * tests/actions.at (Exotic Dollars): New.
17917
17918 2002-06-12 Akim Demaille <akim@epita.fr>
17919
17920 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
17921 ['"/] too eagerly.
17922 * tests/input.at (Torturing the Scanner): New.
17923
17924 2002-06-11 Akim Demaille <akim@epita.fr>
17925
17926 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
17927 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
17928 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
17929 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
17930 * src/reader.c (reader): Use it.
17931
17932 2002-06-11 Akim Demaille <akim@epita.fr>
17933
17934 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
17935 Adjust all callers.
17936 (scanner_last_string_free): New.
17937
17938 2002-06-11 Akim Demaille <akim@epita.fr>
17939
17940 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
17941 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
17942 (last_string, YY_OBS_FREE): New.
17943 Use them when returning an ID.
17944
17945 2002-06-11 Akim Demaille <akim@epita.fr>
17946
17947 Have Bison grammars parsed by a Bison grammar.
17948
17949 * src/reader.c, src/reader.h (prologue_augment): New.
17950 * src/reader.c (copy_definition): Remove.
17951
17952 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
17953 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
17954 (grammar_current_rule_prec_set, grammar_current_rule_check)
17955 (grammar_current_rule_symbol_append)
17956 (grammar_current_rule_action_append): Export.
17957 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
17958 (symbol_list_action_append): Remove.
17959 Hook the routines from reader.
17960 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
17961 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
17962
17963 * src/reader.c (read_declarations): Remove, unused.
17964
17965 * src/parse-gram.y: Handle the epilogue.
17966 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
17967 (grammar_start_symbol_set): this.
17968 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
17969 * src/reader.c (readgram): Remove, unused.
17970 (reader): Adjust to insert eoftoken and axiom where appropriate.
17971
17972 * src/reader.c (copy_dollar): Replace with...
17973 * src/scan-gram.h (handle_dollar): this.
17974 * src/parse-gram.y: Remove `%thong'.
17975
17976 * src/reader.c (copy_at): Replace with...
17977 * src/scan-gram.h (handle_at): this.
17978
17979 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
17980 New.
17981
17982 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
17983 time being.
17984
17985 * src/reader.h, src/reader.c (grammar_rule_end): New.
17986
17987 * src/parse.y (current_type, current_class): New.
17988 Implement `%nterm', `%token' support.
17989 Merge `%term' into `%token'.
17990 (string_as_id): New.
17991 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
17992 type name.
17993
17994 * src/parse-gram.y: Be sure to handle properly the beginning of
17995 rules.
17996
17997 * src/parse-gram.y: Handle %type.
17998 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
17999
18000 * src/parse-gram.y: More directives support.
18001 * src/options.c: No longer handle source directives.
18002
18003 * src/parse-gram.y: Fix %output.
18004
18005 * src/parse-gram.y: Handle %union.
18006 Use the prologue locations.
18007 * src/reader.c (parse_union_decl): Remove.
18008
18009 * src/reader.h, src/reader.c (epilogue_set): New.
18010 * src/parse-gram.y: Use it.
18011
18012 * data/bison.simple, data/bison.c++: b4_stype is now either not
18013 defined, then default to int, or to the contents of %union,
18014 without `union' itself.
18015 Adjust.
18016 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
18017
18018 * src/output.c (actions_output): Don't output braces, as they are
18019 already handled by the scanner.
18020
18021 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
18022 characters to themselves.
18023
18024 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
18025 that the epilogue has a proper #line.
18026
18027 * src/parse-gram.y: Handle precedence/associativity.
18028
18029 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
18030 a terminal.
18031 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
18032 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
18033 at all to define terminals that cannot be emitted.
18034
18035 * src/scan-gram.l: Escape M4 characters.
18036
18037 * src/scan-gram.l: Working properly with escapes in user
18038 strings/characters.
18039
18040 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
18041 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
18042 grammar.
18043 Use more modest sizes, as for the time being the parser does not
18044 release memory, and therefore the process swallows a huge amount
18045 of memory.
18046
18047 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
18048 stricter %token grammar.
18049
18050 * src/symtab.h (associativity): Add `undef_assoc'.
18051 (symbol_precedence_set): Do nothing when passed an undef_assoc.
18052 * src/symtab.c (symbol_check_alias_consistence): Adjust.
18053
18054 * tests/regression.at (Invalid %directive): Remove, as it is now
18055 meaningless.
18056 (Invalid inputs): Adjust to the new error messages.
18057 (Token definitions): The new grammar doesn't allow too many
18058 eccentricities.
18059
18060 * src/lex.h, src/lex.c: Remove.
18061 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
18062 (copy_character, copy_string2, copy_string, copy_identifier)
18063 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
18064 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
18065 (parse_action): Remove.
18066 * po/POTFILES.in: Adjust.
18067
18068 2002-06-11 Akim Demaille <akim@epita.fr>
18069
18070 * src/reader.c (parse_action): Don't store directly into the
18071 rule's action member: return the action as a string.
18072 Don't require `rule_length' as an argument: compute it.
18073 (grammar_current_rule_symbol_append)
18074 (grammar_current_rule_action_append): New, eved out from
18075 (readgram): here.
18076 Remove `action_flag', `rulelength', unused now.
18077
18078 2002-06-11 Akim Demaille <akim@epita.fr>
18079
18080 * src/reader.c (grammar_current_rule_prec_set).
18081 (grammar_current_rule_check): New, eved out from...
18082 (readgram): here.
18083 Remove `xaction', `first_rhs': useless.
18084 * tests/input.at (Type clashes): New.
18085 * tests/existing.at (GNU Cim Grammar): Adjust.
18086
18087 2002-06-11 Akim Demaille <akim@epita.fr>
18088
18089 * src/reader.c (grammar_midrule_action): New, Eved out from
18090 (readgram): here.
18091
18092 2002-06-11 Akim Demaille <akim@epita.fr>
18093
18094 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
18095 New.
18096 (readgram): Use them as replacement of inlined code, crule and
18097 crule1.
18098
18099 2002-06-11 Akim Demaille <akim@epita.fr>
18100
18101 * src/reader.c (grammar_end, grammar_symbol_append): New.
18102 (readgram): Use them.
18103 Make the use of `p' as local as possible.
18104
18105 2002-06-10 Akim Demaille <akim@epita.fr>
18106
18107 GCJ's parser requires the tokens to be defined before the prologue.
18108
18109 * data/bison.simple: Output the token definition before the user's
18110 prologue.
18111 * tests/regression.at (Braces parsing, Duplicate string)
18112 (Mixing %token styles): Check the output from bison.
18113 (Early token definitions): New.
18114
18115 2002-06-10 Akim Demaille <akim@epita.fr>
18116
18117 * src/symtab.c (symbol_user_token_number_set): Don't complain when
18118 assigning twice the same user number to a token, so that we can
18119 use it in...
18120 * src/lex.c (lex): here.
18121 Also use `symbol_class_set' instead of hand written code.
18122 * src/reader.c (parse_assoc_decl): Likewise.
18123
18124 2002-06-10 Akim Demaille <akim@epita.fr>
18125
18126 * src/symtab.c, src/symtab.c (symbol_class_set)
18127 (symbol_user_token_number_set): New.
18128 * src/reader.c (parse_token_decl): Use them.
18129 Use a switch instead of ifs.
18130 Use a single argument.
18131
18132 2002-06-10 Akim Demaille <akim@epita.fr>
18133
18134 Remove `%thong' support as it is undocumented, unused, duplicates
18135 `%token's job, and creates useless e-mail traffic with people who
18136 want to know what it is, why it is undocumented, unused, and
18137 duplicates `%token's job.
18138
18139 * src/reader.c (parse_thong_decl): Remove.
18140 * src/options.c (option_table): Remove "thong".
18141 * src/lex.h (tok_thong): Remove.
18142
18143 2002-06-10 Akim Demaille <akim@epita.fr>
18144
18145 * src/symtab.c, src/symtab.c (symbol_type_set)
18146 (symbol_precedence_set): New.
18147 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
18148 (value_components_used): Remove, unused.
18149
18150 2002-06-09 Akim Demaille <akim@epita.fr>
18151
18152 Move symbols handling code out of the reader.
18153
18154 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
18155 (axiom): Move to...
18156 * src/symtab.h, src/symtab.c: here.
18157
18158 * src/gram.c (start_symbol): Remove: use startsymbol->number.
18159 * src/reader.c (startval): Rename as...
18160 * src/symtab.h, src/symtab.c (startsymbol): this.
18161 * src/reader.c: Adjust.
18162
18163 * src/reader.c (symbol_check_defined, symbol_make_alias)
18164 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18165 (token_translations_init)
18166 Move to...
18167 * src/symtab.c: here.
18168 * src/reader.c (packsymbols): Move to...
18169 * src/symtab.h, src/symtab.c (symbols_pack): here.
18170 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
18171 argument.
18172
18173 2002-06-03 Akim Demaille <akim@epita.fr>
18174
18175 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
18176 then statements.
18177
18178 2002-06-03 Akim Demaille <akim@epita.fr>
18179
18180 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
18181 structs with non literals.
18182 * src/scan-skel.l: never-interactive.
18183 * src/conflicts.c (enum conflict_resolution_e): No trailing
18184 comma.
18185 * src/getargs.c (usage): Split long literal strings.
18186 Reported by Hans Aberg.
18187
18188 2002-05-28 Akim Demaille <akim@epita.fr>
18189
18190 * data/bison.c++: Use C++ ostreams.
18191 (cdebug_): New member.
18192
18193 2002-05-28 Akim Demaille <akim@epita.fr>
18194
18195 * src/output.c (output_skeleton): Be sure to allocate enough room
18196 for `/' _and_ for `\0' in full_skeleton.
18197
18198 2002-05-28 Akim Demaille <akim@epita.fr>
18199
18200 * data/bison.c++: Catch up with bison.simple:
18201 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18202 and Paul Eggert <eggert@twinsun.com>: `error' handing.
18203 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
18204 and popping traces.
18205
18206 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18207
18208 * src/output.c (output_skeleton): Put an explicit path in front of
18209 the skeleton file name, rather than relying on the -I directory,
18210 to partially alleviate effects of having a skeleton file lying around
18211 in the current directory.
18212
18213 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18214
18215 * src/conflicts.c (log_resolution): Correct typo:
18216 obstack_printf should be obstack_fgrow1.
18217
18218 2002-05-26 Akim Demaille <akim@epita.fr>
18219
18220 * src/state.h (state_t): `solved_conflicts' is a new member.
18221 * src/LR0.c (new_state): Set it to 0.
18222 * src/conflicts.h, src/conflicts.c (print_conflicts)
18223 (free_conflicts, solve_conflicts): Rename as...
18224 (conflicts_print, conflicts_free, conflicts_solve): these.
18225 Adjust callers.
18226 * src/conflicts.c (enum conflict_resolution_e)
18227 (solved_conflicts_obstack): New, used by...
18228 (log_resolution): this.
18229 Adjust to attach the conflict resolution to each state.
18230 Complete the description with the precedence/associativity
18231 information.
18232 (resolve_sr_conflict): Adjust.
18233 * src/print.c (print_state): Output its solved_conflicts.
18234 * tests/conflicts.at (Unresolved SR Conflicts)
18235 (Solved SR Conflicts): Exercise --report=all.
18236
18237 2002-05-26 Akim Demaille <akim@epita.fr>
18238
18239 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18240 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18241 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
18242 (token_number_t, item_number_as_token_number)
18243 (token_number_as_item_number, muscle_insert_token_number_table):
18244 Rename as...
18245 (symbol_number_t, item_number_as_symbol_number)
18246 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
18247 these, since it is more appropriate.
18248
18249 2002-05-26 Akim Demaille <akim@epita.fr>
18250
18251 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
18252 `Error:' lines.
18253 * data/bison.simple (yystos) [YYDEBUG]: New.
18254 (yyparse) [YYDEBUG]: Display the symbols which are popped during
18255 error recovery.
18256 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
18257
18258 2002-05-25 Akim Demaille <akim@epita.fr>
18259
18260 * doc/bison.texinfo (Debugging): Split into...
18261 (Tracing): this new section, its former contents, and...
18262 (Understanding): this new section.
18263 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
18264 by...
18265 (report_flag): this.
18266 Adjust all dependencies.
18267 (report_args, report_types, report_argmatch): New.
18268 (usage, getargs): Report/support -r, --report.
18269 * src/options.h
18270 (struct option_table_struct): Rename as..,
18271 (struct option_table_s): this.
18272 Rename the `set_flag' member to `flag' to match with getopt_long's
18273 struct.
18274 * src/options.c (option_table): Split verbose into an entry for
18275 %verbose, and another for --verbose.
18276 Support --report/-r, so remove -r from the obsolete --raw.
18277 * src/print.c: Attach full item sets and lookaheads reports to
18278 report_flag instead of trace_flag.
18279 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
18280
18281 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18282 and Paul Eggert <eggert@twinsun.com>
18283
18284 * data/bison.simple (yyparse): Correct error handling to conform to
18285 POSIX and yacc. Specifically, after syntax error is discovered,
18286 do not reduce further before shifting the error token.
18287 Clean up the code a bit by removing the labels yyerrdefault,
18288 yyerrhandle, yyerrpop.
18289 * NEWS: Document the above.
18290
18291 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18292
18293 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
18294 type; it isn't always big enough, since it doesn't necessarily
18295 include non-terminals.
18296 (yytranslate): Expand definition of yy_token_number_type, so that
18297 the latter can be removed.
18298 (yy_token_number_type): Remove, only one use.
18299 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
18300 don't use TokenNumberType as element type.
18301
18302 * tests/regression.at: Modify expected output to agree with change
18303 to yyr1 and yytranslate.
18304
18305 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
18306
18307 * src/reader.c (parse_action): Use copy_character instead of
18308 obstack_1grow.
18309
18310 2002-05-13 Akim Demaille <akim@epita.fr>
18311
18312 * tests/regression.at (Token definitions): Prototype yylex and
18313 yyerror.
18314
18315 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18316
18317 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
18318 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
18319 32-bit arithmetic.
18320 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
18321
18322 2002-05-07 Akim Demaille <akim@epita.fr>
18323
18324 * tests/synclines.at: Be sure to prototype yylex and yyerror to
18325 avoid GCC warnings.
18326
18327 2002-05-07 Akim Demaille <akim@epita.fr>
18328
18329 Kill GCC warnings.
18330
18331 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
18332 over the RHS of each rule.
18333 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
18334 * src/state.h (state_t): Member `nitems' is unsigned short.
18335 * src/LR0.c (get_state): Adjust.
18336 * src/reader.c (packgram): Likewise.
18337 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
18338 `Type'.
18339 (muscle_insert_int_table): Remove, unused.
18340 (prepare_rules): Remove `max'.
18341
18342 2002-05-06 Akim Demaille <akim@epita.fr>
18343
18344 * src/closure.c (print_firsts): Display of the symbol tags.
18345 (bitmatrix_print): Move to...
18346 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
18347 here.
18348 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
18349
18350 2002-05-06 Akim Demaille <akim@epita.fr>
18351
18352 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
18353 hash_do_for_each.
18354
18355 2002-05-06 Akim Demaille <akim@epita.fr>
18356
18357 * src/LR0.c (new_state, get_state): Instead of using the global
18358 `kernel_size' and `kernel_base', have two new arguments:
18359 `core_size' and `core'.
18360 Adjust callers.
18361
18362 2002-05-06 Akim Demaille <akim@epita.fr>
18363
18364 * src/reader.c (packgram): No longer end `ritem' with a 0
18365 sentinel: it is not used.
18366
18367 2002-05-05 Akim Demaille <akim@epita.fr>
18368
18369 New experimental feature: display the lookaheads in the report and
18370 graph.
18371
18372 * src/print (print_core): When --trace-flag, display the rules
18373 lookaheads.
18374 * src/print_graph.c (print_core): Likewise.
18375 Swap the arguments.
18376 Adjust caller.
18377
18378 2002-05-05 Akim Demaille <akim@epita.fr>
18379
18380 * tests/torture.at (Many lookaheads): New test.
18381
18382 2002-05-05 Akim Demaille <akim@epita.fr>
18383
18384 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
18385 (GENERATE_MUSCLE_INSERT_TABLE): this.
18386 (output_int_table, output_unsigned_int_table, output_short_table)
18387 (output_token_number_table, output_item_number_table): Replace with...
18388 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
18389 (muscle_insert_short_table, muscle_insert_token_number_table)
18390 (muscle_insert_item_number_table): these.
18391 Adjust all callers.
18392 (prepare_tokens): Don't free `translations', since...
18393 * src/reader.h, src/reader.c (grammar_free): do it.
18394 Move to...
18395 * src/gram.h, src/gram.c (grammar_free): here.
18396 * data/bison.simple, data/bison.c++: b4_token_number_max is now
18397 b4_translate_max.
18398
18399 2002-05-05 Akim Demaille <akim@epita.fr>
18400
18401 * src/output.c (output_unsigned_int_table): New.
18402 (prepare_rules): `i' is unsigned.
18403 `prhs', `rline', `r2' are unsigned int.
18404 Rename muscle `rhs_number_max' as `rhs_max'.
18405 Output muscles `prhs_max', `rline_max', and `r2_max'.
18406 Free rline and r1.
18407 * data/bison.simple, data/bison.c++: Adjust to use these muscles
18408 to compute types instead of constant types.
18409 * tests/regression.at (Web2c Actions): Adjust.
18410
18411 2002-05-04 Akim Demaille <akim@epita.fr>
18412
18413 * src/symtab.h (SALIAS, SUNDEF): Rename as...
18414 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
18415 Adjust dependencies.
18416 * src/output.c (token_definitions_output): Be sure not to output a
18417 `#define 'a'' when fed with `%token 'a' "a"'.
18418 * tests/regression.at (Token definitions): New.
18419
18420 2002-05-03 Paul Eggert <eggert@twinsun.com>
18421
18422 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
18423 for K&R C.
18424
18425 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
18426
18427 * Makefile.am (SUBDIRS): Remove intl.
18428 (EXTRA_DIST): Add config/config.rpath.
18429
18430 2002-05-03 Akim Demaille <akim@epita.fr>
18431
18432 * data/bison.simple (m4_if): Don't output empty enums.
18433 And actually, output valid enum definitions :(.
18434
18435 2002-05-03 Akim Demaille <akim@epita.fr>
18436
18437 * configure.bat: Remove, completely obsolete.
18438 * Makefile.am (EXTRA_DIST): Adjust.
18439 Don't distribute config.rpath...
18440 * config/Makefile.am (EXTRA_DIST): Do it.
18441
18442 2002-05-03 Akim Demaille <akim@epita.fr>
18443
18444 * configure.in (GETTEXT_VERSION): New.
18445 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
18446
18447 2002-05-03 Akim Demaille <akim@epita.fr>
18448
18449 * data/bison.simple (b4_token_enum): New.
18450 (b4_token_defines): Use it to output tokens both as #define and
18451 enums.
18452 Suggested by Paul Eggert.
18453 * src/output.c (token_definitions_output): Don't output spurious
18454 white spaces.
18455
18456 2002-05-03 Akim Demaille <akim@epita.fr>
18457
18458 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18459
18460 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
18461
18462 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
18463 Update the stack class, give a try to deque as the default container.
18464
18465 2002-05-02 Akim Demaille <akim@epita.fr>
18466
18467 * data/bison.simple (yyparse): Do not implement @$ = @1.
18468 (YYLLOC_DEFAULT): Adjust to do it.
18469 * doc/bison.texinfo (Location Default Action): Fix.
18470
18471 2002-05-02 Akim Demaille <akim@epita.fr>
18472
18473 * src/reader.c (parse_braces): Merge into...
18474 (parse_action): this.
18475
18476 2002-05-02 Akim Demaille <akim@epita.fr>
18477
18478 * configure.in (ALL_LINGUAS): Remove.
18479 * po/LINGUAS, hr.po: New.
18480
18481 2002-05-02 Akim Demaille <akim@epita.fr>
18482
18483 Remove the so called hairy (semantic) parsers.
18484
18485 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
18486 * src/gram.h, src/gram.c (semantic_parser): Remove.
18487 (rule_t): Remove the guard and guard_line members.
18488 * src/lex.h (token_t): remove tok_guard.
18489 * src/options.c (option_table): Remove %guard and %semantic_parser
18490 support.
18491 * src/output.c, src/output.h (guards_output): Remove.
18492 (prepare): Adjust.
18493 (token_definitions_output): Don't output the `T'
18494 tokens (???).
18495 (output_skeleton): Don't output the guards.
18496 * src/files.c, src/files.c (attrsfile): Remove.
18497 * src/reader.c (symbol_list): Remove the guard and guard_line
18498 members.
18499 Adjust dependencies.
18500 (parse_guard): Remove.
18501 * data/bison.hairy: Remove.
18502 * doc/bison.texinfo (Environment Variables): Remove occurrences of
18503 BISON_HAIRY.
18504
18505 2002-05-02 Akim Demaille <akim@epita.fr>
18506
18507 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
18508 (parse_guard): Rename the formal argument `stack_offset' as
18509 `rule_length', which is more readable.
18510 Adjust callers.
18511 (copy_at, copy_dollar): Instead of outputting the hard coded
18512 values of $$, $n and so forth, output invocation to b4_lhs_value,
18513 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
18514 Note: this patch partially drops `semantic-parser' support: it
18515 always does `rule_length - n', where semantic parsers ought to
18516 always use `-n'.
18517 * data/bison.simple, data/bison.c++ (b4_lhs_value)
18518 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
18519
18520 2002-05-02 Akim Demaille <akim@epita.fr>
18521
18522 * configure.in (AC_INIT): Bump to 1.49b.
18523 (AM_INIT_AUTOMAKE): Short invocation.
18524
18525 2002-05-02 Akim Demaille <akim@epita.fr>
18526
18527 Version 1.49a.
18528
18529 2002-05-01 Akim Demaille <akim@epita.fr>
18530
18531 * src/skeleton.h: Remove.
18532
18533 2002-05-01 Akim Demaille <akim@epita.fr>
18534
18535 * src/skeleton.h: Fix the #endif.
18536 Reported by Magnus Fromreide.
18537
18538 2002-04-26 Paul Eggert <eggert@twinsun.com>
18539
18540 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
18541 Define if we define YYSTYPE and YYLTYPE, respectively.
18542 (YYCOPY): Fix [] quoting problem in the non-GCC case.
18543
18544 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
18545
18546 * src/scan-skel.l: Postprocess quadrigraphs.
18547
18548 * src/reader.c (copy_character): New function, used to output
18549 single characters while replacing `[' and `]' with quadrigraphs, to
18550 avoid troubles with M4 quotes.
18551 (copy_comment): Output characters with copy_character.
18552 (read_additionnal_code): Likewise.
18553 (copy_string2): Likewise.
18554 (copy_definition): Likewise.
18555
18556 * tests/calc.at: Exercise M4 quoting.
18557
18558 2002-04-25 Akim Demaille <akim@epita.fr>
18559
18560 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
18561 between `!' and the command.
18562 Reported by Paul Eggert.
18563
18564 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
18565
18566 * tests/calc.at: Exercise prologue splitting.
18567
18568 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
18569 `b4_post_prologue' instead of `b4_prologue'.
18570
18571 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
18572 muscles.
18573 (output): Free pre_prologue_obstack and post_prologue_obstack.
18574 * src/files.h, src/files.c (attrs_obstack): Remove.
18575 (pre_prologue_obstack, post_prologue_obstack): New.
18576 * src/reader.c (copy_definition): Add a parameter to specify the
18577 obstack to fill, instead of using attrs_obstack unconditionally.
18578 (read_declarations): Pass pre_prologue_obstack to copy_definition if
18579 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
18580
18581 2002-04-23 Paul Eggert <eggert@twinsun.com>
18582
18583 * data/bison.simple: Remove unnecessary commentary and white
18584 space differences from 1_29-branch.
18585 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
18586
18587 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
18588 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
18589 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
18590 constructors or destructors.
18591
18592 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
18593
18594 2002-04-23 Akim Demaille <akim@epita.fr>
18595
18596 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
18597 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
18598 location with columns.
18599 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
18600 All reported by Paul Eggert.
18601
18602 2002-04-22 Akim Demaille <akim@epita.fr>
18603
18604 * src/reduce.c (dump_grammar): Move to...
18605 * src/gram.h, src/gram.c (grammar_dump): here.
18606 Be sure to separate long item numbers.
18607 Don't read the members of a rule's prec if its nil.
18608
18609 2002-04-22 Akim Demaille <akim@epita.fr>
18610
18611 * src/output.c (table_size, table_grow): New.
18612 (MAXTABLE): Remove, replace uses with table_size.
18613 (pack_vector): Instead of dying when the table is too big, grow it.
18614
18615 2002-04-22 Akim Demaille <akim@epita.fr>
18616
18617 * data/bison.simple (yyr1): Its type is that of a token number.
18618 * data/bison.c++ (r1_): Likewise.
18619 * tests/regression.at (Web2c Actions): Adjust.
18620
18621 2002-04-22 Akim Demaille <akim@epita.fr>
18622
18623 * src/reader.c (token_translations_init): 256 is now the default
18624 value for the error token, i.e., it will be assigned another
18625 number if the user assigned 256 to one of her tokens.
18626 (reader): Don't force 256 to error.
18627 * doc/bison.texinfo (Symbols): Adjust.
18628 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
18629 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
18630 etc. instead of 10, 20, 30 (which was used to `jump' over error
18631 (256) and undefined (2)).
18632
18633 2002-04-22 Akim Demaille <akim@epita.fr>
18634
18635 Propagate more token_number_t.
18636
18637 * src/gram.h (token_number_as_item_number)
18638 (item_number_as_token_number): New.
18639 * src/output.c (GENERATE_OUTPUT_TABLE): New.
18640 Use it to create output_item_number_table and
18641 output_token_number_table.
18642 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18643 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
18644 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
18645 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
18646
18647 2002-04-22 Akim Demaille <akim@epita.fr>
18648
18649 * src/output.h, src/output.c (get_lines_number): Remove.
18650
18651 2002-04-19 Akim Demaille <akim@epita.fr>
18652
18653 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
18654 as Lex/Flex'.
18655 (Debugging): More details about enabling the debugging features.
18656 (Table of Symbols): Describe $$, $n, @$, and @n.
18657 Suggested by Tim Josling.
18658
18659 2002-04-19 Akim Demaille <akim@epita.fr>
18660
18661 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
18662
18663 2002-04-10 Akim Demaille <akim@epita.fr>
18664
18665 * src/system.h: Rely on HAVE_LIMITS_H.
18666 Suggested by Paul Eggert.
18667
18668 2002-04-09 Akim Demaille <akim@epita.fr>
18669
18670 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
18671 full stderr, and strip it according to the bison options, instead
18672 of composing the error message from different bits.
18673 This makes it easier to check for several error messages.
18674 Adjust all the invocations.
18675 Add an invocation exercising the error token.
18676 Add an invocation demonstrating a stupid error message.
18677 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
18678 Adjust the tests.
18679 Error message are for stderr, not stdout.
18680
18681 2002-04-09 Akim Demaille <akim@epita.fr>
18682
18683 * src/gram.h, src/gram.c (error_token_number): Remove, use
18684 errtoken->number.
18685 * src/reader.c (reader): Don't specify the user token number (2)
18686 for $undefined, as it uselessly prevents using it.
18687 * src/gram.h (token_number_t): Move to...
18688 * src/symtab.h: here.
18689 (state_t.number): Is a token_number_t.
18690 * src/print.c, src/reader.c: Use undeftoken->number instead of
18691 hard coded 2.
18692 (Even though this 2 is not the same as above: the number of the
18693 undeftoken remains being 2, it is its user token number which
18694 might not be 2).
18695 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
18696 `user_token_number_max'.
18697 Output `undef_token_number'.
18698 * data/bison.simple, data/bison.c++: Use them.
18699 Be sure to map invalid yylex return values to
18700 `undef_token_number'. This saves us from gratuitous SEGV.
18701
18702 * tests/conflicts.at (Solved SR Conflicts)
18703 (Unresolved SR Conflicts): Adjust.
18704 * tests/regression.at (Web2c Actions): Adjust.
18705
18706 2002-04-08 Akim Demaille <akim@epita.fr>
18707
18708 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
18709 Adding #line.
18710 Remove the duplicate `typedefs'.
18711 (RhsNumberType): Fix the declaration and various other typos.
18712 Use __ofile__.
18713 * data/bison.simple: Use __ofile__.
18714 * src/scan-skel.l: Handle __ofile__.
18715
18716 2002-04-08 Akim Demaille <akim@epita.fr>
18717
18718 * src/gram.h (item_number_t): New, the type of item numbers in
18719 RITEM. Note that it must be able to code symbol numbers as
18720 positive number, and the negation of rule numbers as negative
18721 numbers.
18722 Adjust all dependencies (pretty many).
18723 * src/reduce.c (rule): Remove this `short *' pointer: use
18724 item_number_t.
18725 * src/system.h (MINSHORT, MAXSHORT): Remove.
18726 Include `limits.h'.
18727 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
18728 (shortcpy): Remove.
18729 (MAXTABLE): Move to...
18730 * src/output.c (MAXTABLE): here.
18731 (prepare_rules): Use output_int_table to output rhs.
18732 * data/bison.simple, data/bison.c++: Adjust.
18733 * tests/torture.at (Big triangle): Move the limit from 254 to
18734 500.
18735 * tests/regression.at (Web2c Actions): Ajust.
18736
18737 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
18738 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
18739 passes, but produces negative #line number, once fixed, GCC is
18740 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
18741 C), it passes.
18742 * src/state.h (state_h): Code input lines on ints, not shorts.
18743
18744 2002-04-08 Akim Demaille <akim@epita.fr>
18745
18746 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
18747 and then the grammar.
18748
18749 2002-04-08 Akim Demaille <akim@epita.fr>
18750
18751 * src/system.h: No longer using strndup.
18752
18753 2002-04-07 Akim Demaille <akim@epita.fr>
18754
18755 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
18756 * src/output.c (output_table_data): Return the longest number.
18757 (prepare_tokens): Output `token_number_max').
18758 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
18759 New.
18760 Use them to define yy_token_number_type/TokenNumberType.
18761 Use this type for yytranslate.
18762 * tests/torture.at (Big triangle): Push the limit from 124 to
18763 253.
18764 * tests/regression.at (Web2c Actions): Adjust.
18765
18766 2002-04-07 Akim Demaille <akim@epita.fr>
18767
18768 * tests/torture.at (Big triangle): New.
18769 (GNU AWK Grammar, GNU Cim Grammar): Move to...
18770 * tests/existing.at: here.
18771
18772 2002-04-07 Akim Demaille <akim@epita.fr>
18773
18774 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
18775 nritems.
18776 Adjust dependencies.
18777
18778 2002-04-07 Akim Demaille <akim@epita.fr>
18779
18780 * src/reader.c: Normalize increments to prefix form.
18781
18782 2002-04-07 Akim Demaille <akim@epita.fr>
18783
18784 * src/reader.c, symtab.c: Remove debugging code.
18785
18786 2002-04-07 Akim Demaille <akim@epita.fr>
18787
18788 Rename all the `bucket's as `symbol_t'.
18789
18790 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
18791 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
18792 * src/symtab.c, src/symtab.h (bucket): Rename as...
18793 (symbol_t): this.
18794 (symbol_list_new, bucket_check_defined, bucket_make_alias)
18795 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
18796 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
18797 (buckets_new, buckets_free, buckets_do): Rename as...
18798 (symbol_list_new, symbol_check_defined, symbol_make_alias)
18799 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18800 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
18801 (symbols_new, symbols_free, symbols_do): these.
18802
18803 2002-04-07 Akim Demaille <akim@epita.fr>
18804
18805 Use lib/hash for the symbol table.
18806
18807 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
18808 EOF.
18809 * src/lex.c (lex): Set the `number' member of new terminals.
18810 * src/reader.c (bucket_check_defined, bucket_make_alias)
18811 (bucket_check_alias_consistence, bucket_translation): New.
18812 (reader, grammar_free, readgram, token_translations_init)
18813 (packsymbols): Adjust.
18814 (reader): Number the predefined tokens.
18815 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
18816 for predefined tokens.
18817 * src/symtab.h (bucket): Remove all the hash table related
18818 members.
18819 * src/symtab.c (symtab): Replace by...
18820 (bucket_table): this.
18821 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
18822 (buckets_new, buckets_do): New.
18823
18824 2002-04-07 Akim Demaille <akim@epita.fr>
18825
18826 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
18827 (start_symbol, max_user_token_number, semantic_parser)
18828 (error_token_number): Initialize.
18829 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
18830 Initialize.
18831 (reader): Don't.
18832 (errtoken, eoftoken, undeftoken, axiom): Extern.
18833
18834 2002-04-07 Akim Demaille <akim@epita.fr>
18835
18836 * src/gram.h (rule_s): prec and precsym are now pointers
18837 to the bucket giving the priority/associativity.
18838 Member `associativity' removed: useless.
18839 * src/reduce.c, src/conflicts.c: Adjust.
18840
18841 2002-04-07 Akim Demaille <akim@epita.fr>
18842
18843 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
18844 Properly escape the symbols' TAG when outputting them.
18845
18846 2002-04-07 Akim Demaille <akim@epita.fr>
18847
18848 * src/lalr.h (LA): Is a bitsetv, not bitset*.
18849
18850 2002-04-07 Akim Demaille <akim@epita.fr>
18851
18852 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
18853 (LArule): this, which is an array to rule_t*.
18854 * src/print.c, src/conflicts.c: Adjust.
18855
18856 2002-04-07 Akim Demaille <akim@epita.fr>
18857
18858 * src/gram.h (rule_t): Rename `number' as `user_number'.
18859 `number' is a new member.
18860 Adjust dependencies.
18861 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
18862
18863 2002-04-07 Akim Demaille <akim@epita.fr>
18864
18865 As a result of the previous patch, it is no longer needed
18866 to reorder ritem itself.
18867
18868 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
18869
18870 2002-04-07 Akim Demaille <akim@epita.fr>
18871
18872 Be sure never to walk through RITEMS, but use only data related to
18873 the rules themselves. RITEMS should be banished.
18874
18875 * src/output.c (output_token_translations): Rename as...
18876 (prepare_tokens): this.
18877 In addition to `translate', prepare the muscles `tname' and
18878 `toknum', which were handled by...
18879 (output_rule_data): this.
18880 Remove, and move the remainder of its outputs into...
18881 (prepare_rules): this new routines, which also merges content from
18882 (output_gram): this.
18883 (prepare_rules): Be sure never to walk through RITEMS.
18884 (output_stos): Rename as...
18885 (prepare_stos): this.
18886 (output): Always invoke prepare_states, after all, just don't use it
18887 in the output if you don't need it.
18888
18889 2002-04-07 Akim Demaille <akim@epita.fr>
18890
18891 * src/LR0.c (new_state): Display `nstates' as the name of the
18892 newly created state.
18893 Adjust to initialize first_state and last_state if needed.
18894 Be sure to distinguish the initial from the final state.
18895 (new_states): Create the itemset of the initial state, and use
18896 new_state.
18897 * src/closure.c (closure): Now that the initial state has its
18898 items properly set, there is no need for a special case when
18899 creating `ruleset'.
18900
18901 As a result, now the rule 0, reducing to $axiom, is visible in the
18902 outputs. Adjust the test suite.
18903
18904 * tests/conflicts.at (Solved SR Conflicts)
18905 (Unresolved SR Conflicts): Adjust.
18906 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
18907 * tests/conflicts.at (S/R in initial): New.
18908
18909 2002-04-07 Akim Demaille <akim@epita.fr>
18910
18911 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
18912 the RHS of the rules.
18913 * src/output.c (output_gram): Likewise.
18914
18915 2002-04-07 Akim Demaille <akim@epita.fr>
18916
18917 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
18918 bucket.
18919 Adjust all dependencies.
18920 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
18921 `number' of the buckets too.
18922 * src/gram.h: Include `symtab.h'.
18923 (associativity): Move to...
18924 * src/symtab.h: here.
18925 No longer include `gram.h'.
18926
18927 2002-04-07 Akim Demaille <akim@epita.fr>
18928
18929 * src/gram.h, src/gram.c (rules_rhs_length): New.
18930 (ritem_longest_rhs): Use it.
18931 * src/gram.h (rule_t): `number' is a new member.
18932 * src/reader.c (packgram): Set it.
18933 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
18934 the end of `rules', and count them out of `nrules'.
18935 (reduce_output, dump_grammar): Adjust.
18936 * src/print.c (print_grammar): It is no longer needed to check for
18937 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
18938 * tests/reduce.at (Reduced Automaton): New test.
18939
18940 2002-04-07 Akim Demaille <akim@epita.fr>
18941
18942 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
18943 lacking `+ 1' to nrules, Bison reported as useless a token if it
18944 was used solely to set the precedence of the last rule...
18945
18946 2002-04-07 Akim Demaille <akim@epita.fr>
18947
18948 * data/bison.c++, data/bison.simple: Don't output the current file
18949 name in #line, to avoid useless diffs between two identical
18950 outputs under different names.
18951
18952 2002-04-07 Akim Demaille <akim@epita.fr>
18953
18954 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
18955 Normalize loops to using `< nrules + 1', not `<= nrules'.
18956
18957 2002-04-07 Akim Demaille <akim@epita.fr>
18958
18959 * TODO: Update.
18960
18961 2002-04-07 Akim Demaille <akim@epita.fr>
18962
18963 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
18964 bucket.value as bucket.number.
18965
18966 2002-04-07 Akim Demaille <akim@epita.fr>
18967
18968 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
18969 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18970 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
18971 RHS, instead of being an index in RITEMS.
18972
18973 2002-04-04 Paul Eggert <eggert@twinsun.com>
18974
18975 * doc/bison.texinfo: Update copyright date.
18976 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
18977 (Symbols): Warn about running Bison in one character set,
18978 but compiling and/or running in an incompatible one.
18979 Warn about character code 256, too.
18980
18981 2002-04-03 Paul Eggert <eggert@twinsun.com>
18982
18983 * src/bison.data (YYSTACK_ALLOC): Depend on whether
18984 YYERROR_VERBOSE is nonzero, not whether it is defined.
18985
18986 Merge changes from bison-1_29-branch.
18987
18988 2002-03-20 Paul Eggert <eggert@twinsun.com>
18989
18990 Merge fixes from Debian bison_1.34-1.diff.
18991
18992 * configure.in (AC_PREREQ): 2.53.
18993
18994 2002-03-20 Akim Demaille <akim@epita.fr>
18995
18996 * src/conflicts.c (log_resolution): Argument `resolution' is const.
18997
18998 2002-03-19 Paul Eggert <eggert@twinsun.com>
18999
19000 * src/bison.simple (YYCOPY): New macro.
19001 (YYSTACK_RELOCATE): Use it.
19002 Remove Type arg; no longer needed. All callers changed.
19003 (yymemcpy): Remove; no longer needed.
19004
19005 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
19006 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
19007
19008 2002-03-19 Akim Demaille <akim@epita.fr>
19009
19010 Test and fix the #line outputs.
19011
19012 * tests/atlocal.at (GCC): New.
19013 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
19014 (Prologue synch line, %union synch line, Postprologue synch line)
19015 (Action synch line, Epilogue synch line): New tests.
19016 * src/reader.c (parse_union_decl): Define the muscle stype_line.
19017 * data/bison.simple, data/bison.c++: Use it.
19018
19019 2002-03-19 Akim Demaille <akim@epita.fr>
19020
19021 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
19022 (Solved SR Conflicts, %expect not enough, %expect right)
19023 (%expect too much): Move to...
19024 * tests/conflicts.at: this new file.
19025
19026 2002-03-19 Akim Demaille <akim@epita.fr>
19027
19028 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
19029 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
19030 that we can move to enums for instance.
19031 * src/output.c (token_definitions_output): Output a list of
19032 `token-name, token-number' instead of the #define.
19033 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
19034
19035 2002-03-14 Akim Demaille <akim@epita.fr>
19036
19037 Use Gettext 0.11.1.
19038
19039 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
19040
19041 * data/bison.c++: Make the user able to add members to the generated
19042 parser by subclassing.
19043
19044 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
19045
19046 * src/reader.c (read_additionnal_code): `c' should be an integer, not
19047 a character.
19048 Reported by Nicolas Tisserand and Nicolas Burrus.
19049
19050 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19051
19052 * src/reader.c: Warn about lacking semi-colons, do not complain.
19053
19054 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19055
19056 * data/bison.c++: Remove a debug line.
19057
19058 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
19059
19060 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
19061 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
19062 provide a default implementation.
19063
19064 2002-03-04 Akim Demaille <akim@epita.fr>
19065
19066 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
19067 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
19068 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
19069 * tests/semantic.at (Parsing Guards): Similarly.
19070 * src/reader.at (readgram): Complain if the last rule is not ended
19071 with a semi-colon.
19072
19073 2002-03-04 Akim Demaille <akim@epita.fr>
19074
19075 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
19076 * src/closure.c: here.
19077 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
19078 RTC.
19079 * src/warshall.h, src/warshall.c: Remove.
19080 * tests/sets.at (Broken Closure): Adjust.
19081
19082 2002-03-04 Akim Demaille <akim@epita.fr>
19083
19084 * src/output.c (output_skeleton): tempdir is const.
19085 bytes_read is unused.
19086
19087 2002-03-04 Akim Demaille <akim@epita.fr>
19088
19089 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19090 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
19091 Update.
19092 From Michael Hayes.
19093
19094 2002-03-04 Akim Demaille <akim@epita.fr>
19095
19096 * src/closure.c (closure): `r' is unused.
19097
19098 2002-03-04 Akim Demaille <akim@epita.fr>
19099
19100 * tests/sets.at (Broken Closure): Add the ending `;'.
19101 * src/reader.at (readgram): Complain if a rule is not ended with a
19102 semi-colon.
19103
19104 2002-03-04 Akim Demaille <akim@epita.fr>
19105
19106 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
19107 (count_sr_conflicts): Use bitset_count.
19108 * src/reduce.c (inaccessable_symbols): Ditto.
19109 (bits_size): Remove.
19110 * src/warshall.h, src/warshall.c: Convert to bitsetv.
19111
19112 2002-03-04 Akim Demaille <akim@epita.fr>
19113
19114 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
19115 * src/reduce.c: Remove the `bitset_zero's following the
19116 `bitset_create's, as now it is performed by the latter.
19117
19118 2002-03-04 Akim Demaille <akim@epita.fr>
19119
19120 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
19121 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
19122 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
19123 latest sources from Michael.
19124
19125 2002-03-04 Akim Demaille <akim@epita.fr>
19126
19127 * src/output.c (output): Don't free the grammar.
19128 * src/reader.c (grammar_free): New.
19129 * src/main.c (main): Call it and don't free symtab here.
19130
19131 2002-03-04 Akim Demaille <akim@epita.fr>
19132
19133 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
19134 before returning.
19135 Reported by Benoit Perrot.
19136
19137 2002-03-04 Akim Demaille <akim@epita.fr>
19138
19139 Use bitset operations when possible, not loops over bits.
19140
19141 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
19142 bitset_or.
19143 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
19144 * src/reduce.c (useless_nonterminals): Formatting changes.
19145 * src/warshall.c (TC): Use bitset_or.
19146
19147 2002-03-04 Akim Demaille <akim@epita.fr>
19148
19149 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
19150 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
19151 Ditto.
19152
19153 2002-03-04 Akim Demaille <akim@epita.fr>
19154
19155 * src/lalr.c (F): Now a bitset*.
19156 Adjust all dependencies.
19157
19158 2002-03-04 Akim Demaille <akim@epita.fr>
19159
19160 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
19161 Adjust all dependencies.
19162
19163 2002-03-04 Akim Demaille <akim@epita.fr>
19164
19165 * src/L0.c, src/LR0.h (nstates): Be size_t.
19166 Adjust comparisons (signed vs unsigned).
19167 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
19168 bitset*.
19169 Adjust all dependencies.
19170
19171 2002-03-04 Akim Demaille <akim@epita.fr>
19172
19173 * src/closure.c (firsts): Now, also a bitset.
19174 Adjust all dependencies.
19175 (varsetsize): Remove, now unused.
19176 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
19177
19178 2002-03-04 Akim Demaille <akim@epita.fr>
19179
19180 * src/print.c: Convert to use bitset.h, not hand coded iterations
19181 over ints.
19182
19183 2002-03-04 Akim Demaille <akim@epita.fr>
19184
19185 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
19186
19187 2002-03-04 Akim Demaille <akim@epita.fr>
19188
19189 * src/closure.c (ruleset): Be a bitset.
19190 (rulesetsize): Remove.
19191
19192 2002-03-04 Akim Demaille <akim@epita.fr>
19193
19194 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19195 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
19196 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
19197 * src/closure.c (fderives): Be an array of bitsets.
19198
19199 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
19200
19201 * data/bison.c++: Merge the two generated headers. Insert a copyright
19202 notice in each output file.
19203
19204 2002-02-28 Akim Demaille <akim@epita.fr>
19205
19206 * data/bison.c++: Copy the prologue of bison.simple to fetch
19207 useful M4 definitions, such as b4_header_guard.
19208
19209 2002-02-25 Akim Demaille <akim@epita.fr>
19210
19211 * src/getargs.c (version): Give the name of the authors, and use a
19212 translator friendly scheme for the bgr
19213 copyright notice.
19214
19215 2002-02-25 Akim Demaille <akim@epita.fr>
19216
19217 * src/output.c (header_output): Remove, now handled completely via
19218 M4.
19219
19220 2002-02-25 Akim Demaille <akim@epita.fr>
19221
19222 * m4/m4.m4: New, from CVS Autoconf.
19223 * configure.in: Invoke it.
19224 * src/output.c (output_skeleton): Use its result instead of the
19225 hard coded name.
19226
19227 2002-02-25 Akim Demaille <akim@epita.fr>
19228
19229 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
19230 Fileutils 4.1.5.
19231 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
19232 * src/output.c (output_skeleton): Use mkstemp to create a real
19233 temporary file.
19234 Move the filling of `skeleton' and its muscle to...
19235 (prepare): here.
19236 (output): Move the definition of the prologue muscle to...
19237 (prepare): here.
19238 * src/system.h (DEFAULT_TMPDIR): New.
19239
19240 2002-02-14 Paul Eggert <eggert@twinsun.com>
19241
19242 Remove the support for C++ namespace cleanliness; it was
19243 causing more problems than it was curing, since it didn't work
19244 properly on some nonstandard C++ compilers. This can wait
19245 for a proper C++ parser.
19246
19247 * NEWS: Document this.
19248 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
19249 of C++, as it's treated like C now.
19250 * src/bison.simple (YYSTD): Remove.
19251 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
19252 Treat C++ just like Standard C instead of trying to support
19253 namespace cleanliness.
19254
19255 2002-02-14 Akim Demaille <akim@epita.fr>
19256
19257 * tests/regression.at (else): Adjust to Andreas' change.
19258
19259 2002-02-14 Akim Demaille <akim@epita.fr>
19260
19261 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
19262
19263 2002-02-13 Andreas Schwab <schwab@suse.de>
19264
19265 * src/output.c (output_rule_data): Don't output NULL, it might
19266 not be defined yet.
19267
19268 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
19269
19270 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
19271 (Copyright notice): Update.
19272
19273 2002-02-11 Akim Demaille <akim@epita.fr>
19274
19275 * tests/regression.at (%nonassoc and eof): Don't include
19276 nonportable headers.
19277
19278 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
19279
19280 * data/bison.c++: Correct error recovery. Make the user able to
19281 initialize the starting location.
19282
19283 2002-02-07 Akim Demaille <akim@epita.fr>
19284
19285 * tests/input.at: New.
19286
19287 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19288
19289 * data/bison.c++: Replace some direct m4 expansions by constants. Be
19290 more consistent when naming methods and variables. Put preprocessor
19291 directives around tables only needed for debugging.
19292
19293 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19294
19295 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
19296 C++ parsers.
19297 (yy::b4_name::parse): Use print_.
19298
19299 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19300
19301 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
19302
19303 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
19304
19305 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
19306 C++ parsers.
19307 (yy::b4_name::parse): Build verbose error messages, and use error_.
19308
19309 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
19310
19311 * data/bison.c++: Fix m4 quoting in comments.
19312
19313 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
19314
19315 * data/bison.c++: Adjust the parser code. Fix some muscles that were
19316 not expanded by m4.
19317
19318 2002-02-05 Akim Demaille <akim@epita.fr>
19319
19320 * data/bison.c++: Adjust to the M4 back end.
19321 More is certainly needed.
19322
19323 2002-02-05 Akim Demaille <akim@epita.fr>
19324
19325 Give a try to M4 as a back end.
19326
19327 * lib/readpipe.c: New, from wdiff.
19328 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
19329 BISON_HAIRY.
19330 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
19331 specific values. Now it is m4 that performs the lookup.
19332 * src/parse-skel.y: Remove.
19333 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
19334 * src/output.c (actions_output, guards_output)
19335 (token_definitions_output): No longer keeps track of the output
19336 line number, hence remove the second argument.
19337 (guards_output): Check against the guard member of a rule, not the
19338 action member.
19339 Adjust callers.
19340 (output_skeleton): Don't look for the skeleton location, let m4 do
19341 that.
19342 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
19343 file will be used.
19344 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
19345 (prepare): Given that for the time being changesyntax is not
19346 usable in M4, rename the muscles using `-' to `_'.
19347 Define `defines_flag', `output_parser_name' and `output_header_name'.
19348 * src/output.h (actions_output, guards_output)
19349 (token_definitions_output): Adjust prototypes.
19350 * src/scan-skel.l: Instead of scanning the skeletons, it now
19351 processes the output of m4: `__oline__' and `#output'.
19352 * data/bison.simple: Adjust to be used by M4(sugar).
19353 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
19354 to date.
19355 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
19356 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
19357 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
19358 shamelessly stolen from CVS Autoconf.
19359
19360 2002-02-05 Akim Demaille <akim@epita.fr>
19361
19362 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
19363 * configure.in: Check for the declarations of free and malloc.
19364 * src/muscle_tab.c: Adjust.
19365
19366 2002-02-05 Akim Demaille <akim@epita.fr>
19367
19368 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
19369 which have no values.
19370
19371 2002-02-05 Akim Demaille <akim@epita.fr>
19372
19373 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
19374 * data/: here.
19375
19376 2002-01-29 Paul Eggert <eggert@twinsun.com>
19377
19378 * src/bison.simple (YYSIZE_T): Do not define merely because
19379 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
19380 On some platforms, <alloca.h> does not declare YYSTD (size_t).
19381
19382 2002-01-27 Akim Demaille <akim@epita.fr>
19383
19384 Fix `%nonassoc and eof'.
19385
19386 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
19387 which were not properly copied! Replace
19388 memcpy (res->errs, src->errs, src->nerrs);
19389 with
19390 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
19391 !!!
19392 * tests/regression.at (%nonassoc and eof): Adjust to newest
19393 Autotest: `.' is not in the PATH.
19394
19395 2002-01-27 Akim Demaille <akim@epita.fr>
19396
19397 * tests/sets.at (AT_EXTRACT_SETS): New.
19398 (Nullable): Use it.
19399 (Firsts): New.
19400
19401 2002-01-26 Akim Demaille <akim@epita.fr>
19402
19403 * tests/actions.at, tests/calc.at, tests/headers.at,
19404 * tests/torture.at: Adjust to the newest Autotest which no longer
19405 forces `.' in the PATH.
19406
19407 2002-01-25 Akim Demaille <akim@epita.fr>
19408
19409 * tests/regression.at (%nonassoc and eof): New.
19410 Suggested by Robert Anisko.
19411
19412 2002-01-24 Akim Demaille <akim@epita.fr>
19413
19414 Bison dumps core when trying to complain about broken input files.
19415 Reported by Cris van Pelt.
19416
19417 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
19418 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
19419 into...
19420 (Invalid inputs): Strengthen: exercise parse_percent_token.
19421
19422 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
19423
19424 * src/Makefile.am: Add bison.c++.
19425 * src/bison.c++: New skeleton.
19426
19427 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
19428
19429 * po/it.po: New.
19430
19431 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
19432
19433 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
19434
19435 2002-01-20 Marc Autret <marc@gnu.org>
19436
19437 * src/files.c (compute_output_file_names): Fix
19438
19439 2002-01-20 Marc Autret <marc@gnu.org>
19440
19441 * tests/output.at: New test.
19442 * src/files.c (compute_base_names): Don't map extensions when
19443 the YACC flag is set, use defaults.
19444 Reported by Evgeny Stambulchik.
19445
19446 2002-01-20 Marc Autret <marc@gnu.org>
19447
19448 * src/system.h: Need to define __attribute__ away for non-GCC
19449 compilers as well (i.e., the vendor C compiler).
19450 Suggested by Albert Chin-A-Young.
19451
19452 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
19453
19454 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
19455 canonical definition.
19456 * src/system.h: Use the canonical definition for PARAMS (avoids
19457 a conflict with the macro from lib/hash.h).
19458
19459 2002-01-11 Akim Demaille <akim@epita.fr>
19460
19461 * configure.in: Use AC_FUNC_STRNLEN.
19462 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
19463
19464 2002-01-09 Akim Demaille <akim@epita.fr>
19465
19466 * src/files.c, src/files.h (output_infix): New.
19467 (tab_extension): Remove.
19468 (compute_base_names): Compute the former, drop the latter.
19469 * src/output.c (prepare): Insert the muscles `output-infix', and
19470 `output-suffix'.
19471 * src/parse-skel.y (string, string.1): New.
19472 (section.header): Use it.
19473 (section.yacc): Remove.
19474 (prefix): Remove too.
19475 * src/scan-skel.l: Adjust.
19476 * src/bison.simple, src/bison.hairy: Adjust.
19477
19478 2002-01-09 Akim Demaille <akim@epita.fr>
19479
19480 * configure.in (WERROR_CFLAGS): Compute it.
19481 * src/Makefile.am (CFLAGS): Pass it.
19482 * tests/atlocal.in (CFLAGS): Idem.
19483 * src/files.c: Fix a few warnings.
19484 (get_extension_index): Remove, unused.
19485
19486 2002-01-08 Akim Demaille <akim@epita.fr>
19487
19488 * src/getargs.c (AS_FILE_NAME): New.
19489 (getargs): Use it to convert DOSish file names.
19490 * src/files.c (base_name): Rename as full_base_name to avoid
19491 clashes with `base_name ()'.
19492 (filename_split): New.
19493 (compute_base_names): N-th rewrite, using filename_split.
19494
19495 2002-01-08 Akim Demaille <akim@epita.fr>
19496
19497 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
19498 New, stolen from the Fileutils 4.1.
19499 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19500 * configure.in: Check for the presence of memrchr, and of its
19501 prototype.
19502
19503 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
19504
19505 * lib/hash.h (__P): Added definition for this macro.
19506 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
19507 BUILT_SOURCES, to ensure they are generated first.
19508 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
19509 %error-verbose to allow bootstrapping with bison 1.30x.
19510
19511 2002-01-06 Akim Demaille <akim@epita.fr>
19512
19513 * src/reader.c (parse_braces): Don't fetch the next char, the
19514 convention is to fetch on entry.
19515 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
19516 'switch' without a following semicolon.
19517 * tests/regression.at (braces parsing): New.
19518
19519 2002-01-06 Akim Demaille <akim@epita.fr>
19520
19521 Bison is dead wrong in its RR conflict reports.
19522
19523 * tests/torture.at (GNU Cim Grammar): New.
19524 * src/conflicts.c (count_rr_conflicts): Fix.
19525
19526 2002-01-06 Akim Demaille <akim@epita.fr>
19527
19528 Creating package.m4 from configure.ac causes too many problems.
19529
19530 * tests/Makefile.am (package.m4): Create it by hand,
19531 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
19532
19533 2002-01-06 Akim Demaille <akim@epita.fr>
19534
19535 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
19536 skeleton.h.
19537
19538 2002-01-04 Paul Eggert <eggert@twinsun.com>
19539
19540 * doc/bison.texinfo (Debugging):
19541 Remove YYSTDERR; it's no longer defined or used.
19542 Also, s/cstdio.h/cstdio/.
19543
19544 2002-01-03 Akim Demaille <akim@epita.fr>
19545
19546 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
19547
19548 2002-01-03 Akim Demaille <akim@epita.fr>
19549
19550 * src/parse-skel.y (process_skeleton): Don't bind the parser's
19551 tracing code to --trace, wait for a better --trace option, with
19552 args.
19553
19554 2002-01-03 Akim Demaille <akim@epita.fr>
19555
19556 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
19557 The ISO C++ standard is extremely clear about it: stderr is
19558 considered a macro, not a regular symbol (see table 94 `Header
19559 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
19560 Therefore std:: does not apply to it. It still does with fprintf.
19561 Also, s/cstdio.h/cstdio/.
19562
19563 2002-01-03 Akim Demaille <akim@epita.fr>
19564
19565 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
19566 for non system headers.
19567
19568 2002-01-02 Akim Demaille <akim@epita.fr>
19569
19570 Equip the skeleton chain with location tracking, runtime trace,
19571 pure parser and scanner.
19572
19573 * src/parse-skel.y: Request a pure parser, locations, and prefix
19574 renaming.
19575 (%union): Having several members with the same type does not help
19576 type mismatches, simplify.
19577 (YYPRINT, yyprint): New.
19578 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
19579 (skel_error): this.
19580 Handle locations.
19581 * src/scan-skel.l: Adjust to these changes.
19582 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
19583 (LOCATION_PRINT, skel_control_t): New.
19584
19585 2001-12-30 Akim Demaille <akim@epita.fr>
19586
19587 * src/parse-skel.y: Get rid of the shift/reduce conflict:
19588 replace `gb' with BLANKS.
19589 * src/scan-skel.l: Adjust.
19590
19591 2001-12-30 Akim Demaille <akim@epita.fr>
19592
19593 * src/system.h: We don't need nor want bcopy.
19594 Throw away MS-DOS crap: we don't need getpid.
19595 * configure.in: We don't need strndup. It was even causing
19596 problems: because Flex includes the headers *before* us,
19597 _GNU_SOURCE is not defined by config.h, and therefore strndup was
19598 not visible.
19599 * lib/xstrndup.c: New.
19600 * src/scan-skel.l: Use it.
19601 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
19602 * src/parse-skel.y: Use %directives instead of #defines.
19603
19604 2001-12-30 Akim Demaille <akim@epita.fr>
19605
19606 * src/skeleton.h: New.
19607 * src/output.c (output_parser, output_master_parser): Remove, dead
19608 code.
19609 * src/output.h (get_lines_number, actions_output, guards_output)
19610 (token_definitions_output): Prototype them.
19611 * src/parse-skel.y: Add the license notice.
19612 Include output.h and skeleton.h.
19613 (process_skeleton): Returns void, and takes a single parameter.
19614 * src/scan-skel.l: Add the license notice.
19615 Include skeleton.h.
19616 Don't use %option yylineno: it seems that then Flex imagines
19617 REJECT has been used, and therefore it won't reallocate its
19618 buffers (which makes no other sense to me than a bug). It results
19619 in warnings for `unused: yy_flex_realloc'.
19620
19621 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
19622
19623 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
19624 (MUSCLE_INSERT_PREFIX): ...to there.
19625 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
19626 (MUSCLE_INSERT_PREFIX): Move from here...
19627
19628 * src/bison.hairy: Add a section directive. Put braces around muscle
19629 names. This parser skeleton is still broken, but Bison should not
19630 choke on a bad muscle 'syntax'.
19631 * src/bison.simple: Add a section directive. Put braces around muscle
19632 names.
19633
19634 * src/files.h (strsuffix, stringappend): Add declarations.
19635 (tab_extension): Add declaration.
19636 (short_base_name): Add declaration.
19637
19638 * src/files.c (strsuffix, stringappend): No longer static. These
19639 functions are used in the skeleton parser.
19640 (tab_extension): New.
19641 (compute_base_names): Use the computations done in this function
19642 to guess if the generated parsers should have '.tab' in their
19643 names.
19644 (short_base_name): No longer static.
19645
19646 * src/output.c (output_skeleton): New.
19647 (output): Disable call to output_master_parser, and give a try to
19648 a new skeleton handling system.
19649 (guards_output, actions_output): No longer static.
19650 (token_definitions_output, get_lines_number): No longer static.
19651
19652 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
19653
19654 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
19655 parse-skel.y.
19656
19657 * src/parse-skel.y: New file.
19658 * src/scan-skel.l: New file.
19659
19660 2001-12-29 Akim Demaille <akim@epita.fr>
19661
19662 %name-prefix is broken.
19663
19664 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
19665 Adjust all dependencies.
19666 * tests/headers.at (export YYLTYPE): Strengthen this test: use
19667 %name-prefix.
19668
19669 Renaming yylval but not yylloc is not consistent. Now we do.
19670
19671 * src/bison.simple: Prefix yylloc if used.
19672 * doc/bison.texinfo (Decl Summary): Document that.
19673
19674 2001-12-29 Akim Demaille <akim@epita.fr>
19675
19676 * doc/bison.texinfo: Promote `%long-directive' over
19677 `%long_directive'.
19678 Remove all references to fixed-output-files, yacc is enough.
19679
19680 2001-12-29 Akim Demaille <akim@epita.fr>
19681
19682 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
19683 user prologue. These are defaults.
19684 * tests/actions.at (Mid-rule actions): Make sure the user can
19685 define YYDEBUG and YYERROR_VERBOSE.
19686
19687 2001-12-29 Akim Demaille <akim@epita.fr>
19688
19689 * src/output.c (header_output): Don't forget to export YYLTYPE and
19690 yylloc.
19691 * tests/headers.at (export YYLTYPE): New, make sure it does.
19692 * tests/regression.at (%union and --defines, Invalid CPP headers):
19693 Move to...
19694 * tests/headers.at: here.
19695
19696 2001-12-29 Akim Demaille <akim@epita.fr>
19697
19698 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
19699
19700 2001-12-29 Akim Demaille <akim@epita.fr>
19701
19702 * tests/actions.at (Mid-rule actions): Output on a single line
19703 instead of several.
19704
19705 2001-12-29 Akim Demaille <akim@epita.fr>
19706
19707 * doc/bison.texinfo: Formatting changes.
19708
19709 2001-12-29 Akim Demaille <akim@epita.fr>
19710
19711 Don't store the token defs in a muscle, just be ready to output it
19712 on command. Now possible via `symbols'. Fixes a memory leak.
19713
19714 * src/output.c (token_definitions_output): New.
19715 (output_parser, header_output): Use it.
19716 * src/reader.c (symbols_save): Remove.
19717
19718 2001-12-29 Akim Demaille <akim@epita.fr>
19719
19720 * src/bison.simple: Do not provide a default for YYSTYPE and
19721 YYLTYPE before the user's prologue. Otherwise it's hardly... a
19722 default.
19723
19724 2001-12-29 Akim Demaille <akim@epita.fr>
19725
19726 Mid-rule actions are simply... ignored!
19727
19728 * src/reader.c (readgram): Be sure to attach mid-rule actions to
19729 the empty-rule associated to the dummy symbol, not to the host
19730 rule.
19731 * tests/actions.at (Mid-rule actions): New.
19732
19733 2001-12-29 Akim Demaille <akim@epita.fr>
19734
19735 Memory leak.
19736
19737 * src/reader.c (reader): Free grammar.
19738
19739 2001-12-29 Akim Demaille <akim@epita.fr>
19740
19741 Memory leak.
19742
19743 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
19744 since it allocates it for each state, although only one is needed.
19745 (allocate_storage): Do it here.
19746
19747 2001-12-29 Akim Demaille <akim@epita.fr>
19748
19749 * src/options.h, src/options.c (create_long_option_table): Rename
19750 as...
19751 (long_option_table_new): this, with a clearer prototype.
19752 (percent_table): Remove, unused,
19753 * src/getargs.c (getargs): Adjust.
19754
19755 2001-12-29 Akim Demaille <akim@epita.fr>
19756
19757 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
19758 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
19759 as states.
19760
19761 2001-12-29 Akim Demaille <akim@epita.fr>
19762
19763 * src/lalr.c (build_relations): Rename `states' as `states1'.
19764 Sorry, I don't understand exactly what it is, no better name...
19765
19766 2001-12-29 Akim Demaille <akim@epita.fr>
19767
19768 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
19769 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
19770 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
19771 as rules.
19772
19773 2001-12-29 Akim Demaille <akim@epita.fr>
19774
19775 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
19776 ago.
19777
19778 2001-12-29 Akim Demaille <akim@epita.fr>
19779
19780 * src/reader.c, src/reader.h (user_toknums): Remove.
19781 Adjust all users to use symbols[i]->user_token_number.
19782
19783 2001-12-29 Akim Demaille <akim@epita.fr>
19784
19785 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
19786 Adjust all users to use symbols[i]->prec or ->assoc.
19787
19788 2001-12-29 Akim Demaille <akim@epita.fr>
19789
19790 * src/reader.c, src/reader.h (tags): Remove.
19791 Adjust all users to use symbols[i]->tag.
19792
19793 2001-12-29 Akim Demaille <akim@epita.fr>
19794
19795 * src/gram.h, src/gram.c (symbols): New, similar to state_table
19796 and rule_table.
19797 * src/reader.c (packsymbols): Fill this table.
19798 Drop sprec.
19799 * src/conflicts.c (resolve_sr_conflict): Adjust.
19800 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
19801 single table.
19802 Use symbols[i]->tag instead of tags[i].
19803
19804 2001-12-29 Akim Demaille <akim@epita.fr>
19805
19806 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
19807 In addition, put a comment in there, to replace...
19808 * tests/regression.at (%union and C comments): Remove.
19809
19810 2001-12-29 Akim Demaille <akim@epita.fr>
19811
19812 * tests/regression.at (Web2c Actions): Blindly move the actual
19813 output as expected output. The contents *seem* right to me, but I
19814 can't pretend reading perfectly parser tables... Nonetheless, all
19815 the other tests pass correctly, the table look OK, even though the
19816 presence of `$axiom' is to be noted: AFAICS it is useless (but
19817 harmless).
19818
19819 2001-12-29 Akim Demaille <akim@epita.fr>
19820
19821 * src/reader.c (readgram): Don't add the rule 0 if there were no
19822 rules read. In other words, add it _after_ having performed
19823 grammar sanity checks.
19824 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
19825
19826 2001-12-29 Akim Demaille <akim@epita.fr>
19827
19828 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
19829 visible, and some states have now a different number.
19830
19831 2001-12-29 Akim Demaille <akim@epita.fr>
19832
19833 * src/reader.c (readgram): Bind the initial rule's lineno to that
19834 of the first rule.
19835 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
19836 (Solved SR Conflicts): Adjust rule 0's line number.
19837
19838 2001-12-29 Akim Demaille <akim@epita.fr>
19839
19840 Fix the `GAWK Grammar' failure.
19841
19842 * src/LR0.c (final_state): Initialize to -1 so that we do compute
19843 the reductions of the first state which was mistakenly confused
19844 with the final state because precisely final_state was initialized
19845 to 0.
19846 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
19847 now noticed by Bison.
19848 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
19849 have a reduction on $default.
19850
19851 2001-12-29 Akim Demaille <akim@epita.fr>
19852
19853 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
19854 rule line numbers.
19855 * src/closure.c (print_closure): Likewise.
19856 * src/derives.c (print_derives): Likewise.
19857 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
19858 now.
19859
19860 2001-12-29 Akim Demaille <akim@epita.fr>
19861
19862 * src/lalr.c (lookaheads_print): New.
19863 (lalr): Call it when --trace-flag.
19864 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
19865 are dumped.
19866
19867 2001-12-29 Akim Demaille <akim@epita.fr>
19868
19869 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
19870 when walking through ritem, even via rule->rhs.
19871 * src/reduce.c (dump_grammar, useful_production, reduce_output)
19872 (useful_production, useless_nonterminals): Likewise.
19873 (reduce_grammar_tables): Likewise, plus update nritems.
19874 * src/nullable.c (set_nullable): Likewise.
19875 * src/lalr.c (build_relations): Likewise.
19876 * tests/sets.at (Nullable): Adjust.
19877 Fortunately, now, the $axiom is no longer nullable.
19878
19879 2001-12-29 Akim Demaille <akim@epita.fr>
19880
19881 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
19882 the 0-sentinel.
19883 * src/gram.c (ritem_longest_rhs): Likewise.
19884 * src/reduce.c (nonterminals_reduce): Likewise.
19885 * src/print_graph.c (print_graph): Likewise.
19886 * src/output.c (output_rule_data): Likewise.
19887 * src/nullable.c (set_nullable): Likewise.
19888
19889 2001-12-29 Akim Demaille <akim@epita.fr>
19890
19891 * src/output.c: Comment changes.
19892
19893 2001-12-27 Paul Eggert <eggert@twinsun.com>
19894
19895 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
19896 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
19897 Sparc, as they were causing more porting problems than the
19898 (minor) performance improvement was worth.
19899
19900 Also, catch up with 1.31's YYSTD.
19901
19902 2001-12-27 Akim Demaille <akim@epita.fr>
19903
19904 * src/output.c (output_gram): Rely on nritems, not the
19905 0-sentinel. See below.
19906 Use -1 as separator, not 0.
19907 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
19908 Rely on -1 as separator in yyrhs, instead of 0.
19909 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
19910 twice `Now at end of input', therefore there are two lines less to
19911 expect.
19912
19913 2001-12-27 Akim Demaille <akim@epita.fr>
19914
19915 * tests/regression.at (Unresolved SR Conflicts):
19916 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
19917 below.
19918
19919 2001-12-27 Akim Demaille <akim@epita.fr>
19920
19921 * src/LR0.c (new_state): Recognize the final state by the fact it
19922 is reached by eoftoken.
19923 (insert_start_shifting_state, insert_eof_shifting_state)
19924 (insert_accepting_state, augment_automaton): Remove, since now
19925 these states are automatically computed from the initial state.
19926 (generate_states): Adjust.
19927 * src/print.c: When reporting a rule number to the user, substract
19928 1, so that the axiom rule is rule 0, and the first user rule is 1.
19929 * src/reduce.c: Likewise.
19930 * src/print_graph.c (print_core): For the time being, just as for
19931 the report, depend upon --trace-flags to dump the full set of
19932 items.
19933 * src/reader.c (readgram): Once the grammar read, insert the rule
19934 0: `$axiom: START-SYMBOL $'.
19935 * tests/set.at: Adjust: rule 0 is now displayed, and since the
19936 number of the states has changed (the final state is no longer
19937 necessarily the last), catch up.
19938
19939 2001-12-27 Akim Demaille <akim@epita.fr>
19940
19941 Try to make the use of the eoftoken valid. Given that its value
19942 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
19943 is used instead of > 0 where appropriate, (ii), depend upon nritems
19944 instead of the 0-sentinel.
19945
19946 * src/gram.h, src/gram.c (nritems): New.
19947 Expected to be duplication of nitems, but for the time being...
19948 * src/reader.c (packgram): Assert nritems and nitems are equal.
19949 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
19950 * src/closure.c (print_closure, print_fderives): Likewise.
19951 * src/gram.c (ritem_print): Likewise.
19952 * src/print.c (print_core, print_grammar): Likewise.
19953 * src/print_graph.c: Likewise.
19954
19955 2001-12-27 Akim Demaille <akim@epita.fr>
19956
19957 * src/main.c (main): If there are complains after grammar
19958 reductions, then output the report anyway if requested, then die.
19959 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
19960 * src/reader.c (eoftoken): New.
19961 (parse_token_decl): If the token being defined has value `0', it
19962 is the eoftoken.
19963 (packsymbols): No longer hack `tags' to insert `$' by hand.
19964 Be sure to preserve the value of the eoftoken.
19965 (reader): Make sure eoftoken is defined.
19966 Initialize nsyms to 0: now eoftoken is created just like the others.
19967 * src/print.c (print_grammar): Don't special case the eof token.
19968 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
19969 lie anyway, albeit pleasant.
19970 * tests/calc.at: Exercise error messages with eoftoken.
19971 Change the grammar so that empty input is invalid.
19972 Adjust expectations.
19973 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
19974
19975 2001-12-27 Akim Demaille <akim@epita.fr>
19976
19977 * configure.in: Check the protos of strchr ans strspn.
19978 Replace strchr if needed.
19979 * src/system.h: Provide the protos of strchr, strspn and memchr if
19980 missing.
19981 * lib/strchr.c: New.
19982 * src/reader.c (symbols_save): Use strchr.
19983
19984 2001-12-27 Akim Demaille <akim@epita.fr>
19985
19986 * src/print.c, src/print_graph.c (escape): New.
19987 Use it to quote the TAGS outputs.
19988 * src/print_graph.c (print_state): Now errors are in red, and
19989 reductions in green.
19990 Prefer high to wide: output the state number on a line of its own.
19991
19992 2001-12-27 Akim Demaille <akim@epita.fr>
19993
19994 * src/state.h, src/state.c (reductions_new): New.
19995 * src/LR0.c (set_state_table): Let all the states have a
19996 `reductions', even if reduced to 0.
19997 (save_reductions): Adjust.
19998 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
19999 * src/print.c (print_reductions, print_actions): Adjust.
20000 * src/output.c (action_row): Adjust.
20001
20002 2001-12-27 Akim Demaille <akim@epita.fr>
20003
20004 * src/state.h, src/state.c (errs_new, errs_dup): New.
20005 * src/LR0.c (set_state_table): Let all the states have an errs,
20006 even if reduced to 0.
20007 * src/print.c (print_errs, print_reductions): Adjust.
20008 * src/output.c (output_actions, action_row): Adjust.
20009 * src/conflicts.c (resolve_sr_conflict): Adjust.
20010
20011 2001-12-27 Akim Demaille <akim@epita.fr>
20012
20013 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
20014
20015 2001-12-27 Akim Demaille <akim@epita.fr>
20016
20017 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
20018 * src/print.c: here.
20019 (lookaheadset, shiftset): New, used as additional storage by
20020 print_reductions.
20021 (print_results): Adjust.
20022 (print_shifts, print_gotos, print_errs): New, extracted from...
20023 (print_actions): here.
20024 * src/print_graph.c (print_actions): Remove dead code.
20025
20026 2001-12-27 Akim Demaille <akim@epita.fr>
20027
20028 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
20029 `$n' and `@n'.
20030
20031 2001-12-27 Akim Demaille <akim@epita.fr>
20032
20033 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
20034 (build_relations): Adjust.
20035
20036 2001-12-27 Akim Demaille <akim@epita.fr>
20037
20038 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
20039 duplication.
20040
20041 2001-12-27 Akim Demaille <akim@epita.fr>
20042
20043 * src/reader.c (packgram): Catch nitems overflows.
20044
20045 2001-12-27 Akim Demaille <akim@epita.fr>
20046
20047 * src/files.c, src/files.h (guard_obstack): Remove.
20048 * src/output.c (output): Adjust.
20049 * src/reader.c (parse_braces): New, factoring...
20050 (copy_action, copy_guard): these two which are renamed as...
20051 (parse_action, parse_guard): these.
20052 As a voluntary consequence, using braces around guards is now
20053 mandatory.
20054
20055 2001-12-27 Akim Demaille <akim@epita.fr>
20056
20057 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
20058 * src/reader.c (symbol_list): `guard' and `guard_line' are new
20059 members.
20060 (symbol_list_new): Adjust.
20061 (copy_action): action_line is the first line, not the last.
20062 (copy_guard): Just as for actions, store the `action' only, not
20063 the switch/case/break flesh.
20064 Don't parse the user action that might follow the guard, let...
20065 (readgram): do it, i.e., now, there can be an action after a
20066 guard.
20067 In other words the guard is just explicitly optional.
20068 (packgram): Adjust.
20069 * src/output.c (guards_output): New.
20070 (output_parser): Call it when needed.
20071 (output): Also free the guard and attrs obstacks.
20072 * src/files.c, src/files.h (obstack_save): Remove.
20073 (output_files): Remove.
20074 As a result, if one needs the former `.act' file, using an
20075 appropriate skeleton which requires actions and guards is now
20076 required.
20077 * src/main.c (main): Adjust.
20078 * tests/semantic.at: New.
20079 * tests/regression.at: Use `input.y' as input file name.
20080 Avoid 8+3 problems by requiring input.c when the test needs the
20081 parser.
20082
20083 2001-12-27 Akim Demaille <akim@epita.fr>
20084
20085 * src/reader.c (symbol_list_new): Be sure to initialize all the
20086 fields.
20087
20088 2001-12-27 Akim Demaille <akim@epita.fr>
20089
20090 All the hacks using a final pseudo state are now useless.
20091
20092 * src/LR0.c (set_state_table): state_table holds exactly nstates.
20093 * src/lalr.c (nLA): New.
20094 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
20095 instead of lookaheadsp from the pseudo state (nstate + 1).
20096
20097 2001-12-27 Akim Demaille <akim@epita.fr>
20098
20099 * src/output.c (action_row, token_actions): Use a state_t instead
20100 of a integer, and nlookaheads instead of the following state's
20101 lookaheadsp.
20102
20103 2001-12-27 Akim Demaille <akim@epita.fr>
20104
20105 * src/conflicts.c (log_resolution, flush_shift)
20106 (resolve_sr_conflict, set_conflicts, solve_conflicts)
20107 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
20108 (conflicts_print, print_reductions): Use a state_t instead of an
20109 integer when referring to a state.
20110 As much as possible, depend upon nlookaheads, instead of the
20111 `lookaheadsp' member of the following state (since lookaheads of
20112 successive states are successive, the difference between state n + 1
20113 and n served as the number of lookaheads for state n).
20114 * src/lalr.c (add_lookback_edge): Likewise.
20115 * src/print.c (print_core, print_actions, print_state)
20116 (print_results): Likewise.
20117 * src/print_graph.c (print_core, print_actions, print_state)
20118 (print_graph): Likewise.
20119 * src/conflicts.h: Adjust.
20120
20121 2001-12-27 Akim Demaille <akim@epita.fr>
20122
20123 * src/bison.hairy: Formatting/comment changes.
20124 ANSIfy.
20125 Remove `register' indications.
20126 Add plenty of `static'.
20127
20128 2001-12-27 Akim Demaille <akim@epita.fr>
20129
20130 * src/output.c (prepare): Drop the muscle `ntbase' which
20131 duplicates ntokens.
20132 * src/bison.simple: Formatting/comment changes.
20133 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
20134 is an undocumented synonym.
20135
20136 2001-12-22 Akim Demaille <akim@epita.fr>
20137
20138 * src/output.c (output_table_data): Change the prototype to use
20139 `int' for array ranges: some invocations do pass an int, not a
20140 short.
20141 Reported by Wayne Green.
20142
20143 2001-12-22 Akim Demaille <akim@epita.fr>
20144
20145 Some actions of web2c.y are improperly triggered.
20146 Reported by Mike Castle.
20147
20148 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
20149 * tests/regression.at (Web2c): Rename as...
20150 (Web2c Report): this.
20151 (Web2c Actions): New.
20152
20153 2001-12-22 Akim Demaille <akim@epita.fr>
20154
20155 Reductions in web2c.y are improperly reported.
20156 Reported by Mike Castle.
20157
20158 * src/conflicts.c (print_reductions): Fix.
20159 * tests/regression.at (Web2c): New.
20160
20161 2001-12-18 Akim Demaille <akim@epita.fr>
20162
20163 Some host fail on `assert (!"foo")', which expands to
20164 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
20165 Reported by Nelson Beebee.
20166
20167 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
20168 `#define it_succeeded 0' and `assert (it_succeeded)'.
20169
20170 2001-12-17 Marc Autret <autret_m@epita.fr>
20171
20172 * src/bison.simple: Don't hard code the skeleton line and filename.
20173 * src/output.c (output_parser): Rename 'line' as 'output_line'.
20174 New line counter 'skeleton_line' (skeleton-line muscle).
20175
20176 2001-12-17 Paul Eggert <eggert@twinsun.com>
20177
20178 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
20179 YYDEBUG must be defined to a nonzero value.
20180
20181 * src/bison.simple (yytname): Do not assume that the user defines
20182 YYDEBUG to a properly parenthesized expression.
20183
20184 2001-12-17 Akim Demaille <akim@epita.fr>
20185
20186 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
20187 nlookaheads is a new member.
20188 Adjust all users.
20189 * src/lalr.h (nlookaheads): Remove this orphan declaration.
20190 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
20191 state.
20192
20193 2001-12-17 Akim Demaille <akim@epita.fr>
20194
20195 * src/files.h, src/files.c (open_files, close_files): Remove.
20196 * src/main.c (main): Don't open/close files, nor invoke lex_free,
20197 let...
20198 * src/reader.c (reader): Do it.
20199
20200 2001-12-17 Akim Demaille <akim@epita.fr>
20201
20202 * src/conflicts.c (print_reductions): Formatting changes.
20203
20204 2001-12-17 Akim Demaille <akim@epita.fr>
20205
20206 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
20207 (flush_reduce): New.
20208 (resolve_sr_conflict): Adjust.
20209
20210 2001-12-17 Akim Demaille <akim@epita.fr>
20211
20212 * src/output.c (output_obstack): Be static and rename as...
20213 (format_obstack): this, to avoid any confusion with files.c's
20214 output_obstack.
20215 * src/reader.h (muscle_obstack): Move to...
20216 * src/output.h: here, since it's defined in output.c.
20217
20218 2001-12-17 Akim Demaille <akim@epita.fr>
20219
20220 * src/output.c (action_row, save_column, default_goto)
20221 (sort_actions, matching_state, pack_vector): Better variable
20222 locality.
20223
20224 2001-12-17 Akim Demaille <akim@epita.fr>
20225
20226 * src/output.c: Various formatting changes.
20227
20228 2001-12-17 Akim Demaille <akim@epita.fr>
20229
20230 * src/files.c (output_files): Free the output_obstack.
20231 * src/main.c (main): Call print and print_graph conditionally.
20232 * src/print.c (print): Work unconditionally.
20233 * src/print_graph.c (print_graph): Work unconditionally.
20234 * src/conflicts.c (log_resolution): Output only if verbose_flag.
20235
20236 2001-12-16 Marc Autret <autret_m@epita.fr>
20237
20238 * src/output.c (actions_output): Fix. When we use %no-lines,
20239 there is one less line per action.
20240
20241 2001-12-16 Marc Autret <autret_m@epita.fr>
20242
20243 * src/bison.simple: Remove a useless #line directive.
20244 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
20245 * src/output.c (get_lines_number): New.
20246 (output_parser): Adjust, now takes care about the lines of a
20247 output muscles.
20248 Fix line numbering.
20249 (actions_output): Computes the number of lines taken by actions.
20250 (output_master_parser): Insert new skeleton which is the name of
20251 the output parser file name.
20252
20253 2001-12-15 Marc Autret <autret_m@epita.fr>
20254
20255 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
20256
20257 2001-12-15 Marc Autret <autret_m@epita.fr>
20258
20259 * src/output.c (output_gram): Keep track of the hairy one.
20260
20261 2001-12-15 Akim Demaille <akim@epita.fr>
20262
20263 Make `make distcheck' work.
20264
20265 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
20266 system.h which uses libgettext.h.
20267
20268 2001-12-15 Akim Demaille <akim@epita.fr>
20269
20270 * src/nullable.c (set_nullable): Useless rules must be skipped,
20271 otherwise, since we range over their symbols, we might look at a
20272 nonterminal which no longer ``exists'', i.e., it is not counted in
20273 `nvars', hence we overflow our arrays.
20274
20275 2001-12-15 Akim Demaille <akim@epita.fr>
20276
20277 The header can also be produced directly, without any obstack!
20278 Yahoo!
20279
20280 * src/files.c, src/files.h (defines_obstack): Remove.
20281 (compute_header_macro): Global.
20282 (defines_obstack_save): Remove.
20283 * src/reader.c (parse_union_decl): No longer output to
20284 defines_obstack: its content can be found in the `stype' muscle
20285 anyway.
20286 (output_token_translations): Merge into...
20287 (symbols_output): this.
20288 Rename as...
20289 (symbols_save): this.
20290 (reader): Adjust.
20291 * src/output.c (header_output): New.
20292 (output): Call it.
20293
20294 2001-12-15 Akim Demaille <akim@epita.fr>
20295
20296 * src/reader.c (parse_union_decl): Instead of handling two obstack
20297 simultaneously, use one to define the `stype' muscle, and use the
20298 value of the latter to fill defines_obstack.
20299 (copy_comment): Remove.
20300 (copy_comment2): Work for a single obstack.
20301 Rename as...
20302 (copy_comment): this.
20303
20304 2001-12-15 Akim Demaille <akim@epita.fr>
20305
20306 * src/lex.c, src/lex.h (xgetc): No longer static.
20307 * src/reader.c (parse_union_decl): Revamp.
20308
20309 2001-12-15 Akim Demaille <akim@epita.fr>
20310
20311 Still making progress in separating Bison into (i) input, (ii)
20312 process, (iii) output: now we can directly output the parser file
20313 without using table_obstack at all.
20314
20315 * src/files.c, src/files.h (table_obstack): Bye bye.
20316 (parser_file_name): New.
20317 * src/files.c (compute_output_file_names): Compute it.
20318 * src/output.c (actions_output, output_parser)
20319 (output_master_parser): To a file instead of an obstack.
20320
20321 2001-12-15 Akim Demaille <akim@epita.fr>
20322
20323 Attach actions to rules, instead of pre-outputting them to
20324 actions_obstack.
20325
20326 * src/gram.h (rule_t): action and action_line are new members.
20327 * src/reader.c (symbol_list): Likewise.
20328 (copy_action): Save the actions within the rule.
20329 (packgram): Save them in rule_table.
20330 * src/output.c (actions_output): New.
20331 (output_parser): Use it on `%%actions'.
20332 (output_rule_data): Don't free rule_table.
20333 (output): Do it.
20334 (prepare): Don't save the `action' muscle.
20335 * src/bison.simple: s/%%action/%%actions/.
20336
20337 2001-12-15 Akim Demaille <akim@epita.fr>
20338
20339 * src/reader.c (copy_action): When --yacc, don't append a `;'
20340 to the user action: let it fail if lacking.
20341 Suggested by Arnold Robbins and Tom Tromey.
20342
20343 2001-12-14 Akim Demaille <akim@epita.fr>
20344
20345 * src/lex.c (literalchar): Simply return the char you decoded, non
20346 longer mess around with obstacks and int pointers.
20347 Adjust all callers.
20348
20349 2001-12-14 Akim Demaille <akim@epita.fr>
20350
20351 * src/lex.c (literalchar): Don't escape the special characters,
20352 just decode them, and keep them as char (before, eol was output as
20353 the 2 char string `\n' etc.).
20354 * src/output.c (output_rule_data): Use quotearg to output the
20355 token strings.
20356
20357 2001-12-13 Paul Eggert <eggert@twinsun.com>
20358
20359 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
20360 Do not infringe on the global user namespace when using C++.
20361 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
20362 All uses of `fprintf' and `stderr' changed.
20363
20364 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
20365
20366 2001-12-13 Akim Demaille <akim@epita.fr>
20367
20368 The computation of nullable is broken: it doesn't handle empty
20369 RHS's properly.
20370
20371 * tests/torture.at (GNU AWK Grammar): New.
20372 * tests/sets.at (Nullable): New.
20373 * src/nullable.c (set_nullable): Instead of blindly looping over
20374 `ritems', loop over the rules, and then over their rhs's.
20375
20376 Work around Autotest bugs.
20377
20378 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
20379 frame, because Autotest understand lines starting with a `+' as
20380 traces from the shell. Then, they are not processed properly.
20381 Admittedly an Autotest bug, but we don't have time to wait for
20382 Autotest to catch up.
20383 * tests/regression.at (Broken Closure): Adjust to the new table
20384 frames.
20385 Move to...
20386 * tests/sets.at: here.
20387
20388 2001-12-13 Akim Demaille <akim@epita.fr>
20389
20390 * src/closure.c (closure): Use nrules instead of playing tricks
20391 with BITS_PER_WORD.
20392
20393 2001-12-13 Akim Demaille <akim@epita.fr>
20394
20395 * src/print.c (print_actions): Output the handling of `$' as the
20396 traces do: shifting the token EOF. Before EOF was treated as a
20397 nonterminal.
20398 * tests/regression.at: Adjust some tests.
20399 * src/print_graph.c (print_core): Complete the set of items via
20400 closure. The next-to-final and final states are still unsatisfying,
20401 but that's to be addressed elsewhere.
20402 No longer output the rule numbers, but do output the state number.
20403 A single loop for the shifts + gotos is enough, but picked a
20404 distinct color for each.
20405 (print_graph): Initialize and finalize closure.
20406
20407 2001-12-13 Akim Demaille <akim@epita.fr>
20408
20409 * src/reader.c (readgram): Remove dead code, an strip useless
20410 braces.
20411 (get_type): Remove, unused.
20412
20413 2001-12-12 Akim Demaille <akim@epita.fr>
20414
20415 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
20416 on that of lib/error.c.
20417
20418 2001-12-12 Akim Demaille <akim@epita.fr>
20419
20420 Some hosts don't like `/' in includes.
20421
20422 * src/system.h: Include libgettext.h without qualifying the path.
20423 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
20424 $(top_srcdir).
20425
20426 2001-12-11 Marc Autret <autret_m@epita.fr>
20427
20428 * src/output.c (output_parser): Remove useless muscle.
20429
20430 2001-12-11 Marc Autret <autret_m@epita.fr>
20431
20432 * src/bison.simple: Remove #line just before %%epilogue. It
20433 is now handled in ...
20434 * src/reader.c (read_additionnal_code): Add the output of a
20435 #line for the epilogue.
20436
20437 2001-12-10 Marc Autret <autret_m@epita.fr>
20438
20439 * src/reader.c (copy_definition): Re-use CPP-outed code which
20440 replace precedent remove.
20441 * src/bison.simple: Remove #line before %%prologue because
20442 %%input-line is wrong at this time.
20443
20444 2001-12-10 Marc Autret <autret_m@epita.fr>
20445
20446 * src/reader.c (symbols_output): Clean up.
20447 * src/output.c (output_gram, output): Clean up.
20448
20449 2001-12-10 Akim Demaille <akim@epita.fr>
20450
20451 * src/lalr.c (initialize_lookaheads): New. Extracted from...
20452 * src/LR0.c (set_state_table): here.
20453 * src/lalr.c (lalr): Call it.
20454
20455 2001-12-10 Akim Demaille <akim@epita.fr>
20456
20457 * src/state.h (shifts): Remove the `number' member: shifts are
20458 attached to state, hence no longer need to be labelled with a
20459 state number.
20460
20461 2001-12-10 Akim Demaille <akim@epita.fr>
20462
20463 Now that states have a complete set of members, the linked list of
20464 shifts is useless: just fill directly the state's shifts member.
20465
20466 * src/state.h (shifts): Remove the `next' member.
20467 * src/LR0.c (first_state, last_state): Remove.
20468 Adjust the callers.
20469 (augment_automaton): Don't look for the shifts that must be added
20470 a shift on EOF: it is those of the state we looked for! But now,
20471 since shifts are attached, it is no longer needed to looking
20472 merely by its id: its number.
20473
20474 2001-12-10 Akim Demaille <akim@epita.fr>
20475
20476 * src/LR0.c (augment_automaton): Better variable locality.
20477 Remove an impossible branch: if there is a state corresponding to
20478 the start symbol being shifted, then there is shift for the start
20479 symbol from the initial state.
20480
20481 2001-12-10 Akim Demaille <akim@epita.fr>
20482
20483 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
20484 only when appropriate: when insert_start_shifting_state' is not
20485 invoked.
20486 * tests/regression.at (Rule Line Numbers): Adjust.
20487
20488 2001-12-10 Akim Demaille <akim@epita.fr>
20489
20490 * src/LR0.c (augment_automaton): Now that all states have shifts,
20491 merge the two cases addition shifts to the initial state.
20492
20493 2001-12-10 Akim Demaille <akim@epita.fr>
20494
20495 * src/lalr.c (set_state_table): Move to...
20496 * src/LR0.c: here.
20497 * src/lalr.c (lalr): Don't call it...
20498 * src/LR0.c (generate_states): do it.
20499 * src/LR0.h (first_state): Remove, only the table is used.
20500
20501 2001-12-10 Akim Demaille <akim@epita.fr>
20502
20503 * src/LR0.h (first_shift, first_reduction): Remove.
20504 * src/lalr.c: Don't use first_shift: find shifts through the
20505 states.
20506
20507 2001-12-10 Akim Demaille <akim@epita.fr>
20508
20509 * src/LR0.c: Attach shifts to states as soon as they are
20510 computed.
20511 * src/lalr.c (set_state_table): Instead of assigning shifts to
20512 state, just assert that the mapping was properly done.
20513
20514 2001-12-10 Akim Demaille <akim@epita.fr>
20515
20516 * src/LR0.c (insert_start_shift): Rename as...
20517 (insert_start_shifting_state): this.
20518 (insert_eof_shifting_state, insert_accepting_state): New.
20519 (augment_automaton): Adjust.
20520 Better locality of the variables.
20521 When looking if the start_symbol is shifted from the initial
20522 state, using `while (... symbol != start_symbol ...)' sounds
20523 better than `while (... symbol < start_symbol ...)': If fail
20524 to see how the order between symbols could be relevant!
20525
20526 2001-12-10 Akim Demaille <akim@epita.fr>
20527
20528 * src/getargs.h: Don't declare `spec_name_prefix' and
20529 `spec_file_prefix', declared by src/files.h.
20530 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
20531 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
20532 * src/output.c (prepare): Adjust.
20533 * src/reader.c (symbols_output): Likewise.
20534 * src/vmsgetargs.c: Vaguely adjust, but who cares?
20535
20536 2001-12-10 Akim Demaille <akim@epita.fr>
20537
20538 * src/muscle_tab.c (muscle_init): NULL is a better default than
20539 `"0"'.
20540
20541 2001-12-10 Akim Demaille <akim@epita.fr>
20542
20543 * src/reader.c (reader): Calling symbols_output once is enough.
20544
20545 2001-12-10 Akim Demaille <akim@epita.fr>
20546
20547 Now that states have a complete set of members, the linked list of
20548 reductions is useless: just fill directly the state's reductions
20549 member.
20550
20551 * src/state.h (struct reductions): Remove member `number' and
20552 `next'.
20553 * src/LR0.c (first_reduction, last_reduction): Remove.
20554 (save_reductions): Don't link the new reductions, store them in
20555 this_state.
20556 * src/lalr.c (set_state_table): No need to attach reductions to
20557 states, it's already done.
20558 * src/output.c (output_actions): No longer free the shifts, then
20559 the reductions, then the states: free all the states and their
20560 members.
20561
20562 2001-12-10 Akim Demaille <akim@epita.fr>
20563
20564 * src/options.c (OPTN, DRTV, BOTH): New.
20565 (option_table): Use them.
20566
20567 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
20568 the job of system.h.
20569 * src/options.c: Don't include stdio.h and xalloc.h for the same
20570 reasons.
20571
20572 2001-12-10 Akim Demaille <akim@epita.fr>
20573
20574 * src/output.c (output, prepare): Make sure the values of the
20575 muscles `action' and `prologue' are 0-terminated.
20576
20577 2001-12-10 Akim Demaille <akim@epita.fr>
20578
20579 Clean up GCC warnings.
20580
20581 * src/reader.c (copy_action): `buf' is not used.
20582 (parse_skel_decl): Be static.
20583 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
20584 * src/options.h (create_long_option_table): Have a real prototype.
20585 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
20586 (hash_delete_at): Return const void *.
20587 Adjust casts to preserve the const.
20588
20589 2001-12-10 Akim Demaille <akim@epita.fr>
20590
20591 * configure.in: Require 2.52g.
20592 M4 is not needed, but AUTOM4TE is.
20593 * m4/m4.m4: Remove.
20594 * tests/Makefile.am: Adjust.
20595
20596 2001-12-10 Akim Demaille <akim@epita.fr>
20597
20598 One structure for states is enough, even though theoretically
20599 there are LR(0) states and LALR(1) states.
20600
20601 * src/lalr.h (state_t): Remove.
20602 (state_table): Be state_t **, not state_t *.
20603 * src/state.h (core, CORE_ALLOC): Rename as...
20604 (state_t, STATE_ALLOC): this.
20605 Add the LALR(1) members: shifts, reductions, errs.
20606 * src/LR0.c (state_table): Rename as...
20607 (state_hash): this, to avoid name clashes with the global
20608 `state_table'.
20609 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
20610 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
20611
20612 2001-12-10 Akim Demaille <akim@epita.fr>
20613
20614 Bison dumps core on bash.y.
20615 Reported by Pascal Bart.
20616
20617 * src/warshall.c (bitmatrix_print): New.
20618 (TC): Use it.
20619 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
20620 j must be the outer loop.
20621 * tests/regression.at (Broken Closure): New.
20622
20623 2001-12-05 Akim Demaille <akim@epita.fr>
20624
20625 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
20626 its argument.
20627 Reported by Peter Hamorsky.
20628
20629 2001-12-05 Akim Demaille <akim@epita.fr>
20630
20631 * src/conflicts.c (err_table): Remove.
20632 (resolve_sr_conflict): Adjust.
20633 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
20634 Rename as...
20635 (state_t.reductions, state_t.shifts): this.
20636
20637 2001-12-05 Akim Demaille <akim@epita.fr>
20638
20639 * src/reduce.c (reduce_grammar_tables): No longer disable the
20640 removal of useless rules via CPP but via `if (0)', so that the
20641 compiler still check the code is valid.
20642 For instance, it should have noticed `rline' no longer exists: use
20643 the `line' member of rule_t.
20644 * src/gram.c (dummy, rline): Remove, unused.
20645
20646 2001-12-05 Akim Demaille <akim@epita.fr>
20647
20648 * src/output.c (pack_vector): Use assert, not berror.
20649 * src/main.c (berror): Remove, unused.
20650
20651 2001-12-05 Akim Demaille <akim@epita.fr>
20652
20653 New experimental feature: if --verbose --trace output all the
20654 items of a state, not only its kernel.
20655
20656 * src/print.c (print_core): If `trace_flag', then invoke closure
20657 before outputting the items of the state (print_core is no longer
20658 a correct name them).
20659 (print_results): Invoke new_closure/free_closure if needed.
20660
20661 2001-12-05 Akim Demaille <akim@epita.fr>
20662
20663 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
20664 * src/closure.c, src/closure.h (itemsetsize): Rename as...
20665 (nitemset): for consistency with the rest of the project.
20666
20667 2001-12-05 Akim Demaille <akim@epita.fr>
20668
20669 * src/closure.c (print_closure): Improve.
20670 (closure): Use it for printing input and output.
20671
20672 2001-12-05 Akim Demaille <akim@epita.fr>
20673
20674 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
20675 indexed by nonterminals.
20676
20677 2001-12-05 Akim Demaille <akim@epita.fr>
20678
20679 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
20680 what it was!).
20681 * src/warshall.h: Remove accidental duplication of the content.
20682
20683 2001-12-05 Akim Demaille <akim@epita.fr>
20684
20685 * src/closure.c (set_fderives): De-obfuscate.
20686
20687 2001-12-05 Akim Demaille <akim@epita.fr>
20688
20689 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
20690
20691 2001-12-05 Akim Demaille <akim@epita.fr>
20692
20693 * src/closure.c (set_firsts): De-obfuscate.
20694
20695 2001-12-05 Akim Demaille <akim@epita.fr>
20696
20697 * src/output.c (action_row): De-obfuscate
20698 using the good o' techniques: arrays not pointers, variable
20699 locality, BITISSET, RESETBIT etc.
20700
20701 2001-12-05 Akim Demaille <akim@epita.fr>
20702
20703 Pessimize the code to simplify it: from now on, all the states
20704 have a valid SHIFTS, which NSHIFTS is possibly 0.
20705
20706 * src/LR0.c (shifts_new): Be global and move to..
20707 * src/state.c, src/state.h: here.
20708 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
20709 * src/print_graph: Adjust.
20710
20711 2001-12-05 Akim Demaille <akim@epita.fr>
20712
20713 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
20714 * src/conflicts.c: Use it.
20715 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
20716 incorrectly ``simplified''.
20717
20718 2001-12-05 Akim Demaille <akim@epita.fr>
20719
20720 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
20721 using the good o' techniques: arrays not pointers, variable
20722 locality, BITISSET, RESETBIT etc.
20723
20724 2001-12-05 Akim Demaille <akim@epita.fr>
20725
20726 * src/state.h (SHIFT_SYMBOL): New.
20727 * src/conflicts.c: Use it to deobfuscate.
20728
20729 2001-12-05 Akim Demaille <akim@epita.fr>
20730
20731 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
20732 (print_reductions): De-obfuscate using the good o' techniques:
20733 arrays not pointers, variable locality, BITISSET.
20734
20735 2001-12-05 Akim Demaille <akim@epita.fr>
20736
20737 * src/conflicts.c (print_reductions): Arrays, not pointers.
20738 Use BITISSET.
20739
20740 2001-12-05 Akim Demaille <akim@epita.fr>
20741
20742 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20743
20744 2001-12-05 Akim Demaille <akim@epita.fr>
20745
20746 * src/conflicts.c (print_reductions): Improve variable locality.
20747
20748 2001-12-05 Akim Demaille <akim@epita.fr>
20749
20750 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20751
20752 2001-12-05 Akim Demaille <akim@epita.fr>
20753
20754 * src/conflicts.c (print_reductions): Improve variable locality.
20755
20756 2001-12-05 Akim Demaille <akim@epita.fr>
20757
20758 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
20759 * src/lalr.c: Use them.
20760
20761 2001-12-05 Akim Demaille <akim@epita.fr>
20762
20763 * src/LR0.c (augment_automaton): Formatting changes.
20764 Better variable locality.
20765
20766 2001-12-05 Akim Demaille <akim@epita.fr>
20767
20768 * src/lalr.c (matrix_print): New.
20769 (transpose): Use it.
20770 Use arrays instead of pointers.
20771
20772 2001-12-05 Akim Demaille <akim@epita.fr>
20773
20774 * src/lalr.c (maxrhs): Move to...
20775 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
20776 * src/lalr.c (build_relations): Adjust.
20777
20778 2001-12-05 Akim Demaille <akim@epita.fr>
20779
20780 * src/lalr.c (transpose): Free the memory allocated to the
20781 argument, as it is replaced by the results by the unique caller.
20782 (build_relations): Merely invoke transpose: it handles the memory
20783 deallocation.
20784 Improve variable locality.
20785 Avoid variables used as mere abbreviations.
20786 (compute_lookaheads): Use arrays instead of pointers.
20787
20788 2001-12-05 Akim Demaille <akim@epita.fr>
20789
20790 * src/lalr.c (initialize_F): Improve variable locality.
20791 Avoid variables used as mere abbreviations.
20792
20793 2001-12-05 Akim Demaille <akim@epita.fr>
20794
20795 * src/derives.c (print_derives): Display the ruleno.
20796 * src/lalr.c (initialize_F, transpose): Better variable locality
20797 to improve readability.
20798 Avoid variables used as mere abbreviations.
20799
20800 2001-12-05 Akim Demaille <akim@epita.fr>
20801
20802 * src/lalr.c (traverse): Use arrays instead of pointers.
20803
20804 2001-12-05 Akim Demaille <akim@epita.fr>
20805
20806 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
20807 the handling of squeue.
20808 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
20809
20810 2001-12-05 Akim Demaille <akim@epita.fr>
20811
20812 Because useless nonterminals are now kept alive (instead of being
20813 `destroyed'), we now sometimes examine them, and store information
20814 related to them. Hence we need to know their number, and adjust
20815 memory allocations.
20816
20817 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
20818 static.
20819 * src/LR0.c (allocate_itemsets): The memory allocated to
20820 `symbol_count' was used for two different purpose: once to count
20821 the number of occurrences of each symbol, and later reassigned to
20822 `shift_symbol', containing the symbol that can be shifted from a
20823 given state.
20824 Deobfuscate, i.e., allocate, use and free `symbol_count' here
20825 only, and...
20826 (new_itemsets): Allocate `shift_symbol' here.
20827 (allocate_itemsets): symbol_count includes useless nonterminals.
20828 Make room for them.
20829 (free_storage): Use `free', not `XFREE', for pointers that cannot
20830 be null.
20831
20832 2001-12-05 Akim Demaille <akim@epita.fr>
20833
20834 * src/nullable.c (set_nullable): Deobfuscate the handling of
20835 ritem.
20836 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
20837
20838 2001-12-05 Akim Demaille <akim@epita.fr>
20839
20840 * src/gram.c, src/gram.h (ritem_print): New.
20841 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
20842 (This useless function was defined only to work around VMS linkers
20843 that can't handle compilation units with variables only).
20844 * src/reduce.c (dump_grammar): Use it to trace the construction of
20845 ritem.
20846
20847 2001-12-04 Paul Eggert <eggert@twinsun.com>
20848
20849 * src/bison.simple (union yyalloc): Change member names
20850 to be the same as the stack names.
20851 (yyparse): yyptr is now union yyalloc *, not char *.
20852 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
20853 and may generate better code on some machines.
20854 (yystpcpy): Use prototype if __STDC__ is defined, not just
20855 if __cplusplus is defined.
20856
20857 2001-11-30 Akim Demaille <akim@epita.fr>
20858
20859 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
20860 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
20861 Gettext doesn't compile cleanly, and dies with -Werror.
20862 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
20863 Include WARNING_CFLAGS here.
20864 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
20865 before being defined.
20866
20867 2001-11-27 Paul Eggert <eggert@twinsun.com>
20868
20869 * lib/quotearg.h (quotearg_n, quotearg_n_style):
20870 First arg is int, not unsigned.
20871 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
20872 (SIZE_MAX, UINT_MAX): New macros.
20873 (quotearg_n_options): Abort if N is negative.
20874 Avoid overflow check on hosts where size_t is 64 bits and int
20875 is 32 bits, as overflow is impossible there.
20876 Fix off-by-one typo that caused unnecessary reallocation.
20877
20878 2001-11-29 Paul Eggert <eggert@twinsun.com>
20879
20880 Name space cleanup in generated parser.
20881
20882 * doc/bison.texinfo (Bison Parser): Discuss system headers
20883 and their effect on the user name space.
20884
20885 * src/bison.simple:
20886 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
20887 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
20888 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
20889
20890 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
20891 on user names when possible.
20892
20893 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
20894 Simplify test for whather <alloca.h> exists.
20895
20896 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
20897
20898 (<stdio.h>): Include if YYDEBUG.
20899
20900 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
20901 ! defined (yyoverflow) && ! defined (yymemcpy).
20902
20903 (yymemcpy, yyparse): Rename local variables as needed so that
20904 they all begin with 'yy'.
20905
20906 (yystrlen, yystpcpy): New functions.
20907
20908 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
20909 All uses changed.
20910
20911 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
20912 instead of relying on string.h functions. Use YYSTACK_ALLOC
20913 and YYSTACK_FREE instead of malloc and free.
20914
20915 2001-11-30 Akim Demaille <akim@epita.fr>
20916
20917 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
20918 before their first uses.
20919 (YYBISON, YYPURE): Move to the top of the output.
20920
20921 2001-11-30 Akim Demaille <akim@epita.fr>
20922
20923 * tests/reduce.at (Useless Nonterminals): Fix.
20924
20925 2001-11-30 Akim Demaille <akim@epita.fr>
20926
20927 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
20928 if body instead of `;' to pacify GCC's warnings.
20929
20930 2001-11-30 Akim Demaille <akim@epita.fr>
20931
20932 Instead of mapping the LHS of unused rules to -1, keep the LHS
20933 valid, but flag the rules as invalid.
20934
20935 * src/gram.h (rule_t): `useful' is a new member.
20936 * src/print.c (print_grammar): Adjust.
20937 * src/derives.c (set_derives): Likewise.
20938 * src/reader.c (packgram, reduce_output): Likewise.
20939 * src/reduce.c (reduce_grammar_tables): Likewise.
20940 * tests/reduce.at (Underivable Rules, Useless Rules): New.
20941
20942 2001-11-30 Akim Demaille <akim@epita.fr>
20943
20944 * src/reduce.c (reduce_output): Formatting changes.
20945 * src/print.c (print_results, print_grammar): Likewise.
20946 * tests/regression.at (Rule Line Numbers)
20947 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
20948
20949 2001-11-30 Akim Demaille <akim@epita.fr>
20950
20951 * src/reduce.c (nonterminals_reduce): Instead of throwing away
20952 useless nonterminals, move them at the end of the symbol arrays.
20953 (reduce_output): Adjust.
20954 * tests/reduce.at (Useless Nonterminals): Adjust.
20955
20956 2001-11-30 Akim Demaille <akim@epita.fr>
20957
20958 * src/reduce.c: Various comment/formatting changes.
20959 (nonterminals_reduce): New, extracted from...
20960 (reduce_grammar_tables): here.
20961 (reduce_grammar): Call nonterminals_reduce.
20962
20963 2001-11-29 Paul Eggert <eggert@twinsun.com>
20964
20965 * src/bison.simple (YYSTACK_REALLOC): Remove.
20966 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
20967 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
20968 New macros.
20969 (union yyalloc): New type.
20970 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
20971 an arbitrary restriction on hosts where size_t is wider than int.
20972
20973 (yyparse): Don't dump core if alloca or malloc fails; instead, report
20974 a parser stack overflow. Allocate just one block of memory for all
20975 three stacks, instead of allocating three blocks; this typically is
20976 faster and reduces fragmentation.
20977
20978 Do not limit the number of items in the stack to a value that fits
20979 in 'int', as this is an arbitrary limit on hosts with 64-bit
20980 size_t and 32-bit int.
20981
20982 2001-11-29 Marc Autret <autret_m@epita.fr>
20983
20984 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
20985 of defining YYERROR_VERBOSE.
20986 [AT_DATA]: $4 is now out of C declarations in the prologue.
20987
20988 2001-11-28 Marc Autret <autret_m@epita.fr>
20989
20990 * src/reader.c (parse_dquoted_param): New.
20991 (parse_skel_decl): Use it.
20992 * src/lex.h: Add its prototype.
20993 * src/lex.c (literalchar): Become not static.
20994
20995 2001-11-28 Marc Autret <autret_m@epita.fr>
20996
20997 * src/output.h: And put its extern declaration here.
20998 * src/output.c (error_verbose): Define here.
20999 (prepare): Echo name modification.
21000 * src/getargs.h: Clean its extern declaration.
21001 * src/getargs.c (error_verbose_flag): Remove.
21002 (getargs): Remove case 'e'.
21003 * src/options.c (option_table): 'error-verbose' is now seen as simple
21004 percent option.
21005 Include output.h.
21006
21007 * src/reader.c (read_declarations): Remove case tok_include.
21008 (parse_include_decl): Remove.
21009 * src/lex.h (token_t): Remove tok_include.
21010 * src/options.c (option_table): 'include' is now a simple command line
21011 option.
21012
21013 2001-11-28 Marc Autret <autret_m@epita.fr>
21014
21015 * src/bison.simple: Adjust muscle names.
21016 * src/muscle_tab.c (muscle_init): Also rename the muscles.
21017 * src/output.c (prepare): s/_/-/ for the muscles names.
21018 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
21019
21020 2001-11-28 Marc Autret <autret_m@epita.fr>
21021
21022 * src/bison.simple: Fix debug.
21023 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
21024
21025 2001-11-28 Akim Demaille <akim@epita.fr>
21026
21027 * src/LR0.c (shifts_new): New.
21028 (save_shifts, insert_start_shift, augment_automaton): Use it.
21029
21030 2001-11-28 Akim Demaille <akim@epita.fr>
21031
21032 * src/closure.c (closure): `b' and `ruleno' denote the same value:
21033 keep ruleno only.
21034
21035 2001-11-28 Akim Demaille <akim@epita.fr>
21036
21037 * src/closure.c (closure): Instead of looping over word in array
21038 then bits in words, loop over bits in array.
21039
21040 2001-11-28 Akim Demaille <akim@epita.fr>
21041
21042 * src/closure.c (closure): No longer optimize the special case
21043 where all the bits of `ruleset[r]' are set to 0, to make the code
21044 clearer.
21045
21046 2001-11-28 Akim Demaille <akim@epita.fr>
21047
21048 * src/closure.c (closure): `r' and `c' are new variables, used to
21049 de-obfuscate accesses to RULESET and CORE.
21050
21051 2001-11-28 Akim Demaille <akim@epita.fr>
21052
21053 * src/reduce.c (reduce_print): Use ngettext.
21054 (dump_grammar): Improve the trace accuracy.
21055
21056 2001-11-28 Akim Demaille <akim@epita.fr>
21057
21058 * src/reduce.c (dump_grammar): Don't translate trace messages.
21059
21060 2001-11-28 Akim Demaille <akim@epita.fr>
21061
21062 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
21063 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
21064 as all tags are free'ed afterwards.
21065 From Enrico Scholz.
21066
21067 2001-11-27 Paul Eggert <eggert@twinsun.com>
21068
21069 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
21070 use alloca when we didn't want to, and vice versa.
21071
21072 2001-11-27 Marc Autret <autret_m@epita.fr>
21073
21074 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
21075 initialization.
21076 * src/output.c (prepare): Remove its update.
21077
21078 2001-11-27 Marc Autret <autret_m@epita.fr>
21079
21080 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
21081 Use %error-verbose.
21082
21083 2001-11-27 Marc Autret <autret_m@epita.fr>
21084
21085 * src/bison.simple: Remove YYERROR_VERBOSE using.
21086 Use %%error_verbose.
21087 (yyparse): Likewise.
21088 * src/output.c (prepare): Give its final value.
21089 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
21090 * src/getargs.h: Add its extern declaration.
21091 * src/getargs.c (error_verbose_flag): New int.
21092 (getargs): Update to catch new case.
21093 * src/options.c (option_table): 'error-verbose' is a new option.
21094 (shortopts): Update.
21095
21096 2001-11-27 Akim Demaille <akim@epita.fr>
21097
21098 * src/system.h: Use intl/libgettext.h.
21099 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
21100
21101 2001-11-27 Akim Demaille <akim@epita.fr>
21102
21103 * tests/torture.at (Exploding the Stack Size with Malloc):
21104 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
21105
21106 2001-11-27 Akim Demaille <akim@epita.fr>
21107
21108 * src/files.c: Include error.h.
21109 Reported by Hans Aberg.
21110
21111 2001-11-26 Marc Autret <autret_m@epita.fr>
21112
21113 * src/reader.c (parse_include_decl): New, not yet implemented.
21114 (read_declarations): Add case tok_include.
21115 * src/getargs.h (include): Add its extern definition.
21116 * src/getargs.c (include): New const char *.
21117 (getargs): Add case '-I'.
21118 * src/options.c (option_table): Add include as command line and
21119 percent option.
21120 * src/lex.h (token_t): Add tok_include.
21121
21122 2001-11-26 Akim Demaille <akim@epita.fr>
21123
21124 * src/reader.c (readgram): Make sure rules for mid-rule actions
21125 have a lineno equal to that of their host rule.
21126 Reported by Hans Aberg.
21127 * tests/regression.at (Rule Line Numbers): New.
21128
21129 2001-11-26 Akim Demaille <akim@epita.fr>
21130
21131 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
21132 size_ts.
21133
21134 2001-11-26 Akim Demaille <akim@epita.fr>
21135
21136 * src/complain.c, src/complain.h (error): Remove, provided by
21137 lib/error.[ch].
21138
21139 2001-11-26 Akim Demaille <akim@epita.fr>
21140
21141 * src/reader.c (read_declarations): Don't abort on tok_illegal,
21142 issue an error message.
21143 * tests/regression.at (Invalid %directive): New.
21144 Reported by Hans Aberg.
21145
21146 2001-11-26 Akim Demaille <akim@epita.fr>
21147
21148 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
21149 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
21150
21151 2001-11-26 Akim Demaille <akim@epita.fr>
21152
21153 * src/conflicts.c (conflicts_print): Don't complain at all when
21154 there are no reduce/reduce conflicts, and as many shift/reduce
21155 conflicts as expected.
21156 * tests/regression.at (%expect right): Adjust.
21157
21158 2001-11-23 Akim Demaille <akim@epita.fr>
21159
21160 * lib/alloca.c: Update, from fileutils.
21161
21162 2001-11-23 Akim Demaille <akim@epita.fr>
21163
21164 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
21165
21166 2001-11-23 Akim Demaille <akim@epita.fr>
21167
21168 * src/system.h: Include alloca.h.
21169 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
21170
21171 2001-11-23 Akim Demaille <akim@epita.fr>
21172
21173 * src/print_graph.c (print_actions): Remove `rule', unused.
21174 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
21175 pacify GCC's signed < unsigned warnings.
21176 * src/closure.c (itemsetsize): Likewise.
21177 * src/reader.c (symbol_list_new): Static.
21178
21179 2001-11-23 Akim Demaille <akim@epita.fr>
21180
21181 Attaching lineno to buckets is stupid, since only one copy of each
21182 symbol is kept, only the line of the first occurrence is kept too.
21183
21184 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
21185 * src/reader.c (rline_allocated): Remove, unused.
21186 (symbol_list): Have a `line' member.
21187 (symbol_list_new): New.
21188 (readgram): Use it.
21189 * src/print.c (print_grammar): Output the rule line numbers.
21190 * tests/regression.at (Solved SR Conflicts)
21191 (Unresolved SR Conflicts): Adjust.
21192 Reported by Hans Aberg.
21193
21194 2001-11-22 Marc Autret <autret_m@epita.fr>
21195
21196 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
21197
21198 2001-11-22 Marc Autret <autret_m@epita.fr>
21199
21200 * src/muscle_tab.c (muscle_init): Remove initialization of
21201 skeleton muscle.
21202 * src/output.c (output_master_parser): Do it here.
21203
21204 2001-11-20 Akim Demaille <akim@epita.fr>
21205
21206 * po/sv.po: New.
21207 * configure.in (ALL_LINGUAS): Adjust.
21208 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
21209 longer contains strings to translate.
21210
21211 2001-11-19 Akim Demaille <akim@epita.fr>
21212
21213 * src/conflicts.c (conflicts_print): Add a missing \n.
21214
21215 2001-11-19 Akim Demaille <akim@epita.fr>
21216
21217 * src/nullable.c (nullable_print): New.
21218 (set_nullable): Call it when tracing.
21219 Better locality of variables.
21220
21221 2001-11-19 Akim Demaille <akim@epita.fr>
21222
21223 * src/print.c (print_actions): Better locality of variables.
21224
21225 2001-11-19 Akim Demaille <akim@epita.fr>
21226
21227 * src/derives.c (print_derives): Fix and enrich.
21228 * src/closure.c (print_fderives): Likewise.
21229
21230 2001-11-19 Akim Demaille <akim@epita.fr>
21231
21232 * src/closure.c (itemsetend): Remove, replaced with...
21233 (itemsetsize): new.
21234
21235 2001-11-19 Akim Demaille <akim@epita.fr>
21236
21237 * src/LR0.c (kernel_end): Remove, replaced with...
21238 (kernel_size): new.
21239
21240 2001-11-19 Akim Demaille <akim@epita.fr>
21241
21242 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
21243 to clarify.
21244
21245 2001-11-19 Akim Demaille <akim@epita.fr>
21246
21247 * src/closure.c (closure): Use arrays instead of pointers to clarify.
21248
21249 2001-11-19 Akim Demaille <akim@epita.fr>
21250
21251 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
21252 trace messages.
21253 * src/LR0.c: Likewise.
21254 (allocate_itemsets): Use arrays instead of pointers to clarify.
21255
21256 2001-11-19 Akim Demaille <akim@epita.fr>
21257
21258 * src/getargs.c (statistics_flag): Replace with...
21259 (trace_flag): New.
21260 (longopts): Accept --trace instead of --statistics.
21261 * src/getargs.h, src/options.c: Adjust.
21262 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
21263 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
21264
21265 2001-11-19 Akim Demaille <akim@epita.fr>
21266
21267 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
21268 pointers to clarify the code.
21269 (save_reductions, save_shifts): Factor common parts of alternatives.
21270
21271 2001-11-19 Akim Demaille <akim@epita.fr>
21272
21273 * src/LR0.c (new_state, get_state): Complete TRACE code.
21274 * src/closure.c: Include `reader.h' to get `tags', needed by the
21275 trace code.
21276 Rename the conditional DEBUG as TRACE.
21277 Output consistently TRACEs to stderr, not stdout.
21278 * src/derives.c: Likewise.
21279 * src/reduce.c: (inaccessable_symbols): Using if is better style
21280 than goto.
21281 Use `#if TRACE' instead of `#if 0' for tracing code.
21282
21283 2001-11-19 Akim Demaille <akim@epita.fr>
21284
21285 * src/system.h (LIST_FREE, shortcpy): New.
21286 * src/LR0.c: Use them.
21287 * src/output.c (free_itemsets, free_reductions, free_shifts):
21288 Remove, replaced by LIST_FREE.
21289
21290 2001-11-19 Akim Demaille <akim@epita.fr>
21291
21292 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
21293 (REDUCTIONS_ALLOC): New.
21294 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
21295 allocation.
21296
21297 2001-11-19 Akim Demaille <akim@epita.fr>
21298
21299 * src/LR0.c (new_state): Complete trace code.
21300 * src/nullable.c (set_nullable): Don't translate traces.
21301
21302 2001-11-19 Akim Demaille <akim@epita.fr>
21303
21304 * src/print_graph.c (print_core): Better locality of variables.
21305 * src/print.c (print_core): Likewise.
21306
21307 2001-11-19 Akim Demaille <akim@epita.fr>
21308
21309 * src/vcg.c: You do the output, so you are responsible of the
21310 handling of VCG syntax, in particular: use quotearg.
21311 * src/print_graph.c: Don't.
21312 (print_actions): Don't output the actions as part of the nodes,
21313 since that's the job of the edges.
21314 (print_state): Don't output by hand: fill the node description,
21315 and ask for its output.
21316
21317 2001-11-19 Akim Demaille <akim@epita.fr>
21318
21319 * src/bison.simple (yyparse): When verbosely reporting an error,
21320 no longer put additional quotes around token names.
21321 * tests/calc.at: Adjust.
21322
21323 2001-11-19 Akim Demaille <akim@epita.fr>
21324
21325 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
21326 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
21327 * src/output.c: Adjust.
21328
21329 2001-11-19 Akim Demaille <akim@epita.fr>
21330
21331 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
21332 (rule_t): this.
21333 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
21334
21335 2001-11-19 Akim Demaille <akim@epita.fr>
21336
21337 * src/gram.h (rule_t): New.
21338 (rule_table): New.
21339 (rrhs, rlhs): Remove, part of state_t.
21340 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
21341 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
21342 * src/reader.c, src/reduce.c: Adjust.
21343
21344 2001-11-19 Akim Demaille <akim@epita.fr>
21345
21346 * src/reader.c (symbols_output): New, extracted from...
21347 (packsymbols): Here.
21348 (reader): Call it.
21349
21350 2001-11-19 Akim Demaille <akim@epita.fr>
21351
21352 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
21353 (maxrhs): this new function.
21354
21355 2001-11-19 Akim Demaille <akim@epita.fr>
21356
21357 * src/lalr.c (F): New macro to access the variable F.
21358 Adjust.
21359
21360 2001-11-19 Akim Demaille <akim@epita.fr>
21361
21362 * src/lalr.h (LA): New macro to access the variable LA.
21363 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21364 * src/lalr.c: Adjust.
21365
21366 2001-11-19 Akim Demaille <akim@epita.fr>
21367
21368 * src/lalr.c (initialize_LA): Only initialize LA. Let...
21369 (set_state_table): handle the `lookaheads' members.
21370
21371 2001-11-19 Akim Demaille <akim@epita.fr>
21372
21373 * src/lalr.h (lookaheads): Removed array, whose contents is now
21374 a member of...
21375 (state_t): this structure.
21376 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21377 Adjust.
21378
21379 2001-11-19 Akim Demaille <akim@epita.fr>
21380
21381 * src/lalr.h (consistent): Removed array, whose contents is now
21382 a member of...
21383 (state_t): this structure.
21384 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21385 Adjust.
21386
21387 2001-11-19 Akim Demaille <akim@epita.fr>
21388
21389 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
21390 contents are now members of...
21391 (state_t): this structure.
21392 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21393 Adjust.
21394
21395 2001-11-19 Akim Demaille <akim@epita.fr>
21396
21397 * src/lalr.h (state_t): New.
21398 (state_table): Be a state_t * instead of a core **.
21399 (accessing_symbol): Remove, part of state_t.
21400 * src/lalr.c: Adjust.
21401 (set_accessing_symbol): Merge into...
21402 (set_state_table): this.
21403 * src/print_graph.c, src/conflicts.c: Adjust.
21404
21405 2001-11-14 Akim Demaille <akim@epita.fr>
21406
21407 * tests/calc.at, tests/output.at, tests/regression.at,
21408 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
21409 now the tests are run in private dirs, therefore AC_CLEANUP and
21410 family can be simplified to 0-ary.
21411 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
21412 use abs. path to find config.h.
21413 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
21414 stderr, there can be way too much random noise.
21415 Instead pass -Werror to GCC and rely on the exit status.
21416 Reported by Wolfram Wagner.
21417
21418 2001-11-14 Akim Demaille <akim@epita.fr>
21419
21420 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
21421 defined only if yyoverflow is defined, to avoid `warning: unused
21422 variable `yyvs1''.
21423 Reported by The Test Suite.
21424
21425 2001-11-14 Akim Demaille <akim@epita.fr>
21426
21427 * src/print.c: Include reduce.h.
21428 Reported by Hans Aberg.
21429
21430 2001-11-14 Akim Demaille <akim@epita.fr>
21431
21432 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
21433 Revert a previous patch: these are really const.
21434 * src/conflicts.c (conflict_report): Additional useless pair of
21435 braces to pacify GCC's warnings for `if () if () {} else {}'.
21436 * src/lex.c (parse_percent_token): Replace equal_offset with
21437 arg_offset.
21438 arg is const.
21439 Be sure to strdup `arg' when used, since there is no reason for
21440 token_buffer not to change.
21441
21442 2001-11-14 Akim Demaille <akim@epita.fr>
21443
21444 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
21445 definition.
21446 * src/main.c (main): Use them.
21447 Suggested by Hans Aberg.
21448
21449 2001-11-12 Akim Demaille <akim@epita.fr>
21450
21451 * src/system.h (ngettext): Now that we use ngettext, be sure to
21452 provide a default definition when NLS are not used.
21453
21454 2001-11-12 Akim Demaille <akim@epita.fr>
21455
21456 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
21457 Use @kbd to denote user input.
21458 (Language and Grammar): ANSIfy the example.
21459 Adjust its layout for info/notinfo.
21460 (Location Tracking Calc): Output error messages to stderr.
21461 Output locations in a more GNUtically correct way.
21462 Fix a couple of Englishos.
21463 Adjust @group/@end group pairs.
21464
21465 2001-11-12 Akim Demaille <akim@epita.fr>
21466
21467 %expect was not functioning at all.
21468
21469 * src/conflicts.c (expected_conflicts): Set to -1.
21470 (conflict_report): Use ngettext.
21471 (conflicts_print): Check %expect and make its violation an error.
21472 * doc/bison.texinfo (Expect Decl): Adjust.
21473 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
21474 * tests/regression.at (%expect not enough, %expect right)
21475 (%expect too much): New.
21476
21477 2001-11-12 Akim Demaille <akim@epita.fr>
21478
21479 * tests/regression.at (Conflicts): Rename as...
21480 (Unresolved SR Conflicts): this.
21481 (Solved SR Conflicts): New.
21482
21483 2001-11-12 Akim Demaille <akim@epita.fr>
21484
21485 * src/reduce.c (print_results): Rename as...
21486 (reduce_output): This.
21487 Output to OUT, passed as argument, instead of output_obstack.
21488 (dump_grammar): Likewise.
21489 (reduce_free): New.
21490 Also free V1.
21491 (reduce_grammar): No longer call reduce_output, since...
21492 * src/print.c (print_results): do it.
21493 * src/main.c (main): Call reduce_free;
21494
21495 2001-11-12 Akim Demaille <akim@epita.fr>
21496
21497 * src/conflicts.c (print_reductions): Accept OUT as argument.
21498 Output to it, not to output_obstack.
21499 * src/print.c (print_actions): Adjust.
21500
21501 2001-11-12 Akim Demaille <akim@epita.fr>
21502
21503 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
21504 the result instead of using...
21505 (src_total, rrc_total, src_count, rrc_count): Remove.
21506 (any_conflicts): Remove.
21507 (print_conflicts): Split into...
21508 (conflicts_print, conflicts_output): New.
21509 * src/conflicts.h: Adjust.
21510 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
21511 * src/print.c (print_grammar): Issue `\n' between two rules.
21512 * tests/regression.at (Conflicts): New.
21513 Reported by Tom Lane.
21514
21515 2001-11-12 Akim Demaille <akim@epita.fr>
21516
21517 * tests/regression.at (Invalid input): Remove, duplicate with
21518 ``Invalid input: 1''.
21519
21520 2001-11-12 Akim Demaille <akim@epita.fr>
21521
21522 * tests/torture.at (AT_DATA_STACK_TORTURE)
21523 (Exploding the Stack Size with Alloca)
21524 (Exploding the Stack Size with Malloc): New.
21525
21526 2001-11-12 Akim Demaille <akim@epita.fr>
21527
21528 * src/bison.simple (YYSTACK_REALLOC): New.
21529 (yyparse) [!yyoverflow]: Use it and free the old stack.
21530 Reported by Per Allansson.
21531
21532 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
21533
21534 * src/bison.simple: Define type yystype instead of YYSTYPE, and
21535 define CPP macro, which substitute YYSTYPE by yystype.
21536 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
21537 with yyltype/YYLTYPE. This allows inclusion of the generated
21538 header within the parser if the compiler, such as GGC, accepts
21539 multiple equivalent #defines.
21540 From Akim.
21541
21542 2001-11-05 Akim Demaille <akim@epita.fr>
21543
21544 * src/reader.c (symbols_output): New, extracted from...
21545 (packsymbols): here.
21546 (reader): Adjust.
21547
21548 2001-11-05 Akim Demaille <akim@epita.fr>
21549
21550 * src/lex.c (parse_percent_token): s/quotearg/quote/.
21551
21552 2001-11-05 Akim Demaille <akim@epita.fr>
21553
21554 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
21555 pattern.
21556
21557 2001-11-05 Akim Demaille <akim@epita.fr>
21558
21559 * src/options.h (struct option_table_struct): set_flags is void*.
21560 * src/options.c (longopts): Support `--output' and `%output'.
21561 (usage): Adjust.
21562 * src/lex.h (tok_setopt): Remove, replaced with...
21563 (tok_intopt, tok_stropt): these new guys.
21564 * src/lex.c (getopt.h): Not needed.
21565 (token_buffer, unlexed_token_buffer): Not const.
21566 (percent_table): Promote `-' over `_' in directive names.
21567 Active `%name-prefix', `file-prefix', and `output'.
21568 (parse_percent_token): Accept possible arguments to directives.
21569 Promote `-' over `_' in directive names.
21570
21571 2001-11-04 Akim Demaille <akim@epita.fr>
21572
21573 * doc/bison.texinfo (Decl Summary): Split the list into
21574 `directives for grammars' and `directives for bison'.
21575 Sort'em.
21576 Add description of `%name-prefix', `file-prefix', and `output'.
21577 Promote `-' over `_' in directive names.
21578 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
21579 Simplify the description of `--name-prefix'.
21580 Promote `-' over `_' in directive names.
21581 Promote `--output' over `--output-file'.
21582 Fix the description of `--defines'.
21583 * tests/output.at: Exercise %file-prefix and %output.
21584
21585 2001-11-02 Akim Demaille <akim@epita.fr>
21586
21587 * doc/refcard.tex: Update.
21588
21589 2001-11-02 Akim Demaille <akim@epita.fr>
21590
21591 * src/symtab.h (SUNDEF): New.
21592 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
21593 stand for `uninitialized', instead of 0.
21594 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
21595 * src/lex.c (lex): Adjust.
21596
21597 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
21598 Number it 0.
21599 Let yylex return it instead of a plain 0.
21600 Reported by Dick Streefland.
21601
21602 2001-11-02 Akim Demaille <akim@epita.fr>
21603
21604 * tests/regression.at (Mixing %token styles): New test.
21605
21606 2001-11-02 Akim Demaille <akim@epita.fr>
21607
21608 * src/reader.c (parse_thong_decl): Formatting changes.
21609 (token_translations_init): New, extracted from...
21610 (packsymbols): Here.
21611 Adjust.
21612
21613 2001-11-01 Akim Demaille <akim@epita.fr>
21614
21615 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
21616 Check that `9foo.y' produces correct cpp guards.
21617 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
21618 guards.
21619 Reported by Wwp.
21620
21621 2001-11-01 Akim Demaille <akim@epita.fr>
21622
21623 * tests/regression.at (Invalid input: 2): New.
21624 * src/lex.c (unlexed_token_buffer): New.
21625 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
21626 too.
21627 Reported by Wwp.
21628
21629 2001-11-01 Akim Demaille <akim@epita.fr>
21630
21631 * tests/calc.at: Catch up with 1.30.
21632 * configure.in: Bump to 1.49a.
21633 Adjust to newer Autotest.
21634
21635 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
21636
21637 * src/conflicts.c: Move global variables rrc_total and src_total ...
21638 (print_conflicts): here.
21639 * src/output.c (output): Free global variable user_toknums.
21640 * src/lex.c (token_obstack): Become static.
21641
21642 2001-10-18 Akim Demaille <akim@epita.fr>
21643
21644 * tests/atlocal.in (GCC): Add.
21645 * tests/calc.at: s/m4_match/m4_bmatch/.
21646 s/m4_patsubst/m4_bpatsubst/.
21647 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
21648 * configure.in: AC_SUBST(GCC).
21649
21650 2001-10-14 Marc Autret <autret_m@epita.fr>
21651
21652 * src/options.c (create_long_option_table): Fix.
21653
21654 2001-10-10 Akim Demaille <akim@epita.fr>
21655
21656 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
21657
21658 2001-10-04 Akim Demaille <akim@epita.fr>
21659
21660 * src/reader.c (parse_union_decl): Push the caracters in
21661 union_obstack, not attrs_obstack.
21662
21663 2001-10-04 Akim Demaille <akim@epita.fr>
21664
21665 Merge in the branch 1.29.
21666
21667 * src/reader.c (packsymbols): Use a temporary obstack for
21668 `%%tokendef', since output_stack is already used elsewhere.
21669
21670 2001-10-02 Akim Demaille <akim@epita.fr>
21671
21672 Bump 1.29d.
21673
21674 2001-10-02 Akim Demaille <akim@epita.fr>
21675
21676 Version 1.29c.
21677
21678 2001-10-02 Akim Demaille <akim@epita.fr>
21679
21680 * tests/regression.at (Invalid CPP headers): New.
21681 From Alexander Belopolsky.
21682 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
21683
21684 2001-10-02 Akim Demaille <akim@epita.fr>
21685
21686 * tests/regression.at (Invalid input): New.
21687 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
21688 Reported by Shura.
21689
21690 2001-10-02 Akim Demaille <akim@epita.fr>
21691
21692 * tests/calc.at: Now that --debug works, the tests must be adjusted.
21693
21694 2001-10-02 Akim Demaille <akim@epita.fr>
21695
21696 * src/output.c (output_parser): Assert `skeleton'.
21697 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
21698 systems.
21699 From Shura.
21700
21701 2001-10-01 Marc Autret <autret_m@epita.fr>
21702
21703 * src/lex.h: Echo modifications.
21704 * src/lex.c (unlex): Parameter is now token_t.
21705 From Hans Aberg.
21706
21707 2001-10-01 Marc Autret <autret_m@epita.fr>
21708
21709 * src/main.c: Include lex.h.
21710 From Hans Aberg.
21711
21712 2001-09-29 Akim Demaille <akim@epita.fr>
21713
21714 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
21715
21716 2001-09-28 Akim Demaille <akim@epita.fr>
21717
21718 * tests/testsuite.at: Update to newer Autotest.
21719 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
21720
21721 2001-09-27 Akim Demaille <akim@epita.fr>
21722
21723 Position independent wrapper.
21724
21725 * tests/bison: Remove.
21726 * tests/bison.in: New.
21727 * configure.in: Adjust.
21728
21729 2001-09-27 Paul Eggert <eggert@twinsun.com>
21730
21731 Port quotearg fixes from tar 1.13.24.
21732
21733 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
21734 tm to be declared.
21735 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
21736 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
21737
21738 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
21739 * m4/mbrtowc.m4: New file.
21740 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
21741 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
21742
21743 2001-09-27 Akim Demaille <akim@epita.fr>
21744
21745 Bump to 1.29c.
21746
21747 2001-09-27 Akim Demaille <akim@epita.fr>
21748
21749 Version 1.29b.
21750
21751 2001-09-25 Akim Demaille <akim@epita.fr>
21752
21753 * src/system.h: Include `xalloc.h'.
21754 Remove it from the C files.
21755 * src/files.c (output_files): Free the obstacks.
21756 * src/lex.c (init_lex): Rename as...
21757 (lex_init): this.
21758 (lex_free): New.
21759 * src/main.c (main): Use it.
21760
21761 2001-09-24 Marc Autret <autret_m@epita.fr>
21762
21763 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
21764 to output informations in fout (FILE*).
21765 (open_graph, close_graph): Likewise.
21766 (output_graph, output_edge, output_node): Likewise.
21767 * src/vcg.h: Update function prototypes.
21768 * src/print_graph.c (print_graph): Open output graph file.
21769 (print_actions): Adjust.
21770 * src/files.h: Remove extern declaration.
21771 * src/files.c: Remove graph_obstack declaration.
21772 (open_files): Remove graph_obstack initialization.
21773 (output_files): Remove graph_obstack saving.
21774
21775 2001-09-24 Marc Autret <autret_m@epita.fr>
21776
21777 * src/files.c (compute_output_file_names): Fix.
21778
21779 2001-09-24 Marc Autret <autret_m@epita.fr>,
21780 Akim Demaille <akim@epita.fr>
21781
21782 * src/reader.c (reader): Remove call to free_symtab ().
21783 * src/main.c (main): Call it here.
21784 Include symtab.h.
21785 * src/conflicts.c (initialize_conflicts): Rename as...
21786 (solve_conflicts): this.
21787 * src/print.c (print_core, print_actions, print_state)
21788 (print_grammar): Dump to a file instead a `output_obstack'.
21789 (print_results): Dump `output_obstack', and then proceed with the
21790 FILE *.
21791 * src/files.c (compute_output_file_names, close_files): New.
21792 (output_files): Adjust.
21793 * src/main.c (main): Adjust.
21794
21795 2001-09-23 Marc Autret <autret_m@epita.fr>
21796
21797 * src/files.c (compute_header_macro): Computes header macro name
21798 from spec_defines_file when given.
21799
21800 2001-09-23 Marc Autret <autret_m@epita.fr>
21801
21802 * src/files.c (output_files): Add default extensions.
21803
21804 2001-09-22 Akim Demaille <akim@epita.fr>
21805
21806 * src/conflicts.c (finalize_conflicts): Rename as...
21807 (free_conflicts): this.
21808
21809 2001-09-22 Akim Demaille <akim@epita.fr>
21810
21811 * src/gram.c (gram_free): Rename back as...
21812 (dummy): this.
21813 (output_token_translations): Free `token_translations'.
21814 * src/symtab.c (free_symtab): Free the tag field.
21815
21816 2001-09-22 Akim Demaille <akim@epita.fr>
21817
21818 Remove `translations' as it is always set to true.
21819
21820 * src/gram.h: Adjust.
21821 * src/reader.c (packsymbols, parse_token_decl): Adjust
21822 * src/print.c (print_grammar): Adjust.
21823 * src/output.c (output_token_translations): Adjust.
21824 * src/lex.c (lex): Adjust.
21825 * src/gram.c: Be sure the set pointers to NULL.
21826 (dummy): Rename as...
21827 (gram_free): this.
21828
21829 2001-09-22 Akim Demaille <akim@epita.fr>
21830
21831 * configure.in: Invoke AM_LIB_DMALLOC.
21832 * src/system.h: Use dmalloc.
21833 * src/LR0.c: Be sure to have pointers initialized to NULL.
21834 (allocate_itemsets): Allocate kernel_items only if needed.
21835
21836 2001-09-22 Akim Demaille <akim@epita.fr>
21837
21838 * configure.in: Bump to 1.29b.
21839 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
21840 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
21841 need xmalloc.c in calc.y.
21842 From Pascal Bart.
21843
21844 2001-09-21 Akim Demaille <akim@epita.fr>
21845
21846 Version 1.29a.
21847 * Makefile.maint, config/config.guess, config/config.sub,
21848 * config/missing: Update from masters.
21849 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
21850 upon package.m4.
21851 * configure.in (ALL_LINGUAS): Add `tr'.
21852
21853 2001-09-21 Akim Demaille <akim@epita.fr>
21854
21855 * tests/Makefile.am (package.m4): Move to...
21856 ($(srcdir)/$(TESTSUITE)): here.
21857
21858 2001-09-20 Akim Demaille <akim@epita.fr>
21859
21860 * src/complain.c: No longer try to be standalone: use system.h.
21861 Don't assume __STDC__ is defined to 1. Just test if it is defined.
21862 * src/complain.h: Likewise.
21863 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
21864 Remove the unused variable `n'.
21865 From Albert Chin-A-Young.
21866
21867 2001-09-18 Marc Autret <autret_m@epita.fr>
21868
21869 * doc/bison.1: Update.
21870 * doc/bison.texinfo (Bison Options): Update --defines and --graph
21871 descriptions.
21872 (Option Cross Key): Update.
21873 Add --graph.
21874
21875 2001-09-18 Marc Autret <autret_m@epita.fr>
21876
21877 * tests/regression.at: New test (comment in %union).
21878
21879 2001-09-18 Marc Autret <autret_m@epita.fr>
21880
21881 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
21882 do that.
21883 Reported by Keith Browne.
21884
21885 2001-09-18 Marc Autret <autret_m@epita.fr>
21886
21887 * tests/output.at: Add tests for --defines and --graph.
21888
21889 2001-09-18 Marc Autret <autret_m@epita.fr>
21890
21891 * tests/output.at: Removes tests of %{header,src}_extension features.
21892
21893 2001-09-18 Akim Demaille <akim@epita.fr>
21894
21895 * tests/Makefile.am (package.m4): New.
21896 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
21897 (_AT_CHECK_CALC_ERROR): Likewise.
21898 Factor the `, ' part of verbose error messages.
21899
21900 2001-09-18 Marc Autret <autret_m@epita.fr>
21901
21902 * src/getargs.c (longopts): Declare --defines and --graph as options
21903 with optional arguments.
21904 * src/files.h: Add extern declarations.
21905 * src/files.c (spec_graph_file, spec_defines_file): New.
21906 (output_files): Update.
21907 Remove CPP-outed code.
21908
21909 2001-09-18 Marc Autret <autret_m@epita.fr>
21910
21911 Turn off %{source,header}_extension feature.
21912
21913 * src/files.c (compute_exts_from_gf): Update.
21914 (compute_exts_from_src): Update.
21915 (output_files): CPP-out useless code.
21916 * src/files.h: Remove {header,source}_extension extern declarations.
21917 * src/reader.c (parse_dquoted_param): CPP-out.
21918 (parse_header_extension_decl): Remove.
21919 (parse_source_extension_decl): Remove.
21920 (read_declarations): Remove cases tok_{hdrext,srcext}.
21921 * src/lex.c (percent_table): Remove {header,source}_extension entries.
21922 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
21923
21924 2001-09-10 Akim Demaille <akim@epita.fr>
21925
21926 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
21927 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
21928 (AT_CHECK_OUTPUT): this.
21929 Merely check ls' exit status, its output is useless.
21930
21931 2001-09-10 Akim Demaille <akim@epita.fr>
21932
21933 * tests/calc.at: Use m4_match.
21934 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
21935
21936 2001-09-10 Marc Autret <autret_m@epita.fr>,
21937 Akim Demaille <akim@epita.fr>
21938
21939 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
21940 enum color_e.
21941 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
21942 to `normal'.
21943 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
21944 * src/lex.h: Adjust prototype.
21945 (token_t): Add `tok_undef'.
21946 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
21947 (parse_percent_token): Now returns token_t.
21948 Add default statement in switch.
21949 (lex): Separate `c' as an input variable, from the token_t result
21950 part.
21951 (unlexed): Is a token_t.
21952
21953 2001-09-10 Akim Demaille <akim@epita.fr>
21954
21955 * configure.in: Bump to 1.29a.
21956
21957 2001-09-07 Akim Demaille <akim@epita.fr>
21958
21959 Version 1.29.
21960
21961 2001-08-30 Akim Demaille <akim@epita.fr>
21962
21963 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
21964 * m4/atconfig.m4: Remove.
21965 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
21966 * tests/bison: New.
21967 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
21968 m4_if, m4_patsubst, and m4_regexp.
21969 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
21970 `input' file instead of echo.
21971
21972 2001-08-29 Akim Demaille <akim@epita.fr>
21973
21974 Bump to 1.28e.
21975
21976 2001-08-29 Akim Demaille <akim@epita.fr>
21977
21978 Version 1.28d.
21979
21980 2001-08-29 Paul Eggert <eggert@twinsun.com>
21981
21982 * src/bison.simple (yyparse): Don't take the address of an
21983 item before the start of an array, as that doesn't conform to
21984 the C Standard.
21985
21986 2001-08-29 Robert Anisko <anisko_r@epita.fr>
21987
21988 * doc/bison.texinfo (Location Tracking Calc): New node.
21989
21990 2001-08-29 Paul Eggert <eggert@twinsun.com>
21991
21992 * src/output.c (output): Do not define const, as this now
21993 causes more problems than it cures.
21994
21995 2001-08-29 Akim Demaille <akim@epita.fr>
21996
21997 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
21998 the nodes.
21999 Be sure to tag the `detailmenu'.
22000
22001 2001-08-29 Akim Demaille <akim@epita.fr>
22002
22003 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
22004 download in a tmp dir.
22005
22006 2001-08-28 Marc Autret <autret_m@epita.fr>
22007
22008 * config/depcomp: New file.
22009
22010 2001-08-28 Marc Autret <autret_m@epita.fr>
22011
22012 * doc/bison.1 (mandoc): Adjust.
22013 From Juan Manuel Guerrero.
22014
22015 2001-08-28 Marc Autret <autret_m@epita.fr>
22016
22017 * src/print_graph.c (print_state): Fix.
22018
22019 2001-08-27 Marc Autret <autret_m@epita.fr>
22020
22021 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
22022 char * members.
22023 Echo modifications to the functions prototypes.
22024 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
22025
22026 2001-08-27 Marc Autret <autret_m@epita.fr>
22027
22028 * src/vcg.c: Include `xalloc.h'.
22029 (add_colorentry): New.
22030 (add_classname): New.
22031 (add_infoname): New.
22032 * src/vcg.h: Add new prototypes.
22033
22034 2001-08-27 Akim Demaille <akim@epita.fr>
22035
22036 * Makefile.maint: Sync. again with CVS Autoconf.
22037
22038 2001-08-27 Akim Demaille <akim@epita.fr>
22039
22040 * Makefile.maint: Formatting changes.
22041 (po-update, cvs-update, update): New targets.
22042 (AMTAR): Remove.
22043
22044 2001-08-27 Akim Demaille <akim@epita.fr>
22045
22046 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22047 * Makefile.maint: Sync. with CVS Autoconf.
22048
22049 2001-08-27 Marc Autret <autret_m@epita.fr>
22050
22051 * src/vcg.h (struct infoname_s): New.
22052 (struct colorentry_s): New.
22053 (graph_s): New fields {vertical,horizontal}_order in structure.
22054 Add `infoname' field.
22055 Add `colorentry' field;
22056 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
22057 (G_HORIZONTAL_ORDER): New.
22058 (G_INFONAME): New.
22059 (G_COLORENTRY): New.
22060 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
22061 Add output of `infoname'.
22062 Add output of `colorentry'.
22063
22064 2001-08-27 Marc Autret <autret_m@epita.fr>
22065
22066 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
22067 This one shadowed a global parameter.
22068
22069 2001-08-24 Marc Autret <autret_m@epita.fr>
22070
22071 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
22072 instead of `unsigned'.
22073 (print_state): Do not call obstack_object_size () in obstack_grow ()
22074 to avoid macro variables shadowing.
22075
22076 2001-08-23 Marc Autret <autret_m@epita.fr>
22077
22078 * src/lex.c (percent_table): Typo: s/naem/name/.
22079 Add graph option.
22080 Normalize new options declarations.
22081
22082 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
22083
22084 * tests/suite.at: Exercise %header_extension and %source_extension.
22085
22086 2001-08-16 Marc Autret <autret_m@epita.fr>
22087
22088 * src/reader.c (parse_dquoted_param): New.
22089 (parse_header_extension_decl): Use it.
22090 (parse_source_extension_decl): Likewise.
22091
22092 2001-08-16 Marc Autret <autret_m@epita.fr>
22093
22094 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
22095 (get_xxxx_str): Use assert () instead of complain ().
22096 Remove return invokations in default cases.
22097 (get_decision_str): Modify default behaviour. Remove second argument.
22098 Echo modifications on calls.
22099 (output_graph): Fix.
22100
22101 2001-08-16 Marc Autret <autret_m@epita.fr>
22102
22103 * src/getargs.c (usage): Update with ``-g, --graph''.
22104
22105 2001-08-16 Marc Autret <autret_m@epita.fr>
22106
22107 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
22108 (Option Cross Key): Likewise.
22109 * doc/bison.1: Update.
22110
22111 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
22112
22113 * src/output.c (output_master_parser): Don't finish action_obstack.
22114 (output_parser): Don't care about the muscle action, here.
22115 (prepare): Copy the action_obstack in the action muscle.
22116 (output): Free action_obstack.
22117
22118 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
22119
22120 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
22121 will contain `%union' declaration.
22122 (parse_union_decl): Delete #line directive output.
22123 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
22124 informations about %union.
22125 (parse_union_decl): Copy the union_obstack in the muscle stype.
22126 * src/bison.simple: Add new #line directive.
22127 Add typdef %%stype YYSTYPE.
22128
22129 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
22130
22131 * src/bison.simple: Add new `#line' directive.
22132
22133 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
22134
22135 * src/bison.simple: New `#line' directive.
22136 * src/output.c (output_parser): Support new dynamic muscle input_line.
22137
22138 2001-09-22 Marc Autret <autret_m@epita.fr>
22139
22140 * src/output.c (output_master_parser): New.
22141 (output_parser): Be more re-entrant.
22142
22143 2001-09-21 Marc Autret <autret_m@epita.fr>
22144
22145 * src/reader.c (copy_definition, parse_union_decl): Update and use
22146 `linef' muscle.
22147 (copy_action): Likewise.
22148 Use obstack_1grow ().
22149 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
22150
22151 2001-09-21 Marc Autret <autret_m@epita.fr>
22152
22153 * src/options.c (option_table): Adjust.
22154 * src/lex.c (parse_percent_token): Fix.
22155
22156 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
22157
22158 * src/options.c (symtab.h): Include it, need by lex.h.
22159
22160 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
22161
22162 * src/lex.c (parse_percent_token): Change type of variable `tx', which
22163 is now an option_table_struct*.
22164 (option_strcmp): New function option_strcmp.
22165 (parse_percent_token): Call option_strcmp.
22166 * src/getargs.c (xalloc.h, options.h): Include it.
22167 (getargs): Call create_long_option_table.
22168 (getargs): Free longopts at the end of the function.
22169 (shortopts): Move in options.c.
22170 * src/options.c (create_long_option_table): New function. Convert
22171 information from option_table to option structure.
22172 * src/reader.c (options.h): Include it.
22173
22174 * src/Makefile.am: Adjust.
22175 * src/options.c (option_table): Create from longopts and percent_table.
22176 * src/getargs.c (longopts): Delete.
22177 * src/lex.c (struct percent_table_struct): Delete.
22178 (percent_table): Delete.
22179 (options.h): Include it.
22180 * src/options.c: Create.
22181 * src/options.h: Create.
22182 Declare enum opt_access_e.
22183 Define struct option_table_struct.
22184
22185 2001-09-20 Marc Autret <autret_m@epita.fr>
22186
22187 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
22188 sections of Bison.
22189
22190 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
22191
22192 * src/bison.simple: s/%%filename/%%skeleton.
22193 * src/muscle_tab.c (getargs.h): Include it.
22194 (muscle_init): Insert new muscle skeleton.
22195
22196 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
22197
22198 * src/output.c (output_parser): Delete unused variable actions_dumped.
22199
22200 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
22201
22202 * src/output.c (output): Delete call to reader_output_yylsp.
22203 * src/reader.c (reader): Likewise.
22204 * src/reader.h: Delete declaration of reader_output_yylsp.
22205
22206 2001-09-02 Marc Autret <autret_m@epita.fr>
22207
22208 * src/reader.c: Include muscle_tab.h.
22209 (parse_union_decl): Update.
22210 (parse_macro_decl): Rename parse_muscle_decl.
22211 Update to use renamed functions and variable.
22212 (read_declarations, copy_action, read_additionnal_code, : Updated
22213 with correct variables and functions names.
22214 (packsymbols, reader): Likewise.
22215
22216 * src/reader.h (muscle_obstack): Extern declaration update.
22217
22218 * src/output.c: Include muscle_tab.h
22219 In all functions using macro_insert, change by using muscle_insert ().
22220 (macro_obstack): Rename muscle_obstack.
22221 Echo modifications in the whole file.
22222 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
22223 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
22224 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
22225
22226 * src/muscle_tab.h: Update double inclusion macros.
22227 (macro_entry_s): Rename muscle_entry_s.
22228 Update prototypes.
22229
22230 * src/muscle_tab.c: Include muscle_tab.h.
22231 Rename macro_tabble to muscle_table.
22232 (mhash1, mhash2, mcmp): Use muscle_entry.
22233 (macro_init): Rename muscle_init. Update.
22234 (macro_insert): Rename muscle_insert. Update.
22235 (macro_find): Rename muscle_find. Update.
22236
22237 * src/main.c: Include muscle_tab.h.
22238 (main): Call muscle_init ().
22239 * src/Makefile.am (bison_SOURCES): Echo modifications.
22240
22241 2001-09-02 Marc Autret <autret_m@epita.fr>
22242
22243 Now the files macro_tab.[ch] are named muscle_tab.[ch].
22244
22245 * src/muscle_tab.c, src/muscle_tab.h: Add files.
22246
22247 2001-09-02 Marc Autret <autret_m@epita.fr>
22248
22249 * src/macrotab.c, src/macrotab.h: Remove.
22250
22251 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
22252
22253 * src/reader.c (copy_guard): Use muscle to specify the `#line'
22254 filename.
22255
22256 2001-09-01 Marc Autret <autret_m@epita.fr>
22257
22258 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
22259 to an explicit value to activate the feature. We do it here.
22260
22261 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22262
22263 * src/output.c (prepare): Delete the `filename' muscule insertion.
22264 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
22265 (parse_union_decl): Likewise.
22266 * src/macrotab.c (macro_init): Initialize filename by infile.
22267
22268 2001-08-31 Marc Autret <autret_m@epita.fr>
22269
22270 * src/bison.simple (YYLSP_NEEDED): New definition.
22271 * src/output.c (prepare): Add macro insertion of `locations_flag'
22272
22273 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22274
22275 * src/output.c (prepare): Delete insertion of previous muscles,
22276 and insert the `prefix' muscles.
22277 * src/macrotab.c (macro_init): Likewise.
22278 (macro_init): Initialization prefix directive by `yy'.
22279 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
22280 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
22281 yylval, yydebug, yyerror, yynerrs and yyparse.
22282 New directive `#define' to substitute yydebug, ... with option
22283 name_prefix.
22284
22285 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22286
22287 * src/main.c (main): Standardize.
22288 * src/output.c (output_table_data, output_parser): Likewise.
22289 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
22290
22291 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
22292
22293 * src/reader.c (read_additionnal_code): Rename %%user_code to
22294 %%epilogue.
22295 * src/output.c (output): Rename %%declarations to %%prologue.
22296 * src/bison.simple: Echo modifications.
22297
22298 2001-08-31 Marc Autret <autret_m@epita.fr>
22299
22300 * src/reader.c (readgram): CleanUp.
22301 (output_token_defines): Likewise.
22302 (packsymbols): Likewise.
22303 (reader): Likewise.
22304 * src/output.c (output): CPP-out useless code.
22305
22306 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
22307
22308 * src/reader.c (reader): Delete obsolete call to function
22309 output_trailers and output_headers.
22310 * src/output.h: Remove obsolete functions prototypes of output_headers
22311 and output_trailers.
22312
22313 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
22314
22315 * src/main.c: Include macrotab.h.
22316 * src/macrotab.h (macro_entry_s): Constify fields.
22317 Adjust functions prototypes.
22318 * src/macrotab.c (macro_insert): Constify key and value.
22319 (macro_find): Constify key.
22320 (macro_insert): Include 'xalloc.h'
22321 (macro_insert): Use XMALLOC.
22322 (macro_find): Constify return value.
22323 * src/output.c (output_table_data): Rename table to table_data.
22324 (output_parser): Constify macro_key, macro_value.
22325
22326 2001-08-30 Marc Autret <autret_m@epita.fr>
22327
22328 * src/reader.c (parse_skel_decl): New.
22329 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
22330 * src/lex.h (token_t): New token `tok_skel'.
22331 * src/lex.c (percent_table): Add skeleton option entry.
22332 Standardize.
22333
22334 2001-08-29 Marc Autret <autret_m@epita.fr>
22335
22336 * src/bison.simple: Add %%user_code directive at the end.
22337 * src/reader.c (read_additionnal_code): New.
22338 (reader): Use it.
22339 * src/output.c (output_program): Remove.
22340 (output): Update.
22341
22342 2001-08-28 Marc Autret <autret_m@epita.fr>
22343
22344 * src/output.c (output_actions): Clean up.
22345 (output_gram): CPP-out useless code.
22346 * src/reader.c (reader): Clean up, CPP-out useless code.
22347
22348 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
22349
22350 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
22351 directive.
22352 * src/bison.simple: Add `%%definitions'.
22353
22354 2001-08-28 Marc Autret <autret_m@epita.fr>
22355
22356 * config/depcomp: New file.
22357
22358 2001-08-27 Paul Eggert <eggert@twinsun.com>
22359
22360 * src/bison.simple (yyparse): Don't take the address of an
22361 item before the start of an array, as that doesn't conform to
22362 the C Standard.
22363
22364 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
22365
22366 * src/output.c (output): Remove the initialization of the macro
22367 obstack. It was done too late here.
22368
22369 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
22370 completely wrong.
22371 (reader): Initialize the macro obstack here, since we need it to grow
22372 '%define' directives.
22373
22374 * src/reader.h: Declare the macro obstack as extern.
22375
22376 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
22377
22378 * src/output.c (output_parser): Fix. Store single '%' characters in
22379 the output obstack instead of throwing them away.
22380
22381 2001-08-27 Akim Demaille <akim@epita.fr>
22382
22383 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22384
22385 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22386
22387 * lib/Makefile.am: Adjust.
22388
22389 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22390
22391 * src/bison.simple: Update and add '%%' directives.
22392
22393 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22394
22395 * src/reader.c (reader): Remove calls to 'output_headers' and
22396 'output_trailers'. Remove some C output.
22397 (readgram): Disable a piece of code that was writing a default
22398 definition for 'YYSTYPE'.
22399 (reader_output_yylsp): Remove.
22400 (packsymbols): Output token defintions to a macro.
22401 (copy_definition): Disable C output.
22402
22403 * src/reader.c (parse_macro_decl): New function used to parse macro
22404 declarations.
22405 (copy_string2): Put the body of copy_string into this new function.
22406 Add a parameter to let the caller choose whether he wants to copy the
22407 string delimiters or not.
22408 (copy_string): Be a simple call to copy_string2 with the last argument
22409 bound to true.
22410 (read_declarations): Add case for macro definition.
22411 (copy_identifier): New.
22412 (parse_macro_decl): Read macro identifiers using copy_identifier
22413 rather than lex.
22414
22415 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22416
22417 * src/output.c (prepare): Add prefixed names.
22418 (output_parser): Output semantic actions.
22419 (output_parser): Fix bug on '%%line' directives.
22420
22421 * src/output.c (output_headers): Remove. The C code printed by this
22422 function should now be in the skeletons.
22423 (output_trailers): Remove.
22424 (output): Disable call to 'reader_output_yylsp'.
22425 (output_rule_data): Do not output tables to the table obstack.
22426
22427 * src/output.c: Remove some C dedicated output.
22428 Improve the use of macro and output obstacks.
22429 (output_defines): Remove.
22430
22431 * src/output.c (output_token_translations): Associate 'translate'
22432 table with a macro. No output to the table obstack.
22433 (output_gram): Same for 'rhs' and 'prhs'.
22434 (output_stos): Same for 'stos'.
22435 (output_rule_data): Same for 'r1' and 'r2'.
22436 (token_actions): Same for 'defact'.
22437 (goto_actions): Same for 'defgoto'.
22438 (output_base): Same for 'pact' and 'pgoto'.
22439 (output_table): Same for 'table'.
22440 (output_check): Same for 'check'.
22441
22442 * src/output.c (output_table_data): New function.
22443 (output_short_table): Remove.
22444 (output_short_or_char_table): Remove.
22445
22446 * src/output.c (output_parser): Replace most of the skeleton copy code
22447 with something new. Skeletons are now processed character by character
22448 rather than line by line, and Bison looks for '%%' macros. This is the
22449 first step in making Bison's output process (a lot) more flexible.
22450 (output_parser): Use the macro table.
22451
22452 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22453
22454 * src/main.c (main): Initialize the macro table.
22455
22456 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22457
22458 * src/lex.c (percent_table): Add tok_define.
22459 * src/lex.h: Add tok_define.
22460
22461 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22462
22463 * src/macrotab.c: New file.
22464 * src/macrotab.h: New file.
22465 * src/Makefile.am: Update.
22466
22467 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
22468
22469 * lib/hash.c: New file.
22470 * lib/hash.h: New file.
22471 * lib/Makefile.am: Update.
22472
22473 2001-08-15 Akim Demaille <akim@epita.fr>
22474
22475 Version 1.28c.
22476
22477 2001-08-15 Marc Autret <autret_m@epita.fr>
22478
22479 * src/reader.c (readgram): Indent output macro YYSTYPE.
22480 (packsymbols): Likewise.
22481 (output_token_defines): Likewise.
22482 * src/files.c: Standardize.
22483 (compute_header_macro): New.
22484 (defines_obstack_save): New. Use compute_header_macro.
22485 (output_files): Update. Use defines_obstack_save.
22486
22487 2001-08-15 Akim Demaille <akim@epita.fr>
22488
22489 * doc/bison.texinfo (Table of Symbols): Document
22490 YYSTACK_USE_ALLOCA.
22491
22492 2001-08-15 Akim Demaille <akim@epita.fr>
22493
22494 * missing: Update from CVS Automake.
22495 * config/config.guess, config/config.sub, config/texinfo.tex:
22496 Update from gnu.org.
22497
22498 2001-08-15 Akim Demaille <akim@epita.fr>
22499
22500 * Makefile.maint: Sync with CVS Autoconf.
22501
22502 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
22503
22504 * doc/bison.texinfo: Include GNU Free Documentation License from
22505 `fdl.texi'.
22506 * doc/fdl.texi: Add to package.
22507
22508 2001-08-14 Marc Autret <autret_m@epita.fr>
22509
22510 Turn on %{source,header}_extension features.
22511
22512 * src/lex.c (percent_table): Un-CPP out header_extension and
22513 source_extension.
22514 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
22515 (compute_exts_from_src): Remove conditions. It restores priorities
22516 between options.
22517
22518 2001-08-14 Marc Autret <autret_m@epita.fr>
22519
22520 * src/files.c (compute_base_names): Add extensions computing when
22521 `--file-prefix' used.
22522 Standardize function calls.
22523
22524 2001-08-13 Marc Autret <autret_m@epita.fr>
22525
22526 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
22527 defining it (defined but null disables alloca).
22528
22529 2001-08-13 Marc Autret <autret_m@epita.fr>
22530
22531 * src/bison.simple (_yy_memcpy): CPP reformat.
22532
22533 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
22534
22535 * tests/atconfig.in (CPPFLAGS): Fix.
22536
22537 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
22538
22539 * doc/bison.texinfo: Include GNU General Public License from
22540 `gpl.texi'.
22541 * doc/gpl.texi: Add to package.
22542
22543 2001-08-10 Marc Autret <autret_m@epita.fr>
22544
22545 * src/print_graph.h: Fix.
22546 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
22547
22548 2001-08-10 Akim Demaille <akim@epita.fr>
22549
22550 * src/system.h: Provide default declarations for stpcpy, strndup,
22551 and strnlen.
22552
22553 2001-08-10 Robert Anisko <anisko_r@epita.fr>
22554
22555 * doc/bison.texinfo (Locations): Update @$ stuff.
22556
22557 2001-08-09 Robert Anisko <anisko_r@epita.fr>
22558
22559 * src/bison.simple (YYLLOC_DEFAULT): Update.
22560 (yyparse): Adjust.
22561
22562 2001-08-08 Marc Autret <autret_m@epita.fr>
22563
22564 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
22565 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
22566 Reported by Fabrice Bauzac.
22567
22568 2001-08-08 Marc Autret <autret_m@epita.fr>
22569
22570 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
22571 * src/vcg.c (output_node): Fix.
22572 * src/vcg.h: Cleanup.
22573 * src/print_graph.c: Add comments.
22574 (node_output_size): New global variable. Simplify the formatting of
22575 the VCG graph output.
22576 (print_actions): Unused code is now used. It notifies the final state
22577 and no action states in the VCG graph. It also give the reduce actions.
22578 The `shift and goto' edges are red and the `go to state' edges are
22579 blue.
22580 Get the current node name and node_obstack by argument.
22581 (node_obstack): New variable.
22582 (print_state): Manage node_obstack.
22583 (print_core): Use node_obstack given by argument.
22584 A node is not only computed here but in print_actions also.
22585 (print_graph): CPP out useless code instead of commenting it.
22586
22587 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
22588
22589 * tests/atconfig.in (CPPFLAGS): Fix.
22590
22591 2001-08-07 Akim Demaille <akim@epita.fr>
22592
22593 * src/print_graph.c (quote): New.
22594 (print_core): Use it.
22595
22596 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
22597
22598 * src/vcg.c (complain.h): Include it.
22599 Unepitaize `return' invocations.
22600 [NDEBUG] (main): Remove.
22601 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
22602 * src/files.c (open_files): Initialize graph_obstack.
22603 * src/print_graph.c (print_actions): CPP out useless code.
22604 (print_core): Don't output the last `\n' in labels.
22605 Use `quote'.
22606 * src/files.c (output_files): Output the VCG file.
22607 * src/main.c (main): Invoke print_graph ();
22608
22609 2001-08-06 Marc Autret <autret_m@epita.fr>
22610
22611 Automaton VCG graph output.
22612 Using option ``-g'' or long option ``--graph'', you can generate
22613 a gram_filename.vcg file containing a VCG description of the LALR (1)
22614 automaton of your grammar.
22615
22616 * src/main.c: Call to print_graph() function.
22617 * src/getargs.h: Update.
22618 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
22619 (graph_flag): New flag.
22620 (longopts): Update.
22621 (getargs): Add case `g'.
22622 * src/files.c (graph_obstack): New obstack struct.
22623 (open_files): Initialize new obstack.
22624 (output_files): Saves graph_obstack if required.
22625 * src/files.h (graph_obstack): New extern declaration.
22626 * src/Makefile.am: Add new source files.
22627
22628 2001-08-06 Marc Autret <autret_m@epita.fr>
22629
22630 * src/print_graph.c, src/print_graph.h (graph): New.
22631 * src/vcg.h: New file.
22632 * src/vcg.c: New file, VCG graph handling.
22633
22634 2001-08-06 Marc Autret <autret_m@epita.fr>
22635
22636 Add of %source_extension and %header_extension which specify
22637 the source or/and the header output file extension.
22638
22639 * src/files.c (compute_base_names): Remove initialisation of
22640 src_extension and header_extension.
22641 (compute_exts_from_gf): Update.
22642 (compute_exts_from_src): Update.
22643 (output_files): Update.
22644 * src/reader.c (parse_header_extension_decl): New.
22645 (parse_source_extension_decl): New.
22646 (read_declarations): New case statements for the new tokens.
22647 * src/lex.c (percent_table): Add entries for %source_extension
22648 and %header_extension.
22649 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
22650
22651 2001-08-06 Marc Autret <autret_m@epita.fr>
22652
22653 * configure.in: Bump to 1.28c.
22654 * doc/bison.texinfo: Texinfo thingies.
22655
22656 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
22657
22658 * tests/atconfig.in (CPPFLAGS): Add.
22659 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
22660
22661 2001-08-03 Akim Demaille <akim@epita.fr>
22662
22663 Version 1.28b.
22664
22665 2001-08-03 Akim Demaille <akim@epita.fr>
22666
22667 * tests/Makefile.am (check-local): Ship testsuite.
22668 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
22669 Include `string.h'.
22670
22671 2001-08-03 Akim Demaille <akim@epita.fr>
22672
22673 * configure.in: Try using -Wformat when compiling.
22674
22675 2001-08-03 Akim Demaille <akim@epita.fr>
22676
22677 * configure.in: Bump to 1.28b.
22678
22679 2001-08-03 Akim Demaille <akim@epita.fr>
22680
22681 * src/complain.c: Adjust strerror_r portability issues.
22682
22683 2001-08-03 Akim Demaille <akim@epita.fr>
22684
22685 Version 1.28a.
22686
22687 2001-08-03 Akim Demaille <akim@epita.fr>
22688
22689 * src/getargs.c, src/getarg.h (skeleton)): Constify.
22690 * src/lex.c (literalchar): Avoid name clashes on `buf'.
22691 * src/getargs.c: Include complain.h.
22692 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
22693 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
22694
22695 2001-08-03 Akim Demaille <akim@epita.fr>
22696
22697 * src/reader.c (readgram): Display hidden chars in error messages.
22698
22699 2001-08-03 Akim Demaille <akim@epita.fr>
22700
22701 Update to gettext 0.10.39.
22702
22703 2001-08-03 Akim Demaille <akim@epita.fr>
22704
22705 * lib/strspn.c: New.
22706
22707 2001-08-01 Marc Autret <autret_m@epita.fr>
22708
22709 * doc/bison.texinfo: Update.
22710 * doc/bison.1 (mandoc): Update.
22711 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
22712 * src/files.c: Support output files extensions computing.
22713 (src_extension): New static variable.
22714 (header_extension): New static variable.
22715 (tr): New function.
22716 (get_extension_index): New function, gets the index of an extension
22717 filename in a string.
22718 (compute_exts_from_gf): New function, computes extensions from the
22719 grammar file extension.
22720 (compute_exts_from_src): New functions, computes extensions from the
22721 C source file extension, file given by ``-o'' option.
22722 (compute_base_names): Update.
22723 (output_files): Update.
22724
22725 2001-08-01 Robert Anisko <anisko_r@epita.fr>
22726
22727 * doc/bison.texi: Document @$.
22728 (Locations): New section.
22729
22730 2001-07-18 Akim Demaille <akim@epita.fr>
22731
22732 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
22733 * config/prev-version.txt, config/move-if-change: New.
22734 * Makefile.am: Adjust.
22735
22736 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
22737
22738 * src/bison.simple (yyparse): Suppress warning `comparaison
22739 between signed and unsigned'.
22740
22741 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
22742
22743 * src/getargs.h (raw_flag): Remove.
22744 * src/getargs.c: Die on `-r'/`--raw'.
22745 * src/lex.c (parse_percent_token): Die on `%raw'.
22746 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
22747 * tests/calc.at: Suppress test with option `--raw'.
22748
22749 2001-07-14 Akim Demaille <akim@epita.fr>
22750
22751 * config/: New.
22752 * configure.in: Require Autoconf 2.50.
22753 Update to gettext 0.10.38.
22754
22755 2001-03-16 Akim Demaille <akim@epita.fr>
22756
22757 * doc/bison.texinfo: ANSIfy the examples.
22758
22759 2001-03-16 Akim Demaille <akim@epita.fr>
22760
22761 * getargs.c (skeleton): New variable.
22762 (longopts): --skeleton is a new option.
22763 (shortopts, getargs): -S is a new option.
22764 * getargs.h: Declare skeleton.
22765 * output.c (output_parser): Use it.
22766
22767 2001-03-16 Akim Demaille <akim@epita.fr>
22768
22769 * m4/strerror_r.m4: New.
22770 * m4/error.m4: Run AC_FUNC_STRERROR_R.
22771 * lib/error.h, lib/error.c: Update.
22772
22773 2001-03-16 Akim Demaille <akim@epita.fr>
22774
22775 * src/getargs.c (longopts): Clean up.
22776
22777 2001-02-21 Akim Demaille <akim@epita.fr>
22778
22779 * src/reader.c (gensym): `gensym_count' is your own.
22780 Use a static buf to create the symbol name, as token_buffer is no
22781 longer a buffer.
22782
22783 2001-02-08 Akim Demaille <akim@epita.fr>
22784
22785 * src/conflicts.c (conflict_report): Be sure not to append to res
22786 between two calls, which could happen if both first sprintf were
22787 skipped, but not the first cp += strlen.
22788
22789 2001-02-08 Akim Demaille <akim@epita.fr>
22790
22791 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
22792 New, from fileutils 4.0.37.
22793 * configure.in: Require Autoconf 2.49c. I took some time before
22794 making this decision. This is the only way out for portability
22795 issues in Bison, it would mean way too much duplicate effort to
22796 import in Bison features implemented in 2.49c since 2.13.
22797 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
22798
22799 2001-02-02 Akim Demaille <akim@epita.fr>
22800
22801 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
22802 * lib/xalloc.h, lib/xmalloc.c: Update.
22803
22804 2001-01-19 Akim Demaille <akim@epita.fr>
22805
22806 Get rid of the ad hoc handling of token_buffer in the scanner: use
22807 the obstacks.
22808
22809 * src/lex.c (token_obstack): New.
22810 (init_lex): Initialize it. No longer call...
22811 (grow_token_buffer): this. Remove it.
22812 Adjust all the places which used it to use the obstack.
22813
22814 2001-01-19 Akim Demaille <akim@epita.fr>
22815
22816 * src/lex.h: Rename all the tokens:
22817 s/\bENDFILE\b/tok_eof/g;
22818 s/\bIDENTIFIER\b/tok_identifier/g;
22819 etc.
22820 Let them be enums, not #define, to ease debugging.
22821 Adjust all the code.
22822
22823 2001-01-18 Akim Demaille <akim@epita.fr>
22824
22825 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
22826 * src/lex.c (maxtoken, grow_token_buffer): Static.
22827
22828 2001-01-18 Akim Demaille <akim@epita.fr>
22829
22830 Since we now use obstacks, more % directives can be enabled.
22831
22832 * src/lex.c (percent_table): Also accept `%yacc',
22833 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
22834 `%debug'.
22835 Handle the actions for `%semantic_parser' and `%pure_parser' here,
22836 instead of returning a token.
22837 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
22838 * src/reader.c (read_declarations): Adjust.
22839 * src/files.c (open_files): Don't call `compute_base_names', don't
22840 compute `attrsfile' since they depend upon data which might be
22841 *in* the input file now.
22842 (output_files): Do it here.
22843 * src/output.c (output_headers): Document the fact that this patch
22844 introduces a guaranteed SEGV for semantic parsers.
22845 * doc/bison.texinfo: Document them.
22846 * tests/suite.at: Exercise these %options.
22847
22848 2000-12-20 Akim Demaille <akim@epita.fr>
22849
22850 Also handle the output file (--verbose) with obstacks.
22851
22852 * files.c (foutput): Remove.
22853 (output_obstack): New.
22854 Adjust all dependencies.
22855 * src/conflicts.c: Return a string.
22856 * src/system.h (obstack_grow_string): Rename as...
22857 (obstack_sgrow): this. Be ready to work with non literals.
22858 (obstack_fgrow4): New.
22859
22860 2000-12-20 Akim Demaille <akim@epita.fr>
22861
22862 * src/files.c (open_files): Fix the computation of short_base_name
22863 in the case of `-o foo.tab.c'.
22864
22865 2000-12-20 Akim Demaille <akim@epita.fr>
22866
22867 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
22868 (copy_dollar): Now that everything uses obstacks, get rid of the
22869 FILE * parameters.
22870
22871 2000-12-20 Akim Demaille <akim@epita.fr>
22872
22873 * src/files.c (open_files): Actually the `.output' file is based
22874 on the short_base_name, not base_name.
22875 * tests/suite.at (Checking output file names): Adjust.
22876
22877 2000-12-20 Akim Demaille <akim@epita.fr>
22878
22879 * src/bison.s1: Remove, we now use directly...
22880 * src/bison.simple: this.
22881 * src/Makefile.am: Use pkgdata instead of data.
22882
22883 2000-12-20 Akim Demaille <akim@epita.fr>
22884
22885 * src/files.c (guard_obstack): New.
22886 (open_files): Initialize it.
22887 (output_files): Dump it...
22888 * src/files.h: Export it.
22889 * src/reader.c (copy_guard): Use it.
22890
22891 2000-12-19 Akim Demaille <akim@epita.fr>
22892
22893 * src/files.c (outfile, defsfile, actfile): Removed as global
22894 vars.
22895 (open_files): Don't compute them.
22896 (output_files): Adjust.
22897 (base_name, short_base_name): Be global.
22898 Adjust dependencies.
22899
22900 2000-12-19 Akim Demaille <akim@epita.fr>
22901
22902 * src/files.c (strsuffix): New.
22903 (stringappend): Be just like strcat but allocate.
22904 (base_names): Eve out from open_files.
22905 Try to simplify the rather hairy computation of base_name and
22906 short_base_name.
22907 (open_files): Use it.
22908 * tests/suite.at (Checking output file names): New test.
22909
22910 2000-12-19 Akim Demaille <akim@epita.fr>
22911
22912 * src/system.h (obstack_grow_literal_string): Rename as...
22913 (obstack_grow_string): this.
22914 * src/output.c (output_parser): Recognize `%% actions' instead of
22915 `$'.
22916 * src/bison.s1: s/$/%% actions/.
22917 * src/bison.hairy: Likewise.
22918
22919 2000-12-19 Akim Demaille <akim@epita.fr>
22920
22921 * src/output.c (output_parser): Compute the `#line' lines when
22922 there are.
22923 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
22924 Suggested by Hans Aberg.
22925
22926 2000-12-19 Akim Demaille <akim@epita.fr>
22927
22928 Let the handling of the skeleton files be local to the procedures
22929 that use it.
22930
22931 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
22932 longer static.
22933 (fparser, open_extra_files): Remove.
22934 (open_files, output_files): Don't take care of fparser.
22935 * src/files.h: Adjust.
22936 * src/output.c (output_parser): Open and close the file to the
22937 skeleton.
22938 * src/reader.c (read_declarations): When %semantic_parser, open
22939 fguard.
22940
22941 2000-12-19 Akim Demaille <akim@epita.fr>
22942
22943 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
22944 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
22945
22946 2000-12-19 Akim Demaille <akim@epita.fr>
22947
22948 * src/files.c (open_files): Yipee! We no longer need all the code
22949 looking for `/tmp' since we have no tmp file.
22950
22951 2000-12-19 Akim Demaille <akim@epita.fr>
22952
22953 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
22954 New macros.
22955 * src/files.c (open_files): Less dependency on MSDOS etc.
22956
22957 2000-12-14 Akim Demaille <akim@epita.fr>
22958
22959 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
22960 Provide a default definition.
22961 Use it when executing the default @ action.
22962 * src/reader.c (reader_output_yylsp): No longer include
22963 `timestamp' and `text' in the default YYLTYPE.
22964
22965 2000-12-12 Akim Demaille <akim@epita.fr>
22966
22967 * src/reader.c (copy_definition, parse_union_decl, copy_action)
22968 (copy_guard): Quote the file names.
22969 Reported by Laurent Mascherpa.
22970
22971 2000-12-12 Akim Demaille <akim@epita.fr>
22972
22973 * src/output.c (output_headers, output_program, output): Be sure
22974 to escape special characters when outputting filenames.
22975 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
22976 (output_headers): Don't depend on them, Use ACTSTR.
22977
22978 2000-11-17 Akim Demaille <akim@epita.fr>
22979
22980 * lib/obstack.h: Formatting changes.
22981 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
22982 prevents type checking.
22983 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
22984 cast the value to (void *): assigning a `foo *' to a `void *'
22985 variable is valid.
22986 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
22987 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
22988 append characters.
22989
22990 2000-11-17 Akim Demaille <akim@epita.fr>
22991
22992 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
22993 as...
22994 (suite.m4, regression.m4, calc.m4): these.
22995 * tests/atgeneral.m4: Update from CVS Autoconf.
22996
22997 2000-11-17 Akim Demaille <akim@epita.fr>
22998
22999 * tests/regression.m4 (%union and --defines): New test,
23000 demonstrating a current bug in the obstack implementation.
23001
23002 2000-11-17 Akim Demaille <akim@epita.fr>
23003
23004 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
23005 macros.
23006 Use them to declare the variables which are global or local to
23007 `yyparse'.
23008
23009 2000-11-17 Akim Demaille <akim@epita.fr>
23010
23011 * acconfig.h: Remove, no longer used.
23012
23013 2000-11-07 Akim Demaille <akim@epita.fr>
23014
23015 * src: s/Copyright (C)/Copyright/g.
23016
23017 2000-11-07 Akim Demaille <akim@epita.fr>
23018
23019 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
23020 defining.
23021 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
23022
23023 2000-11-07 Akim Demaille <akim@epita.fr>
23024
23025 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
23026 Merge in a single CPP if/else.
23027
23028 2000-11-07 Akim Demaille <akim@epita.fr>
23029
23030 * src/output.c (output): Remove useless variables.
23031 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
23032 argument `data' for consistency with the prototypes.
23033 Qualify it `const'.
23034 (obstack_copy, obstack_copy0): Rename the second argument as
23035 `address' for consistency. Qualify it `const'.
23036 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
23037 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
23038 `const' their input argument (`data' or `address').
23039 Adjust the corresponding macros to include `const' in casts.
23040
23041 2000-11-03 Akim Demaille <akim@epita.fr>
23042
23043 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
23044 s/PFILE1/BISON_HAIRY/.
23045 Adjust dependencies.
23046
23047 2000-11-03 Akim Demaille <akim@epita.fr>
23048
23049 For some reason, this was not applied.
23050
23051 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23052 `unlink': it's no longer used.
23053
23054 2000-11-03 Akim Demaille <akim@epita.fr>
23055
23056 * src/files.c (skeleton_find): New function, eved out of...
23057 (open_files, open_extra_files): here.
23058
23059 2000-11-03 Akim Demaille <akim@epita.fr>
23060
23061 Don't use `atexit'.
23062
23063 * src/files.c (obstack_save): New function.
23064 (done): Rename as...
23065 (output_files): this.
23066 Use `obstack_save'.
23067 * src/main.c (main): Don't use `atexit' to register `done', since
23068 it no longer has to remove tmp files, just call `output_files'
23069 when there are no errors.
23070
23071 2000-11-02 Akim Demaille <akim@epita.fr>
23072
23073 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23074 `unlink': it's no longer used.
23075 * src/files.h: Formatting changes.
23076
23077 2000-11-02 Akim Demaille <akim@epita.fr>
23078
23079 Remove the last uses of mktemp and unlink/delete.
23080
23081 * src/files.c (fdefines, ftable): Removed.
23082 (defines_ostack, table_obstack): New.
23083 Adjust dependencies of the former into uses of the latter.
23084 * src/output.c (output_short_or_char_table, output_short_table):
23085 Convert to using obstacks.
23086 * src/reader.c (copy_comment2): Accept one FILE * and two
23087 obstacks.
23088 (output_token_defines, reader_output_yylsp): Use obstacks.
23089 * src/system.h (obstack_fgrow3): New.
23090 * po/POTFILES.in: Adjust.
23091
23092 2000-11-01 Akim Demaille <akim@epita.fr>
23093
23094 Change each use of `fattrs' into a use of `attrs_obstack'.
23095
23096 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
23097 * src/files.c (fattrs): Remove.
23098 (attrs_obstack): New.
23099 Adjust all dependencies.
23100 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
23101
23102 2000-11-01 Akim Demaille <akim@epita.fr>
23103
23104 Introduce obstacks.
23105 Change each use of `faction' into a use of `action_obstack'.
23106
23107 * lib/obstack.h, lib/obstack.c: New files.
23108 * src/files.c (faction): Remove.
23109 (action_obstack): New.
23110 Adjust all dependencies.
23111
23112 2000-10-20 Akim Demaille <akim@epita.fr>
23113
23114 * lib/quote.h (PARAMS): New macro. Use it.
23115
23116 2000-10-16 Akim Demaille <akim@epita.fr>
23117
23118 * src/output.c (output_short_or_char_table): New function.
23119 (output_short_table, output_token_translations): Use it.
23120 (goto_actions): Use output_short_table.
23121
23122 2000-10-16 Akim Demaille <akim@epita.fr>
23123
23124 * src/symtab.c (bucket_new): New function.
23125 (getsym): Use it.
23126
23127 * src/output.c (output_short_table): New argument to display the
23128 comment associated with the table.
23129 Adjust dependencies.
23130 (output_gram): Use it.
23131 (output_rule_data): Nicer output layout for YYTNAME.
23132
23133 2000-10-16 Akim Demaille <akim@epita.fr>
23134
23135 * src/lex.c (read_typename): New function.
23136 (lex): Use it.
23137 * src/reader.c (copy_dollar): Likewise.
23138
23139 2000-10-16 Akim Demaille <akim@epita.fr>
23140
23141 * src/reader.c (copy_comment2): Expect the input stream to be on
23142 the `/' which is suspected to open a comment, instead of being
23143 called after `//' or `/*' was read.
23144 (copy_comment, copy_definition, parse_union_decl, copy_action)
23145 (copy_guard): Adjust.
23146
23147 2000-10-16 Akim Demaille <akim@epita.fr>
23148
23149 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
23150 `read_signed_integer'.
23151
23152 2000-10-16 Akim Demaille <akim@epita.fr>
23153
23154 * src/reader.c (copy_dollar): New function.
23155 (copy_guard, copy_action): Use it.
23156
23157 2000-10-16 Akim Demaille <akim@epita.fr>
23158
23159 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
23160 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
23161 New files, from Fileutils 4.0.27.
23162 * src/main.c (printable_version): Remove.
23163 * src/lex.c, src/reader.c: Use `quote'.
23164
23165 2000-10-04 Akim Demaille <akim@epita.fr>
23166
23167 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
23168
23169 2000-10-04 Akim Demaille <akim@epita.fr>
23170
23171 * doc/bison.texinfo: Various typos spotted by Neil Booth.
23172
23173 2000-10-04 Akim Demaille <akim@epita.fr>
23174
23175 When a literal string is used to define two different tokens,
23176 `bison -v' segfaults.
23177 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
23178
23179 * tests/regression.m4: New file.
23180 Include the core of the sample provided by Piotr Gackiewicz.
23181 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
23182 properly.
23183
23184 2000-10-04 Akim Demaille <akim@epita.fr>
23185
23186 * src/reader.c (parse_expect_decl): Keep `count' within the size
23187 of `buffer'.
23188 From Neil Booth.
23189
23190 2000-10-02 Paul Eggert <eggert@twinsun.com>
23191
23192 * bison.s1 (yyparse): Assign the default value
23193 unconditionally, to avoid a GCC warning and make the parser a
23194 tad smaller.
23195
23196 2000-10-02 Akim Demaille <akim@epita.fr>
23197
23198 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
23199 options.
23200
23201 2000-10-02 Akim Demaille <akim@epita.fr>
23202
23203 * src/derives.c, src/print.c, src/reduce.c: To ease the
23204 translation, move some `\n' out of the translated strings.
23205
23206 2000-10-02 Akim Demaille <akim@epita.fr>
23207
23208 The location tracking mechanism is precious for parse error
23209 messages. Nevertheless, it is enabled only when `@n' is used in
23210 the grammar, which is a different issue (you can use it in error
23211 message, but not in the grammar per se). Therefore, there should
23212 be another means to enable it.
23213
23214 * src/getargs.c (getargs): Support `--locations'.
23215 (usage): Report it.
23216 * src/getargs.h (locationsflag): Export it.
23217 * src/lex.c (percent_table): Support `%locations'.
23218 * src/reader.c (yylsp_needed): Remove this variable, now replaced
23219 with `locationsflag'.
23220 * doc/bison.texinfo: Document `--locations' and `%locations'.
23221 Sort the options.
23222 * tests/calc.m4: Test it.
23223
23224 For regularity of the names, replace each
23225 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
23226 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
23227 In addition replace each `flag' with `_flag'.
23228
23229 2000-10-02 Akim Demaille <akim@epita.fr>
23230
23231 Also test parse error messages, including with YYERROR_VERBOSE.
23232
23233 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
23234 associative).
23235 Use it to check the computations.
23236 Use it to check `nonassoc' is honored.
23237 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
23238 `--yyerror-verbose'.
23239 (_AT_CHECK_CALC): Adjust to this option.
23240 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
23241
23242 2000-10-02 Akim Demaille <akim@epita.fr>
23243
23244 Test also `--verbose', `--defines' and `--name-prefix'. Testing
23245 the latter demonstrates a flaw in the handling of non debugging
23246 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
23247 was used in order to simplify:
23248
23249 #if YYDEBUG
23250 if (yydebug)
23251 {
23252 ...
23253 }
23254 #endif
23255
23256 into
23257
23258 if (yydebug)
23259 {
23260 ...
23261 }
23262
23263 unfortunately this leads to a CPP conflict when
23264 `--name-prefix=foo' is used since it produces `#define yydebug
23265 foodebug'.
23266
23267 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
23268 (YYDPRINTF): New macro.
23269 Spread its use.
23270 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
23271 the bison options.
23272 Also test `--verbose', `--defines' and `--name-prefix'.
23273
23274 2000-10-02 Akim Demaille <akim@epita.fr>
23275
23276 Improve the readability of the produced parsers.
23277
23278 * src/bison.s1: Formatting changes.
23279 Improve the comment related to the `$' mark.
23280 (yydefault): Don't fall through to `yyresume': `goto' there.
23281 * src/output.c (output_parser): When the `$' is met, skip the end
23282 of its line.
23283 New variable, `number_of_dollar_signs', to check there's exactly
23284 one `$' in the parser skeleton.
23285
23286 2000-10-02 Akim Demaille <akim@epita.fr>
23287
23288 * lib/xstrdup.c: New file, from the fileutils.
23289 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
23290 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
23291 instead of strlen + xmalloc + strcpy.
23292 * src/symtab.c (copys): Remove, use xstrdup instead.
23293
23294 2000-10-02 Akim Demaille <akim@epita.fr>
23295
23296 * src/gram.h (associativity): New enum type which replaces the
23297 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
23298 `right_assoc', `left_assoc' and `non_assoc'.
23299 Adjust all dependencies.
23300 * src/reader.c: Formatting changes.
23301 (LTYPESTR): Don't define it, use it as a literal in
23302 `reader_output_yylsp'.
23303 * src/symtab.h (symbol_class): New enum type which replaces the
23304 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
23305 `sunknown', `stoken and `snterm'.
23306
23307 2000-10-02 Akim Demaille <akim@epita.fr>
23308
23309 * src/getargs.c (fixed_outfiles): Rename as...
23310 (yaccflag): for consistency and accuracy.
23311 Adjust dependencies.
23312
23313 2000-10-02 Akim Demaille <akim@epita.fr>
23314
23315 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
23316 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
23317 difficult and introduced a lot of core dump. It turns out that
23318 Bison used an implementation of `xmalloc' based on `calloc', and
23319 at various places it does depend upon the initialization to 0. I
23320 have not tried to isolate the pertinent places, and all the former
23321 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
23322 someone should address this issue.
23323
23324 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
23325 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
23326 files.
23327 Adjust dependencies.
23328 * src/warshall.h: New file.
23329 Propagate.
23330
23331 2000-10-02 Akim Demaille <akim@epita.fr>
23332
23333 Various anti-`extern in *.c' changes.
23334
23335 * src/system.h: Include `assert.h'.
23336
23337 2000-10-02 Akim Demaille <akim@epita.fr>
23338
23339 * src/state.h (nstates, final_state, first_state, first_shift)
23340 (first_reduction): Move their exportation from here...
23341 * src/LR0.h: to here.
23342 Adjust dependencies.
23343 * src/getargs.c (statisticsflag): New variable.
23344 Add support for `--statistics'.
23345 Adjust dependencies.
23346
23347 Remove a lot of now useless `extern' statements in most files.
23348
23349 2000-10-02 Akim Demaille <akim@epita.fr>
23350
23351 * src/LR0.h: New file.
23352 Propagate its use.
23353
23354 2000-10-02 Akim Demaille <akim@epita.fr>
23355
23356 * src/print.h: New file.
23357 Propagate its use.
23358 * src/print.c: Formatting and ordering changes.
23359 (verbose, terse): Replace with...
23360 (print_results): this new function.
23361 Adjust dependencies.
23362
23363 2000-10-02 Akim Demaille <akim@epita.fr>
23364
23365 * src/conflicts.c (conflict_report): New function.
23366 (conflict_log, verbose_conflict_log): Replace with...
23367 (print_conflicts): this function.
23368 Adjust dependencies.
23369 * src/conflicts.h: New file.
23370 Propagate its inclusion.
23371
23372 2000-10-02 Akim Demaille <akim@epita.fr>
23373
23374 * src/nullable.h: New file.
23375 Propagate its inclusion.
23376 * src/nullable.c: Formatting changes.
23377
23378 2000-10-02 Akim Demaille <akim@epita.fr>
23379
23380 * src/reduce.h: New file.
23381 Propagate its inclusion.
23382 * src/reduce.c: Topological sort and other formatting changes.
23383 (bool, TRUE, FALSE): Move their definition to...
23384 * src/system.h: here.
23385
23386 2000-10-02 Akim Demaille <akim@epita.fr>
23387
23388 * src/files.c: Formatting changes.
23389 (tryopen, tryclose, openfiles): Rename as...
23390 (xfopen, xfclose, open_files): this.
23391 (stringappend): static.
23392 * src/files.h: Complete the list of exported symbols.
23393 Propagate its use.
23394
23395 2000-10-02 Akim Demaille <akim@epita.fr>
23396
23397 * src/reader.h: New file.
23398 Propagate its use instead of tedious list of `extern' and
23399 prototypes.
23400 * src/reader.c: Formatting changes, topological sort,
23401 s/register//.
23402
23403 2000-10-02 Akim Demaille <akim@epita.fr>
23404
23405 * src/lex.h: Prototype `lex.c' exported functions.
23406 * src/reader.c: Adjust.
23407 * src/lex.c: Formatting changes.
23408 (safegetc): Rename as...
23409 (xgetc): this.
23410
23411 2000-10-02 Akim Demaille <akim@epita.fr>
23412
23413 * src/lalr.h: New file.
23414 Propagate its inclusion instead of prototypes and `extern'.
23415 * src/lalr.c: Formatting changes, topological sorting etc.
23416
23417 2000-10-02 Akim Demaille <akim@epita.fr>
23418
23419 * src/output.c (token_actions): Introduce a temporary array,
23420 YYDEFACT, that makes it possible for this function to use
23421 output_short_table.
23422
23423 2000-10-02 Akim Demaille <akim@epita.fr>
23424
23425 `user_toknums' is output as a `short[]' in `output.c', while it is
23426 defined as a `int[]' in `reader.c'. For consistency with the
23427 other output tables, `user_toknums' is now defined as a table of
23428 shorts.
23429
23430 * src/reader.c (user_toknums): Be a short table instead of an int
23431 table.
23432 Adjust dependencies.
23433
23434 Factor the short table outputs.
23435
23436 * src/output.c (output_short_table): New function.
23437 * src/output.c (output_gram, output_stos, output_rule_data)
23438 (output_base, output_table, output_check): Use it.
23439
23440 2000-10-02 Akim Demaille <akim@epita.fr>
23441
23442 * src/output.c (output): Topological sort of the functions, in
23443 order to get rid of the `static' prototypes.
23444 No longer use `register'.
23445 * src/output.h: New file.
23446 Propagate its inclusion in files explicitly prototyping functions
23447 from output.c.
23448
23449 2000-09-21 Akim Demaille <akim@epita.fr>
23450
23451 * src/atgeneral.m4: Update from Autoconf.
23452
23453 2000-09-21 Akim Demaille <akim@epita.fr>
23454
23455 * src/closure.h: New file.
23456 * src/closure.c: Formatting changes, topological sort over the
23457 functions, use of closure.h.
23458 (initialize_closure, finalize_closure): Rename as...
23459 (new_closure, free_closure): these. Adjust dependencies.
23460 * src/LR0.c: Formatting changes, topological sort, use of
23461 cloture.h.
23462 (initialize_states): Rename as...
23463 (new_states): this.
23464 * src/Makefile.am (noinst_HEADERS): Adjust.
23465
23466 2000-09-20 Akim Demaille <akim@epita.fr>
23467
23468 * src/acconfig.h: Don't protect config.h against multiple
23469 inclusion.
23470 Don't define PARAMS.
23471 * src/system.h: Define PARAMS.
23472 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
23473 purpose of config.h. system.h must not try to fix wrong
23474 definitions in config.h.
23475
23476 2000-09-20 Akim Demaille <akim@epita.fr>
23477
23478 * src/derives.h: New file.
23479 * src/main.c, src/derives.h: Use it.
23480 Formatting changes.
23481 * src/Makefile.am (noinst_HEADERS): Adjust.
23482
23483 2000-09-20 Akim Demaille <akim@epita.fr>
23484
23485 * tests/atgeneral.m4: Update from Autoconf.
23486 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
23487 (AT_CHECK_CALC): New macros.
23488 Use these macros to test bison with options `', `--raw',
23489 `--debug', `--yacc', `--yacc --debug'.
23490
23491 2000-09-19 Akim Demaille <akim@epita.fr>
23492
23493 * src/output.c: Formatting changes.
23494 * src/machine.h: Remove, leaving its contents in...
23495 * src/system.h: here.
23496 Include stdio.h.
23497 Adjust all dependencies on stdio.h and machine.h.
23498 * src/getargs.h: New file.
23499 Let all `extern' declarations about getargs.c be replaced with
23500 inclusion of `getargs.h'.
23501 * src/Makefile.am (noinst_HEADERS): Adjust.
23502
23503 * tests/calc.m4 (yyin): Be initialized in main, not on the global
23504 scope.
23505 (yyerror): Returns void, not int.
23506 * doc/bison.texinfo: Formatting changes.
23507
23508 2000-09-19 Akim Demaille <akim@epita.fr>
23509
23510 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
23511 portable.
23512
23513 2000-09-18 Akim Demaille <akim@epita.fr>
23514
23515 * configure.in: Append WARNING_CFLAGS to CFLAGS.
23516 * src/Makefile.am (INCLUDES): Don't.
23517 Be ready to fetch headers in lib/.
23518
23519 2000-09-18 Akim Demaille <akim@epita.fr>
23520
23521 * doc/bison.texinfo: Update the copyright.
23522 ANSIfy and GNUify the examples.
23523 Remove the old menu.
23524
23525 2000-09-18 Akim Demaille <akim@epita.fr>
23526
23527 First set of tests: use the `calc' example from the documentation.
23528
23529 * src/bison.s1 (yyparse): Condition the code using `yytname' which
23530 is defined only when YYDEBUG is.
23531 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
23532 * src/files.c (tryopen, tryclose): Formatting changes.
23533 Move to the top and be static.
23534 * src/reader.c (read_signed_integer): Likewise.
23535 * tests/calc.m4: New file.
23536 * Makefile.am, suite.m4: Adjust.
23537 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
23538
23539 2000-09-18 Akim Demaille <akim@epita.fr>
23540
23541 Add support for an Autotest test suite for Bison.
23542
23543 * m4/m4.m4, m4/atconfig.m4: New files.
23544 * m4/Makefile.am (EXTRA_DIST): Adjust.
23545 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
23546 files.
23547 * src/getargs.c: Display a more standard --version message.
23548 * src/reader.c (reader): Formatting changes.
23549 No longer depend upon VERSION_STRING.
23550 * configure.in: No longer use `dnl'.
23551 Set up the test suite and the new directory `tests/.
23552 (VERSION_STRING): Remove.
23553
23554 2000-04-14 Akim Demaille <akim@epita.fr>
23555
23556 * src/reader.c (copy_comment2): New function, same as former
23557 `copy_comment', but outputs into two FILE *.
23558 (copy_comment): Use it.
23559 (parse_union_decl): Use it.
23560 (get_type, parse_start_decl): Use the same `invalid' message.
23561 (parse_start_decl, parse_union_decl): Use the same `multiple'
23562 message.
23563 (parse_union_decl, copy_guard, copy_action): Use the same
23564 `unmatched' message.
23565 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
23566
23567 2000-03-31 Akim Demaille <akim@epita.fr>
23568
23569 * src/files.c (tryopen, tryclose): Move to the top.
23570 Be static.
23571
23572 2000-03-31 Akim Demaille <akim@epita.fr>
23573
23574 * src/main.c (main): Don't call `done', exit does it.
23575
23576 2000-03-31 Akim Demaille <akim@epita.fr>
23577
23578 * allocate.c: s/return (foo)/return foo/.
23579 * lalr.c: Likewise.
23580 * LR0.c: Likewise.
23581 * output.c: Likewise.
23582 * reader.c: Likewise.
23583 * symtab.c: Likewise.
23584 * vmsgetargs.c: Likewise.
23585
23586 2000-03-31 Akim Demaille <akim@epita.fr>
23587
23588 Clean up the error reporting functions.
23589
23590 * src/report.c: New file.
23591 * src/report.h: Likewise.
23592 * src/Makefile.am: Adjust.
23593 * m4/error.m4: New file.
23594 * m4/Makefile.am: Adjust.
23595 * configure.in (jm_PREREQ_ERROR): Call it.
23596 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
23597 Remove.
23598 (fatal, fatals): Remove. All callers use complain.c::fatal.
23599 (warn, warni, warns, warnss, warnss): Remove. All callers use
23600 complain.c::complain.
23601 (toomany): Remove, use fatal instead.
23602 * src/files.c (done): No argument, use complain_message_count.
23603 * src/main.c (main): Register `done' to `atexit'.
23604
23605 * src/getargs.c (usage): More `fputs', less `fprintf'.
23606
23607 2000-03-28 Akim Demaille <akim@epita.fr>
23608
23609 * lib/: New directory.
23610 * Makefile.am (SUBDIRS): Adjust.
23611 * configure.in: Adjust.
23612 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
23613 useless.
23614 * src/alloca.c: Moved to lib/.
23615 * src/getopt.c: Likewise.
23616 * src/getopt1.c: Likewise.
23617 * src/getopt.h: Likewise.
23618 * src/ansi2knr.c: Likewise.
23619 * src/ansi2knr.1: Likewise.
23620 * src/Makefile.am: Adjust.
23621 * lib/Makefile.am: New file.
23622
23623 2000-03-28 Akim Demaille <akim@epita.fr>
23624
23625 * src/getargs.c (usage): Refresh the help message.
23626
23627 2000-03-17 Akim Demaille <akim@epita.fr>
23628
23629 * src/getopt1.c: Updated from textutils 2.0e
23630 * src/getopt.c: Likewise.
23631 * src/getopt.h: Likewise.
23632
23633 2000-03-17 Akim Demaille <akim@epita.fr>
23634
23635 * src/Makefile.am (bison.simple): Fix the awk program: quote only
23636 the file name, not the whole `#line LINE FILE'.
23637
23638 2000-03-17 Akim Demaille <akim@epita.fr>
23639
23640 On syntax errors, report the token on which we choked.
23641
23642 * src/bison.s1 (yyparse): In the label yyerrlab, when
23643 YYERROR_VERBOSE, add yychar in msg.
23644
23645 2000-03-17 Akim Demaille <akim@epita.fr>
23646
23647 * src/reader.c (copy_at): New function.
23648 (copy_guard): Use it.
23649 (copy_action): Use it.
23650
23651 2000-03-17 Akim Demaille <akim@epita.fr>
23652
23653 Be kind to translators, save some useless translations.
23654
23655 * src/main.c (banner): New function.
23656 (fatal_banner): Use it.
23657 (warn_banner): Use it.
23658
23659 2000-03-17 Akim Demaille <akim@epita.fr>
23660
23661 * src/reader.c (copy_definition): Use copy_string and
23662 copy_comment. Removed now unused `match', `ended',
23663 `cplus_comment'.
23664 (copy_comment, copy_string): Moved, to be visible from
23665 copy_definition.
23666
23667 2000-03-17 Akim Demaille <akim@epita.fr>
23668
23669 * src/reader.c (copy_string): Declare `static inline'. No
23670 problems with inline, since it is checked by configure.
23671 (copy_comment): Likewise.
23672
23673 2000-03-17 Akim Demaille <akim@epita.fr>
23674
23675 * src/reader.c (packsymbols): Formatting changes.
23676
23677 2000-03-17 Akim Demaille <akim@epita.fr>
23678
23679 * src/reader.c (copy_comment): New function, factored out from:
23680 (copy_action): Use it. Removed now unused `match', `ended',
23681 `cplus_comment'.
23682 (copy_guard): Likewise.
23683
23684 2000-03-17 Akim Demaille <akim@epita.fr>
23685
23686 * src/reader.c (copy_string): New function, factored out from:
23687 (copy_action): Use it.
23688 (copy_guard): Likewise.
23689
23690 2000-03-17 Akim Demaille <akim@epita.fr>
23691
23692 Change the handling of @s so that they behave exactly like $s.
23693 There is now a pseudo variable @$ (readble and writable), location
23694 of the lhs of the rule (by default ranging from the location of
23695 the first symbol of the rhs, to the location of the last symbol,
23696 or, if the rhs is empty, YYLLOC).
23697
23698 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
23699 yyval.
23700 (yyparse): When providing a default semantic action, provide a
23701 default location action.
23702 (after the $): No longer change `*YYLSP', just stack YYLOC the
23703 same way you stack YYVAL.
23704 * src/reader.c (read_declarations): Use warns.
23705 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
23706 (copy_action, case '@'): Likewise.
23707 Use a standard error message, to save useless work from
23708 translators.
23709
23710 2000-03-17 Akim Demaille <akim@epita.fr>
23711
23712 * src/bison.s1: Formatting and cosmetics changes.
23713 * src/reader.c: Likewise.
23714 Update the Copyright notice.
23715
23716 2000-03-17 Akim Demaille <akim@epita.fr>
23717
23718 * src/bison.s1 (#line): All set to `#line' only, since the
23719 Makefile now handles them.
23720
23721 2000-03-16 Akim Demaille <akim@epita.fr>
23722
23723 * src/output.c (output_rule_data): Output the documentation of
23724 some of the tables.
23725 (Copyright notice): Update.
23726 Formatting changes.
23727
23728 2000-03-16 Akim Demaille <akim@epita.fr>
23729
23730 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
23731 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
23732 One `#if YYDEBUG' remains, since it uses variables which are
23733 defined only if `YYDEBUG != 0'.
23734
23735 2000-03-16 Akim Demaille <akim@epita.fr>
23736
23737 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
23738 and related variables so that the similarities are highlighted.
23739
23740 2000-03-16 Akim Demaille <akim@epita.fr>
23741
23742 * src/bison.s1: Properly indent CPP directives.
23743
23744 2000-03-16 Akim Demaille <akim@epita.fr>
23745
23746 * src/bison.s1: Properly indent the `alloca' CPP section.
23747
23748 2000-03-16 Akim Demaille <akim@epita.fr>
23749
23750 Do not hard code values of directories in `configure.in'.
23751 Update the `configure' tool chain.
23752
23753 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
23754 src/makefile.am.
23755 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
23756 (AC_OUTPUT): Add m4/Makefile.
23757 Bump to bison 1.28a, 1.29 has never been released.
23758 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
23759 handled via src/Makefile.am.
23760 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
23761 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
23762 autoheader.
23763 * Makefile.am (SUBDIRS): Add m4.
23764 (ACLOCAL_AM_FLAGS): New variable.
23765 (AUTOMAKE_OPTIONS): Add check-news.
23766 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
23767 the proper line number and file name.
23768 (DEFS): Propagate the location of bison library files and of the
23769 locale files.
23770 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
23771 builddir.
23772 * acinclude.m4: Remove, replaced by the directory m4.
23773 * m4/Makefile.am (EXTRA_DIST): New variable.
23774 * m4/gettext.m4: New file, from the fileutils.
23775 * m4/lcmessage.m4: Likewise
23776 * m4/progtest.m4: Likewise.
23777 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
23778
23779 2000-03-10 Akim Demaille <akim@epita.fr>
23780
23781 * src/closure.c:
23782 Formatting changes of various comments.
23783 Respect the GNU coding standards at various places.
23784 Don't use `_()' when no translation is needed.
23785
23786 1999-12-13 Jesse Thilo <jthilo@gnu.org>
23787
23788 * src/files.c:
23789 OS/2 honors TMPDIR environment variable.
23790
23791 1999-12-13 Jesse Thilo <jthilo@gnu.org>
23792
23793 * doc/bison.texinfo: Tweaked spelling and grammar.
23794 Updated ISBN.
23795 Removed reference to price of printed copy.
23796 Mention BISON_SIMPLE and BISON_HAIRY.
23797
23798 1999-12-13 Jesse Thilo <jthilo@gnu.org>
23799
23800 * configure.in, NEWS:
23801 Bison 1.29 released.
23802
23803 1999-10-27 Jesse Thilo <jthilo@gnu.org>
23804
23805 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
23806 Added reference card.
23807
23808 1999-07-26 Jesse Thilo <jthilo@gnu.org>
23809
23810 * po/ru.po: Added Russian translation.
23811
23812 1999-07-26 Jesse Thilo <jthilo@gnu.org>
23813
23814 * configure.in: Added Russian translation.
23815
23816 1999-07-06 Jesse Thilo <jthilo@gnu.org>
23817
23818 * configure.in, NEWS, README:
23819 Released version 1.28.
23820
23821 1999-06-14 Jesse Thilo <jthilo@gnu.org>
23822
23823 * src/system.h:
23824 Squashed redefinition warning on some systems.
23825
23826 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
23827 Have configure build version string instead of relying on ANSI string
23828 concatentation.
23829
23830 1999-06-14 Jesse Thilo <jthilo@gnu.org>
23831
23832 * po/POTFILES.in: Got rid of version.c.
23833
23834 1999-06-14 Jesse Thilo <jthilo@gnu.org>
23835
23836 * acconfig.h, configure.in:
23837 Have configure build version string instead of relying on ANSI string
23838 concatentation.
23839
23840 1999-06-08 Jesse Thilo <jthilo@gnu.org>
23841
23842 * doc/bison.1:
23843 Dropped mention of `+' for long-named options.
23844
23845 1999-05-30 Jesse Thilo <jthilo@gnu.org>
23846
23847 * src/files.c: Added <unistd.h> for unlink().
23848
23849 * src/Makefile.am, src/system.h:
23850 I18n fixes.
23851
23852 1999-05-30 Jesse Thilo <jthilo@gnu.org>
23853
23854 * README: Added a FAQ list.
23855
23856 * configure.in, acconfig.h:
23857 I18n fixes.
23858
23859 1999-05-30 Jesse Thilo <jthilo@gnu.org>
23860
23861 * doc/FAQ, doc/Makefile.am:
23862 Added a FAQ list.
23863
23864 1999-05-19 Jesse Thilo <jthilo@gnu.org>
23865
23866 * src/alloc.h, src/symtab.h, src/version.c:
23867 Protected inclusion of "config.h" with HAVE_CONFIG_H.
23868
23869 1999-04-18 Jesse Thilo <jthilo@gnu.org>
23870
23871 * src/.cvsignore, src/Makefile.am:
23872 Reorganized: sources in `src', documentation in `doc'.
23873
23874 * src/lex.c (literalchar):
23875 fixed the code for escaping double quotes (thanks
23876 Jonathan Czisny.)
23877
23878 1999-04-18 Jesse Thilo <jthilo@gnu.org>
23879
23880 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
23881 Adjusted paths to reflect directory reorganization.
23882
23883 1999-04-18 Jesse Thilo <jthilo@gnu.org>
23884
23885 * doc/.cvsignore, doc/Makefile.am:
23886 Reorganized: sources in `src', documentation in `doc'.
23887
23888 1999-04-18 Jesse Thilo <jthilo@gnu.org>
23889
23890 * configure.in:
23891 Updated AC_INIT file to reflect directory reorganization.
23892
23893 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
23894 Reorganized: sources in `src', documentation in `doc'.
23895
23896 1999-04-13 Jesse Thilo <jthilo@gnu.org>
23897
23898 * src/allocate.c:
23899 Don't declare calloc() and realloc() if not necessary.
23900
23901 1999-04-13 Jesse Thilo <jthilo@gnu.org>
23902
23903 * configure.in, acconfig.h, acinclude.m4:
23904 Don't declare calloc() and realloc() if not necessary.
23905
23906 1999-03-23 Jesse Thilo <jthilo@gnu.org>
23907
23908 * po/.cvsignore: Added i18n support.
23909
23910 1999-03-23 Jesse Thilo <jthilo@gnu.org>
23911
23912 * acconfig.h, configure.in, Makefile.am:
23913 Added i18n support.
23914
23915 1999-03-22 Jesse Thilo <jthilo@gnu.org>
23916
23917 * src/bison.s1: Fixed #line numbers.
23918
23919 1999-03-15 Jesse Thilo <jthilo@gnu.org>
23920
23921 * po/es.po, po/fr.po, po/nl.po, po/de.po:
23922 Added PO files from Translation Project.
23923
23924 1999-03-03 Jesse Thilo <jthilo@gnu.org>
23925
23926 * Makefile.am:
23927 Added support for non-ANSI compilers (ansi2knr).
23928
23929 1999-02-16 Jesse Thilo <jthilo@gnu.org>
23930
23931 * configure.in: Bumped version number to 1.27.
23932
23933 * Makefile.am:
23934 Added `bison.simple' to list of files removed by `make distclean'.
23935
23936 1999-02-12 Jesse Thilo <jthilo@gnu.org>
23937
23938 * src/files.c, src/files.h:
23939 Defined locations of parser files in config.h instead of Makefile.
23940
23941 1999-02-12 Jesse Thilo <jthilo@gnu.org>
23942
23943 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
23944 Defined locations of parser files in config.h instead of Makefile.
23945
23946 1999-02-09 Jesse Thilo <jthilo@gnu.org>
23947
23948 * Makefile.am:
23949 Removed inappropriate use of $< macro.
23950
23951 1999-02-05 Jesse Thilo <jthilo@gnu.org>
23952
23953 * po/Makefile.in.in, po/POTFILES.in:
23954 Add `po' directory skeleton.
23955
23956 1999-01-27 Jesse Thilo <jthilo@gnu.org>
23957
23958 * README: Document help-bison list.
23959
23960 * configure.in: Add check for mkstemp().
23961
23962 1999-01-20 Jesse Thilo <jthilo@gnu.org>
23963
23964 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
23965 Hush a few compiler warnings.
23966
23967 * src/files.c:
23968 Add tryclose(), which verifies that fclose was successful.
23969 Hush a couple of compiler warnings.
23970
23971 1999-01-20 Jesse Thilo <jthilo@gnu.org>
23972
23973 * Makefile.am, OChangeLog:
23974 ChangeLog is now automatically generated. Include the old version as
23975 OChangeLog.
23976
23977 1999-01-14 Jesse Thilo <jthilo@gnu.org>
23978
23979 * 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:
23980 Update FSF address.
23981
23982 1999-01-14 Jesse Thilo <jthilo@gnu.org>
23983
23984 * doc/bison.texinfo: Fix formatting glitch.
23985
23986 * doc/bison.texinfo: Update FSF address.
23987
23988 1999-01-14 Jesse Thilo <jthilo@gnu.org>
23989
23990 * acconfig.h: Update FSF address.
23991
23992 1999-01-08 Jesse Thilo <jthilo@gnu.org>
23993
23994 * src/system.h:
23995 Don't define PACKAGE here, since config.h defines it.
23996
23997 1998-12-30 Jesse Thilo <jthilo@gnu.org>
23998
23999 * src/reader.c: Update copyright date.
24000
24001 * src/main.c:
24002 Ditch sprintf to statically-sized buffers in fatal/warn functions in
24003 favor of output directly to stderr (avoids buffer overruns).
24004
24005 * src/reader.c: Some checks for premature EOF.
24006
24007 * 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:
24008 Use prototypes if the compiler understands them.
24009
24010 * src/files.c: Honor TMPDIR on Unix hosts.
24011 Use prototypes if the compiler understands them.
24012
24013 * src/reader.c:
24014 Fix a couple of buffer overrun bugs.
24015 Use prototypes if the compiler understands them.
24016
24017 * src/system.h: Include unistd.h and ctype.h.
24018 Use #ifdef instead of #if for NLS symbols.
24019
24020 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24021
24022 * doc/bison.texinfo:
24023 Delete comment "consider using @set for edition number, etc..." since
24024 we now are doing so.
24025
24026 1998-12-30 Jesse Thilo <jthilo@gnu.org>
24027
24028 * configure.in:
24029 Use prototypes if the compiler understands them.
24030
24031 * NEWS: Document 1.26 highlights.
24032
24033 * Makefile.am: Require Automake 1.3 or later.
24034
24035 * acconfig.h:
24036 Use prototypes if the compiler understands them.
24037
24038 1998-12-29 Jesse Thilo <jthilo@gnu.org>
24039
24040 * src/version.c:
24041 Use VERSION symbol from automake for version number.
24042
24043 1998-12-29 Jesse Thilo <jthilo@gnu.org>
24044
24045 * acconfig.h, configure.in, version.cin:
24046 Use VERSION symbol from automake for version number.
24047
24048 1998-11-28 Jesse Thilo <jthilo@gnu.org>
24049
24050 * Makefile.am:
24051 Distribute original version of simple parser (bison.s1), not built
24052 version (bison.simple).
24053
24054 1998-11-28 Jesse Thilo <jthilo@gnu.org>
24055
24056 * doc/bison.texinfo: Add info dir entry.
24057
24058 * doc/bison.texinfo:
24059 Let automake put version number into documentation.
24060
24061 1998-11-26 Jesse Thilo <jthilo@gnu.org>
24062
24063 * src/bison.cld, src/build.com, src/vmshlp.mar:
24064 Add non-RCS files from /gd/gnu/bison.
24065
24066 1998-11-26 Jesse Thilo <jthilo@gnu.org>
24067
24068 * doc/bison.1:
24069 Document the BISON_HAIRY and BISON_SIMPLE variables.
24070
24071 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24072
24073 * src/version.c: Build version.c automatically.
24074
24075 * src/reader.c:
24076 Fix token numbering (used to start at 258, not 257).
24077
24078 * src/system.h: Include config.h.
24079
24080 * src/getargs.c: Update bug report address.
24081
24082 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
24083 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
24084
24085 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24086
24087 * Makefile.am:
24088 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24089
24090 * configure.in, version.cin:
24091 Build version.c automatically.
24092
24093 * AUTHORS: Add AUTHORS file.
24094
24095 * README: Update bug report address.
24096
24097 * bison.simple:
24098 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24099
24100 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
24101 Add automake stuff.
24102
24103 1998-11-25 Jesse Thilo <jthilo@gnu.org>
24104
24105 * doc/bison.texinfo: Clean up some formatting.
24106
24107 1998-05-05 Richard Stallman <rms@gnu.org>
24108
24109 * doc/bison.texinfo:
24110 Explain better why to make a pure parser.
24111
24112 1998-01-05 Richard Stallman <rms@gnu.org>
24113
24114 * src/files.c (openfiles):
24115 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
24116 find a temporary directory, if possible. Do not unlink files while
24117 they are open.
24118
24119 1997-08-25 Richard Stallman <rms@gnu.org>
24120
24121 * src/reader.c (stack_offset;):
24122 Change some warni to warns.
24123
24124 * src/lex.c (literalchar): Use warns, not warni.
24125
24126 1997-06-28 Richard Stallman <rms@gnu.org>
24127
24128 * src/bison.s1: Add a Bison version comment.
24129
24130 * src/main.c (fatal, warn, berror):
24131 Use program_name.
24132
24133 1997-06-28 Richard Stallman <rms@gnu.org>
24134
24135 * Makefile.in (bison_version): New variable.
24136 (dist): Use that variable.
24137 (bison.s1): Substitute the Bison version into bison.simple.
24138
24139 * bison.simple: Add a Bison version comment.
24140
24141 1997-06-18 Richard Stallman <rms@gnu.org>
24142
24143 * src/main.c (fatal, warn, berror):
24144 Make error messages standard.
24145 (toomany): Improve error message text.
24146
24147 * 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:
24148 new.h renamed to alloc.h.
24149
24150 1997-06-18 Richard Stallman <rms@gnu.org>
24151
24152 * Makefile.in: new.h renamed to alloc.h.
24153
24154 1997-05-24 Richard Stallman <rms@gnu.org>
24155
24156 * src/lex.c (literalchar):
24157 Fix the code for escaping \, " and '.
24158
24159 (lex): Avoid trouble when there are many chars
24160 to discard in a char literal with just several chars in it.
24161
24162 1997-05-17 Richard Stallman <rms@gnu.org>
24163
24164 * src/bison.s1:
24165 Use malloc, if using alloca is troublesome.
24166 (YYSTACK_USE_ALLOCA): New flag macro.
24167 Define it for some systems and compilers.
24168 (YYSTACK_ALLOC): New macro.
24169 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24170 If it was malloc'd, free it.
24171
24172 1997-05-17 Richard Stallman <rms@gnu.org>
24173
24174 * bison.simple:
24175 Use malloc, if using alloca is troublesome.
24176 (YYSTACK_USE_ALLOCA): New flag macro.
24177 Define it for some systems and compilers.
24178 (YYSTACK_ALLOC): New macro.
24179 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24180 If it was malloc'd, free it.
24181
24182 1997-04-23 Richard Stallman <rms@gnu.org>
24183
24184 * src/bison.s1:
24185 (alloca) [__hpux]: Always define as __builtin_alloca.
24186
24187 1997-04-23 Richard Stallman <rms@gnu.org>
24188
24189 * bison.simple:
24190 (alloca) [__hpux]: Always define as __builtin_alloca.
24191
24192 1997-04-22 Richard Stallman <rms@gnu.org>
24193
24194 * src/bison.s1:
24195 [__hpux]: Include alloca.h (right for HPUX 10)
24196 instead of declaring alloca (right for HPUX 9).
24197
24198 * src/bison.s1 (__yy_memcpy):
24199 Declare arg `count' as unsigned int.
24200 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24201
24202 1997-04-22 Richard Stallman <rms@gnu.org>
24203
24204 * bison.simple:
24205 [__hpux]: Include alloca.h (right for HPUX 10)
24206 instead of declaring alloca (right for HPUX 9).
24207
24208 * bison.simple (__yy_memcpy):
24209 Declare arg `count' as unsigned int.
24210 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24211
24212 1997-01-03 Richard Stallman <rms@gnu.org>
24213
24214 * src/allocate.c: [__STDC__ or _MSC_VER]:
24215 Declare calloc and realloc to return void *.
24216
24217 1997-01-02 Richard Stallman <rms@gnu.org>
24218
24219 * src/system.h:
24220 [_MSC_VER]: Include stdlib.h and process.h.
24221 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
24222
24223 * src/main.c (main): Return FAILURE as a value.
24224 (printable_version): Declare arg as int, not char.
24225
24226 1997-01-02 Richard Stallman <rms@gnu.org>
24227
24228 * Makefile.in (dist):
24229 Explicitly check for symlinks, and copy them.
24230
24231 1996-12-19 Richard Stallman <rms@gnu.org>
24232
24233 * src/files.c:
24234 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
24235
24236 1996-12-18 Paul Eggert <eggert@gnu.org>
24237
24238 * src/bison.s1 (yyparse):
24239 If __GNUC__ and YYPARSE_PARAM are both defined,
24240 declare yyparse to have a void * argument.
24241
24242 1996-12-18 Paul Eggert <eggert@gnu.org>
24243
24244 * bison.simple (yyparse):
24245 If __GNUC__ and YYPARSE_PARAM are both defined,
24246 declare yyparse to have a void * argument.
24247
24248 1996-12-17 Richard Stallman <rms@gnu.org>
24249
24250 * src/reduce.c (nbits): Add some casts.
24251
24252 1996-08-12 Richard Stallman <rms@gnu.org>
24253
24254 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
24255
24256 1996-08-12 Richard Stallman <rms@gnu.org>
24257
24258 * bison.simple: Test _MSDOS as well as _MSDOS_.
24259
24260 1996-07-31 Richard Stallman <rms@gnu.org>
24261
24262 * src/bison.s1:
24263 [__sun && __i386]: Include alloca.h.
24264
24265 1996-07-31 Richard Stallman <rms@gnu.org>
24266
24267 * bison.simple:
24268 [__sun && __i386]: Include alloca.h.
24269
24270 1996-07-30 Richard Stallman <rms@gnu.org>
24271
24272 * src/bison.s1: Comment change.
24273
24274 * src/bison.s1: Test _MSDOS_, not MSDOS.
24275
24276 1996-07-30 Richard Stallman <rms@gnu.org>
24277
24278 * bison.simple: Comment change.
24279
24280 * bison.simple: Test _MSDOS_, not MSDOS.
24281
24282 1996-06-01 Richard Stallman <rms@gnu.org>
24283
24284 * 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:
24285 Insert `_' macro around many string constants.
24286
24287 * src/main.c:
24288 Insert `_' macro around many string constants.
24289
24290 (main): Call setlocale, bindtextdomain and textdomain.
24291
24292 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
24293 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
24294 [ENABLE_NLS]: Include libintl.h.
24295 [ENABLE_NLS] (gettext): Define.
24296 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
24297 (N_, PACKAGE, LOCALEDIR): New macros.
24298
24299 1996-06-01 Richard Stallman <rms@gnu.org>
24300
24301 * POTFILES.in: New file.
24302
24303 * Makefile.in (allocate.o):
24304 Define target explicitly.
24305
24306 * Makefile.in (CFLAGS): Set to @CFLAGS@.
24307 (LDFLAGS): Set to @LDFLAGS@.
24308 (configure): Run autoconf only if preceding `cd' succeeds.
24309 (bison.s1): Redirect output to temporary file then move the
24310 temporary to the target, rather than redirecting directly to bison.s1.
24311 (clean): Remove config.status and config.log.
24312 (distclean): Don't remove config.status here.
24313
24314 1996-05-12 Richard Stallman <rms@gnu.org>
24315
24316 * src/bison.s1:
24317 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24318
24319 1996-05-12 Richard Stallman <rms@gnu.org>
24320
24321 * bison.simple:
24322 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24323
24324 1996-05-11 Richard Stallman <rms@gnu.org>
24325
24326 * src/bison.s1 (__yy_memcpy):
24327 Really reorder the args, as was supposedly done on Feb 14 1995.
24328 (yyparse): Calls changed accordingly.
24329
24330 1996-05-11 Richard Stallman <rms@gnu.org>
24331
24332 * Makefile.in (dist): Don't use $(srcdir).
24333
24334 * bison.simple (__yy_memcpy):
24335 Really reorder the args, as was supposedly done on Feb 14 1995.
24336 (yyparse): Calls changed accordingly.
24337
24338 1996-01-27 Richard Stallman <rms@gnu.org>
24339
24340 * src/output.c (output_rule_data):
24341 Test YYERROR_VERBOSE in the conditional
24342 around the definition of ttyname.
24343
24344 1995-12-29 Richard Stallman <rms@gnu.org>
24345
24346 * src/bison.s1:
24347 Fix line numbers in #line commands.
24348
24349 1995-12-29 Richard Stallman <rms@gnu.org>
24350
24351 * bison.simple:
24352 Fix line numbers in #line commands.
24353
24354 1995-12-27 Richard Stallman <rms@gnu.org>
24355
24356 * src/bison.s1 (YYPARSE_PARAM_DECL):
24357 In C++, make it always null.
24358 (YYPARSE_PARAM_ARG): New macro.
24359 (yyparse): Use YYPARSE_PARAM_ARG.
24360
24361 1995-12-27 Richard Stallman <rms@gnu.org>
24362
24363 * bison.simple (YYPARSE_PARAM_DECL):
24364 In C++, make it always null.
24365 (YYPARSE_PARAM_ARG): New macro.
24366 (yyparse): Use YYPARSE_PARAM_ARG.
24367
24368 1995-11-29 Richard Stallman <rms@gnu.org>
24369
24370 * doc/bison.texinfo:
24371 Describe literal string tokens, %raw, %no_lines, %token_table.
24372
24373 1995-11-29 Daniel Hagerty <hag@gnu.org>
24374
24375 * doc/bison.texinfo: Fixed update date
24376
24377 1995-10-16 Richard Stallman <rms@gnu.org>
24378
24379 * src/version.c: Version 1.25.
24380
24381 1995-10-16 Richard Stallman <rms@gnu.org>
24382
24383 * NEWS: *** empty log message ***
24384
24385 1995-10-16 Richard Stallman <rms@gnu.org>
24386
24387 * doc/bison.1, doc/bison.rnh:
24388 Add new options.
24389
24390 1995-10-15 Richard Stallman <rms@gnu.org>
24391
24392 * src/vmsgetargs.c, src/getargs.c:
24393 Added -n, -k, and -raw switches.
24394 (noparserflag, toknumflag, rawtoknumflag): New variables.
24395
24396 * src/symtab.h (SALIAS):
24397 New #define for adding aliases to %token.
24398 (struct bucket): Added `alias' field.
24399
24400 * src/reduce.c (reduce_grammar):
24401 Revise error message.
24402 (print_notices): Remove final `.' from error message.
24403
24404 * src/reader.c (reader_output_yylsp):
24405 New function.
24406 (readgram): Use `#if 0' around code that accepted %command
24407 inside grammar rules: The documentation doesn't allow it,
24408 and it will fail since the %command processors scan for the next %.
24409 (parse_token_decl): Extended the %token
24410 declaration to allow a multi-character symbol as an alias.
24411 (parse_thong_decl): New function.
24412 (read_declarations): Added %thong declarations.
24413 (read_declarations): Handle NOOP to deal with allowing
24414 % declarations as another means to specify the flags.
24415 (readgram): Allow %prec prior to semantics embedded in a rule.
24416 (skip_to_char, read_declarations, copy_definition)
24417 (parse_token_decl, parse_start_decl, parse_type_decl)
24418 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
24419 (get_type_name, copy_guard, copy_action, readgram)
24420 (get_type, packsymbols): Revised most error messages.
24421 Changed `fatal' to `warnxxx' to avoid aborting for error.
24422 Revised and use multiple warnxxx functions to avoid using VARARGS1.
24423 (read_declarations): Improve the error message for
24424 an invalid character. Do not abort.
24425 (read_declarations, copy_guard, copy_action): Use
24426 printable_version to avoid unprintable characters in printed output.
24427 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
24428 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
24429 Allow the type of a non-terminal can be given
24430 more than once, as long as all specifications give the same type.
24431
24432 * src/output.c:
24433 (output_headers, output_trailers, output, output_gram)
24434 (output_rule_data): Implement noparserflag variable.
24435 Implement toknumflag variable.
24436 (output): Call reader_output_yylsp to output LTYPESTR.
24437
24438 * src/main.c (main):
24439 If reader sees an error, don't process the grammar.
24440 (fatals): Updated to not use VARARGS1.
24441 (printable_version, int_to_string, warn, warni, warns, warnss)
24442 (warnsss): New error reporting functions. Avoid abort for error.
24443
24444 * src/lex.h:
24445 Added THONG and NOOP for alias processing.
24446 Added SETOPT for the new code that allows setting options with %flags.
24447
24448 * src/lex.c:
24449 Include getopt.h. Add some extern decls.
24450 (safegetc): New function to deal with EOF gracefully.
24451 (literalchar); new function to deal with reading \ escapes.
24452 (lex): Use literalchar.
24453 (lex): Implemented "..." tokens.
24454 (literalchar, lex, parse_percent_token): Made tokenbuffer
24455 always contain the token. This includes growing the token
24456 buffer while reading an integer.
24457 (parse_percent_token): Replaced if-else statement with percent_table.
24458 (parse_percent_token): Added % declarations as another
24459 way to specify the flags -n, -l, and -r. Also added hooks for
24460 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
24461 major changes to files.c.
24462 (lex) Retain in the incoming stream a character following
24463 an incorrect '/'.
24464 (skip_white_space, lex): Revised most error messages
24465 and changed fatal to warn to avoid aborting.
24466 (percent_table): Added %thong declarations.
24467
24468 * src/gram.h: Comment changes.
24469
24470 * src/files.c (openfiles, open_extra_files, done):
24471 Add faction flag
24472 and actfile file. Handle noparserflag. Both for -n switch.
24473
24474 * src/conflicts.c (resolve_sr_conflict):
24475 Remove use of alloca.
24476
24477 1995-06-01 Jim Meyering <meyering@gnu.org>
24478
24479 * doc/bison.texinfo: *** empty log message ***
24480
24481 1995-05-06 Richard Stallman <rms@gnu.org>
24482
24483 * src/bison.s1: Comment change.
24484
24485 1995-05-06 Richard Stallman <rms@gnu.org>
24486
24487 * bison.simple: Comment change.
24488
24489 1995-05-03 Richard Stallman <rms@gnu.org>
24490
24491 * src/version.c: Version now 1.24.
24492
24493 * src/bison.s1: Change distribution terms.
24494
24495 * src/version.c: Version now 1.23.
24496
24497 1995-05-03 Richard Stallman <rms@gnu.org>
24498
24499 * doc/bison.texinfo:
24500 Rewrite "Conditions for Using Bison".
24501 Update version to 1.24.
24502
24503 1995-05-03 Richard Stallman <rms@gnu.org>
24504
24505 * bison.simple: Change distribution terms.
24506
24507 1995-02-23 Richard Stallman <rms@gnu.org>
24508
24509 * src/files.c: Test __VMS_POSIX as well as VMS.
24510
24511 1995-02-14 Jim Meyering <meyering@gnu.org>
24512
24513 * src/bison.s1 (__yy_memcpy):
24514 Renamed from __yy_bcopy to avoid
24515 confusion. Reverse FROM and TO arguments to be consistent with
24516 those of memcpy.
24517
24518 1995-02-14 Jim Meyering <meyering@gnu.org>
24519
24520 * bison.simple (__yy_memcpy):
24521 Renamed from __yy_bcopy to avoid
24522 confusion. Reverse FROM and TO arguments to be consistent with
24523 those of memcpy.
24524
24525 1994-11-10 David J. MacKenzie <djm@gnu.org>
24526
24527 * NEWS: reformat
24528
24529 * NEWS: New file.
24530
24531 * Makefile.in (DISTFILES): Include NEWS.
24532
24533 * Makefile.in (DISTFILES):
24534 Include install-sh, not install.sh.
24535
24536 * configure.in: Update to Autoconf v2 macro names.
24537
24538 1994-10-05 David J. MacKenzie <djm@gnu.org>
24539
24540 * Makefile.in: fix typo
24541
24542 * Makefile.in (prefix, exec_prefix):
24543 Let configure set them.
24544
24545 1994-09-28 David J. MacKenzie <djm@gnu.org>
24546
24547 * Makefile.in: Set datadir to $(prefix)/share.
24548
24549 1994-09-15 Richard Stallman <rms@gnu.org>
24550
24551 * src/bison.s1:
24552 Update copyright notice and GPL version.
24553
24554 1994-09-15 Richard Stallman <rms@gnu.org>
24555
24556 * bison.simple:
24557 Update copyright notice and GPL version.
24558
24559 1994-07-12 Richard Stallman <rms@gnu.org>
24560
24561 * src/reduce.c, src/reader.c:
24562 entered into RCS
24563
24564 1994-05-05 David J. MacKenzie <djm@gnu.org>
24565
24566 * Makefile.in: entered into RCS
24567
24568 1994-03-26 Richard Stallman <rms@gnu.org>
24569
24570 * src/bison.s1: entered into RCS
24571
24572 1994-03-26 Richard Stallman <rms@gnu.org>
24573
24574 * bison.simple: entered into RCS
24575
24576 1994-03-25 Richard Stallman <rms@gnu.org>
24577
24578 * src/main.c: entered into RCS
24579
24580 1994-03-24 Richard Stallman <rms@gnu.org>
24581
24582 * src/conflicts.c: entered into RCS
24583
24584 1994-01-02 Richard Stallman <rms@gnu.org>
24585
24586 * Makefile.in: *** empty log message ***
24587
24588 1993-11-21 Richard Stallman <rms@gnu.org>
24589
24590 * src/bison.s1: *** empty log message ***
24591
24592 1993-11-21 Richard Stallman <rms@gnu.org>
24593
24594 * doc/bison.texinfo: entered into RCS
24595
24596 * doc/bison.texinfo: *** empty log message ***
24597
24598 1993-11-21 Richard Stallman <rms@gnu.org>
24599
24600 * bison.simple: *** empty log message ***
24601
24602 1993-10-25 David J. MacKenzie <djm@gnu.org>
24603
24604 * doc/bison.texinfo: *** empty log message ***
24605
24606 1993-10-19 Richard Stallman <rms@gnu.org>
24607
24608 * src/bison.s1: *** empty log message ***
24609
24610 1993-10-19 Richard Stallman <rms@gnu.org>
24611
24612 * bison.simple: *** empty log message ***
24613
24614 1993-10-14 Richard Stallman <rms@gnu.org>
24615
24616 * src/bison.s1: *** empty log message ***
24617
24618 1993-10-14 Richard Stallman <rms@gnu.org>
24619
24620 * bison.simple: *** empty log message ***
24621
24622 1993-09-14 David J. MacKenzie <djm@gnu.org>
24623
24624 * doc/bison.texinfo: *** empty log message ***
24625
24626 1993-09-13 Noah Friedman <friedman@gnu.org>
24627
24628 * Makefile.in: *** empty log message ***
24629
24630 1993-09-10 Richard Stallman <rms@gnu.org>
24631
24632 * src/conflicts.c: *** empty log message ***
24633
24634 * src/system.h: entered into RCS
24635
24636 1993-09-10 Richard Stallman <rms@gnu.org>
24637
24638 * doc/bison.1: entered into RCS
24639
24640 1993-09-06 Noah Friedman <friedman@gnu.org>
24641
24642 * src/version.c: entered into RCS
24643
24644 1993-09-06 Noah Friedman <friedman@gnu.org>
24645
24646 * Makefile.in: *** empty log message ***
24647
24648 1993-07-30 David J. MacKenzie <djm@gnu.org>
24649
24650 * Makefile.in: *** empty log message ***
24651
24652 1993-07-24 Richard Stallman <rms@gnu.org>
24653
24654 * src/bison.s1: *** empty log message ***
24655
24656 1993-07-24 Richard Stallman <rms@gnu.org>
24657
24658 * bison.simple: *** empty log message ***
24659
24660 1993-07-08 David J. MacKenzie <djm@gnu.org>
24661
24662 * Makefile.in: *** empty log message ***
24663
24664 1993-07-04 Richard Stallman <rms@gnu.org>
24665
24666 * src/bison.s1: *** empty log message ***
24667
24668 1993-07-04 Richard Stallman <rms@gnu.org>
24669
24670 * bison.simple: *** empty log message ***
24671
24672 1993-06-26 David J. MacKenzie <djm@gnu.org>
24673
24674 * src/getargs.c: entered into RCS
24675
24676 1993-06-26 David J. MacKenzie <djm@gnu.org>
24677
24678 * doc/bison.texinfo: *** empty log message ***
24679
24680 * doc/bison.1: New file.
24681
24682 1993-06-25 Richard Stallman <rms@gnu.org>
24683
24684 * src/getargs.c: New file.
24685
24686 1993-06-16 Richard Stallman <rms@gnu.org>
24687
24688 * src/bison.s1: *** empty log message ***
24689
24690 1993-06-16 Richard Stallman <rms@gnu.org>
24691
24692 * bison.simple: *** empty log message ***
24693
24694 1993-06-03 Richard Stallman <rms@gnu.org>
24695
24696 * src/bison.s1: New file.
24697
24698 1993-06-03 Richard Stallman <rms@gnu.org>
24699
24700 * doc/bison.texinfo: *** empty log message ***
24701
24702 1993-06-03 Richard Stallman <rms@gnu.org>
24703
24704 * bison.simple: New file.
24705
24706 1993-05-19 Richard Stallman <rms@gnu.org>
24707
24708 * doc/bison.texinfo: New file.
24709
24710 1993-05-07 Noah Friedman <friedman@gnu.org>
24711
24712 * Makefile.in: *** empty log message ***
24713
24714 1993-04-28 Noah Friedman <friedman@gnu.org>
24715
24716 * src/reader.c: *** empty log message ***
24717
24718 1993-04-23 Noah Friedman <friedman@gnu.org>
24719
24720 * src/alloc.h: entered into RCS
24721
24722 1993-04-20 David J. MacKenzie <djm@gnu.org>
24723
24724 * src/version.c: *** empty log message ***
24725
24726 * src/files.c, src/allocate.c:
24727 entered into RCS
24728
24729 * src/reader.c: *** empty log message ***
24730
24731 * src/lex.c: entered into RCS
24732
24733 * src/conflicts.c: New file.
24734
24735 * src/symtab.c: entered into RCS
24736
24737 * src/alloc.h: New file.
24738
24739 * src/LR0.c: entered into RCS
24740
24741 1993-04-18 Noah Friedman <friedman@gnu.org>
24742
24743 * src/reader.c: New file.
24744
24745 * src/version.c: *** empty log message ***
24746
24747 1993-04-18 Noah Friedman <friedman@gnu.org>
24748
24749 * Makefile.in: *** empty log message ***
24750
24751 1993-04-17 Noah Friedman <friedman@gnu.org>
24752
24753 * Makefile.in: *** empty log message ***
24754
24755 1993-04-15 Richard Stallman <rms@gnu.org>
24756
24757 * src/main.c, src/files.c:
24758 New file.
24759
24760 1993-04-15 Noah Friedman <friedman@gnu.org>
24761
24762 * configure.in: entered into RCS
24763
24764 * configure.in: *** empty log message ***
24765
24766 * configure.in: New file.
24767
24768 1993-04-14 Richard Stallman <rms@gnu.org>
24769
24770 * Makefile.in: New file.
24771
24772 1993-04-13 Richard Stallman <rms@gnu.org>
24773
24774 * src/version.c: New file.
24775
24776 1993-03-25 Richard Stallman <rms@gnu.org>
24777
24778 * src/output.c: entered into RCS
24779
24780 1992-09-25 Richard Stallman <rms@gnu.org>
24781
24782 * configure.bat: entered into RCS
24783
24784 1992-06-22 Richard Stallman <rms@gnu.org>
24785
24786 * src/vmsgetargs.c: entered into RCS
24787
24788 1992-06-22 Richard Stallman <rms@gnu.org>
24789
24790 * doc/bison.rnh: entered into RCS
24791
24792 1992-04-20 David J. MacKenzie <djm@gnu.org>
24793
24794 * README: entered into RCS
24795
24796 1992-01-22 Richard Stallman <rms@gnu.org>
24797
24798 * src/machine.h: entered into RCS
24799
24800 1991-12-21 Richard Stallman <rms@gnu.org>
24801
24802 * src/lalr.c, src/closure.c:
24803 entered into RCS
24804
24805 1991-12-20 Richard Stallman <rms@gnu.org>
24806
24807 * src/state.h: entered into RCS
24808
24809 1991-12-18 Richard Stallman <rms@gnu.org>
24810
24811 * src/print.c, src/nullable.c, src/derives.c:
24812 entered into RCS
24813
24814 1991-11-03 David J. MacKenzie <djm@gnu.org>
24815
24816 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
24817 entered into RCS
24818
24819 1988-09-09 Richard Stallman <rms@gnu.org>
24820
24821 * src/bison.hairy: entered into RCS
24822
24823 1987-12-16 Richard Stallman <rms@gnu.org>
24824
24825 * REFERENCES: entered into RCS
24826
24827
24828 -----
24829
24830 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
24831 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
24832 2008, 2009 Free Software Foundation, Inc.
24833
24834 Copying and distribution of this file, with or without
24835 modification, are permitted provided the copyright notice and this
24836 notice are preserved.