]> git.saurik.com Git - bison.git/blame - ChangeLog
Remove dead code.
[bison.git] / ChangeLog
CommitLineData
f74d6d25
JD
12009-10-03 Joel E. Denny <jdenny@clemson.edu>
2
3 Remove dead code.
4 * src/symtab.c (symbol_pack): Here because every symbol's number
5 is always defined by this time.
6
5b1ff423
AR
72009-10-03 Alex Rozenman <rozenman@gmail.com>
8
9 Add additional space after periods in NEWS.
10 * NEWS (2.5): here.
11
47eced30
JD
122009-09-29 Joel E. Denny <jdenny@clemson.edu>
13
14 Use the correct conversion specifier for size_t.
15 Reported by Jim Meyering.
16 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
17 because Sbitset__Index is size_t.
18 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
19
d8f68fc2
JD
202009-09-27 Joel E. Denny <jdenny@clemson.edu>
21
22 tests: don't abuse AT_BISON_CHECK.
23 * tests/regression.at (parse-gram.y: LALR = IELR): Move
24 additional shell commands outside of AT_BISON_CHECK.
25
43aabb70
JD
262009-09-26 Joel E. Denny <jdenny@clemson.edu>
27
28 tests: check that parse-gram.y's IELR and LALR are identical.
29 * tests/atlocal.in (abs_top_srcdir): New shell variable.
30 * tests/regression.at (parse-gram.y: LALR = IELR): New test
31 group.
32
66381412
AR
332009-09-19 Alex Rozenman <rozenman@gmail.com>
34
35 Keep sub-messages aligned. Fix strings for translation.
5b1ff423
AR
36 * src/location.h (location_print): Add return value.
37 * src/location.c (location_print): Return number of printed
66381412 38 characters.
5b1ff423
AR
39 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
40 new functions.
41 * src/complain.cpp (indent_ptr): New static variable.
42 (error_message, complain_at_indent, warn_at_indent): Implement
43 the alignment mechanism.
44 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
45 for translations. Use new alignment mechanism.
46 * tests/named-ref.at: Adjust test-cases.
66381412
AR
47 * NEWS (2.5): Add an announcement about named references.
48
a6ca4ce2
AD
492009-09-17 Akim Demaille <demaille@gostai.com>
50
51 doc: fixes.
52 * doc/bison.texinfo: here.
53 Reported by Alex Rozenman.
54
3cdc21cf
AD
552009-09-16 Akim Demaille <demaille@gostai.com>
56
57 doc: lalr1.cc and variants.
58 * doc/bison.texinfo (Decl Summary): Document the "lex_symbol" and
59 "variant" %define variables.
60 (C++ Semantic Values): Split into...
61 (C++ Unions, C++ Variants): these.
62 The latter is new.
63 (C++ Parser Interface): Fix type names.
64 Document parser::syntax_error.
65 Document the fact that locations are not mandatory.
66 (C++ Scanner Interface): Split into...
67 (Split Symbols, Complete Symbols): these.
68 The later is new.
69 (Calc++ Parsing Driver): Use variants.
70 Add more comments.
71 Adjust style.
72 (Calc++ Parser): Declare all the tokens, no
73 longer accept raw characters.
74 Remove %union.
75 Adjust types and printers.
76 Remove destructors.
77 (Calc++ Scanner): Use make_<SYMBOL> functions.
78 Use strerror in error message.
79
f50bfcd6
AD
802009-09-16 Akim Demaille <demaille@gostai.com>
81
82 doc: spell checking.
83 * doc/bison.texinfo: here.
84
6b5a0de9
AD
852009-09-16 Akim Demaille <demaille@gostai.com>
86
87 doc: comment changes.
88 * doc/bison.texinfo: Comment changes.
89
2b08bceb
AD
902009-09-16 Akim Demaille <demaille@gostai.com>
91
92 lalr1.cc: factor the yytranslate_ invocation in make_SYMBOLS.
93 * data/c++.m4, data/lalr1.cc (parser::symbol_type): Change the
94 constructor to take a token_type instead of the (internal) symbol
95 number.
96 Call yytranslate_.
97 * data/variant.hh (b4_symbol_constructor_define_): Therefore,
98 don't call yytranslate_ here.
99
c981ce9b
AD
1002009-09-16 Akim Demaille <demaille@gostai.com>
101
102 TODO: statistics.
103 * TODO (Figures): New.
104
00d80a9c
JD
1052009-09-13 Joel E. Denny <jdenny@clemson.edu>
106
107 tests: clean up push.at test group titles.
108 * tests/push.at: Remove "Push Parsing: " from test group titles
109 because these are already under the banner "Push Parsing Tests".
110
f64e406b
AR
1112009-09-12 Alex Rozenman <rozenman@gmail.com>
112
113 Provide an additional sub-message for clarity.
114 Add "symbol not found in production" error message when
115 an "invalid reference" is detected in named references
116 resolution.
117 * src/scan-code.l: Update "invalid reference" case.
118 * tests/named-ref.at: Adjust test-cases.
119
bb31eb56
JD
1202009-09-10 Joel E. Denny <jdenny@clemson.edu>
121
122 Clean up yacc.c a little.
123 * data/yacc.c: Clean up M4 for readability, and make output
124 whitespace more consistent. For the main parse function
125 comment, instead of saying "yyparse or yypush_parse", say either
126 "yyparse" or "yypush_parse" depending on which it actually is.
127
2d399888
JD
1282009-09-10 Joel E. Denny <jdenny@clemson.edu>
129
130 Fix --enable-gcc-warnings.
131 * src/parse-gram.y (%printer <param>): Handle param_none.
132
ff601366
AD
1332009-09-09 Akim Demaille <demaille@gostai.com>
134
135 lalr1.cc: syntax_error as exceptions.
136 It is common to use sort of factories in the user actions. These
137 factories may check some "syntactic" constraints that are not
138 enforced by the grammar itself. This is possible using YYERROR
139 within the action itself. Provide the user with a means to throw
140 a syntax_error exception.
141
142 * data/c++.m4 (b4_public_types_declare, b4_public_types_define):
143 Declare and define yy::parser::syntax_error.
144 * data/lalr1.cc: Include stdexcept.
145 (yy::parser::parse): Wrap the user action within a try/catch.
146 * data/glr.cc: Include stdexcept.
147
29660062
AD
1482009-09-09 Akim Demaille <demaille@gostai.com>
149
150 lalr1.cc: add missing "inline".
151 * data/c++.m4 (b4_public_types_define): Add missing inline to
152 implementations provided in headers.
153
2055a44e
AD
1542009-09-09 Akim Demaille <demaille@gostai.com>
155
156 %param: documentation.
157 * NEWS (2.6): Document %param, %lex-param, and %parse-param
158 changes.
159 * doc/bison.texinfo: Document that %lex-param and %parse-param
160 are n-ary.
161 Changes some examples to demonstrate it.
162 (Calc++ Parser): Use %param.
163
dd875058
AD
1642009-09-09 Akim Demaille <demaille@gostai.com>
165
166 Regen.
167
f71db70b
AD
1682009-09-09 Akim Demaille <demaille@gostai.com>
169
170 style changes.
171 * src/parse-gram.y (add_param): Scope changes.
172
eaca4c11
AD
1732009-09-09 Akim Demaille <demaille@gostai.com>
174
175 %parse: support several arguments.
176 * src/parse-gram.y (current_param): New.
177 (param_type): Add param_none.
178 (params): New nonterminal.
179 Use it.
180
b18cdd91
AD
1812009-09-09 Akim Demaille <demaille@gostai.com>
182
183 Regen.
184
a7706735
AD
1852009-09-09 Akim Demaille <demaille@gostai.com>
186
187 %param.
188 Provide a means to factor lex-param and parse-param common
189 declarations.
190
191 * src/parse-gram.y (param_type): New.
192 Define a %printer for it.
193 (add_param): Use it.
194 (%parse-param, %lex-param): Merge into...
195 (%parse): this new token.
196 Adjust the grammar to use it.
197 * src/scan-gram.l (RETURN_VALUE): New.
198 (RETURN_PERCENT_FLAG): Use it.
199 (RETURN_PERCENT_PARAM): New.
200 Use it to support %parse-param, %lex-param and %param.
201
9789acf0
JD
2022009-09-03 Joel E. Denny <jdenny@clemson.edu>
203
204 Use aver not assert.
205 * src/output.c: Don't include assert.h.
206 (output_skeleton): Use aver not assert.
207 * src/system.h (aver): In documentation of why, add links to
208 Paul Eggert's explanations in the mailing lists.
209
61bc57e5
AR
2102009-09-05 Alex Rozenman <rozenman@gmail.com>
211
212 Use "Unresolved reference" error message when no symbols were found
213 in a symbolic reference resolution. Remove .expr and -expr from
214 the shown reference when the reference is unresolved.
215 * src/scan-code.l: Change the error message, adjust location columns,
216 rename variable "exact_mode" to "explicit_bracketing".
217 * tests/named-ref.at: Adjust existing tests and add a new one.
218
f4c75eaf
AD
2192009-09-04 Akim Demaille <demaille@gostai.com>
220
221 Adjust synclines in src/parse-gram.[ch].
222 * tests/bison.in: Do some magic (including working around issues
223 with ylwrap) when this wrapper is used to compile
224 src/parse-gram.y.
225
c6abeab1
JD
2262009-09-03 Joel E. Denny <jdenny@clemson.edu>
227
228 Complain about unused %define variables and %code qualifiers.
229 * NEWS (2.5): Document.
230 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
231 * doc/bison.texinfo (Decl Summary): Document complaint, and
232 improve %define documentation a little otherwise.
233 * tests/input.at (Reject unused %code qualifiers): Update.
234 (%define errors): Update.
235 (%define, --define, --force-define): Update.
236 (%define backward compatibility): Update.
237 (Unused %define api.pure): Update.
238 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
239
82db7cdb
JD
2402009-09-03 Joel E. Denny <jdenny@clemson.edu>
241
242 Don't suppress warnings about unused parse.error.
243 * data/bison.m4 (b4_error_verbose_flag): Don't examine value of
244 %define variable parse.error unless b4_error_verbose_flag is
245 actually expanded in a skeleton.
246
2755de8f
AD
2472009-09-03 Akim Demaille <demaille@gostai.com>
248
249 * NEWS (2.4.2): Add "Internationalization" item.
250
1deef26d
AD
2512009-09-03 Akim Demaille <demaille@gostai.com>
252
253 bootstrap: fix/improve find_tool.
254 * bootstrap (find_tool): Improve error messages.
255 Fix typo about find_tool_names.
256
2646cd54
JD
2572009-08-29 Joel E. Denny <jdenny@clemson.edu>
258
259 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
260 See
261 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
262 * src/scan-code.h (code_props_rule_action_init): Rename
263 named_ref arg to name so it doesn't shadow named_ref type. This
264 makes it consistent with the function definition in scan-code.l
265 anyway.
266
cf499cff
JD
2672009-08-28 Joel E. Denny <jdenny@clemson.edu>
268
269 %define: accept unquoted values.
270 * NEWS (2.5): Group all %define changes together, and document
271 this one. Remove quotes in IELR and canonical LR entry.
272 * doc/bison.texinfo: Remove quotes in most examples throughout.
273 (Decl Summary): Update %define documentation.
274 (Table of Symbols): Likewise.
275 * src/ielr.c (LrType): Update documentation.
276 * src/parse-gram.y (content.opt): Add production for ID.
277 * tests/actions.at: Remove quotes in most tests.
278 * tests/calc.at: Likewise.
279 * tests/existing.at: Likewise.
280 * tests/input.at: Likewise.
281 * tests/local.at: Likewise.
282 * tests/push.at: Likewise.
283 * tests/reduce.at: Likewise.
284 * tests/torture.at: Likewise.
285
6ba96404
JD
2862009-08-28 Joel E. Denny <jdenny@clemson.edu>
287
288 %define lr.type: make values lowercase IDs.
289 That is, "LALR" => "lalr", "IELR" => "ielr", and
290 "canonical LR" => "canonical-lr".
291 * NEWS (2.5): Update documentation.
292 * doc/bison.texinfo (Decl Summary): Likewise.
293 * src/ielr.c (ielr): Use new values.
294 * src/ielr.h (ielr): Update documentation.
295 * src/reader.c (prepare_percent_define_front_end_variables): Use
296 and validate new values.
297 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
298 grammars.
299 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
300
4413bbd3
EB
3012009-08-27 Eric Blake <ebb9@byu.net>
302
303 scan-gram: avoid portability trap with ctype usage.
304 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
305 Avoid compiler warning.
306
b70c7fb4
JD
3072009-08-27 Joel E. Denny <jdenny@clemson.edu>
308
309 tests: use perl for printing special sequences to files.
310 And skip tests if perl is not available. This is better than
311 playing tricks with shell portability. Suggested by Akim
312 Demaille.
313 * tests/input.at (Bad character literals): Use it here for
314 omitting final newlines.
315 (Bad escapes in literals): Use it here for special characters.
316
d1cc31c5
JD
3172009-08-26 Joel E. Denny <jdenny@clemson.edu>
318
319 tests: show a use of %define lr.default-reductions "consistent"
320 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
321 prevents the omission of expected tokens for %error-verbose.
322
3bed3a75
AD
3232009-08-26 Akim Demaille <demaille@gostai.com>
324
325 tests: portability fix.
326 * tests/input.at (Bad escapes in literals): Don't expect "echo
327 '\0'" to output \ then 0.
328
aa0cb40d
JD
3292009-08-26 Joel E. Denny <jdenny@clemson.edu>
330
331 Actually handle the yytable zero value correctly this time.
332 * data/bison.m4 (b4_integral_parser_tables_map): Don't mention
333 zero values in the YYTABLE comments.
334 * data/glr.c (yytable_value_is_error): Don't check for zero
335 value.
336 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
337 * data/yacc.c (yytable_value_is_error): Likewise.
338 * data/lalr1.java (yy_table_value_is_error_): Likewise.
339 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
340 * src/tables.h: In header comments, explain why it's useless to
341 check for a zero value in yytable.
342
f2b30bdf
JD
3432009-08-25 Joel E. Denny <jdenny@clemson.edu>
344
345 More fixes related to last two patches.
346 * data/bison.m4 (b4_integral_parser_tables_map): Fix YYTABLE
347 comments: zero indicates syntax error not default action.
348 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
349 defined.
350 * data/glr.c (yyis_pact_ninf): Rename to...
351 (yypact_value_is_default): ... this.
352 (yyisDefaultedState): Update for rename.
353 (yyis_table_ninf): Rename to...
354 (yytable_value_is_error): ... this, and check for value zero
355 besides just YYTABLE_NINF.
356 (yygetLRActions): Check for default value from yypact. It
357 appears that this check is always performed before this function
358 is invoked, and so adding the check here is probably redundant.
359 However, the code may evolve after this subtlety is forgotten.
360 Also, update for rename to yytable_value_is_error. Because that
361 macro now checks for zero, a different but equivalent branch of
362 the if-then-else here is evaluated.
363 (yyreportSyntaxError): Update for rename to
364 yytable_value_is_error. The zero condition was mishandled
365 before.
366 (yyrecoverSyntaxError): Update for renames. No behavioral
367 changes.
368 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
369 New function.
370 (yy_table_value_is_error_): New function.
371 (parse): Use new functions where possible. No behavioral
372 changes.
373 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
374 The zero condition was mishandled before.
375 * data/yacc.c (yyis_pact_ninf): Rename to...
376 (yypact_value_is_default): ... this.
377 (yyis_table_ninf): Rename to...
378 (yytable_value_is_error): ... this, and check for value zero
379 besides just YYTABLE_NINF.
380 (yysyntax_error): Update for rename to yytable_value_is_error.
381 The zero condition was mishandled before.
382 (yyparse): Update for renames. No behavioral changes.
383 * src/tables.h: Improve comments about yypact, yytable, etc.
384 more. Most importantly, say yytable value of zero means syntax
385 error not default action.
386
53f036ce
JD
3872009-08-25 Joel E. Denny <jdenny@clemson.edu>
388
389 Fix %error-verbose for conflicts resolved by %nonassoc.
390 * NEWS (2.5): Document.
391 * data/glr.c (yyreportSyntaxError): Fix this by checking
392 yyis_table_ninf.
393 * data/yacc.c (yysyntax_error): Likewise.
394 * data/lalr1.cc (yysyntax_error_): Fix this by checking
395 yytable_ninf_.
396 * data/lalr1.java (yysyntax_error): Likewise.
397 * tests/conflicts.at (%nonassoc and eof): Update expected output
398 and remove FIXME.
399
87412882
JD
4002009-08-25 Joel E. Denny <jdenny@clemson.edu>
401
402 Some code and documentation improvements.
403 * data/c.m4 (b4_table_value_equals): New macro to capture
404 some repeated code.
405 * data/glr.c (yyis_pact_ninf): Use it here.
406 (yyis_table_ninf): Likewise.
407 (yyreportSyntaxError): Improve internal comments.
408 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
409 Use it everywhere possible.
410 (yyis_table_ninf): Likewise.
411 (yysyntax_error): Improve internal comments.
412 * data/lalr1.cc (yysyntax_error_): Likewise.
413 * data/lalr1.java (yysyntax_error): Likewise.
414 * src/tables.h: Improve comments about yypact, yytable, etc.
415
e6c849d8
JD
4162009-08-21 Joel E. Denny <jdenny@clemson.edu>
417
418 Use locale when quoting.
419 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
420 quote rather than implementing quoting here.
421
d8911864
EB
4222009-08-20 Eric Blake <ebb9@byu.net>
423
b0778bdd
EB
424 Make previous patch more robust.
425 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
426 argmatch.h.
427 (output_skeleton): Use it.
428 Suggested by Akim Demaille.
429
d8911864
EB
430 Import latest m4/m4.m4.
431 * submodules/autoconf: Update to autoconf 2.64.
432 * configure.ac (M4_GNU_OPTION): New define.
433 * src/output.c (output_skeleton): Use it to resolve FIXME.
434 * NEWS: Mention this.
435
c2724603
JD
4362009-08-19 Joel E. Denny <jdenny@clemson.edu>
437
438 Fix complaints about escape sequences.
439 Discussed starting at
440 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
441 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
442 For a \0 and similar escape sequences meaning the null
443 character, report an invalid escape sequence instead of an
444 invalid null character because the latter does not actually
445 appear in the user's input.
446 In all escape sequence complaints, don't escape the initial
447 backslash, and don't quote when the sequence appears at the end
448 of the complaint line unless there's whitespace that quotearg
449 won't escape.
450 Consistently say "invalid" not "unrecognized".
451 Consistently prefer "empty character literal" over "extra
452 characters in character literal" warning for invalid escape
453 sequences; that is, consistently discard those sequences.
454 * tests/input.at (Bad escapes in literals): New.
455
17aed602
AD
4562009-08-19 Akim Demaille <demaille@gostai.com>
457
458 doc: fixes.
459 * doc/bison.texinfo: Fix minor Texinfo errors.
460
9142239a
AD
4612009-08-19 Akim Demaille <demaille@gostai.com>
462
463 tests: distcc compliance.
464 * tests/synclines.at (AT_SYNCLINES_COMPILE): Discard distcc's
465 error messages from the output.
466
171ad99d
AD
4672009-08-19 Akim Demaille <demaille@gostai.com>
468
469 variables: simplify the upgrade of namespace into api.namespace.
470
471 This patch simplifies "variables: rename namespace as
472 api.namespace", commit 67501061076ba46355cfd9f9361c7eed861b389c.
473 Suggested by Joel E. Denny in
474 http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00006.html
475
476 * src/muscle-tab.c (muscle_percent_variable_update): New.
477 (muscle_percent_define_insert): Use it in replacement of the
478 previous tr invocation.
479 Remove variable_tr, no longer needed.
480 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
481 Remove.
482 * data/c++.m4: No longer handle namespace -> api.namespace.
483 * tests/input.at (%define backward compatibility): Check that
484 namespace is treated as api.namespace.
485
d59e456d
AD
4862009-08-19 Akim Demaille <demaille@gostai.com>
487
488 doc: %initial-action to initialize yylloc.
489 Reported by Bill Allombert.
490 * doc/bison.texinfo: Set fill-column to 76.
491 (Location Type): Document the use of %initial-action to initialize
492 yylloc.
493
ceb8b8e6
AD
4942009-08-19 Akim Demaille <demaille@gostai.com>
495
496 lalr1.cc: use state_type.
497 * data/lalr1.cc (yysyntax_error_): Use state_type.
498 Move argument names into yy*.
499
7580c379
AD
5002009-08-19 Akim Demaille <demaille@gostai.com>
501
502 lalr1.cc: get rid of yyparse's yystate.
503 yystate and yystack_[0].state are equal, keep only the latter.
504 The former was also used as a temporary variable to compute the
505 post-reduction state. Move this computation into an auxiliary
506 function.
507
508 * data/glr.c (yyLRgotoState): Fuse variable definition and first
509 assignment.
510 * data/lalr1.cc (yy_lr_goto_state_): New.
511 (yyparse): Use it.
512 Replace remaining uses of yystate by yystate_[0].state.
513 Remove the former.
514
c4dc4c46
AD
5152009-08-19 Akim Demaille <demaille@gostai.com>
516
517 lalr1.cc: destroy $$ when YYERROR is called.
518 * data/lalr1.cc (yyreduce): Compute the resulting state before
519 running the user action so that yylhs is a valid symbol.
520 (yyerrorlab): Since yylhs is complete (it knows its type), we can
521 simply call yy_destroy_ to destroy $$ on YYERROR invocations.
522 * tests/c++.at (AT_CHECK_VARIANTS): Test YYERROR with variants.
523
c67e466f
JD
5242009-08-18 Joel E. Denny <jdenny@clemson.edu>
525
526 maint: update for gnulib's recent update-copyright changes
527 * gnulib: Update.
528 * .x-update-copyright (COPYING): Add as it's no longer implied
529 when .x-update-copyright is present.
530 * cfg.mk (update-copyright-local): Remove, now ignored.
531 (update-copyright): Declare update-b4-copyright as a dependency.
532
af6d2358
AD
5332009-08-17 Akim Demaille <demaille@gostai.com>
534
535 build: require gettext 0.17.
536
537 Suggested by Bruno Haible.
538 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
539 * configure.ac: require gettext 0.17 to ensure compatibility with
540 gnulib.
541
91a2b9b1
AD
5422009-08-17 Akim Demaille <demaille@gostai.com>
543
544 build: lower gettext requirements.
545
546 Bison was uselessly requiring the formatstring macros from
547 gettext, which resulted in mo files not being installed on systems
548 that perfectly supported Bison mo files. Lower the requirement.
549 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
550
b0778bdd
EB
551 * configure.ac: Require need-ngettext instead of
552 need-formatstring-macros.
553 Reported by Martin Jabocs.
554 Suggested by Bruno Haible.
555 * INSTALL: Restructure.
556 (Internationalization): New.
91a2b9b1 557
585935e8
JD
5582009-08-14 Joel E. Denny <jdenny@clemson.edu>
559
560 maint: fix use of copyright year intervals.
561 * gnulib: Update.
562 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
563 as now recommended in gnulib/NEWS.
564 * build-aux/update-b4-copyright: Fix.
565 * cfg.mk (update-copyright-env): Configure update-copyright.
566
83b60c97
JD
5672009-08-13 Joel E. Denny <jdenny@clemson.edu>
568
569 Make it easier to write deterministic tests.
570 Continues Akim's work from his 2009-06-10 commits.
571 * src/reader.c (check_and_convert_grammar): Don't add any
572 symbols after the first symbols_do invocation.
573 * src/symtab.c (symbols_sorted): New static global.
574 (user_token_number_redeclaration): Update comments.
575 (symbol_from_uniqstr): If a new symbol is being created, assert
576 that symbols_sorted hasn't been allocated yet.
577 (symbols_free): Free symbols_sorted.
578 (symbols_cmp, symbols_cmp_qsort): New functions.
579 (symbols_do): Sort symbol_table into symbols_sorted on first
580 invocation.
581 * tests/input.at (Numbered tokens): Recombine tests now that the
582 output should be deterministic across multiple numbers.
583
28169bab
AD
5842009-08-12 Akim Demaille <demaille@gostai.com>
585
586 tests: GCC 4.5 compliance.
587 * tests/synclines.at (AT_SYNCLINES_COMPILE): Adjust to GCC 4.5's
588 messages about #error.
589
9f14e187
AD
5902009-08-12 Akim Demaille <demaille@gostai.com>
591
592 build: fix the generation of the documentation.
593 Some of our targets use "bison --help", but they can't depend on
594 "bison" itself (to avoid additional requirements on the user), so
595 they used to call "make src/bison" in the commands. Then
596 concurrent builds may fail: one make might be aiming one of its
597 jobs at compiling src/bison, and another job at generating the man
598 page. If the latter is faster than the former, then we have two
599 makes that concurrently try to compile src/bison.
600
601 This might also be a more convincing explanation for the failure
602 described in the patch "build: fix paths".
603
604 * Makefile.am (SUFFIXES): Initialize.
605 * build-aux/move-if-change: New, symlink to gnulib's.
606 * build-aux/local.mk: Ship it.
607 * doc/common.x: Remove, merged into...
608 * doc/bison.x: here.
609 * doc/local.mk (doc/bison.help): New.
610 ($(CROSS_OPTIONS_TEXI)): Depend on it.
611 Use src/bison.
612 (.x.1): Replace with...
613 (doc/bison.1): this explicit, simpler, target.
614 (common_dep): Remove, inlined where appropriate.
615 (SUFFIXES, PREPATH): Remove, unused.
616
d1b55e81
AD
6172009-08-12 Akim Demaille <demaille@gostai.com>
618
619 gnulib: improve prefixing.
620 * configure.ac (gl_PREFIXED_LIBOBJS): Don't rename it, rather,
621 change the value of...
622 (gl_LIBOBJS): this.
623 Adjust more variables.
624 * etc/prefix-gnulib-mk (prefix_assignment): Don't rename
625 gl_LIBOBJS.
626 (prefix): Also transform rules whose targets have slashes.
627 Use $prefix liberally.
628 Map @MKDIR_P@ to $(MKDIR_P).
629 Prefix directories that are mkdir'd.
630
838205d5
AD
6312009-08-12 Akim Demaille <demaille@gostai.com>
632
633 build: fix paths.
634 When using $(top_builddir) inconsistently, Make (including GNU
635 Make) is sometimes confused. As a result it may want to build
636 lib/libbison.la and $(top_builddir)/lib/libbison.la (the same
637 file, different names) concurrently, which, amusingly enough,
638 might end with:
639
640 ranlib lib/libbison.a
641 ranlib lib/libbison.a
642 make[2]: *** [lib/libbison.a] Segmentation fault
643
644 on OS X.
645
646 * doc/local.mk, src/local.mk: Do not use $(top_builddir) when not
647 needed.
648
67af7198
AD
6492009-08-12 Akim Demaille <demaille@gostai.com>
650
651 distcheck: fix.
652
b0778bdd 653 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
67af7198 654
c467dc42
JD
6552009-08-10 Joel E. Denny <jdenny@clemson.edu>
656
657 * tests/local.mk (TESTSUITE_AT): Add named-refs.at.
658
dfaa4860
JD
6592009-08-10 Joel E. Denny <jdenny@clemson.edu>
660
661 Miscellaneous code readability improvements.
662
663 * src/reader.c (reader): Move %define front-end variable
664 defaults and checking into...
665 (prepare_percent_define_front_end_variables): ... this new
666 function.
667
668 * src/scan-gram.l (INITIAL): For consistency with string
669 literals, don't store open quote on character literal. It's
670 discarded before returning anyway.
671 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
672 Make length test more readable, and make the character stored
673 for an empty literal more obvious while consistent with the
674 previous behavior.
675
676 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
677 USER_NUMBER_HAS_STRING_ALIAS throughout.
678 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
679 that is repeated in symtab.h. Improve argument names to make it
680 clear which side of the symbol-string alias pair is which.
681 (symbol_check_alias_consistency): Improve local variable names
682 for the same purpose.
683 * src/symtab.h (struct symbol): Make comments about aliases
684 clearer.
685 (symbol_make_alias): Improve comments and argument name.
686 * src/output.c (token_definitions_output): Update for rename to
687 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
688
ce268795
AR
6892009-08-08 Alex Rozenman <rozenman@gmail.com>
690
691 Convert "misleading reference" messages to warnings.
692 * src/scan-code.l: New function 'show_sub_messages', more
693 factoring.
694 * tests/named-ref.at: Adjust tests.
695
401b73af
JD
6962009-08-06 Joel E. Denny <jdenny@clemson.edu>
697
698 maint: run "make update-copyright"
699
a1a9422d
JD
7002009-08-06 Joel E. Denny <jdenny@clemson.edu>
701
702 maint: make update-b4-copyright easier to use
703 * build-aux/update-b4-copyright: In warnings, report line
704 numbers rather than character positions.
705 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
706 that update-copyright runs it.
707 * gnulib: Update.
708
0b61a8ec
JD
7092009-08-05 Joel E. Denny <jdenny@clemson.edu>
710
711 maint: clean up update-b4-copyright code
712 * build-aux/update-b4-copyright: Do not accept 2-digit
713 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
714 Don't accept a `[' in a b4_copyright argument.
715 Format code more consistently.
716 Don't assume b4*copyright never occurs.
717
269e222e
JD
7182009-08-04 Joel E. Denny <jdenny@clemson.edu>
719
720 maint: automate b4_copyright updates.
721 * Makefile.am (update-b4-copyright): New target rule.
722 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
723 * build-aux/update-b4-copyright: New.
724 * data/yacc.c: Remove stray characters around b4_copyright
725 invocations.
726
35905f2b
JD
7272009-08-04 Joel E. Denny <jdenny@clemson.edu>
728
729 maint: automate annual package-wide copyright-year update.
730 * .x-update-copyright: New.
731 * Makefile.am (EXTRA_DIST): Remove maint.mk.
732 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
733 update-copyright. Remove gnumakefile, which is implied by
734 maintainer-makefile.
735 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
736 * gnulib: Update.
737 * maint.mk: Remove, now copied from gnulib.
738 * examples/extexi: Add missing "(C)" in copyright statement so
739 update-copyright can recognize it.
740 * src/LR0.h: Likewise.
741 * src/print.h: Likewise.
742 * src/print_graph.h: Likewise.
743 * src/gram.c: Add missing comma in copyright statement.
744 * src/gram.h: Likewise.
745
b30e18dc
JD
7462009-08-04 Joel E. Denny <jdenny@clemson.edu>
747
748 Fix "make distcheck".
749 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
750 of just calc.stamp.
751
8d90395d
JD
7522009-08-01 Joel E. Denny <jdenny@clemson.edu>
753
754 Pacify "gcc -Wunused" for the input function from Flex.
755 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
756 and later.
757 * src/scan-code.l: Add "%option noinput", which I cannot find in
758 the Flex manual, but which Flex has supported since at least as
759 far back as 2.5.4. However, if any of our developers still use
760 Flex 2.5.4, they'll need to stop configuring with
761 --enable-gcc-warnings because "%option noinput" didn't work
762 correctly until Flex 2.5.6.
763 * src/scan-gram.l: Likewise.
764 * src/scan-skel.l: Likewise.
765
ba4184ec
AR
7662009-07-31 Alex Rozenman <rozenman@gmail.com>
767
768 Fix --enable-gcc-warnings problems.
769 * src/reader.c: Adjust variable names.
770 * src/scan-code.l: Fix prototypes and adjust names.
771 * src/named-ref.c: Remove redundant "if".
772
91a2af97
JD
7732009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
774
775 Fix a --enable-gcc-warnings problem.
776 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
777 variable.
778
3208e3f4
JD
7792009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
780
781 Warn about character literals not of length one.
782 * NEWS (2.5): Document.
783 * src/scan-gram.l (INITIAL): Remove comment that we don't check
784 the length.
785 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
786 * tests/input.at (Bad character literals): New test group.
787
5add20ab 7882009-07-24 Alex Rozenman <rozenman@gmail.com>
13cdf208
AR
789
790 Fix some memory leaks.
791 * src/named-ref.c: Add a pointer check (named_ref_free).
792 * src/scan-code.l: New function (variant_table_free). Called in
793 code_scanner_free.
794 * src/symlist.c: Call to named_ref_free (symbol_list_free).
795
e459fb0e
JD
7962009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
797
798 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
799
c4be5517
JD
8002009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
801
802 Some M4 cleanup in the testsuite.
803 Suggested by Eric Blake at
804 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
805 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
806 complicate the code by distinguishing between a missing value
807 and an empty string value for an optional argument. This fix is
808 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
809 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
810 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
811 arguments are not needed because of the following changes.
812 Fix stale comments.
813 Bison developers should use GNU M4 and should not use
814 POSIXLY_CORRECT when building the test suite, so do not
815 complicate the code by avoiding $10 and above.
816 Do not quote an empty string value for an optional argument, and
817 do not distinguish between a missing value and an empty string
818 value.
819
feeb56cd
JD
8202009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
821
822 Revert unnecessary column realignment in --help output.
823 Reported by Akim Demaille at
824 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
825 * src/getargs.c (usage): Here.
826
5add20ab 8272009-07-04 Alex Rozenman <rozenman@gmail.com>
629e4def
AR
828
829 Alphabetical order in src/local.mk.
830 * src/local.mk: Adjust.
831
5add20ab 8322009-07-04 Alex Rozenman <rozenman@gmail.com>
872b52bc
AR
833
834 Style changes and factoring.
835 * src/named-ref.h: Add comments.
836 * src/parse-gram.y: Readability and style changes.
837 * src/reader.c: Factoring: assign_named_ref function.
838 * src/scan-code.l: Factoring and style changes. Rename
839 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
840 Use "unsigned" type for variant index. Improve readablity.
841 * src/scan-gram.l: Change error messages and add comments.
842 * src/symlist.h: symbol_list_null: New function decl.
843 * src/symlist.c: symbol_list_null: Implement here.
844 * tests/named-refs.at: Adjust for new error messages.
845
83ea2423
EB
8462009-06-29 Eric Blake <ebb9@byu.net>
847
848 scan-code: avoid compiler warnings
849 * src/scan-code.l (parse_named_ref): Use correct specifiers.
850
5ece73ea
AD
8512009-06-29 Akim Demaille <demaille@gostai.com>
852
853 build: avoid concurrent extraction of calc++.
854 * examples/calc++/Makefile.am (calc.stamp): New.
855 Depend on it to create the sources of calc++ so that concurrent
856 builds don't launch several "extexi" in parallel.
857 Not only this is inefficient, this also builds incorrect sources
858 with several extractions mixed together.
859
ad597a78
AD
8602009-06-29 Akim Demaille <demaille@gostai.com>
861
862 parse.error: fix.
863 * data/bison.m4: Move code related to specific variables after the
864 definition of the variable-maintaining macros so that we don't
865 "invoke" b4_percent_define_check_values before it is defined.
866
31b850d2
AD
8672009-06-29 Akim Demaille <demaille@gostai.com>
868
869 variables: parse.error
870
871 Implement, document, and test the replacement of %error-verbose
872 by %define parse.error "verbose".
873 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
874 values of the parse.error variable.
875 Make "simple" its default value.
876 Check the valid values.
877 * src/parse-gram.y: Use %define parse.error.
878 (PERCENT_ERROR_VERBOSE): New token.
879 Support it.
880 * src/scan-gram.l: Support %error-verbose.
881
882 * doc/bison.texinfo (Decl Summary): Replace the documentation of
883 %define error-verbose by that of %define parse.error.
884 * NEWS: Document it.
885
886 * tests/actions.at, tests/calc.at: Use parse.error instead of
887 %error-verbose.
888
b9f1d9a4
AR
8892009-06-27 Alex Rozenman <rozenman@gmail.com>
890
891 Implement support for named symbol references.
892 * src/parse-gram.y: Add new syntax (named_ref.opt).
893 * src/reader.c: Store named refs in symbol lists.
894 * src/reader.h: New argument for symbol_append and
895 action_append functions.
896 * src/scan-code.h: Add new field (named_ref) into
897 code_props data structure. Keeps named ref of midrule
898 actions.
899 * src/scan-code.l: Support for named refs in semantic
900 action code. New function 'parse_named_ref'.
901 * src/scan-gram.l: Support bracketed id.
902 * src/symlist.c: Store named refs in symbol lists.
903 * src/symlist.h: New field in symbol list: named_ref.
904 * src/named-ref.h: New file, a struct for named_ref.
905 * src/named-ref.cp: New file, named_ref_new function.
906 * src/local.mk: Add two new files.
907 * tests/testsuite.at: Include new test group:
908 * tests/named-refs.at: this new file.
909
b5c212b6
AD
9102009-06-25 Akim Demaille <demaille@gostai.com>
911
912 hash: check insertion for memory exhaustion.
913 * src/uniqstr.c (uniqstr_new): New.
914
67501061
AD
9152009-06-24 Akim Demaille <demaille@gostai.com>
916
917 variables: rename namespace as api.namespace.
918 Discussed in
919 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
920
921 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
922 New.
923 (b4_percent_define_use): New.
924 Use it where applicable.
925 * data/c++.m4: Replace uses of the variable "namespace" by
926 "api.namespace".
927 Default the latter to the former.
928 * doc/bison.texinfo (Decl Summary): Document "namespace" as
929 obsolete.
930 Document api.namespace.
931 Use @samp to document %define uses, keep @code for identifiers.
932 * NEWS: Likewise.
933 * tests/c++.at, tests/input.at: Test api.namespace instead of
934 namespace. (The tests passed with namespace.)
935
41976786
AD
9362009-06-11 Akim Demaille <demaille@gostai.com>
937
938 style changes.
939 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
940 * src/print-xml.c: Style changes.
941 * tests/conflicts.at: Comment changes.
942
44bb9084
AD
9432009-06-11 Akim Demaille <demaille@gostai.com>
944
945 xml: beware of user strings used to give a %prec to rules.
946 * tests/conflicts.at (%prec with user strings): New.
947 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
948 XML output.
949
04d1e39d
AD
9502009-06-11 Akim Demaille <demaille@gostai.com>
951
952 hash: check insertion for memory exhaustion.
953 * src/muscle-tab.c (muscle_insert, muscle_grow)
954 * src/state.c (state_hash_insert): Check the return value of
955 hash_insert.
956
a8873669
AD
9572009-06-11 Akim Demaille <demaille@gostai.com>
958
959 tests: honor TESTSUITEFLAGS in every check target.
960 * tests/local.mk (RUN_TESTSUITE): New.
961 (check-local, installcheck-local, maintainer-check-g++)
962 (maintainer-check-posix, maintainer-check-valgrind): Use it.
963
8893145a
AD
9642009-06-10 Akim Demaille <demaille@gostai.com>
965
966 deterministic test suite.
967 Some consistency checks on symbols are performed after all the
968 symbols were read, by an iteration over the symbol table. This
969 traversal is nondeterministic, which can be a problem for test
970 cases.
971 Avoid this.
972 Addresses another form of nondeterminism reported by Joel E. Denny.
973 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
974
975 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
976 test in two.
977 Use different file names for the three tests to make the
978 maintenance easier.
979
92d7a23a
AD
9802009-06-10 Akim Demaille <demaille@gostai.com>
981
982 gnulib: update.
b0778bdd
EB
983 * gnulib: Update to latest.
984 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
985 * m4/.gitignore: Regen.
986 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
987 Call xalloc_die on hash_insert failures.
988 Requested by the new __warn_unused_result__ attribute of
989 hash_insert.
92d7a23a 990
12cf133f
AD
9912009-06-10 Akim Demaille <demaille@gostai.com>
992
993 deterministic user-token-number redeclaration errors.
994 Address nondeterminism reported by Joel E. Denny.
995 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
996
997 * src/uniqstr.h: Comment changes.
998 * src/location.h (boundary_cmp, location_cmp): New.
999 * src/symtab.c (user_token_number_redeclaration): New.
1000 (symbol_translation): Use it.
1001 * tests/input.at (Numbered tokens): Adjust the expected output.
1002
796a2b0a
AD
10032009-05-25 Akim Demaille <demaille@gostai.com>
1004
1005 build: avoid ignored errors.
1006 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
1007 errors, they pollute the output.
1008
0b6d43c5
JD
10092009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1010
1011 Convert multiple variable definition warnings to complaints.
1012 * NEWS (2.5): Add a new entry for that change.
1013 * doc/bison.texinfo (Decl Summary): Update %define entry.
1014 (Bison Options): Update -D/--define/-F/--force-define entry.
1015 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
1016 * src/muscle-tab.h (muscle_percent_define_insert): Update
1017 comments.
1018 * tests/input.at (`%define errors'): Update.
1019 (`%define, --define, --force-define'): Update.
1020
de5ab940
JD
10212009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1022
1023 -F/--force-define and relative %define/-D/--define priorities.
1024 * NEWS (2.5): Add documentation to -D/--define entry.
1025 * build-aux/cross-options.pl: Hard-code association of
1026 --force-define with %define.
1027 * doc/bison.texinfo (Decl Summary): In %define entry,
1028 cross-reference command-line options.
1029 (Bison Options): Add documentation to -D/--define entry.
1030 (Option Cross Key): Widen column for --force-define row.
1031 * src/getargs.c (usage): Document -F/--force-define. Realign
1032 options in output.
1033 (short_options, long_options, getargs): Parse -F/--force-define,
1034 and update muscle_percent_define_insert invocations.
1035 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
1036 (muscle_percent_define_insert): Add argument with that type.
1037 * src/muscle-tab.c (muscle_percent_define_insert): Implement
1038 -F/--force-define behavior and priorities.
1039 (muscle_percent_define_ensure): Update
1040 muscle_percent_define_insert invocation.
1041 * src/parse-gram.y (prologue_declaration): Update
1042 muscle_percent_define_insert invocations.
1043 * tests/input.at (`%define, --define'): Rename to...
1044 (`%define, --define, --force-define'): ... this and extend.
1045
f8e7258f
JD
10462009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1047
1048 Update some comments to make sense for -D.
1049 * data/bison.m4 (b4_check_user_names): In header comments, say
1050 "user occurrence" instead of "grammar occurrence".
1051 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
1052 (muscle_percent_code_grow): Likewise just for consistency.
1053
b987342b
JD
10542009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1055
1056 * data/c++.m4 (b4_namespace_close): Simplify slightly.
1057
4977e0a7
JD
10582009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
1059
1060 Handle a trailing `:' in a user-supplied C++ namespace better.
1061 * data/c++.m4 (b4_namespace_close): Don't let it be printed
1062 among the closing braces here. This fix might make the
1063 generated code easier to debug, but otherwise it should be
1064 insignificant because a trailing `:' is a C++ error already.
1065
9b04dad7
AD
10662009-05-19 Akim Demaille <demaille@gostai.com>
1067
1068 remove useless variable.
1069 * src/getargs.c (skeleton_arg): Remove now useless variable.
1070 Should help the compiler see that this printf-like call is sane.
1071
4c6622c2
AD
10722009-05-15 Akim Demaille <demaille@gostai.com>
1073
1074 Rename token.prefix as api.tokens.prefix.
1075 Discussed here.
1076 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
1077
1078 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
1079 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
1080 (token.prefix): Rename as...
1081 (api.tokens.prefix): this.
1082
3c248d70
AD
10832009-05-11 Akim Demaille <demaille@gostai.com>
1084
1085 doc: use C++ headers.
1086 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
1087 headers.
1088
99c08fb6
AD
10892009-05-11 Akim Demaille <demaille@gostai.com>
1090
1091 doc: token.prefix
1092 * doc/bison.simple (Decl Summary): Document token.prefix.
1093 (Calc++ Parser): Various fixes.
1094 Formatting changes.
1095 Use token.prefix.
1096 Introduce a macro TOKEN to shorten the code and make it more
1097 readable.
1098 (Calc++ Scanner): Adjust.
1099 * NEWS (Variable token.prefix): New.
1100
84a1cb5a
AD
11012009-05-04 Akim Demaille <demaille@gostai.com>
1102
1103 bison: catch bad symbol names.
1104 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
1105 * tests/input.at: Adjust.
1106
cdf3f113
AD
11072009-05-04 Akim Demaille <demaille@gostai.com>
1108
1109 identifiers: dashes are letters.
1110 Dashes can now start identifiers (symbols and directives).
84a1cb5a 1111
cdf3f113
AD
1112 * src/scan-gram.l ({letter}): Add dash.
1113 ({id}): Remove it.
1114 * tests/input.at (Symbols): Adjust.
1115 Remove stray comment.
1116 * tests/regression.at (Invalid inputs): Adjust error message.
1117 * doc/bison.texinfo (Symbols): Update.
1118
98a345a2
JD
11192009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
1120
1121 Declare %code to be a permanent feature.
1122 * NEWS (2.4.2): Here.
1123 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
1124 experimental.
1125 (Decl Summary): Likewise.
1126
67212941
JD
11272009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1128
1129 Convert underscores to dashes in some %define variable names.
1130 For now, just api.push-pull and lr.keep-unreachable-states.
1131 Maintain old names for backward compatibility.
1132 * NEWS (2.5): Document.
1133 * data/c.m4 (b4_identification): Update comment.
1134 * data/yacc.c: Update access.
1135 * doc/bison.texinfo: Update.
1136 * etc/bench.pl.in (bench_push_parser): Update use.
1137 * src/files.c (tr): Move to...
1138 * src/getargs.c, src/getargs.h (tr): ... here because I can't
1139 think of a better place to expose it. My logic is that, for all
1140 uses of tr so far, command-line arguments can be involved, and
1141 getargs.h is already included.
1142 * src/main.c (main): Update access.
1143 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
1144 variable names to new variable names before assigning value.
1145 * src/reader.c (reader): Update setting default.
1146 * tests/calc.at: Update uses.
1147 * tests/conflicts.at (Unreachable States After Conflict
1148 Resolution): Update use.
1149 * tests/input.at (%define enum variables): Update use.
1150 (%define backward compatibility): New test group.
1151 * tests/push.at: Update uses.
1152 * tests/reduce.at: Update uses.
1153 * tests/torture.at: Update uses.
1154
ba5c6d94
JD
11552009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1156
1157 Set all front-end %define defaults in one place.
1158 * src/main.c (main): Move lr.keep_unreachable_states default...
1159 * src/reader.c (reader): ... to here.
1160
5bab9d08
JD
11612009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1162
1163 Rename lr.default_reductions to lr.default-reductions.
1164 * NEWS (2.5): Here.
1165 * doc/bison.texinfo: Here.
1166 * src/lalr.c (initialize_LA): Here.
1167 * src/print.c (print_reductions): Here.
1168 * src/reader.c (reader): Here.
1169 * src/tables.c (action_row): Here.
1170 * tests/input.at (%define enum variables): Here.
1171 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
1172
d521ee19
JD
11732009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1174
1175 Pacify ./configure --enable-gcc-warnings.
1176 * tests/input.at (Symbols): Prototype yyerror and yylex.
1177
11782009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
c9aded4b
JD
1179
1180 Document how `%define "var" "value"' is not M4-friendly.
1181 * src/parse-gram.y (variable): In comments here.
1182
8f0d265e
JD
11832009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1184
1185 Clean up recent patches a little.
1186 Reported by Akim Demaille.
1187 * doc/bison.texinfo (Understanding): Fix typos.
1188 * src/print.c (print_reductions): Don't use negated variable.
1189
f4909773
JD
11902009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1191
1192 List accepted values for a %define enum variable with an invalid value.
1193 Suggested by Akim Demaille at
1194 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
1195 * data/bison.m4 (_b4_percent_define_check_values): Implement.
1196 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
1197 * tests/input.at (%define lr.default_reductions invalid values): Merge
1198 into...
1199 (%define enum variables): ... here, and update output.
1200
110ef36a
JD
12012009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
1202
1203 Rename "default rule" to "default reduction".
1204 This includes changing variable names in code, changing
1205 comments, and renaming %define lr.default_rules to %define
1206 lr.default_reductions.
1207 * NEWS (2.5): Update IELR documentation.
1208 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
1209 documentation.
1210 * data/glr.c, data/lalr1.java: Sync copyright dates.
1211 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
1212 and lr.type documentation. Make some other wording
1213 improvements.
1214 (Glossary): Adjust cross-references and Default Reduction
1215 definition.
1216 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
1217 Remove a confusing comment pointed out by Akim Demaille.
1218 (initialize_LA): Adjust code.
1219 * src/print-xml.c (print_reductions): Adjust code.
1220 * src/print.c (print_reductions): Adjust code.
1221 * src/reader.c (reader): Adjust code.
1222 * src/tables.c (action_row): Adjust code.
1223 (token_actions): Adjust code.
1224 * src/tables.h: Adjust YYDEFACT documentation.
1225 * tests/input.at (%define lr.default_rules invalid values):
1226 Rename test group to...
1227 (%define lr.default_reductions invalid values): ... this, and
1228 update grammar file and expected output.
1229 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
1230 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
1231
746ee38c
AD
12322009-04-21 Akim Demaille <demaille@gostai.com>
1233
1234 tests: check the use of dashes and periods in symbols.
1235 * tests/input.at (Symbol): New test group.
1236
eb45ef3b
JD
12372009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1238
1239 Document %define lr.type and lr.default_rules.
1240 * NEWS (2.5): Add an entry.
1241 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
1242 besides just LALR(1) and GLR(1).
1243 * doc/bison.texinfo (Introduction): Likewise.
1244 (Language and Grammar): Bison is no longer limited to LALR(1)
1245 restrictions.
1246 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
1247 when trying to distinguish from GLR. Talk about LR(1) grammars
1248 rather than LALR(1) grammars.
1249 (Decl Summary): In %define api.push_pull entry, say it applies
1250 to deterministic parsers in C rather than LALR(1) parsers in C.
1251 Add lr.default_rules entry.
1252 Add lr.type entry.
1253 (Mystery Conflicts): Bison is no longer limited to LALR(1)
1254 restrictions.
1255 (Generalized LR Parsing): Same changes as for the previous GLR
1256 section.
1257 (Memory Management): Say deterministic rather than LALR(1).
1258 (Understanding): Correct some bison output.
1259 Index discussion of "accepting state".
1260 Say deterministic rather than LALR(1).
1261 (Bison Options): In --yacc entry, say deterministic rather than
1262 LALR(1).
1263 In --report, --graph, and --xml entries, just don't mention
1264 LALR(1).
1265 (C++ Parsers): Say deterministic rather than LALR(1).
1266 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
1267 (Glossary): Add Accepting State, Consistent State, Default Rule,
1268 and IELR(1) definitions.
1269 In Generalized LR (GLR) definition, make same changes as in
1270 previous GLR sections.
1271 In LALR(1) definition, say Bison uses LALR(1) by default rather
1272 than implying Bison is limited to LALR(1).
1273 (LocalWords): Add IELR.
1274
db34f798
JD
12752009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1276
1277 Finish implementing %define lr.type.
1278 Its value can be "LALR", "IELR", or "canonical LR".
1279 * lib/timevar.def (TV_IELR_PHASE1): New var.
1280 (TV_IELR_PHASE2): New var.
1281 (TV_IELR_PHASE3): New var.
1282 (TV_IELR_PHASE4): New var.
1283 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
1284 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
1285 Sbitset.h, ielr.h, and ielr.c.
1286 * src/getargs.h, src/getargs.c (enum trace, trace_args,
1287 trace_types): Add trace_ielr.
1288 * src/lalr.h, src/lalr.c (ngotos): Export it.
1289 (F): Rename to...
1290 (goto_follows): ... this, update all uses, and export it.
1291 (set_goto_map): Export it.
1292 (map_goto): Export it.
1293 (compute_lookahead_tokens): Don't free goto_follows yet. Now
1294 handled in ielr.
1295 (initialize_LA): Export it. Move lookback allocation to...
1296 (lalr): ... here because, for canonical LR, initialize_LA must
1297 be invoked but lookback and much of the rest of LALR isn't
1298 needed.
1299 * main.c (main): Instead of lalr, invoke ielr, which invokes
1300 lalr.
1301 * src/reader.c (reader): Default lr.type to "LALR".
1302 Default lr.default_rules to "accepting" if lr.type is "canonical
1303 LR". Leave the default as "all" otherwise.
1304 Check for a valid lr.type value.
1305 * src/state.h, src/state.c (struct state_list): Add state_list
1306 member.
1307 (state_new): Initialize state_list member to NULL.
1308 (state_new_isocore): New function, exported.
1309 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
1310 exercises all values of lr.type.
1311 (GNU AWK Grammar): Rename test group to...
1312 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
1313 AT_TEST_EXISTING_GRAMMAR.
1314 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
1315 (GNU pic Grammar): Rename test group to...
1316 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
1317 AT_TEST_EXISTING_GRAMMAR.
1318 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
1319 all values of lr.type.
1320 (Single State Split): New test groups using AT_TEST_LR_TYPE.
1321 (Lane Split): Likewise.
1322 (Complex Lane Split): Likewise.
1323 (Split During Added Lookahead Propagation): Likewise.
1324
7fe11bb5
JD
13252009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1326
1327 Add new files for IELR and canonical LR implementation.
1328 * src/AnnotationList.c: New.
1329 * src/AnnotationList.h: New.
1330 * src/InadequacyList.c: New.
1331 * src/InadequacyList.h: New.
1332 * src/Sbitset.c: New.
1333 * src/Sbitset.h: New.
1334 * src/ielr.c: New.
1335 * src/ielr.h: New.
1336
7254f6a8
JD
13372009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1338
1339 Implement %define lr.default_rules.
1340 Its value describes the states that are permitted to contain
1341 default rules: "all", "consistent", or "accepting".
1342 * src/reader.c (reader): Default lr.default_rules to "all".
1343 Check for a valid lr.default_rules value.
1344 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
1345 is "accepting", then only mark the accepting state as
1346 consistent.
1347 (initialize_LA): Tell state_lookahead_tokens_count whether
1348 lr.default_rules is "accepting".
1349 * src/tables.c (action_row): If lr.default_rules is not "all",
1350 then disable default rules in inconsistent states.
1351 * src/print.c (print_reductions): Use this opportunity to
1352 perform some assertions about whether lr.default_rules was
1353 obeyed correctly.
1354 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
1355 helps with checking the parser tables for a grammar.
1356 * tests/input.at (%define lr.default_rules invalid values): New
1357 test group.
1358 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
1359 AT_TEST_TABLES_AND_PARSE.
1360 (`no %define lr.default_rules'): New test group generated by
1361 AT_TEST_LR_DEFAULT_RULES.
1362 (`%define lr.default_rules "all"'): Likewise.
1363 (`%define lr.default_rules "consistent"'): Likewise.
1364 (`%define lr.default_rules "accepting"'): Likewise.
1365
72e727f2
AD
13662009-04-20 Akim Demaille <demaille@gostai.com>
1367
1368 Formatting change.
1369
90462b8d
AD
13702009-04-20 Akim Demaille <demaille@gostai.com>
1371
1372 bison: factoring.
1373 * src/output.c (token_definitions_output): Use symbol_id_get
1374 instead of duplicating its logic.
1375 * TODO (YYERRCODE): Extend.
1376
4f646c37
AD
13772009-04-20 Akim Demaille <demaille@gostai.com>
1378
71b00ed8
AD
1379 variables: prefer error-verbose to error_verbose.
1380 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
1381 instead of error_verbose.
1382 * src/scan-gram.l (%error-verbose): Map to the error-verbose
1383 variable.
1384 * doc/bison.texinfo: Promote %define error-verbose instead of
1385 %error-verbose.
1386 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
1387
13882009-04-15 Akim Demaille <demaille@gostai.com>
1389
4f646c37
AD
1390 variables: accept dashes.
1391 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
1392 underscores.
1393 * src/scan-gram.l ({id}): Also accept dashes after the initial
1394 letter.
1395 ({directive}): Use {id}.
1396 * src/parse-gram.y: Comment and formatting changes.
1397 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
1398 symbols.
1399 * src/complain.h, src/complain.c (yacc_at): New.
1400 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
1401 symbol names.
1402 * src/output.c (token_definitions_output): Do not #define token
1403 names with dashes.
1404
184e3179
AD
14052009-04-20 Akim Demaille <demaille@gostai.com>
1406
1407 Consistently refer to Yacc, not YACC.
1408 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
1409
41253c3a
JD
14102009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
1411
1412 Pacify make maintainer-check-posix.
1413 * tests/input.at (%define, --define): Move bison command-line
1414 options before grammar file name.
1415
197b82ba
JD
14162009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1417
1418 Document semicolon warnings.
1419 * NEWS (2.5): Here.
1420
0c90a1f5
AD
14212009-04-14 Akim Demaille <demaille@gostai.com>
1422
1423 variables: use `parse.assert' instead of `assert'.
1424 * TODO (assert): Remove.
1425 * data/bison.m4 (b4_assert_if): Replace with...
1426 (b4_parse_assert_if): this.
1427 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
1428 * doc/bison.texinfo (Decl Summary): Document parse.assert.
1429
fa819509
AD
14302009-04-14 Akim Demaille <demaille@gostai.com>
1431
16dc0d90 1432 variables: use `parse.trace' instead of `debug'.
fa819509
AD
1433 * src/getargs.c (getargs): Map -t to %define trace.parse.
1434 * src/scan-gram.l (%debug): Map to %define trace.parse.
1435 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
1436 names to `_' in macro names.
1437 (b4_debug_if): Replace with...
1438 (b4_parse_trace_if): this.
1439 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1440 * data/yacc.c: Adjust.
1441 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
1442 Use @code to label the variable list.
1443 Document the variable parse.trace.
1444 (Tracing): Promote the parse.trace variable.
1445 * TODO: %printer is not documented.
1446
f7dae1ea
AD
14472009-04-14 Akim Demaille <demaille@gostai.com>
1448
1449 doc: minor fixes.
1450 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
1451 (Table of Symbols): Remove duplicate entry for %debug.
1452
3535c071
EB
14532009-04-10 Eric Blake <ebb9@byu.net>
1454
1455 submodules: update to latest
1456 * submodules/autoconf: Use latest upstream Autoconf.
1457
cf48f675
EB
14582009-04-06 Eric Blake <ebb9@byu.net>
1459
1460 Work around autoconf 2.63b bug in testsuite.
1461 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
1462 autoconf bug related to # in test.
1463
50cca368
JD
14642009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1465
1466 * NEWS (2.5): New section. Describe new -D/--define feature.
1467
3583d96b
AD
14682009-04-06 Akim Demaille <demaille@gostai.com>
1469
1470 Regen.
1471 * src/parse-gram.h, src/parse-gram.c: Regen.
1472
00f5d575
AD
14732009-04-06 Akim Demaille <demaille@gostai.com>
1474
1475 rename muscle_tab.* as muscle-tab.* for consistency.
1476 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
1477 * src/muscle-tab.h, src/muscle-tab.c: these.
1478 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
1479 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
1480
76bf5102
AD
14812009-04-06 Akim Demaille <demaille@gostai.com>
1482
1483 Makefile: introduce $(BISON).
1484 * src/local.mk (BISON): New.
1485 (YACC): Use it.
1486
bc0f5737
AD
14872009-04-06 Akim Demaille <demaille@gostai.com>
1488
1489 parser: handle %locations as %define locations.
1490 * src/getargs.h, src/getargs.c (locations_flag): Remove.
1491 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
1492 to set "locations" to true.
1493 * src/output.c (prepare): Don't output "locations".
1494 * src/scan-gram.l (%locations): Handle it as a %<flag>.
1495 * src/parse-gram.y: It's no longer a token.
1496 Don't handle it.
1497 * data/bison.m4 (b4_locations_if): Define it with
1498 b4_percent_define_if_define.
1499 * data/c.m4, data/glr.cc: Adjust.
1500
697c912f
AD
15012009-04-06 Akim Demaille <demaille@gostai.com>
1502
1503 Regen.
1504 * src/parse-gram.c: Regen.
1505
4920ae8b
AD
15062009-04-06 Akim Demaille <demaille@gostai.com>
1507
1508 muscle: factor the handling of obsolete of obsolete directives.
1509 Suggested by Joel E. Denny.
50cca368 1510
4920ae8b
AD
1511 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
1512 New, extracted from...
1513 * src/parse-gram.y (prologue_declaration: pure-parser): here.
1514 Remove it.
1515 (prologue_declaration: "%<flag>"): Use
1516 muscle_percent_define_ensure.
1517 (%error-verbose, %pure-parser): No longer tokens.
1518 * src/scan-gram.l (pure-parser): Return as a %<flag>.
1519
1d5b3c08
JD
15202009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1521
1522 Fix options documentation.
1523 * build-aux/cross-options.pl: As in --help output, write optional
1524 arguments as [=ARG] not =[ARG].
1525 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
1526
62c99cf4
JD
15272009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1528
1529 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
1530 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
1531 requirements for a correct m4 are stricter.
1532 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
1533 * configure.ac: Update to use AC_PROG_GNU_M4.
1534 Reported by Eric Blake.
1535
1c93f35b
JD
15362009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1537
1538 Help with updating web manual.
1539 * HACKING: Incorporate instructions from gnulib/doc/README.
1540 * bootstrap.conf (gnulib_modules): Add gendocs.
1541
86cfae0a
AD
15422009-04-03 Akim Demaille <demaille@gostai.com>
1543
1544 Regen.
1545 * src/parse-gram.h, src/parse-gram.c: Regen.
1546
ba061fa6
AD
15472009-04-03 Akim Demaille <demaille@gostai.com>
1548
1549 Factor %FLAG at scan level.
1550 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
1551 definitions and associated rules, replaced by....
1552 (PERCENT_FLAG): this new token type, and rule.
1553 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
1554 Use it for %debug and %error-verbose.
1555
b19ebeb3
AD
15562009-04-03 Akim Demaille <demaille@gostai.com>
1557
1558 Regen.
1559 * src/parse-gram.h, src/parse-gram.c: Regen.
1560
001a16a9
AD
15612009-04-03 Akim Demaille <demaille@gostai.com>
1562
1563 Treat %debug as %define debug.
1564 * data/bison.m4 (b4_debug_if): New.
1565 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
1566 * data/lalr1.java: Use it instead of b4_debug_flag.
1567 * src/getargs.h, src/getargs.c (debug_flag): Remove.
1568 * src/output.c (prepare): Don't output it.
1569 * src/parse-gram.y: Treat %debug as %define debug.
1570
15712009-04-03 Akim Demaille <demaille@gostai.com>
1572
1573 Treat %error-verbose as %define error_verbose.
1574 This allows to pass -Derror_verbose on the command line. Better
1575 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
1576 ERROR_VERBOSE being defined as false or true.
1577 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
1578 on b4_percent_define_ifdef, for does not check the defined value,
1579 but only whether the symbol is defined, rely on
1580 b4_percent_define_flag_if, so that a value of "false" is processed
1581 as a false.
1582 If not defined, define the flag to "false".
1583 (b4_error_verbose_if): New.
1584 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
1585 b4_error_verbose_flag.
1586 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
1587 * src/output.c (prepare): Don't output it.
1588 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
1589
92822aff
JD
15902009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1591
1592 Fix strange %define locations for default values.
1593 Reported by Akim Demaille at
1594 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
1595 and discussed again starting at
1596 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
1597 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
1598 because location information is bogus.
1599 Use angle brackets to delimit fake file name because square brackets
1600 look like underexpanded m4. Choose a better fake file name.
1601 Use negative line numbers.
1602 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
1603 * src/location.c (location_print): If line for a boundary is negative,
1604 only print that boundary's file name.
1605 * src/location.h: Document that.
1606 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1607 defaults): Update output.
1608
e021191b
JD
16092009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1610
1611 Pacify ./configure --enable-gcc-warnings.
1612 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
1613 in lib won't compile with it.
1614 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
1615
78f65418
AD
16162009-03-31 Akim Demaille <demaille@gostai.com>
1617
1618 bootstrap: --help to stdout.
1619 * bootstrap (usage): Don't send --help to stderr.
1620 Use a here doc instead of a long string.
1621
f7e241f4
AD
16222009-03-31 Akim Demaille <demaille@gostai.com>
1623
1624 bootstrap: README-hacking no longer exists
1625 * bootstrap (checkout_only_file): Set to HACKING.
1626
31d3e510
AD
16272009-03-26 Akim Demaille <demaille@gostai.com>
1628
1629 doc: merge HACKING and README-hacking.
1630 Two files is confusing.
1631 Reported by Alexandre Duret-Lutz.
1f9d8248 1632
31d3e510
AD
1633 * README-hacking: Merge into...
1634 * HACKING (Working from the repository): here.
1635
81535bfa
AD
16362009-03-26 Akim Demaille <demaille@gostai.com>
1637
1638 doc: update README-hacking.
1639 * README-hacking: We now use git and git submodules.
1640 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
1641
56f772e9
AD
16422009-03-26 Akim Demaille <demaille@gostai.com>
1643
1644 lalr1.cc: avoid GCC 4.3 warnings.
1645 GCC 4.3 now warns about "a || b && c" and asks for explicit
1646 parentheses.
1647 Reported by Alexandre Duret-Lutz.
1648 * data/location.cc: Update copyright years.
1649 (Position::operator==): Use parens to make precedence explicit.
1650 Compare lines and columns first, as they are more likely to be
1651 different, and they are faster to compare.
1652
11c073b7
AD
16532009-03-26 Akim Demaille <demaille@gostai.com>
1654
1655 gnulib: update.
1656 * gnulib: Update to latest.
1657 * src/local.mk (AM_CFLAGS): Move to...
1658 * Makefile.am: here.
1659 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
1660 AM_CFLAGS.
1661
91be6b28
AD
16622009-03-02 Akim Demaille <demaille@gostai.com>
1663
1664 Comment changes.
1665
cbf25ce7
AD
16662009-03-02 Akim Demaille <demaille@gostai.com>
1667
1668 Share b4_yytranslate_define.
1669 * data/lalr1.cc (b4_yytranslate_define): Move to...
1670 * data/c++.m4: here.
1671
882f02ed
AD
16722009-03-02 Akim Demaille <demaille@gostai.com>
1673
1674 Use locations in the variant example.
1f9d8248
AD
1675 Yes, this obfuscates the point of this example, variants only.
1676 But glr.cc cannot work (yet?) without locations. This change
1677 makes it easier to use this example with glr.cc.
11c073b7 1678
882f02ed
AD
1679 * examples/variant.yy (assert): %define it.
1680 (locations): Request them.
1681 (yylex): Bind the location to the stage.
1682
0623bacc
AD
16832009-03-02 Akim Demaille <demaille@gostai.com>
1684
1685 Dub make_TOKEN as a public type interface.
1686 * data/c++.m4 (b4_symbol_constructor_declare)
1687 (b4_symbol_constructor_define): New empty stubs.
1688 (b4_public_types_declare, b4_public_types_define): Use them.
1689 * data/lalr1.cc (b4_symbol_constructor_declare)
1690 (b4_symbol_constructor_declare_)
1691 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
1692 Move to...
1693 * data/variant.hh: here.
1694 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
1695 needed.
1696 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
1697 b4_symbol_constructor_declare, as it is now done by
1698 b4_public_types_define and b4_public_types_declare.
1699
5f5a90df
AD
17002009-03-02 Akim Demaille <demaille@gostai.com>
1701
1702 Coding style changes.
1703 * data/lalr1.cc (b4_symbol_constructor_declaration_)
1704 (b4_symbol_constructor_declarations)
1705 (b4_symbol_constructor_definition_)
1706 (b4_symbol_constructor_definitions)
1707 (b4_yytranslate_definition): Rename as...
1708 (b4_symbol_constructor_declare_)
1709 (b4_symbol_constructor_declare)
1710 (b4_symbol_constructor_define_)
1711 (b4_symbol_constructor_define)
1712 (b4_yytranslate_define): these.
1713 * data/variant.hh (b4_variant_definition): Rename as...
1714 (b4_variant_define): this.
1715
b47b6ff7
AD
17162009-03-02 Akim Demaille <demaille@gostai.com>
1717
1718 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
1719 * data/bison.m4 (b4_percent_define_if_define): New.
1720 * data/c++.m4 (b4_variant_if): Move to...
1721 * data/bison.m4: Here, using b4_percent_define_if_define.
1722 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
1723 * data/bison.m4: Here, using b4_percent_define_if_define.
1724
1d6b689b
AD
17252009-03-02 Akim Demaille <demaille@gostai.com>
1726
1727 Dub symbol_type_base as a public type.
1728 * data/c++.m4 (b4_public_types_declare): Now define
1729 symbol_type_base and symbol_type.
1730 (b4_public_types_define): New.
1731 In both cases, the definitions are taken verbatim from lalr1.cc.
1732 * data/lalr1.cc: Adjust.
1733
4f84717d
AD
17342009-03-02 Akim Demaille <demaille@gostai.com>
1735
1736 b4_public_types_declare.
1737 * data/c++.m4 (b4_public_types_declare): New.
1738 * data/glr.cc, data/lalr1.cc: Use it.
1739
b9e4eb5b
AD
17402009-03-02 Akim Demaille <demaille@gostai.com>
1741
1742 b4_semantic_type_declare.
1743 * data/c++.m4 (b4_semantic_type_declare): New.
1744 Factors and generalizes what was in glr.cc and lalr1.cc.
1745 * data/variant.hh (b4_semantic_type_declare): Redefine it for
1746 variants.
1747 * data/lalr1.cc, data/glr.cc: Use it.
1748
6a6e7f0c
AD
17492009-02-26 Akim Demaille <demaille@gostai.com>
1750
1751 Upgrade gnulib.
1752 * gnulib: Upgrade from master.
1753 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
1754 Regen.
1755
e9e61b00
AD
17562009-02-25 Akim Demaille <demaille@gostai.com>
1757
1758 Remove useless arguments.
1759 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
1760 relevant.
1761
3eead995
AD
17622009-02-25 Akim Demaille <demaille@gostai.com>
1763
1764 Comment changes.
1765 * data/lalr1.cc: here.
1766
87f28efe
AD
17672009-02-25 Akim Demaille <demaille@gostai.com>
1768
1769 Fix glr.cc's debug level handling.
1770 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
1771 glr.c which is used.
1772 (debug_level, set_debug_level): Adjust.
1773
9be2a009
AD
17742009-02-25 Akim Demaille <demaille@gostai.com>
1775
1776 Copyright years.
1777 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
1778
07a6e87d
AD
17792009-02-25 Akim Demaille <demaille@gostai.com>
1780
1781 Style changes.
1782 * etc/bench.pl.in (generate_grammar_list): Consitently use
1783 location_type, not yy::location.
1784
33c78bd2
AD
17852009-02-25 Akim Demaille <demaille@gostai.com>
1786
1787 Comment change.
1788 * data/lalr1.cc: here.
1789
49572920
AD
17902009-02-19 Akim Demaille <demaille@gostai.com>
1791
1792 Make yyparser::error public.
1793 * data/lalr1.cc: here.
1794 There is no good reason to keep it private (and it is convenient
1795 to use it from the scanner for instance). It is already public in
1796 glr.cc.
1797
88654b47
AD
17982009-02-19 Akim Demaille <demaille@gostai.com>
1799
1800 Comment changes.
1801 * data/glr.cc: here.
1802
4524c55b
AD
18032009-02-19 Akim Demaille <demaille@gostai.com>
1804
1805 Remove trailing blanks.
6a6e7f0c
AD
1806 The epilogue has its own ending \n, no need to add another.
1807
4524c55b
AD
1808 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
1809 epilogue.
1810 * data/glr.cc: dnl when extending the epilogue.
1811 Remove stray "private:".
1812
6ceccee8
AD
18132009-02-19 Akim Demaille <demaille@gostai.com>
1814
1815 Use b4_c_modern.
1816 * data/c.m4 (b4_c_function_decl): Here.
1817
9c6a8966
AD
18182009-02-19 Akim Demaille <demaille@gostai.com>
1819
1820 Comment changes.
1821 * data/lalr1.cc: here.
1822
507aa0e2
AD
18232009-02-19 Akim Demaille <demaille@gostai.com>
1824
1825 Extract variant.hh
1826 * data/variant.hh: New, extracted from...
1827 * data/lalr1.cc: here.
1828 Adjust.
1829 * data/local.mk: Adjust.
1830
51bacae6
AD
18312009-02-19 Akim Demaille <demaille@gostai.com>
1832
1833 Extract stack.hh from lalr1.cc.
1834 * data/stack.hh: New.
1835 * data/lalr1.cc: Extract from here.
1836 * data/local.mk: Adjust.
1837
06c3084f
JD
18382009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
1839
1840 Add reminder about uploading public key to keys.gnupg.net.
1841 * HACKING (Release Procedure): Here.
1842
0ea583d2
AD
18432009-01-28 Akim Demaille <demaille@gostai.com>
1844
1845 * NEWS: Update information about 2.4.1 and 2.4.2.
1846
402b123d
AD
18472008-11-04 Akim Demaille <demaille@gostai.com>
1848
1849 Reformat NEWS.
1850 * NEWS: Use more outline-mode markup.
1851 Suggested by Jim Meyering.
1852
74553c98
AD
18532009-01-08 Akim Demaille <demaille@gostai.com>
1854
1855 Fix grep portability issues.
1856 Grep on Solaris does not support -q.
1857 Reported by Summum Bonum.
1858
1859 * NEWS: Add a stub for 2.4.2.
1860 * THANKS: Add Summum Bonum.
1861 * tests/atlocal.in (EGREP): New.
1862 (CC, CXX, XSLTPROC): Make it possible to override them via
1863 envvars.
1864 * tests/java.at: Use $EGREP instead of egrep.
1865 Use AT_CHECK's ignore instead of grep's -q.
1866
84eedf86
AD
18672008-12-11 Akim Demaille <demaille@gostai.com>
1868
1869 Pass the token type to yysyntax_error.
1870 * data/yacc.c (yysyntax_error): Take the transated token instead
1871 of the raw number.
1872 Adjust callers.
1873 * TODO: Update.
1874
5860cc8c
AD
18752008-12-11 Akim Demaille <demaille@gostai.com>
1876
1877 Formatting changes.
1878 * data/glr.c: Formatting changes.
1879
2b008529
AD
18802008-12-11 Akim Demaille <demaille@gostai.com>
1881
1882 Propagate i18n changes into glr.c.
1883 * TODO: Update.
1884 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
1885 building the error message format dynamically.
1886 * data/lalr1.java: Formatting changes.
1887
2cd1af95
AD
18882008-12-11 Akim Demaille <demaille@gostai.com>
1889
1890 Use testsuite -C.
1891 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
1892 Solves problems when top_srcdir is an absolute path.
1893 Suggested by Eric Blake.
1894 * configure.ac: Require Autoconf 2.62.
1895
eeb29422
AD
18962008-12-11 Akim Demaille <demaille@gostai.com>
1897
1898 Simplify the i18n of the error messages.
1899 * data/lalr1.cc: Comment changes.
1900 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
1901 lalr1.cc instead of building dynamically the format string.
1902
6617622c
AD
19032008-12-08 Akim Demaille <demaille@gostai.com>
1904
1905 Fix portability issue in the test suite.
1906 * tests/local.at (AT_MATCHES_CHECK): New.
1907 Based on Perl instead of Sed. Sed has too many portability
1908 pitfalls, not ever Sed is GNU Sed.
1909 * tests/actions.at (Fix user actions without a trailing semicolon):
1910 Use it.
1911
2ca1136c
AD
19122008-12-08 Akim Demaille <demaille@gostai.com>
1913
1914 Update data/README.
1915 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
1916
6c63b895
AD
19172008-12-08 Akim Demaille <demaille@gostai.com>
1918
1919 Install autoconf as a submodule to get m4sugar.
1920 * .gitmodules: Add submodules/autoconf.
1921 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
1922 submodules/autoconf.
1923
417e31d2
AD
19242008-12-08 Akim Demaille <demaille@gostai.com>
1925
1926 Test token.prefix in all the skeletons.
1927 * data/java.m4 (b4_token_enum): Use the token.prefix.
1928 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
1929 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
1930 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
1931 * tests/java.at: Comment changes.
1932 (AT_CHECK_JAVA_MINIMAL): Define the END token.
1933 (Java parser class and package names): Add token.prefix check.
1934
97abf544
AD
19352008-12-08 Akim Demaille <demaille@gostai.com>
1936
1937 Fix regeneration of atconfig.
1938 * tests/local.mk (tests/atconfig): The rule was incorrect, but
1939 remove it: now that there is no tests/Makefile.am, the top-level
1940 Makefile properly updates atconfig when needed.
1941
e8cd1ad6
DJ
19422008-12-07 Di-an Jan <dianj@freeshell.org>
1943
1944 Implement the FIXME that ends an user action with a semicolon
1945 if it seems necessary.
1946 * src/scan-code.l (flex rules section): Flag cpp directive from
1947 any `#' to the first unescaped end-of-line. Semicolon is not
1948 needed after `;', `{', '}', or cpp directives and is needed after
1949 any other token (whitespaces and comments have no effect).
1950 * tests/actions.at (Fix user actions without a trailing semicolon):
1951 New test.
1952 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
1953 to make user actions complete statements.
1954 Adjust column numbers in error messages.
1955 * tests/regression.at (Fix user actions without a trailing semicolon):
1956 Remove. Covered by new test.
1957
ce9447fc
AD
19582008-12-07 Akim Demaille <demaille@gostai.com>
1959
1960 Update gnulib.
1961 * gnulib: Update from master.
1962
d333175f
EB
19632008-12-05 Eric Blake <ebb9@byu.net>
1964
1965 Avoid compiler warning.
1966 * src/output.c (muscle_insert_item_number_table): Delete unused
1967 function.
1968
215b40ac
EB
19692008-12-02 Eric Blake <ebb9@byu.net>
1970
1971 Build testsuite with newer autoconf.
1972 * tests/output.at (m4_expand): Don't override in newer autoconf,
1973 where the underlying implementation changed.
1974 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
1975 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
1976 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
1977 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
1978 since some of them contain unbalanced ')'.
1979
3bb21113
AD
19802008-12-01 Akim Demaille <demaille@gostai.com>
1981
1982 Use b4_symbol for printers and destructors everywhere.
1983 * data/bison.m4 (b4_symbol_action_location): New.
1984 * data/c.m4 (b4_symbol_actions): Remove.
1985 Adjust all callers to use by b4_symbol_foreach and the corresponding
1986 b4_symbol_printer/destructor macro.
1987 * data/glr.cc: Adjust.
1988 * data/lalr1.java: Adjust the %destructor sanity check.
1989 * src/output.c (symbol_code_props_output): Remove, we no longer
1990 need the b4_symbol_printers/destructors tables.
1991
fb7c5b1f
AD
19922008-12-01 Akim Demaille <demaille@gostai.com>
1993
1994 Use b4_symbol_case_.
1995 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
1996 b4_symbol_case_.
1997
cf6fb222
AD
19982008-12-01 Akim Demaille <demaille@gostai.com>
1999
2000 Move b4_symbol based macro to bison.m4.
2001 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
2002 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
2003 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
2004 (b4_type_foreach): Move to...
2005 * data/bison.m4: Here.
2006 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
2007 b4_symbol_value_template instead of b4_symbol_value.
cf6fb222 2008
e3c52a63
AD
20092008-12-01 Akim Demaille <demaille@gostai.com>
2010
2011 b4_symbol/type_foreach.
2012 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
2013 Use them.
2014
2bde9113
AD
20152008-12-01 Akim Demaille <demaille@gostai.com>
2016
2017 Use the symbol properties to output the printer/destructor for lalr1.cc.
30c10faf
AD
2018 Instead of defining complex list of tuples to define various
2019 properties of the symbols, we now prefer to define symbols as
2020 "structs" in m4: using the symbol key (its number), and the
2021 property name, b4_symbol gives it value. Use this to handle
2022 destructors and printers.
2023
2bde9113
AD
2024 * src/output.c (CODE_PROP): New.
2025 (prepare_symbol_definitions): Use it to define the printer and
2026 destructor related attributes of the symbols.
2027 * data/lalr1.cc (b4_symbol_actions): Rename as...
2028 (b4_symbol_action): this.
2029 Use b4_symbol instead of 6 arguments.
2030 (b4_symbol_printer, b4_symbol_destructor): New.
2031 Use them instead of b4_symbol_actions.
2032
44494bf6
AD
20332008-12-01 Akim Demaille <demaille@gostai.com>
2034
2035 Avoid capturing variables too easily.
2036 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
2037 v__ and p__ instead of v and p.
2038
fad814bd
AD
20392008-12-01 Akim Demaille <demaille@gostai.com>
2040
2041 Remove spurious empty line before syncline.
2042 * data/bison.m4 (b4_syncline): Don't output an empty line before
2043 the output.
2044
feda5527
AD
20452008-11-26 Akim Demaille <demaille@gostai.com>
2046
2047 Convert lib/Makefile.am into lib/local.mk.
2048 The real problem is rather gnulib.mk, which itself is extracted
2049 from a Makefile.am that gnulib expects to the "recursive". The
2050 tool prefix-gnulib-mk converts such a gnulib.mk to be
2051 non-recursive. Also, some AC_SUBST variables need to be adjusted.
2052
2053 * etc/prefix-gnulib-mk: New.
2054 * bootstrap (slurp): Use it to convert further gnulib.mk.
2055 No longer try to avoid re-creation of lib/gnulib.mk as the changes
2056 are deeper.
2057 * lib/Makefile.am: Rename as...
2058 * lib/local.mk: this.
2059 Adjust to be prefixed.
2060 * Makefile.am, configure.ac: Adjust.
2061 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
2062
56ddee7f
AD
20632008-11-26 Akim Demaille <demaille@gostai.com>
2064
2065 s/_FLAGS/FLAGS/.
2066 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
2067 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
2068 Reported by Eric Blake.
2069
728e89a0
AD
20702008-11-26 Akim Demaille <demaille@gostai.com>
2071
2072 Use b4_parser_tables_define in glr.cc.
2073 * data/glr.c: Use b4_parser_tables_define instead of defining the
2074 (deterministic integral) tables by hand.
2075
2c1bf9bd
AD
20762008-11-26 Akim Demaille <demaille@gostai.com>
2077
2078 Use b4_parser_tables_define in Java.
2079 * data/java.m4 (b4_typed_parser_table): Rename as...
2080 (b4_typed_parser_table_define): this, for consistency.
2081 Accept a comment as $4.
2082 Move $2 into yy*_.
2083 (b4_integral_parser_table): Rename as...
2084 (b4_integral_parser_table_define): this.
2085 * data/lalr1.java: Adjust all uses.
2086 Use b4_parser_tables_define instead of generation by hand.
2087
ba206cf4
AD
20882008-11-26 Akim Demaille <demaille@gostai.com>
2089
2090 Prepare the convergence bw C style and Java table generation.
2091 * data/bison.m4 (b4_tables_map, b4_tables_declare)
2092 (b4_tables_define): Rename as...
2093 (b4_integral_parser_tables_map, b4_parser_tables_declare)
2094 (b4_parser_tables_define): these.
2095 * data/c.m4 (b4_table_define): Rename as...
2096 (b4_integral_parser_table_define): this.
2097 * data/lalr1.cc: Adjust.
2098 (b4_table_define, b4_table_declare): Rename as...
2099 (b4_integral_parser_table_define)
2100 (b4_integral_parser_table_declare): these.
2101 (yyrline_): Move the comment where it is actually used.
2102 * data/yacc.c: Adjust.
2103 (yyrline): Use b4_integral_parser_table_define.
2104
d12f8e49
AD
21052008-11-26 Akim Demaille <demaille@gostai.com>
2106
2107 Regen.
2108 * src/parse-gram.h, src/parse-gram.c: Regen.
2109
0991e29b
AD
21102008-11-26 Akim Demaille <demaille@gostai.com>
2111
2112 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
2113 * data/lalr1.cc (b4_tables_map): Move to...
2114 * data/bison.m4: here.
2115 Update the comment for yytable during the flight.
2116 (b4_tables_declare, b4_tables_define): New.
2117 * data/lalr1.cc: Use them.
2118 * data/c.m4 (b4_table_define): New.
2119 * data/yacc.c: Use b4_tables_define instead of output the tables
2120 by hand.
2121 * tests/regression.at (Web2c Actions): Adjust the expected output,
2122 the order of the tables changed.
2123
3d3bc1fe
AD
21242008-11-26 Akim Demaille <demaille@gostai.com>
2125
2126 Get rid of (yy)rhs and (yy)prhs.
2127 These tables are no longer needed in the parsers, and they don't seem to
2128 be useful. They are not documented either.
feda5527 2129
3d3bc1fe
AD
2130 * src/output.c (prepare_rules): Get rid of rhs and prhs.
2131 Adjust the computation of (yy)r2.
2132
08c81469
AD
21332008-11-26 Akim Demaille <demaille@gostai.com>
2134
2135 Rule length is unsigned.
2136 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
2137
932b0c96
AD
21382008-11-26 Akim Demaille <demaille@gostai.com>
2139
2140 Get rid of lalr1-split.cc.
2141 It was no longer maintainer.
feda5527 2142
932b0c96
AD
2143 * data/lalr1-split.cc: Remove.
2144 * etc/bench.pl.in (bench_fusion_parser): Remove.
2145 Adjust.
2146
8452c667
AD
21472008-11-26 Akim Demaille <demaille@gostai.com>
2148
2149 Use yy* consistently.
2150 * data/glr.c: Now that yyrhs no longer exists as a global
2151 variable, rename local "rhs" variables into "yyrhs" for
2152 consistency.
2153
783aa653
AD
21542008-11-25 Akim Demaille <demaille@gostai.com>
2155
2156 Get rid of yyrhs and yyprhs in glr.c.
2157 * data/glr.c (yyrhs, yyprhs): Remove.
2158 Instead, use the state stack and yystos.
2159
6130b755
AD
21602008-11-25 Akim Demaille <demaille@gostai.com>
2161
2162 Flag glr tests.
2163 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
2164 as an Autotest keyword.
2165
95a7b1c9
AD
21662008-11-25 Akim Demaille <demaille@gostai.com>
2167
2168 Prefer TESTSUITE_FLAGS.
2169 TESTSUITEFLAGS is barely readable.
feda5527 2170
95a7b1c9
AD
2171 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
2172 for backward compatibility.
2173 Use the former instead of the latter.
2174
b4f18401
AD
21752008-11-25 Akim Demaille <demaille@gostai.com>
2176
2177 Get rid of yyrhs and yyprhs in larl1.java.
2178 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
2179 (yy_reduce_print): Rather, use yystos_ and the state stack.
2180
c265fd6b
AD
21812008-11-25 Akim Demaille <demaille@gostai.com>
2182
2183 Formatting changes.
2184
68dbdee8
AD
21852008-11-25 Akim Demaille <demaille@gostai.com>
2186
2187 Get rid of yyrhs and yyprhs in yacc.c.
30c10faf
AD
2188 They were used to get the symbol types, given a rule number, when
2189 displaying the top of the stack before a reduction. But the
2190 symbol type is available from the state stack. This has two be
2191 benefits: two tables less in the parser (making it smaller), and a
2192 more consistent use of the three stacks which will help to fuse
2193 them.
feda5527 2194
68dbdee8
AD
2195 * data/yacc.c (yyprhs, yyrhs): Remove.
2196 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
2197 (yy_reduce_print): Take yyssp as argument.
2198 Use it, together with yystos, to get the symbol type.
2199 * tests/regression.at (Web2c Report): Remove these tables from the
2200 expected output.
2201
6ab1adbe
AD
22022008-11-25 Akim Demaille <demaille@gostai.com>
2203
2204 b4_tables_map.
2205 The point is to factor the generation of the tables across skeletons.
2206 This is language dependant.
feda5527 2207
6ab1adbe
AD
2208 * data/c.m4 (b4_comment_): New.
2209 Should be usable to define how to generate tables independently of
2210 the language.
2211 (b4_c_comment): New.
2212 (b4_comment): Bounce to b4_c_comment.
2213 Now support $2 = [PREFIX] for indentation.
2214 * data/lalr1.cc (b4_table_declare): Don't output a comment if
2215 there is no comment.
2216 Indent it properly when there is one.
2217 Output the ending semicolon.
2218 (b4_table_define): Space changes.
2219 Output the ending semicolon.
2220 (b4_tables_map): New.
2221 Use it twice instead of declaring and defining the (integral)
2222 tables by hand.
2223
0fddb3d5
AD
22242008-11-25 Akim Demaille <demaille@gostai.com>
2225
2226 b4_table_declare.
2227 * data/lalr1.cc (b4_table_declare): New.
2228 Use it to declare the tables defined with b4_table_define.
2229 (b4_table_define): Declare a third arg to match b4_table_declare
2230 signature.
2231 Move all the comments around invocations of b4_table_define into
2232 the invocations itselves.
2233 Move things around to have the order for declarations and
2234 definitions.
2235
c4ddc0fb
AD
22362008-11-25 Akim Demaille <demaille@gostai.com>
2237
2238 Formatting changes.
2239 * data/lalr1.java: here.
2240
e0c653e7
AD
22412008-11-25 Akim Demaille <demaille@gostai.com>
2242
2243 b4_args is more general than only C++.
2244 * data/lalr1.cc (b4_args, _b4_args): Move to...
2245 * data/bison.m4: here.
2246
4182a0a1
DJ
22472008-11-21 Di-an Jan <dianj@freeshell.org>
2248
2249 Implement no-XXX arguments for --warnings, --report, --trace.
2250 * src/getargs.c (flags_argmatch): Handles no-XXX.
2251 Fix typo in doxygen comment.
2252
01466c3e
AD
22532008-11-21 Akim Demaille <demaille@gostai.com>
2254
2255 Display the changes in cross-options.texi.
2256 * build-aux/cross-options.pl ($sep): New, to separate items.
2257 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
2258 changes.
2259
a7c09cba
DJ
22602008-11-20 Di-an Jan <dianj@freeshell.org>
2261
2262 Improves options in the manual.
2263 * doc/bison.texinfo (-g, -x): Add space before argument.
2264 (Option Cross Key): Implement FIXME: listing directives also.
2265 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2266 (Short Option): Special case -d. Put arguments inside @option.
feda5527 2267 (Bison Directive): Add column, automatically extracted from
a7c09cba
DJ
2268 src/scan-gram.l (actual name passed as the first argument)
2269 with special case for %define.
2270 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
2271 to build-aux/cross-options.pl.
2272 * src/getargs.c (usage): Document limitations of cross-options.pl.
2273 * src/scan-gram.l: Likewise.
2274
6c88b51e
JD
22752008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2276
2277 Fix unexpanded macros in GLR defines file.
2278 Reported by Csaba Raduly at
2279 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
2280 * THANKS (Csaba Raduly): Add.
2281 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
2282 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
2283 lexer in a separate module that includes the defines file.
2284 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
2285 source.
2286 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
2287 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
2288 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
2289 (AT_DATA_SOURCE_PROLOGUE): New.
2290 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
2291 (AT_DATA_SOURCE): New.
2292 (AT_FULL_COMPILE): Extend to support an additional source file.
2293
1e034807
AD
22942008-11-18 Akim Demaille <demaille@gostai.com>
2295
2296 More TODO.
2297 * TODO: More short term issues.
2298
e3dda35c
AD
22992008-11-18 Akim Demaille <demaille@gostai.com>
2300
2301 Regen.
2302 * src/parse-gram.h, src/parse-gram.c: Regen.
2303
bd187d7b
AD
23042008-11-18 Akim Demaille <demaille@gostai.com>
2305
2306 Use b4_subtract where possible.
2307 * data/lalr1.cc (b4_subtract): Move to...
2308 * data/bison.m4: here.
2309 * data/glr.c (b4_rhs_data): Use it.
2310 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
2311
6085ab0d
AD
23122008-11-18 Akim Demaille <demaille@gostai.com>
2313
2314 Remove incorrect mode specification.
2315 * data/glr.cc: Don't pretend it's C code.
2316
9ce405ce
JD
23172008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2318
2319 Simplify last patch slightly.
2320 * src/getargs.c (getargs): Here.
2321
a8beef7e
JD
23222008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2323
2324 Fix last warning from --enable-gcc-warnings.
2325 * src/getargs.c (getargs): Don't assign const address to non-const
2326 pointer.
2327
d50eea6d
JD
23282008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2329
2330 Don't let maintainer-*-check targets force a version update.
2331 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
2332 handled.
2333
f5f419de
DJ
23342008-11-17 Di-an Jan <dianj@freeshell.org>
2335
2336 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
2337 Align menus. Adjust word wrapping. Use node names for menu names.
2338 (Examples): Don't abbreviate node names.
2339 (LocalWords): Remove abbreviations.
2340 (Copying): Make description a sentence.
d50eea6d 2341 (Java Action Features): Remove period to match the rest of menu.
f5f419de 2342
d73e55e0
DJ
23432008-11-17 Di-an Jan <dianj@freeshell.org>
2344
2345 Handles several --enable-gcc-warnings.
2346 * src/getargs.c (command_line_location): Set parameters to void.
2347 * src/output.c (symbol_type_name_cmp): Make static.
2348 (symbols_by_type_name): Set parameters to void.
2349 (symbol_definitions_output): Remove unused parameter. Rename as...
2350 (prepare_symbol_definitions): this.
2351 (muscles_output): Move symbol_definitions_output to...
2352 (output): here as prepare_symbol_definitions.
2353 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
d50eea6d 2354 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
d73e55e0 2355
68c989de
DJ
23562008-11-17 Di-an Jan <dianj@freeshell.org>
2357
2358 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
2359 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
2360
23ce6f4c
AD
23612008-11-16 Akim Demaille <demaille@gostai.com>
2362
2363 Add missing $(EXEEXT).
2364 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
2365 "src/bison$(EXEEXT)".
2366 Reported by Di-an Jan.
2367
dd704c35
AD
23682008-11-15 Akim Demaille <demaille@gostai.com>
2369
2370 * TODO: Update.
2371
dab244d5
AD
23722008-11-15 Akim Demaille <demaille@gostai.com>
2373
2374 Formatting changes.
2375 * tests/input.at: here.
2376
4b4da9fb
AD
23772008-11-15 Akim Demaille <demaille@gostai.com>
2378
2379 Remove duplicate header inclusion.
2380 * src/LR0.c: here.
2381
4ea3f53d
AD
23822008-11-15 Akim Demaille <demaille@gostai.com>
2383
2384 * src/parse-gram.h, src/parse-gram.c: Regen.
2385
cb823b6f
AD
23862008-11-15 Akim Demaille <demaille@gostai.com>
2387
2388 Support parametric types.
b06df3c2
AD
2389
2390 There are two issues to handle: first scanning nested angle
2391 bracket pairs to support types such as std::pair< std::string,
2392 std::list<std::string> > >.
2393
2394 Another issue is to address idiosyncracies of C++: do not glue two
2395 closing angle brackets together (otherwise it's operator>>), and
2396 avoid sticking blindly a TYPE to the opening <, as it can result
2397 in '<:' which is a digraph for '['.
2398
cb823b6f
AD
2399 * src/scan-gram.l (brace_level): Rename as...
2400 (nesting): this.
2401 (SC_TAG): New.
2402 Implement support for complex tags.
b06df3c2 2403 (tag): Accept
cb823b6f
AD
2404 , but not <.
2405 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
2406 (b4_symbol_variant): Leave space around types as parameters.
2407 * examples/variant.yy: Use nested template types and leading ::.
2408 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
2409 Rename as...
2410 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
2411 * tests/c++.at: Test parametric types.
2412
7b6e6753
AD
24132008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2414
2415 Test token.prefix.
2416 This is not sufficient, but we test at least that the make_SYMBOL
2417 interface is not affected by token.prefix. A more general test
2418 will be implemented when the support of token.prefix is generalized
2419 to more skeletons.
b06df3c2 2420
7b6e6753
AD
2421 * tests/c++.at: One more variant test, using token.prefix.
2422
dddec537
AD
24232008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2424
2425 Test the make_TOKEN interface.
2426 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
2427 Factor the common code in yylex.
2428 Use it to test "%define lex_symbol".
2429
7d3e21ba
AD
24302008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2431
2432 Formatting change.
2433
4fc55348
AD
24342008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2435
2436 Simplify code for variants bench marks.
2437 * etc/bench.pl.in (&generate_grammar_list): Define and use
2438 location_type.
2439 Factor the common code in yylex.
2440
070e6509
AD
24412008-11-15 Akim Demaille <demaille@gostai.com>
2442
2443 Better error message.
2444 * bootstrap (find_tool): Fix the error message.
2445
0078681b
AD
24462008-11-15 Akim Demaille <demaille@gostai.com>
2447
2448 Update variant.yy to newest interface.
2449 * examples/variant.yy: Define lex_symbol.
2450 Adjust.
2451
ff084799
AD
24522008-11-15 Akim Demaille <demaille@gostai.com>
2453
2454 Don't use locations in variant.yy.
2455 * examples/variant.yy: Adjust to not using locations.
2456
b0d79ec6
AD
24572008-11-15 Akim Demaille <demaille@gostai.com>
2458
2459 Comment changes.
2460 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
2461 comments for the license.
2462
d4977ce3
AD
24632008-11-15 Akim Demaille <demaille@gostai.com>
2464
2465 Remove tests/Makefile.am.
2466 * tests/Makefile.am: Rename as...
2467 * tests/local.mk: this.
2468 * Makefile.am, configure.ac: Adjust.
2469 * Makefile.am (DISTCLEANFILES): Define.
2470 (maintainer-check, maintainer-xml-check, maintainer-push-check):
2471 Remove, we no longer need to bounce to the real targets.
2472
87f1149a
AD
24732008-11-15 Akim Demaille <demaille@gostai.com>
2474
2475 Comment changes.
2476
36415906
AD
24772008-11-15 Akim Demaille <demaille@gostai.com>
2478
2479 djgpp/local.mk.
2480 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
2481 * djgpp/local.mk: this new file.
2482
e2c2f696
AD
24832008-11-15 Akim Demaille <demaille@gostai.com>
2484
2485 Remove doc/Makefile.am.
2486 * doc/Makefile.am: Rename as...
2487 * doc/local.mk: this.
2488 Adjust paths
2489 * Makefile.am, configure.ac: Adjust.
2490 * Makefile.am (MOSTLYCLEANFILES): New.
2491 * src/local.mk: Adjust.
2492
2ead32e6
AD
24932008-11-15 Akim Demaille <demaille@gostai.com>
2494
2495 Move sc_tight_scope into maint.mk.
b06df3c2
AD
2496 It does not work, and I don't know how it was supposed to work: it
2497 seems to be looking for sources in the build tree. I just moved
2498 it at a better place, fixing it is still required.
2499
2ead32e6
AD
2500 * src/local.mk (echo): Remove.
2501 (sc_tight_scope): Move to...
2502 * maint.mk: here.
2503
2df9ec37
AD
25042008-11-15 Akim Demaille <demaille@gostai.com>
2505
2506 Regen.
2507 * src/parse-gram.h, src/parse-gram.h: Regen.
2508
0305d25e
AD
25092008-11-15 Akim Demaille <demaille@gostai.com>
2510
2511 Remove src/Makefile.am.
2512 * src/Makefile.am: Rename as...
2513 * src/local.mk: this.
2514 Prefix all the paths with src/.
2515 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
2516 (AM_CPPFLAGS): Find find in builddir/src.
2517 (YACC): Move the flags into...
2518 (AM_YFLAGS): here.
2519 * maint.mk (sc_tight_scope): Disable.
2520 It used to bounce to the version in src/Makefile.am which is now
2521 part of this very Makefile.
2522 * Makefile.am, configure.ac: Adjust.
2523 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
2524 include "..." to find files "here": we are no longer in src/, so
2525 qualify the includes with src/.
2526 * doc/Makefile.am (PREPATH): No longer include the top_builddir
2527 prefix.
2528 (.x.1): Adjust to be able to create src/foo from the top level
2529 Makefile, instead of going bounce to src/Makefile the creation of
2530 foo.
2531
5277c0a3
AD
25322008-11-15 Akim Demaille <demaille@gostai.com>
2533
2534 Remove useless variable.
2535 * doc/Makefile.am (srcsrcdir): Remove.
2536
6a5aa0cd
AD
25372008-11-15 Akim Demaille <demaille@gostai.com>
2538
2539 Remove data/Makefile.am.
2540 * data/Makefile.am: Rename as...
2541 * data/local.mk: this.
2542 Adjust paths.
2543 * Makefile.am, configure.ac: Adjust.
2544
7cb794dc
AD
25452008-11-15 Akim Demaille <demaille@gostai.com>
2546
2547 Remove etc/Makefile.am.
2548 * etc/Makefile.am: Rename as...
2549 * etc/local.mk: this.
2550 Adjust.
2551 * Makefile.am, configure.ac: Adjust.
2552
cd409e3b
AD
25532008-11-15 Akim Demaille <demaille@gostai.com>
2554
2555 Remove examples/local.mk.
2556 examples/calc++/Makefile.am might be interesting to keep as is, since
2557 it is an example in itself.
2df9ec37 2558
cd409e3b
AD
2559 * examples/Makefile.am: Rename as...
2560 * examples/local.mk: this.
2561 Adjust.
2562 * Makefile.am, configure.ac: Adjust.
2563
9a1e4214
AD
25642008-11-15 Akim Demaille <demaille@gostai.com>
2565
2566 Remove build-aux/Makefile.am.
2567 Recursive Makefiles are really way too slow, let's get rid of some of
2568 them.
2df9ec37 2569
9a1e4214
AD
2570 * build-aux/Makefile.am: Rename as...
2571 * build-aux/local.mk: this.
2572 Adjust paths.
2573 * Makefile.am, configure.ac: Adjust.
2574
0634493c
AD
25752008-11-15 Akim Demaille <demaille@gostai.com>
2576
2577 Provide convenience constructors for locations and positions.
2578 * data/location.cc (position::position): Accept file, line and
2579 column as arguments with default values.
2580 Always qualify initial line and column literals as unsigned.
2581 (location::location): Provide convenience constructors.
2582
fe1b448a
AD
25832008-11-15 Akim Demaille <demaille@gostai.com>
2584
b06df3c2
AD
2585 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
2586 token type.
fe1b448a
AD
2587 Using template buys us nothing, and makes it uselessly complex to
2588 construct a symbol. Besides, it could not be generalized to other
2589 languages, while make_FOO would work in C/Java etc.
2df9ec37 2590
fe1b448a
AD
2591 * data/lalr1.cc (b4_symbol_): New.
2592 (b4_symbol): Use it.
2593 (b4_symbol_constructor_declaration_)
2594 (b4_symbol_constructor_definition_): Instead of generating
2595 specializations of an overloaded template function, just generate
2596 several functions whose names are forged from the token names
2597 without the token.prefix.
2598 (b4_symbol_constructor_declarations): Generate them for all the
2599 symbols, not just by class of symbol type, now that instead of
2600 specializing a function template by the token, we generate a
2601 function named after the token.
2602 (b4_symbol_constructor_specialization_)
2603 (b4_symbol_constructor_specializations): Remove.
2604 * etc/bench.pl.in: Adjust to this new API.
2605
5679f311
AD
26062008-11-13 Akim Demaille <demaille@gostai.com>
2607
2608 %define token.prefix.
b06df3c2
AD
2609 Provide a means to add a prefix to the name of the tokens as
2610 output in the generated files. Because of name clashes, it is
2611 good to have such a prefix such as TOK_ that protects from names
2612 such as EOF, FILE etc. But it clutters the grammar itself.
2df9ec37 2613
5679f311
AD
2614 * data/bison.m4 (token.prefix): Empty by default.
2615 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
2616 * data/lalr1.cc (b4_symbol): Ditto.
2617
3204049e
AD
26182008-11-13 Akim Demaille <demaille@gostai.com>
2619
2620 Compute at M4 time some of the subtractions.
90290ce5 2621 * data/lalr1.cc (b4_subtract): New.
3204049e
AD
2622 (b4_rhs_data): Use it.
2623
202598d3
AD
26242008-11-13 Akim Demaille <demaille@gostai.com>
2625
2626 symbol::token.
b06df3c2 2627 This allows the user to get the type of a token returned by yylex.
2df9ec37 2628
202598d3
AD
2629 * data/lalr1.cc (symbol::token): New.
2630 (yytoknum_): Define when %define lex_symbol, independently of
2631 %debug.
2632 (yytoken_number_): Move into...
2633 (symbol::token): here, since that's the only use.
2634 The other one is YYPRINT which was not officially supported
2635 by lalr1.cc, and anyway it did not work since YYPRINT uses this
2636 array under a different name (yytoknum).
2637
fc2476c7
AD
26382008-11-13 Akim Demaille <demaille@gostai.com>
2639
2640 YYERRCODE.
2641 * TODO (YYERRCODE): Mention the case of $undef.
2642
865f1e9f
AD
26432008-11-13 Akim Demaille <demaille@gostai.com>
2644
2645 TODO: YYPRINT.
2646 * TODO (YYPRINT): New.
2647
cb0b136a
AD
26482008-11-13 Akim Demaille <demaille@gostai.com>
2649
2650 Comment changes.
2651 * data/lalr1.cc, data/yacc.c: Fix the description of the
2652 yytranslate and yytoknum tables.
2653
2c086d29
AD
26542008-11-13 Akim Demaille <demaille@gostai.com>
2655
2656 Define make_symbol in the header.
b06df3c2
AD
2657 To reach good performances these functions should be inlined (yet
2658 this is to measure precisely). To this end they must be available
2659 to the caller.
2df9ec37 2660
2c086d29
AD
2661 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
2662 location_type with the class name.
2663 Since will now be output in the header, declare "inline".
2664 No longer use b4_symbol_constructor_specializations, but
2665 b4_symbol_constructor_definitions in the header.
2666 Don't call it in the *.cc file.
2667
1c4af381
AD
26682008-11-13 Akim Demaille <demaille@gostai.com>
2669
2670 Define yytranslate in the header for lex_symbol.
2671 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
2672 into the header file when using %define lex_symbol.
2673 (yytranslate_): Declare inline.
2674
e51b0a82
AD
26752008-11-13 Akim Demaille <demaille@gostai.com>
2676
b06df3c2
AD
2677 Define the constructors of symbol_type in
2678 b4_symbol_constructor_definitions.
e51b0a82 2679 The constructors are called by the make_symbol functions, which a
b06df3c2
AD
2680 forthcoming patch will move elsewhere. Hence the interest of
2681 putting them together.
2df9ec37 2682
b06df3c2
AD
2683 The stack_symbol_type does not need to be moved, it is used only
2684 by the parser.
2df9ec37 2685
e51b0a82
AD
2686 * data/lalr1.cc: Move symbol_type and symbol_base_type
2687 constructors into...
2688 (b4_symbol_constructor_definitions): here.
2689 Adjust.
2690
78835571
AD
26912008-11-13 Akim Demaille <demaille@gostai.com>
2692
2693 Make it easier to move the definition of yytranslate_.
2694 Forthcoming changes will make it possible to use yytranslate_
2695 from outside the parser implementation file.
2df9ec37 2696
78835571
AD
2697 * data/lalr1.cc (b4_yytranslate_definition): New.
2698 Use it.
2699
c1e6c88c
AD
27002008-11-13 Akim Demaille <demaille@gostai.com>
2701
2702 Remove useless class specification.
2703 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
2704 to refer to the class name to use a type defined by the class for
2705 arguments of member functions.
2706
4654b0c0
AD
27072008-11-13 Akim Demaille <demaille@gostai.com>
2708
2709 Finer input type for yytranslate.
2710 This patch is debatable: the tradition expects yylex to return an int
2711 which happens to correspond to token_number (which is an enum). This
2712 allows for instance to return characters (such as '*' etc.). But this
2713 goes against the stronger typing I am trying to have with the new
2714 lex interface which return a symbol_type. So in this case, feed
2715 yytranslate_ with a token_type.
2df9ec37 2716
4654b0c0
AD
2717 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
2718 expect a token_type.
2719
dd735e4e
AD
27202008-11-13 Akim Demaille <demaille@gostai.com>
2721
2722 Honor lex-params in %define lex_symbol mode.
2723 * data/lalr1.cc: Use b4_lex_param.
2724
6659366c
AD
27252008-11-13 Akim Demaille <demaille@gostai.com>
2726
2727 Simplify names.
2728 * src/output.c (symbol_definitions_output): Rename symbol
2729 attributes type_name and has_type_name as type and has_type.
2730 * data/lalr1.cc: Adjust uses.
2731
e9805e57
AD
27322008-11-13 Akim Demaille <demaille@gostai.com>
2733
2734 Use b4_type_names for the union type.
b06df3c2
AD
2735 The union used to compute the size of the variant used to iterate
2736 over the type of all the symbols, with a lot of redundancy. Now
2737 iterate over the lists of symbols having the same type-name.
2df9ec37 2738
e9805e57
AD
2739 * data/lalr1.cc (b4_char_sizeof_): New.
2740 (b4_char_sizeof): Use it.
2741 Adjust to be called with a list of numbers instead of a single
2742 number.
2743 Adjust its caller for new-line issues.
2744
aea10ef4
AD
27452008-11-13 Akim Demaille <demaille@gostai.com>
2746
2747 Define the "identifier" of a symbol.
b06df3c2
AD
2748 Symbols may have several string representations, for instance if
2749 they have an alias. What I call its "id" is a string that can be
2750 used as an identifier. May not exist.
2df9ec37 2751
b06df3c2
AD
2752 Currently the symbols which have the "tag_is_id" flag set are
2753 those that don't have an alias. Look harder for the id.
2df9ec37 2754
aea10ef4
AD
2755 * src/output.c (is_identifier): Move to...
2756 * src/symtab.c (is_identifier): here.
2757 * src/symtab.h, src/symtab.c (symbol_id_get): New.
2758 * src/output.c (symbol_definitions_output): Use it to define "id"
2759 and "has_id".
2760 Remove the definition of "tag_is_id".
2761 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
2762 "tag_is_id" were used to produce code.
2763 We still use "tag" for documentation.
2764
2ea7730c
AD
27652008-11-11 Akim Demaille <demaille@gostai.com>
2766
2767 Locations are no longer required by lalr1.cc.
2768 * data/lalr1.cc (_b4_args, b4_args): New.
2769 Adjust all uses of locations to make them optional.
2770 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
2771 (AT_CHECK_NAMESPACE): Check the use of locations.
2772 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
2773 without locations with lalr1.cc.
2774 Test these cases.
2775 * tests/output.at: Check lalr1.cc with and without location
2776 support.
2777 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
2778 Don't use locations.
2779
7ca2266a
AD
27802008-11-11 Akim Demaille <demaille@gostai.com>
2781
2782 AT_FULL_COMPILE.
2783 * tests/local.at (AT_FULL_COMPILE): New.
2784 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
2785
1a7a65f9
AD
27862008-11-11 Akim Demaille <demaille@gostai.com>
2787
2788 Support parens in calc++.
2789 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
2790 * examples/calc++/test (run): Check the expected output.
2791 Adjust callers.
2792 Check parens too.
2793
c944f7f2
AD
27942008-11-11 Akim Demaille <demaille@gostai.com>
2795
2796 Simplify lalr1.cc since %defines is mandatory.
2797 * data/lalr1.cc: Remove useless calls to b4_defines_if.
2798
dada3cd1
AD
27992008-11-11 Akim Demaille <demaille@gostai.com>
2800
2801 TODO: yyfmt.
2802 * TODO (yysyntax_error): New item.
2803
422c18f4
AD
28042008-11-11 Akim Demaille <demaille@gostai.com>
2805
2806 Prefer M4 to CPP.
2807 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
2808 YYERROR_VERBOSE.
2809
a0ffc175
AD
28102008-11-11 Akim Demaille <demaille@gostai.com>
2811
2812 Support i18n of the parse error messages.
2813 * TODO (lalr1.cc/I18n): Remove.
2814 * data/lalr1.cc (yysyntax_error_): Support the translation of the
2815 error messages, as done in yacc.c.
2816 Stay within the yy* pseudo namespace.
2817
00a8a083
AD
28182008-11-11 Akim Demaille <demaille@gostai.com>
2819
2820 More TODO.
2821 * TODO (single stack, yysyntax_error): New.
2822
09277875
AD
28232008-11-11 Akim Demaille <demaille@gostai.com>
2824
2825 Make it possible to return a symbol_type from yylex.
2826 * data/lalr1.cc (b4_lex_symbol_if): New.
2827 (parse): When lex_symbol is defined, expected yylex to return the
2828 complete lookahead.
2829 * etc/bench.pl.in (generate_grammar_list): Extend to support this
2830 yylex interface.
2831 (bench_variant_parser): Exercise it.
2832
64c1b92a
AD
28332008-11-11 Akim Demaille <demaille@gostai.com>
2834
2835 Remove useless bench case.
2836 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
2837 no longer used.
2838
2722aa42
AD
28392008-11-11 Akim Demaille <demaille@gostai.com>
2840
2841 Improve display of directives.
2842 * etc/bench.pl.in (parse_term): Don't add useless eol.
2843
918eb7c5
AD
28442008-11-11 Akim Demaille <demaille@gostai.com>
2845
2846 Use string_cast in the bench.
2847 * etc/bench.pl.in (generate_grammar_list): Define and use
2848 string_cast.
2849
39be9022
AD
28502008-11-11 Akim Demaille <demaille@gostai.com>
2851
2852 Replace yychar with a Boolean.
2853 * data/lalr1.cc (parse::yychar): Replace by...
2854 (parse::yyempty): this.
2855
a2e3fa77
AD
28562008-11-11 Akim Demaille <demaille@gostai.com>
2857
2858 Factor the tables.
2859 * TODO: New item.
2860
aba12ad1
AD
28612008-11-11 Akim Demaille <demaille@gostai.com>
2862
2863 Let yytranslate handle the eof case.
2864 * data/lalr1.cc (yytranslate_): Handle the EOF case.
2865 Adjust callers.
2866 No longer expect yychar to be equal to yyeof_, rather, test the
2867 lookahead's (translated) kind.
2868
27cb5b59
AD
28692008-11-11 Akim Demaille <demaille@gostai.com>
2870
2871 yychar cannot be empty in yyerrlab.
2872 * TODO (yychar == yyempty_): New.
2873 * data/lalr1.cc: Remove the handling of this case.
2874 This eases forthcoming changes related to yychar and yytranslate.
2875
fce629c0
AD
28762008-11-11 Akim Demaille <demaille@gostai.com>
2877
2878 Bench: syntactic sugar for %define/#define.
2879 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
2880 (&bench_push_parser, bench_variant_parser): Use this feature.
2881 (&eat): New.
2882 Use it.
2883
ce671960
AD
28842008-11-11 Akim Demaille <demaille@gostai.com>
2885
2886 Less memory pressure on the "list" bench.
2887 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
2888 the values, to limit memory pressure.
2889
2873fdf8
AD
28902008-11-11 Akim Demaille <demaille@gostai.com>
2891
2892 Introduce make_symbol.
b06df3c2
AD
2893 make_symbol provides a means to construct a full symbol (kind,
2894 value, location) in a single shot. It is meant to be a Symbol
2895 constructor, parameterized by the symbol kind so that overloading
2896 would prevent incorrect kind/value pairs. Unfortunately
2897 parameterized constructors do not work well in C++ (unless the
2898 parameter also appears as an argument, which is not acceptable),
2899 hence the use of a function instead of a constructor.
2df9ec37 2900
2873fdf8
AD
2901 * data/lalr1.cc (b4_symbol_constructor_declaration_)
2902 (b4_symbol_constructor_declarations)
2903 (b4_symbol_constructor_specialization_)
2904 (b4_symbol_constructor_specializations)
2905 (b4_symbol_constructor_definition_)
2906 (b4_symbol_constructor_definitions): New.
2907 Use them where appropriate to generate declaration, declaration of
2908 the specializations, and implementations of the templated
2909 overloaded function "make_symbol".
2910 (variant::variant): Always define a default ctor.
2911 Also provide a copy ctor.
2912 (symbol_base_type, symbol_type): New ctor overloads for value-less
2913 symbols.
2914 (symbol_type): Now public, so that functions such as yylex can use
2915 it.
2916
8be046d7
AD
29172008-11-11 Akim Demaille <demaille@gostai.com>
2918
2919 Inform m4 whether a tag is a valid id.
2920 * src/output.c (is_identifier): New.
2921 (symbol_definitions_output): Use it to define tag_is_id.
2922 But maybe this should be done at m4 level?
2923
de62edee
AD
29242008-11-11 Akim Demaille <demaille@gostai.com>
2925
2926 Test 214 was failing: it greps with a pattern containing [ ]*
2927 which obviously meant to catch spaces and tabs, but contained only
2928 spaces. Tabulations in sources are a nuisance, so to simplify the
2929 matter, get rid of all the tabulations in the Java sources. The
2930 other skeletons will be treated equally later.
2931
2932 * data/java.m4, data/lalr1.java: Untabify.
2933 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
2934 tabulations are no longer generated.
2935
905f0697
PB
29362008-11-11 Paolo Bonzini <bonzini@gnu.org>
2937
2938 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
2939 * configure.ac: Adjust usage.
2940 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2941 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2942 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
2943
09ccae9b
DJ
29442008-11-10 Di-an Jan <dianj@freeshell.org>
2945
2946 Workaround Java's ``code too large'' problem for parser tables
2947 in most cases, by using one function per initialization.
2948 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
2949 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
2950 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
2951 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
2952 (yytname_): Use b4_typed_parser_table.
2953 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
2954 ``code too large'' error.
2955
1979121c
DJ
29562008-11-10 Di-an Jan <dianj@freeshell.org>
2957
2958 * NEWS: Document them.
de62edee 2959
1979121c
DJ
2960 General Java skeleton improvements.
2961 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
2962 using gcj < 4.3 in the testsuite, according to comments in
2963 gnulib/m4/javacomp.m4.
2964 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
2965 location_type, position_type): Remove extraneous brackets from
2966 b4_percent_define_default.
2967 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
2968 m4_define and m4_define_default.
2969 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
2970 which marks the end of user code with appropriate syncline, like all
2971 the other skeletons.
2972 (b4_user_post_prologue): Add. Don't silently drop.
2973 (yylex): Remove.
2974 (parse): Inline yylex.
2975 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
2976 (%{...%}): Fix typo of %code imports.
2977 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
2978
2979 Support annotations on parser class with %define annotations.
2980 * data/lalr1.java (annotations): Add to parser class modifier.
2981 * doc/bison.texinfo (Java Parser Interface): Document
2982 %define annotations.
2983 (Java Declarations Summary): Document %define annotations.
2984 * tests/java.at (Java parser class modifiers): Test annotations.
2985
2986 Do not generate code for %error-verbose unless requested.
2987 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
2988 Make private. Make conditional on %error-verbose.
2989 (getErrorVerbose, setErrorVerbose): New.
2990 (yytnamerr_): Make conditional on %error-verbose.
2991 (yysyntax_error): Make some code conditional on %error-verbose.
2992 * doc/bison.texinfo (Java Bison Interface): Remove the parts
2993 about %error-verbose having no effect.
2994 (getErrorVerbose, setErrorVerbose): Document.
2995
2996 Move constants for token names to Lexer interface.
2997 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
2998 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
2999 (parse): Qualify EOF to Lexer.EOF.
3000 * doc/bison.texinfo (Java Parser Interface): Move documentation of
3001 EOF and token names to Java Lexer Interface.
3002 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
3003
3004 Make yyerror public.
3005 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
3006 (yyerror): Change to public. Add Javadoc comments. Use longer
3007 parameter names. Make the body rather than the declarator
3008 conditional on %locations.
3009 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
3010
3011 Allow user to add code to the constructor with %code init.
3012 * data/java.m4 (b4_init_throws): New, for %define init_throws.
3013 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
3014 Add %code init to the front of the constructor body.
3015 * doc/bison.texinfo (YYParser.YYParser): Document %code init
3016 and %define init_throws.
3017 (Java Declarations Summary): Document %code init and
3018 %define init_throws.
3019 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
3020 (Java constructor init and init_throws): Add tests.
de62edee 3021
42f832d6
AD
30222008-11-10 Akim Demaille <demaille@gostai.com>
3023
3024 Update TODO.
3025 * TODO (-D): is implemented.
3026 (associativity): Same precedence must have the same associativity.
3027 For instance, how can a * b / c be parsed if * is %left and / is
3028 %right?
3029 (YYERRORCODE, YYFAIL, YYBACKUP): New.
3030
247efe34
AD
30312008-11-10 Akim Demaille <demaille@gostai.com>
3032
3033 Formatting changes.
3034
5d731440
AD
30352008-11-10 Akim Demaille <demaille@gostai.com>
3036
3037 More information about the symbols.
3038 * src/output.c (type_names_output): Document all the symbols,
3039 including those that don't have a type-name.
3040 (symbol_definitions_output): Define "is_token" and
3041 "has_type_name".
3042 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
3043 type-name, now that they are defined too in b4_type_names.
3044
21db118b
AD
30452008-11-10 Akim Demaille <demaille@gostai.com>
3046
3047 Regen.
3048
6ed15cde
AD
30492008-11-10 Akim Demaille <demaille@gostai.com>
3050
3051 Make parser::yytranslate static.
b06df3c2
AD
3052 Small speedup (1%) on the list grammar. And makes yytranslate_
3053 available in non member functions.
de62edee 3054
6ed15cde
AD
3055 * data/lalr1.cc (yytranslate_): Does not need to be a instance
3056 function.
3057
30bb2edc
AD
30582008-11-10 Akim Demaille <demaille@gostai.com>
3059
3060 Avoid trailing spaces.
3061 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
3062 * data/lalr1.cc: Don't indent before rule and symbol actions, as
3063 they can be empty, and anyway this incorrectly indents the first
3064 action.
3065
b3a28fd4
AD
30662008-11-10 Akim Demaille <demaille@gostai.com>
3067
3068 Comment changes.
3069
914202bd
AD
30702008-11-10 Akim Demaille <demaille@gostai.com>
3071
3072 Use "enum" for integral constants.
3073 This is just nicer to read, I observed no speedup.
de62edee 3074
914202bd
AD
3075 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
3076 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
3077 (yyuser_token_number_max_, yyundef_token_): Move into...
3078 (yytranslate_): here.
3079
c17f9a4a
AD
30802008-11-10 Akim Demaille <demaille@gostai.com>
3081
3082 Shortcuts in bench directives.
3083 * etc/bench.pl.in (parse_dirs): New.
3084 Use it.
3085 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
3086 Create the benches in "benches/".
3087
b9855ea5
AD
30882008-11-10 Akim Demaille <demaille@gostai.com>
3089
3090 Formatting changes.
3091 * data/lalr1.cc: here.
3092
6e097787
AD
30932008-11-10 Akim Demaille <demaille@gostai.com>
3094
3095 Adjust verbose message to using emacs.
3096 * etc/bench.pl.in: Inform compilation-mode when we change the
3097 directory.
3098 (generate_grammar_list): Recognize %define "variant" in addition
3099 to %define variant.
3100
4c3cc7da
AD
31012008-11-10 Akim Demaille <demaille@gostai.com>
3102
3103 Classify symbols by type-name.
3104 * src/uniqstr.h (UNIQSTR_CMP): New.
3105 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
3106 (type_names_output): New.
3107 (muscles_output): Use it.
3108 * data/lalr1.cc (b4_symbol_action_): Remove.
3109 (b4_symbol_case_, b4_type_action_): New.
3110 Adjust uses of b4_symbol_action_ to use b4_type_action_.
3111
d69c9694
AD
31122008-11-10 Akim Demaille <demaille@gostai.com>
3113
3114 Change the handling of the symbols in the skeletons.
3115 Before we were using tables which lines were the symbols and which
3116 columns were things like number, tag, type-name etc. It is was
3117 difficult to extend: each time a column was added, all the numbers had
3118 to be updated (you asked for colon $2, not for "tag"). Also, it was
3119 hard to filter these tables when only a subset of the symbols (say the
3120 tokens, or the nterms, or the tokens that have and external number
3121 *and* a type-name) was of interest.
de62edee 3122
d69c9694
AD
3123 Now instead of monolithic tables, we define one macro per cell. For
3124 instance "b4_symbol(0, tag)" is a macro name which contents is
3125 self-decriptive. The macro "b4_symbol" provides easier access to
3126 these cells.
de62edee 3127
d69c9694
AD
3128 * src/output.c (type_names_output): Remove.
3129 (symbol_numbers_output, symbol_definitions_output): New.
3130 (muscles_output): Call them.
3131 (prepare_symbols): Define b4_symbols_number.
3132
5263bea9
AD
31332008-11-10 Akim Demaille <demaille@gostai.com>
3134
3135 --trace=muscles
3136 * src/getargs.h, src/getargs.c (trace_muscle): New.
3137 (trace_types, trace_args): Support it.
3138 * src/output.c (output_skeleton): Use it.
3139
4175f6bb
AD
31402008-11-10 Akim Demaille <demaille@gostai.com>
3141
3142 muscles_output.
3143 * src/output.c (muscles_output): New, extracted from...
3144 (output_skeleton): here.
3145 Adjust.
3146
1de69d6a
AD
31472008-11-10 Akim Demaille <demaille@gostai.com>
3148
3149 Formatting changes.
3150
36db78a7
AD
31512008-11-10 Akim Demaille <demaille@gostai.com>
3152
3153 Update the variant example.
3154 * examples/variant.yy: Formatting changes.
3155 One stage build.
3156
e5eb92e7
AD
31572008-11-10 Akim Demaille <demaille@gostai.com>
3158
3159 Support constructor with an argument.
3160 This improves the "list" bench by 2%.
de62edee 3161
e5eb92e7
AD
3162 * data/lalr1.cc (variant::build): Add an overloaded version with
3163 an argument.
3164 * tests/c++.at (AT_CHECK_VARIANT): Check it.
3165
76307410
AD
31662008-11-10 Akim Demaille <demaille@gostai.com>
3167
3168 Test variants.
3169 * tests/c++.at (AT_CHECK_VARIANTS): New.
3170 Use it with and without %define assert.
3171
d78f0ac9
AD
31722008-11-10 Akim Demaille <demaille@gostai.com>
3173
3174 Add %precedence support.
3175 Unfortunately it is not possible to reuse the %prec directive. This
3176 is because to please POSIX, we do not require to end the rules with a
3177 semicolon. As a result,
de62edee 3178
d78f0ac9 3179 foo: bar %prec baz
de62edee 3180
d78f0ac9
AD
3181 is ambiguous: either a rule which precedence is that of baz, or a rule,
3182 and then a declaration of the precedence of the token baz.
de62edee 3183
d78f0ac9
AD
3184 * doc/bison.texinfo: Document %precedence.
3185 (Precedence Only): New.
3186 * src/assoc.h, src/assoc.c (precedence_assoc): New.
3187 * src/conflicts.c (resolve_sr_conflict): Support it.
3188 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
3189 Parse it.
3190 * tests/calc.at: Use %precedence for NEG.
3191 * tests/conflicts.at (%precedence does not suffice)
3192 (%precedence suffices): New tests.
3193
c85be41a
AD
31942008-11-09 Akim Demaille <demaille@gostai.com>
3195
3196 Make benches in a sub dirs.
3197 * etc/bench.pl.in ($dir): New.
3198 Use it.
3199 Check the use of constructors with an argument.
3200 (bench_variant_parser): Fix.
3201
db65ca1f
AD
32022008-11-09 Akim Demaille <demaille@gostai.com>
3203
3204 fix eof condition
3205
9b0efa5b
AD
32062008-11-09 Akim Demaille <demaille@gostai.com>
3207
3208 Fix --help.
3209
432ac57a
AD
32102008-11-09 Akim Demaille <demaille@gostai.com>
3211
3212 Require the generation of parse-gram.output.
3213 * src/Makefile.am (YACC): Pass --report=all.
3214
deef2a0a
AD
32152008-11-09 Akim Demaille <demaille@gostai.com>
3216
3217 Formatting changes.
3218
df72984a
AD
32192008-11-09 Akim Demaille <demaille@gostai.com>
3220
3221 Update TODO.
3222 * TODO: Remove obsolete items.
3223 Update others.
3224
f10e19fd
AD
32252008-11-09 Akim Demaille <demaille@gostai.com>
3226
3227 Enhance bench.pl.
3228 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
3229 (@token, $grammar, $bench): New.
3230 (generate_grammar_variant): Rename as...
3231 (generate_grammar_list): this.
3232 (generate_grammar): Adjust.
3233 (bench_grammar): Rename as...
3234 (bench): this.
3235 Use it in the various bench-marking routines.
3236 (-b, -g): New options.
3237
5de9c593
AD
32382008-11-09 Akim Demaille <demaille@gostai.com>
3239
3240 Use a static hierarchy for symbols in the C++ parser.
3241 * data/lalr1.cc (symbol_base_type, symbol_type)
3242 (stack_symbol_type): Make it a static hierarchy.
3243 Adjust dependencies.
3244
757f8f98
AD
32452008-11-09 Akim Demaille <demaille@gostai.com>
3246
3247 bench.pl -d, --directive.
3248 * etc/bench.pl.in (@directive): New.
3249 (&bench_grammar): Use it.
3250 (&bench_list_grammar): New, to provide access to the "variant"
3251 grammar.
3252 Use it.
3253 (getopts): Support -d, --directive.
3254
d3be4f6d
AD
32552008-11-09 Akim Demaille <demaille@gostai.com>
3256
3257 Use inline for small operations.
3258 * data/lalr1.cc (symbol_base_type, symbol_type)
3259 (stack_symbol_type): Declare constructor and other operations as
3260 inline.
3261 (yy_destroy_): Inline.
3262
1f7d007b
AD
32632008-11-09 Akim Demaille <demaille@gostai.com>
3264
3265 Introduce a hierarchy for symbols.
3266 * data/lalr1.cc (symbol_base_type, symbol_type): New.
3267 (data_type): Rename as...
3268 (stack_symbol_type): this.
3269 Derive from symbol_base_type.
3270 (yy_symbol_value_print_): Merge into...
3271 (yy_symbol_print_): this.
3272 Rename as...
3273 (yy_print_): this.
3274 (yydestruct_): Rename as...
3275 (yy_destroy_): this.
3276 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
3277 (parser::parse): yyla is now of symbol_type.
3278 Use its type member instead of yytoken.
3279
bc0b0477
AD
32802008-11-09 Akim Demaille <demaille@gostai.com>
3281
3282 Rename data_type and stack_symbol_type.
3283 * data/lalr1.cc (data_type): Rename as...
3284 (stack_symbol_type): this.
3285
57295d14
AD
32862008-11-09 Akim Demaille <demaille@gostai.com>
3287
3288 Handle semantic value and location together.
3289 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
3290 yydata.value and yydata.location.
3291 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
3292 (YY_SYMBOL_PRINT): Now take semantic value and location as a
3293 single arg.
3294 Adjust all callers.
3295 (yydestruct_): New overload for a stack symbol.
3296
e9b0834e
AD
32972008-11-09 Akim Demaille <demaille@gostai.com>
3298
3299 Push a complete symbol, not connected parts.
3300 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
3301 state, value and location.
3302 Adjust callers.
3303
6082531a
AD
33042008-11-09 Akim Demaille <demaille@gostai.com>
3305
3306 Agregate yylval and yylloc.
3307 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
3308 (parser::yyla): this.
3309
33c195cc
AD
33102008-11-09 Akim Demaille <demaille@gostai.com>
3311
3312 Rely on the state stack to display reduction traces.
b06df3c2
AD
3313 To display rhs symbols before a reduction, we used information
3314 about the rule reduced, which required the tables yyrhs and
3315 yyprhs. Now use rely only on the state stack to get the same
3316 information.
de62edee 3317
33c195cc
AD
3318 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
3319 Use them.
3320 (parser::yyrhs_, parser::yyprhs_): Remove.
3321 (parser::yy_reduce_print_): Use the state stack.
3322
e1f93869
AD
33232008-11-09 Akim Demaille <demaille@gostai.com>
3324
3325 Fuse yyval and yyloc into yylhs.
3326 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
3327 yylhs.
3328 (parse): Replace yyval and yyloc with yylhs.value and
3329 yylhs.location.
3330 After a user action, compute yylhs.state earlier.
3331 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
3332 fresh error_token.
3333
2935744b
DJ
33342008-11-09 Di-an Jan <dianj@freeshell.org>
3335
3336 Remove unused variable.
3337 * src/output.c (type_names_output): Remove unused variable sep.
3338
bbf9ca37
PB
33392008-11-09 Paolo Bonzini <bonzini@gnu.org>
3340
3341 Change tests/output.at quoting.
3342 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
3343 expanding arguments.
3344
d9a9b96b
JD
33452008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3346
3347 Don't add a semicolon to actions for %skeleton or %language.
3348 It breaks Java test cases as reported by Akim Demaille.
3349 * src/scan-code.l: Implement.
3350
51365192
JD
33512008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3352
3353 Clean up %skeleton and %language priority implementation.
3354 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
3355 remove static qualifier because others will soon need to see it.
3356 (language_prio): Likewise.
3357 (getargs): Use command_line_prio rather than 0.
3358 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
3359 enum fields.
3360 (skeleton_prio): Extern it.
3361 (language_prio): Extern it.
3362 * src/parse-gram.y: Use grammar_prio rather than 1.
3363
9380cfd0
AD
33642008-11-07 Akim Demaille <demaille@gostai.com>
3365
3366 Moving push traces into yypush_.
3367 * data/lalr1.cc (yypush_): Now takes a optional trace message.
3368 Adjust all uses.
3369
8901f32e
AD
33702008-11-07 Akim Demaille <demaille@gostai.com>
3371
3372 The single-stack C++ parser is now the standard one.
3373 * data/lalr1.cc: Rename as...
3374 * data/lalr1-split.cc: this.
3375 * data/lalr1-fusion.cc: Rename as...
3376 * data/lalr1.cc: this.
3377 * etc/bench.pl.in: Adjust.
3378
8cdabf02
AD
33792008-11-07 Akim Demaille <demaille@gostai.com>
3380
3381 Avoid empty-if warnings.
3382 Reported by Quentin Hocquet.
de62edee 3383
8cdabf02
AD
3384 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
3385 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
3386
5a893c2b
AD
33872008-11-07 Akim Demaille <demaille@gostai.com>
3388
3389 Pass command line location to skeleton_arg and language_argmatch.
3390 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
3391 The location argument is now mandatory.
3392 Adjust all dependencies.
3393 (getargs): Use command_line_location.
3394
58697c6d
AD
33952008-11-07 Akim Demaille <demaille@gostai.com>
3396
3397 -D, --define.
3398 * src/getargs.c (usage): Document -D.
3399 Fix help string for --locations.
3400 (command_line_location): New.
3401 (short_options, long_options, getargs): Support -D, --define.
3402 (getargs): Move -d support at the right place.
3403 * doc/bison.texinfo (Bison Options): Update.
3404 * tests/input.at (%define, --define): New.
3405
9fe5a457
AD
34062008-11-07 Akim Demaille <demaille@gostai.com>
3407
3408 Initialize the muscle table before parsing the command line.
3409 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
3410 (getargs): Define file_name.
3411 * src/main.c (main): Initialize muscle_tab before calling
3412 getargs.
3413 * src/muscle_tab.c (muscle_init): No longer define file_name, as
3414 its value is not available yet.
3415
56c5eca9
AD
34162008-11-07 Akim Demaille <demaille@gostai.com>
3417
3418 Locations without columns for command line arguments.
3419 * src/location.c (location_print): Don't display negative columns.
3420 * src/location.h: Document this.
3421
9b9e0a7d
AD
34222008-11-07 Akim Demaille <demaille@gostai.com>
3423
3424 Fix --help.
3425 * src/getargs.c (usage): Fix help string for -W.
3426
74eae918
AD
34272008-11-07 Akim Demaille <demaille@gostai.com>
3428
3429 Handle more general types of option arguments.
3430 * build-aux/cross-options.pl: The argument ends at the first
3431 space, not the first non-symbol character.
3432 Use @var for each word appearing the argument description.
3433
a3d4c6fb
AD
34342008-11-07 Akim Demaille <demaille@gostai.com>
3435
3436 Destroy the variants that remain on the stack in case of error.
3437 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
3438 destructor.
3439 Display the value only if yymsg is nonnull.
3440 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
3441
2d32fc9f
AD
34422008-11-07 Akim Demaille <demaille@gostai.com>
3443
3444 Add "%define assert" to variants.
3445 This is used to help the user catch cases where some value gets
3446 ovewritten by a new one. This should not happen, as this will
3447 probably leak.
de62edee 3448
2d32fc9f
AD
3449 Unfortunately this uncovered a bug in the C++ parser itself: the
3450 lookahead value was not destroyed between two calls to yylex. For
3451 instance if the previous lookahead was a std::string, and then an int,
3452 then the value of the std::string was correctly taken (i.e., the
3453 lookahead was now an empty string), but std::string structure itself
3454 was not reclaimed.
de62edee 3455
2d32fc9f
AD
3456 This is now done in variant::build(other&) (which is used to take the
3457 value of the lookahead): other is not only stolen from its value, it
3458 is also destroyed. This incurs a new performance penalty of a few
3459 percent, and union becomes faster again.
de62edee 3460
2d32fc9f
AD
3461 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
3462 (b4_variant_if): New.
3463 (variant::built): New.
3464 Use it whereever the status of the variant changes.
3465 * etc/bench.pl.in: Check the penalty of %define assert.
3466
f6038cb8
AD
34672008-11-07 Akim Demaille <demaille@gostai.com>
3468
3469 Use "%define variant" in bench.pl.
3470 * etc/bench.pl.in: No longer use the pseudo directive %variants,
3471 just use %define variants.
3472
ccde1f98
AD
34732008-11-07 Akim Demaille <demaille@gostai.com>
3474
3475 Regen.
3476 * src/parse-gram.h, src/parse-gram.c: Regen.
3477
58bd33b7
JD
34782008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
3479
3480 Fix user actions without a trailing semicolon.
3481 Reported by Sergei Steshenko at
3482 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
3483 * THANKS (Sergei Steshenko): Add.
3484 * src/scan-code.l (SC_RULE_ACTION): Fix it.
3485 * tests/regression.at (Fix user actions without a trailing semicolon):
3486 New test case.
3487
639867b5
AD
34882008-11-04 Akim Demaille <demaille@gostai.com>
3489
3490 Use b4_copyright_years.
3491 * data/yacc.c (b4_copyright_years): New.
3492 Fix its value according to the comments in the file.
3493 Use it and undefine it.
3494
3c262606
AD
34952008-11-04 Akim Demaille <demaille@gostai.com>
3496
3497 Formatting changes.
3498 * data/lalr1-fusion.cc, src/parse-gram.y: here.
3499
a2b93d52
AD
35002008-11-04 Akim Demaille <demaille@gostai.com>
3501
3502 Formatting changes.
3503 * data/lalr1-fusion.cc: here.
3504
3a2803df
AD
35052008-11-04 Akim Demaille <demaille@gostai.com>
3506
3507 Use strict on bench.pl.
3508 * etc/bench.pl.in (&run, &generate_grammar): New.
3509 Rename the grammar generating functions for consistency.
3510 Change the interface so that the list of benches to run is passed
3511 as (optionless) arguments.
3512 (&compile): Use &run.
3513
a0d4650a
AD
35142008-11-04 Akim Demaille <demaille@gostai.com>
3515
3516 Remove spurious initial empty lines.
3517 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
3518 * data/yacc.c: End the @output lines with an @.
3519
cac9e09b
AD
35202008-11-04 Akim Demaille <demaille@gostai.com>
3521
3522 Improve the display of sizes.
3523 * etc/bench.p.in: Higher precision.
3524 Sort by decreasing size.
3525
4af4348a
AD
35262008-11-04 Akim Demaille <demaille@gostai.com>
3527
3528 Don't memcpy C++ structures.
3529 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
3530 arguments.
3531 (variant::build): New overload for
3532 copy-construction-that-destroys.
3533 (variant::swap): New.
3534 (parser::yypush_): Use it in variant mode.
3535
ef05c4d6
AD
35362008-11-04 Akim Demaille <demaille@gostai.com>
3537
3538 Better defaults for bench.pl.
3539 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
3540 default values.
3541 Adjust &verbose uses.
3542 (-q, --quiet): New.
3543
9718cfa9
AD
35442008-11-04 Akim Demaille <demaille@gostai.com>
3545
3546 Make variant.yy more complex.
3547 std::list cannot be copied via memcpy, they are more demanding than
3548 std::string. Use one std::list to strengthen the test.
de62edee 3549
9718cfa9
AD
3550 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
3551 Adjust.
3552 Create a list of strings, instead of a single large string.
3553
a6df593d
AD
35542008-11-04 Akim Demaille <demaille@gostai.com>
3555
3556 bench.pl --bench.
3557 * etc/bench.pl.in (--bench, $bench): New.
3558
006a0303
AD
35592008-11-04 Akim Demaille <demaille@gostai.com>
3560
3561 Sort methods.
3562 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
3563 Define it after as().
3564
faef3466
AD
35652008-11-04 Akim Demaille <demaille@gostai.com>
3566
3567 Useless parens.
3568 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
3569
2141aded
AD
35702008-11-04 Akim Demaille <demaille@gostai.com>
3571
3572 Issue missing synclines after user actions.
3573 * data/c.m4 (b4_case): Issue synclines on the output file.
3574
e426d17b
AD
35752008-11-04 Akim Demaille <demaille@gostai.com>
3576
3577 Remove trailing empty line.
3578 * data/lalr1-fusion.cc: Don't add an empty line after the user's
3579 epilogue.
3580
a9ce3f54
AD
35812008-11-04 Akim Demaille <demaille@gostai.com>
3582
3583 Fix output of copyright years.
3584 * data/bison.m4 (b4_copyright): Fix the indentation of the
3585 copyright year paragraph.
3586 Use b4_copyright_years when no years are given.
3587 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
3588 (b4_copyright_years): New.
3589 Use it.
3590
59c544c2
AD
35912008-11-04 Akim Demaille <demaille@gostai.com>
3592
3593 Avoid the spurious initial empty line.
3594 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
3595 the end of @output request to suppress the empty line that
3596 results.
3597
96b15448
AD
35982008-11-04 Akim Demaille <demaille@gostai.com>
3599
3600 Remove parser::rhs_number_type.
3601 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
3602 (yyrhs_): Use b4_table_define.
3603
f0633174
AD
36042008-11-04 Akim Demaille <demaille@gostai.com>
3605
3606 Fix iteration type.
3607 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
3608
417b8004
AD
36092008-11-04 Akim Demaille <demaille@gostai.com>
3610
3611 Factor the declaration of the integer tables.
3612 * data/lalr1-fusion.cc (b4_table_define): New.
3613 Use it.
3614
1a5246c6
AD
36152008-11-03 Akim Demaille <demaille@gostai.com>
3616
3617 Fix indentation of tables in lalr1.cc
3618 * data/lalr1-fusion.cc: Fix the indentation.
3619
f8a95c9c
AD
36202008-11-03 Akim Demaille <demaille@gostai.com>
3621
3622 Destroy the lhs symbols after reduction.
3623 * data/lalr1-fusion.cc (parse): After the user action, when in
3624 variant mode, destroy the lhs symbols.
3625
d7f4d823
AD
36262008-11-03 Akim Demaille <demaille@gostai.com>
3627
3628 Simplify yysyntax_error_ use.
3629 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
3630 type, but make it unnamed in the declaration when it is not used.
3631
8b9c89fb
AD
36322008-11-03 Akim Demaille <demaille@gostai.com>
3633
3634 Let yy::variant::build return an lvalue.
3635 * data/lalr1-fusion.cc (variant::build): Return a reference to the
3636 object.
3637
83243c24
AD
36382008-11-03 Akim Demaille <demaille@gostai.com>
3639
3640 Define yy::variant only when needed.
3641 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
3642 used.
3643
429b4848
AD
36442008-11-03 Akim Demaille <demaille@gostai.com>
3645
3646 Bench the three-stack lalr1.cc.
3647 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
3648 one-stack one.
3649
414c76a4
AD
36502008-11-03 Akim Demaille <demaille@gostai.com>
3651
3652 Fail on parse error in calc++.
3653 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
3654 status.
3655 * examples/calc++/test ($me, $number, $exit, run): New.
3656 Use them to propagate errors to the exit status.
3657
8a5783fd
AD
36582008-11-03 Akim Demaille <demaille@gostai.com>
3659
3660 Don't specify the skeleton twice in the example.
3661 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
3662 file does what is needed.
3663
0cc5bead
AD
36642008-11-03 Akim Demaille <demaille@gostai.com>
3665
3666 bench: Improve output.
3667 * etc/bench.pl.in (bench_grammar): Tune the printf format.
3668
5b421a4e
AD
36692008-11-03 Akim Demaille <demaille@gostai.com>
3670
3671 bench: check impact of %debug on variants.
3672 * etc/bench.pl.in (variant_grammar): Fix the computation of
3673 $variant.
3674 Generate a grammar file that can work with or without %debug.
3675 Do use the @directive.
3676 (bench_variant_parser): Check impact of %debug.
3677 (@directives): Rename all the occurrences to...
3678 (@directive): this, for consistency.
3679
d11ee647
AD
36802008-11-03 Akim Demaille <demaille@gostai.com>
3681
3682 bench: report the size too.
3683 * etc/bench.pl.in ($iterations): Defaults to -3.
3684 (&bench_grammar): Require hireswallclock.
3685 Compute and display the size of the result.
3686 More comments.
3687
e1b74b92
AD
36882008-11-03 Akim Demaille <demaille@gostai.com>
3689
3690 bench: More use of the verbosity level.
3691 * etc/bench.pl.in ($verbose, &verbose): New.
3692 Use them.
3693 More POD documentation.
3694
7e5f9c54
AD
36952008-11-03 Akim Demaille <demaille@gostai.com>
3696
3697 bench.pl: a command line interface
3698 * etc/bench.pl.in: More doc.
3699 Some fixes in the documentation.
3700 ($cflags, $iterations, &help, &getopt): New.
3701 Use them.
3702 (&variant_grammar): Let the number of stages be 10 times what is
3703 specified.
3704
7109a18d
AD
37052008-11-03 Akim Demaille <demaille@gostai.com>
3706
3707 Bench the use of Boost.Variants.
3708 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
3709 New.
3710 (&compile): Be ready to compile C++ parsers.
3711 (&bench_push_parser): Move debug information to the outermost
3712 level.
3713 * THANKS: Add Michiel De Wilde.
3714
922730fe
AD
37152008-11-03 Akim Demaille <demaille@gostai.com>
3716
3717 bench.pl: Pass directives as a list instead of as a string.
3718 * etc/bench.pl.in (&directives): New.
3719 (&triangular_grammar, &calc_grammar): Use it to format the Bison
3720 directives.
3721 (&triangular_grammar): Do use the directives (were ignored).
3722 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
3723 directives.
3724
7484f1d4
AD
37252008-11-03 Akim Demaille <demaille@gostai.com>
3726
3727 Improve genericity of bench.pl.
3728 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
3729 argument.
3730 (&bench_push_parser): New.
3731 Call it.
3732
15129f25
AD
37332008-11-03 Akim Demaille <demaille@gostai.com>
3734
3735 Add documentation to bench.pl.
3736 * etc/bench.pl.in: Comment changes.
3737
0e0ed236
AD
37382008-11-03 Akim Demaille <demaille@gostai.com>
3739
3740 Fuse the three stacks into a single one.
de62edee 3741
b06df3c2
AD
3742 In order to make it easy to perform benchmarks to ensure that
3743 there are no performance loss, lalr1.cc is forked into
3744 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
3745 lalr1.cc.
3746
3747 Meanwhile, to make sure that lalr1-fusion.cc is correctly
3748 exercized by the test suite, the user must install a symbolic link
3749 from lalr1.cc to it.
de62edee 3750
b06df3c2
AD
3751 Instead of having three stacks (state, value, location), use a
3752 stack of triples. This considerably simplifies the code (and it
3753 will be easier not to require locations as currently does the C++
3754 parser), and also gives a 10% speedup according to
3755 etc/bench (probably mainly since memory allocation is done once
3756 instead of three times).
de62edee 3757
0e0ed236
AD
3758 Another motivation is to make it easier to destruct properly
3759 semantic values: now that they are bound to their state (hence
3760 symbol type) it will be easier to call the appropriate destructor.
de62edee 3761
0e0ed236 3762 These changes should probably benefit the C parser too.
de62edee 3763
b06df3c2
AD
3764 * data/lalr1.cc: Copy as...
3765 * data/lalr1-fusion.cc: this new file.
0e0ed236
AD
3766 (b4_rhs_value, b4_rhs_location): New definitions overriding those
3767 from c++.m4.
3768 (state_stack_type, semantic_stack_type, location_stack_type)
3769 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
3770 (data_type, stack_type, yystack_): New.
3771 (YYLLOC_DEFAULT, yypush_): Adjust.
3772 (yyerror_range): Now based on data_type, not location_type.
3773
7dedf26e
AD
37742008-11-03 Akim Demaille <demaille@gostai.com>
3775
3776 Push the state, value, and location at the same time.
3777 This is needed to prepare a forthcoming patch that fuses the three
3778 stacks into one.
de62edee 3779
7dedf26e
AD
3780 * data/lalr1.cc (parser::yypush_): New.
3781 (parser::yynewstate): Change the semantics: instead of arriving to
3782 this label when value and location have been pushed, but yystate
3783 is to be pushed on the state stack, now the three of them must
3784 have been pushed before. yystate still must be the new state.
3785 This allows to use yypush_ everywhere instead of individual
3786 handling of the stacks.
3787
c4585f1e
AD
37882008-11-03 Akim Demaille <demaille@gostai.com>
3789
3790 Prefer references to pointers.
3791 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
3792 definition to use references instead of pointers.
3793 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
3794 Take the value and location as references.
3795 Adjust callers.
3796
56017c17
AD
37972008-11-03 Akim Demaille <demaille@gostai.com>
3798
3799 stack::size instead of stack::height.
3800 * data/lalr1.cc (stack::height): Rename as...
3801 (stack::size): this.
3802 Fix the output type.
3803 Comment changes.
3804
5ab8c47b
AD
38052008-11-03 Akim Demaille <demaille@gostai.com>
3806
3807 Use variants to support objects as semantic values.
b06df3c2
AD
3808 This patch was inspired by work by Michiel De Wilde. But he used
3809 Boost variants which (i) requires Boost on the user side, (ii) is
3810 slow, and (iii) has useless overhead (the parser knows the type of
3811 the semantic value there is no reason to duplicate this
3812 information as Boost.Variants do).
3813
3814 This implementation reserves a buffer large enough to store the
3815 largest objects. yy::variant implements this buffer. It was
3816 implemented with Quentin Hocquet.
de62edee 3817
5ab8c47b
AD
3818 * src/output.c (type_names_output): New.
3819 (output_skeleton): Invoke it.
3820 * data/c++.m4 (b4_variant_if): New.
3821 (b4_symbol_value): If needed, provide a definition for variants.
3822 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
3823 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
3824 (b4_char_sizeof, yy::variant): New.
3825 (parser::parse): If variants are requested, define
3826 parser::union_type, parser::variant, change the definition of
3827 semantic_type, construct $$ before running the user action instead
3828 of performing a default $$ = $1.
3829 * examples/variant.yy: New.
3830 Based on an example by Michiel De Wilde.
3831
1fa5d8bb
AD
38322008-11-03 Akim Demaille <demaille@gostai.com>
3833
3834 Parameterize the extraction of semantic values.
3835 To make future changes easier, no longer rely on ".TYPE" being the
3836 way to get a semantic value.
de62edee 3837
1fa5d8bb
AD
3838 * data/c.m4 (b4_symbol_value): New.
3839 Use it.
3840 * data/c++.m4, data/yacc.c: Use it.
3841 * data/glr.c: Use b4_symbol_value.
3842 (b4_rhs_data): New.
3843 Use it.
3844
91ba8a55
AD
38452008-11-03 Akim Demaille <demaille@gostai.com>
3846
3847 Prepare easier M4 changes.
3848 * data/lalr1.cc: Use escaped [] instead of literals to prepare
3849 future changes.
3850
c9ba9e59
JD
38512008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3852
3853 Initiate further development.
3854 * NEWS: Create an empty section for new entries.
3855 * gnulib: Update submodule to HEAD.
3856
bfb40910
JD
38572008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3858
3859 * NEWS: Version 2.4.
3860
241fda7a
JD
38612008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3862
3863 Prepare for next release.
3864 * NEWS: Briefly mention changes since 2.3b.
3865 * README: Say GNU m4 1.4.6, which we've been requiring in release
3866 announcements already, not 1.4.3, which breaks the build.
3867
ed4d67dc
JD
38682008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3869
3870 Say %language is experimental.
3871 We're thinking of extending it's effect on output file naming. See the
3872 thread at
3873 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
3874 * NEWS: Say it's experimental.
3875 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
3876 recommend it over %skeleton for now.
3877 (Bison Options): Likewise.
3878 (C++ Bison Interface): Use %skeleton not %language.
3879 (Calc++ Parser): Use %skeleton not %language.
3880 * src/getargs.c (usage): Say it's experimental.
3881
e254a580
DJ
38822008-11-01 Di-an Jan <dianj@freeshell.org>
3883 Paolo Bonzini <bonzini@gnu.org>
3884
3885 Support all Java parser class modifiers.
3886 * data/java.m4 (b4_percent_define_get3): New.
3887 (b4_final_if, b4_strictfp_if): New.
3888 * data/lalr1.java (final, strictfp, extends, implements): Support.
3889 * doc/bison.texinfo (final, strictfp, extends, implements): Add
3890 documentation.
3891 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
3892 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
3893 (AT_CHECK_JAVA_GREP): New.
3894 (Java parser class modifiers): New test.
3895 (Java parser class extends and implements): New test.
3896
3897 Model exception propagation better with throws and lex_throws.
3898 * data/java.m4 (b4_list2): New.
3899 (throws): Change default.
3900 * data/lalr1.java (yyaction): Add throws.
3901 (parse): Add lex_throws in addition to throws.
3902 * doc/bison.texinfo (throws, lex_throws): Add documentation.
3903 * tests/java.at (Java throws specifications): New test.
3904
3905 Improve documentation for Java parsers.
3906 * doc/bison.texinfo (Java Parsers): Add subsections.
3907 Don't quote first argument of %define.
3908 (Java Bison Interface): Document output files. Move documentation
3909 of parser class and merge into Java Parser Interface. Document
3910 features that error out. Document directives with no effect.
3911 Move note about Javadoc higher.
3912 (Java Semantic Values): Explicitly mention stype.
3913 Document that generic types cannot be used.
3914 (Java Location Values): Use @deftypeivar. Document constructors.
3915 Correct return value for toString.
3916 (Java Parser Interface): List undocumented constants/fields.
3917 Move documentation of fields added by %parse-param closer to list
3918 of members. Document that token names are added as fields.
3919 Document constructors accurately. Remove error method.
3920 (Java Scanner Interface): Move note on %pure-parser to Java Bison
3921 Interface. Describe %code lexer and yylex accutately.
3922 Remove documentation that does not match the code.
3923 (Java Action Features): New.
3924 (Java Differences): Add reference. Add item on semantic values.
3925 Add note about @{ ... @}. Clarify %% epilogue placement.
3926 (Java Declarations Summary): New.
3927
3928 Fix Java skeleton.
3929 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
3930 (b4_remove_comma): Quote test argument.
3931 (b4_identification): Remove "bison" field.
3932 * tests/java.at (Java parser class and package names): New test.
3933 (Java %parse-param and %lex-param): New test.
3934 (Java stype, position_class and location_class): New test.
3935
f259e4e6
PB
39362008-10-31 Di-an Jan <dianj@freeshell.org>
3937
3938 * data/lalr1.jave: Update copyright years.
3939 (YYParser): Correct name of "generated from" file in Javadoc:
3940 use b4_file_name instead of @ofile@.
3941 (Location constructor): Correct Javadoc parameter name.
3942 (yylloc): Add missing opening m4 quote after b4_location_if.
3943 This removes a stray [ in the Javadoc of Lexer.getStartPos.
3944 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
3945 (YYParser constructor): Correct Javadoc parameter name.
3946
cae5057f
JD
39472008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
3948
3949 Always put auxiliary code files in the same dir as other output files.
3950 * src/files.c (compute_file_name_parts): When the user specifies
3951 --output but not --file-prefix, extract the directory prefix from the
3952 file prefix not from the grammar file name. This affects the location
3953 of files like location.hh generated by the C++ skeleton. The includes
3954 in the other output files require this fix.
3955 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
3956 for expected output files.
3957 (Output files): Add a test for the above.
3958
4af432ba
JD
39592008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
3960
3961 * gnulib: Update submodule to HEAD.
3962
e26d4e43
JD
39632008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3964
3965 Update copyright year.
3966 * src/files.c: Here.
3967
c0ee9e21
DJ
39682008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
3969
3970 Don't overwrite the input file.
3971 * src/files.c (output_file_name_check): Fatal error if using input file
3972 for output.
3973 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
3974 argument.
3975 (Conflicting output files): Add test.
3976
482dc52f
AD
39772008-10-28 Akim Demaille <demaille@gostai.com>
3978
3979 Space changes.
3980 * data/lalr1.cc: Formatting changes.
3981
52cbbe84
AD
39822008-10-28 Akim Demaille <demaille@gostai.com>
3983
3984 Don't define debugging functions when !YYDEBUG.
3985 * data/lalr1.cc (debug_stream, set_debug_stream)
3986 (debug_level_type, debug_level, set_debug_level): Don't
3987 declare them when YYDEBUG is not defined.
3988 The implementation are already YYDEBUG-aware.
3989
0925d5bf
AD
39902008-10-28 Akim Demaille <demaille@gostai.com>
3991
3992 Prefer "continue" for empty loop bodies.
3993 * etc/bench.pl.in: Use "continue" instead of {}.
3994
cf98343c
AD
39952008-10-28 Akim Demaille <demaille@gostai.com>
3996
3997 Space and comments changes.
3998 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
3999 * data/c.m4, data/lalr1.cc: Space changes.
4000
9f467b7d
AD
40012008-10-28 Akim Demaille <demaille@gostai.com>
4002
4003 Make gnulib a submodule.
4004 * gnulib: New.
4005 * .gitmodules (gnulib): New.
4006
0f0e1ace
JD
40072008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4008
4009 Fix yyerror_range for user-defined location type in C++. Reported by
4010 Georg Sauthoff at
4011 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
4012 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
4013 * THANKS (Georg Sauthoff): Add.
4014
548e2104
JD
40152008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4016
4017 Update several administrative files mainly to facilitate releasing.
4018 * HACKING (Administrivia): Make the git-merge-changelog notes more
4019 helpful.
4020 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
4021 (Release Procedure): Update for git and add numerous details that were
4022 previously missing.
4023 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
4024 * maint.mk (announcement): Don't list bison as a bootstrap tool so
4025 that announcements don't claim we bootstrapped with whatever bison
4026 happened to be in PATH. Add flex as a bootstrap tool.
4027 * Makefile.maint: Remove, previously replaced by maint.mk.
4028 * Makefile.cfg: Remove, and migrate settings to...
4029 * cfg.mk: ... here for the sake of `make announcement'.
4030 * bootstrap.conf (gnulib_modules): Add announce-gen.
4031 * README: Say GNU Bison instead of just Bison. Suggested by Karl
4032 Berry.
4033
ddf17a6e
PB
40342008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
4035
4036 Small but important bugfixes for the Java skeleton.
4037 * data/lalr1.java (yyerror): Change Location to b4_location_type.
4038 (yy_symbol_print): Call toString on yyvaluep.
4039
e1145ad8
AD
40402008-08-29 Akim Demaille <demaille@gostai.com>
4041
4042 Clarify UPDATED use.
215b40ac 4043 * doc/bison.texinfo: It refers to the last edition of this file,
e1145ad8 4044 not to the release date of Bison.
215b40ac 4045 Reported by Joel E. Denny.
e1145ad8 4046
0df72d78
AD
40472008-08-29 Akim Demaille <demaille@gostai.com>
4048
4049 * README: Update FAQ pointer.
4050 Reported by Joel E. Denny.
4051
9a90b6bb
EB
40522008-08-27 Eric Blake <ebb9@byu.net>
4053
4054 Resync m4sugar from autoconf.
4055 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
4056 (m4_init): Adjust to latest m4.git changes.
4057 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
4058 effects.
4059 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
4060 (_m4_list_cmp): Reduce side effects.
4061
65015668
AD
40622008-08-27 Akim Demaille <demaille@gostai.com>
4063
4064 Check yyerrok in calc.at.
215b40ac
EB
4065 * tests/calc.at (calc.y): Use yyerrok on "( error )".
4066 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
4067 expected.
65015668 4068
98e26a92
AD
40692008-08-27 Akim Demaille <demaille@gostai.com>
4070
4071 Support yyerrok in lalr1.cc.
4072 YYBACKUP is still to import back into lalr1.cc.
215b40ac 4073 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
98e26a92 4074
86c0e784
JD
40752008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4076
4077 For maintainer-check*, don't recompile for a $(VERSION) update.
4078 * cfg.mk: New file.
4079 (_is-dist-target): Override the one in GNUmakefile.
4080 * Makefile.am (EXTRA_DIST): Add cfg.mk.
4081
88511166
JD
40822008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4083
4084 Update for recent change to gnulib.
4085 * src/parse-gram.y: Don't include strverscmp.h. It comes from
4086 string.h now.
4087
6bbb2ed5
EB
40882008-08-15 Eric Blake <ebb9@byu.net>
4089
d67c52e8
EB
4090 Remaining m4sugar merge from autoconf.
4091 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
4092 * data/m4sugar/foreach.m4: New file, copied from autoconf.
4093 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
4094 * src/output.c (output_skeleton): Tell m4 how to find it.
4095
6bbb2ed5
EB
4096 Partial m4sugar merge from autoconf: m4_map.
4097 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
4098 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
4099 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
4100 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
4101 for empty list.
4102 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
4103 Likewise.
4104 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
4105 declares it.
4106
8dce3875
JD
41072008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
4108
4109 Keep .version and PACKAGE_VERSION in sync.
4110 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
4111 dependency, and add comments justifying this in more detail. Discussed
4112 starting at
4113 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
4114
882a1fbf
EB
41152008-08-06 Eric Blake <ebb9@byu.net>
4116
a3764451
EB
4117 Partial m4sugar merge from autoconf: m4_shiftn.
4118 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
4119 (m4_shift2, m4_shift3): New macros.
4120 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
4121 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
4122 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
4123 * data/java.m4 (b4_remove_comma): Likewise.
4124
882a1fbf
EB
4125 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
4126 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
4127 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
4128 (m4_init): Consolidate wrapped text into single m4_wrap.
4129 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
4130 in wrapped text.
4131
a30e920d
EB
41322008-08-05 Eric Blake <ebb9@byu.net>
4133
dfcc5959
EB
4134 Partial m4sugar merge from autoconf: builtins, version.m4.
4135 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
4136 (m4_prepend): Remove, as it is unused and inherently quadratic,
4137 whereas m4_append is linear in newer m4.
4138 (m4_mkstemp): New builtin.
4139 (m4_symbols): Make rename conditional.
4140 (m4_version_prereq): Ensure fatal error if used in bison, which
4141 intentionally lacks version.m4.
4142
a30e920d
EB
4143 Fix comments in m4sugar.
4144 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
4145
445b7470
JD
41462008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4147
4148 Update for recent .gitignore fix in Gnulib.
4149 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
4150 anchored .gitignore entries.
4151
a1e50014
JD
41522008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4153
4154 Set gnu or gnits strictness.
4155 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
4156 development and gnits strictness for releases. Based on Eric Blake's
4157 suggestion at
4158 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
4159
d43f77e7
PB
41602008-07-31 Paolo Bonzini <bonzini@gnu.org>
4161
4162 * NEWS: Clarify documentation of %language.
4163
fee2ed87
PB
41642008-07-31 Paolo Bonzini <bonzini@gnu.org>
4165
4166 Support usage of git-merge-changelog.
4167 * .gitattributes: New.
4168 * HACKING: Document usage of git-merge-changelog.
4169 * bootstrap: Install git-merge-changelog entries in .git/config
4170 if appropriate.
4171
78029cd5
JD
41722008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4173
4174 Remove remaining dependence on CVS Id keyword.
4175 * ChangeLog: For the sake of people still using CVS, don't use dollars
4176 when mentioning Id.
4177 * data/xslt/bison.xsl: Remove Id from header comments, where it was
4178 unusual anyway.
4179 * data/xslt/xml2dot.xsl: Likewise.
4180 * data/xslt/xml2text.xsl: Likewise.
4181 * data/xslt/xml2xhtml.xsl: Likewise.
4182 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
4183 * doc/Makefile.am (neutralize): Remove, no longer needed.
4184 (.x.1): Don't use neutralize.
4185 (edit): Don't substitute for ID.
4186 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
4187
c53d18b1
JD
41882008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4189
4190 Fix dependence on computed configure variables.
4191 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
4192 $(top_srcdir)/configure.ac so that changes to computed variables, such
4193 as PACKAGE_VERSION, are seen.
4194 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
4195
5523ac79
JD
41962008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
4197
4198 Update copyright dates for recent changes.
4199 * Makefile.am: Here.
4200 * src/Makefile.am: Here.
4201 * src/reduce.c: Here.
4202 * tests/reduce.at: Here.
4203
8fa36911
JD
42042008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
4205
4206 Use git-version-gen for version names between releases.
4207 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
4208 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
4209 * .prev-version: New.
4210 * .version.in: Remove.
78029cd5 4211 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
4212 revision.
4213 * GNUmakefile: Remove, now copied from Gnulib.
4214 * Makefile.am: Add code suggested by comments in
4215 build-aux/git-version-gen.
4216 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
4217 .prev-version, and .version.
4218 * NEWS (2.3b+): Rename to...
4219 (?.?): ... this because we're dropping the "+" version naming scheme,
4220 but, in general, we still can't be sure of our next release name.
4221 * bootstrap: Add a quick hack to remove from .gitignore the
4222 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
4223 entry. This should really be fixed in gnulib instead.
4224 * bootstrap.conf (gnulib_modules): Add gnumakefile.
4225 * configure.ac (AC_INIT): Set version name by invoking
4226 build-aux/git-version-gen.
4227 (AC_CONFIG_FILES): Remove .version, now generated by
4228 build-aux/git-version-gen.
4229 * maint.mk: New, copied from coreutils.
4230 * doc/.cvsignore (bison.1): Add.
4231 * doc/.gitignore (/bison.1): Add.
4232 * doc/bison.1: Remove, generated.
4233 * src/.cvsignore (revision.c): Remove.
4234 * src/.gitignore (/revision.c): Remove.
4235 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
4236 (BUILT_SOURCES): Remove revision.c.
4237 (revision.c): Remove.
4238 * src/getargs.c (version): Don't print revision after the VERSION.
4239 * src/revision.h: Remove.
4240
bcf07cb7
JD
42412008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4242
4243 Fix untranslatable composition of sentences. Reported by Goran
4244 Uddeborg at
4245 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
4246 * THANKS (Goran Uddeborg): Add.
4247 * src/reduce.c (reduce_print): Report the number of nonterminals and
4248 rules useless in the grammar in separate sentences.
4249 * tests/reduce.at (Useless Rules): Update output.
4250 (Reduced Automaton): Likewise.
4251 (Underivable Rules): Likewise.
4252 (Empty Language): Likewise.
4253
9aacab9a
JD
42542008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4255
4256 Fix some .gitignore and .cvsignore problems.
4257 * bootstrap (insert_sorted_if_absent): Replace all uses with...
4258 (insert_vc_ignore): ... this new function, which prepends `/' to all
4259 .gitignore entries before passing them to insert_sorted_if_absent.
4260 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
4261 .cvsignore files are maintained even though Bison developers run
4262 bootstrap while using Git.
4263 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
4264 unneeded by Bison.
4265 (gnulib): Add.
4266 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
4267 unneeded. Reported by Eric Blake.
4268 * lib/.gitignore (/*~): Add.
4269 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
4270 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
4271 Blake.
4272 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
4273
a9fc7990
JD
42742008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4275
4276 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
4277 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
4278 * bootstrap.conf (gnulib_modules): Add unsetenv.
4279 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
4280 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
4281 (/setenv.m4): Add.
4282 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
4283 the first argument because it may become position-dependent, and unset
4284 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
4285 Add comments explaining these issues in more detail.
4286
0f1d6f10
JD
42872008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
4288
4289 Add .gitignore everywhere based on .cvsignore.
4290 * .gitignore: New.
4291 * build-aux/.gitignore: New.
4292 * data/.gitignore: New.
4293 * doc/.gitignore: New.
4294 * etc/.gitignore: New.
4295 * examples/.gitignore: New.
4296 * examples/calc++/.gitignore: New.
4297 * lib/.gitignore: New.
4298 * m4/.gitignore: New.
4299 * po/.gitignore: New.
4300 * runtime-po/.gitignore: New.
4301 * src/.gitignore: New.
4302 * tests/.gitignore: New.
4303
7bd1665a
JD
43042008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4305
4306 * NEWS (2.3b+): New section, empty for now.
4307 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
4308
72c5b982
JD
43092008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4310
4311 * NEWS (2.3b): Update release date since there has been a delay in
4312 getting the announcements and tarballs out.
4313
bd02cd5d
JD
43142008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4315
4316 * NEWS: Version 2.3b.
4317 * configure.ac (AC_INIT): Likewise.
4318 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
4319
9126263e
JD
43202008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4321
4322 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
4323 been doing it for years.
4324 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
4325 (Release Procedure): Add FIXME about make alpha being unmaintained.
4326
fa6aa7b3
JD
43272008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
4328
4329 * data/yacc.c: Reformat m4 a little for readability.
4330 * src/lalr.c (build_relations): Correct comment.
4331
d30b312d
JMG
43322008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4333
4334 DJGPP specific issue.
4335 * djgpp/config.sed: Fixes required to run configure scripts generated
4336 by autoconf 2.62.
4337
138d4cd9
JD
43382008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4339
4340 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
4341 coordinator@translationproject.org.
4342
8f7e2e1f
JD
43432008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4344
4345 * THANKS: Add Eric Blake.
4346
f55efa38
JD
43472008-04-23 Eric Blake <ebb9@byu.net>
4348
4349 Revert prior patch, by working around autoconf regression.
4350 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
4351 ("Output file name: ("): Uncomment test.
4352 ("Output file name: )"): Likewise.
4353 Based on an idea from Noah Misch.
4354
096c9f9d
JD
43552008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4356
4357 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
4358 2.61. Reported by Juan Manuel Guerrero at
4359 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
4360 * tests/output.at ("Output file name: ("): Comment out test case for
4361 now.
4362 ("Output file name: )"): Likewise.
4363
0f664b89
JD
43642008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4365
4366 * GNUmakefile: Update git-version-gen invocation so make dist
4367 succeeds.
4368
1cfe6375
JD
43692008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4370
4371 Update to the current gnulib CVS repository, and fix trigraph handling
4372 in Bison.
4373 * bootstrap: Update gnulib CVS repository URL.
4374 (symlink_to_dir): Encapsulate the code that guarantees the destination
4375 directory exists into...
4376 (check_dst_dir): ... this new function, and...
4377 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
4378 fail when copying files into lib/uniwidth/.
4379 * src/output.c (prepare_symbols): When writing yytname muscles, where
4380 symbol names will be encoded in C-string literals, tell quotearg to
4381 escape trigraphs. This used to be the default in gnulib.
4382 * tests/regression.at (Token definitions): Because of the change in
4383 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
4384 escapes trigraphs in symbol names. Thus, yytname no longer has
4385 trigraphs unnecessarily doubly escaped. Update test case output.
4386 Extend test case to be sure Bison's own error messages will no longer
4387 have trigraphs in symbol names unnecessarily escaped once.
4388
74c52fc8
JD
43892008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
4390
4391 Fix make dist infinite loop reported by Juan Manuel Guerrero at
4392 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
4393 * .cvsignore: Add .version.
4394 * .version.in: New.
4395 * bootstrap.conf (gnulib_modules): Add git-version-gen.
4396 * configure.ac (AC_CONFIG_FILES): Add .version.
4397 * build-aux/.cvsignore: Add git-version-gen.
4398
8e55b3aa
JD
43992008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
4400
4401 * NEWS (2.3a+): Mention that -g now takes an argument.
4402 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
4403 consistency. Update the -g and -x entries now that they take
4404 arguments. Use brackets to indicate optional arguments.
4405 * src/getargs.c (usage): Explain the relationship between arguments of
4406 long and short options more completely. Document --defines and -d
4407 separately since the former takes an argument but, for POSIX Yacc, the
4408 latter does not.
4409 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 4410 (getargs): Sort cases.
8e55b3aa 4411
59c5ac72
AD
44122008-02-28 Akim Demaille <demaille@gostai.com>
4413
4414 * doc/bison.texinfo: Fix a few typos.
4415
118d4978
AD
44162008-02-28 Akim Demaille <akim@epita.fr>
4417
4418 * doc/bison.texinfo (Bison Options): Document -W.
4419 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
4420
7020f1e9
AD
44212008-02-28 Akim Demaille <akim@epita.fr>
4422
4423 * src/getargs.c (short_options): Split and sort for readability.
4424 -g and -x take optional arguments, just like their long options.
4425 * build-aux/cross-options.pl: Use /x to make the regexp easier to
4426 understand.
4427 Fix the handling of $opt which resulted in all the argument to be
4428 considered as optional.
4429
59da312b
JD
44302008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
4431
4432 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
4433 say its interface is experimental.
4434 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4435 Java.
4436 (Bison Options): In the -L and --language entry, mention Java.
4437 (Java Bison Interface): Say the interface is experimental.
4438 * src/getargs.c (usage): Mention -L and --language.
4439
4440 * NEWS (2.3a+): Say the push parsing interface is experimental.
4441 * doc/bison.texinfo (Push Decl): Likewise.
4442 (Decl Summary): Likewise in the "%define api.push_pull" entry.
4443 (Push Parser Function): Likewise.
4444 (Pull Parser Function): Likewise.
4445 (Parser Create Function): Likewise.
4446 (Parser Delete Function): Likewise.
4447 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
4448 yypull_parse, and yypush_parse entries.
4449
4450 * NEWS (2.3a+): Mention XML support, and say the schema is
4451 experimental.
4452 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
4453 * src/getargs.c (usage): Say the XML schema is experimental.
4454
4455 * NEWS (2.3a+): Say option instead of flag.
4456
2bb3ebec
WP
44572008-02-21 Wojciech Polak <polak@gnu.org>
4458
4459 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
4460 text.
4461
333e670c
JD
44622008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
4463
4464 Fix impure push parser compile error reported by Bob Rossi at
4465 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
4466 * data/yacc.c: Clean up whitespace in the output a little.
4467 (yypstate_allocated): Define for impure push parsers regardless of
4468 whether the pull interface is also requested.
4469 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
4470 check impure push parsers without the pull interface.
4471
4472 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
4473 yyerror takes arguments specified by %parse-param while yypstate_new
4474 does not.
4475 * doc/bison.texinfo (Parser Create Function): Document that
4476 yypstate_new returns 0 for multiple impure parser instances.
4477 * tests/push.at (Push Parsing: Multiple impure instances): Update
4478 expected stderr output.
4479
798096e1
JD
44802008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4481
4482 * runtime-po/POTFILES.in (push.c): Remove.
4483
9ca7f077
JD
44842008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4485
4486 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
4487 * data/push.c: Rename to...
4488 * data/yacc.c: ... this, overwriting it.
4489 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
4490 `%push-pull-parser' -> `%define api.push_pull "both"'.
4491 Remove old yacc.c tests, and update push.c tests to yacc.c.
4492
42ee26bb
JD
44932008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4494
4495 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
4496 `"%code top" blocks' instead of `%code "top" blocks'.
4497 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
4498 Clean up whitespace in the output a little.
4499
b1cc23c4
JD
45002008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4501
4502 Fix documentation problems reported by Tim Josling at
4503 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
4504 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
4505 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
4506 integers. Explain the effect of literal string aliases on error
4507 messages. Copy token 0 documentation from the C++ skeleton
4508 documentation.
4509
ab7f29f8
JD
45102008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4511
4512 Accept a token number in a %left, %right, or %nonassoc for POSIX
4513 conformance. Reported by Tim Josling at
4514 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
4515 * NEWS (2.3a+): Mention.
4516 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
4517 and code numbers are treated by precedence declarations.
4518 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
4519 of symbols.1.
4520 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
4521 of symbol.
4522 (symbol.prec): New, just like symbol but allows INT.
4523 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
4524 longer holds.
4525 * tests/regression.at (Token number in precedence declaration): New
4526 test case.
4527
a924ef36
JMG
45282008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4529
4530 DJGPP specific issues.
4531 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
4532 be changed. Copyright timestamp adjusted.
4533 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
4534 be changed. Copyright timestamp adjusted.
4535 * djgpp/config.site: Copyright timestamp adjusted.
4536 * djgpp/config_h.sed: Copyright timestamp adjusted.
4537 * djgpp/djunpack.bat: Copyright timestamp adjusted.
4538 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
4539 filename translation list.
4540 * djgpp/subpipe.c (init_subpipe): Check the environment variables
4541 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
4542 files shall be created. Before trying to use the temp dir where the
4543 environment variable points to check that the dir really exists. If
4544 not default to the cwd as temp dir. Copyright timestamp adjusted.
4545 * djgpp/subpipe.h: Copyright timestamp adjusted.
4546 * djgpp/testsuite.sed: Copyright timestamp adjusted.
4547
389c8cfd
PE
45482008-01-30 Paul Eggert <eggert@cs.ucla.edu>
4549
4550 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
4551
5d1cfef4
PE
45522008-01-09 Paul Eggert <eggert@cs.ucla.edu>
4553
4554 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
4555 Problem reported by Claudio Saavedra in
4556 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
4557
e2dcf996
WP
45582008-01-05 Wojciech Polak <polak@gnu.org>
4559
4560 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
4561 document's title with the input grammar file name.
4562
da730230
JD
45632007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
4564
4565 Automate regression testing of the XML/XSLT implementation. Discussed
4566 starting at
4567 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
4568 * configure.ac (XSLTPROC): New substitution.
4569 * Makefile.am (maintainer-xml-check): New phony target invoking...
4570 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
4571 invoking make maintainer-check with BISON_TEST_XML=1.
4572 * tests/atlocal.in (XSLTPROC): New.
4573 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
4574 not to report reachable memory when Bison is expected to have a
4575 non-zero exit status and (2) to compare XML/XSLT output with --graph
4576 and --report=all output for every working grammar when
4577 BISON_TEST_XML=1.
4578 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
4579 (AT_BISON_CHECK_XML): New.
4580 (AT_QUELL_VALGRIND): New.
4581 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
4582 (AT_CHECK): ... don't redefine this since this was the old way to
4583 quell Valgrind.
4584 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
4585 AT_BISON_CHECK invocations.
4586 * tests/c++.at: Likewise.
4587 * tests/calc.at: Likewise.
4588 * tests/conflicts.at: Likewise.
4589 * tests/cxx-type.at: Likewise.
4590 * tests/existing.at: Likewise.
4591 * tests/glr-regression.at: Likewise.
4592 * tests/headers.at: Likewise.
4593 * tests/input.at: Likewise.
4594 * tests/java.at: Likewise.
4595 * tests/output.at: Likewise.
4596 * tests/push.at: Likewise.
4597 * tests/reduce.at: Likewise.
4598 * tests/regression.at: Likewise.
4599 * tests/sets.at: Likewise.
4600 * tests/skeletons.at: Likewise.
4601 * tests/synclines.at: Likewise.
4602 * tests/torture.at: Likewise.
4603 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
4604 tends to hang xsltproc.
4605 (Big horizontal): Likewise.
4606
408476bc
JD
46072007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
4608
4609 In XML output, remove redundant class attribute on symbol element.
4610 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
4611 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
4612 look up a symbol to determine whether it's a nonterminal or terminal.
4613 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
4614 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
4615
4616 Add prec/assoc information to XML output.
4617 * src/gram.c (grammar_rules_print_xml): For each rule that has a
4618 %prec, add a percent_prec attribute.
4619 * src/print-xml.c (print_grammar): For each terminal that has a
4620 precedence or associativity, add a prec or assoc attribute.
4621 (xml_indent): New.
4622 (xml_puts): Use xml_indent.
4623 (xml_printf): Use xml_indent.
4624 * src/print-xml.h (xml_indent): Prototype.
4625
4626 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
4627 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
4628
d4a26c48
JD
46292007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
4630
4631 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
4632 (bison:ruleByNumber): ... this for clarity.
4633 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
4634 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
4635 (xsl:template match="reduction"): Update.
4636 (xsl:template match="item"): Update.
4637 (xsl:template match="reduction"): Update.
4638
4639 In the XML output, don't print the list of rules where symbols appear.
4640 Compute it in XSLT instead. Discussed at
4641 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
4642 * data/xslt/bison.xsl (bison:ruleByLhs): New.
4643 (bison:ruleByRhs): New.
4644 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
4645 bison:ruleByRhs.
4646 (xsl:template match="terminal/rule"): Remove.
4647 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
4648 bison:ruleByRhs.
4649 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
4650 Remove.
4651 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
4652 bison:ruleByRhs and mode="number-link" for rule template.
4653 (xsl:template match="terminal/rule"): Remove.
4654 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
4655 bison:ruleByRhs and mode="number-link" for rule template.
4656 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
4657 Rewrite as...
4658 (xsl:template match="rule" mode="number-link"): ... this.
4659 * src/print-xml.c (print_grammar): Don't print the list of rules.
4660
ef1b4273
JD
46612007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4662
4663 Don't let --report affect XML output; always print all information.
4664 Discussed at
4665 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
4666 * src/conflicts.c (log_resolution): Implement.
4667 * src/print-xml.c (print_core): Implement.
4668 (print_state): Implement.
4669 (print_xml): Implement.
4670
4671 * NEWS (2.3a+): Fix quotes.
4672 * src/parse-gram.y (prologue_declaration): For consistency with -v,
4673 don't let %verbose clear the list specified by --report.
4674
0f6cd9e3
AD
46752007-11-26 Akim Demaille <akim@epita.fr>
4676
4677 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
4678
d80fb37a
JD
46792007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
4680
4681 In the XML output, list useless and unused symbols and rules with the
4682 useful ones and add a "usefulness" attribute. Discussed starting at
4683 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
4684 * src/gram.c (grammar_rules_partial_print_xml): Remove.
4685 (grammar_rules_print_xml): Print all rules instead of just those
4686 useful in the grammar, and add a "usefulness" attribute.
4687 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
4688 * src/print-xml.c (print_rules_useless_in_parser): Remove.
4689 (print_grammar): Print all nonterminals instead of just useful ones,
4690 and add a "usefulness" attribute to nonterminals and terminals.
4691 (print_xml): Don't print a separate "reductions" or
4692 "rules-useless-in-parser" element.
4693 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
4694 (reduce_xml): Remove.
4695 (reduce_token_unused_in_grammar): New.
4696 (reduce_nonterminal_useless_in_grammar): New.
4697 * src/reduce.h (reduce_xml): Remove prototype.
4698 (reduce_token_unused_in_grammar): Add prototype.
4699 (reduce_nonterminal_useless_in_grammar): Add prototype.
4700 * data/xslt/xml2text.xsl: Update for XML changes.
4701 * data/xslt/xml2xhtml.xsl: Update for XML changes.
4702 * tests/reduce.at (Useless Terminals): Update output.
4703 (Useless Rules): Update output.
4704 (Reduced Automaton): Update output.
4705
4706 Say "Terminals unused in grammar" instead of "Unused terminals".
4707 * NEWS (2.3a+): Update.
4708 * doc/bison.texinfo (Understanding): Update example output.
4709 * src/reduce.c (reduce_output): Implement.
4710 * data/xslt/xml2text.xsl: Implement.
4711 * data/xslt/xml2xhtml.xsl: Implement.
4712
1bb2bd75
JD
47132007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
4714
4715 Accept --report-file=FILE to override the default `.output' filename.
4716 * NEWS (2.3a+): Mention.
4717 * doc/bison.texinfo (Bison Options): Add an entry.
4718 * src/files.c (compute_output_file_names): Don't override
4719 spec_verbose_file if already set.
4720 * src/getargs.c (usage): Document --report-file.
4721 (REPORT_FILE_OPTION): New anonymous enum member.
4722 (long_options): Add entry for it.
4723 (getargs): Add case for it setting spec_verbose_file.
4724
4725 * build-aux/cross-options.pl: Don't record a short option just because
4726 there's an arg.
4727 * doc/.cvsignore: Add yacc.1.
4728
a005a9c4
AD
47292007-11-14 Akim Demaille <akim@epita.fr>
4730
4731 * doc/yacc.1.in: New.
4732 * configure.ac, doc/Makefile.am: Adjust.
4733 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
4734 config.h symbol.
4735 Use AC_SUBST for assignments too.
4736 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
4737
cff03fb2
JD
47382007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4739
4740 * src/gram.c: Remove comments that duplicate comments in gram.h.
4741
4742 When reporting useless rules and nonterminals, say "useless in grammar"
4743 instead of "useless", and say "useless in parser" instead of "never
4744 reduced". Discussed starting at
4745 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
4746 * NEWS (2.3a+): Mention this change.
4747 * data/xslt/xml2text.xsl: Update output text and expected input XML
4748 element names to match changes below.
4749 * data/xslt/xml2xhtml.xsl: Likewise.
4750 (xsl:template match="bison-xml-report"): Add missing entry in Table of
4751 Contents: "Rules useless in parser due to conflicts".
4752 * doc/bison.texinfo (Decl Summary): Reword a little.
4753 (Understanding): Update example output for changes below.
4754 * src/gram.c: (rule_useful_p): Rename to...
4755 (rule_useful_in_grammar_p): ... this.
4756 (rule_useless_p): Rename to...
4757 (rule_useless_in_grammar_p): ... this.
4758 (rule_never_reduced_p): Rename to...
4759 (rule_useless_in_parser_p): ... this.
4760 (grammar_rules_print): Update for renames.
4761 (grammar_rules_print_xml): Update for renames.
4762 (grammar_rules_never_reduced_report): Rename to...
4763 (grammar_rules_useless_report): ... this since it is used for either
4764 kind of useless rule.
4765 * src/gram.h: Reword comments and update function names in prototypes.
4766 * src/main.c (main): Say "rule useless in parser due to conflicts".
4767 * src/print-xml.c (print_rules_never_reduced): Rename to...
4768 (print_rules_useless_in_parser): ... this, and rename output XML
4769 element "rules-never-reduced" to "rules-useless-in-parser".
4770 (print_xml): Update for rename.
4771 * src/print.c (print_results): Say "Rules useless in parser due to
4772 conflicts".
4773 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
4774 (nonterminals_reduce): Say "nonterminal useless in grammar".
4775 (reduce_output): Say "Nonterminals useless in grammar".
4776 Say "Rules useless in grammar".
4777 (reduce_xml): Rename output XML element "useless" to
4778 "useless-in-grammar".
4779 (reduce_print): Don't report the count of grammatically useless rules
4780 as "rules never reduced" just because %yacc is specified.
4781 In the correct report of this count, say nonterminal(s) and rule(s)
4782 "useless in grammar".
4783 * tests/conflicts.at (S/R in initial): Update expected output.
4784 (Defaulted Conflicted Reduction): Likewise.
4785 (Unreachable States After Conflict Resolution): Likewise.
4786 * tests/existing.at (GNU pic Grammar): Likewise.
4787 * tests/reduce.at (Useless Nonterminals): Likewise.
4788 (Useless Rules): Likewise.
4789 (Reduced Automaton): Likewise.
4790 (Underivable Rules): Likewise.
4791 (Empty Language): Likewise.
4792
66f0441d
JD
47932007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4794
4795 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
4796 here document and before the EOF so that BSD's implementation of Bourne
4797 shell doesn't parse the delimiter as part of the here document.
4798 * doc/.cvsignore: Add cross-options.texi.
4799 * src/getargs.c (usage): Add a blank line after the warning categories.
4800
d0ee4105
PB
48012007-11-08 Paolo Bonzini <bonzini@gnu.org>
4802
4803 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
4804
e8b1fb9b
AD
48052007-11-05 Akim Demaille <akim@epita.fr>
4806
4807 Remove Id: from bison.1.
4808 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
4809 (perl -0777 -pi -e 's/\.PP\nId): New.
4810 (.x.1): Use it to ignore the version control revision.
4811
2f7a96b5
AD
48122007-11-05 Akim Demaille <demaille@gostai.com>
4813
4814 * build-aux/Makefile.am: Ship cross-options.pl.
4815 * doc/Makefile.am: Always refer to cross-options.texi with
4816 $(srcdir).
4817 (MAINTAINERCLEANFILES): Add it.
4818
f4101aa6
AD
48192007-11-04 Akim Demaille <demaille@gostai.com>
4820
4821 Generate the long/short option cross-table.
4822 * build-aux/cross-options.pl: New.
4823 * doc/Makefile.am (cross-options.texi): New.
4824 * doc/bison.texinfo: Use it.
4825
727a1401
AD
48262007-11-04 Akim Demaille <demaille@gostai.com>
4827
4828 Generate bison.1 using help2man.
4829 * doc/common.x, doc/bison.x: New.
4830 * doc/Makefile.am (bison.1, .x.1): New.
4831 The code is taken from autoconf-2.61/man/Makefile.am.
4832 * configure.ac: Look for help2man.
4833
6aeb9c57
AD
48342007-11-04 Akim Demaille <demaille@gostai.com>
4835
4836 Complete --help.
4837 * src/getargs.c (usage): Document -W, make it clear that -d,
4838 -g and -x have optional arguments.
4839
d7be4085
AD
48402007-11-04 Akim Demaille <demaille@gostai.com>
4841
4842 Find sha1sum when named gsha1sum.
4843 * bootstrap (find_tool): New.
4844 ($SHA1SUM): New.
4845
d9df47b6
JD
48462007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4847
4848 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
4849 at
4850 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
4851 * NEWS (2.3a+): Mention.
4852 * data/bison.m4 (b4_pure_if): Don't define it here.
4853 * data/c.m4 (b4_identification): Depend on individual skeletons to
4854 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
4855 values of the %define variables api.pure or api.push_pull. Define
4856 YYPURE, YYPUSH, and YYPULL accordingly.
4857 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
4858 glr.cc has already defined b4_pure_flag.
4859 * data/push.c: Define b4_pure_if based on `%define api.pure'.
4860 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 4861 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
4862 * doc/bison.texinfo (Pure Decl): Update.
4863 (Push Decl): Update.
4864 (Decl Summary): Add api.pure to %define entry.
4865 In %pure-parser entry, say it's deprecated and reference %define.
4866 (Pure Calling): Update.
4867 (Error Reporting): Update.
4868 (C++ Scanner Interface): Update.
4869 (How Can I Reset the Parser): Update.
4870 (Table of Symbols): In %pure-parser entry, say it's deprecated and
4871 reference %define.
4872 * src/getargs.c (pure_parser): Remove global variable.
4873 * src/getargs.h (pure_parser): Remove extern.
4874 * src/output.c (prepare): Don't define pure_flag muscle.
4875 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
4876 wrapper around `%define api.pure'.
4877 * tests/calc.at (Simple LALR Calculator): Update.
4878 (Simple GLR Calculator): Update.
4879 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
4880 Update.
4881 (GLR: Resolve ambiguity, pure, locations): Update.
4882 (GLR: Merge conflicting parses, pure, no locations): Update.
4883 (GLR: Merge conflicting parses, pure, locations): Update.
4884 * tests/glr-regression.at (Uninitialized location when reporting
4885 ambiguity): Update
4886 * tests/input.at (Unused %define api.pure): New test case.
4887 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
4888 AT_PURE_IF and AT_PURE_AND_LOC_IF.
4889 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
4890
c373bf8b
JD
48912007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4892
4893 %define push_pull -> %define api.push_pull. Discussed starting at
4894 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
4895 * data/push.c: Expect the new name.
4896 * data/yacc.c: Likewise.
4897 * doc/bison.texinfo (Push Decl): Update.
4898 (Decl Summary): Update %define entry.
4899 (Push Parser Function): Update.
4900 (Pull Parser Function): Update.
4901 (Parser Create Function): Update.
4902 (Parser Delete Function): Update.
4903 * tests/calc.at (Simple LALR Calculator): Update.
4904 * tests/input.at (%define enum variables): Update.
4905 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
4906 (Push Parsing: Multiple impure instances): Update.
4907 (Push Parsing: Unsupported Skeletons): Update.
4908 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
4909 (Exploding the Stack Size with Malloc): Update.
4910
4911 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
4912 other entries some.
4913
32f19b6b
JD
49142007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
4915
4916 For the XML output's terminal element, rename @number to @token-number,
4917 and add @symbol-number. In the nonterminal element, rename @number to
4918 @symbol-number. Discussed starting at
4919 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
4920 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
4921 renames.
4922 (xsl:template match="nonterminal"): Likewise.
4923 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
4924 (xsl:template match="nonterminal"): Likewise.
4925 * src/print-xml.c (print_grammar): Implement.
4926
255a6b90
JD
49272007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4928
4929 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
4930 2007-10-11 change, the child elements here are items not rules.
408476bc 4931 (xsl:template match="item"): New.
255a6b90
JD
4932 (xsl:template match="rule"): Update for new reduced itemset.
4933 (xsl:template match="point"): Remove.
4934 (xsl:template match="empty"): For consistency with --graph, don't
4935 output "/* empty */".
4936 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
4937 line-wrap, don't pass a negative value as first-line-length since this
4938 won't work with the following changes.
4939 (xsl:template name="line-wrap"): Simplify slightly.
4940 (xsl:template name="ws-search"): Eliminate recursion.
4941 * src/print_graph.c (print_core): Don't print a reduction's lookahead
4942 set next to an item whose dot is not at the end of the RHS even if it
4943 happens to be associated with the same rule.
4944
88c78747
JD
49452007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
4946
31984206
JD
4947 Add %define lr.keep_unreachable_states.
4948 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
4949 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
4950 * src/main.c (main): Implement it.
4951 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4952 Extend to test it, and fix a typo.
4953
49542007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
4955
4956 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
4957 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
4958 the example .output text.
4959 * tests/regression.at (Extra lookahead sets in report): Improve wording
4960 of comments.
4961
b7a70162
WP
49622007-10-17 Wojciech Polak <polak@gnu.org>
4963
4964 * src/print-xml.c (print_grammar): Renamed
4965 <terminal> and <nonterminal> attributes:
4966 "type" to "number" and "symbol" to "name".
4967 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
4968 Use new attribute names.
4969 (xsl:template match="nonterminal"): Likewise.
4970 * data/xslt/xml2xhtml.xsl: Likewise.
4971
a0de5091
JD
49722007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
4973
4974 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
4975 (Option Cross Key): Likewise.
4976
4977 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
4978 next to an item whose dot is not at the end of the RHS even if it
4979 happens to be associated with the same rule.
4980 * src/print.c (print_core): Likewise.
4981 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
4982 (Resolved SR Conflicts): Update output.
4983 * tests/regression.at (Extra lookahead sets in report): New test case.
4984
4c20d18d
WP
49852007-10-11 Wojciech Polak <polak@gnu.org>
4986
4987 * src/print-xml.c (print_core): Remove item set
4988 redundancy.
4989 * data/xslt/bison.xsl (bison:ruleNumber): New key.
4990 Improve processing time. Suggested by Joel E. Denny.
4991 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
4992 Write xsl:param "required" attribute as comment.
4993 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
4994 (xsl:template match="rule"): Support new reduced itemset.
4995 (xsl:template match="point"): Remove.
4996 * data/xslt/xml2xhtml.xsl: Likewise.
4997
f506ad1c
JD
49982007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4999
5000 * src/getargs.c (version): Update copyright year.
5001
21f1b063
JD
50022007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5003
5004 Make xml2dot.xsl and --graph produce the same output.
5005 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
5006 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
5007 escaped later.
5008 (xsl:template name="output-node"): Use the new escape template instead
5009 of the string-replace template directly.
5010 (xsl:template name="output-edge"): Likewise.
5011 (xsl:template name="escape"): New, escapes backslashes and newlines in
5012 addition to quotation marks.
5013 * src/graphviz.c (start_graph, output_node, output_edge): Add
5014 whitespace to output for legibility.
5015
5016 Make xml2text.xsl and --report produce the same output, and remove the
5017 XML "conflicts" element since a conflict summary is easily extracted
5018 from the automaton.
5019 * data/xslt/bison.xsl: New.
5020 (xsl:template match="state" mode="bison:count-conflicts): New.
5021 * data/xslt/xml2text.xsl: Import bison.xsl.
5022 (xsl:template match="bison-xml-report"): Instead of styling the
5023 "conflicts" element, style the "automaton" element with mode
5024 "conflicts". Unlike the former, the latter lists S/R and R/R
5025 conflicts for a state on the same line.
5026 (xsl:template match="conflicts"): Remove.
5027 (xsl:template match="conflict"): Remove.
5028 (xsl:template match="terminal"): Line-wrap the list of rules in which
5029 the terminal is used.
5030 (xsl:template match="nonterminal"): Likewise for nonterminals.
5031 (xsl:template match="automaton" mode="conflicts"): New.
5032 (xsl:template match="state" mode="conflicts"): New.
5033 (xsl:template name="line-wrap"): New.
5034 (xsl:template name="ws-search"): New.
5035 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
5036 (xsl:template match="bison-xml-report"): Instead of styling the
5037 "conflicts" element, style the "automaton" element with mode
5038 "conflicts."
5039 (xsl:template match="conflicts"): Remove.
5040 (xsl:template match="conflict"): Remove.
5041 (xsl:template match="automaton" mode="conflicts"): New.
5042 (xsl:template match="state" mode="conflicts): New.
5043 * src/conflicts.c (conflicts_output_xml): Remove.
5044 * src/conflicts.h (conflicts_output_xml): Remove prototype.
5045 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
5046 * src/print.c (print_grammar): Consistently wrap at the 66th column so
5047 the corresponding XSLT is easier. Also, never wrap between a word and
5048 the comma that follows it.
5049
793fbca5
JD
50502007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5051
5052 Improve C++ namespace support. Discussed starting at
5053 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
5054 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
5055 b4_namespace_close): New macros that interpret the %define variable
5056 "namespace" so its value can contain "::" to indicate nested
5057 namespaces.
5058 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
5059 the above macros.
5060 * data/lalr1.cc (b4_namespace): Likewise.
5061 * data/location.cc (b4_namespace): Likewise.
5062 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
5063 inside a new table in the general %define entry. Document `%define
5064 namespace' there as well. Point the %name-prefix entry to it since it
5065 explains it more completely in the case of C++.
5066 (C++ Bison Interface): Mention `%define namespace' instead of
5067 %name-prefix.
5068 (Table of Symbols): Remove the `%define push_pull' entry. The %define
5069 entry suffices.
5070 * tests/c++.at (Relative namespace references): New test case.
5071 (Absolute namespace references): New test case.
5072 (Syntactically invalid namespace references): New test case.
5073 * tests/input.at (C++ namespace reference errors): New test case.
5074
35b8730d
JD
50752007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5076
5077 Add syncline support and location accessor to internal %define
5078 interfaces.
5079 * data/bison.m4 (b4_percent_define_get_loc): New.
5080 (b4_percent_define_get_syncline): New.
5081 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
5082 (b4_percent_define_default): Record defining location as line 1 rather
5083 than 0 for the sake of synchronizing #line's, and define
5084 b4_percent_define_syncline(VARIABLE).
5085 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
5086 * src/muscle_tab.c (muscle_syncline_grow): New.
5087 (muscle_code_grow): Use muscle_syncline_grow.
5088 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
5089 define b4_percent_define_syncline(VARIABLE).
5090 (muscle_percent_define_get_loc): New.
5091 (muscle_percent_define_get_syncline): New.
5092 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
5093 remove some unused variables.
5094 (muscle_percent_define_default): Record defining location as line 1
5095 rather than 0 for the sake of synchronizing #line's, and define
5096 b4_percent_define_syncline(VARIABLE).
5097 (muscle_percent_define_check_values): Use
5098 muscle_percent_define_get_loc.
5099 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
5100 (muscle_percent_define_get_syncline): Prototype.
5101 * tests/skeletons.at (%define Boolean variables: invalid skeleton
5102 defaults): Update output for location change.
5103 (Complaining during macro argument expansion): Extend to test
5104 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
5105
7dc4a694
JD
51062007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
5107
5108 Fix some error-reporting macro bugs.
5109 * data/bison.m4 (b4_cat): New.
5110 (b4_error, b4_error_at): Use b4_cat to send error directives directly
5111 to stdout so they don't become arguments to other macros. Update
5112 comments and add examples.
5113 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
5114 add examples.
5115 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
5116 after printing the error directive so that M4 doesn't report subsequent
5117 problems that are induced by this problem.
5118 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
5119 instead of just in them. Recognize @\n in both places. Both expand to
5120 the empty string. Needed by b4_cat.
5121 * tests/skeletons.at (Complaining during macro argument expansion):
5122 New test case.
5123 (Fatal errors make M4 exit immediately): New test case.
5124
d4bd2295
JD
51252007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
5126
5127 Implement --print-datadir.
5128 * src/getargs.c (usage): Mention.
5129 (PRINT_DATADIR_OPTION): New anonymous enum member.
5130 (long_options): Add entry for it.
5131 (getargs): Add case for it calling compute_pkgdatadir.
5132 * src/output.c (output_skeleton): Encapsulate data directory
5133 computation from here...
5134 (prepare): ... and from here...
5135 (compute_pkgdatadir): ... into this new function.
5136 * src/output.h (compute_pkgdatadir): Prototype.
5137
34cdeddf
JD
51382007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
5139
5140 * src/print-xml.c (escape_bufs): New static global variable
5141 replacing...
5142 (xml_escape_n): ... the static local variable buf here.
5143 (print_xml): Free memory for escape_bufs.
5144 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
5145
d782395d
JD
51462007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
5147
5148 Replace `%push-parser' and `%push-pull-parser' with
5149 `%define push_pull "push"' and `%define push_pull "both"'.
5150 `%define push_pull "pull"' is the default.
5151 * doc/bison.texinfo (Push Decl, Push Parser Function,
5152 Pull Parser Function, Parser Create Function, Parser Delete Function):
5153 Update declarations.
5154 (Decl Summary, Table of Symbols): Replace %push-parser and
5155 %push-pull-parser entries with a %define push_pull entry.
5156 * data/bison.m4 (b4_percent_define_check_values): New macro.
5157 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
5158 definitions...
5159 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
5160 definitions...
5161 * data/push.c: ... to here and compute them from the value of the
5162 %define variable push_pull.
5163 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
5164 parsing requests here...
5165 * data/yacc.c: ... hack this to switch to push.c any time
5166 b4_use_push_pull_flag or the %define variable push_pull is set. This
5167 will go away when we mv push.c yacc.c.
5168 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
5169 push parsing is not supported since unused %define variables are
5170 reported anyway.
5171 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
5172 * src/muscle_tab.h (muscle_percent_define_check_values): Update
5173 comments for consistency with b4_percent_define_check_values.
5174 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
5175 muscles.
5176 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
5177 Remove.
5178 (prologue_declaration): Remove %push-parser and %push-pull-parser
5179 rules.
5180 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
5181 * tests/calc.at: Update declarations.
5182 * tests/input.at (%define enum variables): New test case.
5183 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
5184 declaration.
5185 (Push Parsing: Multiple impure instances): Update declaration.
5186 (Push Parsing: Unsupported Skeletons): New test case.
5187 * tests/torture.at (Exploding the Stack Size with Alloca): Update
5188 declaration.
5189 (Exploding the Stack Size with Malloc): Update declaration.
5190
3f999f78
WP
51912007-09-24 Wojciech Polak <polak@gnu.org>
5192
5193 Add XSLT transformations.
5194
5195 * data/xslt/xml2dot.xsl: Transform XML into DOT.
5196 * data/xslt/xml2text.xsl: Transform XML into plain text.
5197 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
5198 * data/Makefile.am (xsltdir): New variable.
5199 (dist_xslt_DATA): Add xslt/*.xsl files.
5200
a4f75309
PE
52012007-09-23 Paul Eggert <eggert@cs.ucla.edu>
5202
5203 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
5204 Problem reported by Wojciech Polak.
5205 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
5206 (xml_printf): Undo change I made on 21 September; that is,
5207 indent 2 spaces, not 1.
5208
ad5feac4
JD
52092007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
5210
5211 Pacify ./configure --enable-gcc-warnings.
5212 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
5213 `char const *' instead of `char *'.
5214 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
5215 local variable `sep'.
5216
41d7a5f2
PE
52172007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5218
5219 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
5220 elsewhere.
5221 * src/print-xml.c: Prefer "const" after types; that's more consistent.
5222 (xml_printf): Indent just 1 space for level.
5223 (e_char, xlate_char): Remove.
5224 (xml_escape_string): Rewrite to avoid undefined behavior (used
5225 storage that was freed from the stack).
5226 (xml_escape_n): Don't bother checking for subscript error.
5227
3f999f78
WP
52282007-09-21 Wojciech Polak <polak@gnu.org>
5229
5230 Add Bison XML Automaton Report.
41d7a5f2
PE
5231
5232 Add support for an -x option to generate an XML report.
5233 It is not documented yet.
5234 * src/print-xml.c: New file.
5235 * src/print-xml.h: Likewise.
5236 * lib/timevar.def (TV_XML): New var.
5237 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
5238 * src/conflicts.c: Include print-xml.h.
5239 (solved_conflicts_xml_obstack): New var.
5240 (log_resolution, conflicts_solve, conflicts_free):
5241 Add support for XML report.
5242 (conflicts_output_val): New function.
5243 * src/conflicts.h (conflicts_output_val): New decl.
5244 * src/files.c (spec_xml_file): New var.
5245 (compute_output_file_names, output_file_names_free): Add XML support.
5246 * src/files.h (spec_xml_file): New decl.
5247 * src/getargs.c (xml_flag): New var.
5248 (usage, short_options, long_options, getargs): Add XML support.
5249 * src/getargs.h (xml_flag): New decl.
5250 * src/gram.c: Include print-xml.h.
5251 (rule_lhs_print_xml, rule_rhs_print_xml):
5252 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
5253 New functions.
5254 * src/gram.h: Declare external ones.
5255 * src/main.c: Include print-xml.h.
5256 (main): Add XML support.
5257 * src/reduce.c: Include print-xml.h.
5258 (reduce_xml): New function.
5259 * src/reduce.h: Declare it.
5260 * src/state.c: Include print-xml.h.
5261 (state_new): Add XML support.
5262 (state_rule_lookahead_tokens_print_xml): New function.
5263 * src/state.h: Declare it.
5264 (struct state): New member solved_conflicts_xml.
5265 * src/symtab.c (symbol_class_get_string): New function.
5266 * src/symtab.h: Declare it.
5267
6d8e724d
PE
52682007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5269
5270 * GNUmakefile: Switch to coreutils's version.
5271 * bootstrap: Likewise.
5272 * Makefile.cfg: Adjust to new GNUmakefile.
5273 * README-hacking: Likewise.
5274
5275 Import from gnulib:
5276
5277 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
5278 Bruno Haible <bruno@clisp.org>
5279
5280 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5281 and is a script that invokes bison. Tighten the code. Add comments.
5282
922bdd7f
JD
52832007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
5284
5285 Spell "boolean" as "Boolean". Reported by Akim Demaille.
5286 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
5287 * doc/bison.texinfo (Decl Summary): Fix.
5288 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
5289 * tests/input.at (Boolean %define variables): Update output.
5290 * tests/skeletons.at (%define boolean variables: invalid skeleton
5291 defaults): Rename to...
5292 (%define Boolean variables: invalid skeleton defaults): ... this and
5293 update output.
5294
1b17b01d
JD
52952007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
5296
5297 In impure push mode, don't allow more than one yypstate to be allocated
5298 since multiple impure parsers would corrupt yynerrs.
5299 * data/push.c (yypstate_allocated): New static global variable
5300 initialized to 0.
5301 (yypull_parse): If yypstate_new returns 0, don't report it as memory
5302 exhaustion if yypstate_allocated is 1, but still return 2.
5303 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
5304 already 1. Otherwise, set it to 1.
5305 (yypstate_delete): Set it to 0.
5306 * tests/push.at (Push Parsing: Multiple impure instances): New test
5307 case.
5308
9987d1b3
JD
53092007-08-17 Bob Rossi <bob@brasko.net>
5310
5311 * doc/bison.texinfo (Push Decl): Document the push parser.
5312 (Table of Symbols): Ditto.
5313 (Pure Decl): Ditto.
5314 (Decl Summary): Ditto.
5315 (Multiple Parsers, Push Parser Function, Pull Parser Function,
5316 Parser Create Function, Parser Delete Function):
5317 Add new push parser symbols.
5318 (Table of Symbols): Document push-parser, push-pull-parser,
5319 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
5320
f16b0819
PE
53212007-08-15 Paul Eggert <eggert@cs.ucla.edu>
5322
5323 Update to GPLv3.
5324 * doc/gpl-3.0.texi: New file.
5325 * doc/gpl.texi: Remove.
5326 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
5327 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
5328 * README-hacking, TODO, bootstrap, bootstrap.conf:
5329 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
5330 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
5331 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
5332 * data/lalr1.cc, data/lalr1.java, data/location.cc:
5333 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
5334 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
5335 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
5336 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
5337 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
5338 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
5339 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
5340 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
5341 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
5342 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
5343 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
5344 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
5345 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
5346 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
5347 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
5348 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
5349 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
5350 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
5351 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
5352 * src/complain.c, src/complain.h, src/conflicts.c:
5353 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
5354 * src/files.h, src/flex-scanner.h, src/getargs.c:
5355 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
5356 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
5357 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
5358 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
5359 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
5360 * src/print.c, src/print.h, src/print_graph.c:
5361 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
5362 * src/reduce.h, src/relation.c, src/relation.h:
5363 * src/revision.h, src/scan-code.h, src/scan-code.l:
5364 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
5365 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
5366 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
5367 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
5368 * tests/Makefile.am, tests/actions.at, tests/c++.at:
5369 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
5370 * tests/existing.at, tests/glr-regression.at:
5371 * tests/headers.at, tests/input.at, tests/java.at:
5372 * tests/local.at, tests/output.at, tests/push.at:
5373 * tests/reduce.at, tests/regression.at, tests/sets.at:
5374 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
5375 * tests/torture.at:
5376 Update to GPLv3.
5377
728c4be2
JD
53782007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5379
5380 Get rid of broken %no-parser, -n, and --no-parser implementation and
5381 documentation.
5382 * TODO: Don't mention them.
5383 * doc/bison.1: Likewise.
5384 * doc/bison.texinfo (Decl Summary): Likewise.
5385 (Bison Options): Likewise.
5386 (Option Cross Key): Likewise.
5387 * src/getargs.c (no_parser_flag): Remove global variable.
5388 (usage): Don't print description of -n and --no-parser.
5389 (long_options): Remove --no-parser entry here.
5390 (getargs): Remove -n case in the switch here.
5391 * src/getargs.h (no_parser_flag): Remove extern.
5392 * tests/regression.at (Web2c Actions): Remove comment that mentions
5393 --no-parser.
5394
5d31a216
JD
53952007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5396
5397 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
5398 name user variables starting with `yy'. Just pass NULL instead of a
5399 dummy local &yylval to yypush_parse.
5400 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
5401 starting with `yy'.
5402
a2ea208d
JD
54032007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
5404
5405 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
5406 true since it's then always used regardless of whether yyoverflow is
5407 defined. Reported by Christian Burger at
5408 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
5409 * THANKS: Add Christian Burger.
5410
91661ebb
JD
5411 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5412 node names: say "Decl Summary" not "Bison Declaration Summary".
5413
cbd50549
JD
54142007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
5415
5416 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
5417 determine whether this function has already complained about an invalid
5418 value for a %define boolean variable, don't check whether Bison has
5419 ever examined the value. As written, the check was a tautology.
5420 Instead, record and check for this complaint using a separate muscle.
5421
eb1b0740
JD
54222007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5423
5424 Fix push parsing memory leak reported by Brandon Lucia at
5425 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
5426 * THANKS: Add Brandon Lucia.
5427 * data/push.c (yypstate_delete): Free the stack if it was reallocated
5428 but the parse never completed and thus freed it.
5429 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
5430 * tests/testsuite.at: Include push.at.
5431 * test/push.at: New.
5432 (Push Parsing: Memory Leak for Early Deletion): New test case.
5433
9d774aff
JD
54342007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
5435
5436 Improve handling of multiple S/R conflicts in the same state and of S/R
5437 conflicts involving multiple reductions.
5438 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
5439 set for a state here or Bison will abort if it is reassigned on a
5440 later conflicted reduction in the same state.
5441 Similarly, don't finalize and assign the solved conflicts report here
5442 or it will be lost if it is reassigned on a later conflicted reduction
5443 in the same state.
5444 (set_conflicts): Instead, assign them both here after all S/R conflicts
5445 in the state have been fully examined.
5446 * src/print.c (shift_set): Rename to...
5447 (no_reduce_set): ... this.
5448 (print_reductions): Update for rename, and add %nonassoc error action
5449 tokens to no_reduce_set so that, when printing the first remaining
5450 reduction on an error action token, the reduction is enclosed in
5451 brackets.
5452 (print_results): Update for rename.
5453 * tests/conflicts.at (Solved conflicts report for multiple reductions
5454 in a state): New test case.
5455 (%nonassoc error actions for multiple reductions in a state): New test
5456 case.
5457
5458 * src/main.c (main): Don't depend on C99 features.
5459
10159d2a
JD
54602007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
5461
5462 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
5463 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
5464 uniwidth.
10159d2a 5465
953b3935
JD
54662007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
5467
5468 * bootstrap (slurp): Create target directories that don't exist.
5469 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
5470
6ce2d93a
JD
54712007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5472
5473 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
5474 than item number.
5475 * closure.c (closure): Likewise.
5476 * state.h (reductions): Comment sorting of rules.
5477 (state): Comment sorting of items.
5478
ce3448d5
JD
54792007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
5480
5481 Fix C++ test cases after recent Gnulib changes. Discussed starting at
5482 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
5483 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
5484 definition in order to avoid Gnulib headers since we don't use config.h
5485 here.
5486 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
5487 rather than AT_DATA so that config.h is included.
5488
8a86eef0
JD
54892007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
5490
5491 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
5492 instead of fprintf. Guard these functions with #if YYDEBUG instead of
5493 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
5494 and so that YYFPRINTF is guaranteed to be defined here.
5495
b1a81613
JD
54962007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5497
5498 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
5499 with...
5500 (muscle_percent_define_check_values): ... this more helpful function.
5501 Again, it's not used yet, but it will be.
5502 * src/muscle_tab.h: Likewise.
5503
71b61d4d
JD
5504 Improve some comments in parser table construction.
5505 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
5506 (generate_states): Don't mention ruleset, which is internal to closure.
5507 * src/closure.c (closure): Explain sorting of core and itemset, which
5508 is required for this function to behave correctly.
5509 * src/closure.h (closure): Mention sorting.
5510
2a6b783d
JD
55112007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
5512
5513 * src/lalr.c (state_lookahead_tokens_count): For code readability,
5514 move the check for disabled transitions to an aver since conflict
5515 resolution hasn't happened yet.
5516
5517 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
5518 labels a state as inconsistent just because it has error transitions.
5519 The original form of this check appeared in revision 1.1 of lalr.c,
5520 which was committed on 1991-12-21. Now (at least), changing the
5521 consistency label on such a state appears to have no useful effect in
5522 any of the places it is examined, which I enumerate below. The key
5523 point to understanding each item in this enumeration is that a state
5524 with an error transition is labelled consistent in the first place only
5525 if it has no rules, so the check cannot matter for states that have
5526 rules. (1) Labelling a state as inconsistent will cause set_conflicts
5527 to try to identify its conflicts, and a state must have *rules* to have
5528 conflicts. (2) Labelling a state as inconsistent will affect how
5529 action_row sets the default *rule* for the state. (3) Labelling a
5530 state as inconsistent will cause build_relations to add lookback edges
5531 to *rules* in that state.
5532 * src/state.h (struct state): Word the comment for member consistent
5533 more carefully.
5534
14462c2b
JD
55352007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
5536
5537 Don't depend on C99 features.
5538 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
5539 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
5540 * src/reader.c (check_and_convert_grammar): Fix for-loop.
5541 * src/state.c (state_mark_reachable_states): Fix for-loop.
5542 (state_remove_unreachable_states): Fix for-loop.
5543
5544 Don't widen struct state with member reachable just to temporarily
5545 record reachability. Instead, use a local bitset.
5546 * src/state.h (struct state): Remove member.
5547 * src/state.c (state_new): Don't initialize it.
5548 (state_mark_reachable_states): Rename to...
5549 (state_record_reachable_states): ... this, and use bitset.
5550 (state_remove_unreachable_states): Use bitset.
5551
5a43d418
JD
55522007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
5553
5554 * src/Makefile.am (yacc): Quote target action commands properly so
5555 that the yacc script isn't corrupt. Reported by Hans Aberg at
5556 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
5557
0c650a20
JD
5558 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
5559 the case of pure parsers. Reported by Frans Englich at
5560 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
5561 * THANKS: Add Frans Englich.
5562
61fee93e
JD
5563 * NEWS (2.3a+): In the %code entry, reference section `Bison
5564 Declaration Summary' from the manual now since the %code summary has
5565 moved there.
5566 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
5567 in the rules section must be terminated by semicolons.
5568
f124d423
JD
55692007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
5570
5571 Extend the front-end API for %define variables to more completely
5572 mirror the back-end. This will be useful in the future.
5573 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
5574 Update comments to mention the new front-end counterparts of these
5575 macros.
5576 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
5577 for muscle_string_decode and muscle_location_decode.
5578 (muscle_string_decode): New static function.
5579 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
5580 (muscle_percent_define_get, muscle_percent_define_ifdef): New
5581 functions.
5582 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
5583 muscle_percent_define_get to mimic the b4_percent_define_flag_if
5584 implementation more closely.
5585 (muscle_percent_define_invalid_value): New function.
5586 * src/muscle_tab.h (muscle_percent_define_get,
5587 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
5588 Prototype.
5589
75ad86ee
JD
55902007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
5591
5592 * NEWS (2.3a+): Mention yesterday's state-removal change.
5593 (2.3a): Remove the %language entry, which was added after 2.3a.
5594 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
5595 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
5596 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
5597 tests/existing.at: Update copyright date.
5598
5967f0cf
JD
55992007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
5600
5601 If conflict resolution makes states unreachable, remove those states,
5602 report rules that are then unused, and don't report conflicts in those
5603 states.
5604 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
5605 New global function.
5606 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
5607 function.
5608 * src/main.c (main): After conflict resolution, remove the unreachable
5609 states and update all data structures that reference states by number.
5610 * src/state.c (state_new): Initialize each state's reachable member to
5611 false.
5612 (state_mark_reachable_states): New static function.
5613 (state_remove_unreachable_states): New global function.
5614 * src/state.h (struct state): Add member bool reachable.
5615 (state_remove_unreachable_states): Prototype.
5616 * tests/conflicts.at (Unreachable States After Conflict Resolution):
5617 New test case.
5618 * tests/existing.at (GNU pic Grammar): Update test case output now that
5619 an unused rule is discovered.
5620
b09f4f48
JD
56212007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
5622
5623 Minor code cleanup in parser table construction.
5624 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
5625 (new_itemsets, save_reductions): Update for rename to nitemset.
5626 * src/closure.c (nritemset): Rename to...
5627 (nitemset): ... this since the "r" appears to meaningless and isn't
5628 used in the comments.
5629 (closure): Update for rename.
5630 * src/closure.h (nritemset): Update extern to...
5631 (nitemset): ... this.
5632 * src/lalr.c (LA): Fix a typo in comments.
5633 * src/print.c (print_core): Update for rename to nitemset.
5634 * src/print_graph.c (print_graph): Likewise.
5635 * src/state.h: Fix some typos in header comments.
5636
bbb44d83
PE
56372007-04-04 Paul Eggert <eggert@cs.ucla.edu>
5638
9b33de72
PE
5639 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
5640 still sticks to ASCII. Sorry!
5641
bbb44d83
PE
5642 * README-hacking: New file, taken mostly from coreutils, with changes
5643 for Bison. Contains much of the contents of:
5644 * README-cvs: Remove.
5645 * bootstrap: Sync from gnulib.
5646 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
5647 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
5648
29553547
JD
56492007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
5650
5651 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
5652 Setzer.
5653 (Java Differences): Fix some typos.
5654 * THANKS: Add Sebastian Setzer.
5655
01b477c6
PB
56562007-03-07 Paolo Bonzini <bonzini@gnu.org>
5657
730739e4
AD
5658 * data/java.m4 (b4_single_class_if): Remove.
5659 (b4_abstract_if): Look at "%define abstract".
5660 (b4_lexer_if): New.
5661 (b4_union_name): Rename...
5662 (b4_yystype): ... to this. Map to "%define stype".
5663 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
5664 b4_maybe_throws): Fix quoting.
5665 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
5666 * data/lalr1.java (Lexer interface): Always define.
5667 (Lexer interface within parser class): Remove.
5668 (YYLexer class): New, used when "%code lexer" is present.
5669 (constructor): When "%code lexer" is used, pass %lex-param
5670 to the lexer constructor.
5671 (yylex, yyparse): Remove %lex-param from method invocations
5672 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
5673
5674 * doc/bison.texinfo (Java Bison Interface): Mention "%define
5675 abstract". Rename "%define union_name" to "%define stype".
5676 Rename method names according to previous patch.
5677 (Java Scanner Interface): Describe "%code lexer" instead of
5678 "%pure-parser" and "%define single_class".
5679 (Java Differences): Mention "%code lexer".
5680
5681 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
5682 Include scanner here, using macros from tests/local.at.
5683 (AT_DATA_CALC_Y): Remove final argument.
5684 (_AT_CHECK_JAVA_CALC): Likewise.
5685 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
5686 of %locations and %error-verbose.
5687 (main): Test with and without %lex-param.
5688 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
5689 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 5690
122bea3a
JMG
56912007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5692
5693 DJGPP spefic issue. Inhibit the use of disallowed characters for
5694 file name genertion on Win98, WinXP, etc. These are |<>":?*\
5695 and concern testsuite case 46.
5696 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
5697 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
5698 * djgpp/config.bat: Inhibit the use of disallowed characters.
5699
9611cfa2
JD
57002007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5701
5702 Miscellaneous %define and %code cleanup.
5703 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
5704 values are interpreted.
5705 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
5706 documentation a little more.
5707 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
5708 muscle_percent_define_insert, muscle_percent_code_grow): New
5709 functions/macros.
5710 * src/muscle_tab.h (muscle_percent_define_insert,
5711 muscle_percent_code_grow): Prototype.
5712 * src/parse-gram.y (prologue_declaration): Use
5713 muscle_percent_define_insert and muscle_percent_code_grow when parsing
5714 %define and %code directives.
5715
5716 Make it easy to share %define boolean variables between the front-end
5717 and back-end. Though not used yet, this will be useful in the future.
5718 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
5719 Bison uses of names rather than just skeleton uses of names.
5720 (b4_percent_define_get, b4_percent_define_ifdef): Rename
5721 b4_percent_define_skeleton_variables(VARIABLE) to
5722 b4_percent_define_bison_variables(VARIABLE).
5723 (b4_percent_code_get, b4_percent_code_ifdef): Rename
5724 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
5725 b4_percent_code_bison_qualifiers(QUALIFIER).
5726 (b4_check_user_names_wrap): Update for renames.
5727 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
5728 muscle_percent_define_default): New functions mimicking
5729 b4_percent_define_flag_if and b4_percent_define_default.
5730
5731 For %define variables, report locations for invalid values and
bbb44d83 5732 redefinitions.
9611cfa2
JD
5733 * data/bison.m4 (b4_percent_define_flag_if): Read
5734 b4_percent_define_loc(VARIABLE) to report the location of an invalid
5735 value for VARIABLE.
5736 (b4_percent_define_default): Save a special location in
5737 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
5738 must later be reported as invalid.
5739 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
5740 functions.
5741 (muscle_percent_define_insert): Record the location of VARIABLE in
5742 muscle percent_define_loc(VARIABLE), and use it to report the previous
5743 location for a redefinition.
5744 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
5745 (muscle_percent_define_default): Update like b4_percent_define_default.
5746 (muscle_grow_user_name_list): Rename to...
5747 (muscle_user_name_list_grow): ... this for consistency and use
5748 muscle_location_grow.
5749 * src/muscle_tab.h (muscle_location_grow): Prototype.
5750 * tests/input.at (%define errors): Update expected output.
5751 * tests/skeletons.at (%define boolean variables: invalid skeleton
5752 defaults): New test case.
5753
0bf92491
JD
57542007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
5755
5756 * src/print.c (lookahead_set, state_default_rule): Remove.
5757 (print_reductions): Replace state_default_rule invocation with
5758 equivalent use of yydefact, which was computed in token_actions in
5759 tables.c.
5760 (print_results): Don't allocate lookahead_set.
5761
d3b12988
PB
57622007-02-27 Paolo Bonzini <bonzini@gnu.org>
5763
5764 * data/lalr1.java: Prefix all private members with yy.
5765
f57a7536
JD
57662007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
5767
5768 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 5769 Sebastien Fricker at
f57a7536 5770 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 5771 * THANKS: Add Sebastien Fricker.
f57a7536
JD
5772 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
5773 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
5774 accept a variable number of arguments.
5775
6404a5bf
JD
57762007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
5777
5778 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
5779
e4e09639
JMG
57802007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5781
5782 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
5783 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
5784 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
5785
d7e0a1a7
PE
57862007-02-11 Paul Eggert <eggert@cs.ucla.edu>
5787
5788 Undo my 2007-02-07 change, switching back to the c-strcase module
5789 introduced in the 2007-02-03 change. Bruno Haible reported that
5790 the 2007-02-07 change would be dangerous in Turkish if we add a
5791 language whose name contains "i", since "i" is not lowercase "I"
5792 in Turkish.
5793 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
5794 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
5795 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
5796 * m4/.cvsignore: Remove strcase.m4.
5797 * src/getargs.c: Revert 2007-02-07 change, as follows.
5798 Include c-strcase.h.
5799 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
5800
deee93a1
JD
58012007-02-11 Bruno Haible <bruno@clisp.org>
5802
5803 Enable the Java related testsuite tests when the only Java compiler
5804 found is a gcj < 4.3. Discussed at
5805 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
5806 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
5807
574add85
JD
58082007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
5809
5810 * data/Makefile.am: Update copyright date.
5811 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
5812 yypstate_new returns NULL.
5813 (yypstate_new): Return NULL if malloc does.
5814 * src/reader.c (packgram): Move translation of rule actions from the
5815 beginning of packgram to...
5816 (check_and_convert_grammar): ... here right before packgram is invoked
5817 so it's easier to write more complete comments, and remove redundant
5818 code.
5819
e785ccf7
JD
58202007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
5821
5822 As in semantic actions, make @$ in %initial-action, %destructor, and
5823 %printer imply %locations.
5824 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
5825 scanning @$.
5826 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
5827 (@$ in %initial-action implies %locations,
5828 @$ in %destructor implies %locations,
5829 @$ in %printer implies %locations): ... these new test cases.
5830
1cfe1ed7
PE
58312007-02-07 Paul Eggert <eggert@cs.ucla.edu>
5832
5833 Undo most of the 2007-02-03 change, switching to the strcase module
5834 now that gnulib strcase has been fixed.
5835 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
5836 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
5837 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
5838 * m4/.cvsignore: Add strcase.m4.
5839 * src/getargs.c: Revert 2007-02-03 change, as follows.
5840 Don't include c-strcase.h.
5841 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
5842 strcasecmp has "unspecified behavior" outside the POSIX locale,
5843 but it works fine in practice if at least one argument is ASCII,
5844 as is the case in Bison.
5845
0049ec86
PB
58462007-02-07 Paolo Bonzini <bonzini@gnu.org>
5847
5848 * tests/java.at: Skip tests if only one of javac/java is present.
5849 Reported by Joel E. Denny.
5850 * tests/atlocal.in: Adjust copyright years.
5851
58522007-02-05 Paolo Bonzini <bonzini@gnu.org>
5853
5854 * data/lalr1.java (Stack): Work around old verifiers that disallow
5855 access to the private fields of an inner class, from the outer class.
5856 We can make Stack's fields public because user code doesn't have access
5857 to the instance of Stack used by parse(). Reported by Paul Eggert.
5858
2c2b7220
PE
58592007-02-03 Paul Eggert <eggert@cs.ucla.edu>
5860
5861 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
5862 the right spot for these files?
5863 * bootstrap.conf (gnulib_modules): Add c-strcase.
5864 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
5865 c-strncasecmp.c.
5866 * src/getargs.c: Include c-strcase.h.
5867 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
5868 to avoid unspecified behavior.
5869
b2b81dae
JD
58702007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
5871
5872 * doc/bison.texinfo (Decl Summary): Correct typo.
5873
c1d19e10
PB
58742007-01-30 Paolo Bonzini <bonzini@gnu.org>
5875
5876 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
5877 Complain if the value does not match empty, "true" or "false".
5878 * data/c++.m4: Adjust default definitions of %define variables.
5879 * data/java.m4: Adjust default definitions of %define variables.
5880 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
5881 to above behavior.
5882 * tests/input.at (Boolean %define variables): Test new behavior.
5883
8405b70c
PB
58842007-01-29 Paolo Bonzini <bonzini@gnu.org>
5885
5886 * NEWS: Mention java.
5887 * TODO: Remove things that are done.
5888 * bootstrap.conf: Add javacomp-script and javaexec-script.
5889 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
5890
5891 * data/Makefile.am: Add new files.
5892 * data/java-skel.m4: New.
5893 * data/java.m4: New.
5894 * data/lalr1.java: New.
5895
5896 * doc/bison.texinfo: Put "A Complete C++ Example" under
5897 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
5898 under Other Languages.
5899
5900 * src/getargs.c (valid_languages): Add Java.
5901 * src/getargs.h (struct bison_language): Update size of string fields.
5902
5903 * tests/Makefile.am: Add java.at.
5904 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
5905 * tests/java.at: New.
5906 * tests/testsuite.at: Include it.
5907
3eb82471
JD
59082007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
5909
5910 Clean up.
5911 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
5912 at_directive_argv arguments so these no longer have to be global
5913 variables. Also, update the implementation for the following changes.
5914 (fail_for_at_directive_too_many_args,
5915 fail_for_at_directive_too_few_args): Add at_directive_name argument.
5916 (at_directive_name): Remove as at_directive_argv[0] will be used for
5917 this now.
5918 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
5919 for the directive name.
5920 (at_directive_argc, at_directive_argv): Make these local within
5921 skel_lex instead of global.
5922 (INITIAL): Update directive start action for above changes.
5923 (SC_AT_DIRECTIVE_ARG): Rename to...
5924 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
5925 (SC_AT_DIRECTIVE_SKIP_WS): Update.
5926 (scan_skel): Move yylex_destroy to...
5927 (skel_scanner_free): ... here.
5928 * tests/skeletons.at (installed skeleton file name): Rename to...
5929 (installed skeleton file names): ... this.
5930
148d66d8
JD
59312007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
5932
5933 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5934 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
5935 Summary" not "Directives".
5936 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
5937 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
5938 since the former is now the more complete one.
5939 (Prologue Alternatives): Likewise and do the same for %defines.
5940 (Table of Symbols): Add summary of %code, add summary of %define, and
5941 move full %code documentation to...
5942 (Decl Summary): ... here for consistency with other entries in these
5943 sections.
5944 Move %define entry in order to keep this list alphabetized.
5945 Reword %define entry a little to put less emphasis on the skeleton
5946 concept, which most users shouldn't have to think about.
5947
665f0c24
PE
59482007-01-26 Paul Eggert <eggert@cs.ucla.edu>
5949
5950 Adjust to recent gnulib changes.
5951 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
5952 Add string.h, string_.h, unistd_.h, wchar_.h.
5953 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
5954 * src/system.h: Don't include <stpcpy.h>; this is now done by
5955 <string.h>.
5956
592d0b1e
PB
59572007-01-23 Paolo Bonzini <bonzini@gnu.org>
5958
5959 Simplify implementation of unqualified %code, implement macros for
5960 uniform treatment of boolean %define flags. Document %define.
5961 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
5962 b4_percent_code_ifdef): New.
5963 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
5964 * data/c++.m4: Define default value for global_tokens_and_yystype.
5965 * data/glr.cc: Likewise.
5966 * data/location.cc: Use b4_percent_define_flag_if.
5967
148d66d8 5968 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
5969
5970 * src/parse-gram.y (Unqualified %code): Change muscle name to
5971 b4_percent_code().
5972 (content.opt): Default to empty.
5973
a7867f53
JD
59742007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
5975
5976 Implement support for relative and absolute skeleton file names.
5977 Discussed starting at
5978 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
5979 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
5980 (Bison Options): Document in --skeleton entry.
5981 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
5982 full_skeleton can't necessarily hold all of pkgdatadir.
5983 If the specified skeleton file name contains a `/', don't prepend
5984 pkgdatadir.
5985 * src/parse-gram.y (prologue_declaration): If the specified skeleton
5986 file name contains a `/', prepend the grammar file directory.
5987 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
5988 * skeletons.at: New file.
5989 (relative skeleton file names): New test case.
5990 (installed skeleton file names): New test case.
5991 * tests/testsuite.at: Include skeletons.at.
5992
5993 * bootstrap: Update copyright to 2007.
5994
830c9b18
PB
59952007-01-17 Paolo Bonzini <bonzini@gnu.org>
5996
5997 * bootstrap: Remove occurrences of .#bootmp from the files.
5998
a8c2e813
AD
59992007-01-17 Akim Demaille <akim@epita.fr>
6000
6001 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
6002 nonterminals.
6003 Use per-type %printer.
6004
279cabb6
JD
60052007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6006
6007 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
6008 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6009 djgpp/config.site, src/files.c, src/files.h, src/main.c,
6010 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
6011 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
6012 tests/glr-regression.at, tests/input.at, tests/local.at,
6013 tests/output.at, tests/torture.at: Update copyright to 2007.
6014
bb32f4f2
AD
60152007-01-16 Akim Demaille <akim@epita.fr>
6016
6017 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
6018 error code.
6019 (Calc++ Scanner): Exit with failure if we can't open the input
6020 file.
6021 Accept "-" standing for stdin.
6022 (Calc++ Top Level): Print the result only if the parsing was
6023 successful.
6024
7cff04b5
AD
60252007-01-16 Akim Demaille <akim@epita.fr>
6026
6027 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
6028
a4e25e1d
JD
60292007-01-15 Paolo Bonzini <bonzini@gnu.org>
6030 and Joel E. Denny <jdenny@ces.clemson.edu>
6031
6032 Clean up %define and %code implementation in M4 some. Most
6033 importantly, rename all related macros to be in the b4_percent_define
6034 and b4_percent_code namespaces. Also, complete support for `.' in
6035 %define variable names and %code qualifiers.
6036 * data/bison.m4 (b4_check_user_names): Check for special
6037 "SKELETON-NAMESPACE(name)" macros instead of using two nested
6038 m4_foreach loops.
6039 (b4_get_percent_define, b4_get_percent_code): Rename to...
6040 (b4_percent_define_get, b4_percent_code_get): ... these.
6041 Extend documentation with examples.
6042 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
6043 b4_percent_define_skeleton_variables and
6044 b4_percent_code_skeleton_qualifiers.
6045 Expect any value for the %define variable `foo' to be stored in the
6046 macro named `b4_percent_define(foo)'; expect any %code blocks for the
6047 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
6048 expect any unqualified %code blocks to be stored in a macro named
6049 `b4_percent_code_unqualified'.
6050 Use m4_indir so that %define variable names and %code qualifiers can
6051 contain `.', which is allowed by the grammar parser.
6052 (b4_percent_define_default): New macro to set a default value for a
6053 %define variable.
6054 (m4_wrap): Update wrapped code, and fix some underquoting.
6055 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
6056 Expect grammar uses of %define variables and %code qualifiers to be
6057 defined in b4_percent_define_user_variables and
6058 b4_percent_code_user_qualifiers.
6059 * data/c++.m4: Use b4_percent_define_default rather than
6060 m4_define_default. Fix some underquoting. Skeleton usage of %define
6061 variable define_location_comparison now implies skeleton usage of
6062 %define variable filename_type.
6063 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6064 data/push.c, data/yacc.c: Update macro names.
6065 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
6066 muscle names.
6067
e37c665c
JMG
60682007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6069
6070 DJGPP specific issues.
6071
6072 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
6073 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
6074
7d2d521f
JD
60752007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6076
6077 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
6078 run parsers in all tests so that Valgrind is invoked during
6079 maintainer-check-valgrind.
6080 (Duplicate representation of merged trees): Free all semantic values.
6081 (Duplicated user destructor for lookahead): Likewise.
6082
e0ac9b4b
JD
60832007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6084
6085 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
6086 command-line prefix.
6087 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
6088 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
6089 miss Valgrind messages.
6090 (Exploding the Stack Size with Malloc): Likewise.
6091
78143faa
JD
60922007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6093
6094 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
6095 locals. Reported by Juan Manuel Guerrero at
6096 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
6097 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
6098 Fix some indentation also.
6099 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
6100 explaining this issue.
6101
7ecec4dd
JD
61022007-01-09 Paolo Bonzini <bonzini@gnu.org>
6103 and Joel E. Denny <jdenny@ces.clemson.edu>
6104
6105 Simplify union and prologue handling, and escape union and lex/parse
6106 params with digraphs.
6107 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
6108 values to the empty string since these are no longer guaranteed
6109 initialized by the front-end.
6110 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
6111 braces around b4_user_stype since this is no longer done by the
6112 front-end.
6113 * src/files.c, src/files.h (pre_prologue_obstack,
6114 post_prologue_obstack): Remove.
6115 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
6116 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
6117 with digraphs. This fixes lex params and parse params.
6118 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
6119 * src/output.c (prepare): Remove muscle insertion of the prologues.
6120 (output): Remove freeing of pre_prologue_obstack and
6121 post_prologue_obstack.
6122 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
6123 than prologue_augment for prologue parsing so you don't need prologue
6124 obstacks.
5c80250c
JD
6125 (grammar_declaration): For %union RHS, use `braceless' instead of
6126 "{...}" so that braces are already stripped and code is escaped with
6127 digraphs.
7ecec4dd
JD
6128 * src/reader.c (prologue_augment): Remove.
6129 (reader): Remove initialization of pre_prologue_obstack and
6130 post_prologue_obstack.
6131 * src/reader.h (prologue_augment): Remove.
6132
6133 * data/c.m4: Remove stray parenthesis.
6134
16dc6a9e
JD
61352007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6136
6137 Remove quotes from variables names in %define directives and from
6138 qualifiers in %code directives, and restrict the characters that are
6139 allowed in them to M4-friendly ones. For %define, continue to support
6140 the quoted form as a deprecated feature. Discussed starting at
6141 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
6142 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
6143 %code.
6144 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
6145 (Decl Summary): In %defines entry, update mention of `%code requires'
6146 and `%code provides'.
16dc6a9e
JD
6147 (C++ Location Values): Update %define uses.
6148 (Calc++ Parser Interface): Likewise.
6149 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 6150 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
6151 * src/parse-gram.y (prologue_declaration): For %define variables, use
6152 `variable' instead of `STRING'.
6153 (grammar_declaration): For %code qualifiers, use `ID' instead of
6154 `STRING'.
6155 (variable): New nonterminal that takes an `ID' or a `STRING'.
6156 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
6157 and %define uses.
6158 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
6159 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
6160 (%define errors): Update %define uses.
6161
e9813cd4
JD
61622007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6163
6164 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
6165 instead of muscle_insert for %define values so that M4-special
6166 characters are replaced with digraphs.
6167 * tests/input.at (%define errors): Extend to check weird values.
6168
6afc30cc
JD
61692007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6170
6171 Instead of having skeletons declare all valid %define variables and
6172 %code qualifiers, provide macros that retrieve the associated values
6173 and build these lists automatically. Thus Bison will now warn when a
6174 variable or qualifier is not used by the skeleton in the current
6175 invocation regardless of whether it might sometimes be used by that
6176 skeleton in other invocations. Also, move all %define value macros to
6177 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
6178 form, which is replaced by %code.
6179 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
6180 (b4_check_user_names): ... this, and change the series of valid name
6181 arguments to a single list argument for names used in the skeleton
6182 similar to the existing list argument for names used in the grammar.
6183 Warn instead of complaining.
6184 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
6185 values and %code code, to format %code code properly, and to build
6186 lists of all %define variables and %code qualifiers used in the
6187 skeleton: b4_skeleton_percent_define_variables and
6188 b4_skeleton_percent_code_qualifiers.
6189 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
6190 Remove, and...
6191 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
6192 the skeleton names lists can finish building first. In place of
6193 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
6194 expect the lists b4_user_percent_define_variables and
6195 b4_user_percent_code_qualifiers.
6196 * data/c++.m4: Where setting default values for b4_parser_class_name,
6197 b4_location_type, b4_filename_type, b4_namespace, and
6198 b4_define_location_comparison, update their names to the
6199 b4_percent_define_ namespace.
6200 * data/glr.c: Don't use b4_check_percent_define_variables and
6201 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6202 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
6203 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 6204 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
6205 * data/location.cc: Use b4_get_percent_define.
6206 * data/push.c: Don't use b4_check_percent_define_variables and
6207 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6208 * data/yacc.c: Likewise, and don't call m4_exit in
6209 b4_use_push_for_pull_if or m4_wrap code will never execute.
6210 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
6211 Rename to...
6212 (muscle_grow_user_name_list): ... this for consistency with the
6213 terminology used in bison.m4.
6214 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
6215 %define variable names, and rename muscle used_percent_define_variables
6216 to user_percent_define_variables.
6217 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
6218 user_percent_code_qualifiers.
6219 (content): Remove.
6220 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
6221 {CODE} form is no longer accepted.
6222 * tests/input.at (Reject bad %code qualifiers): Rename to...
6223 (Reject unused %code qualifiers): ... this, and update test output.
6224 (%define error): Update test output.
6225
7eb8a0bc
JD
62262007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
6227
6228 Check for unrecognized %define variables similar to checking for
6229 unrecognized %code qualifiers. Check for redefined %define variables.
6230 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
6231 generalizes...
6232 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
6233 (b4_check_percent_define_variables): New, also wraps it.
6234 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
6235 variables using b4_check_percent_define_variables.
6236 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
6237 all those exercised in the test suite and all those listed in the
6238 `Default values' section of c++.m4. Are there others?
6239 * data/push.c, data/yacc.c: Declare no valid %define variables.
6240 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
6241 similar to muscle_find, but it works even when the muscle stores a
6242 const value.
6243 (muscle_grow_used_name_list): New function for constructing the used
6244 name list muscles that b4_check_for_unrecognized_names requires.
6245 * src/parse-gram.y (prologue_declaration): Warn if a variable is
6246 %define'd more than once. Define the b4_used_percent_define_variables
6247 muscle with muscle_grow_used_name_list.
6248 (grammar_declaration): Abbreviate %code code with
6249 muscle_grow_used_name_list.
6250 * tests/input.at (%define errors): New.
6251
3fc65ead
JD
62522007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6253
6254 Provide warn_at, complain_at, and fatal_at function callbacks to the
6255 skeletons, and use this for %code qualifier complaints.
6256 * data/bison.m4 (b4_error_at): New, invoked by...
6257 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
6258 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
6259 @fatal_at(...@) directives.
6260 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
6261 qualifiers in b4_used_percent_code_qualifiers and to use
6262 b4_complain_at.
6263 * src/location.c, src/location.h (boundary_set_from_string): New global
6264 function.
6265 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
6266 function.
6267 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
6268 to b4_used_percent_code_qualifiers.
6269 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
6270 function.
6271 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
6272 (lineno): Rename to...
6273 (out_lineno): ... this so I don't misunderstand it again.
6274 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
6275 here; these newlines are in the input but not the output file.
6276 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
6277 (at_directive_perform): ... this new static function, and add handling
6278 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
6279 directives.
6280 * tests/input.at (Reject bad %code qualifiers): Update test output with
6281 locations and extend.
6282
6283 * tests/output.at (Output file name: [, Output file name: ]): Remove
6284 bogus comment about these tests failing.
6285
1c7b7e1d
JD
62862007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6287
6288 Clean up b4_check_percent_code_qualifiers a little.
6289 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
6290 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
6291 documentation and add examples.
6292 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
6293 qualifiers here.
6294
08af01c2
JD
62952007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6296
6297 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
6298 unreliable -- especially when they're hidden inside another macro.
6299 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
6300 data/c.m4: Remove m4_divert(-1).
6301 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6302 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
6303 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 6304 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
6305 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
6306 pushed and popped by m4sugar, should be first on the stack.
6307
6308 Provide warn, complain, and fatal function callbacks to the skeletons.
6309 This provides more flexibility than m4_fatal, improves the error
6310 message format, and captures messages for translation. Discussed
6311 starting at
6312 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
6313 * data/bison.m4 (b4_error): New, invoked by...
6314 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
6315 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
6316 directives. Because these M4 macros might be called when the current
6317 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
6318 the previous removal of uses of m4_divert, which caused trouble.
6319 (b4_check_percent_code_qualifiers): Use b4_complain instead of
6320 m4_fatal to report unrecognized %code qualifiers.
6321 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
6322 push parser requests.
6323 * data/glr.c: Use b4_complain instead of m4_fatal to report
6324 non-deterministic push parser requests.
6325 Update @output usage to @output(...@) form.
6326 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
6327 report missing %defines. Update @output usage to @output(...@) form.
6328 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
6329 @output(...@) form.
6330 * src/main.c (main): Invoke skel_scanner_free.
6331 * src/scan-skel.h (skel_scanner_free): Prototype new function.
6332 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
6333 obstack_for_string from flex-scanner.h.
6334 (YY_DECL): Use to declare skel_lex static.
6335 (decode_at_digraphs): Remove; now handled in the new
6336 SC_AT_DIRECTIVE_ARG start condition.
6337 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
6338 functions.
6339 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
6340 at_directive_argv): New static globals.
6341 (INITIAL): Use fail_for_invalid_at.
6342 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
6343 recognize the start of a generalized `@directive(...@)' form and
6344 start...
6345 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
6346 directive args (using the new obstack_for_string), to decode the
6347 contained @ diagraphs, and to perform the directive. It recognizes
6348 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
6349 @output(...@).
6350 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
6351 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
6352 `@,'.
6353 (scan_skel): Initialize obstack_for_string on the first call.
6354 (skel_scanner_free): New function to free obstack_for_string.
6355 * tests/input.at (Reject bad %code qualifiers): Update test output.
6356
8e0a5e9e
JD
63572007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
6358
6359 Consolidate the 4 prologue alternative directives (%code, %requires,
6360 %provides, and %code-top) into a single %code directive with an
6361 optional qualifier field. Discussed at
6362 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
6363 * NEWS (2.3a+): Rewrite the existing entry for the prologue
6364 alternatives.
6365 * doc/bison.texinfo (Prologue Alternatives): Update.
6366 (Decl Summary): Update to %code "requires" and %code "provides".
6367 (Calc++ Parser): Update to %code "requires".
148d66d8 6368 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
6369 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
6370 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
6371 are replaced by b4_percent_code_provides and b4_percent_code_requires,
6372 which are skeleton-specific.
6373 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
6374 declare what %code qualifiers it supports and to complain if any other
6375 qualifiers were used in the grammar.
6376 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
6377 and b4_user_code([b4_percent_code_provides]) in place of
6378 b4_user_requires and b4_user_provides.
6379 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
6380 Add b4_user_code([b4_percent_code_top]) and
6381 b4_user_code([b4_percent_code]).
6382 Invoke b4_check_percent_code_qualifiers.
6383 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6384 PERCENT_REQUIRES): Remove.
6385 (grammar_declaration): Remove RHS's for %code-top, %provides, and
6386 %requires. Rewrite the %code RHS as the unqualified form defining the
6387 muscle b4_percent_code. Add another RHS for the qualified %code form,
6388 which defines muscles of the form b4_percent_code_QUALIFIER and the
6389 b4_used_percent_code_qualifiers muscle.
6390 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6391 PERCENT_REQUIRES): Remove.
6392 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
6393 %code "requires" and %code "provides".
6394 * tests/input.at (Reject bad %code qualifiers): New.
6395
95021767
JD
63962007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6397
6398 Use the new code_props interface for destructors and printers.
6399 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
6400 printer_location members, and change the type of the destructor and
6401 printer members to code_props.
6402 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
6403 symbol_printer_get, semantic_type_destructor_set,
6404 semantic_type_printer_set, default_tagged_destructor_set,
6405 default_tagless_destructor_set, default_tagged_printer_set,
6406 default_tagless_printer_set): Use code_props in arguments and return
6407 types in place of char const * and location.
6408 (symbol_destructor_location_get, symbol_printer_location_get): Remove
6409 since the locations are now contained in the return of
6410 symbol_destructor_get and symbol_printer_get.
6411 * src/output.c (symbol_destructors_output, symbol_printers_output):
6412 Replace with...
6413 (symbol_code_props_output): ... this to eliminate duplicate code.
6414 (output_skeleton): Update to use symbol_code_props_output.
6415 * src/reader.c (symbol_should_be_used): Update use of
6416 symbol_destructor_get.
6417 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6418 Update uses of the various _destructor_set and _printer_set functions.
6419 * src/symtab.c: (default_tagged_destructor_location,
6420 default_tagless_destructor_location, default_tagged_printer_location,
6421 default_tagless_printer_location): Remove since we...
6422 (default_tagged_destructor, default_tagless_destructor,
6423 default_tagged_printer, default_tagless_printer): ... change the type
6424 of these to code_props.
6425 (symbol_new, semantic_type_new, symbol_destructor_set,
6426 semantic_type_destructor_set, symbol_destructor_get,
6427 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
6428 symbol_check_alias_consistency, default_tagged_destructor_set,
6429 default_tagless_destructor_set, default_tagged_printer_set,
6430 default_tagless_printer_set): Update.
6431 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
6432 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
6433 code_props members.
6434 (symbol_print): Use SYMBOL_CODE_PRINT.
6435
f6857bbf
JD
64362007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6437
6438 Use the new code_props interface for rule actions.
6439 * src/symlist.h (symbol_list): Replace action, action_location, and
6440 used members with a code_props action_props member.
6441 * src/reader.c (symbol_should_be_used, grammar_rule_check,
6442 grammar_midrule_action, grammar_current_rule_merge_set,
6443 grammar_current_rule_symbol_append, packgram): Update.
6444 * src/scan-code.h (translate_rule_action): Remove, no longer used.
6445 * src/scan-code.l (handle_action_dollar): Update.
6446 (translate_rule_action): Remove, no longer used.
6447 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
6448
7c0c6181
JD
64492007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6450
6451 Use the new code_props interface in parse-gram.y.
6452 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
6453 Update all uses of translate_* functions to use the new code_props
6454 interface and to use gram_scanner_last_string_free and
6455 code_scanner_last_string_free where possible.
6456 (grammar_declaration): symbol_list_destructor_set and
6457 symbol_list_printer_set now perform the translation, so don't do it
6458 here. Use gram_scanner_last_string_free where possible.
6459 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
6460 translate_code): Remove, no longer used.
6461 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
6462 symbol_list_printer_set): Perform code translation here rather than
6463 depending on the caller to do so.
6464
6465 * src/symlist.h (struct symbol_list): Correct some documentation typos.
6466 * src/scan-gram.h (gram_last_string): Remove declaration.
6467 * src/scan-gram.l (last_string): Declare it static.
6468
28e52c0d
JD
64692007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6470
6471 Encapsulate code properties and related functionality for the various
6472 destructors, printers, and actions into a code_props structure and
6473 interface. This patch merely implements code_props in scan-code.h and
6474 scan-code.l. Future patches will rewrite other modules to use it.
6475 Discussed starting at
6476 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
6477 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
6478 consistently initialize const structs that have an empty location
6479 field.
6480 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
6481 to ensure consistency.
6482 * src/scan-code.h (code_props): New structure.
6483 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
6484 function, macro, and const global variable for initializing a
6485 code_props with no code.
6486 (code_props_plain_init, code_props_symbol_action_init,
6487 code_props_rule_action_init, code_props_translate_code): The rest of
6488 the new code_props functional interface. Among other things, the init
6489 functions set the code_props kind field so that
6490 code_props_translate_code will know whether to behave like
6491 translate_symbol_action, translate_rule_action, or translate_code.
6492 These old translate functions must remain until all other modules are
6493 updated to use the new code_props interface.
6494 (code_scanner_last_string_free): New function similar to
6495 gram_scanner_last_string_free.
6496 (code_scanner_free): Add documentation.
6497 * src/scan-code.l: Implement the new interface.
6498 (code_lex): Make it static, add a code_props* argument, and remove the
6499 rule argument.
6500 (last_string): New static global similar to the one in scan-gram.l.
6501 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
6502 instead of rule.
6503 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
6504 code_props since Bison may one day use this information for destructors
6505 and printers.
6506 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
6507 (handle_action_dollar): Use symbol_list_n_get and set used flag
6508 directly since symbol_list_n_used_set is removed.
6509 (translate_action): Add a code_props* argument and remove the rule,
6510 action, and location arguments. Pass the code_props* on to code_lex.
6511 (translate_rule_action, translate_symbol_action, translate_code):
6512 Rewrite as wrappers around the new code_props interface.
6513 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
6514 it would eventually need to break the encapsulation of code_props.
6515
96034983
JD
65162007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
6517
6518 * etc/.cvsignore: New.
6519
945e396c
JD
65202007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
6521
6522 Add maintainer-push-check to run maintainer-check using push parsing in
6523 place of pull parsing where available.
6524 * Makefile.am (maintainer-push-check): New.
6525 * data/bison.m4 (b4_use_push_for_pull_if): New.
6526 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
6527 appropriately based on their existing values.
6528 (yypush_parse): Don't print push-parser-specific diagnostics if push
6529 parsing is being used in place of pull parsing.
6530 * data/yacc.c: If push parsing should replace pull parsing, redirect to
6531 push.c.
6532 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
6533 variable, and insert b4_use_push_for_pull_flag into muscles.
6534 * tests/Makefile.am (maintainer-push-check): New.
6535
7d596384
JD
65362006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
6537
6538 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
6539 (whether successful or failed) so that yypush_parse can be invoked
6540 again to start a new parse using the same yypstate.
6541 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
6542 check multiple yypull_parse invocations on the same yypstate. For pull
6543 mode, extend to check multiple yyparse invocations.
6544 (Exploding the Stack Size with Alloca): Extend to try with
6545 %push-pull-parser.
6546 (Exploding the Stack Size with Malloc): Likewise.
6547
6548 * tests/calc.at (Simple LALR Calculator): Don't specify
6549 %skeleton "push.c" since %push-pull-parser implies that now.
6550 * tests/headers.at (export YYLTYPE): Don't check for the push
6551 declarations. Otherwise, this test case can't be used to see if push
6552 mode can truly emulate pull mode.
6553 * tests/input.at (Torturing the Scanner): Likewise.
6554 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
6555 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
6556 AT_YACC_IF, which now includes the case of push mode since %skeleton
6557 need not be used for push mode. This will be more intuitive once
6558 push.c is renamed to yacc.c.
6559
7172e23e
JD
65602006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
6561
6562 For push mode, convert yyparse from a macro to a function, invoke yylex
6563 instead of passing a yylexp argument to yypull_parse, and don't
6564 generate yypull_parse or yyparse unless %push-pull-parser is declared.
6565 Discussed starting at
6566 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
6567 * data/bison.m4 (b4_pull_if): New.
6568 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
6569 * data/push.c: Improve M4 quoting a little.
6570 (b4_generate_macro_args, b4_parenthesize): Remove.
6571 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
6572 any time a pull parser is requested.
6573 Don't #define this as a wrapper around yypull_parse. Instead, when
6574 both push and pull are requested, make it a function that does that
6575 same thing.
6576 (yypull_parse): If there's a b4_prefix, #define this to
6577 b4_prefix[pull_parse] when both push and pull are requested.
6578 Don't define this as a function unless both push and pull are
6579 requested.
6580 Remove the yylexp argument and hard-code yylex invocation instead.
6581 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
6582 %push-parser.
6583 * src/getargs.c (pull_parser): New global initialized to true.
6584 * getargs.h (pull_parser): extern it.
6585 * src/output.c (prepare): Insert pull_flag muscle.
6586 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
6587 (prologue_declaration): Set both push_parser and pull_parser = true for
6588 %push-pull-parser. Set push_parser = true and pull_parser = false for
6589 %push-parser.
6590 * src/scan-gram.l: Don't accept %push_parser as an alternative to
6591 %push-parser since there's no backward-compatibility concern here.
6592 Scan %push-pull-parser.
6593 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
6594 instead of %push-parser.
6595 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
6596 prototype it in the module that calls yyparse.
6597 * tests/input.at (Torturing the Scanner): Likewise.
6598 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
6599
2e7944cb
JD
66002006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
6601
6602 Update etc/bench.pl. Optimize push mode a little (the yyn change
6603 deserves most of the credit).
6604 * Makefile.am (SUBDIRS): Add etc subdirectory.
6605 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
6606 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
6607 yytoken, yyval, and yyloc declarations to...
6608 (yyparse or yypush_parse): ... here to improve performance. For
6609 yypush_parse invocations after the first, be sure to assign yyn its old
6610 value again.
6611 (yypstate_new): Don't bother initializing the yyresult field since the
6612 initial value isn't used.
6613 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
6614 remove the #define that, in push mode, set it to yyps->NAME.
6615 * etc/Makefile.am: New.
6616 * etc/bench.pl: Remove and build it instead from...
6617 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
6618 "tests/bison" from the build directory by default rather than just
6619 invoking "bison" from $PATH.
6620 (calc_grammar): Update push parser code: don't declare yylval globally,
6621 don't define yyparse_wrapper, and don't #define yyparse.
6622 (bench_grammar): Update to check all working combinations of yacc.c,
6623 push.c, impure, pure, pull, and push.
6624
c3d50342
JD
66252006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
6626
6627 For push mode, add pull wrappers around yypush_parse.
6628 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
6629 (yypull_parse): New function wrapping yypush_parse.
6630 (yyparse): New #define wrapping yypull_parse.
6631 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
6632 is declared.
6633 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
6634 prototype yylex in the module that calls yyparse, and don't prototype
6635 yyparse there. Otherwise, the yyparse expansion won't compile.
6636 * tests/input.at (Torturing the Scanner): Likewise.
6637
94ebeba5
JD
66382006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
6639
6640 Enable push parsers to operate in impure mode. Thus, %push-parser no
6641 longer implies %pure-parser. The point of this change is to move
6642 towards being able to test the push parser code by running the entire
6643 test suite as if %push-parser had been declared.
6644 * data/push.c (yypush_parse): For impure mode, remove the
6645 yypushed_char, yypushed_val, and yypushed_loc arguments.
6646 Instead, declare these as local variables initialized to the global
6647 yychar, yylval, and yylloc.
6648 For the first yypush_parse invocation only, restore the initial values
6649 of these global variables when it's time to read a token since they
6650 have been overwritten.
6651 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
6652 %push-parser.
6653 * tests/calc.at (Simple LALR(1) Calculator): Always declare
6654 %pure-parser along with %push-parser since this test case was designed
6655 for pure push parsers.
6656 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
6657 (AT_YACC_OR_PUSH_IF): New.
6658 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
6659 add a note that it's still wrong for some cases (as it has been for a
6660 while).
6661 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
6662 %push-parser no longer implies %pure-parser.
6663
a0633178
JD
66642006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6665
6666 Remove some unnecessary differences between the pull parser code and
6667 the push parser code. This patch enables yynerrs in push mode.
6668 * data/push.c: Reformat M4 a little.
6669 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
6670 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
6671 because push mode is on. Instead, if pure mode is on, move yynerrs
6672 to...
6673 (b4_declare_parser_state_variables): ... here.
6674 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
6675 to yyps->NAME so it can be used in yypush_parse.
6676 (yypush_parse): Don't omit uses of yynerrs in push mode.
6677
8646b6a3
JD
66782006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6679
6680 Fix bug such that the first pushed token's value and location are
6681 sometimes overwritten (sometimes by %initial-action) before being used.
6682 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
6683 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
6684 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
6685 more closely mimic the pull parser logic.
6686 Don't copy the pushed token to yychar, yylval, and yylloc until it's
6687 time to read a token, which is after any initialization of yylval and
6688 yylloc.
6689 (gottoken): Rename label to...
6690 (yyread_pushed_token): ... for clarity and to avoid infringing on the
6691 user namespace.
6692
9baf4d74
JD
66932006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6694
6695 Rearrange initialization of the parser state variables so that the
6696 skeleton doesn't have to have a copy for pull mode and another for push
6697 mode. This patch also fixes at least a bug such that yylloc was not
6698 initialized (with b4_location_initial_line and
6699 b4_location_initial_column) upon calling yypush_parse. However, that
6700 initialization now overwrites the first token's location;
6701 %initial-action assigning @$ already did the same thing, and both bugs
6702 will be fixed in a later patch.
6703 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
6704 (b4_declare_parser_state_variables): Remove initialization of yytoken,
6705 yyss, yyvs, yyls, and yystacksize.
6706 (yypstate_new): Remove initialization of some yypstate fields: yystate,
6707 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
6708 yylsp.
6709 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
6710 yyps->NAME so it can be used in yypush_parse.
6711 (yyparse or yypush_parse): For yypush_parse, don't print the
6712 "Starting parse" diagnostic for invocations after the first.
6713 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
6714 yypush_parse, only do it for the first invocation.
6715 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
6716 initialization to occur in yypush_parse but only on the first
6717 invocation.
6718
23522164
JD
67192006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6720
6721 * data/push.c: Add CPP guards around push parser declarations in both
6722 the header and the code file.
6723 In the code file, move the push parser declarations to the same place
6724 they appear in the header file.
6725 Clean up the M4 some, especially the inconsistent underquoting in
6726 some b4_c_function_def and b4_c_function_decl uses.
6727
bb010fe5
JD
67282006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6729
6730 Encapsulate the push parser state variables into an M4 macro so the
6731 push skeleton doesn't have to list them again for pull mode's yyparse.
6732 For push mode, remove yypush_parse's local equivalents of these
6733 variables to eliminate unnecessary copying between the two sets at
6734 run-time. This patch also fixes at least a bug related to multiple
6735 %initial-action invocations in push mode.
6736 * data/push.c (b4_declare_parser_variables): Rename to...
6737 (b4_declare_scanner_communication_variables): ... this for clarity and
6738 update both uses.
6739 (b4_declare_yyparse_variables): Remove and move its contents to the one
6740 spot where it was invoked.
6741 (b4_declare_parser_state_variables): New macro containing the parser
6742 state variables required by push mode.
6743 (struct yypstate): Replace all fields but yynew with
6744 b4_declare_parser_state_variables.
6745 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
6746 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
6747 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
6748 (yyparse or yypush_parse): For yyparse in pull mode, replace local
6749 parser state variable declarations with
6750 b4_declare_parser_state_variables.
6751 Don't initialize parser state variables when calling yypush_parse since
6752 yypstate_new already does that.
6753 Invoke the user's initial action only upon the first yypush_parse
6754 invocation.
6755 Remove all code that copies between the local parser state variables
6756 and the yypstate.
6757
2d212f8c
JD
67582006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6759
6760 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
6761 prevent a name collision in a future patch where these names will
6762 sometimes be #define'd.
6763 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
6764 since it no longer has the same name as the existing argument.
6765 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
6766
e6e704dc
JD
67672006-12-19 Paolo Bonzini <bonzini@gnu.org>
6768 and Joel E. Denny <jdenny@ces.clemson.edu>
6769
6770 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
6771 that the argument is case-insensitive, and there's no `=' here.
6772 For the %skeleton entry, mention that %language is better.
6773 (Bison Options): Likewise for --language and --skeleton. Move the
6774 --skeleton entry so that the `Tuning the parser' section is sorted
6775 alphabetically on long options.
6776 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
6777 %language directive in detail here; cross-reference the %language
6778 documentation instead.
6779 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
6780 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 6781 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
6782 * examples/extexi (normalize): Instead of replacing every %require
6783 argument with the current Bison version, just substitute for
6784 `@value{VERSION}'. This guarantees that we're testing what actually
6785 appears in the documentation.
6786 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
6787 rather than `@VERSION@'.
6788
0e021770
PE
67892006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6790
fd575f05
PE
6791 * NEWS: Reword the %language news a bit, and put it earlier.
6792
0e021770
PE
6793 * src/getargs.c (skeleton_arg): Last arg is now location const *.
6794 Rewrite to simplify the logic.
6795 (language_argmatch): Likewise.
fd575f05
PE
6796 (program_name): We now own this var.
6797 * src/getargs.h (struct bison_language): Use char[] rather than
6798 const char *.
0e021770
PE
6799
6800 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
6801 Java is supported.
6802 * src/complain.c (program_name): Remove decl; no longer needed.
6803 * src/main.c (program_name): Remove; now belongs to getargs.
6804
68052006-12-18 Paolo Bonzini <bonzini@gnu.org>
6806
6807 * NEWS: Document %language.
6808
6809 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
6810
6811 * data/c-skel.m4, data/c++-skel.m4: New files.
6812 * data/glr.c: Complain on push parsers.
6813
6814 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
6815 over %skeleton.
148d66d8 6816 (Decl Summary): Document %language and %skeleton.
0e021770
PE
6817 (Command line): Document -L.
6818
6819 * examples/extexi: Rewrite %require directive.
6820 * examples/calc++/Makefile.am: Pass VERSION to extexi.
6821
6822 * src/files.c (compute_exts_from_gc): Look in language structure
6823 for .y extension.
6824 (compute_file_name_parts): Check whether .tab should be added.
6825 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
6826 (language, skeleton_arg, language_argmatch): New.
6827 (long_options): Add --language.
6828 (getargs): Use skeleton_arg, add -L/--language.
6829 * src/getargs.h: Include location.h.
6830 (struct bison_language, language, skeleton_arg, language_argmatch): New.
6831 * src/output.c (prepare): Pick default skeleton from struct language.
6832 Don't dispatch C skeletons here.
6833 * src/parse-gram.y (PERCENT_LANGUAGE): New.
6834 (prologue_declaration): Add "%language" rule, use skeleton_arg.
6835 * src/scan-gram.l ("%language"): New rule.
6836
6837 * tests/calc.at: Test %skeleton and %language.
6838 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
6839 (AT_GLR_IF): Look for %skeleton "glr.cc".
6840 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
6841 (AT_YACC_IF): Reject %language.
6842
5691bf57
PE
68432006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6844
db06f0ce
PE
6845 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
6846 since it wasn't used; only the typedef name 'semantic_type' is needed.
6847 Also, omit trailing white space.
6848
5691bf57
PE
6849 * bootstrap: Sync from coreutils.
6850 (gnulib_extra_files): Add build-aux/announce.gen.
6851 (slurp): Adjust .gitignore files like .cvsignore files.
6852 * build-aux/announce-gen: Remove from CVS, since bootstrap
6853 now creates this.
6854
791934e4
JD
68552006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
6856
6857 Make %push-parser imply %pure-parser. This fixes several bugs; see
6858 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
6859 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
6860 pure_parser = true.
6861 * data/push.c: Don't bother testing b4_push_if when deciding whether
6862 to expand b4_declare_parser_variables globally.
6863 (yypush_parse): Likewise in here.
6864
6865 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
6866 (yy_reduce_print): Reformat M4 for readability.
6867
ee5abb37
JD
68682006-12-15 Bob Rossi <bob@brasko.net>
6869 and Joel Denny <jdenny@ces.clemson.edu>
6870
6871 * data/push.c (yypstate): Add typedef, and update all uses of
6872 struct yypstate to just yypstate.
6873 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
6874
16ca01f9
JD
68752006-12-14 Bob Rossi <bob@brasko.net>
6876
6877 * data/push.c (yypush_parse): Declare prototype regardless of
6878 %locations option.
6879
ab8e7e1a
JD
68802006-12-14 Bob Rossi <bob@brasko.net>
6881
6882 * data/push.c (yyparse): Remove the prototype and the #define when in
6883 push-parser mode.
6884
9bf32be3
JD
68852006-12-13 Bob Rossi <bob@brasko.net>
6886
6887 * data/push.c (yypstate_init): Rename to...
6888 (yypstate_new): ... this and use b4_c_function_def.
6889 (yypstate_delete): New.
6890 (yypush_parse): Change parameters yynval and yynlloc to be const.
6891 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
6892 yypstate_delete functions.
6893
f02e2948
JD
68942006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
6895
6896 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
6897 strange test case titles. Reported by Bob Rossi.
6898
38eb7751
PE
68992006-12-13 Paul Eggert <eggert@cs.ucla.edu>
6900
6901 * TODO: Add pointer to Sylvain Schmitz's work on static detection
6902 of potential ambiguities in GLR grammers.
6903
bd9d212b
JD
69042006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
6905
6906 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
6907 `bison ', use m4_index instead of m4_substr since chopping up a string
6908 containing M4-special characters causes problems here.
6909
6910 Fix a couple of bugs related to special characters in user-specified
6911 file names, and make it easier for skeletons to compute output file
6912 names with the same file name prefix as Bison-computed output file
6913 names.
6914 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
6915 b4_parser_file_name and b4_spec_defines_file instead of
6916 @output_parser_name@ and @output_header_name@, which are now redundant.
6917 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
6918 b4_parser_file_name, b4_spec_defines_file, and the new
6919 @basename(FILENAME@) instead of @output_parser_name@ and
6920 @output_header_name@, which inappropriately escaped the file names as
6921 C string literals.
6922 * src/files.c (all_but_ext): Remove static qualifier.
6923 (compute_output_file_names): Move `free (all_but_ext)' to...
6924 (output_file_names_free): ... here since all_but_ext is needed later.
6925 * src/files.h (all_but_ext): Extern.
6926 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
6927 exactly what MUSCLE_INSERT_STRING used to do.
6928 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
6929 characters are escaped properly.
6930 * src/output.c (prepare): Define muscle file_name_all_but_ext as
6931 all_but_ext.
6932 For pkgdatadir muscle, maintain previous functionality by using
6933 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
6934 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
6935 digraphs would never be expanded. Hopefully no one has M4-special
6936 characters in his Bison installation path.
6937 * src/scan-skel.l: Don't parse @output_header_name@ and
6938 @output_parser_name@ anymore since they're now redundant.
6939 In @output, use decode_at_digraphs.
6940 Parse a new @basename command that invokes last_component.
6941 (decode_at_digraphs): New.
6942 (BASE_QPUTS): Remove unused.
6943 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
6944 (Output file name): New tests.
6945
3f7ca628
JD
69462006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
6947
6948 Warn about output files that are generated by the skeletons and that
6949 conflict with other output files.
6950 * data/glr.c: Don't generate the header file here when glr.cc does.
6951 * src/files.c (file_names, file_names_count): New static globals.
6952 (compute_output_file_names): Invoke output_file_name_check for files
6953 not generated by the skeletons and remove existing checks.
6954 (output_file_name_check): New function that warns about conflicting
6955 output file names.
6956 (output_file_names_free): Free file_names.
6957 * src/files.h (output_file_name_check): Declare.
6958 * src/scan-skel.l: Invoke output_file_name_check for files generated by
6959 the skeletons.
6960 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
6961 (Conflicting output files): New tests.
6962
178e123e
PE
69632006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6964
6965 * doc/bison.texinfo: Fix a couple of typos.
6966
69672006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
6968
6969 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
6970 Rename to...
6971 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
6972 update all uses.
6973 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
6974 (yypush_parse): Rename yypvars argument to yyps and remove redundant
6975 local pv.
6976 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
6977 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
6978
ea17f233
JD
69792006-12-07 Bob Rossi <bob@brasko.net>
6980 and Joel Denny <jdenny@ces.clemson.edu>
6981
6982 * data/push.c (yypvarsinit): Change return type from void* to struct
6983 yypvars*. No longer cast to void* on return.
6984 (struct yypvars): Remove yylen since it need not be remembered between
6985 yypushparse invocations.
6986 (yypushparse): Don't copy between yylen and pv->yylen.
6987
55a30bda
JD
69882006-12-05 Bob Rossi <bob@brasko.net>
6989
6990 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
6991 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
6992 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
6993 (struct yypvars): Remove b4_declare_parser_variables.
6994 (yypvarsinit): Remove init code for removed variables.
6995 (global scope): Do not declare b4_declare_parser_variables if
6996 push or pure mode.
6997 (yypushparse): Add b4_declare_parser_variables.
6998 Init new local variables, and remove init code for removed
6999 yypvars variables.
7000 (yyparse): Delete.
7001 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
7002 and yyparse for other modes.
7003 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
7004 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
7005 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
7006 (AT_PURE_LEX_IF): True if pure or push parser.
7007
85894313
JD
70082006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
7009
7010 Document Yacc prologue alternatives and default %destructor's and
7011 %printer's as experimental. Don't mention Java yet. Discussed at
7012 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
7013 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
7014 (2.3a): Annotate this entry to say the old forms of these features were
7015 also experimental.
7016 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 7017 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
7018 of Java (we'll want this back eventually).
7019
02975b9a
JD
70202006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
7021
7022 Support a file name argument to %defines. Deprecate `=' in
7023 %file-prefix, %name-prefix, and %output. Discussed at
7024 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
7025 * NEWS (2.3a+): Mention.
148d66d8 7026 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
7027 form of %defines, and remove `=' from entries for %file-prefix,
7028 %name-prefix, and %output.
7029 * src/parse-gram.y (prologue_declaration): Implement.
7030 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
7031 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
7032 all but one occurrence of %name-prefix.
7033 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
7034 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
7035 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
7036 occurrence of each of %file-prefix and %output. Add check for %defines
7037 with argument.
7038 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
7039 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
7040 Remove the `=' from %output.
7041
287b314e
JD
70422006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
7043
7044 Don't escape $ in test case titles since Autoconf 2.61 now does that
7045 correctly.
7046 * tests/actions.at (Default %printer and %destructor are not for error
7047 or $undefined): Here.
7048 (Default %printer and %destructor are not for $accept): Here.
7049 * tests/input.at (Invalid $n and @n): Here.
7050
3ebecc24
JD
70512006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
7052
7053 Rename <!> to <>. Discussed starting at
7054 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
7055 * NEWS (2.3a+): Update.
148d66d8 7056 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
7057 Update.
7058 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
7059 * src/scan-gram.l (INITIAL): Implement.
7060 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
7061 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
7062 comment.
7063 * tests/actions.at (Default tagless %printer and %destructor,
7064 Default tagged and per-type %printer and %destructor,
7065 Default %printer and %destructor are not for error or $undefined,
7066 Default %printer and %destructor are not for $accept,
7067 Default %printer and %destructor for mid-rule values): Update.
7068 * tests/input.at (Default %printer and %destructor redeclared,
7069 Unused values with default %destructor): Update.
7070
26b8a438
JD
70712006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
7072
7073 Don't let %prec take a nonterminal.
7074 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
7075 token.
7076 * tests/input.at (%prec takes a token): New test checking that %prec
7077 won't take a nonterminal.
7078
07c39ae9
JD
70792006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7080
405d53b7
JD
7081 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
7082 it was double-quoted.
07c39ae9
JD
7083 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
7084 grammar is maintained with Bison's highest standards.
7085 * src/getargs.c: Fix some typos in Doxygen comments.
7086
580b8926
JD
70872006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7088
7089 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
7090 later. Reported by Paul Eggert in
7091 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
7092 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
7093 * src/scan-code.l (translate_action): Don't bother invoking
7094 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
7095 (code_scanner_free): Instead of invoking
7096 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
7097 which frees more.
7098 * src/scan-gram.l (gram_scanner_free): Likewise.
7099 * src/scan-skel.l (scan_skel): Likewise.
7100
4502eadc
JD
71012006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
7102
7103 * src/files.c (tr): Change return type to void.
7104 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
7105 has been called previously for the same key.
7106 (muscle_find): Return storage instead of value so that
7107 --enable-gcc-warnings doesn't produce warnings that the return discards
7108 const. aver that the value and storage are the same since storage
7109 could potentially be NULL when value is not.
7110 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
7111 same as 0.
7112
7746c8f6
PE
71132006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7114
7115 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
7116 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
7117 us a slightly cleaner distribution, and also works.
7118 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
7119 gnulib changes.
7120
eb095650
PE
71212006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
7122 and Paul Eggert <eggert@cs.ucla.edu>
7123
7124 Don't let Bison leak memory except when it complains.
7125 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
7126 (spec_defines_file, dir_prefix): Now char *, not const char *,
7127 since they are freed.
7128 * src/files.c: Likewise.
7129 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
7130 Likewise.
7131 (tr): Now operates in-place. All uses changed.
7132 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
7133 values.
7134 (compute_file_name_parts, compute_output_file_names): Don't store
7135 read-only data in variables that will be freed.
7136 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
7137 src_extension, and header_extension.
7138 (output_file_names_free): New public function to free
7139 spec_verbose_file, spec_graph_file, spec_defines_file,
7140 parser_file_name, and dir_prefix.
7141 * src/getargs.c (getargs): Don't store read-only data in variables that
7142 will be freed.
7143 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
7144 (which previously existed but was unused), and quotearg_free.
7145 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
7146 * src/muscle_tab.c: Likewise.
7147 (muscle_entry): Make the value char const *,
7148 and add a new storage member that is char * and can be freed.
7149 (muscle_entry_free): New private function.
7150 (muscle_init): Use it instead of free.
7151 (muscle_insert, muscle_grow): Update and use new storage member.
7152 (muscle_code_grow): Free the string passed to muscle_grow
7153 since it's not needed anymore.
7154 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
7155 add a new `char *code' member.
7156 ("{...}"): Declare semantic type as code.
7157 * src/scan-code.h (translate_rule_action):
7158 (translate_symbol_action, translate_code, translate_action): Return
7159 `char const *' rather than `char *' since external code should not free
7160 these strings.
7161 * src/scan-code.l: Likewise.
7162 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
7163 which is "{...}" in the parser.
7164 * tests/Makefile.am (maintainer-check-valgrind): Set
7165 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
7166 Valgrind.
7167 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
7168 complain.
7169 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
7170 expecting a non-zero exit status sets --leak-check=summary and
7171 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
7172 this case, and we don't want to hear about it.
7173
ac564be4
PE
71742006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7175
7176 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
7177 instead of from the template, to simplify configuration a bit.
7178 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
7179 and m4/wint_t.m4, as they are needed with the latest gnulib.
7180
17bd8a73
JD
71812006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7182
7183 Disable unset/unused mid-rule value warnings by default, and recognize
7184 --warnings=midrule-values to enable them. Discussed starting at
7185 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
7186 * NEWS (2.3a+): Mention.
7187 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
7188 warnings): Add entry for midrule-values subargument.
7189 * src/reader.c (symbol_should_be_used): Don't return true just because
7190 the value is a set/used mid-rule value unless
7191 --warnings=midrule-values was specified.
7192 * tests/input.at (Unused values, Unused values before symbol
7193 declarations): Run tests with and without --warnings=midrule-values.
7194
7195 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
7196 than LIST_FREE directly.
7197
89eb3c76
JD
71982006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7199
7200 Finish implementing --warnings=error, which should not be implied by
7201 --warnings=all (or by its synonyms -W and --warnings without
7202 subarguments).
7203 * src/complain.c (set_warning_issued): New function to report that
7204 warnings are being treated as errors and to record an error if so.
7205 Invoke...
7206 (warn_at, warn): ... here.
7207 * src/getargs.c (warnings_args, warnings_types): Reorder so that
7208 "error - warnings are errors" does not appear above "all - all of the
7209 above".
7210 (getargs): For -W and --warnings without subarguments, don't let
7211 FLAGS_ARGMATCH set warnings_error in warnings_flag.
7212 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
7213
ba7560e2
JD
72142006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7215
7216 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
7217 empty subargument list. For example: `bison --warnings= parser.y'.
7218
31283fc3
JD
72192006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7220
7221 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
7222 the parser header file so that gcc doesn't warn.
7223
12e35840
JD
72242006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7225
7226 Split the default %destructor/%printer into two kinds: <*> and <!>.
7227 Discussed starting at
7228 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
7229 * NEWS (2.3a+): Mention.
7230 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
7231 previous change today related to mid-rules.
148d66d8 7232 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 7233 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
7234 (TYPE_TAG_ANY): Add as <*>.
7235 (TYPE_TAG_NONE): Add as <!>.
7236 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
7237 for <*> and <!>.
7238 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
7239 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
7240 * src/symlist.c (symbol_list_default_new): Split into tagged and
7241 tagless versions.
7242 (symbol_list_destructor_set, symbol_list_printer_set): Split
7243 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
7244 SYMLIST_DEFAULT_TAGLESS.
7245 * src/symlist.h: Update symbol_list_default*_new prototypes.
7246 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
7247 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
7248 * src/symtab.c (default_destructor, default_destructor_location,
7249 default_printer, default_printer_location): Split each into tagged and
7250 tagless versions.
7251 (symbol_destructor_get, symbol_destructor_location_get,
7252 symbol_printer_get, symbol_printer_location_get): Implement tagged
7253 default and tagless default cases.
7254 (default_destructor_set, default_printer_set): Split each into tagged
7255 and tagless versions.
7256 * src/symtab.h: Update prototypes.
7257 * tests/actions.at (Default %printer and %destructor): Rename to...
7258 (Default tagless %printer and %destructor): ... this, and extend.
7259 (Per-type %printer and %destructor): Rename to...
7260 (Default tagged and per-type %printer and %destructor): ... this, and
7261 extend.
7262 (Default %printer and %destructor for user-defined end token): Extend.
7263 (Default %printer and %destructor are not for error or $undefined):
7264 Update.
7265 (Default %printer and %destructor are not for $accept): Update.
7266 (Default %printer and %destructor for mid-rule values): Extend.
7267 * tests/input.at (Default %printer and %destructor redeclared): Extend.
7268 (Unused values with default %destructor): Extend.
7269
f91b1629
JD
72702006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7271
7272 Don't apply the default %destructor/%printer to an unreferenced midrule
7273 value. Mentioned at
7274 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
7275 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
7276 like $@n instead of just @n so that the default %destructor/%printer
7277 logic doesn't see them as user-defined symbols.
7278 (symbol_is_dummy): Check for both forms of the name.
7279 * src/reader.c (packgram): Remove the `$' from each midrule symbol
7280 name for which the midrule value is referenced in any action.
7281 * tests/actions.at (Default %printer and %destructor for mid-rule
7282 values): New test.
7283 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
7284 for change to dummy symbol names.
7285
519d0004
JD
72862006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7287
7288 Warn about unset midrule $$ if the corresponding $n is used.
7289 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
7290 $n usage.
7291 (packgram): Before invoking grammar_rule_check on any rule, make sure
7292 all actions have already been scanned in order to set `used' flags.
7293 Otherwise, checking that a midrule's $$ is set will not always work
7294 properly because the midrule check must forward-reference the midrule's
7295 parent rule.
7296 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
7297 warning.
7298
a501eca9
JD
72992006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7300
7301 More improvements to the documentation of the prologue alternatives:
7302 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
7303 Bison manual.
7304 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
7305 some text to clarify the relative importance of the new directives and
7306 to show how these directives may be viewed as code labels.
7307
2cbe6b7f
JD
73082006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
7309
7310 Similar to the recently removed %before-header, add %code-top as the
7311 alternative to the pre-prologue. Mentioned at
7312 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
7313 Also, let the prologue alternatives appear in the grammar section.
7314 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
7315 (prologue_declaration): Move the existing prologue alternatives to...
7316 (grammar_declaration): ... here and add %code-top.
7317 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
7318
7319 Clean up and extend documentation for the prologue alternatives.
7320 * NEWS (2.3a+): Describe prologue alternatives.
7321 * doc/bison.texinfo (Prologue): Move discussion of prologue
7322 alternatives to...
7323 (Prologue Alternatives): ... this new section, and extend it to discuss
7324 all 4 directives in detail.
148d66d8
JD
7325 (Table of Symbols): Clean up discussion of prologue alternatives and
7326 add %code-top.
2cbe6b7f 7327
e557d3ea
JMG
73282006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7329
7330 DJGPP specific issues.
7331
7332 * djgpp/config.bat: config.hin has been moved to lib. Adjust
7333 config.bat accordingly.
7334 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
7335 * djgpp/config.site: Likewise.
7336
136a0f76
PB
73372006-10-16 Paolo Bonzini <bonzini@gnu.org>
7338
27bd5d67
PB
7339 Replace %*-header with %provides, %requires, %code. See discussion at
7340 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
7341
136a0f76
PB
7342 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
7343 (b4_user_start_header): Remove.
7344 * data/glr.c: Use new macros instead of b4_*start_header
7345 and b4_*end_header.
7346 * data/glr.cc: Likewise.
7347 * data/lalr1.cc: Likewise.
7348 * data/push.c: Likewise.
7349 * data/yacc.c: Likewise.
7350
7351 * doc/bison.texinfo: Remove %before-header, rename
7352 %{start,end,after}-header to %requires, %provides, %code.
7353
7354 * src/parse-gram.y: Likewise (also rename token names accordingly).
7355 * src/scan-gram.l: Likewise.
7356 * tests/actions.at: Likewise.
7357
10f429ef
PE
73582006-10-14 Paul Eggert <eggert@cs.ucla.edu>
7359
7360 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
7361 Problem reported by Joel E. Denny.
7362
73632006-10-14 Jim Meyering <jim@meyering.net>
7364
7365 (Sync from coreutils.)
7366 Work also when the working directory (with e.g. coreutils sources)
7367 is version controlled with git, rather than CVS.
7368 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
7369 rather than CVS.
7370 In messages and comments, say e.g., "checked-out sources",
7371 rather than "CVS sources".
7372 (version_controlled_file): New function. Work for git as well as
7373 for CVS. Don't use grep's -q option.
7374 (slurp): Call it here, in place of CVS-specific code.
7375
c4bd5bf7
JD
73762006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
7377
7378 Fix testsuite for ./configure --enable-gcc-warnings:
7379 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
7380 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
7381 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
7382 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
7383 * test/regression.at (Diagnostic that expects two alternatives):
7384 Likewise.
7385
46356ea4
PE
73862006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7387
231ed89a
PE
7388 * bootstrap.conf (gnulib_modules): Add config-h.
7389 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
7390 worry about HAVE_CONFIG_H.
7391 * lib/abitset.c: Likewise.
7392 * lib/bitset.c: Likewise.
7393 * lib/bitset_stats.c: Likewise.
7394 * lib/bitsetv-print.c: Likewise.
7395 * lib/bitsetv.c: Likewise.
7396 * lib/ebitset.c: Likewise.
7397 * lib/get-errno.c: Likewise.
7398 * lib/lbitset.c: Likewise.
7399 * lib/subpipe.c: Likewise.
7400 * lib/timevar.c: Likewise.
7401 * lib/vbitset.c: Likewise.
7402 * lib/bitset.c: Include "bitset.h" first, to test interface.
7403 * lib/bitset_stats.c: Include "bitset_stats.h" first.
7404 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
7405 * lib/bitsetv.c: Include "bitsetv.h" first.
7406 * lib/get-errno.c: Include "get-errno.h" first.
7407 * m4/.cvsignore: Add config-h.m4.
7408 * tests/actions.at (Default %printer and %destructor for ...):
7409 Adjust expected line numbers in output to reflect removal of #if
7410 HAVE_CONFIG_H lines.
7411 * tests/glr-regression.at (Missed %merge type warnings when ...):
7412 Likewise.
7413 * tests/regression.at (Braced code in declaration in rules section):
7414 Likewise.
7415 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
7416 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
7417 Include <config.h> unconditionally.
7418
46356ea4
PE
7419 * bootstrap: Sync from coreutils, as follows:
7420
7421 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7422
7423 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
7424 variable was sometimes used without being initialized. This
7425 messed up the installation of the INSTALL file in some cases.
7426
7427 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7428
7429 * bootstrap (usage, main program, symlink_to_gnulib): Add option
7430 --copy. Inspired by a suggestion from Bruno Haible.
7431
7432 2006-10-03 Jim Meyering <jim@meyering.net>
7433
7434 * bootstrap: Undo last change to this file, since now gnulib-tool
7435 sticks with the automake default in generating dependencies.
7436
dd4bf078
PE
74372006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7438
cf2a5f7c
PE
7439 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
7440 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
7441
7442 * doc/bison.1: Add copyright notice.
7443
7444 * data/glr.c: Don't include <stdarg.h>; not used.
7445
35fe0834
PE
7446 * NEWS: The -g and --graph options now output graphs in Graphviz
7447 DOT format, not VCG format.
7448 * doc/bison.1: Likewise.
7449 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
7450 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
7451 of this change in
7452 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
7453 * TODO: Remove Graphviz entry.
7454 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
7455 remove vcg.c, vcg.h, vcg_defaults.h.
7456 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
7457 * src/graphviz.c, src/graphviz.h: New files.
7458 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
7459 * src/files.h: Make comment more generic.
7460 * src/main.c (main): Likewise.
7461 * src/print_graph.h: Likewise.
7462 * src/getargs.c (usage): Make usage description more generic.
7463 * src/print_graph.c: Include graphviz.h rather than vcg.h.
7464 (static_graph, fgraph): Remove. All uses changed to pass
7465 arguments instead of sharing a static var.
7466 (print_core, print_actions, print_state, print_graph):
7467 Output graphviz format rather than VCG format.
7468 * tests/.cvsignore: Remove *.vcg; add *.dot.
7469 * tests/output.at: Expect *.dot files, not *.vcg files.
7470
dd4bf078
PE
7471 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
7472 accommodates the 2006-10-08 change.
7473
efdd7421
PE
74742006-10-11 Bob Rossi <bob@brasko.net>
7475
7476 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
7477 (b4_yyssa, b4_yyerror_range): New macros.
7478 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
7479 (yypvarsinit): Remove init of removed fields.
7480 (yypushparse): Remove use of removed fields; use new macros instead.
7481
96a1981a
PE
74822006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7483
7484 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
7485 in a push parser. Reindent slightly to match yacc.c better.
7486
74872006-10-11 Bob Rossi <bob@brasko.net>
7488
46356ea4
PE
7489 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
7490 yymsg_alloc fields.
7491 (yypvarsinit, yypushparse): Remove init of removed fields.
7492 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 7493
c1630a8b
PE
74942006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7495
7496 * THANKS: Add Paolo Bonzini and Bob Rossi.
7497
90b9908d
PB
74982006-10-08 Paolo Bonzini <bonzini@gnu.org>
7499
7500 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
7501 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
7502 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
7503 b4_define_user_cde and uses): Remove.
7504 (b4_comment, b4_prefix, b4_sync_start): New.
7505 * data/bison.m4: New file, with most of the content removed from c.m4.
7506 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
7507 * src/output.c (output_skeleton): Pass bison.m4.
7508 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
7509 only if specified.
7510
cf806753
PE
75112006-10-05 Paul Eggert <eggert@cs.ucla.edu>
7512
7513 Fix test failure reported by Tom Lane in
7514 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
7515 and try to make such failures easier to catch in the future.
7516 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
7517 that's now the caller's responsibility.
7518 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
7519 Set yychar = YYEOF if it's negative.
7520 * tests/actions.at (yylex): Abort if asked to read past EOF.
7521 * tests/conflicts.at (yylex): Likewise.
7522 * tests/cxx-type.at (yylex): Likewise.
7523 * tests/glr-regression.at (yylex): Likewise.
7524 * tests/input.at (yylex): Likewise.
7525 * tests/regression.at (yylex): Likewise.
7526 * tests/torture.at (yylex): Likewise.
7527
0e2f006a
PE
75282006-10-01 Paul Eggert <eggert@cs.ucla.edu>
7529
7530 Fix problems with translating English-language diagnostics.
7531 * bootstrap: Fix bug introduced in recent bootstrap changes, with
7532 respect to bison-runtime pot generation. The YY_ stuff
7533 wasn't being captured.
7534 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
7535 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
7536 * runtime-po/POTFILES.in: Add data/push.c.
7537
e3ddc1e3
PE
75382006-09-29 Paul Eggert <eggert@cs.ucla.edu>
7539
7540 Merge bootstrap changes from coreutils.
7541
7542 2006-09-28 Jim Meyering <jim@meyering.net>
7543
7544 Automatically generated dependencies are important even
7545 when all of the sources in a directory come from gnulib.
7546 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
7547 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
7548
7549 2006-09-23 Jim Meyering <jim@meyering.net>
7550
7551 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
7552
7553 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7554
7555 * bootstrap: Add support for --force.
7556 (usage): New function. Describe usage less tersely.
7557 (CVS_only_file): New var.
7558
01e972b3
PE
75592006-09-21 Paul Eggert <eggert@cs.ucla.edu>
7560
7561 * data/push.c (YYPUSH_MORE): Make it an enum instead.
7562 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
7563 Adjust white space and comments to match GNU style better.
7564
c63d3e90
PE
75652006-09-20 Bob Rossi <bob@brasko.net>
7566
7567 * data/push.c (yyresult_get): Remove function.
7568 (YYPUSH_MORE): Add #define.
7569 (yypushparse): Modify return value.
7570
e70f46d1
PE
75712006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7572
7573 * stamp-h.in: Remove; no longer needed.
7574 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
7575 Remove config.h, config.hin, intl (no longer created).
7576 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
7577 stamp-h1.
7578
7579 Sync bootstrap from coreutils, as follows:
7580
7581 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
7582
7583 * bootstrap (symlink_to_gnulib): New function.
7584 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
7585 to copies-of-gnulib.
7586 (cp_mark_as_generated, slurp, gnulib_files):
7587 Avoid making a copy if it's the same as the old version.
7588 (gnulib_files): Add support for this variable (used by Bison).
7589
a92be413
PE
75902006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7591
7592 * src/getargs.c (usage): Rework to use conventions similar to
7593 coreutils, to make translation a bit easier and the code a bit
7594 smaller. Problem reported by Tim Van Holder.
7595
4f82b42a
PE
75962006-09-15 Paul Eggert <eggert@cs.ucla.edu>
7597
3b2942e6
PE
7598 Use some of gnulib's new modules, taken from coreutils.
7599
7600 * bootstrap: Sync from coreutils, except add support for gnulib_files.
7601 * bootstrap.conf: New file.
7602 (gnulib_modules): Add configmake, inttypes, unistd.
7603 (XGETTEXT_OPTIONS): Add complain, complain_at,
7604 fatal, fatal_at, warn, warn_at, unexpected_end.
7605 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
7606 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
7607 (gl_EARLY): Add.
7608 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
7609 (gl_INIT): Add
7610 (GNULIB_AUTOCONF_SNIPPET): Remove.
7611 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
7612 the pickiest.
7613 * lib/.cvsignore: Add inttypes_.h.
7614 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
7615 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
7616 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
7617 no-longer-necessary initializations.
7618 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
7619 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
7620 use the unistd module.
7621 * src/system.h: Likewise.
7622 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
7623 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
7624 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
7625 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
7626 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
7627 * src/system.h: Include inttypes.h unconditionally, now that we
7628 use the inttypes module. Don't bother to include stdint.h, since
7629 inttypes.h now does that for us.
7630 (LOCALEDIR): Remove, now that we use the configmake module.
7631 * src/getargs.c: Include configmake.h.
7632 * src/main.c: Likewise.
7633 * src/output.c: Likewise.
7634 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
7635 not from $abs_top_builddir, since config.h moved.
7636
7637
4f82b42a
PE
7638 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
7639 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
7640
7641 * src/parse-gram.y (symbol_declaration): Don't put statements
7642 before declarations; it's not portable to C89.
7643 * src/scan-code.l (handle_action_at): Likewise.
7644
7645 * src/scan-code.l: Always initialize braces_level; the old code
7646 left it uninitialized and therefore had undefined behavior.
7647
7648 Don't attempt to redefine 'assert', since it runs afoul of
7649 systems where standard headers (mistakenly) include <assert.h>.
7650 Instead, define and use our own alternative, called 'aver'.
7651 * src/reader.c: Don't include assert.h, since we no longer
7652 use assert.
7653 * src/scan-code.l: Likewise.
7654 * src/system.h (assert): Remove, replacing with....
7655 (aver): New function, taking a bool arg. All uses changed.
7656 * src/tables.c (pack_vector): Ensure that aver arg is bool,
7657 not merely an integer.
7658
31c10e38
PE
76592006-09-15 Bob Rossi <bob@brasko.net>
7660
7661 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
7662 * data/c.m4 (YYPUSH): New.
7663 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
7664 * src/getargs.c (push_parser): New var.
7665 * src/getargs.h (push_parser): New declaration.
7666 * src/output.c (prepare): Add macro insertion of `push_flag'.
7667 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
7668 (prologue_declaration): Parse %push-parser.
7669 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
7670 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
7671 list of removed lines from the traces observed.
7672 (AT_CHECK_CALC_LALR): Added push parser tests.
7673
fa7b79c0
PE
76742006-09-13 Paul Eggert <eggert@cs.ucla.edu>
7675
21fe08ca
PE
7676 * NEWS: Version 2.3a.
7677 * configure.ac (AC_INIT): Likewise.
7678
e8ec4d9b
PE
7679 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
7680 "#define YYSTYPE int" that caused "make maintainer-check" to fail
7681 due to header ordering dependencies. I don't know why the #define
7682 was there.
7683
fa7b79c0
PE
7684 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
7685 runtime cost when YYDEBUG is not defined, and so that some tests
7686 that used to fail now work. Problem and initial suggestion by
7687 Paolo Bonzini.
7688 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
7689 * data/glr.cc (b4_parser_class_name):
7690 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
7691 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
7692 (yydebug_) [YYDEBUG]: New member.
7693 (yycdebug_): Now defined only if YYDEBUG.
7694 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
7695 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
7696 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
7697 if YYYDEBUG.
7698 (debug_stream, set_debug_stream, debug_level, set_debug_level):
7699 Define only if YYDEBUG.
7700 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
7701 set_debug_level.
7702 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
7703 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
7704 AT_CHECK_CALC_GLR_CC that are working now.
7705
4ec13d60
PE
77062006-09-12 Paul Eggert <eggert@cs.ucla.edu>
7707
7708 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
7709 We don't need them in glr.cc, and glr.c defines them.
7710 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
7711 assumes that defining it to anything is the same as defining
7712 it to 1. Problem reported by Paolo Bonzini.
7713
8e1687ae
PE
77142006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
7715
7716 * data/c.m4 (b4_null, b4_case): Define.
7717 * src/output.c (prepare_symbols): Use b4_null.
7718 (user_actions_output): Use b4_case.
7719
3dc5e96b
PE
77202006-09-11 Paul Eggert <eggert@cs.ucla.edu>
7721
aef3da86
PE
7722 * data/glr.c (b4_shared_declarations): Put start-header first,
7723 before any #includes that we generate, so that feature-test
7724 macros work. Problem reported by Michael Deutschmann in
7725 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
7726 * data/lalr1.cc: Likewise.
7727 * doc/bison.texinfo (Prologue): Document that feature-test macros
7728 should be defined before any Bison declarations.
7729 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
7730 that depend on location.hh after, not before, Bison decls, since
7731 we now include location.hh after the first user prologue.
7732
3dc5e96b
PE
7733 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
7734 Sander Brandenburg in
7735 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
7736 Also, fix minor white space and comment issues.
aef3da86
PE
7737 (Prologue): Mention that it's better to define feature-test macros
7738 before Bison declarations. Problem reported by Michael Deutschmann.
7739
7740 * README-cvs: Fix typo: "&" should be "&&". Problem reported
7741 by Jim Meyering.
7742 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
7743 This adjusts to recent gnulib changes.
3dc5e96b 7744
b2a0b7ca
JD
77452006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7746
7747 Finish implementation of per-type %destructor/%printer. Discussed
7748 starting at
7749 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
7750 and
7751 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
7752 * NEWS (2.3+): Add a description of this feature to the default
7753 %destructor/%printer description.
7754 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
7755 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
7756 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
7757 list node contains a semantic type.
7758 * src/symtab.c, src/symtab.h: Extend with a table that associates
7759 semantic types with their %destructor's and %printer's.
7760 (semantic_type_from_uniqstr, semantic_type_get,
7761 semantic_type_destructor_set, semantic_type_printer_set): New functions
7762 composing the public interface of that table.
7763 (symbol_destructor_get, symbol_destructor_location_get,
7764 symbol_printer_get, symbol_printer_location_get): If there's no
7765 per-symbol %destructor/%printer, look up the per-type before trying
7766 the default.
7767 * tests/actions.at (Per-type %printer and %destructor): New test case.
7768 * tests/input.at (Default %printer and %destructor redeclared):
7769 Extend to check that multiple occurrences of %symbol-default in a
7770 single %destructor/%printer declaration is an error.
7771 (Per-type %printer and %destructor redeclared, Unused values with
7772 per-type %destructor): New test cases.
7773
3be03b13
JD
77742006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7775
7776 Require default %destructor/%printer to be declared using
7777 %symbol-default instead of an empty symbol list, and start working on
7778 new per-type %destructor/%printer. Discussed at
7779 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
7780 * NEWS (2.3+): Add %symbol-default to example.
7781 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 7782 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
7783 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
7784 (generic_symlist, generic_symlist_item): New nonterminals for creating
7785 a list in which each item is a symbol, semantic type, or
7786 %symbol-default.
7787 (grammar_declaration): Use generic_symlist in %destructor and %printer
7788 declarations instead of symbols.1 or an empty list.
7789 (symbol_declaration, precedence_declaration, symbols.1): Update actions
7790 for changes to symbol_list.
7791 * src/reader.c: Update for changes to symbol_list.
7792 * src/scan-code.l: Likewise.
7793 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
7794 * src/symlist.c, src/symlist.h: Extend such that a list node may
7795 represent a semantic type or a %symbol-default in addition to just an
7796 ordinary symbol. Add switched functions for setting %destructor's and
7797 %printer's.
7798 * tests/actions.at, tests/input.at: Add %symbol-default to all default
7799 %destructor/%printer declarations.
7800
3508ce36
JD
78012006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
7802
7803 Whether the default %destructor/%printer applies to a particular symbol
7804 isn't a question of whether the user *declares* that symbol (in %token,
7805 for example). It's a question of whether the user by any means
7806 *defines* the symbol at all (by simply using a char token, for
7807 example). $end is defined by Bison whereas any other token with token
7808 number 0 is defined by the user. The error token is always defined by
7809 Bison regardless of whether the user declares it with %token, but we
7810 may one day let the user define error as a nonterminal instead.
7811 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
7812 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
7813 the meaning of "user-defined".
7814 * tests/actions.at (Default %printer and %destructor for user-declared
7815 end token): Rename to...
7816 (Default %printer and %destructor for user-defined end token): ...
7817 this.
7818
7819 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
7820 computation of whether to apply the default, don't maintain a list of
7821 every Bison-defined symbol. Instead, just check for a first character
7822 of '$', which a user symbol cannot have, and check for the error token.
7823
9350499c
JD
78242006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
7825
7826 Don't apply the default %destructor or %printer to the error token,
7827 $undefined, or $accept. This change fits the general rule that the
7828 default %destructor and %printer are only for user-declared symbols,
7829 and it solves several difficulties that are described in the new test
7830 cases listed below.
7831 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
7832 * tests/actions.at (Default %printer and %destructor are not for error
7833 or $undefined, Default %printer and %destructor are not for $accept):
7834 New test cases.
7835
4d7370cb
JD
78362006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
7837
7838 Allow %start after the first rule.
7839 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
7840 when parsing the first rule.
7841 (check_and_convert_grammar): Search for it here after all grammar
7842 declarations have been parsed. Skip midrules, which have dummy LHS
7843 nonterminals.
7844 * src/symtab.c (symbol_is_dummy): New function.
7845 * src/symtab.h (symbol_is_dummy): Declare it.
7846 * tests/input.at (%start after first rule): New test.
7847
6d0ef4ec
JD
78482006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
7849
7850 Redo some of the previous commit: add back the ability to use
7851 non-aliased/undeclared string literals since it might be useful to
7852 those declaring %token-table.
7853 * src/reader.c (check_and_convert_grammar): Undo changes in previous
7854 commit: don't worry about complaints from symbols_pack.
7855 * src/symtab.c (symbol_new, symbol_class_set,
7856 symbol_check_alias_consistency): Undo changes in previous commit: count
7857 each string literal as a new symbol and token, assign it a symbol
7858 number, and don't complain about non-aliased string literals.
7859 (symbols_pack): Since symbol_make_alias still does not decrement symbol
7860 and token counts but does still set aliased tokens to the same number,
7861 symbol_pack_processor now leaves empty slots in the symbols array.
7862 Remove those slots.
7863 * tests/regression.at (Undeclared string literal): Remove test case
7864 added in previous commit since non-aliased string literals are allowed
7865 again.
7866 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
7867 remove unnecessary string literal declarations.
7868 * tests/sets.at (Firsts): Likewise.
7869
965537bc
JD
78702006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
7871
7872 Don't allow an undeclared string literal, but allow a string literal to
7873 be used before its declaration.
7874 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
7875 symbols_pack complained.
7876 * src/symtab.c (symbol_new): Don't count a string literal as a new
7877 symbol.
7878 (symbol_class_set): Don't count a string literal as a new token, and
7879 don't assign it a symbol number since symbol_make_alias does that.
7880 (symbol_make_alias): It's not necessary to decrement the symbol and
7881 token counts anymore. Don't assume that an alias declaration occurs
7882 before any uses of the identifier or string, and thus don't assert that
7883 one of them has the highest symbol number so far.
7884 (symbol_check_alias_consistency): Complain if there's a string literal
7885 that wasn't declared as an alias.
7886 (symbols_pack): Bail if symbol_check_alias_consistency failed since
7887 symbol_pack asserts that every token has been assigned a symbol number
7888 although undeclared string literals have not.
7889 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 7890 string literal): New test cases.
965537bc
JD
7891 (Characters Escapes, Web2c Actions): Declare string literals as
7892 aliases.
7893 * tests/sets.at (Firsts): Likewise.
7894
47aee066
JD
78952006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
7896
7897 In the grammar scanner, STRING_FINISH unclosed constructs and return
7898 them to the parser in order to improve error messages.
7899 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
7900 SC_BRACED_CODE, SC_PROLOGUE): Implement.
7901 * tests/input.at (Unclosed constructs): New test case.
7902 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
7903 seen.
7904
7905 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
7906 unused global.
7907
1f6b3679
JD
79082006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
7909
7910 Handle string aliases for character tokens correctly.
7911 * src/symtab.c (symbol_user_token_number_set): If the token has an
7912 alias, check and set its alias's user token number instead of its own,
7913 which is set to indicate the alias. Previously, every occurrence of
7914 the character token in the grammar overwrote that alias indicator with
7915 the character code.
7916 * tests/input.at (String aliases for character tokens): New test.
7917
219741d8
JD
79182006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
7919
7920 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
7921
11daa4e7
PE
79222006-08-11 Paul Eggert <eggert@cs.ucla.edu>
7923
7924 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
7925 to prevent failures when building on older platforms.
7926 Check for autopoint failure.
7927 Set XGETTEXT_OPTIONS to values that check for C format strings,
7928 so that translators are warned about them (this also helps
7929 prevent core dumps).
7930
7931 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
7932 function, since it simplifies our code a bit.
7933
7934 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
7935 rather than -W, so we don't get bogus warnings about sign comparisons.
7936 Add -Wpointer-arith, since that warning is useful (it reports code
7937 that does not conform to C89 and that some compilers reject).
7938 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
7939 since it's no longer needed.
7940
f9bfc42a
JD
79412006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
7942
7943 Clean up scanners a bit.
7944 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
7945 definitions so gcc won't warn when obstack_for_string is unused.
7946 * src/scan-code.l: config.h and system.h are already #include'd by
7947 scan-code-c.c, so get rid of them here.
7948 * src/scan-gram.l: Likewise.
7949 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
7950 definitions rather than duplicating the rest of it.
7951 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
7952
06e8700a
JD
79532006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
7954
7955 Suppress signed/unsigned comparison warnings for yycheck.
7956 * data/c.m4 (b4_safest_int_type): New macro.
7957 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
7958 a signed int type, cast it to b4_safest_int_type first.
7959 * data/yacc.c: Likewise.
7960 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
7961 also overwritten.
7962
9c437126
PE
79632006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
7964
7965 * doc/bison.texinfo: Fix some typos.
7966
284d8a13
PE
79672006-08-02 Paul Eggert <eggert@cs.ucla.edu>
7968
7969 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
7970 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
7971
7972 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
7973 the latest gnulib does this a different way.
7974 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
7975 translation was patched, so stop omitting it.
7976
ec5479ce
JD
79772006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
7978
7979 Enable declaration of default %printer/%destructor. Make the parser
7980 use these for all user-declared grammar symbols for which the user does
7981 not declare a specific %printer/%destructor. Thus, the parser uses it
7982 for token 0 if the user declares it but not if Bison generates it as
7983 $end. Discussed starting at
7984 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
7985 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
7986 and
7987 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
7988 * NEWS (2.3+): Mention.
7989 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
7990 declare a %destructor for a mid-rule's semantic value. It's just
7991 impossible to declare one specific to it.
7992 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
7993 code. Describe default %destructor form.
7994 * src/parse-gram.y (grammar_declaration): Parse default
7995 %printer/%destructor declarations.
7996 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
7997 and symbol_destructor_location_get rather than accessing the destructor
7998 and destructor_location members of struct symbol.
7999 (symbol_printers_output): Likewise but for %printer's.
8000 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
8001 again.
8002 * src/symtab.c (default_destructor, default_destructor_location,
8003 default_printer, default_printer_location): New static global
8004 variables to record the default %destructor and %printer.
8005 (symbol_destructor_get, symbol_destructor_location_get,
8006 symbol_printer_get, symbol_printer_location_get): New functions to
8007 compute the appropriate %destructor and %printer for a symbol.
8008 (default_destructor_set, default_printer_set): New functions to set the
8009 default %destructor and %printer.
8010 * src/symtab.h: Prototype all those new functions.
8011 * tests/actions.at (Default %printer and %destructor): New test to
8012 check that the right %printer and %destructor are called, that they're
8013 not called for $end, and that $$ and @$ work correctly.
8014 (Default %printer and %destructor for user-declared end token): New
8015 test to check that the default %printer and %destructor are called for
8016 a user-declared end token.
8017 * tests/input.at (Default %printer and %destructor redeclared, Unused
8018 values with default %destructor): New tests to check related grammar
8019 warnings and errors.
8020
868d2d96
JD
80212006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8022
8023 Clean up handling of %destructor for the end token (token 0).
8024 Discussed starting at
8025 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
8026 and
8027 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
8028
8029 Make the skeletons consistent in how they pop the end token and invoke
8030 its %destructor.
8031 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
8032 state, which has token number 0, since this would invoke the
8033 %destructor for the end token.
8034 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
8035 until after shifting the end token, or else it won't be popped.
8036 * data/yacc.c (yyparse): Likewise.
8037
8038 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
8039 it's the end token. Upon termination, destroy an unshifted lookahead
8040 even when it's the end token.
8041 * data/lalr1.cc (yy::parser::parse): Likewise.
8042 * data/yacc.c (yyparse): Likewise.
8043
8044 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
8045 value warnings for the end token when the user gives the end token a
8046 %destructor.
8047
8048 * tests/actions.at (Printers and Destructors): Test all the above.
8049
62a9592d
PE
80502006-07-24 Paul Eggert <eggert@cs.ucla.edu>
8051
8052 Update to latest gnulib and gettext versions.
8053 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
8054 Add fopen-safer.
8055 (gnulib_files): Add m4/warning.m4. Don't worry about files
8056 overwritten by autopoint.
8057 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
8058 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
8059 rejects them.
8060 Don't use autoreconf; instead, invoke autopoint etc. by hand,
8061 so that we can remove the intl files at a better time.
8062 (intl_files_to_remove): Remove aclocal.m4, since it gets
8063 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
8064 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
8065 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
8066 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
8067 Remove datarootdir hack; no longer needed.
8068 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
8069 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
8070 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
8071 strdup.h.
8072 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
8073 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
8074
10d6970f
PE
80752006-07-20 Paul Eggert <eggert@cs.ucla.edu>
8076
8077 * bootstrap: Adjust to today's change to gnulib-tool by invoking
8078 it with --assume-autoconf='latest-stable'.
8079
50a33993
JD
80802006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
8081
8082 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
8083 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
8084 YYSTYPE' and `{'.
8085 * src/muscle_tab.h (muscle_grow): Replace the header comments with
8086 those from muscle_tab.c since the old ones are misleading.
8087
2ce4ed68
AD
80882006-07-13 Akim Demaille <akim@epita.fr>
8089
8090 Support %define "KEY" {VALUE}.
8091 * src/scan-code.h, src/scan-code.l (translate_action)
8092 (translate_rule_action, translate_symbol_action, translate_code):
8093 Return char *, not const char *.
8094 * src/parse-gram.y (declaration): Rename as...
8095 (prologue_declaration): this.
8096 (string_content): Remove this nonterminal, use STRING.
8097 (braceless, content, content.opt): New nonterminal.
8098 Use them.
8099 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
8100 as value.
8101 * src/scan-gram.l (getargs.h): Don't include it.
8102
db7e5eb5
PE
81032006-07-12 Paul Eggert <eggert@cs.ucla.edu>
8104
8105 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
8106 rather than a for-loop that declares a local bool variable. This
8107 should work around a compatibility problem with a Cray x1e C++
8108 compiler reported by Hung Nguyen in
8109 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
8110 The for-loop was introduced in the 2004-11-17 change but I don't
8111 know why it was needed.
8112
a5d80ba5
AD
81132006-07-12 Akim Demaille <akim@epita.fr>
8114
8115 * data/c.m4: Comment changes.
8116
23eb2a69
AD
81172006-07-10 Akim Demaille <akim@lrde.epita.fr>
8118
8119 * src/complain.c (error_message, ERROR_MESSAGE): New.
8120 To factor...
8121 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
8122 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
8123
ddc8ede1
PE
81242006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8125
8126 * NEWS: Instead of %union, you can define and use your own union type
8127 YYSTYPE if your grammar contains at least one <type> tag.
8128 Your YYSTYPE need not be a macro; it can be a typedef.
8129 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
8130 (Union Decl, Decl Summary): Document this.
8131 * data/glr.c (YYSTYPE): Implement this.
8132 * data/glr.cc (YYSTYPE): Likewise.
8133 * data/lalr1.cc (YYSTYPE): Likewise.
8134 * data/yacc.c (YYSTYPE): Likewise.
8135 * src/output.c (prepare): Output tag_seen_flag.
8136 * src/parse-gram.y (declaration, grammar_declaration):
8137 Use 'union_seen' rather than 'typed' to determine whether
8138 %union has been seen, since grammars can now be typed without
8139 %union.
8140 (symbol_declaration, type.opt, symbol_def):
8141 Keep track of whether a tag has been seen.
8142 * src/reader.c (union_seen, tag_seen): New vars.
8143 (typed): remove.
8144 * src/reader.h (union_seen, tag_seen, typed): Likewise.
8145 * src/scan-code.l (untyped_var_seen): New variable.
8146 (handle_action_dollar): Adjust to above changes.
8147 (handle_action_dollar, handle_action_at):
8148 Improve overflow checking for outlandish numbers.
8149 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
8150 avoid new diagnostics generated by above changes.
8151 * tests/regression.at (YYSTYPE typedef): Add test to check
8152 for type tags without %union.
8153
8154 * src/symlist.c (symbol_list_length): Return int, not unsigned
8155 int, since callers expect int. This may need to get revisited
8156 once we have proper integer overflow checking.
8157
8158 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
8159 object is now static.
8160
8161 * src/getargs.c (flags_argmatch): Return void, not int,
8162 to pacify ./configure --enable-gcc-warnings.
8163
8164 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
8165 since last_string is already defined to FLEX_PREFIX (last_string).
8166
7b42569e
AD
81672006-07-09 Akim Demaille <akim@lrde.epita.fr>
8168
8169 Implement --warnings/-W.
8170 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
8171 replaced by...
8172 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
8173 Adjust callers.
8174 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
8175 (warnings_args, warnings_types): New.
8176 (getargs, short_options, long_options): Accept -W/--warnings.
8177 Sort the options by alphabetical order, upper case letter right
8178 before its lower case.
8179
3b452f4e
JD
81802006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
8181
8182 Change %merge result type clash warnings to errors. Discussed at
8183 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
8184 * src/reader.c (record_merge_function_type): Use complain_at.
8185 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8186 declared later): Update test case results.
8187
b8a41559
AD
81882006-07-09 Akim Demaille <akim@lrde.epita.fr>
8189
8190 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
8191 to be in alphabetical order.
8192 (trace_args): Spelling fixes.
8193
cd9e1ba2
PE
81942006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8195
8196 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
8197 so they don't collide with user-defined macros.
8198 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
8199 this was never guaranteed, and now that we're using gnulib stdint,
8200 which defines int_fast16_t to long int, the problem is exposed.
8201
cb48f191
PE
82022006-07-08 Paul Eggert <eggert@cs.ucla.edu>
8203
b8445a15
PE
8204 * data/c.m4 (b4_basename): Simplify a bit, since we don't
8205 need the full POSIX semantics (and weren't implementing them
8206 anyway).
8207
cb48f191
PE
8208 Adjust to Autoconf 2.60 and today's gnulib.
8209 * bootstrap (gnulib_modules): Add stdint.
8210 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
8211 no longer copies it.
8212 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
8213 since stdint needs the former and wcwidth (which is now required
8214 by mbswidth) needs the latter.
8215 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
8216 work around a compatibility glitch between gettext 0.14.6 and
8217 Autoconf 2.60.
8218 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
8219 Do not check for uintptr_t, since new stdint module does the right
8220 thing.
8221 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
8222 Add stdint.h, stdint_.h, wcwidth.h.
8223 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
8224 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
8225 stdint.m4, wchar_t.m4, wcwidth.m4.
8226 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
8227 usual order for ../lib/*.h files.
8228 (file_name_split): Use last_component, not base_name, to adjust
8229 to gnulib changes.
8230 * src/parse-gram.h: Include <strverscmp.h> in the usual order
8231 for ../lib/*.h files.
8232 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
8233 Define unconditionally, since we now assume the stdint module.
8234 * src/scan-skel.l: Include <dirname.h>.
8235 (BASE_QPUTS): Use last_component, not base_name.
8236 * src/system.h: Include <unlocked-io.h> in the usual order
8237 for ../lib/*.h files. Include <stdint.h> unconditionally,
8238 since we now use the stdint module.
8239 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
8240 HAVE_UINTPTR_T, since we now use the stdint module.
8241 (base_name): Remove decl, since files now include <dirname.h>
8242 to get the decl.
8243
cd48d21d
AD
82442006-07-08 Akim Demaille <akim@lrde.epita.fr>
8245
8246 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
8247 New, default to 1.
8248 * data/yacc.c, data/glr.c, data/location.cc: Use them.
8249 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
8250 default.
8251 * tests/calc.at: Adjust.
8252
8ec0a172
AD
82532006-07-08 Akim Demaille <akim@lrde.epita.fr>
8254
b8445a15 8255 * data/c.m4 (b4_basename): New.
8ec0a172
AD
8256 (b4_syncline): Also output the location of its invocation (from
8257 the skeleton).
8258 (b4_user_action, b4_define_user_action, b4_user_actions)
8259 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
8260 (b4_user_stype): New.
8261 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
8262
4a678af8
JD
82632006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8264
8265 In the grammar file, the first column is 1 not 0 on the first line as
8266 on every other line.
8267 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
8268 * tests/input.at (Torturing the Scanner): Update output.
8269
8270 * src/scan-gram.l (scanner_cursor): Declare it static.
8271
dd60572a
JD
82722006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8273
8274 In warnings, say "previous declaration" rather than "first
8275 declaration".
8276 * src/symtab.c (redeclaration): Do that here.
8277 * src/reader.c (record_merge_function_type): In the case of a result
8278 type clash, report the previous declaration rather than the very first
8279 one in the grammar file.
8280 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8281 declared later): Add a third declaration to check this behavior.
8282 * tests/input.at (Incompatible Aliases): Update output.
8283
2073e1b6
AD
82842006-06-27 Akim Demaille <akim@epita.fr>
8285
8286 * doc/Doxyfile.in: New.
8287 * doc/Makefile.am: Use it.
8288 * src/lalr.h, src/symtab.h: Initial doxygenation.
8289
8ee5b538
JD
82902006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8291
8292 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
8293 declared after the %merge. This continues the effort of the previous
8294 patch.
8ee5b538
JD
8295 * src/reader.c (get_merge_function): Don't set the merger type yet.
8296 (record_merge_function_type): New function for setting the merger type
8297 and checking for clashes.
8298 (grammar_current_rule_merge_set): Set the location of the %merge for
8299 the current rule.
8300 (packgram): Invoke record_merge_function_type for each rule now that
8301 all symbol type declarations have been parsed.
8302 * src/reader.h (merger_list.type_declaration_location): New member
8303 storing the location of the first %merge from which the type for this
8304 merging function was derived.
8305 * src/symlist.h (symbol_list.merger_declaration_location): New member
8306 storing the location of a rule's %merge, if any.
8307 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8308 declared later): New test to catch the error fixed by the above patch.
8309
ffa4ba3a
JD
83102006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8311
8312 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
8313 declarations appear after the rules. Discussed at
8314 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
8315 and
8316 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
8317 Don't mistake the type of $$ in a midrule to be that of its parent
8318 rule's $$.
ffa4ba3a
JD
8319 * src/reader.c (grammar_current_rule_end): Don't invoke
8320 grammar_rule_check yet since not all symbol declarations may have been
8321 parsed yet.
8322 (grammar_midrule_action): Likewise.
8323 Don't record whether the midrule's $$ has been used yet since actions
8324 haven't been translated yet.
8325 Record the midrule's parent rule and its RHS index within the parent
8326 rule.
8327 (grammar_current_rule_action_append): Don't translate the action yet
8328 since not all symbol declarations may have been parsed yet and, thus,
8329 warnings about types for $$, $n, @$, and @n can't be reported yet.
8330 (packgram): Translate the action and invoke grammar_rule_check now that
8331 all symbol declarations have been parsed.
8332 * src/scan-code.l (handle_action_dollar): Now that this is invoked
8333 after parsing the entire grammar file, the symbol list here in the case
8334 of a midrule is actually the midrule's empty RHS, so reference its
8335 parent rule's RHS where necessary.
8336 On the other hand, now that you can already know it's a midrule, you
8337 aren't forced to think $$ has the same type as its parent rule's $$.
8338 (handle_action_at): In the case of a midrule, reference the parent rule
8339 where necessary.
8340 * src/symlist.c (symbol_list_new): Initialize new midrule-related
8341 members.
8342 (symbol_list_length): Now that this is invoked after all rules have
8343 been parsed, a NULL symbol (rather than a NULL symbol list node)
8344 terminates a rule. symbol_list_print already does this correctly.
8345 * src/symlist.h (symbol_list.midrule_parent_rule,
8346 symbol_list.midrule_parent_rhs_index): New members so that midrules can
8347 remember their relationships with their parents.
8348 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
8349 fixed by the above patch.
8350 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
8351 implementing...
8352 (Unused values): ... this old test case and...
8353 (Unused values before symbol declarations): ... this new test case.
8354 This one is the same as `Unused values' except that all symbol
8355 declarations appear after the rules in order to catch the rest of the
8356 errors fixed by the above patch.
8357
e256e17f
JD
83582006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8359
300a1930
JD
8360 More cleanup.
8361 * src/reader.c (current_rule): Declare it static since it's no longer
8362 used outside this file.
8363 (grammar_current_rule_action_append): Remove redundant arguments from
8364 translate_rule_action invocation.
8365 * src/reader.h (current_rule): Remove this unused extern.
8366 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
8367 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 8368
381ecb06
JD
83692006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
8370
8371 Clean up yesterday's patch.
8372 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
8373 to...
8374 * src/reader.c (grammar_current_rule_action_append): ... here for
8375 consistency with grammar_current_rule_symbol_append.
8376 * tests/regression.at (Braced code in declaration in rules section):
8377 Make yyerror and yylex static as usual.
8378
4210cd0b
JD
83792006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
8380
8381 Fix bug that mistakes braced code in a declaration in the rules section
8382 to be a rule action. Mentioned at
8383 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
8384 * src/scan-gram.l: Move midrule action detection from the start of the
8385 scanning of any braced code to...
8386 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
8387 action. For readability, use $2 and @2 rather than the equivalent
8388 global variables.
8389 * tests/regression.at (Braced code in declaration in rules section):
8390 New test to catch the error fixed by the above patch.
8391
8392 Work on code readability some.
8393 * src/scan-code.l (current_rule): Get rid of this misleading and
8394 redundant declaration: it's actually extern'ed in reader.h.
8395 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
8396 translate_action): Add a rule argument and use it instead of the global
8397 current_rule.
8398 (translate_rule_action): This already receives current_rule through an
8399 argument, so pass it on to translate_action instead of assigning
8400 current_rule to current_rule.
8401 (translate_symbol_action, translate_code): Pass rule = NULL to
8402 translate_action.
8403
34f98f46
JD
84042006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
8405
8406 Rename %before-definitions to %start-header and %after-definitions to
8407 %end-header. Don't use these declarations to separate pre-prologue
8408 blocks from post-prologue blocks. Add new order-independent
8409 declarations %before-header and %after-header as alternatives to the
8410 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
8411 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
8412 * NEWS (2.3+): Update for these changes.
8413 * data/glr.c (b4_before_definitions): Update to...
8414 (b4_start_header): ... this.
8415 (b4_after_definitions): Update to...
8416 (b4_end_header): ... this.
8417 * data/glr.cc: Likewise.
8418 * data/lalr1.cc: Likewise.
8419 * data/yacc.c: Likewise.
8420 * doc/bison.texinfo (The prologue): Update names, and replace remaining
8421 prologue blocks with %*-header declarations.
8422 (Calc++ Parser): Likewise.
91661ebb 8423 (Decl Summary): Update names.
148d66d8 8424 (Table of Symbols): Update description.
34f98f46
JD
8425 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
8426 (PERCENT_END_HEADER): ... this.
8427 (PERCENT_BEFORE_DEFINITIONS): Update to...
8428 (PERCENT_START_HEADER): ... this.
8429 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8430 (declaration): Update token names and m4 macro names.
8431 When parsing %end-header and %start-header, invoke translate_code
8432 before muscle_code_grow, and no longer set global booleans to remember
8433 whether these declarations have been seen.
8434 Parse new %after-header and %before-header.
8435 * src/reader.c (before_definitions, after_definitions): Remove.
8436 (prologue_augment): Accept a new bool argument to specify whether to
8437 augment the pre-prologue or post-prologue.
8438 * src/reader.h (before_definitions, after_definitions): Remove these
8439 extern's.
8440 (prologue_augment): Add new bool argument.
8441 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
8442 (PERCENT_END_HEADER): ... this.
8443 (PERCENT_BEFORE_DEFINITIONS): Update to...
8444 (PERCENT_START_HEADER): ... this.
8445 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8446 * tests/actions.at (Printers and Destructors): Update names.
8447
31b2b07e
JD
84482006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
8449
8450 Add comparison operators for C++ location classes. Discussed at
8451 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
8452 * data/c++.m4 (b4_define_location_comparison): New boolean %define
8453 declaration indicating whether filename_type has an operator==. If
8454 filename_type is `std::string', it defaults to `1', `0' otherwise.
8455 * data/location.cc: Iff b4_define_location_comparison is `1', add
8456 operator== and operator!= for class position and for class location.
8457
8458 Some minor fixes.
8459 * src/scan-action.l: Remove unused file.
8460 * src/symtab.c (symbol_printer_set): Use printer_location not
8461 destructor_location.
8462 * src/symtab.h (struct symbol): Replace incorrect source comment for
8463 printer members.
8464 * tests/input.at (Incompatible Aliases): Update output with correct
8465 printer location.
8466
9bc0dd67
JD
84672006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
8468
8469 Don't put the pre-prologue in the header file. For the yacc.c code
8470 file and the glr.c header and code files, move the pre-prologue before
8471 the token definitions. Add new %before-definitions and
8472 %after-definitions to declare code that will go in both the header file
8473 and code file. Discussed at
8474 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
8475 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
8476 and
8477 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
8478 * NEWS (2.3+): Describe these changes.
8479 * data/glr.c (b4_pre_prologue): Move from within to before...
8480 (b4_shared_declarations): ... this.
8481 Add new b4_before_definitions before b4_token_enums.
8482 Add new b4_after_definitions at the end.
8483 * data/glr.cc (b4_pre_prologue): Replace with...
8484 (b4_before_definitions): ... this in the header file.
8485 (b4_after_definitions): New near the end of the header file.
8486 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
8487 code file right before including the header file.
8488 (b4_before_definitions): New in the previous position of
8489 b4_pre_prologue in the header file.
8490 (b4_after_definitions): New near the end of the header file.
8491 * data/yacc.c: Clean up some m4 quoting especially in the header file.
8492 (b4_token_enums_defines): In the code file, move to right before
8493 YYSTYPE for consistency with the header file.
8494 (b4_before_definitions): New right before b4_token_enums_defines in
8495 both the header and code file.
8496 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
8497 header and code file.
8498 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
8499 of prologues for %union dependencies.
91661ebb
JD
8500 (Decl Summary): In %defines description, mention the effect of
8501 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
8502 (Calc++ Parser): Forward declare driver in a %before-definitions rather
8503 than in the pre-prologue so that make check succeeds.
148d66d8 8504 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
8505 %after-definitions.
8506 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
8507 %before-definitions.
8508 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
8509 (declaration): Parse those declarations and append to
8510 b4_before_definitions and b4_after_definitions, respectively.
8511 * src/reader.c (before_definitions, after_definitions): New bools to
8512 track whether those declarations have been seen.
8513 (prologue_augment): Add to the post-prologue if %union,
8514 %before-definitions, or %after-definitions has been seen.
8515 * src/reader.h (before_definitions, after_definitions): New extern's.
8516 * src/scan-gram.l: Scan the new declarations.
8517 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
8518 prologue block in a %before-definitions or a %after-definitions based
8519 on whether the %union is declared.
8520 * tests/regression.at (Early token definitions with --yacc, Early token
8521 definitions without --yacc): Move tests for token definitions into the
8522 post-prologue since token names are no longer defined in the
8523 pre-prologue.
8524
203b9274
AD
85252006-06-20 Akim Demaille <akim@epita.fr>
8526
8527 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
8528 (symbol_get): Use it.
8529 * src/parse-gram.y: Use it.
8530
a7ee59cf
JD
85312006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
8532
8533 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
8534 build succeeds when configured with --enable-gcc-warnings.
8535
5a2baae7
PE
85362006-06-19 Paul Eggert <eggert@cs.ucla.edu>
8537
33ad1a9c
PE
8538 * src/parse-gram.y (char_name): New function.
8539 (CHAR, STRING, string_content): For %printer, properly escape.
8540 (ID): Prefer fputs to fprintf.
8541 (id): Reindent to be consistent with other rules.
8542 Properly quote char.
8543
5a2baae7
PE
8544 The Translation Project changed its way of publishing translations
8545 to maintainers. I haven't received any responses to my request
8546 for supporting the old way, or for documenting the new way. I
8547 have modified 'bootstrap' to use screen scraping
8548 (in this case, HTML scraping). This is unreliable and inelegant,
8549 but I don't see any better way. Yuck.
8550 * bootstrap (TP_URL, WGET_COMMAND): New vars.
8551 (get_translations): New function, which uses HTML scraping to
8552 deduce locations of latest translations.
8553 Use this function to grab both bison and bison-runtime .po files.
8554 Don't bother priming the pump for the runtime-po domain any more,
8555 as it's now translated better than bison is.
8556
58d7a1a1
AD
85572006-06-19 Akim Demaille <akim@epita.fr>
8558
8559 * src/scan-gram.l: No longer "parse" things after `%union' until
8560 `{'. Rather, return a single "%union" token.
8561 No longer make symbols: return strings, and leave the conversion
8562 to symbols to the parser.
8563 (SC_PRE_CODE, token_type): Remove.
8564 * src/parse-gram.y (%union): New field `character'.
8565 Sort tokens.
8566 (CHAR): New token.
8567 (ID, ID_COLON): Now that the scanner no longer makes them
8568 identifiers, adjust all uses to invoke symbol_get.
8569 (id_colon): New, wraps the conversion from string to symbol.
8570 (%union): Accept a possible union_name.
8571 (symbol): Now can be a char.
8572 * data/c.m4 (b4_union_name): Leave a default value.
8573 * data/glr.c, data/yacc.c: Use it.
8574
b931235e
JD
85752006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
8576
8577 For associating token numbers with token names for "yacc.c", don't use
8578 #define statements unless `--yacc' is specified; always use enum
8579 yytokentype. Most important discussions start at:
8580 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
8581 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
8582 and
8583 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
8584 * NEWS (2.3+): Mention.
8585 * data/c.m4 (b4_yacc_if): New.
8586 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
8587 token #define's.
8588 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
8589 on token name definitions.
8590 * src/getargs.c (usage): Capitalize `Yacc' in English.
8591 * src/output.c (prepare): Define b4_yacc_flag.
8592 * tests/regression.at (Early token definitions): Test that tokens names
8593 are defined before the pre-prologue not just before the post-prologue.
8594 Remove this test case and copy to...
8595 (Early token definitions with --yacc): ... this to test #define's.
8596 (Early token definitions without --yacc): ... and this to test enums.
8597
9e6e7ed2
PE
85982006-06-11 Paul Eggert <eggert@cs.ucla.edu>
8599
8600 * NEWS: Reword the post-2.3 change to not be so optimistic about
8601 removing the old "look-ahead" spelling.
8602 Update previous look-ahead/lookahead change reports.
8603 * REFERENCES: look-ahead -> lookahead (since that's
8604 what he actually wrote).
8605 * doc/refcard.tex: look ahead -> lookahead,
8606 look-ahead -> lookahead
8607
742e4900
JD
86082006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
8609
8610 For consistency, use `lookahead' instead of `look-ahead' or
8611 `look_ahead'. Discussed starting at
8612 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
8613 and then at
8614 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
8615 * NEWS: For the next release, note the change to `--report'.
8616 * TODO, doc/bison.1: Update English.
8617 * doc/bison.texinfo: Update English.
8618 (Understanding Your Parser, Bison Options): Document as
8619 `--report=lookahead' rather than `--report=look-ahead'.
8620 * src/conflicts.c: Update English in comments.
8621 (lookahead_set): Rename from look_ahead_set.
8622 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
8623 (resolve_sr_conflict): Rename local look_ahead_tokens to
8624 lookahead_tokens, and update other uses.
8625 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
8626 count_rr_conflicts, conflicts_free): Update uses.
8627 * src/getargs.c (report_args): Move "lookahead" before alternate
8628 spellings.
8629 (report_types): Update uses.
8630 (usage): For `--report' usage description, state `lookahead' spelling
8631 rather than `look-ahead'.
8632 * src/getargs.h (report.report_lookahead_tokens): Rename from
8633 report_look_ahead_tokens.
8634 * src/lalr.c: Update English in comments.
8635 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
8636 (state_lookahead_tokens_count): Rename from
8637 state_look_ahead_tokens_count.
8638 Rename local n_look_ahead_tokens to n_lookahead_tokens.
8639 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
8640 Rename local n_look_ahead_tokens to n_lookahead_tokens.
8641 Update other uses.
8642 Update English in output.
8643 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
8644 * src/print.c: Update English in comments.
8645 (lookahead_set): Rename from look_ahead_set.
8646 (print_reduction): Rename argument lookahead_token from
8647 look_ahead_token.
8648 (print_core, state_default_rule, print_reductions, print_results):
8649 Update uses.
8650 * src/print_graph.c: Update English in comments.
8651 (print_core): Update uses.
8652 * src/state.c: Update English in comments.
8653 (reductions_new): Update uses.
8654 (state_rule_lookahead_tokens_print): Rename from
8655 state_rule_look_ahead_tokens_print, and update other uses.
8656 * src/state.h: Update English in comments.
8657 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
8658 (state_rule_lookahead_tokens_print): Rename from
8659 state_rule_look_ahead_tokens_print.
8660 * src/tables.c: Update English in comments.
8661 (conflict_row, action_row): Update uses.
8662 * tests/glr-regression.at
8663 (Incorrect lookahead during deterministic GLR,
8664 Incorrect lookahead during nondeterministic GLR): Rename
8665 print_look_ahead to print_lookahead.
8666 * tests/torture.at: Update English in comments.
8667 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
8668 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
8669 (Many lookahead tokens): Update uses.
8670 * data/glr.c: Update English in comments.
8671 * lalr1.cc: Likewise.
8672 * yacc.c: Likewise.
8673 * src/conflicts.h: Likewise.
8674 * src/lalr.h: Likewise.
8675 * src/main.c: Likewise.
8676 * src/output.c: Likewise.
8677 * src/parse-gram.c: Likewise.
8678 * src/tables.h: Likewise.
8679 * tests/calc.at: Likewise.
8680
3c40d0b5
JD
86812006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
8682
8683 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
8684
5d278082
PE
86852006-06-07 Paul Eggert <eggert@cs.ucla.edu>
8686
8687 * TODO: Add request from Nelson H. F. Beebe to be able to install
8688 Bison without installing the yacc script.
8689
9e668899
JD
86902006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
8691
8692 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
8693 and yytext if they're already #define'd.
8694 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
8695 * src/scan-code-c.c: ... here.
8696 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
8697 <config.h>.
8698
0c8e079f
JD
86992006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
8700
8701 Get Bison to build again when configured with --enable-gcc-warnings.
8702 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
8703 missing #include's.
8704 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
8705 loc argument as it shadows a global.
8706 * src/scan-gram.l: Remove stray comma that prevents boundary_set
8707 invocation.
8708
8709 * src/.cvsignore: Add scan-code.c.
8710
2346344a
AD
87112006-06-07 Akim Demaille <akim@epita.fr>
8712
8713 * src/scan-gram.l: Move the "add a trailing ; to actions" code
8714 to...
8715 * src/scan-code.l: here.
8716 * tests/input.at (Torturing the Scanner): Fix another location
8717 error.
8718
4862bdfd
AD
87192006-06-07 Akim Demaille <akim@epita.fr>
8720
8721 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
8722
e9071366
AD
87232006-06-06 Akim Demaille <akim@epita.fr>
8724
8725 Extract the parsing of user actions from the grammar scanner.
8726 As a consequence, the relation between the grammar scanner and
8727 parser is much simpler. We can also split "composite tokens" back
8728 into simple tokens.
8729 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
8730 * src/scan-gram.l (add_column_width, adjust_location): Move to and
8731 rename as...
8732 * src/location.h, src/location.c (add_column_width)
8733 (location_compute): these.
8734 Fix the column count: the initial column is 0.
8735 (location_print): Be robust to ending column being 0.
8736 * src/location.h (boundary_set): New.
8737 * src/main.c: Adjust to scanner_free being renamed as
8738 gram_scanner_free.
8739 * src/output.c: Include scan-code.h.
8740 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
8741 Use boundary_set.
8742 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
8743 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
8744 which is now, again, a separate token.
8745 Adjust all dependencies.
8746 Whereever actions with $ and @ are used, use translate_code.
8747 (action): Remove this nonterminal which is now useless.
8748 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
8749 (grammar_current_rule_action_append): Use translate_code.
8750 (packgram): Bound check ruleno, itemno, and rule_length.
8751 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
8752 (last_string, last_braced_code_loc, max_left_semantic_context)
8753 (scanner_initialize, scanner_free, scanner_last_string_free)
8754 (gram_out, gram_lineno, YY_DECL_): Move to...
8755 * src/scan-gram.h: this new file.
8756 (YY_DECL): Rename as...
8757 (GRAM_DECL): this.
8758 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
8759 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8760 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8761 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8762 Move these declarations, and...
8763 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
8764 these to...
8765 * src/flex-scanner.h: this new file.
8766 * src/scan-gram.l (rule_length, rule_length_overflow)
8767 (increment_rule_length): Remove.
8768 (last_braced_code_loc): Rename as...
8769 (gram_last_braced_code_loc): this.
8770 Adjust to the changes of the parser.
8771 Move all the handling of $ and @ into...
8772 * src/scan-code.l: here.
8773 * src/scan-gram.l (handle_dollar, handle_at): Remove.
8774 (handle_action_dollar, handle_action_at): Move to...
8775 * src/scan-code.l: here.
8776 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
8777 scan-code.h, scan-code-c.c, scan-gram.h.
8778 (EXTRA_bison_SOURCES): Add scan-code.l.
8779 (BUILT_SOURCES): Add scan-code.c.
8780 (yacc): Be robust to white spaces.
8781
8782 * tests/conflicts.at, tests/input.at, tests/reduce.at,
8783 * tests/regression.at: Adjust the column numbers.
8784 * tests/regression.at: Adjust the error message.
7891a7c4 8785
184e42f0
JD
87862006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8787
8788 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8789 Use Akim's wording from
8790 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
8791
7891a7c4
JD
87922006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8793
8794 Between Bison releases, manually append `+' to the previous Bison
8795 release number, and use that as a signal to automatically print the
8796 ChangeLog's CVS Id keyword from --version. Discussed starting at
8797 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
8798 * ChangeLog: Add Id header.
8799 * configure.ac (AC_INIT): Append `+' to `2.3'.
8800 * src/.cvsignore: Add revision.c.
8801 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
8802 (BUILT_SOURCES): Add revision.c.
8803 (revision.c): New target rule. This file defines a new global variable
8804 named revision. It initializes it with either the Id from ChangeLog
8805 or, if VERSION doesn't contain `+', with the empty string.
8806 * src/getargs.c (version): Print the value of revision.
8807 * src/revision.h: Extern revision.
8808
4ad3ed84
PE
88092006-06-05 Paul Eggert <eggert@cs.ucla.edu>
8810
8811 * NEWS: Version 2.3.
8812 * configure.ac (AC_INIT): Likewise.
8813
02103984
PE
88142006-05-30 Paul Eggert <eggert@cs.ucla.edu>
8815
8816 * data/glr.c (YYRECOVERING): Define to be a function-like macro
8817 with no arguments, not as an object-like macro. This is for
8818 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
8819 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
8820 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
8821 Document this.
8822
2c08afa5
JD
88232006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
8824
8825 * src/getargs.c (usage): Back out yesterday's modification of the
8826 --help output so that we don't have to wait for translation before
8827 releasing 2.3.
8828
6077da58
PE
88292006-05-29 Paul Eggert <eggert@cs.ucla.edu>
8830
8831 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
8832 Problem reported by Akim Demaille.
8833
2a26b6c2
JD
88342006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
8835
8836 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8837
aefef0d6
PE
88382006-05-26 Paul Eggert <eggert@cs.ucla.edu>
8839
8840 * data/yacc.c (yy_reduce_print): Omit trailing white space in
8841 generated source code. Problem reported by Frans Englich in
8842 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
8843
fcd8e201
PE
88442006-05-22 Paul Eggert <eggert@cs.ucla.edu>
8845
8846 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
8847 shell, not within 'make', so that 'make' by an ordinary builder
8848 (using GNU make) does not worry about configuring gzip. This also
8849 works around a bug reported independently by Keith Thompson and by
8850 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
8851 stderr rather than stdout, messing up the build logs.
8852
7b5cdcbd
JD
88532006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
8854
8855 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
8856 to make sure that YYID will never be unused. This fixes a 'make
8857 maintainer-check' failure caused by the recent changes to the 'Trivial
8858 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
8859 not used.
8860 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
8861
5ad0a449
JD
88622006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
8863
8864 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
8865 state before an empty RHS is always resolved here. Only the location
8866 of that state is guaranteed to be resolved, and that's enough. This
8867 fixes the remaining bug reported by Derek M. Jones in
8868 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
8869 * tests/glr-regression.at (Uninitialized location when reporting
8870 ambiguity): Test the above case.
8871 Also, the embedded comments in this test case claim it checks the case
8872 of an empty RHS that has inherited the initial location. However, the
8873 corresponding LHS was already resolved, so yyresolveLocations didn't
8874 actually have reason to modify it. Fix this by forcing
8875 nondeterministic operation at the beginning of the parse.
8876
50cce58e
PE
88772006-05-20 Paul Eggert <eggert@cs.ucla.edu>
8878
8879 * data/c.m4 (b4_yy_symbol_print_generate):
8880 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
8881 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
8882 of the bugs reported today by Derek M Jones in
8883 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
8884 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
8885 defined to be a type name without parens or brackets.
8886 (Location Type): Similarly for YYLTYPE.
8887 * tests/regression.at (Trivial grammars): Put in a test for this
8888 bug that will be caught by 'make maintainer-check' (though not,
8889 alas, by 'make check' unless your compiler is picky).
8890
ab8d9dc5
PE
88912006-05-19 Paul Eggert <eggert@cs.ucla.edu>
8892
0d2c8934 8893 * NEWS: Version 2.2.
ab8d9dc5
PE
8894 * configure.ac (AC_INIT): Likewise.
8895
9138c575
JD
88962006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
8897
8898 * data/glr.c (yyreportTree): Make room in yystates for the state
8899 preceding the RHS. This fixes the segmentation fault reported by Derek
8900 M. Jones in
8901 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
8902 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
8903 to the user. Reported for yyreportTree by Derek M. Jones later in the
8904 same thread.
8905 * THANKS: Add Derek M. Jones.
8906 Update my email address.
8907 Fix typo in Steve Murphy's name.
8908
276f48df
PE
89092006-05-14 Paul Eggert <eggert@cs.ucla.edu>
8910
d6645148
PE
8911 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
8912 checking against YYLAST that caused the parser to miss a potential
8913 alternative in its diagnostic.
8914 Problem reported by Maria Jose Moron Fernandez in
8915 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
8916 * data/lalr1.cc (yysyntax_error_): Likewise.
8917 * data/yacc.c (yysyntax_error): Likewise.
8918 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
8919 tokens, in case we run into an older C compiler.
8920 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
8921 Use them to check for the off-by-one error fixed above.
8922
276f48df
PE
8923 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
8924 YYSIZE_T, not size_t.
8925 * tests/regression.at (Trivial grammars): New test, to catch
8926 the error fixed by the above patch.
8927
cd8b5791
AD
89282006-05-14 Akim Demaille <akim@lrde.epita.fr>
8929
8930 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
8931 scheme.
8932 Reported by Steve Murphy.
8933
34376418
AD
89342006-05-14 Akim Demaille <akim@lrde.epita.fr>
8935
8936 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
8937 * data/glr.cc: b4_location_flag is now b4_locations_flag.
8938
327afc7c
AD
89392006-05-14 Akim Demaille <akim@lrde.epita.fr>
8940
8941 Implement --trace=m4.
8942 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
8943 * src/output.c (output_skeleton): When set, pass -dV to m4.
8944
8945 Factor the handling of flags in m4.
8946 * src/output.c (prepare): Rename the muscle names debug, defines,
8947 error_verbose to debug_flag, defines_flag, error_verbose_flag.
8948 * data/c.m4: Adjust.
8949 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
8950 Use b4_define_flag_if to define other b4_FLAG_if macros.
8951 (b4_location_if): As a consequence, rename as...
8952 (b4_locations_if): this, for consistency.
8953 Adjust all the skeletons.
8954
ba9ecd19
AD
89552006-05-14 Akim Demaille <akim@lrde.epita.fr>
8956
8957 * etc/bench.pm: Shorten bench names.
8958
4e83ea15
AD
89592006-05-14 Akim Demaille <akim@lrde.epita.fr>
8960
8961 * src/output.h, src/output.c (error_verbose): Move to...
8962 * src/getargs.h, src/getargs.c: here.
8963 Sort the flags.
8964 Adjust dependencies.
8965
6e93d810
PE
89662006-05-13 Paul Eggert <eggert@cs.ucla.edu>
8967
8968 * data/c.m4 (b4_copyright): Put the special exception for Bison
8969 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
8970 uses changed. Suggested by Akim Demaille. Also, wrap the
8971 copyright notice, in case it is longer than 80 columns. Replace
8972 comma by newline after title.
6e93d810 8973
eaea13f5
PE
89742006-05-11 Paul Eggert <eggert@cs.ucla.edu>
8975
8976 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
8977 incompatibility, not a bug. Mention that it wasn't fixed as of
8978 flex 2.5.33.
8979
3cf084ec
AD
89802006-05-11 Akim Demaille <akim@lrde.epita.fr>
8981
8982 * examples/extexi: Enforce the precedence of concatenation over
8983 >>.
0a9f1c7d 8984 Reported by Tommy Nordgren.
3cf084ec 8985
32c96bd7
AD
89862006-05-11 Akim Demaille <akim@lrde.epita.fr>
8987
8988 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
8989 with the member "token".
f94705b2 8990 Reported by Martin Nylin.
32c96bd7 8991
eaea13f5
PE
89922006-05-08 Paul Eggert <eggert@cs.ucla.edu>
8993
8994 * data/glr.c: Switch to Bison 2.2 special-exception language in
8995 the copyright notice. Use more-regular format for titles and
8996 copyright notices.
8997 * data/glr.cc: Likewise.
8998 * data/location.cc: Likewise.
8999 * data/yacc.cc: Likewise.
9000 * doc/bison.texinfo (Conditions): Document this.
9001 * NEWS: likewise. Upgrade version to 2.2.
9002
6e2d1146
AD
90032006-04-27 Akim Demaille <akim@lrde.epita.fr>
9004
9005 * data/glr.cc: Remove dead code.
9006
47671055
PE
90072006-04-25 Paul Eggert <eggert@cs.ucla.edu>
9008
9009 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
9010 that variable and the line breaks the bootstrap. Problem reported
9011 by Juan M. Guerrero.
9012
ed2e6384
AD
90132006-04-24 Akim Demaille <akim@lrde.epita.fr>
9014
9015 * doc/bison.texinfo (Multiple start-symbols): New.
9016
3cedc2dc
AD
90172006-04-24 Akim Demaille <akim@lrde.epita.fr>
9018
9019 * etc/README, etc/bench.pl: New.
9020
b2ddc3f3
AD
90212006-04-03 Akim Demaille <akim@lrde.epita.fr>
9022
9023 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
9024 rule.
9025 Reported by Mickael Labau.
9026 * tests/input.at (Torturing the Scanner): Test it.
9027
91e3ac9a
PE
90282006-03-16 Paul Eggert <eggert@cs.ucla.edu>
9029
9030 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
9031 Problem reported by Bob Rossi.
9032
90332006-03-13 Paul Eggert <eggert@cs.ucla.edu>
9034
9035 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
9036 and didn't really work.
9037 For the index, use @ifnotinfo, not @iftex.
9038 Minor cleanups of spacing and terminology.
9039
5cf61e93
AD
90402006-03-12 Akim Demaille <akim@lrde.epita.fr>
9041
9042 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
9043 of AT_NAME_PREFIX when %name-prefix is not used.
9044
aa08666d
AD
90452006-03-12 Akim Demaille <akim@lrde.epita.fr>
9046
9047 Apply --prefix to C++ skeletons too: they change the namespace.
9048 The test suite already exercize these cases.
9049 * data/c++.m4 (b4_namespace): New.
9050 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
9051 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
9052 * data/yacc.c, data/glr.c: Remove a useless `[]'.
9053 * doc/bison.texinfo: Document it.
9054 (Option Cross Key): Use @multitable in all formats. It looks
9055 nicer, even in TeX outputs.
9056 (Rules): Use the same code whatever the output type is.
9057 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
9058 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
9059 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 9060
45567173
AD
90612006-03-10 Akim Demaille <akim@lrde.epita.fr>
9062
9063 * TODO: Remove dead items.
9064
e9d8f881 90652006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
9066
9067 * doc/FAQ: Remove, merged into...
9068 * doc/bison.texinfo (FAQ): this.
9069 * doc/Makefile.am (EXTRA_DIST): Adjust.
9070
c095d689
AD
90712006-03-10 Akim Demaille <akim@lrde.epita.fr>
9072
9073 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
9074 even if empty.
9075 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
9076 * doc/bison.texinfo (Calc++ Scanner): Use it.
9077
6e0f8287
PE
90782006-03-09 Paul Eggert <eggert@cs.ucla.edu>
9079
9080 Fix two nits reported by twlevo, plus one more that I discovered.
9081
9082 * src/assoc.h (assoc_to_string): Give a name to the arg, as
9083 this is the usual Bison style.
9084 * src/location.h (location_print): Likewise.
9085
9086 * src/reader.h (token_name): Likewise.
9087
d6b771c3
PE
90882006-03-08 Paul Eggert <eggert@cs.ucla.edu>
9089
9090 Fix some nits reported by twlevo.
9091 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
9092 and "POSIX". Use more-modern syntax for URLs. Mention C++
9093 and ask for Java. Don't hardwire OS version numbers. Add
9094 copyright notice.
9095 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
9096 * src/conflicts.c (solved_conflicts_obstack): Now static.
9097
1e137b71
JD
90982006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
9099
9100 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
9101 page. Say "you can use it" not "you may use it" as on the web page;
9102 we're describing capabilities not granting permission.
9103
73f2e47e
PE
91042006-03-06 Paul Eggert <eggert@cs.ucla.edu>
9105
6d05403d
PE
9106 * data/glr.c (yyresolveLocations): Rename local variables to avoid
9107 shadowing warnings. Use usual patter for iterating through RHS.
9108 * tests/glr-regression.at
9109 (Uninitialized location when reporting ambiguity):
9110 Modify yylex so that it uses its argument, rather than trying
9111 to rely on ARGSUSED (which doesn't work for gcc with warnings).
9112 const char -> char const.
9113
73f2e47e
PE
9114 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
9115 Don't use tabs inside commands; it messes up 'ps'.
9116 Problem reported by twlevo.
9117
8710fc41
JD
91182006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
9119
9120 * tests/glr-regression.at (Uninitialized location when reporting
9121 ambiguity): New test case.
9122 * data/glr.c (yyresolveLocations): New function, which uses
9123 YYLLOC_DEFAULT.
9124 (yyresolveValue): Invoke yyresolveLocations before reporting an
9125 ambiguity.
9126 * doc/bison.texinfo (Default Action for Locations): Note
9127 YYLLOC_DEFAULT's usage for ambiguity locations.
9128 (GLR Semantic Actions): Cross-reference those notes.
9129
ae952af2
JD
91302006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
9131
9132 * tests/glr-regression.at (Leaked semantic values when reporting
9133 ambiguity): Remove unnecessary union and type declarations.
9134 (Leaked lookahead after nondeterministic parse syntax error): New test
9135 case.
9136 * data/glr.c (yyparse): Check for zero stacks remaining before
9137 attempting to shift the lookahead so that you don't lose it.
9138
35ee866a
JD
91392006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9140
9141 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
9142 * tests/glr-regression.at (Leaked semantic values when reporting
9143 ambiguity): New test case.
9144 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
9145 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
9146 now unnecessary yystackp parameter.
9147 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
9148 destructors can be called.
9149
9150 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
9151 in existing testcases.
9152
520181ab
JD
91532006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9154
9155 Don't leak semantic values for parent RHS when a user action cuts the
9156 parser, and clean up related code a bit.
9157 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
9158 cuts parse): Rename to...
9159 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
9160 for leaked parent RHS values.
9161 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
9162 between an unresolved state (non-empty chain of semantic options) and
9163 an incomplete one (signaled by an empty chain).
ae952af2 9164 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
9165 successfully or unsuccessfully resolved yyGLRState to...
9166 (yyresolveValue): ... here so that yyresolveValue always leaves a
9167 yyGLRState with consistent data and thus is easier to understand.
9168 Remove the yyvalp and yylocp parameters since they are always just
9169 taken from the yys parameter. When reporting a discarded merged value
9170 in debugging output, note that it is incompletely merged. Document the
9171 interface.
9172 (yyresolveAction): If resolving any of the RHS states fails, destroy
9173 them all rather than leaking them. Thus, as long as user actions are
9174 written to clean up the RHS correctly, yyresolveAction always cleans up
9175 the RHS of a semantic option. Document the interface.
9176
18d9185c
PE
91772006-02-27 Paul Eggert <eggert@cs.ucla.edu>
9178
9179 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
9180 led to a segmentation fault in GNU Pascal. Problem reported
9181 by Waldek Hebisch.
9182
841a7737
JD
91832006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
9184
9185 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
9186 mid-rule action inside a nonterminal symbol in order to declare a
9187 destructor for its semantic value.
9188
fc3f467f
PE
91892006-02-16 Paul Eggert <eggert@cs.ucla.edu>
9190
9191 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
9192 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
9193 __cplusplus && ! defined _STDLIB_H && !
9194 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
9195 defined free))]: Include <stdlib.h> rather than rolling our own
9196 declarations of malloc and free, to avoid problems with
9197 incompatible declarations (using 'throw') C++'s stdlib.h. This
9198 should fix Debian bug 340012
9199 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
9200 reported by Guillaume Melquiond.
9201
a3af26dd
PE
92022006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9203
4d7bc38c
PE
9204 * NEWS: Clarify symbols versus types in unused-value warnings.
9205
a3af26dd
PE
9206 * configure.ac (AC_INIT): Bump version number.
9207
4e26c69e
PE
92082006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9209
9210 * NEWS: Version 2.1a.
9211 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
9212 since C99 requires this.
9213
498e897c
PE
92142006-02-11 Paul Eggert <eggert@cs.ucla.edu>
9215
9216 * m4/c-working.m4: New file.
9217 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
9218
57bb17ca
PE
92192006-02-10 Paul Eggert <eggert@cs.ucla.edu>
9220
9221 * Makefile.maint: Merge from coreutils.
9222
0be105dc
PE
92232006-02-09 Paul Eggert <eggert@cs.ucla.edu>
9224
9225 More portability fixes for problems summarized by Nelson H. F. Beebe.
9226
9227 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
9228 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
9229 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
9230 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
9231 messes up because C++ code is compiled in 32-bit mode but linked
9232 in 64-bit mode.
9233
6fc0c024
PE
92342006-02-08 Paul Eggert <eggert@cs.ucla.edu>
9235
9236 More portability fixes for problems summarized by Nelson H. F. Beebe.
9237
7870f699
PE
9238 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
9239 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
9240
6fc0c024
PE
9241 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
9242 nodist_PROGRAMS, since we don't need to actually compile the
9243 example if we're just doing a plain 'make'. This avoids bothering
9244 the installer unnecessarily about problems due to weird C++
9245 compilers.
9246
fe6c2fde
PE
92472006-02-06 Paul Eggert <eggert@cs.ucla.edu>
9248
9249 More portability fixes for problems summarized by Nelson H. F. Beebe.
9250
9251 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
9252 than #include "...", and compile with -I'.'. The old method was
9253 not portable, according to Posix and the C standard, and it does
9254 not work with Sun C 5.7, where previous #line directives affect
9255 the working directory used in later #include "..." directives.
9256
927b425b
JMG
92572006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9258
9259 Various DJGGP specific issues in /djgpp
9260
d9735e9e
PE
92612006-02-02 Paul Eggert <eggert@cs.ucla.edu>
9262
9263 More portability fixes for problems summarized by Nelson H. F. Beebe.
9264
9265 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
9266 '#include <map>' works and that you can apply ++ to iterators.
9267
5a6755af
PE
92682006-02-01 Paul Eggert <eggert@cs.ucla.edu>
9269
67a0dc4f
PE
9270 Work around portability problems summarized by Nelson H. F. Beebe in
9271 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
9272
8c86f0ef
PE
9273 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9274 that '#include <string>' works.
9275
de35dd59
PE
9276 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
9277 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
9278 "warning: sorry: semantics of inline function static data `const
9279 unsigned char translate_table[262]' are wrong (you'll wind up with
9280 multiple copies)".
9281
67a0dc4f
PE
9282 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
9283 or, xor to not_, and_, or_, and xor_, respectively. This works
9284 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
9285 random system header somewhere that includes the equivalent of
9286 <iso646.h>.
9287
5a6755af
PE
9288 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
9289 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 9290 Suite Version 2.0.
5a6755af 9291
3f001415
JD
92922006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
9293
9294 During deterministic GLR operation, user actions should be able to
9295 influence the parse by changing yychar. To make this easier to fix and
9296 to make glr.c easier to evolve in general, don't maintain yytoken in
9297 parallel with yychar; just compute yytoken when needed.
9298 * tests/glr-regression.at (Incorrect lookahead during deterministic
9299 GLR): Check that setting yychar in a user action has the intended
9300 effect.
9301 * data/glr.c (yyGLRStack): Remove yytokenp member.
9302 (yyclearin): Don't set *yytokenp.
9303 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
9304 yychar rather than *yytokenp to determine the current lookahead.
9305 Compute yytoken locally when needed.
9306 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
9307 point to.
9308
9309 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
9310 after `--report' documentation.
9311
e2a8c0f5
PE
93122006-01-30 Paul Eggert <eggert@cs.ucla.edu>
9313
9314 * src/parse-gram.y (grammar_declaration): Location of printer
9315 symbol is @1, not list->location. Bug reported by twlevo.
9316 * tests/input.at (Incompatible Aliases): Adjust to above change.
9317
6b702268
PE
93182006-01-29 Paul Eggert <eggert@cs.ucla.edu>
9319
27622431
PE
9320 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
9321 all the test at once. This makes the output easier to read in the
9322 normal case.
9323
6b702268
PE
9324 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
9325 got from <http://bro-ids.org/download.html>. The bug is that
9326 when two actions appeared in succession, the second one was
9327 scanned before the first one was added to the grammar rule
9328 as a midrule action. Bison then output the incorrect warning
9329 "parse.y:905.17-906.36: warning: unused value: $3".
9330 * src/parse-gram.y (BRACED_CODE, action): These are no longer
9331 associated with a value.
9332 (rhs): Don't invoke grammar_current_rule_action_append.
9333 (action): Invoke it here instead.
9334 * src/reader.c (grammar_midrule_action): Now extern.
9335 (grammar_current_rule_action_append): Don't invoke
9336 grammar_midrule_action; that is now the scanner's job.
9337 * src/reader.h (last_string, last_braced_code_loc):
9338 (grammar_midrule_action): New decls.
9339 * src/scan-gram.l (last_string): Now extern, sigh.
9340 (last_braced_code_loc): New extern variable.
9341 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
9342 rule already has an action.
9343 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
9344 * tests/input.at (AT_CHECK_UNUSED_VALUES):
9345 Add some tests to check that the above changes fixed the bug.
9346
d40ba6c2
PE
93472006-01-27 Paul Eggert <eggert@cs.ucla.edu>
9348
9349 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
9350 All used changed. Check whether the symbol has a destructor,
9351 not whether it is typed.
9352 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
9353 that the values are still reported as unused. All line numbers
9354 adjusted.
9355
401aace6
PE
93562006-01-23 Paul Eggert <eggert@cs.ucla.edu>
9357
9358 Work around a bug in bro 0.8, which underparenthesizes its
9359 definition of YYLLOC_DEFAULT.
9360 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
9361 their arguments.
9362 * data/lalr1.cc: Likewise.
9363 * data/yacc.cc: Likewise.
9364
06f01bc4
PE
93652006-01-22 Paul Eggert <eggert@cs.ucla.edu>
9366
401aace6
PE
9367 Work around a bug in Pike 7.0, and give the Pike folks a
9368 better way to override the usual int widths.
9369 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
9370 user can override the types.
9371 (short): #undef, to work around a bug in Pike 7.0.
9372 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
9373 (union yyalloc.yyss): Use yytype_int16 rather than short.
9374 All uses changed.
9375 (yysigned_char): Remove.
9376 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
9377 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
9378 * tests/regression.at (Web2c Actions): Adjust to above changes.
9379
9380 * src/reader.c (check_and_convert_grammar): New function.
9381 (reader): Close the input file even if something went wrong during
9382 parsing. Minor file descriptor leak reported by twlevo.
9383
06f01bc4
PE
9384 * src/assoc.c (assoc_to_string): Use a default: abort (); case
9385 to pacify gcc -Wswitch-default.
9386 * src/scan-gram.l (adjust_location): Use a default: break; case
9387 to pacify gcc -Wswitch-default.
9388 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
9389 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9390 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9391 Move these decls to scan-skel.l, since they don't need to be
9392 visible elsewhere.
9393 * src/scan-skel.l: Accept the above decls.
9394 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
9395 is used.
9396
02650b7f
PE
93972006-01-21 Paul Eggert <eggert@cs.ucla.edu>
9398
9399 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
9400 since we don't want to insist on a version number at the start
9401 of the changelog every time.
9402 * Makefile.maint: Sync from coreutils a bit better.
9403 (sc_trailing_blank): Renamed from sc_trailing_space.
9404 All uses changed.
9405 (sc_no_if_have_config_h, sc_require_config_h):
9406 (sc_prohibit_assert_without_use): New rules.
9407 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
9408 (sc_dd_max_sym_length): Fix leading spaces in rule.
9409 (sc_system_h_headers): Prefix with @.
9410 (sc_useless_cpp_parens, m4-check): Output line numbers.
9411 (changelog-check): Allow version only in head.
9412 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
9413 satisfy new Makefile.maint rule.
9414 * data/glr.c: Likewise.
9415 * data/glr.cc: Likewise.
9416 * data/lalr1.cc: Likewise.
9417 * data/yacc.c: Likewise.
9418 * lib/ebitsetv.c: Likewise.
9419 * lib/lbitset.c: Likewise.
9420 * lib/subpipe.c: Likewise.
9421 * lib/timevar.c: Likewise.
9422 * src/system.h: Likewise.
9423 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
9424 * djgpp/Makefile.maint: Add copyright notice.
9425 * djgpp/README.in: Likewise.
9426 * djgpp/config.bat: Likewise.
9427 * djgpp/config.site: Likewise.
9428 * djgpp/config_h.sed: Likewise.
9429 * djgpp/djunpack.bat: Likewise.
9430 * djgpp/config.sed: Fix copyright notice to match standard format.
9431 * djgpp/subpipe.h: Likewise.
9432 * lib/bitsetv-print.c: Likewise.
9433 * lib/bitsetv.c: Likewise.
9434 * lib/subpipe.h: Likewise.
9435 * lib/timevar.c: Likewise.
9436 * lib/timevar.h: Likewise.
9437 * djgpp/subpipe.c: Use standard recipe for config.h.
9438 * lib/abitset.c: Likewise.
9439 * lib/bitset.c: Likewise.
9440 * lib/bitset_stats.c: Likewise.
9441 * lib/bitsetv-print.c: Likewise.
9442 * lib/bitsetv.c: Likewise.
9443 * lib/ebitsetv.c: Likewise.
9444 * lib/get-errno.c: Likewise.
9445 * lib/lbitset.c: Likewise.
9446 * lib/subpipe.c: Likewise.
9447 * lib/timevar.c: Likewise.
9448 * lib/vbitset.c: Likewise.
9449 * tests/local.at: Likewise.
9450 * src/scan-gram.l: Don't include verify.h, since system.h does
9451 that for us.
9452 * .x-sc_require_config_h: New file.
9453 * .x-sc_unmarked_diagnostics: New file.
9454
287c78f6
PE
94552006-01-20 Paul Eggert <eggert@cs.ucla.edu>
9456
287c78f6
PE
9457 Be a bit more systematic about using 'abort'.
9458 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
9459 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
9460 Put 'default: abort ();' before some other case, to satisfy older
9461 pedantic compilers.
9462 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9463 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
9464 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
9465 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
9466 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
9467 (get_decision_str, get_orientation_str, get_node_alignment_str):
9468 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
9469 (get_linestyle_str, get_arrowstyle_str): Likewise.
9470 * src/conflicts.c (resolve_sr_conflict):
9471 Use a default case rather than one for the one remaining enum
9472 value, to catch invalid enum values as well.
9473 * src/lalr.c (set_goto_map, map_goto):
9474 Prefer "assert (FOO);" to "if (!FOO) abort ();".
9475 * src/nullable.c (nullable_compute, token_definitions_output):
9476 Likewise.
9477 * src/reader.c (packgram, reader): Likewise.
9478 * src/state.c (transitions_to, state_new, state_reduction_find):
9479 Likewise.
9480 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
9481 (symbol_pack): Likewise.
9482 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
9483 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
9484 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
9485 * src/system.h: Don't include <assert.h>.
9486 (assert): New macro.
9487
9488 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
9489 (Destructor Decl, Parser Function, Pure Calling):
9490 Describe rules for braces inside C code more carefully.
287c78f6 9491
c66dfadd
PE
94922006-01-19 Paul Eggert <eggert@cs.ucla.edu>
9493
c21493b8
PE
9494 Fix some porting glitches found by Nelson H. F. Beebe.
9495 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
9496 compilers that don't understand that abort () does not return.
9497 * src/state.c (transitions_to): Likewise.
9498 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9499 that '#include <cstdlib>' works.
9500 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
9501 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
9502 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
9503 for the benefit of some pre-C99 compilers.
9504
b6e3facf
PE
9505 * bootstrap: Undo changes to gnulib files that autoreconf made.
9506
c66dfadd
PE
9507 Minor fixups to get 'make maintainer-check' to work.
9508 * configure.ac: Don't use -Wnested-externs, as it's incompatible
9509 with the new verify.h implementation.
9510 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
9511 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
9512 * data/yacc.c (YYUSE): Likewise.
9513 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
9514 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
9515 * src/parse-gram.y (declaration): Don't pass a string constant
9516 to a function that expects char *, since GCC might complain
9517 about the constant value.
9518 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
9519 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
9520 before #defining them.
9521 * tests/glr-regression.at
9522 (Incorrectly initialized location for empty right-hand side in GLR):
9523 In yyerror, use the msg arg.
9524 (Corrupted semantic options if user action cuts parse):
9525 (Incorrect lookahead during deterministic GLR):
9526 (Incorrect lookahead during nondeterministic GLR):
9527 Don't name a local var 'index'; it shadows string.h's 'index'.
9528
ed94ef2a
AD
95292006-01-19 Akim Demaille <akim@epita.fr>
9530
9531 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
9532 location, not just parts of it.
9533
e9ad4aec
PE
95342006-01-18 Paul Eggert <eggert@cs.ucla.edu>
9535
d6ca7905
PE
9536 * NEWS: Document the fact that multiple %unions are now allowed.
9537 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
9538 * TODO: This feature is now implemented, so remove it from
9539 the wishlist.
d6ca7905 9540
ef1b70e0
PE
9541 * Makefile.maint: Merge with coreutils Makefile.maint.
9542 (CVS_LIST): Use build-aux version if available.
9543 (VERSION_REGEXP): New macro.
9544 (syntax-check-rules): Add sc_no_if_have_config_h,
9545 sc_prohibit_assert_without_use, sc_require_config_h,
9546 sc_useless_cpp_parens.
9547 (sc_obsolete_symbols): Check for O_NDELAY.
9548 (sc_dd_max_sym_length): Track coreutils.
9549 (sc_unmarked_diagnostics): Look in all files, not just *.c.
9550 (sc_useless_cpp_parens): New rule.
9551 (news-date-check): Look for version or today's date.
9552 (changelog-check): Don't require version number near head.
9553 (copyright-check): Use current year instead of hardwiring 2005.
9554 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
9555 (announcement): Add --gpg-key-ID.
9556
9557 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
9558 with "file system".
9559
2073ce56 9560 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
9561 array. Problem reported by twlevo.
9562 * src/reader.c (packgram): Prepend a new sentinel before ritem.
9563 * src/lalr.c (build_relations): Rely on new sentinel.
9564 * src/gram.c (gram_free): Adjust to new sentinel.
9565
b7691f15
JD
95662006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
9567
9568 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
9569 yylookaheadNeeds. All uses updated.
9570 (yysplitStack): Rename local yynewLookaheadStatuses to
9571 yynewLookaheadNeeds.
9572 * data/glr-regression.at (Incorrect lookahead during nondeterministic
9573 GLR): In comments, change `lookahead status' to `lookahead need'.
9574
ddee1b06
PH
95752006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9576
9577 * data/glr.c (yysplitStack): A little stylistic rewrite.
9578
12f4614d
PH
95792006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9580
9581 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
9582
32c29292
JD
95832006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
9584
9585 * doc/bison.texinfo: Fix some typos.
9586 (GLR Semantic Actions): New subsection discussing special
9587 considerations because GLR semantic actions might be deferred.
9588 (Actions): Mention look-ahead usage of yylval.
9589 (Actions and Locations): Mention look-ahead usage of yylloc.
9590 (Special Features for Use in Actions): Add YYEOF entry and mention it
9591 in the yychar entry.
9592 In the yychar entry, remove mention of the local yychar case (pure
9593 parser) since this is irrelevant information when writing semantic
148d66d8 9594 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
9595 yychar is otherwise described as an external variable.
9596 In the yychar entry, don't call it the `current' look-ahead since it
9597 isn't when semantic actions are deferred.
9598 In the yychar and yyclearin entries, add note about deferred semantic
9599 actions.
9600 Add yylloc and yylval entries discussing look-ahead usage.
9601 (Look-Ahead Tokens): When discussing yychar, don't call it the
9602 `current' look-ahead, and do mention yylval and yylloc.
9603 (Error Recovery): Cross-reference `Action Features' when mentioning
9604 yyclearin.
148d66d8 9605 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
9606 look-ahead.
9607 In the yylloc and yylval entries, mention look-ahead usage.
9608
de366a2f 96092006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
9610
9611 * tests/glr-regression.at: Update copyright year to 2006.
9612
bf70fa87
JD
96132006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
9614
9615 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
9616 use during nondeterministic operation to track which stacks have
9617 actually needed the current lookahead.
9618 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
9619 Allocate, deallocate, resize, and otherwise shuffle space for
9620 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
9621 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
9622 appropriately during nondeterministic operation.
9623 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
9624 members to store the current lookahead to be used by the deferred
9625 user action.
9626 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
9627 from which the RHS is taken. Set the lookahead members of the new
9628 yySemanticOption according to the lookahead status for stack yyk.
9629 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
9630 yyaddDeferredAction.
9631 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
9632 members of yySemanticOption before invoking yyuserAction, and then set
9633 them back to their current values afterward.
9634 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
9635 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
9636 * tests/glr-regression.at: Remove `.' from the ends of recent test case
9637 titles for consistency.
9638 (Leaked merged semantic value if user action cuts parse): In order to
9639 suppress lint warnings, use arguments in merge function, and assign
9640 char value < 128 in main.
9641 (Incorrect lookahead during deterministic GLR): New test case.
9642 (Incorrect lookahead during nondeterministic GLR): New test case.
9643
05449a2c
JD
96442006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
9645
de366a2f 9646 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
9647 !yyvaluep as signal that no semantic value is available to print.
9648 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
9649 to print a semantic value.
9650
4158e0a1 96512006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 9652
4158e0a1
JD
9653 * tests/glr-regression.at: For consistency with my newer test cases,
9654 don't thank myself.
9655
d659304d
JD
96562006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
9657
9658 * data/glr.c (yyresolveValue): When merging semantic options, if at
9659 least one user action succeeds but a later one cuts the parse, then
9660 destroy the semantic value before returning rather than leaking it.
9661 (yyresolveStates): If a user action cuts the parse and thus
9662 yyresolveValue fails, ignore the (unset) semantic value rather than
9663 corrupting the yyGLRState, and empty the semantic options list since
9664 the user actions should have called all necessary destructors.
9665 Simplify code with YYCHK.
9666 * tests/glr-regression.at (Corrupted semantic options if user action
9667 cuts parse): New test case.
9668 (Undesirable destructors if user action cuts parse): New test case.
9669 Before applying any of this patch, this test case never actually failed
9670 for me... but only because the corrupted semantic options usually
9671 masked this bug.
9672 (Leaked merged semantic value if user action cuts parse): New test
9673 case.
9674
6ec2c0f2
AD
96752006-01-05 Akim Demaille <akim@epita.fr>
9676
9677 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
9678
1b9c21fb
PE
96792006-01-04 Paul Eggert <eggert@cs.ucla.edu>
9680
9681 * data/c.m4 (b4_c_modern): New macro, with a new provision for
9682 _MSC_VER. Problem reported by Cenzato Marco.
9683 (b4_c_function_def): Use it.
9684 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
9685 b4_c_modern.
9686 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
9687 than rolling our own.
9688
84866159
AD
96892006-01-04 Akim Demaille <akim@epita.fr>
9690
9691 Also warn about non-used mid-rule values.
9692 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
9693 member.
9694 (symbol_list_new): Adjust.
9695 * src/reader.c (symbol_typed_p): New.
9696 (grammar_rule_check): Use it.
9697 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
9698 Check its rule.
9699 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
9700 Use it.
9701 * tests/actions.at (Exotic Dollars): Adjust.
9702
378f4bd8
AD
97032006-01-04 Akim Demaille <akim@epita.fr>
9704
9705 * src/reader.c (grammar_midrule_action): If $$ is set in a
9706 mid-rule, move the `used' bit to its lhs.
9707 * tests/input.at (Unused values): New.
9708 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
9709
e2a21b6f
PE
97102006-01-03 Paul Eggert <eggert@cs.ucla.edu>
9711
54662697
PE
9712 * doc/bison.texinfo (Bison Options): Say more accurately what
9713 --yacc does.
9714 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
9715 about declarations in the grammar when in Yacc mode, as POSIX does
9716 not require a diagnostic when the grammar uses extensions.
9717
9718 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
9719
073f9288
PE
9720 Warn about dubious constructions like "%token T T".
9721 Reported by twlevo.
9722 * src/symtab.h (struct symbol.declared): New member.
9723 * src/symtab.c (symbol_new): Initialize it to false.
9724 (symbol_class_set): New arg DECLARING, specifying whether
9725 this is a declaration that we want to warn about, if there
9726 is more than one of them. All uses changed.
9727
1221b78a
PE
9728 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
9729 Allow multiple %union directives, whose contents concatenate.
9730 * src/parse-gram.y (grammar_declaration): Likewise.
9731 Use muscle_code_grow, so that we don't need stype_line any more.
9732 All uses changed.
9733
9734 * src/muscle_tab.c (muscle_grow): Fix comment.
9735
e2a21b6f
PE
9736 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
9737 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
9738 Update copyright year to 2006.
9739
8f7e3cf9
AD
97402006-01-03 Akim Demaille <akim@epita.fr>
9741
9742 Have glr.cc pass (some of) the calc.at tests.
9743 * data/glr.cc (b4_parse_param_orig): New.
9744 (b4_parse_param): Improve its definition, and bound it more
9745 clearly in the skeleton.
9746 (b4_epilogue): Append, instead of prepending, in order to keep
9747 #line consistency.
9748 Simplify the generation of auxiliary functions: locations and
9749 purity are mandated.
9750 (b4_global_tokens_and_yystype): Honor it.
9751 * data/location.cc (c++.m4): Don't include it.
9752 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
9753 and AT_SKEL_CC_IF.
9754 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
9755 AT_LALR1_CC_IF.
9756 Be sure to initialize the first position's filename.
9757 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
9758 mandated anyway.
9759 (AT_CHECK_CALC_GLR_CC): New.
9760 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
9761
3953ed88
AD
97622006-01-02 Akim Demaille <akim@epita.fr>
9763
9764 * src/output.c (output_skeleton): Don't hard wire the inclusion of
9765 c.m4.
0a96ba81 9766 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
9767 * data/glr.cc: Do not include stack.hh.
9768
9ecafbbf
AD
97692006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
9770
9771 * data/glr.c: Reformat whitespace with tabs.
9772 (b4_lpure_formals): Remove this unused m4 macro.
9773 * tests/cxx-type.at: Reformat whitespace with tabs.
9774 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
9775 since it's a member. Rename type to isNterm for clarity.
9776
c4d497a0
AD
97772005-12-29 Akim <akim@sulaco.local>
9778
9779 Let glr.cc catch up with symbol_value_print.
9780 * data/glr.cc (b4_yysymprint_generate): Replace by...
9781 (b4_yy_symbol_print_generate): this.
9782 (yy_symbol_print, yy_symbol_value_print): Declare them.
9783
4517da37
PE
97842005-12-28 Paul Eggert <eggert@cs.ucla.edu>
9785
9786 * src/location.h (boundary): Note that a line or column equal
9787 to INT_MAX indicates an overflow.
9788 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
9789 (rule_length_overflow, increment_rule_length, add_column_width):
9790 New functions.
9791 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
9792 (<SC_BRACED_CODE>"}"):
9793 Use increment_rule_length rather than incrementing it by hand.
9794 (adjust_location, handle_syncline): Diagnose overflow.
9795 (handle_action_dollar, handle_action_at):
9796 Fix bug with monstrosities like $-2147483648.
9797 Remove now-unnecessary checks.
9798 (scan_integer): Verify assumptions and remove now-unnecessary checks.
9799 (convert_ucn_to_byte): Verify assumptions.
9800 (handle_syncline): New arg LOC. All callers changed.
9801 Don't store through a value derived from char const * pointer.
9802
9803 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
9804 GCC warnings.
9805
e3233bf6
PE
98062005-12-27 Paul Eggert <eggert@cs.ucla.edu>
9807
9808 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
9809 Remove unnecessary forward static decls.
9810
8f3596a6
AD
98112005-12-27 Akim Demaille <akim@epita.fr>
9812
9813 * src/reader.c (grammar_current_rule_check): Also check that $$
9814 is used.
9815 Take the rule to check as argument, hence rename as...
9816 (grammar_rule_check): this.
9817 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
9818 Rename as...
9819 (grammar_rule_begin, grammar_rule_end): these, for consistency.
9820 (grammar_midrule_action, grammar_symbol_append): Now static.
9821 * tests/torture.at (input): Don't rely on the default action
9822 being always performed.
9823 * tests/calc.at: "Set" $$ even when the action is "cut" with
9824 YYERROR or other.
9825 * tests/actions.at (Exotic Dollars): Instead of using unused
9826 values, check that the warning is issued.
9827
721be13c
PE
98282005-12-22 Paul Eggert <eggert@cs.ucla.edu>
9829
9830 * NEWS: Improve wording for unused-value warnings.
9831
a0af42fc
AD
98322005-12-22 Akim Demaille <akim@epita.fr>
9833
9834 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
9835 (b4_yysymprint_generate): Rename as...
9836 (b4_yy_symbol_print_generate): this.
9837 Generate yy_symbol_print instead of yysymprint.
9838 Generate also yy_symbol_value_print, and use it.
9839
affac613
AD
98402005-12-22 Akim Demaille <akim@epita.fr>
9841
721be13c 9842 * NEWS: Warn about unused values.
affac613
AD
9843 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
9844 a `used' member.
9845 (symbol_list_n_get, symbol_list_n_used_set): New.
9846 (symbol_list_n_type_name_get): Use symbol_list_n_get.
9847 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
9848 * src/reader.c (grammar_current_rule_check): Check that values are
9849 used.
9850 * src/symtab.c (symbol_print): Accept 0.
9851 * tests/existing.at: Remove the type information.
9852 Empty the actions.
9853 Remove useless actions (beware of mid-rule actions: perl -000
9854 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
9855 * tests/actions.at (Exotic Dollars): Use unused values.
9856 * tests/calc.at: Likewise.
9857 * tests/glr-regression.at (No users destructors if stack 0 deleted):
9858 Likewise.
9859
9860 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
9861 rule_useful_p.
9862
9d9b8b70
PE
98632005-12-21 Paul Eggert <eggert@cs.ucla.edu>
9864
8bb4c753
PE
9865 Undo 2005-12-01 tentative license wording change. The wording is
9866 still being reviewed by the lawyers, and we don't want to wait for
9867 them before publishing a test release. For now, revert to the
9868 previous wording.
9869 * NEWS: Undo 2005-12-01 change.
9870 * data/glr.c: Revert to previous license wording.
9871 * data/glr.cc: Likewise.
9872 * data/lalr1.cc: Likewise.
9873 * data/location.cc: Likewise.
9874 * data/yacc.c: Likewise.
9875
9d9b8b70
PE
9876 * NEWS: Reword %destructor vs YYABORT etc.
9877 * data/glr.c: Use American spacing, for consistency.
9878 * data/glr.cc: Likewise.
9879 * data/lalr1.cc: Likewise.
9880 * data/yacc.c: Likewise.
9881 * data/yacc.c: Reformat comments slightly.
9882 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
9883 for consistency. Fix some spelling errors and reword recently-included
9884 text slightly.
9885 * tests/cxx-type.at: Cast results of malloc, for C++.
9886
2c3b392a
AD
98872005-12-21 Joel E. Denny <address@hidden>
9888
9889 * tests/cxx-type.at: Construct a tree, count the parents of shared
9890 nodes, and free each node once and only once. Previously, the memory
9891 for semantic values was leaked instead.
9892
d6cff4dc
AD
98932005-12-21 Joel E. Denny <address@hidden>
9894
9895 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
9896 (yylval, yylloc): If pure, #define to yystackp->yyval and
9897 yystackp->yyloc similar to yychar and yynerrs.
9898 (yyparse): If pure, remove local yylval and yylloc. Add local
9899 yystackp to accommodate pure definitions of yylval and yylloc.
9900 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
9901 yylvalp and yyllocp to &yylval and &yylloc.
9902 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
9903 namespace. Previously, nerrs and char were missing, but lval and lloc
9904 weren't necessary.
9905 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
9906 yylvalp and yyllocp parameters since, if pure, these are now always
9907 accessible through yystackp. If not pure, they are still accessible
9908 globally.
9909 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
9910 `if (YYID (N))' to pacify lint.
9911
a85284cf
AD
99122005-12-21 Akim Demaille <akim@epita.fr>
9913
9914 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
9915 destroy the RHS symbols of a rule.
9916 * data/yacc.c (yylen): Initialize to 0.
9917 Keep its value to the number of items to possibly shift.
9918 In particular, a regular successful parse that ends on YYFINAL by
9919 a (internal) YYACCEPT must not have yylen != 0.
9920 (yyerrorlab, yyreturn): Pop the RHS.
9921 Reorder a bit to emphasize the `shifting' bits of code.
9922 (YYPOPSTACK): Now accept a number of items to pop.
9923 * data/lalr1.cc: Likewise.
9924 * data/glr.c: Formatting changes.
9925 Use goto instead of fall through.
9926 * doc/bison.texinfo (Destructor Decl): Complete.
9927
d508c281
JMG
99282005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9929
9930 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9931 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
9932 * djgpp/config.bat: Replace every occurence of the file name
9933 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
9934 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
9935 * djgpp/config.sed: Replace every occurence of the file name
9936 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
9937 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
9938 * djgpp/djunpack.bat: DJGPP specific file.
9939 * djgpp/fnchange.lst: DJGPP specific file.
9940 * djgpp/README.in: Add new information about how to unpack the bison
9941 source on MSDOS and other systems which have 8.3 file name restrictions
9942 using djunpack.bat and fnchange.lst.
9943
3e7a2cd9
PE
99442005-12-12 Paul Eggert <eggert@cs.ucla.edu>
9945
9946 * bootstrap (build_cvs_prefix): Remove; unused.
9947 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
9948 when getting gnulib.
9949
99502005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
9951
9952 * data/glr.c: Reorder typedef declarations for structs to match order
9953 of struct declarations.
9954 Rename yystack everywhere to yystackp except in yyparse where it's not
9955 a pointer.
9956 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
9957 consistency.
9958 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
9959 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
9960 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
9961 lint.
9962
877519f8
PE
99632005-12-09 Paul Eggert <eggert@cs.ucla.edu>
9964
0eca5a39
PE
9965 * tests/sets.at (Accept): Fix typos in regular expression used to
9966 sed out the final state number.
9967
2cec9080
PE
9968 Work around portability problem on Solaris 10: flex-generated
9969 files include <stdio.h> before <config.h>, which messes up
9970 because the latter defines __EXTENSIONS__. Address the problem
9971 by creating two new little files that include <config.h> first,
9972 then include the flex-generated files. Rewrite everyone else
9973 to include <config.h> first, as well.
9974 * lib/timevar.c: Always include "config.h".
9975 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
9976 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
9977 (EXTRA_bison_SOURCES): New macro.
9978 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
9979 * src/system.h: Don't include config.h.
9980 * src/LR0.c: Include <config.h> first.
9981 * src/assoc.c: Likewise.
9982 * src/closure.c: Likewise.
9983 * src/complain.c: Likewise.
9984 * src/conflicts.c: Likewise.
9985 * src/derives.c: Likewise.
9986 * src/files.c: Likewise.
9987 * src/getargs.c: Likewise.
9988 * src/gram.c: Likewise.
9989 * src/lalr.c: Likewise.
9990 * src/location.c: Likewise.
9991 * src/main.c: Likewise.
9992 * src/muscle_tab.c: Likewise.
9993 * src/nullable.c: Likewise.
9994 * src/output.c: Likewise.
9995 * src/parse-gram.y: Likewise.
9996 * src/print.c: Likewise.
9997 * src/print_graph.c: Likewise.
9998 * src/reader.c: Likewise.
9999 * src/reduce.c: Likewise.
10000 * src/relation.c: Likewise.
10001 * src/state.c: Likewise.
10002 * src/symlist.c: Likewise.
10003 * src/symtab.c: Likewise.
10004 * src/tables.c: Likewise.
10005 * src/uniqstr.c: Likewise.
10006 * src/vcg.c: Likewise.
10007
877519f8
PE
10008 * src/parse-gram.y: Fix minor problems uncovered by lint.
10009 (current_lhs, current_lhs_location): Now static.
10010 (current_assoc): Remove unused variable.
10011
10012 Cleanups so that Bison-generated parsers have less lint.
10013 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
10014 Prepend /*ARGSUSED*/, for lint's sake.
10015 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
10016 definition if 'lint' is defined.
10017 (YYID): New macro (or function, if lint).
10018 All uses of /*CONSTCOND*/0 replaced by YYID(0).
10019 * data/yacc.c: Likewise.
10020 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
10021 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
10022 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
10023 is C++ only.
10024 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
10025 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
10026 Use YYID(0) rather than 0, for lint.
10027 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
10028 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
10029
f5228370
PE
100302005-12-07 Paul Eggert <eggert@cs.ucla.edu>
10031
10032 * tests/glr-regression.at
10033 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10034 Close memory leak reported by twlevo.
10035
69ce078b
PE
100362005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
10037
6ff99711
PE
10038 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
10039 all stacks.
10040 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
10041 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10042 New test case.
10043 (Duplicated user destructor for lookahead): This test now is expected
10044 to succeed.
10045
af3412cd
PE
100462005-12-01 Paul Eggert <eggert@cs.ucla.edu>
10047
32b5b719 10048 * NEWS: Document the following change.
af3412cd
PE
10049 * data/yacc.c: Say "parser skeleton" rather than "file", since
10050 it's no longer just a file.
10051 * data/glr.c: Grant a special exception for C GLR parsers, that
10052 reads like the already-existing exception for C LALR(1) parsers.
10053 * data/glr.cc: Likewise.
10054 * data/lalr1.cc: Likewise.
10055 * data/location.cc: Likewise.
10056 * data/yacc.c: Reword the "written by" statement to clarify that
10057 it was the parser skeleton, not the entire output file.
10058 * data/glr.c: Written by Paul Hilfinger.
10059 * data/glr.cc: Written by Akim Demaille.
10060 * data/lalr1.cc: Likewise.
10061
035aa4a0
PE
100622005-11-18 Paul Eggert <eggert@cs.ucla.edu>
10063
d9963c85
PE
10064 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
10065 Fix typos in previous change that broke 'make check'.
10066 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
10067 supported in C.
10068 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
10069 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
10070 We can revert this once things settle down.
10071
035aa4a0
PE
10072 * src/conflicts.c (conflicts_print): Don't print file name twice
10073 when %expect fails because there were no conflicts.
10074 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
10075 change.
10076 * tests/conflicts.at (%expect not enough, %expect too much):
10077 (%expect with reduce conflicts): Adjust to new behavior.
10078
100792005-11-18 Akim Demaille <akim@epita.fr>
10080
10081 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
10082 errors.
10083 * NEWS: Document this.
10084 * doc/bison.texinfo (Expect Decl): Likewise.
10085
d1ff7a7c
AD
100862005-11-16 Akim Demaille <akim@epita.fr>
10087
10088 Generalize the display of semantic values and locations in traces.
10089 * data/glr.c (yy_reduce_print): Fix indices (again).
10090 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
10091 literal integers.
10092 * data/lalr1.cc (yyreduce_print): Rename as...
10093 (yy_reduce_print): this.
10094 Display values and locations.
10095 * data/yacc.c (yy_reduce_print): Likewise.
10096 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
10097 (yysymprint): Move higher to be visible from yy_reduce_print).
10098 (yyparse): Adjust.
10099 * tests/calc.at: Adjust the expected length of the traces.
10100
6de5398d
AD
101012005-11-14 Akim Demaille <akim@epita.fr>
10102
10103 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
10104 from 1 to N, while values and location start at 0.
10105 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
10106
a1373f55
AD
101072005-11-14 Akim Demaille <akim@epita.fr>
10108
10109 * data/glr.c (yy_reduce_print): Fix the $ number.
10110
613d8952
AD
101112005-11-14 Akim Demaille <akim@epita.fr>
10112
10113 "Use" parse parameters.
10114 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
10115 * data/glr.c, data/glr.cc: Use them.
10116 * data/glr.c (YYUSE): Have a C++ definition that supports
10117 non-pointer types.
10118
b2741627
AD
101192005-11-14 Akim Demaille <akim@epita.fr>
10120
10121 * data/glr.c (yyexpandGLRStack): Declare only if defined.
10122
5059b5c8
AD
101232005-11-14 Akim Demaille <akim@epita.fr>
10124
42249483
AD
10125 * data/glr.cc: New.
10126 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 10127
4626a15d
AD
101282005-11-12 Akim Demaille <akim@epita.fr>
10129
10130 Let position and location be PODs.
10131 * data/location.cc (position::initialize, location::initialize): New.
10132 (position::position, location::location): Define only if
10133 b4_location_constructors is defined.
10134 * data/lalr1.cc (b4_location_constructors): Define it for backward
10135 compatibility.
10136 * doc/bison.texinfo (Initial Action Decl): Use initialize.
10137
101382005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
10139
10140 * data/lalr1.cc: Move the body of the ctor and dtor into the
10141 parser file (instead of the header).
10142 Wrap the implementations in a "namespace yy".
10143
101442005-11-12 Akim Demaille <akim@epita.fr>
10145
10146 Have glr.c include its header file when created.
10147 * data/glr.c (b4_shared_declarations): New.
10148 Output them verbatim in the parser if !%defines, otherwise
10149 output then in the header file, and include it instead.
10150
1989d947
AD
101512005-11-11 Akim Demaille <akim@epita.fr>
10152
10153 * data/glr.c: Comment changes.
10154
101552005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
10156
10157 When yydebug, report semantic and location values for reductions.
10158 * data/glr.c (yy_reduce_print): Report the semantic values and the
10159 locations.
10160 (YY_REDUCE_PRINT): Adjust.
10161 (yyglrReduce): Use them.
10162 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
10163 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
10164 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
10165 traces.
10166
02998094
AD
101672005-11-10 Akim Demaille <akim@epita.fr>
10168
10169 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
10170 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
10171 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
10172
5210672f
PE
101732005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
10174
10175 * m4/cxx.m4, examples/Makefile.am: Don't build
10176 examples/calc++ if no C++ compiler is available. (trivial change)
10177
a8991a1d
AD
101782005-11-09 Akim Demaille <akim@epita.fr>
10179
10180 * src/scan-skel.l: Use a couple of asserts.
10181
36b5e963
AD
101822005-11-03 Akim Demaille <akim@epita.fr>
10183
10184 In some (weird) cases, the final state number is incorrect.
10185 Reported by Alexandre Duret-Lutz.
10186 * src/LR0.c (state_list_append): Remove the computation of
10187 final_state.
10188 (save_reductions): Do it here.
10189 (get_state): Alpha conversion.
10190 (generate_states): Use a for loop.
10191 * src/gram.h (item_number_is_rule_number)
10192 (item_number_is_symbol_number): New.
10193 * src/state.c: Use assert.
10194 * src/system.h: Include assert.h.
10195 * tests/sets.at (Accept): New.
10196
44e7ead1
PH
101972005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10198
10199 * data/glr.c (yyfill): Adjust comment.
36b5e963 10200 (yyresolveAction): Initialize default location properly
44e7ead1
PH
10201 for empty right-hand sides.
10202 (yydoAction): Ditto.
10203 Add comment explaining apparently dead code.
36b5e963
AD
10204 * tests/glr-regression.at
10205 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 10206 New test.
36b5e963 10207
e10a80ee
PE
102082005-10-30 Paul Eggert <eggert@cs.ucla.edu>
10209
10210 * bootstrap (cleanup_gnulib): New function. Use it to clean up
10211 gnulib when interrupted. This fixes some race conditions and
10212 works around some portability problems (one noted by Paul
10213 Hilfinger).
10214
067b32ee
AD
102152005-10-22 Akim <akim@epita.fr>
10216
10217 * Makefile.cfg: Adjust to config -> build-aux.
10218 Reported by twledo.
10219
4b367315
AD
102202005-10-21 Akim Demaille <akim@epita.fr>
10221
10222 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
10223 the %parse-params.
10224 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
10225 * data/yacc.c (b4_Pure_if): Rename as...
10226 (b4_yacc_pure_if): this.
10227 (YY_SYMBOL_PRINT, yyparse): Adjust.
10228 * doc/bison.texinfo: Formatting changes.
10229
24cc23d9
AD
102302005-10-21 Akim Demaille <akim@epita.fr>
10231
10232 Finish the transition config -> build-aux.
10233 * configure.ac, Makefile.am: Use build-aux.
10234 * config/prev-version, config/announce-gen, config/Makefile.am:
10235 Move to...
10236 * build-aux/prev-version, build-aux/announce-gen,
10237 * build-aux/Makefile.am: here.
10238
d4476375
AD
102392005-10-14 Akim Demaille <akim@epita.fr>
10240
10241 * examples/calc++/test: Use set -x only when VERBOSE.
10242
302c0aee
PE
102432005-10-13 Paul Eggert <eggert@cs.ucla.edu>
10244
10245 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
10246 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
10247
7625ec2c
AD
102482005-10-13 Akim Demaille <akim@epita.fr>
10249
10250 * src/scan-skel.l: Output the base name parts of the parser and
10251 header file names.
302c0aee 10252 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
10253 additional checks.
10254 Use this to exercise C++ outputs in subdirs.
10255 Reported by Oleg Smolsky.
10256
ba0fe3c7
PE
102572005-10-12 Paul Eggert <eggert@cs.ucla.edu>
10258
10259 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
10260 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
10261 Problem reported by John P. Hartmann.
10262 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
10263 already defined it.
10264
9b8a5ce0
AD
102652005-10-12 Akim Demaille <akim@epita.fr>
10266
10267 * src/parse-gram.y (version_check): Exit 63 to please missing
10268 (stands for "version mismatch).
10269 * tests/input.at, doc/bison.texinfo: Adjust.
10270
4f6e011e
PE
102712005-10-10 Paul Eggert <eggert@cs.ucla.edu>
10272
10273 Work around portability problems with Visual Age C compiler
10274 (xlc and xlC_r) reported by John P. Hartmann.
10275 * data/location.cc (initial_column, initial_line): Remove.
10276 All uses replaced by 0 and 1.
10277 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
10278 that xlc complains about.
10279 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 10280 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 10281 as __STDC__.
4d7aa45e
PE
10282 * data/yacc.c (YYMODERN_C): New macro, which also looks at
10283 __STDC_VERSION__. Use it everywhere instead of looking at
10284 __STDC__ and __cplusplus.
4f6e011e 10285
a1b3bf8c
AD
102862005-10-10 Akim Demaille <akim@epita.fr>
10287
10288 * examples/calc++/test: Be quiet unless VERBOSE.
10289
412e44aa
PE
102902005-10-05 Paul Eggert <eggert@cs.ucla.edu>
10291
2a4647a3
PE
10292 * data/c.m4 (yydestruct, yysymprint):
10293 Use YYUSE instead of casting to void.
10294 * data/glr.c (YYUSE): New macro.
10295 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10296 Use it instead of rolling our own.
10297 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10298 (YYCHK1):
10299 Use /*CONSTCOND*/ to suppress lint warnings.
10300 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10301 (YY_STACK_PRINT): Use 'false' not '0'.
10302 (YYUSE): New macro.
10303 (yysymprint_, yydestruct_): Use it instead of rolling our own.
10304 * data/yacc.c (YYUSE): New macro.
10305 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
10306 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
10307 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
10308
10309
412e44aa
PE
10310 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
10311 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
10312
88c6637f
PE
103132005-10-04 Paul Eggert <eggert@cs.ucla.edu>
10314
2f4f028d
PE
10315 Undo the parts of the unlocked-I/O change that substituted
10316 putc or puts for printf. This might hurt performance a bit,
10317 but some people prefer the printf style.
10318 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
10319 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
10320 All uses replaced by YYFPRINTF and YYDPRINTF.
10321 * data/yacc.c: Likewise.
10322 * lib/bitset.c (bitset_print): Likewise.
10323 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
10324 putc and puts.
10325 * lib/lbitset.c (debug_lbitset): Likewise.
10326 * src/closure.c (print_firsts, print_fderives): Likewise.
10327 * src/gram.c (grammar_dump): Likewise.
10328 * src/lalr.c (look_ahead_tokens_print): Likewise.
10329 * src/output.c (escaped_output): Likewise.
10330 (user_actions_output): Break apart two printfs.
10331 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
10332 * src/reduce.c (reduce_print): Likewise.
10333 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10334 * src/system.h: Include unlocked-io.h rathe than stdio.h.
10335
88c6637f
PE
10336 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10337 Use assignments rather than casts-to-void to suppress
10338 unused-variable warnings. This pacifies 'lint'.
10339 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
10340 unused-variable warnings.
10341
fb32e373
JMG
103422005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10343
10344 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10345
edb8f44f
PE
103462005-10-02 Paul Eggert <eggert@cs.ucla.edu>
10347
fb9c0b33
PE
10348 Use unlocked I/O for a minor performance improvement on hosts like
10349 GNU/Linux and Solaris that support unlocked I/O. The basic idea
10350 is to use the gnlib unlocked-io module, and to prefer putc and
10351 puts to printf when either will work (since the latter doesn't
10352 come in an unlocked flavor).
10353 * bootstrap (gnulib_modules): Add unlocked-io.
10354 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
10355 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
10356 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
10357 and similarly for puts and putc and printf.
10358 * data/yacc.c: Likewise.
10359 * lib/bitset.c (bitset_print): Likewise.
10360 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
10361 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
10362 to printf.
10363 * lib/lbitset.c (debug_lbitset): Likewise.
10364 * src/closure.c (print_firsts, print_fderives): Likewise.
10365 * src/gram.c (grammar_dump): Likewise.
10366 * src/lalr.c (look_ahead_tokens_print): Likewise.
10367 * src/output.c (escaped_output): Likewise.
10368 (user_actions_output): Coalesce two printfs.
2f4f028d 10369 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
10370 * src/reduce.c (reduce_print): Likewise.
10371 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 10372 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 10373
edb8f44f
PE
10374 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
10375 this confuses xgettext.
10376
b50d2359
AD
103772005-10-02 Akim Demaille <akim@epita.fr>
10378
10379 * bootstrap (gnulib_modules): Add strverscmp.
10380 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
10381 * m4/.cvsignore: Add strverscmp.m4.
10382 * src/parse-gram.y (%require): New token, new rule.
10383 (version_check): New.
10384 * src/scan-gram.l (%require): Adjust.
10385 * tests/input.at (AT_REQUIRE): New.
10386 Use it.
10387 * doc/bison.texinfo (Require Decl): New.
10388 (Calc++ Parser): Use %require.
10389
21667f64
AD
103902005-10-02 Akim Demaille <akim@epita.fr>
10391
10392 * data/location.cc: New.
10393
2b81e969
AD
103942005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
10395 Akim Demaille <akim@epita.fr>
10396
10397 Make sure -odir/foo.cc creates dir/location.hh etc.
10398 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
10399 (spec_file_prefix, spec_verbose_file, spec_graph_file)
10400 (spec_defines_file): Now const.
10401 (dir_prefix): New.
10402 (short_base_name): Remove.
10403 * src/files.c: Adjust.
10404 (dirname.h): Include.
10405 (base_name): Don't prototype it.
10406 (finput): Remove, duplicates gram_in.
10407 (full_base_name, short_base_name): Replace by...
10408 (all_but_ext, all_but_tab_ext): these.
10409 (compute_base_names): Rename as...
10410 (compute_file_name_parts): this.
10411 Update to compute the new variables, including dir_prefix.
10412 Adjust dependencies.
10413 * src/output.c (prepare): Output them.
10414 * src/reader.c: Adjust to use gram_in, not finput.
10415 * src/scan-skel.l (@dir_prefix@): New.
10416
ad6a9b97
JMG
104172005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10418
10419 * lib/subpipe.c: New function end_of_output_subpipe() added
10420 to allow support for non-posix systems. This is a no-op function
10421 for posix systems.
10422
10423 * lib/subpipe.h: New function end_of_output_subpipe() added
10424 to allow support for non-posix systems. This is a no-op function
10425 for posix systems.
10426
10427 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
10428 handle the lack of pipe/fork functionality on non-posix systems.
10429
10430 * djgpp/Makefile.maint: DJGPP specific file.
10431
10432 * djgpp/README.in: DJGPP specific file.
10433
10434 * djgpp/config.bat: DJGPP specific configuration file.
10435
10436 * djgpp/config.sed: DJGPP specific configuration file.
10437
10438 * djgpp/config.site: DJGPP specific configuration file.
10439
10440 * djgpp/config_h.sed: DJGPP specific configuration file.
10441
10442 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
10443
10444 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
10445
fc695704
AD
104462005-10-02 Akim Demaille <akim@epita.fr>
10447
10448 * data/location.cc: New, extract from...
10449 * data/lalr1.cc: here.
10450 (location.hh): Include it after the user prologue, in case the
10451 filename type is defined by the user.
10452 Forward declation location and position before the pre-prologue.
10453 (yyresult_): Rename as...
10454 (yyresult): this, it's a local variable, not an attribute.
10455 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
10456
104572005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
10458
10459 * examples/extexi: Restore the #line generation.
10460
fb9712a9
AD
104612005-09-30 Akim Demaille <akim@epita.fr>,
10462 Alexandre Duret-Lutz <adl@gnu.org>
10463
10464 Move the token type and YYSTYPE in the parser class.
10465 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
10466 (parser::token): New, from the moved free definition of tokens.
10467 (parser::semantic_value): Now a full definition instead of an
10468 indirection to YYSTYPE.
10469 (b4_post_prologue): No longer included in the header file, but
10470 in the implementation file.
10471 * doc/bison.texi (C+ Language Interface): Update.
10472 * src/parse-gram.y: Support unary %define.
10473 * tests/actions.at: Define global_tokens_and_yystype for backward
10474 compatibility until we update the tests.
10475 * tests/calc.at: Idem.
10476 (first_line, first_column, last_line, last_column): Define for lalr1.cc
10477 to simplify the code.
10478
55f0c7b1
PE
104792005-09-29 Paul Eggert <eggert@cs.ucla.edu>
10480
10481 Port to SunOS 4.1.4, which lacks strtoul and strerror.
10482 Ah, the good old days! Problem reported by Peter Klein.
10483 * bootstrap (gnulib_modules): Add strerror, strtoul.
10484 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
10485 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
10486
fb9712a9 104872005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
10488
10489 * data/c.m4 (b4_error_verbose_if): New.
10490 * data/lalr1.cc: Use it.
10491 (YYERROR_VERBOSE_IF): Remove.
10492 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
10493 parser members, replaced by...
10494 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
10495 local variables.
10496 (yysyntax_error_): Takes the state number as argument.
10497 (yyreduce_print_): Use the argument yyrule, not the former
10498 attribute yyn_.
10499
8a6f72f3
PE
105002005-09-26 Paul Eggert <eggert@cs.ucla.edu>
10501
10502 * bootstrap (gnulib_modules): Add verify.
10503 * lib/.cvsignore: Add verify.h.
10504 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
10505 * src/system.h (verify): Remove.
10506 Include verify.h instead.
10507 * src/tables.c (tables_generate): Use new API for 'verify'.
10508
0d50976f
PE
105092005-09-21 Paul Eggert <eggert@cs.ucla.edu>
10510
ebc3737e
PE
10511 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
10512 local variables whose names begin with 'yy'.
10513 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
10514 Trivial changes from Joel E. Denny.
10515
0d50976f
PE
10516 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
10517 it itself.
10518 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
10519 don't use alloca any more.
10520
10521 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
10522 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 10523 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
10524 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
10525 to match yacc.c, to test more hosts.
10526
a05b79df
PE
105272005-09-20 Paul Eggert <eggert@cs.ucla.edu>
10528
55289366
PE
10529 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
10530 doesn't affect behavior.
10531 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
10532 Solaris, AIX, MSC.
10533 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
10534 This works a bit better with glibc, if user code has already included
10535 stdlib.h.
10536 * doc/bison.texinfo (Bison Parser): Document that users can't
10537 arbitrarily use malloc and free for other purposes. Document
10538 that <alloca.h> and <malloc.h> might be included.
10539 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
10540 user must declare alloca.
10541
a05b79df
PE
10542 * HACKING (release): Forwarn the Translation Project about
10543 stable releses.
10544
3ab2ca22
AD
105452005-09-20 Akim Demaille <akim@epita.fr>
10546
10547 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
10548
a9739e7c
PE
105492005-09-19 Paul Eggert <eggert@cs.ucla.edu>
10550
a702593e
PE
10551 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
10552 (YYSTACK_ALLOC_MAXIMUM): Use it.
10553 (yysyntax_error): New function.
10554 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
10555 multiple syntax errors are reported, and alloca is being used.
10556 Instead, reallocate buffers twice as big each time, so that
10557 we waste at most half the allocated memory. Start with a small
10558 (128-byte) buffer that will suffice in most cases anyway.
10559 Use yysyntax_error to do most of the work.
10560
10561 * doc/bison.texinfo (Error Reporting, Table of Symbols):
10562 yynerrs is the number of errors reported, not the number of
10563 errors encountered.
10564
a9739e7c
PE
10565 * tests/glr-regression.at (Duplicated user destructor for lookahead):
10566 Mark it as expected to fail.
10567 Cast result of malloc; problem reported by twlevo@xs4all.nl.
10568 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
10569 Don't start user-code symbols with "yy", to avoid name space problems.
10570
f479c6c6
AD
105712005-09-19 Akim Demaille <akim@epita.fr>
10572
10573 Remove the traits, failed experiment.
10574 It never proved useful, and anyway because of the current
10575 definition, it was not possible to have several specialization of
10576 this traits, making it useless.
10577 * data/lalr1.cc (yy:traits): Remove.
10578 Inline its definitions in the parser class.
10579
e2586f82
AD
105802005-09-19 Akim Demaille <akim@epita.fr>
10581
10582 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
10583 least Mac OSX with a /usr/local install of gettext.
10584
2e8cf949
AD
105852005-09-19 Akim Demaille <akim@epita.fr>
10586
10587 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
10588 and yytoken for similarity with the other skeletons.
10589
c7fb0b90
AD
105902005-09-19 Akim Demaille <akim@epita.fr>
10591
4e26c69e 10592 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 10593
1bd0deda
PE
105942005-09-16 Paul Eggert <eggert@cs.ucla.edu>
10595
10596 * NEWS: Version 2.1.
10597
10598 * NEWS: Remove notice of yytname change, since it was never in an
10599 official release.
10600 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
10601 diagnostic.
10602 * src/output.c (prepare): Likewise.
10603 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
10604 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
10605 is not defined. This is an awful hack, but it's enough for now.
10606 All callers changed.
10607 * tests/glr-regression-at (make_value): Args are const pointers now,
10608 to avoid GCC warning.
10609 (Duplicated user destructor for lookahead): New test. Currently
10610 skipped. It fails on my host but I'm not sure it'll always fail.
10611
106122005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
10613
10614 * src/symtab.h (struct symbol): Declare the printer and destructor
10615 as const, to avoid accidental calls to free.
10616 (symbol_destructor_set, symbol_printer_set): Adjust.
10617 * src/symtab.c: Adjust.
10618
1bd0deda 106192005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
10620
10621 * data/c.m4 (b4_token_enums): New.
10622 (b4_token_defines): Rename as...
10623 (b4_token_enums_defines): this.
10624 (b4_token_defines): New, output only the #defines.
10625 * data/yacc.c, data/glr.c: Adjust.
10626 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
10627 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
10628 as default values.
10629
dbcdae2d
AD
106302005-09-16 Akim Demaille <akim@epita.fr>
10631
10632 * data/lalr1.cc (yylex_): Remove, inline its code.
10633 (yyreport_syntax_error_): Remove, replaced by...
10634 (yysyntax_error_): this which returns a string and leaves to the
10635 caller the call to the users' error function.
10636 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
10637 Move from members of the parser object...
10638 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
10639 to local variables of the parse function.
10640
70d8f291
AD
106412005-09-16 Akim Demaille <akim@epita.fr>
10642
10643 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
10644 since it's in Bison's name space.
10645
b47dbebe
PE
106462005-09-15 Paul Eggert <eggert@cs.ucla.edu>
10647
ae199bf1
PE
10648 * data/glr.c (yyresolveValue): Add default case to pacify
10649 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
10650
b47dbebe
PE
10651 * NEWS: Document when yyparse started to return 2.
10652 * doc/bison.texinfo (Parser Function): Document when yyparse
10653 returns 2.
10654
10655 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
10656 (b4_filename_type): Renamed back from b4_file_name_type. All uses
10657 changed.
10658 (class position): file_name -> filename (reverting). All uses changed.
10659
106602005-09-14 Paul Eggert <eggert@cs.ucla.edu>
10661
10662 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
10663 do anything if $@ exists. This reverts part of the 2005-07-07
10664 patch.
10665
00292f66
PE
106662005-09-11 Paul Eggert <eggert@cs.ucla.edu>
10667
10668 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
10669 contains obsolete information and isn't worth distributing as a
10670 separate file anyway.
10671 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
10672 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
10673 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
10674 (yyparse): Abort if user code uses longjmp to throw an unexpected
10675 value.
10676
a420f962
PE
106772005-09-09 Paul Eggert <eggert@cs.ucla.edu>
10678
00292f66
PE
10679 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
10680 Suggested by twlevo@xs4all.nl.
10681
127287e9
PE
10682 * data/glr.c (YYCHK1): Do not assume YYE is in range.
10683 This avoids a diagnostic from gcc -Wswitch-enum.
10684 Problem reported by twlevo@xs4all.nl.
10685
a420f962
PE
10686 * doc/bison.texinfo: Don't use "filename", as per GNU coding
10687 standards. Use "file name" or "file" or "name", depending on
10688 the context.
10689 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
10690 not to hack/foo.tab.c.
10691 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
10692 * data/glr.c: b4_filename -> b4_file_name.
10693 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
10694 All uses changed.
10695 (class position): filename -> file_name. All uses changed.
10696 * data/yacc.c: b4_filename -> b4_file_name.
10697 * lib/bitset.h: filename -> file_name in local vars.
10698 * lib/bitset_stats.c: Likewise.
10699 * src/files.c: Likewise.
10700 * src/scan-skel.l ("@output ".*\n): Likewise.
10701 * src/files.c (file_name_split): Renamed from filename_split.
10702 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
10703
107042005-09-08 Paul Eggert <eggert@cs.ucla.edu>
10705
10706 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
10707 to accommodate latest gnulib.
10708
10709 * tests/glr-regression.at (Duplicate representation of merged trees):
10710 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
10711
10712 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
10713 needed.
10714
42a6501d
PE
107152005-08-26 Paul Eggert <eggert@cs.ucla.edu>
10716
10717 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
10718 All uses changed. Invoke user destructor after an error during a
10719 split parse (trivial change from Joel E. Denny).
10720
10721 * tests/glr-regression.at
10722 (User destructor after an error during a split parse): New test case.
10723 Problem reported by Joel E. Denny in:
10724 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
10725
ef9a1faf
PE
107262005-08-25 Paul Eggert <eggert@cs.ucla.edu>
10727
5b4aaf78
PE
10728 * README-cvs: Give URLs for recommended tools.
10729 Mention Gzip version problem, and bootstrapping issues.
10730 Remove troubleshooting section, as it's somewhat obsolete.
10731
b5240ba5
PE
10732 * bootstrap (no_cache): New var, to accommodate different wget
10733 variants. Use it instead of '-C off'. Problem reported by
10734 twlevo@xs4all.nl.
10735
ef9a1faf
PE
10736 * data/glr.c (yydestroyStackItem): New function.
10737 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
10738 debugging information. Problem reported by Joel E. Denny.
10739
e6efa9da
AD
107402005-08-25 Akim Demaille <akim@epita.fr>
10741
10742 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
10743
adc90f13
PE
107442005-08-24 Paul Eggert <eggert@cs.ucla.edu>
10745
10746 * data/glr.c (yyrecoverSyntaxError, yyreturn):
10747 Don't invoke destructor on unresolved entries.
10748 * tests/glr-regression.at
10749 (User destructor for unresolved GLR semantic value): New test case.
10750 Problem reported by Joel E. Denny in:
10751 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
10752
f9315de5
PE
107532005-08-21 Paul Eggert <eggert@cs.ucla.edu>
10754
15d29c1f
PE
10755 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
10756 Add strnlen.c.
10757 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
10758 lib-prefix.m4, po.m4.
10759
dd5f2af2
PE
10760 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
10761 in yydestruct diagnostic, since it might not be an error.
10762 Problem reported by Joel Denny near end of
10763 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 10764 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
10765 * data/yacc.c (yyreturn): Likewise.
10766 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
10767
10768 * src/files.c: Remove obsolete FIXME comment.
10769
10770 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
10771 with the other templates, and to fix bogus run-on messages such
10772 as the one reported at the end of
10773 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
10774 All callers changed to avoid the newline.
10775 (yyprocessOneStack): Output two lines rather than one, to accommodate
10776 the above change. This changes the debug output format slightly.
10777
f9315de5
PE
10778 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
10779 reported by Joel E. Denny in
10780 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
10781 (trivial change).
10782 * tests/glr-regression.at (Duplicate representation of merged trees):
10783 New test, from Joel E. Denny in:
10784 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
10785 * THANKS: Add Joel E. Denny.
10786
10787 * configure.ac (AC_INIT): Bump to 2.0c.
10788
04098407
PE
107892005-07-24 Paul Eggert <eggert@cs.ucla.edu>
10790
10791 * NEWS: Version 2.0b.
10792
ca5d2013
PE
10793 * Makefile.am (SUBDIRS): Put examples before tests, so that
10794 "make check" doesn't finish with "All 1 tests passed".
10795
3d54b576
PE
10796 * tests/regression.at (Token definitions): Don't rely on
10797 AT_PARSER_CHECK for data that contains backslashes. It currently
10798 uses 'echo', and 'echo' isn't portable if its argument contains
10799 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
10800 that the byte '\0xff' is not printable in the C locale; it is,
10801 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
10802 not printable, so use '\0x81' to test.
10803
d53ae497
PE
10804 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
10805 version of GCC, since the macro is used with non-GCC compilers.
10806
fc01665e
PE
10807 Fix core dump reported by Pablo De Napoli in
10808 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
10809 * tests/regression.at (Invalid inputs with {}): New test.
10810 * src/parse-gram.y (token_name): Translate type before using
10811 it as an index.
10812
04098407
PE
10813 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
10814 the user's name space. All uses changed to __attribute__
10815 ((__unused__)).
10816 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
10817 Add __attribute__ ((__noreturn__)).
10818
10819 * etc/clcommit: Remove. We weren't using it, and it failed
10820 "make maintainer-distcheck".
10821 * Makefile.maint: Merge from coreutils.
10822 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
10823 (syntax-check-rules): Change list of rules as described below.
10824 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
10825 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
10826 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
10827 (sc_trailing_space): New rules.
10828 (sc_xalloc_h_in_src): Remove.
10829 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
10830 (sc_space_tab, sc_error_exit_success, sc_changelog):
10831 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
10832 (makefile-check, po-check, author_mark_check):
10833 (makefile_path_separator_check, copyright-check):
10834 Use grep -n, to make it easier to find violations.
10835 Use CVS_LIST and CVS_LIST_EXCEPT.
10836 (header_regexp, h_re): Remove.
10837 (dd_c): New macro.
10838 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
10839 (my-distcheck): Use more-modern GCC flags.
10840 (signatures, %.asc): Remove.
10841 (rel-files, announcement): Remove signatures.
10842 Restore old updating code, even though we don't use it, so
10843 that we're the same as coreutils.
10844 (alpha, beta, major): Depend on news-date-check.
10845 Make the upload commands.
10846
10847 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
10848 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
10849 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
10850 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
10851 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
10852 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
10853 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
10854 * tests/sets.at: Likewise.
10855
10856 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
10857 we comment out the Autoconf version number.
10858 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
10859 it's error-prone and "make maintainer-distcheck" rejects it.
10860
10861 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
10862 Indent calls to "error" to pacify "make maintainer-distcheck",
10863 when the calls are not intended to be translated.
10864 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
10865
10866 * src/Makefile.am (DEFS): Use +=, to pacify
10867 "make maintainer-distcheck".
10868 (bison_SOURCES): Add scan-skel.h.
10869 (sc_tight_scope): New rule, from coreutils.
10870
10871 * src/files.c (src_extension, header_extension):
10872 Now static, not extern.
10873 * src/getargs.c (short_options): Likewise.
10874 * src/muscle_tab.c (muscle_table): Likewise.
10875 * src/parse-gram.y (current_class, current_type, current_prec):
10876 Likewise.
10877 * src/reader.c (grammar_end, previous_rule_end): Likewise.
10878 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
10879 * src/main.c (main): Cast bindtextdomain and textdomain calls to
10880 void, to avoid warning when NLS is disabled.
10881 * src/output.c: Include scan-skel.h.
10882 (scan_skel): Remove decl, since scan-skel.h does this.
10883 (output_skeleton):
10884 Indent calls to "error" to pacify "make maintainer-distcheck".
10885 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
10886 * src/reader.h (gram_end, gram_lineno): New decls to pacify
10887 "make maintainer-distcheck".
10888 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
10889 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
10890 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
10891 (skel_lex_destroy, scan_skel): Move these decls to...
10892 * src/scan-skel.h: New file.
10893 * src/uniqstr.c (uniqstr_assert):
10894 Indent calls to "error" to pacify "make maintainer-distcheck".
10895
10896 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
10897 not @VAR@.
10898
10899 * tests/torture.at: Revamp to avoid misuse of atoi that
10900 "make maintainer-distcheck" complained about.
10901
10902 * examples/extexi (message): Don't print a message more than once,
10903 and omit line-number decoration that makes Emacs compile think
10904 that informative messages are worth worrying about.
10905
109062005-07-22 Paul Eggert <eggert@cs.ucla.edu>
10907
10908 * configure.ac: Update version number.
10909
10910 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
10911 accidentally.
10912 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
10913 autogenerated by the maintainer.
10914 * examples/calc++/.cvsignore: Add *.yy.
10915
10916 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
10917 * lib/bitset_stats.c (bitset_stats_init): Likewise.
10918 * lib/bitsetv.c (bitsetv_alloc): Likewise.
10919
10920 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
10921
10922 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
10923 from maintainer-distcheck about casting the argument of 'free'.
10924
10925 * NEWS: Mention recent yytname changes.
10926 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
10927
10928 * bootstrap: For translations that have not yet been upgraded to
10929 the new runtime-po domain, prime the pump by extracting the
10930 relevant strings from the obsolete translations. This code can be
10931 removed once the bison-runtime domain has been translated by each
10932 team.
10933
10934 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
10935 now that token names are already quoted.
10936
10937 Fix problem reported by Anthony Heading.
10938 * data/glr.c (YYTOKEN_TABLE): New macro.
10939 (yytname): Define if YYTOKEN_TABLE.
10940 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
10941 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
10942 (YYERROR_VERBOSE): Define the same way the other skeletons do.
10943 * src/output.c (prepare_symbols): Output token_table_flag.
10944
0ffda363
PE
109452005-07-21 Paul Eggert <eggert@cs.ucla.edu>
10946
10947 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
10948 again if the first call fails.
10949
10950 * data/glr.c (yytnamerr): New function.
10951 (yyreportSyntaxError): Use it to dequote most string literals.
10952 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
10953 with other skeletons. All uses changed.
10954 (yytnameerr_): New function.
10955 (yyreport_syntax_error): Use it to dequote most string literals.
10956 * data/yacc.c (yytnamerr): New function.
10957 (yyerrlab): Use it to decode most string literals.
10958 * doc/bison.texinfo (Decl Summary, Calling Convention):
10959 Clarify quoting convention of yytname.
10960 * src/output.c (prepare_symbols): Quote all names. This undoes
10961 the 2005-04-17 change, which is now accomplished (mostly) via
10962 changes in the parsers as described above.
10963 * tests/regression.at (Token definitions, Web2c Actions):
10964 Undo most 2005-04-17 change here, too.
10965
109662005-07-20 Paul Eggert <eggert@cs.ucla.edu>
10967
10968 Fix more problems reported by twlevo@xs4all.nl.
10969 * tests/cxx-type.at: Don't pipe output of ./types through sed to
10970 remove trailing spaces. This loses the exit status of ./types,
10971 and isn't needed since ./types shouldn't be emitting trailing
10972 spaces.
10973 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
10974 as the stack isn't valid in that case.
10975
10976 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
10977 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
10978 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
10979 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
10980 is used.
10981 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
10982 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
10983 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
10984 Likewise.
10985
10986 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
10987 overly-picky compilers that reject 'char *foo = "bar";'.
10988
10989 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
10990 to FILE * parameter, not to stderr. This fixes a typo introduced
10991 in the 2005-07-12 change.
10992
10993 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
10994 warnings from GCC 4.
10995
10996 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
10997 (yyglrShiftDefer, yysplitStack):
10998 Remove unused parameters b4_pure_formals. All uses changed.
10999 (yyglrShift): Remove unused parameters b4_user_formals.
11000 All uses changed.
11001 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
11002
6100a9aa
PE
110032005-07-18 Paul Eggert <eggert@cs.ucla.edu>
11004
258b75ca
PE
11005 Destructor cleanups and regularization among the three skeletons.
11006 * NEWS: Document the behavior changes.
11007 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
11008 stack before failing, as the cleanup code will do it for us now.
11009 * data/lalr1.cc (yyerrlab): Likewise.
11010 * data/glr.c (yyparse): Pop everything off the stack before
11011 freeing it, so that destructors get called properly.
11012 * data/lalr1.cc (yyreturn): Likewise.
11013 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
11014 This is more consistent.
11015 * doc/bison.texinfo (Destructor Decl): Mention more reasons
11016 why destructors might be called. 1.875 -> 2.1.
11017 (Destructor Decl, Decl Summary, Table of Symbols):
11018 Some English-language cleanups for %destructor.
11019 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11020 Add output line for destructor of start symbol.
11021 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
11022 because of that same extra output line.
11023
1a059451
PE
11024 * NEWS: Document minor wording changes in diagnostics of
11025 Bison-generated parsers.
11026 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
11027 Remove unused formals. All uses changed.
11028 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
11029 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
11030 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
11031 Rename yyoverflowab to yyexhaustedlab.
11032 When memory exhaustion occurs during syntax-error reporting,
11033 report it separately rather than in a single diagnostic; this
11034 eases translation.
11035 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
11036 (Memory Exhausted): Renamed from Parser Stack Overflow.
11037 Revamp wording slightly to prefer "memory exhaustion".
11038 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
11039
97460c78
PE
11040 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
11041
30757c8c
PE
11042 Add i18n support to the GLR skeleton. Partially fix the C++
11043 skeleton; a C++ expert needs to finish this. Remove debugging
11044 msgids; there's little point to having them translated, since they
11045 can be understood only by someone who can read the
11046 (English-language) source code.
11047
11048 Generate runtime-po/bison-runtime.pot automatically, so that we
11049 don't have to worry about garbage getting in that file. We'll
11050 make sure after the next official release that old msgids don't
11051 get lost. See
11052 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
11053
11054 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
11055 Now auto-generated.
11056 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
11057 Fix typos in explanations of the runtime file.
11058 * bootstrap: Change gettext keyword from YYI18N to YY_.
11059 Use standard Makefile.in.in in runtime-po, since we'll arrange
11060 for backward-compatible bison-runtime.po files in a different way.
11061 * data/glr.c (YY_): New macro, from yacc.c.
11062 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
11063 Translate messages intended for users.
11064 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
11065 the wording in the other skeletons. We don't know that the memory
11066 is virtual.
11067 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
11068 Use same method that yacc.c uses.
11069 Don't translate debugging messages.
11070 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
11071 it doesn't work (yet), and requires C++ expertise to fix.
11072 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
11073 Move defn to a more logical place, to be consistent with other
11074 skeletons.
11075 Don't translate debugging messages.
11076 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
11077 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
11078 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
11079 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
11080
ac8c5689
PE
11081 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
11082 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
11083 void, not int.
11084 * tests/glr-regression.at (Badly Collapsed GLR States):
11085 Likewise.
11086 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11087 yylex should return 0 at EOF rather than aborting.
11088
6100a9aa
PE
11089 Improve tests for stack overflow in GLR parser.
11090 Problem reported by twlevo@xs4all.nl.
11091 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
11092 All uses removed.
11093 (yyStackOverflow): Just longjmp, but with value 2 so that caller
11094 can handle the problem.
11095 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
11096 (yyparse): New local variable yyresult to record the result.
11097 Use result of setjmp to set it, rather than storing itinto
11098 struct.
11099 (yyDone): Remove label.
11100 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
11101 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
11102 if YYABORT is used).
11103 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
11104 yyparse status; put status > 1 into diagnostic.
11105 Check that status==2 works.
11106 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
11107 Use exit status 3 for failure to open (which shouldn't happen).
11108
15f40952
PE
111092005-07-17 Paul Eggert <eggert@cs.ucla.edu>
11110
67fd79c4
PE
11111 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
11112 1 on syntax error; just let yyparse do its thing.
11113 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
11114 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
11115 (Exploding the Stack Size with Alloca):
11116 (Exploding the Stack Size with Malloc):
11117 Expect exit status 2, not 1, since the parser is supposed to blow
11118 its stack. Problem reported by twlevo@xs4all.nl.
11119
15f40952
PE
11120 * data/glr.c (yyparse): Don't assume that the initial calls
11121 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
11122 Print a stack-overflow message and fail instead.
11123 Initialize the line-number information before creating the stack,
11124 so that the stack-overflow message can report line zero safely.
11125
f32c66b5
PE
111262005-07-14 Paul Eggert <eggert@cs.ucla.edu>
11127
a22ff96f 11128 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
11129 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
11130 (yyuserMerge): Provide a default case if b4_mergers is empty.
11131 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
11132 * tests/glr-regression.at
11133 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 11134 Add casts to pacify C++ compilers.
1beb0b24
PE
11135 * tests/glr-regression.at (Improper merging of GLR delayed action
11136 sets): Declare yylex before using it.
f32c66b5 11137 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
11138 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
11139 test for valgrind; valgrind is independent of g++.
11140 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
11141 for compatibility with POSIX 1003.1-2001 (if running coreutils).
11142 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
11143 Use a destructor, so that we can expand the stack. Change
11144 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 11145
d741bd1b
PE
111462005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11147
11148 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
11149 a valgrind failure. Problem reported by twlevo@xs4all.nl.
11150
0410a6e0
PE
111512005-07-13 Paul Eggert <eggert@cs.ucla.edu>
11152
11153 * PACKAGING: New file, suggested by Bruno Haible and taken from
11154 similar wording in gettext's PACKAGING file.
11155 * NEWS: Mention PACKAGING.
11156 * Makefile.am (EXTRA_DIST): Add PACKAGING.
11157
f7ab6a50
PE
111582005-07-12 Paul Eggert <eggert@cs.ucla.edu>
11159
baf785db 11160 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
11161 * bootstrap: Get runtime translations into runtime-po.
11162 Create runtime-po files automatically, if possible.
11163 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
11164 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
11165 does not infringe on the user's name space.
11166 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
11167 * doc/bison.texinfo (Internationalization): Revamp the English
11168 and Texinfo syntax a bit, to try to make it clearer.
11169 (Bison Options, Option Cross Key): Mention --print-localedir.
11170 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
11171 YYENABLE_NLS. Quote a bit more.
11172 * runtime-po/.cvsignore: New file.
11173 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
11174 * runtime-po/Rules-quot: Remove; now created by bootstrap.
11175 * runtime-po/quot.sed: Likewise.
11176 * runtime-po/boldquot.sed: Likewise.
11177 * runtime-po/en@quot.header: Likewise.
11178 * runtime-po/en@boldquot.header: Likewise.
11179 * runtime-po/insert-header.sin: Likewise.
11180 * runtime-po/remove-potcdate.sin: Likewise.
11181 * runtime-po/Makevars: Likewise.
11182 * runtime-po/LINGUAS: Likewise.
11183 * runtime-po/de.po: Likewise; we will rely on the translation project
11184 to maintain this, so "bootstrap" should get it.
0410a6e0 11185 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
11186 its value.
11187 * src/main.c (main): Bind the bison-runtime domain, too.
11188
111892005-07-12 Bruno Haible <bruno@clisp.org>
11190
11191 * data/yacc.c: Include <libintl.h> when NLS is enabled.
11192 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
11193 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
11194 * runtime-po: New directory.
11195 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
11196 $(DOMAIN).pot-update rule, so that old messages are never dropped.
11197 * runtime-po/Rules-quot: New file, copied from po/.
11198 * runtime-po/quot.sed: Likewise.
11199 * runtime-po/boldquot.sed: Likewise.
11200 * runtime-po/en@quot.header: Likewise.
11201 * runtime-po/en@boldquot.header: Likewise.
11202 * runtime-po/insert-header.sin: Likewise.
11203 * runtime-po/remove-potcdate.sin: Likewise.
11204 * runtime-po/Makevars: New file.
11205 * runtime-po/POTFILES.in: New file.
11206 * runtime-po/LINGUAS: New file.
11207 * runtime-po/bison-runtime.pot: New file.
11208 * runtime-po/de.po: New file.
11209 * m4/bison.m4: New file.
11210 * Makefile.am (SUBDIRS): Add runtime-po.
11211 (aclocaldir, aclocal_DATA): New variables.
11212 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
11213 Define aclocaldir.
11214 * src/getargs.c (usage): Document --print-localedir option.
11215 (PRINT_LOCALEDIR_OPTION): New enum item.
11216 (long_options): Add --print-localedir option.
11217 (getargs): Handle --print-localedir option.
11218 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
11219 (Internationalization): New section.
11220
22dda0f0
AD
112212005-07-12 Akim Demaille <akim@epita.fr>
11222
11223 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
11224 for consistency with the rest of the code.
11225 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
11226 Add separators.
11227
82b248ad
AD
112282005-07-12 Akim Demaille <akim@epita.fr>
11229
11230 * src/parse-gram.y: Use %printer instead of YYPRINT.
11231
fa0e9314
AD
112322005-07-12 Akim Demaille <akim@epita.fr>
11233
867a3e00
AD
11234 * src/symtab.h, src/symtab.c (symbol_print): New.
11235 * src/symlist.h, src/symlist.c (symbol_list_print): New.
11236 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
11237
112382005-07-12 Akim Demaille <akim@epita.fr>
11239
11240 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
11241 b4_at_dollar and b4_dollar_dollar.
11242
e054b190
PE
112432005-07-11 Paul Eggert <eggert@cs.ucla.edu>
11244
11245 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
11246 and Pennello's paper.
11247
34160ec4
PE
112482005-07-09 Paul Eggert <eggert@cs.ucla.edu>
11249
407d4a75
PE
11250 * data/yacc.c (yyparse): Undo previous patch. Instead,
11251 set yylsp[0] and yyvsp[0] only if the initial action
11252 sets yylloc and yylval, respectively.
11253
34160ec4
PE
11254 * data/yacc.c (yyparse): In the initial action, set
11255 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
11256 This avoids the use of undefined variables if the initial
11257 action does not set yylloc and/or yylval.
11258
c3d5a4a7
PE
112592005-07-07 Paul Eggert <eggert@cs.ucla.edu>
11260
b34d96c1
PE
11261 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
11262 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
11263 Remove from CVS. These files are automatically generated.
11264 * examples/extexi: Clarify that this file is now part of Bison,
11265 not GNU M4, and that it works with any POSIX-compatible Awk.
11266 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
11267 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
11268 so that we also get calc++-parser.yy. Geneate it.
11269 Use $(AWK), not gawk, since any conforming Awk will do.
11270 Put comment before action, since older 'make' can't handle comment
11271 in action.
11272 $(BUILT_SOURCES): List all built sources, not just some of them.
11273 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
11274 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
11275 $($(calc_sources_generated)): Remove unnecessary test for existence
11276 of target. (This had a shell syntax error anyway; a stray "x".)
11277 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
11278 calc++-parser.yy.
11279 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
11280
c3d5a4a7
PE
11281 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
11282 implied by the other modules.
11283
828c373b
AD
112842005-07-06 Akim Demaille <akim@epita.fr>
11285
11286 Bind examples/calc++ to the package.
11287 * examples/calc++/Makefile: Remove, replaced by...
11288 * examples/calc++/Makefile.am: ... this new file.
11289 * examples/calc++/test: Remove input.
11290 * examples/calc++/compile: Remove.
11291 * examples/Makefile.am: New.
11292 * configure.ac, Makefile.am: Adjust.
11293 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
11294
63cb01d6
PE
112952005-07-05 Paul Eggert <eggert@cs.ucla.edu>
11296
fd2df2ed
PE
11297 * data/glr.c (yyFail): Drastically simplify; since the format argument
11298 never had any % directives, we can simply pass it to yyerror.
11299 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
11300 be modified later, as that is the usual style in glr.c.
11301 Problems reported by Paul Hilfinger.
11302
63cb01d6
PE
11303 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
11304 and size overflow errors.
11305 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
11306 in case the user prolog sets feature-test macros like _GNU_SOURCE.
11307 (YYSIZEMAX): New macro.
11308 (yystpcpy): New function, taken from yacc.c.
11309 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
11310 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
11311 so that we don't have to maintain their signatures.
11312 (yyFail): Check for buffer overflow, by using vsnprintf rather
11313 than vsprintf. Allocate a bigger buffer if possible.
11314 Report an error if buffer allocation fails.
11315 (yyStackOverflow): New function.
11316 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
11317 the initialization was successful. It might fail if storage was
11318 exhausted.
11319 (yyexpandGLRStack): Add more checks for storage allocation failure.
11320 Use yyStackOverflow to report failures.
11321 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
11322 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
11323 Don't assume stack number fits in int.
11324 (yysplitStack): Check for storage allocation failure.
11325 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
11326 can print diagnostics on storage allocation failure. All callers
11327 changed.
11328 (yyresolveValue): Use yybool for boolean.
11329 (yyreportSyntaxError): Check for size-calculation overflow.
11330 This code is taken from yacc.c.
11331 (yyparse): Check for storage allocation errors when allocating
11332 the initial stack.
11333
1c59e0a1
AD
113342005-07-05 Akim Demaille <akim@epita.fr>
11335
11336 Extract calc++ from the documentation.
11337 * doc/bison.texinfo (Calc++): Add the extraction marks.
11338 * examples/extexi: New, from the aborted GNU Programming 2E.
11339 Separate the different paragraph of a file with empty lines.
11340 * examples/Makefile: Use it to extract the whole calc++ example.
11341
8a0adb01
AD
113422005-06-24 Akim Demaille <akim@epita.fr>
11343
11344 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
11345 class typedefs.
11346
12545799
AD
113472005-06-22 Akim Demaille <akim@epita.fr>
11348
11349 * doc/bison.texinfo (C++ Language Interface): First stab.
11350 (C++ Parsers): Remove.
11351
99be0235
AD
113522005-06-22 Akim Demaille <akim@epita.fr>
11353
11354 * data/lalr1.cc (yylex_): Honor %lex-param.
11355
0ffd4fd1
AD
113562005-06-22 Akim Demaille <akim@epita.fr>
11357
11358 Start a set of simple examples.
11359 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
11360 * examples/calc++/calc++-driver.hh,
11361 * examples/calc++/calc++-parser.yy,
11362 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
11363 * examples/calc++/compile, examples/calc++/test: New.
11364
0925ebb4
PE
113652005-06-09 Paul Eggert <eggert@cs.ucla.edu>
11366
11367 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
11368 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
11369 which stems from the 2005-05-27 patch.
11370
43d3b664
PH
113712005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11372
11373 * data/glr.c: Modify treatment of unused parameters to permit use
11374 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
11375
3062864d
PE
113762005-05-30 Paul Eggert <eggert@cs.ucla.edu>
11377
11378 Fix infringement on user name space reported by Janos Zoltan Szabo.
11379 * data/yacc.c (yyparse): strlen -> yystrlen.
11380
989b5b8e
AD
113812005-05-30 Akim Demaille <akim@epita.fr>
11382
11383 * data/lalr1.cc (_): New.
11384 Translate the various messages.
11385
bedf57f5
PE
113862005-05-27 Paul Eggert <eggert@cs.ucla.edu>
11387
11388 Fix infringement on user name space reported by Bruno Haible.
11389 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
11390 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
11391 the user's name space.
11392 (alloca): Include <stdlib.h> to get it, if it's not built in.
11393 (YYMALLOC, YYFREE): Define only if needed.
11394 (malloc, free): Declare, but only if needed, as this infringes on
11395 the user name space.
11396
4d1801f1
PE
113972005-05-25 Paul Eggert <eggert@cs.ucla.edu>
11398
11399 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
11400 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
11401 with %d format.
11402 * lib/ebitset.c (min, max): Undef before defining.
11403 * lib/vbitset.c (min, max): Likewise.
11404 * lib/subpipe.c (create_subpipe): Save local variables in case
11405 vfork clobbers them.
11406
114072005-05-24 Bruno Haible <bruno@clisp.org>
11408
11409 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
11410 error message syntax used by gcc-4.0.
11411
b94a9e1e
PE
114122005-05-23 Paul Eggert <eggert@cs.ucla.edu>
11413
85ac3861
PE
11414 * README: Mention m4 1.4.3. Remove obsolete advice about
11415 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
11416
b94a9e1e
PE
11417 * bootstrap: Remove workaround for problem I encountered with
11418 gettext 0.14.1; it seems to be fixed now.
11419
51c30d21
PE
114202005-05-22 Paul Eggert <eggert@cs.ucla.edu>
11421
009ce67d
PE
11422 * NEWS: Version 2.0a.
11423
f2a97c62
PE
11424 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
11425 the previous change.
11426
c8775f93
PE
11427 Various maintainer cleanups.
11428 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
11429 conftest*, for benefit of CVS commands run at the same time as
11430 "configure". Add build-aux, since "bootstrap" now creates it and
11431 its subfiles.
11432 * Makefile.cfg (move_if_change): Remove.
11433 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
11434 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
11435 (po_repo, do-po-update, po-update, wget_files, get-targets):
11436 (config.guess-url_prefix, config.sub-url_prefix):
11437 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
11438 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
11439 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
11440 Remove.
11441 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
11442 this is now the recommended name.
11443 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
11444 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
11445 ylwrap. These files now go into build-aux.
11446 * config/move-if-change: Remove.
11447 * config/prev-version.txt: Bump from 1.75 to 2.0.
11448
3ea5f0ec
PE
11449 * bootstrap: Add stdio-safer, unistd-safer modules.
11450 Remove m4/glibc2.m4 (introduced by latest gnulib, but
11451 we don't need it).
11452 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
11453 fopen-safer.c, stdio-safer.h, unistd-safer.h.
11454 * lib/subpipe.c: Include "unistd-safer.h".
11455 (create_subpipe): Make sure all the newly-created
11456 file descriptors are > 2, so that diagnostics don't
11457 get sent down them (which might cause Bison to hang, in theory).
11458 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
11459 * src/files.c (xfopen): Use fopen_safer, not fopen.
11460
51c30d21
PE
11461 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
11462 yesterday's yacc.c fix.
11463
cea1469d
PE
114642005-05-21 Paul Eggert <eggert@cs.ucla.edu>
11465
3ea5f0ec
PE
11466 * data/glr.c, data/lalr1.cc: Update copyright date.
11467
cea1469d
PE
11468 Fix a destructor bug reported by Wolfgang Spraul in
11469 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
11470 * data/yacc.c (yyabortlab): Don't call destructor, and
11471 don't set yychar to EMPTY.
11472 (yyoverflowlab): Don't call destructor.
11473 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
11474 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
11475 since we no longer output the message "discarding lookahead token
11476 end of input ()".
11477
5e6f62f2
PH
114782005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11479
11480 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
11481 fix a small glitch in debugging output.
11482 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
11483 after YY_SYMBOL_PRINT where needed.
11484
11485 (struct yyGLRState): Add some comments.
11486 (struct yySemanticOption): Add some comments.
11487 (union yyGLRStackItem): Add comment.
11488
11489 (yymergeOptionSets): Correct this to properly perform the union,
11490 avoiding infinite reported by Michael Rosien.
11491 Update comment.
11492
11493 * tests/glr-regression.at: Add test for GLR merging error reported
11494 by M. Rosien.
cea1469d 11495
0fb669f9
PE
114962005-05-13 Paul Eggert <eggert@cs.ucla.edu>
11497
11498 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
11499 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
11500 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
11501 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
11502 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
11503 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
11504 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
11505 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
11506 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
11507 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
11508 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
11509 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
11510 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
11511 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
11512 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
11513 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
11514 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
11515 src/derives.h, src/files.c, src/files.h, src/getargs.c,
11516 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
11517 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
11518 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
11519 src/output.h, src/parse-gram.c, src/parse-gram.h,
11520 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
11521 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
11522 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
11523 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
11524 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
11525 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
11526 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
11527 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
11528 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
11529 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
11530 tests/reduce.at, tests/regression.at, tests/sets.at,
11531 tests/synclines.at, tests/testsuite.at, tests/torture.at:
11532 Update FSF postal mail address.
11533
51f4735e
PE
115342005-05-11 Paul Eggert <eggert@cs.ucla.edu>
11535
11536 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
11537 Problem reported by Ralf Menzel.
11538
80ce3401
PE
115392005-05-01 Paul Eggert <eggert@cs.ucla.edu>
11540
11541 * tests/actions.at: Test that stack overflow invokes destructors.
11542 From Marcus Holland-Moritz.
11543 * data/yacc.c (yyerrlab): Move the code that destroys the stack
11544 from here....
11545 (yyreturn): to here. That way, destructors are called properly
11546 even if the stack overflows, or the user calls YYACCEPT or
11547 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
11548 (yyoverflowlab): Destroy the lookahead.
11549
115502005-04-24 Paul Eggert <eggert@cs.ucla.edu>
11551
11552 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
11553
72f000b0
PE
115542005-04-17 Paul Eggert <eggert@cs.ucla.edu>
11555
11556 * NEWS: Bison-generated C parsers no longer quote literal strings
11557 associated with tokens.
11558 * src/output.c (prepare_symbols): Don't escape strings,
11559 since users don't want to see C escapes.
11560 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
11561 in diagnostics.
c19683bb 11562 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
11563 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
11564
1094323f
PE
115652005-04-16 Paul Eggert <eggert@cs.ucla.edu>
11566
11567 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
11568 the data size is known to be too small and we can't increase it.
11569 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
11570
ca407bdf
PE
115712005-04-15 Paul Eggert <eggert@cs.ucla.edu>
11572
11573 * src/parse-gram.y: Include quotearg.h.
11574 (string_as_id): Quote $1 before using it as a key, since the
11575 lexer no longer quotes it for us.
11576 (string_content): Don't strip quotes, since lexer no longer
11577 quotes it for us.
11578 * src/scan-gram.l: Include quotearg.h.
11579 ("\""): Omit quote.
11580 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
11581 a key, since the rest of the lexer doesn't quote it.
11582 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
11583 * tests/regression.at (Token definitions): Check for backslashes
11584 in token strings.
11585
11586 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
11587 (YYSIZE_T): Define to unsigned long int when using an older compiler.
11588 (yyparse): Revamp code to generate long syntax error message, to
11589 make it easier to translate, and to avoid problems with arithmetic
11590 overflow. Change "virtual memory" to "memory" in diagnostic, since
11591 we don't know whether the memory is virtual.
11592
1ce59070
PE
115932005-04-13 Paul Eggert <eggert@cs.ucla.edu>
11594
11595 * NEWS: Bison-generated C parsers now use the _ macro to
11596 translate strings.
11597 * data/yacc.c (_) [!defined _]: New macro.
11598 All English strings wrapped inside this macro.
11599 * doc/bison.texinfo (Bison Parser): Document _.
11600 * po/POTFILES.in: Include src/parse-gram.c, since it now
11601 includes translateable strings that parse-gram.y doesn't.
11602
a749a695
PE
116032005-04-12 Paul Eggert <eggert@cs.ucla.edu>
11604
11605 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
11606 reverting the 2004-10-11 change to this function.
11607 (symbol_check_alias_consistency): Don't call symbol_type_set
11608 if the type name is already correct.
11609 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
11610
8fb1053b
PE
116112005-03-25 Paul Eggert <eggert@cs.ucla.edu>
11612
11613 * tests/regression.at (Token definitions): Don't use a token named
11614 c, as that generates a "#define c ..." that runs afoul of buggy
11615 stdlib.h that uses the identifier c as a member of struct
11616 drand48_data. Problem reported by Horst Wente.
11617
ff498c4a
PE
116182005-03-21 Paul Eggert <eggert@cs.ucla.edu>
11619
11620 * bootstrap: Change translation URL from
11621 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
11622 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
11623 redirection glitches. Problem reported by twlevo@xs4all.nl.
11624
65211d70
PE
116252005-03-20 Paul Eggert <eggert@cs.ucla.edu>
11626
11627 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
11628 after operands; POSIX says this isn't portable for the c99 command.
11629
9577fb1f
PE
116302005-03-18 Paul Eggert <eggert@cs.ucla.edu>
11631
11632 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
11633 immediately if a data overrun has occurred; this may help us track
11634 down what may be a spurious failure on MacOS.
11635
78b178f7
PE
116362005-03-17 Paul Eggert <eggert@cs.ucla.edu>
11637
a2599d0f
PE
11638 Respond to problems reported by twlevo@xs4all.nl.
11639
11640 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
11641
78b178f7
PE
11642 * src/vcg.h: Comment fix.
11643 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
11644 (G_CMAX): Change to -1 instead of INT_MAX.
11645
11646 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 11647
7296e729
PE
116482005-03-15 Paul Eggert <eggert@cs.ucla.edu>
11649
11650 * src/tables.c (state_number_to_vector_number): Put it inside an
11651 "#if 0", since it's not currently used. Problem reported by
11652 Roland McGrath.
11653
05ac60f3
PE
116542005-03-06 Paul Eggert <eggert@cs.ucla.edu>
11655
11656 * src/output.c (escaped_output): Renamed from
11657 escaped_file_name_output, since we now use it for symbol tags as
11658 well. All uses changed.
11659 (symbol_destructors_output, symbol_printers_output):
11660 Escape symbol tags too.
11661 Problem reported by Matyas Forstner in
11662 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
11663
11664 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
11665 not needed.
11666 * src/output.c (user_actions_output, token_definitions_output,
11667 symbol_destructors_output, symbol_printers_output): Likewise.
11668 * src/reader.c (prologue_augment): Likewise.
11669 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
11670
11671 * src/vcg.c (output_edge): Don't quote linestyle arg.
11672 Problem reported by twlevo@xs4all.nl.
11673
7eb453ac
PE
116742005-02-28 Paul Eggert <eggert@cs.ucla.edu>
11675
11676 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
11677 example, reported by Derek M Jones. Also, make the example even
11678 more outrageous, to better illustrate how bad the problem is.
11679
4c04c52a
PE
116802005-02-24 Paul Eggert <eggert@cs.ucla.edu>
11681
11682 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
11683 putsym. Typo reported by Sebastian Piping.
11684
a61e1620
PE
116852005-02-23 Paul Eggert <eggert@cs.ucla.edu>
11686
11687 * doc/bison.texinfo (Language and Grammar): some -> same
11688 (Epilogue): int he -> in the
11689 Typos reported by Sebastian Piping via Justin Pence.
11690
9ec93868
PE
116912005-02-07 Paul Eggert <eggert@cs.ucla.edu>
11692
11693 * tests/glr-regression.at (Improper handling of embedded actions
11694 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
11695 embedded actions and $-N in GLR parsers", work around an Autoconf bug
11696 with dollar signs in test names.
11697 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
11698 for a similar reason.
11699
73ce7e7e
PE
117002005-01-28 Paul Eggert <eggert@cs.ucla.edu>
11701
11702 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
11703 wants to redefine G_VIEW.
11704
2e72b98e
PE
117052005-01-27 Paul Eggert <eggert@cs.ucla.edu>
11706
11707 * src/vcg.c (get_view_str): Remove case for normal_view.
11708 Problem reported by twlevo@xs4all.nl.
11709
e0d634e5
PE
117102005-01-24 Paul Eggert <eggert@cs.ucla.edu>
11711
ccf830a4
PE
11712 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
11713 Problem reported by twlevo@xs4all.nl.
11714
e0d634e5
PE
11715 * doc/bison.texinfo: Change @dircategory from "GNU programming
11716 tools" to "Software development". Requested by Richard Stallman
11717 via Karl Berry.
11718
7bbc8cb0
PE
117192005-01-23 Paul Eggert <eggert@cs.ucla.edu>
11720
11721 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
11722 Problem reported by twlevo@xs4all.nl.
11723
08b770bc
PE
117242005-01-21 Paul Eggert <eggert@cs.ucla.edu>
11725
11726 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
11727 keyword; it's not needed with modern compilers, and it doesn't
11728 affect correctness with older compilers. Suggested by
11729 twlevo@xs4all.nl.
11730
95f22ad2
PE
117312005-01-17 Paul Eggert <eggert@cs.ucla.edu>
11732
11733 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
11734 gcc -Wswitch-default.
11735 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11736 * data/yacc.c (yyparse): Likewise.
11737
d229d15c
PE
117382005-01-12 Paul Eggert <eggert@cs.ucla.edu>
11739
11740 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
11741 already. Let config.h define any nonstandard values.
11742
ecadd90f
PE
117432005-01-10 Paul Eggert <eggert@cs.ucla.edu>
11744
11745 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
11746 for the benefit of slower hosts. Problem reported by
11747 Nelson H. F. Beebe.
11748
213744b5
PE
117492005-01-07 Paul Eggert <eggert@cs.ucla.edu>
11750
11751 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
11752 being defined and not used.
11753 * data/lalr1.cc (yyparse): Likewise.
11754 Use "if (false)" rather than "if (0)".
11755
249d3236
PE
117562005-01-05 Paul Eggert <eggert@cs.ucla.edu>
11757
11758 * TODO: Mention that we should allow NUL bytes in tokens.
11759
987cc1fb
PE
117602005-01-02 Paul Eggert <eggert@cs.ucla.edu>
11761
11762 * src/scan-skel.l (<<EOF>>): Don't close standard output.
11763 Problem reported by Hans Aberg.
11764
08fe02d9
PE
117652005-01-01 Paul Eggert <eggert@cs.ucla.edu>
11766
11767 * src/getargs.c (version): Happy new year; update overall
11768 program copyright date from 2004 to 2005.
11769
11770 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
11771 Problem reported by Hans Aberg.
11772 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
11773 (Output file names.): Add a test for the case when standard output
11774 is closed.
11775
010c0266
PE
117762004-12-26 Paul Eggert <eggert@cs.ucla.edu>
11777
11778 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
11779 to fix an oversight in the Bison 2.0 manual.
11780
da12206a
PE
117812004-12-25 Paul Eggert <eggert@cs.ucla.edu>
11782
11783 * NEWS: Version 2.0. Reformat the existing news items since
11784 1.875, so that related items are grouped together.
3a4734aa 11785 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
11786 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
11787
c935d934
PE
11788 * tests/torture.at (Exploding the Stack Size with Alloca): Set
11789 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
11790 otherwise, we're not testing alloca. Unfortunately there's no
11791 simple way to consult HAVE_ALLOCA here.
11792
da12206a
PE
11793 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
11794 for yymsg, too.
11795
11796 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
11797 hand. This avoids a warning about comparing int to size_t when
11798 GCC warnings are enabled.
11799
0a2c5137
PE
118002004-12-22 Paul Eggert <eggert@cs.ucla.edu>
11801
d7e14fc0
PE
11802 * NEWS: Bison-generated parsers no longer default to using the
11803 alloca function (when available) to extend the parser stack, due
11804 to widespread problems in unchecked stack-overflow detection.
11805 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
11806 responsibility to set it to a positive value. This lets the user
11807 specify a value that is not a preprocessor constant.
11808 * data/yacc.c (YYMAXDEPTH): Likewise.
11809 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
11810 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
11811 to be a compile-time constant. However, explain the constraints on it.
11812 Also, explain the constraints on YYINITDEPTH.
11813 (Table of Symbols): Explain that alloca is no longer the default.
11814 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
11815 to 1.
11816
0a2c5137
PE
11817 * doc/bison.texinfo (Location Default Action): Mention that n must
11818 be zero when k is zero. Suggested by Frank Heckenbach.
11819
e019c247
AD
118202004-12-22 Akim Demaille <akim@epita.fr>
11821
11822 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
11823 (parser::state_type, parser::semantic_type, parser::location_type):
11824 Private, not public.
11825 (parser::parse): Return ints, not bool.
11826 Returning a bool introduces a problem: 0 corresponds to false, and
11827 it seems weird to return false on success. Returning true changes
11828 the conventions for yyparse.
11829 Alternatively we could return void and send an exception.
11830 There is no clear consensus (yet?).
11831 (state_stack, semantic_stack, location_stack): Rename as...
11832 (state_stack_type, semantic_stack_type, location_stack_type): these.
11833 Private, not public.
11834 * tests/c++.at: New.
11835 * tests/testsuite.at, tests/Makefile.am: Adjust.
11836
72731bb7
AD
118372004-12-21 Akim Demaille <akim@epita.fr>
11838
11839 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
11840
9a0d8bec
AD
118412004-12-21 Akim Demaille <akim@epita.fr>
11842
11843 Don't impose std::string for filenames.
11844
11845 * data/lalr1.cc (b4_filename_type): New.
11846 (position::filename): Use it.
11847 (parser.hh): Move the inclusion of stack.hh and location.hh below
11848 the user code, so that needed headers for the filename type can be
11849 included first.
72731bb7
AD
11850 Forward declare them before the user code.
11851 * tests/Makefile.am (check-local, installcheck-local): Pass
11852 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 11853
99880de5
AD
118542004-12-20 Akim Demaille <akim@epita.fr>
11855
11856 Use more STL like names: my_class instead of MyClass.
11857
11858 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
11859 (SemanticStack, SemanticType, StateStack, StateType)
11860 (TokenNumberType, Stack, Slice, Traits, Parser::location)
11861 (Parser::value): Rename as...
11862 (location_stack, location_type, rhs_number_type, semantic_stack)
11863 (semantic_type, state_stack, state_type, token_number_type, stack)
11864 (slice, traits, parser::yylloc, parser::yylval): these.
11865
11866 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
11867
9bec482e
PE
118682004-12-19 Paul Eggert <eggert@cs.ucla.edu>
11869
11870 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
11871 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
11872
f6fbd3da
PE
118732004-12-17 Paul Eggert <eggert@cs.ucla.edu>
11874
11875 Remove uses of 'short int' and 'unsigned short int'. This raises
11876 some arbitrary limits. It uses more memory but nowadays that's
11877 not much of an issue.
11878
11879 This change does not affect the generated parsers; that's a different
11880 task, as some users will want to conserve memory there.
11881
11882 Ideally we should use size_t to represent all object counts, and
11883 something like ptrdiff_t to represent signed differences of object
11884 counts; but that will require more code-cleanup than I have the
11885 time to do right now.
11886
11887 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
11888 Use size_t, not int or short int, to count objects.
11889 * src/closure.c (nritemset, closure): Likewise.
11890 * src/closure.h (nritemset, closure): Likewise.
11891 * src/nullable.c (nullable_compute): Likewise.
11892 * src/print.c (print_core): Likewise.
11893 * src/print_graph.c (print_core): Likewise.
11894 * src/state.c (state_compare, state_hash): Likewise.
11895 * src/state.h (struct state): Likewise.
11896 * src/tables.c (default_goto, goto_actions): Likewise.
11897
11898 * src/gram.h (rule_number, rule): Use int, not short int.
11899 * src/output.c (prepare_rules): Likewise.
11900 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
11901 errs, reductions): Likewise.
11902 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
11903 Likewise.
11904 * src/tables.c (vector_number, tally, action_number,
11905 ACTION_NUMBER_MINIMUM): Likewise.
11906 * src/output.c (muscle_insert_short_int_table): Remove.
11907
efeed023
AD
119082004-12-17 Akim Demaille <akim@epita.fr>
11909
11910 * data/lalr1.cc: Extensive Doxygenation.
11911 (error_): Rename as...
11912 (error): this, since it is visible to the user.
11913 Adjust callers.
11914 (Parser::message): Now an automatic variable from...
11915 (Parser::yyreport_syntax_error_): here.
11916 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
11917 Parser::error.
11918 * tests/input.at: Escape $.
11919
bc82c5a5
PE
119202004-12-16 Paul Eggert <eggert@cs.ucla.edu>
11921
11922 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
11923 Parenthesize rhs to avoid obscure problems with mistakes like
11924 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
11925 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11926 b4_rhs_location): Likewise.
11927 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11928 b4_rhs_location): Likewise.
11929
fd19f271
AD
119302004-12-16 Akim Demaille <akim@epita.fr>
11931
11932 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
11933 yacc.c: be sure to stay within yycheck_.
11934 * tests/actions.at: Re-enable C++ tests.
11935
10454ea4
AD
119362004-12-16 Akim Demaille <akim@epita.fr>
11937
11938 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
11939 real.
11940
c5b95ccf
AD
119412004-12-16 Akim Demaille <akim@epita.fr>
11942
11943 Use #define to handle the %name-prefix.
11944
11945 * data/glr.c, data/yacc.c: Comment changes.
11946 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
11947 so that one can refer to yylex in the parser file, and have it
11948 renamed, as is the case with other skeletons.
11949
617a8f12
AD
119502004-12-16 Akim Demaille <akim@epita.fr>
11951
11952 Move lalr1.cc internals into yy*.
11953
11954 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
11955 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
11956 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
11957 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
11958 (empty_, final_, terror_, errcode_, ntokens_)
11959 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
11960 (looka_, ilooka_, error_range_, nerrs_):
11961 Rename as...
11962 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
11963 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
11964 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
11965 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
11966 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
11967 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
11968 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
11969 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
11970 these.
11971
1e547e6e
PE
119722004-12-15 Paul Eggert <eggert@cs.ucla.edu>
11973
11974 Fix some problems reported by twlevo at xs4all.
11975 * src/symtab.c (symbol_new): Report an error if the input grammar
11976 contains too many symbols. This is better than calling abort() later.
11977 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
11978 (struct node, struct graph):
11979 Rename member expand to stretch. All uses changed.
11980 (struct graph): Remove member layoutalgorithm. All uses removed.
11981 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
11982 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
11983 All uses changed.
11984 (N_STRETCH): Rename from N_EXPAND. All uses changed.
11985
735d6bd4
AD
119862004-12-15 Akim Demaille <akim@epita.fr>
11987
11988 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
11989 Add more Doxygen comments.
11990 (symprint_, stack_print_, reduce_print_, destruct_, pop)
11991 (report_syntax_error_, translate_): Rename as...
11992 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
11993 (yypop_, yyreport_syntax_error_, yytranslate_): this.
11994
2e1f5829
AD
119952004-12-15 Akim Demaille <akim@epita.fr>
11996
11997 * data/lalr1.cc (lex_): Rename as...
11998 (yylex_): this.
11999 Move the trace here.
12000 Take the %name-prefix into account.
12001 Reported by Alexandre Duret-Lutz.
12002
a3cb6248
AD
120032004-12-15 Akim Demaille <akim@epita.fr>
12004
12005 Simplify the C++ parser constructor.
12006
12007 * data/lalr1.cc (debug_): Rename as...
12008 (yydebug_): so that the parser's internals are always in the yy*
12009 pseudo namespace.
12010 Adjust uses.
12011 (b4_parse_param_decl): Remove the leading comma as it is now only
12012 called as unique argument list.
12013 (Parser::Parser): Remove the constructor accepting a location and
12014 an initial debugging level.
12015 Remove from the other ctor the argument for the debugging level.
12016 (debug_level_type, debug_level, set_debug_level): New.
12017
12018 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
12019 constructor calls.
12020
07fed891
AD
120212004-12-15 Akim Demaille <akim@epita.fr>
12022
12023 Remove b4_root related material: failure experiment
a3cb6248 12024 (which goal was to allow to derive from a class).
07fed891
AD
12025
12026 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
12027 definitions and uses.
12028
e603eaa5
PE
120292004-12-14 Paul Eggert <eggert@cs.ucla.edu>
12030
12031 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
12032 not 2, since it's not portable to subtract 1 from the start of an
12033 array. The new item 0 is never set or used. All uses changed.
12034
12035 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
12036 the default definition of YYLLOC_DEFAULT. Problem reported
12037 by Frank Heckenbach.
12038
fafb007d
PE
120392004-12-12 Paul Eggert <eggert@cs.ucla.edu>
12040
12041 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
12042 the normal case and one for the error case. Just use the
12043 first one uniformly. Problem reported by Frank Heckenbach.
12044 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
12045 use exactly the same macro in both places.
12046 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
12047 so that the normal-case YYRHSLOC works for the error case too.
12048 All uses changed.
12049 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
12050 (YYLLOC_DEFAULT): Use the same macro as glr.c.
12051 * doc/bison.texinfo (Location Default Action): Don't claim that
12052 we have an array of locations. Use the same macro for both glr
12053 and lalr parsers. Mention YYRHSLOC. Mention what happens when
12054 the index is 0.
12055
48814dcd
PE
120562004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12057
a4e1a53b
PE
12058 * HACKING: Update email addresses to send announcements to.
12059
48814dcd
PE
12060 * configure.ac (AC_INIT): Bump version to 1.875f.
12061
337116ba
PE
120622004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12063
12064 * NEWS: Version 1.875e.
12065 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
12066
12067 * src/scan-skel.l: Include "complain.h", for "fatal".
12068
12069 * src/relation.h (relation_print, relation_digraph):
12070 Relation sizes are of type relation_node, not size_t (this is
12071 merely a doc fix, since the two types are equivalent).
12072 (relation_transpose): Relation sizes are of type relation_node,
12073 not int.
12074 * src/relation.c: Likewise.
12075 (top, infinity): Now of type relation_node, not int.
12076 (traverse, relation_transpose): Use relation_node, not int.
12077
12078 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
12079 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
12080 (yyparse): Remove unused local introduced in 2004-10-25 patch.
12081
12082 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 12083 specifying whether the test should be skipped. Use it tp
337116ba 12084 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 12085 fail on some hosts, and should be skipped.
337116ba 12086
da2a7671
PE
120872004-12-08 Paul Eggert <eggert@cs.ucla.edu>
12088
12089 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
12090 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
12091 unless otherwise specified below.
12092
12093 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
12094 to allocate kernel_base, kernel_items, kernel_size, since
12095 they needn't be initialized to 0.
12096 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
12097 * src/closure.c (new_closure): Likewise, for itemset.
12098 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
12099 * src/lalr.c (set_goto_map): Likewise, for temp_map.
12100 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
12101 (build_relations): Likewise for edge, states1, includes.
12102 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
12103 * src/reader.c (packgram): Likewise, for ritem, rules.
12104 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
12105 * src/relation.c (relation_digraph): Likewise for VERTICES.
12106 (relation_transpose): Likewise for new_R, end_R.
12107 * src/symtab.c (symbols_token_translations_init): Likewise for
12108 token_translations.
12109 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
12110 (token_actions): Likewise for yydefact, actrow, conflrow,
12111 conflict_list.
12112 (save_column): Likewise for froms[symno], tos[symno].
12113 (goto_actions): Likewise for state_count.
12114 (pack_table): Likewise for base, pos, check.
12115 (tables_generate): Likewise for width.
12116
12117 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
12118 for initial core. Just have a separate core, so we needn't worry
12119 about whether kernel_size and kernel_base are initialized.
12120
12121 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
12122 kernel_size, kernel_items): Remove unnecessary initialization.
12123 * src/conflicts.c (conflicts): Likewise.
12124 * src/derives.c (derives): Likewise.
12125 * src/muscle_tablc (muscle_insert): Likewise.
12126 * src/relation.c (relation_digraph): Likewise.
12127 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
12128 conflrow, conflict_table, conflict_list, table, check):
12129 Likewise.
12130
12131 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
12132 This is because all callers pass unsigned int.
12133 * src/closure.h (new_closure): Likewise.
12134
12135 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
12136 (build_relations): Initialize includes[i] in all cases.
12137 * src/reader.c (packgram): Always initialize rules[ruleno].prec
12138 and rules[ruleno].precsym. Initialize members in order.
12139 * src/relation.c (relation_transpose): Always initialize new_R[i]
12140 and end_R[i].
12141 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
12142
12143 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
12144 conflict_list[0] was always 0, but now it isn't initialized.
12145
12146 * src/table.c (table_grow): When conflict_table grew, the grown
12147 area wasn't cleared. Fix this.
12148
12149 * lib/.cvsignore: Add strdup.c, strdup.h.
12150 * m4/.cvsignore: Add strdup.m4.
12151
00baeeac
PE
121522004-12-07 Paul Eggert <eggert@cs.ucla.edu>
12153
12154 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
12155 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
12156 GOTO_NUMBER_MAXIMUM, since we occasionally compute
12157 ngotos + 1 without checking for overflow.
12158 (build_relations): Use END_NODE, not -1, to denote end of edges.
12159 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
12160 build_relations): Use goto_number, not int, for goto numbers.
12161 * src/tables.c (save_column, default_goto): Likewise.
12162
be3d9d42
AD
121632004-11-23 Akim Demaille <akim@epita.fr>
12164
12165 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
12166 of #defining from yystype.
12167 Don't typedef yystype, C++ does not need it.
12168 This lets it possible to forward declare it as union.
12169
78e526d5
PE
121702004-11-23 Paul Eggert <eggert@cs.ucla.edu>
12171
12172 * bootstrap (gnulib_modules): Add extensions.
12173 Problem reported by Jim Meyering.
12174
afbb696d
PE
121752004-11-22 Paul Eggert <eggert@cs.ucla.edu>
12176
12177 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
12178 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
12179 src/system.h, src/tables.c: XFREE -> free, to accommodate
12180 recent change to gnulib xalloc.h.
78e526d5 12181 Problem reported by Jim Meyering.
afbb696d 12182
c1f8f16a
AD
121832004-11-17 Akim Demaille <akim@epita.fr>
12184
12185 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
12186
db7e5eb5 121872004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
12188 Alexandre Duret-Lutz <adl@gnu.org>
12189
12190 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
12191 changes.
12192 (YYCDEBUG): Adjust.
12193 Use it instead of cdebug_.
12194 (Parser::debug_stream, Parser::set_debug_stream): New.
12195 (Parser::symprint_): Define cdebug_ for temporary backward
12196 compatibility.
12197 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
12198 debug_stream ().
12199
68e11668
AD
122002004-11-17 Akim Demaille <akim@epita.fr>
12201
12202 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
12203 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
12204 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
12205 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12206
97cbc73e
PE
122072004-10-27 Paul Eggert <eggert@cs.ucla.edu>
12208
12209 * data/glr.c (yyloc_default): Remove; not used.
12210 Problem reported by Frank Heckenbach.
12211
e342c3be
AD
122122004-10-25 Akim Demaille <akim@epita.fr>
12213
12214 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
12215 Introduce another definition to address simple location arrays.
12216 (yyGLRStack): New member: yyerror_range.
12217 (yyrecoverSyntaxError, yyparse): Update it.
12218 (yyrecoverSyntaxError): Use it when shifting the error token to
12219 have an accurate range, equivalent to the one computed by both
12220 yacc.c and lalr1.cc.
12221 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
12222 that column numbers start at column 0, as per GNU Coding
12223 Standards, the others tests, and the doc.
12224 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
12225 Adjust to the above change (first column is 0).
12226 And adjust the location of the "<error>", now covering the whole
12227 line.
12228
93602feb 122292004-10-22 Akim Demaille <akim@epita.fr>
04098407 12230 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
12231
12232 Remove some arbitrary limits on goto numbers and relations.
12233 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
12234 initial values, since they're never used.
12235 (set_goto_map): ngotos is now unsigned, so test for overflow
12236 by seeing whether it wraps around to zero.
12237 * src/lalr.h (goto_number): Now size_t, not short int.
12238 (GOTO_NUMBER_MAXIMUM): Remove.
12239 * src/relation.c (relation_print, traverse, relation_transpose):
12240 Check for END_NODE rather than looking at sign.
12241 * src/relation.h (END_NODE): New macro.
12242 (relation_node): Now size_t, not short int.
12243
dba08b04
PE
122442004-10-22 Paul Eggert <eggert@cs.ucla.edu>
12245
12246 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
12247 keyword, not an identifier. Problem reported by Baron Schwartz in
12248 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
12249
df09ef2e
AD
122502004-10-11 Akim Demaille <akim@epita.fr>
12251
12252 * src/symtab.c (symbol_check_alias_consistency): Also check
12253 type names, destructors, and printers.
12254 Reported by Alexandre Duret-Lutz.
12255 Recode the handling of associativity and precedence in terms
12256 of symbol_precedence_set.
12257 Accept no redeclaration at all, not even equal to the previous
12258 value.
12259 (redeclaration): New.
12260 Use it to factor redeclaration complaints.
12261 (symbol_make_alias): Don't set the type of the alias, let
12262 symbol_check_alias_consistency do it as for other features.
12263 * src/symtab.h (symbol): Add new member prec_location, and
12264 type_location.
12265 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
12266 * tests/input.at (Incompatible Aliases): New.
12267
146bc99d
PE
122682004-10-09 Paul Eggert <eggert@cs.ucla.edu>
12269
12270 .cvsignore fixes to accommodate gnulib changes,
12271 and the practice of naming build directories "_build".
12272 * .cvsignore: Add "_*". Sort.
12273 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
12274 * m4/.cvsignore: Add "*_gl.m4".
12275
e503aa60
AD
122762004-10-06 Akim Demaille <akim@epita.fr>
12277
12278 * src/parse-gram.y (add_param): Fix the truncation of trailing
12279 spaces.
12280
b4a20338
AD
122812004-10-05 Akim Demaille <akim@epita.fr>
12282
12283 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
12284 whether the reducion was empty or not. This leaves room to
12285 improve the use of YYLLOC_DEFAULT in such a case.
12286 lalr1.cc is still experimental, so changing this is acceptable.
12287 And finally, there are probably not many users who changed the
12288 handling of locations in GLR, so changing is admissible too.
12289
12290 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
12291 empty reduction, set @$ to an empty location ending the previously
12292 stacked symbol.
12293 Adjust uses to make sure the code is triggered on empty
12294 reductions.
12295 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
12296 expected output: empty reductions have empty locations.
12297
f85a5e6f
AD
122982004-09-29 Akim Demaille <akim@epita.fr>
12299
12300 * data/lalr1.cc: Move towards a more standard C++ coding style
12301 for templates: Class < T > -> Class<T>.
12302
b203fc2c
AD
123032004-09-29 Akim Demaille <akim@epita.fr>
12304
12305 * data/lalr1.cc: Reinstall the former ctor, for sake of
12306 compatibility, but warn it will be removed.
12307 Move towards a more standard C++ coding style (i.e., type *var ->
12308 type* var).
12309
5b7e1e73
PE
123102004-09-27 Paul Eggert <eggert@cs.ucla.edu>
12311
3fee967f
PE
12312 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
12313 since it's less likely to work if NULs are involved in the future.
5b7e1e73 12314
0dcca5c2
AD
123152004-09-27 Akim Demaille <akim@epita.fr>
12316
12317 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
12318
6dde1c82
AD
123192004-09-27 Akim Demaille <akim@epita.fr>
12320
12321 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 12322 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
12323 and argument names.
12324 (b4_cc_constructor_call): Likewise.
12325
b233d555
AD
123262004-09-24 Akim Demaille <akim@epita.fr>
12327
12328 * src/parse-gram.y (add_param): Strip the leading and trailing
12329 blanks from a formal argument declaration.
12330 (YY_LOCATION_PRINT): New.
12331
619404e3
AD
123322004-09-24 Akim Demaille <akim@epita.fr>
12333
12334 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
12335 after the location.
12336
dd8d9022
AD
123372004-09-24 Akim Demaille <akim@epita.fr>
12338
12339 * doc/bison.texinfo (Table of Symbols): Sort.
12340
0092f063
AD
123412004-09-21 Akim Demaille <akim@epita.fr>
12342
12343 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
12344 the useless parentheses.
12345 Suggested by Paul Eggert.
12346
451364ed
AD
123472004-09-20 Akim Demaille <akim@epita.fr>
12348
12349 Let the initial-action act on the look-ahead, and use it for the
12350 "initial push" (corresponding to an hypothetical beginning-of-file).
12351 And let lalr1.cc honor %initial-action.
12352
12353 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
12354 example.
12355 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
12356 (Parser::Parser): Remove the ctor that used to initialize it.
12357 (Parser::parse): Like in the other skeletons, issue the "starting
12358 parse" message before any action.
12359 Honor %initial-action.
12360 Initialize the stacks with the lookahead.
12361 * data/yacc.c: Let $$ and @$ in %initial-action designate the
12362 look-ahead.
12363 Push them in the stacks.
12364 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
12365
18d192f0
AD
123662004-09-20 Akim Demaille <akim@epita.fr>
12367
12368 * doc/bison.texinfo (Initial Action Decl): New.
12369
b8458aa5
AD
123702004-09-20 Akim Demaille <akim@epita.fr>
12371
12372 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
12373 clearer criterion to define it.
12374 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
12375 When reducing on an empty RHS, use the latest stacked location as
12376 location.
12377 yylloc is not always available.
12378 * data/glr.c: Likewise.
12379 Also, honor initial-actions.
12380
3fc16193
AD
123812004-09-20 Akim Demaille <akim@epita.fr>
12382
12383 * data/yacc.c (YY_LOCATION_PRINT): New.
12384 Define when we know YYLTYPE's structure, i.e., when the default
12385 YYLLOC_DEFAULT is used.
12386 * data/c.m4 (b4_yysymprint_generate): Use it.
12387 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
12388 value of the result.
12389 (error_start_): Replace with...
12390 (error_range_): this location array.
12391 This allows to replace code relying on the implementation of
12392 locations by portable code.
12393 * data/yacc.c (yylerrsp): Replace with...
12394 (yyerror_range): this.
12395 Every time a token is popped, update yyerror_range[0], to have an
12396 accurate location for the error token.
12397 * data/glr.c (YY_LOCATION_PRINT): New.
12398 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
12399 deference a pointer.
12400 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
12401 report the location in %printers.
12402
12403 * src/scan-skel.l: Instead of abort, report error messages to ease
12404 understanding skeleton scanning failures.
12405
ecfe33e7
AD
124062004-09-16 Akim Demaille <akim@epita.fr>
12407
12408 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
12409 (iterator, const_iterator): these, to be more in the C++ spirit.
12410 Also, return reverse iterators so that when displaying the stack
12411 we display its bottom first.
12412 (Parser::stack_print_, Parser::reduce_print_): Match the messages
12413 from yacc.c.
12414 We should probably use vector here though.
12415
1576d44d
AD
124162004-09-16 Akim Demaille <akim@epita.fr>
12417
12418 Have more complete shift traces.
12419
12420 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
12421 to report Shifts instead of ad hoc YYDPRINTF invocations,
12422 including for the error token.
12423 * data/lalr1.cc (symprint_): Output the location.
12424 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
12425 output the location within the %printer.
12426 Activate GLR tests, at least to make sure they compile properly.
12427 They still don't pass though.
12428 * tests/calc.at: Adjust expect verbose output, since now "Entering
12429 state..." is on a different line than the "Shifting" message.
12430
9c66f418
AD
124312004-09-08 Akim Demaille <akim@epita.fr>
12432
12433 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
12434 Bison directive from the Bison file to the invocation of this
12435 macro, so that these directives are passed to
12436 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
12437 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
12438 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
12439 the extra Bison directives instead of the whole series.
12440 Change the grammar so that there are recoverable errors, and
12441 unrecoverable errors. Now we can have the parser give up before
12442 consuming the whole input. As a result we now can observe that
12443 the lookahead is freed when needed.
12444 Change the parser source to parse argv[1] instead of a hard coded
12445 string.
12446 Simplify yylex, and give a value and location to EOF.
12447 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
12448 passed directives already coded in the file.
12449 Add some tests to check the location of "error".
12450 For some tests, the C++ parser is correct, and not yacc.c.
12451 For other tests, they provide different, but unsatisfying, values,
12452 so keep the C++ value so that at least one parser is "correct"
12453 according to the test suite.
12454 (Actions after errors): Remove, this is subsumed by the
12455 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
12456
52d5733f
AD
124572004-09-06 Akim Demaille <akim@epita.fr>
12458
12459 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 12460 (Parser::pop): New.
52d5733f
AD
12461 Use it.
12462
a0e68930
AD
124632004-09-06 Akim Demaille <akim@epita.fr>
12464
12465 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
12466 argument, an informative message.
12467 Call YY_SYMBOL_PRINT.
12468 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
12469 * data/lalr1.cc (destruct_): Likewise.
12470 In addition, no longer depend on b4_yysymprint_generate and
12471 b4_yydestruct_generate to generate these functions, do it "by
12472 hand".
12473
e757bb10
AD
124742004-09-03 Akim Demaille <akim@epita.fr>
12475
12476 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
12477 invoked, yydestruct the lookahead.
12478 * tests/calc.at (Calculator $1): Update the expected lengths of
12479 traces: there is an added line for the discarded lookahead.
12480 * doc/bison.texinfo (Destructor Decl): Some rewording.
12481 Define "discarded" symbols.
12482
0fe1f06d
AD
124832004-09-02 Akim Demaille <akim@epita.fr>
12484
12485 * data/lalr1.cc (translate_, destruct_): No reason to be static.
12486
284acc8b
AD
124872004-09-02 Akim Demaille <akim@epita.fr>
12488
12489 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
12490 (YYDSYMPRINTF): Rename as...
12491 (YY_SYMBOL_PRINT): this.
12492 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
12493 two.
12494 Use it instead of direct symprint_ calls.
12495 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
12496 one.
12497
a5eb1ed2
AD
124982004-09-02 Akim Demaille <akim@epita.fr>
12499
b7c72fe1
AD
12500 * data/lalr1.cc (b4_yysymprint_generate): New.
12501 (symprint_): New member function, defined when YYDEBUG.
12502 Use it consistently instead of token/nterm debugging output by
12503 hand.
a5eb1ed2
AD
12504 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
12505 %printer calls to use cdebug_ when using lalr1.cc.
12506
417141dd
AD
125072004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
12508
12509 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
12510 with #ifdef YYDEBUG.
12511
2fa09258
AD
125122004-08-26 Akim Demaille <akim@epita.fr>
12513
12514 * doc/bison.texinfo (Implementing Loops): Rename as...
12515 (Implementing Gotos/Loops): this.
12516
9378b508
PE
125172004-08-13 Paul Eggert <eggert@cs.ucla.edu>
12518
12519 Adjust to latest gnulib.
12520 * bootstrap (gnulib_modules): Add xalloc-die.
12521 Set LC_ALL=C so that file names sort consistently.
12522 Prefer the gnulib copies of gettext.m4, glibc21.m4,
12523 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
12524 uintmax_t.m4, ulonglong.m4.
12525 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
12526 po.m4 since we are now using _gl.m4 instead.
12527
87a8ad5c
PE
125282004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
12529
12530 * src/scan-action.l: Remove. Scanning of semantic actions is
12531 handled in scan-gram.l.
12532
dca81a78
PE
125332004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
12534
12535 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
12536
12537 * src/location.h (struct): The file member is a uniqstr.
12538 (equal_boundaries): Use UNIQSTR_EQ for comparison.
12539
c9cbf7c5
PE
125402004-07-22 Paul Eggert <eggert@cs.ucla.edu>
12541
12542 Fix bug with non-%union parsers that have printers or destructors,
12543 which led to a Bison core dump. Reported by Peter Fales in
12544 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 12545
c9cbf7c5
PE
12546 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
12547 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
12548 not to our own type.
12549 * src/output.c (symbol_destructors_output, symbol_printers_output):
12550 Don't assume %union.
12551 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
12552 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
12553 UNION-FLAG. All callers changed.
12554 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
12555 Use type char, not unsigned int, when declaring an array of char;
12556 this lets us remove a cast.
12557 (Printers and Destructors): Add non-%union test cases.
12558
fa7e68c3
PE
125592004-06-21 Paul Eggert <eggert@cs.ucla.edu>
12560
12561 * doc/bison.texinfo: Minor editorial changes, mostly to the new
12562 GLR writeups. E.g., avoid frenchspacing and the future tense,
12563 change "lookahead" to "look-ahead", and change "wrt" to "with
12564 respect to".
2fa09258 12565
fa7e68c3
PE
125662004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12567
12568 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
12569 New sections, split off from the GLR Parsers section. Put the new
12570 Simple GLR Parser near the start of the GLR section, for clarity.
12571 Rewrite connective text.
12572
99a9344e
PE
125732004-06-21 Frank Heckenbach <frank@g-n-u.de>
12574
12575 * doc/bison.texinfo (Simple GLR Parsers): New section.
12576
8dd162d3
PE
125772004-06-21 Paul Eggert <eggert@cs.ucla.edu>
12578
12579 * NEWS, TODO, doc/bison.texinfo:
12580 Use "look-ahead" instead of "lookahead", to be consistent.
12581 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
12582 while we're fixing "look-ahead".
12583 * src/conflicts.c (shift_set): Renamed from shiftset.
12584 (look_ahead_set): Renamed from lookaheadset.
12585 * src/print.c: Likewise.
12586 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
12587 name for "lookahead".
12588 (report_types, usage): Likewise.
12589 * src/getargs.h (report_look_ahead_tokens): Renamed from
12590 report_lookaheads.
12591 * src/lalr.c (compute_look_ahead_tokens): Renamed from
12592 compute_lookaheads.
12593 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
12594 (look_ahead_tokens_print): Renamed from lookaheads_print.
12595 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
12596 state_rule_lookaheads_print.
12597 * src/state.h: Likewise.
12598 (reductions.look_ahead_tokens): Renamed from lookaheads.
12599 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
12600 AT_DATA_LOOKAHEADS_GRAMMAR.
12601
57a90331
PE
126022004-06-03 Paul Eggert <eggert@cs.ucla.edu>
12603
12604 * README: Update location of patched M4 distribution.
12605
8ed3234a
PE
126062004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
12607
12608 Don't assume the C++ compiler takes the same arguments as the C compiler
12609 (trivial change).
12610 * configure.ac (O0CXXFLAGS): New var.
12611 * tests/atlocal.in (CXXFLAGS): Use it.
12612
07971983
PE
126132004-05-29 Paul Eggert <eggert@cs.ucla.edu>
12614
12615 Fix some "make check" problems with C++ reported by
12616 Albert Chin-A-Young for Tru64 C++ in this thread:
12617 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
12618
12619 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
12620 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
12621 Output to a .cc file for C++, not to a .c file.
12622 * tests/calc.at (AT_CHECK_CALC): Likewise.
12623 * tests/regression.at (AT_CHECK_DANCER): Likewise.
12624 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
12625
29058652
PE
126262004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
12627
12628 * tests/calc.at, tests/actions.at: Workaround for SGI
12629 C++ compiler. (trivial change)
12630
62cb8a99
PE
126312004-05-27 Paul Eggert <eggert@cs.ucla.edu>
12632
fd418816
PE
12633 Spent a few hours checking out which prerequisite versions the
12634 current sources actually require. I went all the way back to
12635 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
12636 a seemingly endless set of combinations of versions more recent
12637 than that. The bottom line is that the current sources require
12638 fairly recent versions of the build tools, and it'll be some work
12639 to change this.
12640 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
12641 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
12642 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
12643 Add comments explaining why those particular versions are
12644 currently needed.
2fa09258 12645
62cb8a99
PE
12646 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
12647 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 12648 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
12649
12650 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
12651 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
12652
caa52c10
PE
126532004-05-26 Paul Eggert <eggert@cs.ucla.edu>
12654
12655 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
12656 0.11.5. Suggested by Bruno Haible.
12657 * bootstrap: Remove gettext version checking.
12658
12659 * doc/bison.texinfo (Decl Summary): Also mention that %union
12660 can depend on prerequisite types. Problem reported by Tim
12661 Van Holder.
12662
4bfd5e4e
PE
126632004-05-25 Paul Eggert <eggert@cs.ucla.edu>
12664
2cef3017
PE
12665 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
12666 * README-alpha: Don't tell people not to package this.
12667
b9c85d5c
PE
12668 * bootstrap: Don't assume $(...) works; use `...` instead.
12669 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
12670 gettext better.
12671
4bfd5e4e
PE
12672 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
12673 put into the -d output file, and mention what to do if YYSTYPE is
12674 defined as a macro.
12675
6a36ff94
PE
126762004-05-24 Paul Eggert <eggert@cs.ucla.edu>
12677
6712933e
PE
12678 Undo change made earlier today: it caused autopoint to not bring
12679 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
12680 autopoint's.
12681
12682 * bootstrap: Check that gettext version matches what's in
12683 configure.ac. Warn users to ignore robots.txt ERROR 404.
12684 * bootstrap: Undo today's earlier change (logged below).
12685 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 12686
6a36ff94
PE
12687 The gettext version checking is causing more trouble than it's
12688 curing; remove it. Problem reported by Paul Hilfinger.
12689
12690 * bootstrap: Issue a warning that one can expect a message
12691 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
12692 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
12693
209ea708
PE
126942004-05-23 Paul Eggert <eggert@cs.ucla.edu>
12695
12696 Ensure that the C++ compiler used for testing actually works on a
12697 simple test program; if not, skip the C++-related tests. Problem
12698 reported by Vin Shelton in:
161a71f3 12699 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
12700
12701 * m4/cxx.m4: New file.
12702 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
12703 * tests/atlocal.in (BISON_CXX_WORKS): Add.
12704 * tests/local.at (AT_COMPILE_CXX): Use it.
12705
41ca2549
PE
127062004-05-21 Paul Eggert <eggert@cs.ucla.edu>
12707
383e69dc
PE
12708 * data/glr.c (yylloc): Output this macro even if locations are not
12709 being generated, as the GLR parser needs it even in that case.
12710 Problem reported by Troy A. Johnson
12711 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
12712
41ca2549
PE
12713 * configure.ac (AC_INIT): Update to 1.875e.
12714
e476c87d
PE
127152004-05-21 Paul Eggert <eggert@cs.ucla.edu>
12716
12717 * NEWS: Version 1.875d.
12718 * configure.ac (AC_INIT): Likewise.
12719 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
12720
12721 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
12722 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
12723 lalr1.cc runs afoul of the first, and the last two are no longer
12724 supported by GCC 3.4.0.
12725 * README: Mention GNU m4 1.4 or later; mention m4 patches.
12726 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
12727
233a88ad
PE
127282004-05-06 Paul Eggert <eggert@cs.ucla.edu>
12729
12730 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
12731 unsigned int, for compatibility with latest gnulib hash module.
12732 * src/state.c (state_hash, state_hasher): Likewise.
12733 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
12734 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 12735
12ffdd28
PE
127362004-05-03 Paul Eggert <eggert@cs.ucla.edu>
12737
12738 * NEWS: Unescaped newlines are no longer allowed in char & strings.
12739
12740 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
12741 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
12742 character and string literals.
12743 (unexpected_end): New function.
12744 (unexpected_eof): Use it.
12745 (unexpected_newline): New function.
12746 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
12747 actions.
e476c87d 12748
12ffdd28
PE
12749 * NEWS: Document %expect-rr.
12750
12751 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
12752 Fix typo by replacing $1 with $option.
12753 Remove more 'intl'-related files.
9668e2be 12754 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
12755
12756 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
12757 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
12758 strtoul.c.
12759 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
12760 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
12761 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
12762 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
12763 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
12764 * src/.cvsignore: Add *.output.
12765
12766 * src/parse-gram.y: Put copyright notice inside %{ %} so it
12767 gets copied to the output file.
e476c87d 12768
1f65350a
PE
127692004-04-28 Paul Eggert <eggert@twinsun.com>
12770
12771 Get files from the gnulib and po repositories, instead of relying
12772 on them being in our CVS. Upgrade to latest versions of gnulib
12773 and Automake.
12774
12775 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
12776 * bootstrap: Bootstrap from gnulib and po repositories.
12777 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
12778 * README-cvs: Document these changes. Remove version numbers from
12779 mentions of build tools, since they change so often. Mention Flex.
12780
12781 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
12782 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
12783 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
12784 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 12785 does this for us.
12ffdd28
PE
12786 (AC_ISC_POSIX): Remove; we no longer support this
12787 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
12788 (AC_HEADER_STDC): Remove: we now assume C89 or better.
12789 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
12790 Do not check for C89 headers, except for locale.h which is used
12791 by the Yacc library and must port to K&R hosts.
12792 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
12793 Do not check for C89 functions, except for setlocale which is
12794 used by the Yacc library.
12795 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
12796 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
12797 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
12798 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
12799 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
12800 AM_GNU_GETTEXT): Remove; now done by:
12801 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
12802 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
12803 for us.
12804
12805 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
12806 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
12807 Define to empty, as gnulib.mk will do the rest for us.
12808 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
12809 for us.
12810 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
12811 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
12812
12813 * src/files.c: Include gnulib's xstrndup.h.
12814
12815 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
12816 (REALLOC): Use xnrealloc, for likewise.
12817 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
12818 (strnlen, memrchr): Remove decls; functions no longer used.
12819 Include <stpcpy.h>.
12820
12821 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
12822 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
12823 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
12824 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
12825 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
12826 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
12827 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
12828 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
12829 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
12830 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
12831 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
12832 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
12833 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
12834 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
12835 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
12836 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
12837 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
12838 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
12839 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
12840 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
12841 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
12842 Remove, as these files are now generated automatically
12843 by bootstrap or automake.
12844
12845 * po/ChangeLog: Remove: all but one entry was a duplicate
12846 of this file, and I moved that 2000-11-02 entry here.
12847
12848 * config/.cvsignore: Add Makefile, depcomp, install-sh.
12849 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
12850 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
12851 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
12852 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
12853 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
12854 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
12855 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
12856 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
12857 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
12858 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
12859 xstrndup.h.
12860 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
12861 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
12862 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
12863 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
12864 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
12865 * src/.cvsignore: Remove *_.c.
12866
12867
12868 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
12869 support it. (The latest stable gzip doesn't.)
12870
128712004-04-27 Paul Eggert <eggert@twinsun.com>
12872
12873 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
12874 case, as stos_ is now used by destructors due to the 2004-02-09
12875 change.
12876
12877 Remove more K&R C support.
12878 * lib/libiberty.y (PARAMS): Remove. All uses removed.
12879 * lib/subpipe.c (errno): Remove decl.
12880 Include <stdlib.h> unconditionally.
12881 (EXIT_FAILURE): Remove macro.
12882 * src/complain.c (vfprintf, strerror): Remove.
12883 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
12884 unconditionally.
12885 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
12886 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
12887 (strchr, strspn, memchr): Remove decls.
12888 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
12889 unconditionally. Do not declare perror.
12890 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
12891 unconditionally.
12892
12893 * src/complain.c (_): Remove useless defn, as system.h defines this.
12894
12895 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
12896 with latest obstack.h.
12897 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
12898 to procedure types, as obstack.h now does that for us.
12899 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
12900
12901 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
12902 so that this include file can stand alone.
12903 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
12904 does this now. Include subpipe.h first after config.h, to
12905 test whether it can stand alone.
12906
12907 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
12908 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
12909 unused declaration.
12910
12911 * tests/synclines.at (%union synch line): Put a dummy member in
12912 the union, because empty unions aren't allowed in C. Caught
12913 by GCC 3.4.0.
12914
4f16766c
PE
129152004-04-13 Jim Meyering <jim@meyering.net>
12916
12917 * src/conflicts.c (conflicts_print): Correct format string typo:
12918 use `%%' to produce literal `%'. (trivial change)
12919
779e7ceb
PE
129202004-03-30 Paul Eggert <eggert@twinsun.com>
12921
12922 * src/getargs.c (version): Update copyright year to 2004.
12923
12924 * data/c.m4 (b4_int_type): Use 'short int' rather than
12925 'short', and similarly for 'long', 'unsigned', etc.
12926 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
12927 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
12928 yy_yypstack, yydumpstack): Likewise.
12929 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
12930 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
12931 Likewise.
12932 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
12933 yy_stack_print, yyparse): Likewise.
12934 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
12935 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
12936 * lib/bitset.c (bitset_print): Likewise.
12937 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
12938 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
12939 * lib/bitsetv.c (bitsetv_dump): Likewise.
12940 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
12941 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
12942 Likewise.
12943 * src/LR0.c (allocate_itemsets): Likewise.
12944 * src/gram.h (rule_number, rule): Likewise.
12945 * src/lalr.h (goto_number): Likewise.
12946 * src/nullable.c (nullable_compute): Likewise.
12947 * src/output.c (prepare_rules): Likewise.
12948 * src/relation.c (relation_print, relation_digraph): Likewise.
12949 * src/relation.h (relation_node): Likewise.
12950 * src/state.h (state_number, transitions, errs, reductions,
12951 struct state): Likewise.
12952 * src/symtab.h (symbol_number, struct symbol): Likewise.
12953 * src/tables.c (vector_number, tally, action_number,
12954 default_goto, goto_actions): Likewise.
12955 * tests/existing.at (GNU Cim Grammar): Likewise.
12956 * tests/regression.at (Web2c Actions): Likewise.
12957
12958 * src/output.c (muscle_insert_short_int_table): Renamed from
12959 muscle_insert_short_table. All uses changed.
12960
d6328241
PH
129612004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
12962
12963 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
12964 (declaration): Replace expected_conflicts with expected_sr_conflicts.
12965 Add %expect-rr rule.
4f16766c 12966
d6328241
PH
12967 * src/scan-gram.l: Recognize %expect-rr.
12968
4f16766c 12969 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 12970 expected_conflicts.
4f16766c 12971 (expected_rr_conflicts): Declare.
d6328241
PH
12972
12973 * src/conflicts.c (expected_sr_conflicts): Rename from
12974 expected_conflicts.
12975 (expected_rr_conflicts): Define.
12976 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
12977 for GLR parsers.
12978 Use expected_sr_conflicts in place of expected_conflicts.
12979 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 12980
d6328241 12981 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 12982
1452af69
PE
129832004-03-08 Paul Eggert <eggert@gnu.org>
12984
12985 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 12986 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
12987
12988 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
12989 in lalr1.cc.
12990 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
12991 * src/scan-gram.l (scan_integer): New function.
12992 ({int}): Use it.
12993 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
12994 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
12995 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
12996 Say "long int", not "long", for uniformity with GNU style.
12997
006d217d
PE
129982004-02-25 Paul Eggert <eggert@twinsun.com>
12999
13000 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
13001 compilers. This fixes a problem with Intel's C++ compiler being
13002 chatty, reported by Guido Trentalancia in
161a71f3 13003 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 13004
c2729758
ADL
130052004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
13006
13007 Support %destructor and merge error locations in lalr1.cc.
13008
13009 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
13010 (Parser::stos_): Define unconditionally.
13011 (Parser::destruct_): New method. Generate its body with
13012 b4_yydestruct_generate.
13013 (Parser::error_start_): New attribute.
13014 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
13015 token which are discarded.
13016 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
13017 error_start_ when erroneous token are discarded.
13018 (Parser::parse) <yyerrlab1>: Compute the location of the error
13019 token so that it covers all the discarded tokens.
13020 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
13021 it can be called with `%skeleton "lalr1.cc"', and do that.
13022
dd0e0635
PE
130232004-02-02 Paul Eggert <eggert@twinsun.com>
13024
13025 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
13026 $(top_srcdir)/lib and ../lib. This fixes a bug reported
13027 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
13028 There's no need to mention top_builddir since Automake does that
13029 for us.
13030 (INCLUDES): Remove, as Automake says it's obsolescent.
13031 Contents migrated into AM_CPPFLAGS as described above.
13032 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
13033
130342004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13035
13036 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
13037 (yyreportSyntaxError): Handle case where lookahead token is
13038 YYEMPTY.
13039
be16239b
PH
130402004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13041
13042 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
13043 resulting parsers are compilable with C++.
13044
5fa90832
PE
130452003-12-23 Paul Eggert <eggert@twinsun.com>
13046
13047 * config/depcomp, config/install-sh: Sync with Automake 1.8.
13048 * src/output.c (output_skeleton): Rename local var.
13049 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
13050 Bison tokens, as this runs afoul of the 2003-10-07 change that
13051 disallowed NUL bytes in character constants or string literals.
13052
13053 * tests/local.at: Require Autoconf 2.59's Autotest.
13054 * tests/testsuite.at: Don't include local.at, since we now assume
13055 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
13056 including it.
13057 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
13058 multiple inclusion warnings.
dd0e0635 13059
b165c324
AD
130602003-12-02 Akim Demaille <akim@epita.fr>
13061
13062 * doc/bison.texinfo (How Can I Reset the Parser): More about start
13063 conditions.
13064 From Bruno Haible.
13065
26e06a21
ADL
130662003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
13067
13068 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
13069
92ac3705
PE
130702003-10-07 Paul Eggert <eggert@twinsun.com>
13071
6a5ecb38
PE
13072 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
13073 if testsuite doesn't exist.
13074
92ac3705
PE
13075 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
13076 literals, unfortunately.
13077 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
13078 Complain about NUL bytes in character constants or string literals.
13079
91d2c560
PE
130802003-10-05 Paul Eggert <eggert@twinsun.com>
13081
13082 * NEWS: Don't document %no-default-prec, as it's still
13083 too experimental.
13084 * doc/bison.texinfo: Document %no-default-prec only if
13085 the defaultprec flag is set. Normally it's not.
13086
0cc3da3a
PE
130872003-10-04 Paul Eggert <eggert@twinsun.com>
13088
13089 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
13090 non-modifiable lvalue, instead of a modifiable one.
13091 * doc/bison.texinfo (Actions): Document that $$ can
13092 be assigned to. Do not claim that $$ and $N are
13093 array element references: user code should not rely on this.
13094
22fccf95
PE
130952003-10-01 Paul Eggert <eggert@twinsun.com>
13096
13097 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
13098 (grammar_declaration): Use it.
13099 * src/scan-gram.l: New token %no-default-prec.
13100 * tests/conflicts.at: Revamp tests to use %no-default-prec.
13101 * NEWS, doc/bison.texinfo: Document the above.
13102
fc8f2965
AD
131032003-10-01 Akim Demaille <akim@epita.fr>
13104
13105 VCG no longer supports long_straight_phase.
13106
13107 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
13108 * src/print_graph.c (print_graph): Adjust.
13109
39a06c25
PE
131102003-09-30 Frank Heckenbach <frank@g-n-u.de>
13111 and Paul Eggert <eggert@twinsun.com>
13112
13113 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
13114 Table of Symbols): Document %default-prec.
13115 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
13116 (grammar_declaration): Set default_prec on %default-prec.
13117 * src/scan-gram.l (%default-prec): New token.
13118 * src/reader.h (default_prec): New flag.
13119 * src/reader.c: Likewise.
13120 (packgram): Handle it.
13121 * tests/conflicts.at (%default-prec without %prec,
13122 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 13123
39a06c25
PE
131242003-09-30 Paul Eggert <eggert@twinsun.com>
13125
13126 * tests/testsuite.at: Include local.at, not input.at, fixing
13127 a typo in the 2003-08-25 patch.
13128
62b6aef9
AD
131292003-08-27 Akim Demaille <akim@epita.fr>
13130
13131 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
13132 GCC warnings.
13133
89e1cc61
AD
131342003-08-26 Akim Demaille <akim@epita.fr>
13135
13136 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
13137 "<\#" to avoid magic from Gnus when posting parts of this script.
13138
a08460b0
AD
131392003-08-26 Akim Demaille <akim@epita.fr>
13140
13141 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
13142 (Parser::parse): here.
13143 Adjust: nerrs and errstatus is now replaced by...
13144 (Parser::nerrs_, Parser::errstatus_): New.
13145
603f1cfd
AD
131462003-08-25 Akim Demaille <akim@epita.fr>
13147
13148 * config/announce-gen, Makefile.cfg: New.
13149 * Makefile.am: Adjust.
13150 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
13151 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
13152
cd3684cf
AD
131532003-08-25 Akim Demaille <akim@epita.fr>
13154
13155 When reducing initial empty rules, Bison parser read an initial
13156 location that is not defined. This results in garbage, and that
13157 affects Bison's own parser. Therefore we need (i) to extend Bison
13158 to support a means to initialize this location, and (ii) to use
13159 this CVS Bison to fix CVS Bison's parser.
13160
13161 * src/reader.h, reader.c (epilogue_augment): Remove, replace
13162 with...
13163 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
13164 * src/parse-gram.y: Adjust.
13165 (%initial-action): New.
13166 (%error-verbose): Since we require CVS Bison, there is no reason
13167 not to use it.
13168 * src/scan-gram.l: Adjust.
13169 * src/Makefile.am (YACC): New, to make sure we use our own parser.
13170 * data/yacc.c (yyparse): Use b4_initial_action.
13171
4e03e201
AD
131722003-08-25 Akim Demaille <akim@epita.fr>
13173
13174 * doc/bison.texinfo: Don't promote stdout for error messages.
13175
8c182d05
AD
131762003-08-25 Akim Demaille <akim@epita.fr>
13177
13178 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
13179 From Alexandre Duret-Lutz.
13180
6a60c4cf
PE
131812003-08-25 Akim Demaille <akim@epita.fr>
13182
13183 Version 1.875c.
13184
25f66e1a
AD
131852003-08-25 Akim Demaille <akim@epita.fr>
13186
13187 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
13188 Use them.
13189
5348bfbe
AD
131902003-08-25 Akim Demaille <akim@epita.fr>
13191
13192 * data/lalr1.cc (Parser::reduce_print_): New.
13193 Use it.
13194
47301314
AD
131952003-08-25 Akim Demaille <akim@epita.fr>
13196
13197 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
13198 error recovery loops. This patch is based on
161a71f3 13199 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
13200 Also, augment the similarity between lalr1.cc and yacc.c.
13201 Note: the locations of error recovery rules are not correct yet.
13202
13203 * data/lalr1.cc: Comment changes to augment the similarity between
13204 lalr1.cc and yacc.c.
13205 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
13206 (yyerrlab1): Remove, but where it used to be (now the bottom part of
13207 yyerrlab), when hitting EOF, pop the whole stack here instead of
13208 merely falling thru the default error handling mechanism.
13209 (yyerrorlab): New label, with the old contents of YYERROR,
13210 plus the following change: pop the stack of rhs corresponding
13211 to the production that invoked YYERROR. That is how Yacc
13212 behaves (required by POSIX).
13213 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
13214 fail.
13215
1f7a61ff
AD
132162003-08-25 Akim Demaille <akim@epita.fr>
13217
13218 Tune local.at so that people can "autom4te -l autotest calc.at -o
13219 calc" for instance, to extract a sub test suite.
13220
13221 * tests/testsuite.at: Move the initialization, Autotest version
13222 requirement, and AT_TESTED invocation into...
13223 * tests/local.at: here.
13224 * tests/testsuite.at: Include it for compatibility with Autoconf
13225 2.57.
13226 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
13227 be ignore.
13228
327b5b56
PE
132292003-08-04 Paul Eggert <eggert@twinsun.com>
13230
13231 Rework code slightly to avoid gcc -Wtraditional warnings.
13232 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
13233 The returned value is now stored in *YY0. All callers changed.
13234 * src/output.c (merge_output): Adjust to the above change.
13235
0051e3ed
PE
132362003-07-26 Paul Eggert <eggert@twinsun.com>
13237
13238 * data/glr.c (YYASSERT): New macro.
13239 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
13240 yyresolveStates, yyprocessOneStack):
13241 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
13242 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 13243
137437c6
PE
132442003-07-25 Paul Eggert <eggert@twinsun.com>
13245
5b620e06
PE
13246 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
13247 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 13248 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
13249 by Frank Heckenbach, though I have omitted the structure-initialization
13250 part of his glr-knr.diff patch since I recall that the Portable
13251 C Compiler didn't require that change.
13252
137437c6
PE
13253 Let the user specify how to allocate and free memory.
13254 Derived from a suggestion by Frank Heckenbach in
161a71f3 13255 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
13256 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
13257 All uses of free, malloc, realloc changed to use these macros,
13258 and unnecessary casts removed.
13259 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
13260
ddb85ca5
PE
132612003-07-06 Matthias Mann <MatthiasMann@gmx.de>
13262
13263 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
13264 use s.empty() rather than s == "" to test for empty string; see
161a71f3 13265 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
13266 (trivial change)
13267
39910e09
AD
132682003-06-25 Akim Demaille <akim@epita.fr>
13269
13270 * config/depcomp, config/install-sh: Update from masters.
13271
0ae99356
PE
132722003-06-20 Paul Eggert <eggert@twinsun.com>
13273
13274 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
13275 and return properly parenthesized result.
13276 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
13277 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
13278 Remove unnecessary parentheses from uses.
13279 * doc/bison.texinfo (Location Default Action): Describe the
13280 conventions for parentheses.
13281
cd05d13c
PE
132822003-06-19 Paul Eggert <eggert@twinsun.com>
13283
81fd08ca
PE
13284 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
13285 yyreportTree): Do not assume that size_t is the same width as int,
13286 when printing sizes. Print sizes using an unsigned format.
13287 Problem reported by Frank Heckenbach in
161a71f3 13288 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 13289
cd05d13c
PE
13290 Port to Forte Developer 7 C compiler.
13291 * data/glr.c (struct YYLTYPE): If locations are not being used,
13292 declare a single dummy member, as empty structs do not conform
13293 to the C standard.
13294 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
13295 the Forte Developer 7 C compiler complains that end-of-loop
13296 code is not reached.
13297
4dcf140b
PE
132982003-06-17 Paul Eggert <eggert@twinsun.com>
13299
13300 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
13301 avoid warnings from picky compilers about redefinition of PARAMS.
13302
8dd76bee
PE
133032003-06-17 Paul Eggert <eggert@twinsun.com>
13304
13305 Version 1.875b.
13306
13307 * NEWS: Document 1.875b.
13308
13309 * lib/bbitset.h: Do not include config.h; that's the includer's job.
13310 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
13311 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
13312 Don't use 'index' in comments, as it's a builtin fn on some hosts.
13313 * lib/bitset_stats.c: Include gettext.h unconditionally, as
13314 per recent gettext manual's suggestion.
13315 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
13316 Use prototypes, not old-style definitions.
13317 * lib/lbitset.c (lbitset_unused_clear): Likewise.
13318 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
13319 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
13320 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
13321 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
13322 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
13323 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
13324 vbitset_or_and_cmp, vbitset_copy): Likewise.
13325
13326 * lib/libiberty.h: Do not include config.h; that's the includer's job.
13327 Do not include <stdlib.h>.
13328 (PARAMS): Define unconditionally for C89.
13329 (ATTRIBUTE_NORETURN): Remove.
13330 (ATTRIBUTE_UNUSED): Define unconditionally.
13331
13332 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 13333 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
13334 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
13335 * lib/vbitset.c, lib/vbitset.h: New files.
13336 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13337 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
13338 from libbitset.
13339
13340 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
13341 `How Can I Reset @code{yyparse}', since texinfo does not allow
13342 arbitrary @ in node names.
13343
13344 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
13345 shouldn't be needed according to the gettext 0.12.1 documentation
13346 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 13347 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 13348 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 13349 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 13350
8dd76bee
PE
13351 * lib/.cvsignore: Add stdbool.h.
13352 * m4/.cvsignore: Add nls.m4, po.m4.
13353
13354 Upgrade to CVS gnulib.
13355 * stdbool_.h: File renamed from stdbool.h.in.
13356 * configure.ac (AM_STDBOOL_H): Invoke this instead of
13357 AC_HEADER_STDBOOL.
13358 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
13359 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
13360 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
13361 (MOSTLYCLEANFILES): New var.
13362 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
13363 (stdbool.h): New rule.
13364 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
13365 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
13366 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
13367 m4/quote.m4: Upgrade to today's gnulib.
13368
13369 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
13370 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
13371 the tests right now.
13372 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
13373 yyerror are declared before use; C99 requires this.
13374
25005f6a
PH
133752003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13376
13377 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
13378 first.
13379 (yyrecoverSyntaxError): Correct the logic for setting and testing
13380 yyerrState.
13381 Correct comment on handling EOF.
13382 Allow states with only a default reduction, rather than failing
8dd76bee 13383 (I can't quite reconstruct why these were not allowed before).
25005f6a 13384
137437c6 13385 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 13386 buffer overruns, corrupting state.
8dd76bee
PE
13387
13388 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
13389 definition.
13390 * src/reader.h (max_left_semantic_context): New variable declaration.
13391 * src/scan-gram.l (max_left_semantic_context): Define.
13392 (handle_action_dollar): Update max_left_semantic_context.
13393 * data/glr.c (YYMAXLEFT): New definition.
13394 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
13395 (yyresolveAction): Ditto.
13396
13397 Fixes to problems with location handling in GLR parsers reported by
13398 Frank Heckenbach (2003/06/05).
13399
13400 * data/glr.c (YYLTYPE): Make trivial if locations not used.
13401 (YYRHSLOC): Add parentheses, and define only if locations used.
13402 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
13403 locations not used.
13404 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
13405 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 13406
25005f6a
PH
13407 * tests/cxx-type.at: Exercise location information; update tests
13408 to differentiate output with and without locations.
8dd76bee 13409 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
13410 because default YYLTYPE not yet defined.
13411 Change semantic actions to compute strings, rather than printing
13412 them directly (to test proper passing of semantics values). Change
13413 output to prefix notation and update test data and expected results.
13414 (yylex): Track locations.
13415 (stmtMerge): Return value rather than printing, and include arguments
13416 in value.
8dd76bee 13417
711f40b7
PE
134182003-06-03 Paul Eggert <eggert@twinsun.com>
13419
13420 Avoid warnings generated by GCC 2.95.4 when Bison is
13421 configured with --enable-gcc-warnings.
13422 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
13423 yy::]b4_parser_class_name[::translate_,
13424 yy::Stack::operator[] (unsigned),
13425 yy::Stack::operator[] (unsigned) const,
13426 yy::Slice::operator[] (unsigned),
13427 yy::Slice::operator[] (unsigned) const):
13428 Rename local vars to avoid warnings.
13429 * tests/glr-regression.at (Improper handling of embedded actions
13430 and $-N in GLR parsers): Remove unused local variable from yylex.
13431 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
13432 (void) as arg when not pure, since we now assume C89 when building
13433 Bison. Pacify GCC by using parameter.
13434
ac695f7d
PE
134352003-06-02 Paul Eggert <eggert@twinsun.com>
13436
13437 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
13438 yy::Location::lines, yy::Location::columns): Rename arguments
13439 to avoid shadowing; this removes a warning generated by GCC 3.3.
13440
26ec81e0
PE
134412003-06-01 Paul Eggert <eggert@twinsun.com>
13442
13443 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
13444 to g++, as GCC 3.3 complains if you do it.
13445 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
13446 everything that WARNING_CFLAGS has, except omit warnings
13447 not suitable for C++.
13448 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
13449 * tests/atlocal.in (CXXFLAGS): New var.
13450 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
13451
13452 Fix a GLR parser bug I reported in February; see
161a71f3 13453 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
13454 The problem was that GLR parsers did not conform to the C standard,
13455 because actions like { $1 = $2 + $3; } expanded to expressions
13456 that invoked YYFILL in separate subexpressions, and YYFILL assigned
13457 to a local variable. The C standard says that expressions
13458 like (var = f ()) + (var = f ()) have undefined behavior.
13459 Another problem was that GCC sometimes issues warnings that
13460 yyfill and its parameters are unused.
13461
13462 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
13463 as possibly unused.
13464 (yyfill): New function.
13465 (YYFILL): Use it.
13466 (yyuserAction): Change type of yynormal to bool, so that it matches
13467 the new yyfill signature. Mark it as possibly unused.
13468
13469
13470 Follow up on a bug I reported in February, where a Bison-generated
13471 parser can loop. Provide a test case and a fix for yacc.c. I
13472 don't have a fix for lalr1.cc or for glr.c, unfortunately.
13473 The original bug report is in:
161a71f3 13474 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
13475
13476 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
13477 macro's size was becoming unwieldy.
13478 (yyerrlab): Do not discard an empty lookahead symbol, as this
13479 might destroy garbage.
13480 (yyerrorlab): New label, with the old contents of YYERROR,
13481 plus the following change: pop the stack of rhs corresponding
13482 to the production that invoked YYERROR. That is how Yacc
13483 behaves, and POSIX requires this behavior.
13484 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
13485 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
13486 Define 'alarm' to do nothing if unistd.h is not available.
13487 Add a new rule "exp: '-' error;" to test the above change to
13488 data/yacc.c. Use 'alarm' to abort any test taking longer than
13489 10 seconds, as it's probably looping.
13490 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
13491 Also, the new yacc.c generates two fewer diagnostics for an
13492 existing test.
13493
d0829076
PE
134942003-05-24 Paul Eggert <eggert@twinsun.com>
13495
c6ae27df
PE
13496 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
13497 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
13498 This fixes a problem reported by John Bowman when the Compaq/HP
13499 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
13500 -ansi -Wall -gall).
13501 * data/yacc.c (union yyalloc): Likewise.
13502 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 13503
d0829076
PE
13504 Switch from 'int' to 'bool' where that makes sense.
13505
13506 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
13507 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
13508 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
13509 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
13510 Return or accept bool, not int. All callers changed.
13511 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
13512 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
13513 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
13514 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
13515 bitset_or_and_cmp_): Likewise.
13516 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
13517 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
13518 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
13519 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
13520 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
13521 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
13522 bitset_stats_or_and_cmp): Likewise.
13523 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
13524 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
13525 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
13526 ebitset_xor_cmp): Likewise.
13527 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
13528 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
13529 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
13530 lbitset_xor_cmp): Likewise.
13531 * lib/bbitset.h: Include <stdbool.h>.
13532 (struct bitset_vtable): The following members now return bool, not
13533 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
13534 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
13535 or_and_cmp).
13536 * src/conflicts.c (count_rr_conflicts): Likewise.
13537 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
13538 All uses changed.
13539 * lib/ebitset.c (ebitset_obstack_init): Likewise.
13540 * lib/lbitset.c (lbitset_obstack_init): Likewise.
13541 * src/getargs.c (debug_flag, defines_flag, locations_flag,
13542 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
13543 graph_flag): Likewise.
13544 * src/getargs.h (debug_flag, defines_flag, locations_flag,
13545 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
13546 graph_flag): Likewise.
13547 * src/output.c (error_verbose): Likewise.
13548 * src/output.h (error_verbose): Likewise.
13549 * src/reader.c (start_flag, typed): Likewise.
13550 * src/reader.h (typed): Likewise.
13551 * src/getargs.c (LOCATIONS_OPTION): New constant.
13552 (long_options, getargs): Use it.
13553 * src/lalr.c (build_relations): Use bool, not int.
13554 * src/nullable.c (nullable_compute): Likewise.
13555 * src/print.c (print_reductions): Likewise.
13556 * src/tables.c (action_row, pack_vector): Likewise.
13557 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
13558 * src/output.c (prepare): Use it.
13559 * src/output.c (token_definitions_output,
13560 symbol_destructors_output, symbol_destructors_output): Use string,
13561 not boolean integer, to keep track of whether to output separator.
13562 * src/print_graph.c (print_core): Likewise.
13563 * src/state.c (state_rule_lookaheads_print): Likewise.
13564
13565 * config/install-sh: Sync from automake 1.7.5.
13566
6b2584b7
PE
135672003-05-14 Paul Eggert <eggert@twinsun.com>
13568
13569 * src/parse-gram.y (rules_or_grammar_declaration): Require a
13570 semicolon after a grammar declaration, in the interest of possible
13571 future changes to the Bison input language.
13572 Do not allow a stray semicolon at the start of the grammar.
13573 (rhses.1): Allow one or more semicolons after any rule, including
13574 just before "|" as required by POSIX.
13575 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
13576 grammar.
13577
caf37a36
ADL
135782003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
13579
13580 %parse-param support for lalr1.cc.
13581
13582 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
13583 b4_cc_constructor_calls, b4_cc_constructor_call,
13584 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
13585 definitions.
13586 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
13587 parse-param arguments.
13588 (yy::b4_parser_class_name): Declare instance variables to
13589 hold parse-param arguments.
13590 * tests/calc.at: s/value/semantic_value/ because value clashes
13591 with a member of yy::b4_parser_class_name. Adjust C++ code
13592 to handle %parse-param. Enable %parse-param test in C++.
13593
3ab37077
PE
135942003-05-12 Paul Eggert <eggert@twinsun.com>
13595
13596 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
13597 English a bit. Fix fclose typo. Change "const char" to "char
13598 const", and use ANSI C rather than K&R for "main". Suggest
13599 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
13600 and suggest yy_switch_to_buffer.
13601
136022003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
13603
13604 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
13605 C89. This avoids a diagnostic on compilers that define __STDC__
13606 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 13607 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 13608
e743727f
PE
136092003-05-03 Paul Eggert <eggert@twinsun.com>
13610
13611 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
13612 Do not overrun array bounds.
13613 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 13614 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 13615
916708d5
AD
136162003-04-29 Akim Demaille <akim@epita.fr>
13617
13618 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
13619 * src/getargs.c, src/getargs.h: here, as bool, not int.
13620 (nondeterministic_parser): New.
13621 * src/parse-gram.y, src/scan-gram.l: Support
13622 %nondeterministic-parser.
13623 * src/output.c (prepare): Use nondeterministic_parser instead
13624 of glr_parser where appropriate.
13625 * src/tables.c (conflict_row, action_row, save_row)
13626 (token_actions, token_actions, pack_vector): Ditto.
13627
a06ea4aa
AD
136282003-04-29 Akim Demaille <akim@epita.fr>
13629
13630 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
13631
211074ca
AD
136322003-04-29 Akim Demaille <akim@epita.fr>
13633
13634 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
13635 with %pure-parser and %locations to exercise the patch from Yakov
13636 Markovitch below.
13637
6175ffe3
PE
136382003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
13639
13640 * data/yacc.c: (b4_lex_param): Corrected for the case where
13641 %lex-param is provided and %pure-parser isn't.
13642
b1e95857
PE
136432003-04-27 Paul Eggert <eggert@twinsun.com>
13644
13645 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 13646 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
13647 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
13648 if it is not defined.
13649 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
13650
acda9df6
PE
136512003-04-26 Paul Eggert <eggert@twinsun.com>
13652
3470c57b
PE
13653 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
13654 Declare to be of type suitable for the ninf value itself, not of
13655 type suitable for the corresponding table, since the latter might
13656 be unsigned but the ninf value might be negative. This fixes a
13657 bug reported by Alexandre Duret-Lutz in
161a71f3 13658 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 13659
acda9df6
PE
13660 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
13661 invokes it. We shouldn't invoke it twice because it will attempt
13662 to put error.o in the archive twice. This fixes a glitch reported
13663 by Martin Mokrejs in
161a71f3 13664 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 13665
b5250f26
PE
136662003-04-21 Paul Eggert <eggert@twinsun.com>
13667
13668 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
13669 to gnulib.
13670
089ac0f1
PE
136712003-04-21 Yakov Markovitch <Markovitch@iso.ru>
13672
13673 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
13674 Fix obvious typo that results in uncompilable GLR parsers
13675 when both %pure-parser and %locations are used. (trivial change)
13676
5ededac6
PE
136772003-04-17 Paul Eggert <eggert@twinsun.com>
13678
1b8f2fff
PE
13679 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
13680 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
13681 Do not insert the expected token via unput, as this runs afoul
13682 of a POSIX-compatibility bug in flex 2.5.31.
13683 All uses changed to BEGIN the parent state,
13684 since we no longer insert the expected token via unput.
13685 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
13686 that is no longer emitted after the above change.
13687
5ededac6
PE
13688 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
13689 the first one. This change is from Paul Hilfinger, and it fixes
13690 regression reported by Werner Lemberg in
161a71f3 13691 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
13692
13693 (resolve_sr_conflict): Don't invoke state_errs_set
13694 unless one or more tokens have been explicitly made errors.
13695 Otherwise, the above change causes Bison to abort.
13696
13697 * tests/existing.at (GNU pic Grammar): New test case, taken from
13698 Lemberg's email.
13699
b8be9132
AD
137002003-03-31 Akim Demaille <akim@epita.fr>
13701
13702 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
13703
d423d460
AD
137042003-03-31 Akim Demaille <akim@epita.fr>
13705
13706 * src/output.c (prepare_symbols): Avoid trailing spaces in the
13707 output.
13708
c7e441b4
AD
137092003-03-31 Akim Demaille <akim@epita.fr>
13710
13711 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
13712 From Paul Hilfinger.
13713
231897ad
AD
137142003-03-29 Akim Demaille <akim@epita.fr>
13715
13716 * m4/error.m4: Do not put under dynamic conditions some code which
13717 expansion is under static control.
13718
5b066063
AD
137192003-03-29 Akim Demaille <akim@epita.fr>
13720
13721 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
13722
22a74fec
AD
137232003-03-29 Akim Demaille <akim@epita.fr>
13724
13725 * doc/bison.texinfo (Strings are Destroyed): New.
13726
0eee27e7
PE
137272003-03-13 Paul Eggert <eggert@twinsun.com>
13728
13729 * .cvsignore: Add configure.lineno.
13730 * src/.cvsignore: Add yacc.
13731 * tests/.cvsignore: Add testsuite.log.
13732 * doc/fdl.texi: Sync with latest FSF version.
13733
f61aad93
PE
137342003-03-12 Paul Eggert <eggert@twinsun.com>
13735
537636c7
PE
13736 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
13737 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
13738 cursor, instead of leaving it undefined. This fixes a bug
13739 reported by Tim Van Holder in
161a71f3 13740 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
13741 * tests/input.at (Torturing the Scanner): Test the scanner on
13742 an empty input file, which was Tim Van Holder's test case.
13743
13744 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
13745 <sys/resource.h> can be included, include sys/time.h and
13746 sys/times.h first, if available. This works around the SunOS
13747 4.1.4 porting bug reported by Bruce Becker in
161a71f3 13748 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
13749
13750 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
13751 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
13752 AC_HEADER_SYS_WAIT.
13753
f61aad93
PE
13754 Merge changes from gnulib. This was prompted because the CVS
13755 snapshot didn't build on Solaris 7 due to strnlen problems.
13756
13757 These changes need to be merged back into gnulib:
13758 * lib/hash.c: Include <stdbool.h> unconditionally.
13759 * m4/onceonly.m4 (m4_quote): New macro.
13760 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
13761 Quote AC_FOREACH variable-expansions properly.
13762 The 2003-01-03 obstack.h change also needs merging.
13763 {end of changes requiring merging}
5b066063 13764
f61aad93
PE
13765 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13766 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
13767 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
13768 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
13769 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
13770 New files, imported from gnulib.
13771 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
13772 above.
13773
13774 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
13775 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
13776 gnulib sources.
13777
13778 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
13779 Add.
13780 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
13781 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
13782 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
13783 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
13784 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
13785 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
13786 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
13787 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
13788 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
13789 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
13790 (jm_PREREQ_ARGMATCH): Remove.
13791 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
13792 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
13793
13794 * src/system.h: Include <stdbool.h> unconditionally.
13795
13796 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
13797 assuming at least C89 in the bitset code for some time now.
13798
d2ffe116
AD
137992003-03-03 Akim Demaille <akim@epita.fr>
13800
13801 * ro.po: New.
13802
052826fd
AD
138032003-03-02 Akim Demaille <akim@epita.fr>
13804
13805 * doc/bison.texinfo (Table of Symbols): Reactivate the
13806 documentation for %lex-param, and %parse-param.
13807
c4749565
AD
138082003-03-02 Akim Demaille <akim@epita.fr>
13809
13810 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
13811 generate verbose error messages.
13812 Use the number of tokens as an upper bound in yytname, as it
13813 cannot be a non terminal.
13814
d5286af1
AD
138152003-03-02 Akim Demaille <akim@epita.fr>
13816
13817 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
13818 message.
13819
22e304a6
AD
138202003-03-02 Akim Demaille <akim@epita.fr>
13821
22e304a6
AD
13822 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
13823 Use them to exercise yycheck overrun.
13824 Based on Andrew Suffield's grammar.
13825
67a25fed
AD
138262003-03-02 Akim Demaille <akim@epita.fr>
13827
13828 Create tests/local.at for Bison generic testing macros.
13829
13830 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
13831 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
13832 This new file.
13833 * tests/calc.at (AT_CHECK_CALC): Adjust.
13834 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
13835 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
13836 * tests/local.at: here.
13837 (AT_COMPILE_CXX): Tags the tests using it as c++.
13838 Ignore the test if CXX is not functional.
13839
9c2b381f
PE
138402003-03-01 Paul Eggert <eggert@twinsun.com>
13841
13842 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
13843 not loc->end, since loc->end might contain garbage and this leads
13844 to undefined behavior on some platforms.
13845 (id_loc, token_start): Use (IF_LINTed) initial values that do not
13846 depend on *loc, so that the reader doesn't give the the false
13847 impression that *loc is initialized.
13848 (<INITIAL>"%%"): Do not bother setting code_start, since its value
13849 does not survive the return.
13850
0433ba88
AD
138512003-03-01 Akim Demaille <akim@epita.fr>
13852
13853 * src/scan-gram.l (code_start): Always initialize it when entering
13854 into yylex, as SC_EPILOGUE is activated *before* the corresponding
13855 yylex invocation. An alternative would be making it static, but
13856 then it starts with the second %%'s beginning, instead of its end.
13857
b305ea69
PE
138582003-02-28 Paul Eggert <eggert@twinsun.com>
13859
13860 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
13861 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 13862 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 13863
c3d25e01
PE
138642003-02-26 Paul Eggert <eggert@twinsun.com>
13865
13866 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
13867 Remove Sequent/Pyramid discussion (nobody uses them any more).
13868 Merge VMS and MS-DOS discussion; these ports may well be dead
13869 but let's keep mentioning them for now. Put <> around email
13870 addresses. Add copyright notice.
13871
c267ffbc
PE
138722003-02-24 Paul Eggert <eggert@twinsun.com>
13873
13874 * data/glr.c (yy_reduce_print): yylineno -> yylno,
13875 to avoid collision with flex use of yylineno.
13876 Problem reported by Bruce Lilly in
161a71f3 13877 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
13878 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
13879 * data/yacc.c (yy_reduce_print): Likewise.
13880
13881 * config/depcomp: Sync with Automake 1.7.3.
13882
f939fc12
AD
138832003-02-21 Akim Demaille <akim@epita.fr>
13884
13885 * data/lalr1.cc: Use temporary variables instead of casts to
13886 change integer types.
13887 Suggested by Paul Eggert.
13888
95923bd6
AD
138892003-02-21 Akim Demaille <akim@epita.fr>
13890
13891 * doc/bison.texinfo: Use "location" consistently to refer to @n,
13892 to avoid confusions with lalr1.cc's notion of Position.
13893 Suggested by Paul Eggert.
13894
2cdc240e
AD
138952003-02-20 Akim Demaille <akim@epita.fr>
13896
13897 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
13898 before initial_columns.
13899 (location.hh): Use consistent variable names when defining the
13900 operator<<.
13901 Use "last" so that we subtract from Positions, not from unsigned.
13902
5d003116
AD
139032003-02-20 Akim Demaille <akim@epita.fr>
13904
13905 * data/lalr1.cc (position.hh): New subfile, including the extended
13906 and Doxygen'ed documentation of class Position.
13907 (location.hh): Use it.
13908 Document a` la Doxygen.
ba1ecc07 13909 With the help of Benoit Perrot.
5d003116 13910
d02b25f9
AD
139112003-02-20 Akim Demaille <akim@epita.fr>
13912
13913 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
13914 AT_YACC_IF.
13915 Redefine AT_YYERROR_SEES_LOC_IF using it.
13916 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
13917 not defined.
13918 Don't use the location in yy::Parser::error_ and
13919 yy::Parser::print_ when not %locations.
13920 Activate more lalr1.cc tests.
13921
0d1c3a04
AD
139222003-02-19 Akim Demaille <akim@epita.fr>
13923
13924 * data/lalr1.cc: When displaying a line number, be sure to make it
13925 an int.
13926
60a777aa
AD
139272003-02-19 Akim Demaille <akim@epita.fr>
13928
13929 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
13930 Remove, useless.
13931 (YYABORT, YYACCEPT, YYERROR): New.
13932 * tests/calc.at: Renable the lalr1.cc test.
13933
0b86fc41
AD
139342003-02-19 Akim Demaille <akim@epita.fr>
13935
13936 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
13937 error recovery, mixing with/without pops and discarding of the
13938 lookahead.
13939 Exercise YYERROR.
13940 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
13941
da99a5dc
PE
139422003-02-17 Paul Eggert <eggert@twinsun.com>
13943
13944 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
13945 * tests/testsuite.at (AT_COMPILE): Use them.
13946 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 13947 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 13948
93b8c255
PE
139492003-02-12 Paul Eggert <eggert@twinsun.com>
13950
13951 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
13952 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 13953 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
13954 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
13955 Check for malloc failure, for consistency with yacc.c.
13956 (yytname_size): Remove, for consistency with yacc.c.
13957
13958 The bug still remains in data/lalr1.cc, as I didn't have time
13959 to fix it there.
13960
7548fed2
AD
139612003-02-06 Akim Demaille <akim@epita.fr>
13962
13963 * configure.ac (GXX): Rename as...
13964 (CXX): this, to keep the original Autoconf semantics.
13965 Require 2.57.
13966 * data/lalr1.cc: Fix b4_copyright invocations.
13967 If YYDEBUG is not defined, don't depend upon name_ being defined.
13968 (location.hh): Include string and iostream.
13969 (Position::filename): New member.
13970 (Position::Position ()): New.
13971 (operator<< (Position)): New.
13972 (operator- (Position, int)): New.
13973 (Location::first, Location::last): Rename as...
13974 (Location::begin, Location::end): these, to mock the conventional
13975 iterator names.
13976 (operator<< (Location)): New.
13977 * tests/atlocal.in (CXX): New.
13978 * tests/testsuite.at (AT_COMPILE_CXX): New.
13979 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
13980 locations in a more synthetic way.
13981 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
13982 lalr1.cc is used.
13983 Adjust the C locations to match those from Emacs: first column is
13984 column 0.
13985 Change all the expected results.
13986 Conform to the GCS: simplify the locations when applicable.
13987 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
13988 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
13989 these CPP macros with the m4 macros new defined by...
13990 (AT_CHECK_PUSHDEFS): this, i.e.:
13991 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 13992 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
13993 New macros.
13994 (AT_CHECK_POPDEFS): Undefine them.
13995 (AT_CHECK_CALC_LALR1_CC): New.
13996 Use it for the first lalr1.cc test.
13997
43a176ef
AD
139982003-02-04 Akim Demaille <akim@epita.fr>
13999
14000 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
14001 Location as is defined.
14002
fc049e9c
AD
140032003-02-04 Akim Demaille <akim@epita.fr>
14004
14005 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
14006 name_ being defined.
14007
a737b216
PE
140082003-02-03 Paul Eggert <eggert@twinsun.com>
14009
14010 * src/gram.h (start_symbol): Remove unused decl.
14011
14012 Use more-consistent naming conventions for local vars.
14013
14014 * src/derives.c (derives_compute): Change type of local var from
14015 int to rule_number.
14016 * src/gram.c (grammar_rules_partial_print): Likewise.
14017 * src/print.c (print_core): Likewise.
14018 * src/reduce.c (reduce_grammar_tables): Likewise.
14019
14020 * src/gram.c (grammar_dump): Change name of item_number *
14021 local var from r to rp.
14022 * src/nullable.c (nullable_compute): Likewise.
14023
14024 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
14025
14026 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
14027 for symbol or symbol_number var.
14028 * src/reader.c (grammar_start_symbol_set): Likewise.
14029 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
14030 Likewise.
14031 * src/state.c (transitions_to): Likewise.
14032 * src/state.h: Likewise.
14033 * src/tables.c (symbol_number_to_vector_number): Likewise.
14034
14035 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
14036 char * var.
14037
14038 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
14039 var.
14040
14041 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
14042 var.
14043
14044 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
14045 Use str, not s, for char * var. Use ch, not c, for character var.
14046 Use size for size var.
14047
14048 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
14049 char * var.
14050 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
14051 uniqstr var.
14052 * src/uniqstr.h: Likewise.
14053
14054 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14055 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14056 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
14057 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
14058 param to have same name as that of enum, so that we don't use
14059 "s" to stand for a non-state.
14060
68e93ad5
AD
140612003-02-02 Akim Demaille <akim@epita.fr>
14062
14063 * src/scan-skel.l: Scan more than one inert character per yylex
14064 invocation.
14065
92898986
PE
140662003-02-01 Paul Eggert <eggert@twinsun.com>
14067
14068 Version 1.875a.
14069
1d9d5d71
PE
14070 * po/LINGUAS: Add ms.
14071
0435d061
AD
140722003-01-30 Akim Demaille <akim@epita.fr>
14073
14074 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
14075
6029a57f
PH
140762003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14077
14078 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
14079 of $1.
0435d061
AD
14080
14081 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 14082 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 14083 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 14084
6029a57f
PH
14085 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
14086 (b4_rhs_location): Ditto.
0435d061 14087 (yyfill): New function to copy from stack tree into array
6029a57f 14088 incrementally.
0435d061
AD
14089 (yyuserAction): Modify to allow incremental move of semantic values
14090 to rhs array when in GLR mode.
14091 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
14092 as needed.
14093 Remove dummy use of yystack, as there is now a guaranteed use.
14094 (yydoAction): Modify to allow incremental move of semantic values
14095 to rhs array when in GLR mode.
14096 (yyresolveAction): Ditto.
14097 (yyglrShiftDefer): Update comment.
0435d061 14098 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
14099 (yyglrReduce): Ditto.
14100 (yydoAction): Ditto
0435d061 14101
6029a57f
PH
14102 * tests/glr-regr1.at: Rename to ...
14103 * tests/glr-regression.at: Add new regression test for the problems
14104 described above (adapted from S. Eken).
14105 Update copyright notice.
14106 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
14107 * tests/Makefile.am: Ditto.
14108
6cee6297
PE
141092003-01-28 Paul Eggert <eggert@twinsun.com>
14110
14111 * data/lalr1.cc: Do not use @output_header_name@ unless
14112 b4_defines_flag is set. This fixes two bugs reported by
14113 Tim Van Holder in
161a71f3
PE
14114 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
14115 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 14116
b2a836b5
PE
141172003-01-21 Paul Eggert <eggert@twinsun.com>
14118
14119 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
14120 we don't need to worry about yyerrlab1 being reported as an
14121 "unused label" by non-GCC C compilers. The downside is that if
14122 locations are used then a couple of statements are duplicated each
14123 time YYERROR is invoked, but the upside is that the warnings
14124 should vanish.
14125 (yyerrlab1): Move code to YERROR.
14126 (yyerrlab2): Remove. Change uses back to yyerrlab1.
14127 This reverts some of the 2002-12-27 change.
14128
4196b931
PE
141292003-01-17 Paul Eggert <eggert@twinsun.com>
14130
14131 * src/output.c (symbol_printers_output): Fix typo that led
14132 to core dump. Problem reported by Antonio Rus in
161a71f3 14133 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 14134
3ae831b4
AD
141352003-01-13 Akim Demaille <akim@epita.fr>,
14136 Quoc Peyrot <chojin@lrde.epita.fr>,
14137 Robert Anisko <anisko_r@lrde.epita.fr>
14138
14139 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
14140 when the stacks contain one element, as the loop would otherwise
14141 free the last state, and then use the top state (the one we just
14142 popped). This means that the initial elements will not be freed
14143 explicitly, as is the case in yacc.c; it is not a problem, as
14144 these elements have fake values.
14145
e3aa65c5
PE
141462003-01-11 Paul Eggert <eggert@twinsun.com>
14147
14148 * NEWS: %expect-violations are now just warnings, reverting
14149 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
14150 bootstrapping problem reported by Matthias Klose; see
161a71f3 14151 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
14152 * src/conflicts.c (conflicts_print): Likewise.
14153 * tests/conflicts.at (%expect not enough, %expect too much,
14154 %expect with reduce conflicts): Likewise.
14155 * doc/bison.texinfo (Expect Decl): Document this. Also mention
14156 that the warning is enabled if the number of conflicts changes
14157 (not necessarily increases).
14158
14159 * src/getargs.c (version): Update copyright year.
14160
f0057011
AD
141612003-01-09 Akim Demaille <akim@epita.fr>
14162
14163 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
14164
1ee6d2a0
PE
141652003-01-08 Paul Eggert <eggert@twinsun.com>
14166
14167 * Makefile.maint (WGETFLAGS):
14168 New macro, containing "-C off" to disable proxy caches.
14169 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
14170 (rel-check): Use $(WGET) instead of wget.
14171
d4fd77c4
PE
141722003-01-06 Paul Eggert <eggert@twinsun.com>
14173
14174 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
14175 the GLR paper of Scott, Johnstone and Hussain.
14176
464c6927
PE
141772003-01-04 Paul Eggert <eggert@twinsun.com>
14178
d600ee67
PE
14179 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
14180 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
14181 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
14182 (EXTRA_LIBRARIES): New var, for liby.a.
14183 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
14184 (EXTRA_SCRIPTS): New var, for yacc.
14185
464c6927
PE
14186 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
14187 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
14188 Problem reported by Nelson H. F. Beebe.
14189
141902003-01-03 Paul Eggert <eggert@twinsun.com>
14191
14192 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
14193 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
14194 when compiling Bison 1.875's `bitset bset = obstack_alloc
14195 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
14196
14197 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
14198 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
14199 grow to a huge size with typical invocation.
d600ee67 14200
464c6927
PE
14201 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
14202 Use the pattern recommended by Autoconf 2.57, except also protect
14203 against double-definition.
14204 * src/system.h: Likewise.
14205 Portability issues reported by Nelson H. F. Beebe.
d600ee67 14206
464c6927
PE
14207 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
14208 All uses changed. Provide a definition in both C and C++.
14209 (yytrue, yyfalse): Define even if defined (__cplusplus).
14210
14211 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
14212 Reported by Nelson H. F. Beebe.
d600ee67 14213
464c6927
PE
14214 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
14215
0f42c7d5
PE
142162003-01-02 Paul Eggert <eggert@twinsun.com>
14217
14218 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
14219 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
14220 Bug reported by Nelson H. F. Beebe.
14221
dc546b0f
PE
142222003-01-01 Paul Eggert <eggert@twinsun.com>
14223
14224 * Version 1.875.
14225
2c09b6a7
PE
142262002-12-30 Paul Eggert <eggert@twinsun.com>
14227
14228 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
14229 Moved here from...
14230 (<INITIAL>","): Here. This causes stray "," to be treated
14231 more uniformly.
14232
dc546b0f 14233 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
14234 last brace in braced code when not in Yacc mode, for compatibility
14235 with Bison 1.35. This resurrects the 2001-12-15 patch to
14236 src/reader.c.
14237
14238 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
14239 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
14240
535c0f63
PE
142412002-12-28 Paul Eggert <eggert@twinsun.com>
14242
14243 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
14244 that of SYM's type. This fixes Debian bug 168069, reported by
14245 Thomas Olsson.
d600ee67 14246
963fcc17
PE
142472002-12-28 Paul Eggert <eggert@twinsun.com>
14248
14249 Version 1.75f.
14250
14251 Switch back to the Yacc style of conflict reports, undoing some
14252 of the 2002-07-30 change.
14253 * doc/bison.texinfo (Understanding): Use Yacc style for
14254 conflict reports. Also, use new way of locating rules.
14255 * src/conflicts.c (conflict_report):
14256 Renamed from conflict_report_yacc, removing the old
14257 'conflict_report'. Translate the entire conflict report at once,
14258 so that we don't assume that "," has the same interpretation in
14259 all languages.
14260 (conflicts_output): Use Yacc-style conflict report for each state,
14261 instead of our more-complicated style.
14262 (conflicts_print): Use Yacc-style conflict report, except print
14263 the input file name when not emulating Yacc.
14264 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
14265 Conflicted Reduction, %expect not enough, %expect too much,
14266 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
14267 * tests/existing.at (GNU Cim Grammar): Likewise.
14268 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
14269
14270 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
14271 fatal): Don't invoke fflush; it's not needed and it might even be
14272 harmful for stdout, as stdout might not be open.
14273 * src/reduce.c (reduce_print): Likewise.
14274
b1efe548
PE
142752002-12-27 Paul Eggert <eggert@twinsun.com>
14276
14277 Fix a bug where error locations were not being recorded correctly.
14278 This problem was originally reported by Paul Hilfinger in
161a71f3 14279 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
14280
14281 * data/yacc.c (yyparse): New local var yylerrsp, to record the
14282 top of the location stack's error locations.
14283 (yyerrlab): Set it. When discarding a token, push its location
14284 onto yylerrsp so that we don't lose track of the error's end.
14285 (yyerrlab1): Now is only the target of YYERROR, so that we can
14286 properly record the location of the action that failed. For GCC
14287 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
14288 GCC warning about yyerrlab1 being unused if YYERROR is unused.
14289 (yyerrlab2): New label, which yyerrlab now falls through to.
14290 Compute the error's location by applying YYLLOC_DEFAULT to
14291 the locations of all the symbols that went into the error.
14292 * doc/bison.texinfo (Location Default Action): Mention that
14293 YYLLOC_DEFAULT is also invoked for syntax errors.
14294 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
14295 Error locations include the locations of all the tokens that were
14296 discarded, not just the last token.
d600ee67 14297
983c5c2c
PE
142982002-12-26 Paul Eggert <eggert@twinsun.com>
14299
b1efe548
PE
14300 * src/files.c: Include quote.h.
14301 (compute_output_file_names): Warn if we detect conflicting
14302 outputs to the same file. This should catch the misunderstanding
14303 exemplified by Debian Bug 165349, reported by Bruce Stephens..
14304
14305 * src/conflicts.c (conflicts_print): If the user specifies
14306 "%expect N", report an error if there are any reduce/reduce
14307 conflicts. This is what the manual says should happen.
14308 This fixes Debian bug 130890, reported by Anthony DeRobertis.
14309 * tests/conflicts.at (%expect with reduce conflicts): New test.
14310
983c5c2c
PE
14311 Don't use m4_include on relative file names, as it doesn't work as
14312 desired if there happens to be a file with that name under ".".
d600ee67 14313
983c5c2c
PE
14314 * m4sugar/version.m4: Remove; it was included but it wasn't used.
14315 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
14316 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
14317 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
14318 * src/output.c (output_skeleton): Use full path names when
14319 specifying a file to include; don't rely on include path, as
14320 it's unreliable when the working file contains a file with
14321 that name.
d600ee67 14322
983c5c2c
PE
143232002-12-25 Paul Eggert <eggert@twinsun.com>
14324
14325 Remove obsolete references to bison.simple and bison.hairy.
14326 Problem mentioned by Aubin Mahe in
161a71f3 14327 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
14328 * data/glr.c: Comment fix.
14329 * doc/bison.1: Remove references. Also, mention "yacc".
14330
14331 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
14332 with -g option.
14333
14334 * src/parse-gram.y (declaration): Use enum "report_states" rather
14335 than its numeric value 1.
14336
14337 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
14338 opening a new one. This fixes Debian bug 165349, reported by
14339 Bruce Stephens.
14340
23f2d9dc
PE
143412002-12-24 Paul Eggert <eggert@twinsun.com>
14342
14343 Version 1.75e.
14344
14345 * Makefile.maint (cvs-update): Don't assume that the shell
14346 supports $(...), as Solaris sh doesn't.
14347
14348 * src/parse-gram.y (lloc_default): Remove test for empty
14349 nonterminals at the end, since it didn't change the result.
14350
143512002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
14352
14353 If the user does not define YYSTYPE as a macro, Bison now declares it
14354 using typedef instead of defining it as a macro. POSIX requires this.
14355 For consistency, YYLTYPE is also declared instead of defined.
14356
14357 %union directives can now have a tag before the `{', e.g., the
14358 directive `%union foo {...}' now generates the C code
14359 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
14360 The default union tag is `YYSTYPE', for compatibility with Solaris 9
14361 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
14362 instead of `yyltype'.
14363
14364 `yystype' and `yyltype' are now obsolescent macros instead of being
14365 typedefs or tags; they are no longer documented and will be
14366 withdrawn in a future release.
14367
14368 * data/glr.c (b4_location_type): Remove.
14369 (YYSTYPE): Renamed from yystype.
14370 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
14371 (struct YYLTYPE): Renamed from struct yyltype.
14372 (YYLTYPE): Renamed from yyltype.
14373 (yyltype, yystype): New (and obsolescent) macros,
14374 for backward compatibility.
14375 * data/yacc.c: Likewise.
14376
14377 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
14378 does not specify a union tag. This is for compatibility with
14379 Solaris 9 yacc.
14380
14381 * src/parse-gram.y (add_param): 2nd arg is now char * not char
14382 const *, since it is now modified by stripping surrounding { }.
14383 (current_braced_code): Remove.
14384 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
14385 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
14386 trailing " {...}". Now of type <chars>.
14387 (grammar_declaration): Adjust to bundled tokens.
14388 (code_content): Remove; stripping is now done by add_param.
14389 (print_token_value): Print contents of bundled tokens.
14390 (token_name): New function.
14391
14392 * src/reader.h (braced_code, current_braced_code): Remove.
14393 (token_name): New decl.
14394
14395 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
14396 token_type, not braced_code code_kind. All uses changed.
14397 (SC_PRE_CODE): New state, for scanning after a keyword that
14398 has (or usually has) an immediately-following braced code.
14399 (token_type): New local var, to keep track of which token type
14400 to return when scanning braced code.
14401 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 14402 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
14403 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
14404 instead of returning a token type immediately.
14405 (<INITIAL>"{"): Set token type.
14406 (<SC_BRACED_CODE>"}"): Use it.
14407 (handle_action_dollar, handle_action_at): Now returns bool
14408 indicating success. Fail if ! current_rule; this prevents a core dump.
14409 (handle_symbol_code_dollar, handle_symbol_code_at):
14410 Remove; merge body into caller.
14411 (handle_dollar, handle_at): Complain in invalid contexts.
14412
14413 * NEWS, doc/bison.texinfo: Document the above.
14414 * NEWS: Fix years and program names in copyright notice.
14415
879ca4f8
PE
144162002-12-17 Paul Eggert <eggert@twinsun.com>
14417
14418 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
14419 Reporting, Table of Symbols): Omit mentions of %lex-param and
14420 %parse-param from the documentation for now.
14421
1c5fe69d
PE
144222002-12-15 Paul Eggert <eggert@twinsun.com>
14423
14424 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
14425 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
14426 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
14427 disagreed with the Bison documentation. Bug
14428 reported by Andrew Walrond.
d600ee67 14429
1c5fe69d
PE
14430 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
14431 as the caller now does that.
14432 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
14433 (YYEMPTY): Parenthesize right hand side, since others use it.
14434 (yyparse): Don't assume that our generated code is the only code
14435 that sets yychar.
14436
d1de5372
PE
144372002-12-13 Paul Eggert <eggert@twinsun.com>
14438
14439 Version 1.75d.
14440
14441 POSIX requires a "yacc" command.
14442 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
14443 (MOSTLYCLEANFILES): Add yacc.
14444 (yacc): New rule.
1c5fe69d 14445 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
14446 as an alias for bison y.
14447
14448 * po/LINGUAS: Add da.
d600ee67 14449
d1de5372
PE
14450 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
14451 problem with latest <getopt.h>.
14452 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
14453
14454 * doc/fdl.texi: Upgrade to 1.2.
14455 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
14456 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
14457 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
14458 gnulib.
14459 * config/install-sh: Sync with autotools.
14460
14461 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 14462 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
14463 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
14464 locations are requested.
14465 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
14466 locations are requested.
14467
d0f3fe23
PE
144682002-12-12 Paul Eggert <eggert@twinsun.com>
14469
14470 Remove unportable casts and storage allocation tricks.
14471 While we're at it, remove almost all casts, since they
14472 usually aren't needed and are a sign of trouble.
14473
14474 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
14475
14476 * src/derives.c (derives_compute): Do not subtract NTOKENS from
14477 the pointer DSET returned by malloc; this isn't portable.
14478 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
14479 Similarly for DERIVES.
14480 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
14481 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
14482 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
14483
14484 * src/derives.c (derives_compute): Do not bother invoking
14485 int_of_rule_number, since rule numbers are integers.
14486
14487 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
14488 rather than XMALLOC (char, N).
14489
14490 * src/files.c (filename_split): Rewrite to avoid cast.
14491
14492 * src/gram.h (symbol_number_as_item_number,
14493 item_number_as_symbol_number, rule_number_as_item_number,
14494 item_number_as_rule_number):
14495 Now inline functions rather than macros, to avoid casts.
14496 * src/state.h (state_number_as_int): Likewise.
14497 * src/tables.c (state_number_to_vector_number,
14498 symbol_number_to_vector_number): Likewise.
14499
14500 * src/gram.h (int_of_rule_number): Remove; no longer used.
14501
14502 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
14503 since the resulting storage is always stored into.
14504
14505 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
14506 where it's needed.
14507
14508 * src/muscle_tab.c (muscle_m4_output):
14509 Now inline. Return bool, not int.
14510 * src/state.c (state_compare): Likewise.
14511 * src/symtab.c (symbol_check_defined,
14512 symbol_check_alias_consistency, symbol_pack, symbol_translation,
14513 hash_compare_symbol, hash_symbol):
14514 Likewise.
14515 * src/uniqstr.c (uniqstr_print): Likewise.
14516 * src/muscle_tab.c (muscle_m4_output_processor):
14517 New function, to avoid casts.
14518 * src/state.c (state_comparator, stage_hasher): Likewise.
14519 * src/symtab.c (symbol_check_defined_processor,
14520 symbol_check_alias_consistency_processor, symbol_pack_processor,
14521 symbol_translation_processor, hash_symbol_comparator,
14522 hash_symbol_hasher): Likewise.
14523 * src/uniqstr.c (uniqstr_print_processor): Likewise.
14524 * src/muscle_tab.c (muscles_m4_output):
14525 Use new functions instead of casting old functions unportably.
14526 * src/state.c (state_hash_new): Likewise.
14527 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
14528 symbols_token_translations_init):
14529 Likewise.
14530 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
14531
14532 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
14533 var instead of casting to long, to avoid casts.
14534 (prepare_states): Use MALLOC rather than alloca, so that we don't
14535 have to worry about alloca.
14536 * src/state.c (state_hash_lookup): Likewise.
14537
14538 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
14539 local var instead of casting to unsigned char, to avoid casts.
14540
14541 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
14542 STATE_ALLOC): Remove.
14543 (transitions_new, errs_new, reductions_new, state_new): Use malloc
14544 rather than calloc, and use offsetof to avoid allocating slightly
14545 too much storage.
14546 (state_new): Initialize all members.
14547
14548 * src/state.c (state_hash): Use unsigned accumulator, not signed.
14549
14550 * src/symtab.c (symbol_free): Remove; unused.
14551 (symbol_get): Remove cast in lhs of assignment.
14552 (symbols_do): Now static. Accept generic arguments, not
14553 hashing-related ones.
14554
14555 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
14556 (symbol_processor): Remove.
14557 (symbols_do): Remove decl; now static.
14558
14559 * src/system.h (alloca): Remove; decl no longer needed.
14560 (<stddef.h>): Include, for offsetof.
14561 (<inttypes.>, <stdint.h>): Include if available.
14562 (uintptr_t): New type, if system lacks it.
14563 (CALLOC, MALLOC, REALLOC): New macros.
14564 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
14565 new macros.
14566
14567 * src/tables.c (table_size): Now int, to pacify GCC.
14568 (table_grow, table_ninf_remap): Use signed table size.
14569 (save_row): Don't bother initializing locals when not needed.
14570 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
14571 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
14572
14573 * src/vcg.h: Correct misspellings.
14574
14575 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
14576
14577
14578 * src/getargs.c (getargs): Don't assume EOF == -1.
14579
26b4a969
PE
145802002-12-09 Paul Eggert <eggert@twinsun.com>
14581
14582 Change identifier spellings to avoid collisions with names
14583 that are reserved by POSIX.
14584
14585 Don't use names ending in _t, since POSIX reserves them.
14586 For consistency, remove _e and _s endings -- they're weren't
14587 needed to remove ambiguity. All uses changed.
14588 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
14589 turn was just renamed from struniq_t.
14590 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
14591 which in turn was just renamed from struniq_processor_t.
14592 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
14593 in turn was renamed from hash_compare_struniq_t.
14594 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
14595 (state_list): Renamed from state_list_t.
14596 * src/assoc.h (assoc): Renamed from assoc_t.
14597 * src/conflicts.c (enum conflict_resolution): Renamed from
14598 enum conflict_resolution_e.
14599 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
14600 (rule_list): Renamed from rule_list_t.
14601 * src/getargs.h (enum trace): Renamed from enum trace_e.
14602 (enum report): Renamed from enum report_e.
14603 * src/gram.h (item_number): Renamed from item_number_t.
14604 (rule_number): Renamed from rule_number_t.
14605 (struct rule_s): Remove the "rule_s" part; not used.
14606 (rule): Renamed from rule_t.
14607 (rule_filter): Renamed from rule_filter_t.
14608 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
14609 (goto_list): Renamed from goto_list_t.
14610 * src/lalr.h (goto_number): Renamed from goto_number_t.
14611 * src/location.h (location): Renamed from location_t.
14612 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
14613 and moved here from:
14614 * src/muscle_tab.h (muscle_entry_t): here.
14615 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
14616 (rule_list): Renamed from rule_list_t.
14617 * src/print_graph.c (static_graph): Renamed from graph.
14618 * src/reader.h (braced_code): Renamed from braced_code_t.
14619 Remove brace_code_e tag.
14620 * src/relation.h (relation_node): Renamed from relation_node_t.
14621 (relation_nodes): Renamed from relation_nodes_t.
14622 (relation): Renamed from relation_t.
14623 * src/state.h (state_number): Renamed from state_number_t.
14624 (struct state): Renamed from struct state_s.
14625 (state): Renamed from state_t.
14626 (transitions): Renamed from transitions_t. Unused (and
14627 misspelled) transtion_s tag removed.
14628 (errs): Renamed from errs_t. Unused errs_s tag removed.
14629 (reductions): Renamed from reductions_t. Unused tag
14630 reductions_s removed.
14631 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
14632 (struct symbol_list): Renamed from struct symbol_list_s.
14633 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
14634 (struct symbol): Renamed from struct symbol_s.
14635 (symbol): Renamed from symbol_t.
14636 * src/tables.c (vector_number): Renamed from vector_number_t.
14637 (action_number): Renamed from action_t.
14638 * src/tables.h (base_number): Renamed from base_t.
14639 * src/vcg.h (enum color): Renamed from enum color_e.
14640 (enum textmode): Renamed from enum textmode_e.
14641 (enum shape): Renamed from enum shape_e.
14642 (struct colorentry): Renamed from struct colorentry_s.
14643 (struct classname): Renamed from struct classname_s.
14644 (struct infoname): Renamed from struct infoname_s.
14645 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
14646 (enum decision): Renamed from enum decision_e.
14647 (enum orientation): Renamed from enum orientation_e.
14648 (enum alignment): Renamed from enum alignment_e.
14649 (enum arrow_mode): Renamed from enum arrow_mode_e.
14650 (enum crossing_type): Renamed from enum crossing_type_e.
14651 (enum view): Renamed from enum view_e.
14652 (struct node): Renamed from struct node_s.
14653 (node): Renamed from node_t.
14654 (enum linestyle): Renamed from enum linestyle_e.
14655 (enum arrowstyle): Renamed from enum arrowstyle_e.
14656 (struct edge): Renamed from struct edge.
14657 (edge): Renamed from edge_t.
14658 (struct graph): Renamed from struct graph_s.
14659 (graph): Renamed from graph_t.
14660 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
14661 Rename value_t -> value.
14662 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
14663 value_t_as_yystype -> value_as_yystype.
14664
14665 Don't include <errno.h> in the mainstream code, since it
14666 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
14667 * lib/get-errno.c, lib/get-errno.h: New files.
14668 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
14669 get-errno.c.
14670 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
14671 * src/output.c (output_skeleton): Likewise.
14672 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
14673 instead of errno.
14674 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
14675 Likewise.
14676 (handle_action_dollar, handle_action_at): Likewise.
14677 * src/system.h: Do not include <errno.h>.
14678 (TAB_EXT): Renamed from EXT_TAB.
14679 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
14680
14681 Avoid str[a-z]*, since <string.h> reserves that name space.
14682 Change all instances of "struniq" in names to "uniqstr", and
14683 likewise for "STRUNIQ" and "UNIQSTR".
14684 * src/uniqstr.c: Renamed from src/struniq.c.
14685 * src/uniqstr.h: Renamed from src/struniq.h.
14686 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
14687 * src/files.c (strsuffix): Remove; unused.
14688 (concat2): Renamed from stringappend. Now static.
14689 * src/files.h (strsuffix, stringappend): Remove; unused.
14690 * src/parse-gram.y (<chars>): Renamed from <string>.
14691 (<uniqstr>): Renamed from <struniq>.
14692 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
14693 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
14694 (struct graph_s.expand): Renamed from struct graph_s.stretch.
14695 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
14696 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
14697 (N_EXPAND): Renamed from N_STRETCH.
14698
14699 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
14700 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
14701 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
14702 Remove; unused.
14703 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
14704 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
14705 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
14706 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
14707 (BASE_MAXIMUM): Renamed from BASE_MAX.
14708 (BASE_MINIMUM): Renamed from BASE_MIN.
14709 (ACTION_MAX): Remove; unused.
14710 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
14711 Unnecessary casts removed from above defines.
14712
14713
14714 Fix misspelling in names.
14715 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
14716 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
14717 G_NODE_ALIGNEMENT.
14718
14719
14720 * lib/timevar.c (timevar_report): Renamed from time_report,
14721 for consistency with other names.
14722 * lib/timevar.h (timevar_report): New decl.
14723 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
14724
14725
14726 Sort include-file uses.
14727
14728 Reorder all include files under src to be in the order "system.h".
14729 then the ../lib include files in angle brackets (alphabetized),
14730 then the . include files in double-quotes (alphabetized). Fix
14731 dependency breakages encountered in this process, as follows:
14732 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
14733 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
14734 * src/state.h: Include "symtab.h".
14735
996b1c7e
PE
147362002-12-08 Paul Eggert <eggert@twinsun.com>
14737
14738 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
14739 since this causes problems when __file__ contains character
14740 sequences like "@" that are treated specially by src/scan-skel.l.
14741 Instead, just use the file's basename. This fixes the bug
14742 reported by Martin Mokrejs in
161a71f3 14743 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 14744
e19c4e5d
PE
147452002-12-06 Paul Eggert <eggert@twinsun.com>
14746
14747 Add support for rules that do not have trailing semicolons, as
14748 POSIX requires. Improve the quality of locations in Bison
14749 diagnostics.
26b4a969 14750
e19c4e5d
PE
14751 * src/location.c: Include <quotearg.h>.
14752 (empty_location): Now const.
14753 (location_print): New function. Follow the recommendation of the
14754 GNU Coding Standards for locations that span file boundaries.
14755 * src/location.h: Do not include <quotearg.h>; no longer needed.
14756 (boundary): New type.
14757 (location_t): Use it. This allows locations to span file boundaries.
14758 All member uses changed: file -> start.file or end.file (as needed),
14759 first_line -> start.line, first_column -> start.column,
14760 last_line -> end.line, last_column -> end.column.
14761 (equal_boundaries): New function.
14762 (LOCATION_RESET, LOCATION_STEP): Remove.
14763 (LOCATION_PRINT): Remove. All callers changed to use location_print.
14764 (empty_location): Now const.
14765 (location_print): New decl.
14766 * src/parse-gram.y (lloc_default): New function, which handles
14767 empty locations more accurately.
14768 (YYLLOC_DEFAULT): Use it.
14769 (%token COLON): Remove.
14770 (%token ID_COLON): New token.
26b4a969 14771 (rules): Use it.
e19c4e5d
PE
14772 (declarations, rules): Remove trailing semicolon.
14773 (declaration, rules_or_grammar_declaration):
14774 Allow empty (";") declaration.
14775 (symbol_def): Remove empty actions; no longer needed.
14776 (rules_or_grammar_declaration): Remove trailing semicolon.
14777 (semi_colon.opt): Remove.
14778 * src/reader.h: Include location.h.
14779 (scanner_cursor): New decl.
14780 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
14781 rolling our own.
14782 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
14783 of *loc.
14784 (STEP): Remove. No longer needed, now that adjust_location does
14785 the work. All uses removed.
14786 (scanner_cursor): New var.
14787 (adjust_location): Renamed from extend_location. It now sets
14788 *loc and adjusts the scanner cursor. All uses changed.
14789 Don't bother testing for CR.
14790 (handle_syncline): Remove location arg; now updates scanner cursor.
14791 All callers changed.
14792 (unexpected_end_of_file): Now accepts start boundary of token or
14793 comment, not location. All callers changed. Update scanner cursor,
14794 not the location.
14795 (SC_AFTER_IDENTIFIER): New state.
14796 (context_state): Renamed from c_context. All uses changed.
14797 (id_loc, code_start, token_start): New local vars.
14798 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
14799 processing of Yacc white space and equivalents here.
14800 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
14801 instead of returning ID immediately, since we need to search for
14802 a subsequent colon.
14803 (<INITIAL>"'", "\""): Save token_start.
14804 (<INITIAL>"%{", "{", "%%"): Save code_start.
14805 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
14806 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
14807 BEGIN context_state at end, not INITIAL.
14808 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
14809 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
14810 Return correct token start.
14811 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
14812 the start of a character, string or multiline comment is found.
14813 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
14814 Reduction): Adjust reported locations to match the more-precise
14815 results now expected.
14816 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
14817 * tests/reduce.at (Useless Rules, Reduced Automaton,
14818 Underivable Rules): Likewise.
14819 * tests/regression.at (Invalid inputs): No longer `expecting ";"
14820 or "|"' now that so many other tokens are allowed by the new grammar.
14821
14822 * src/complain.h (current_file): Remove duplicate decl;
14823 current_file is now owned by files.h.
14824 * src/complain.c, src/scan-gram.l: Include files.h.
14825
148262002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 14827
e19c4e5d
PE
14828 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
14829 promotes to int; it might be unsigned int.
14830 * data/yacc.c (yy_reduce_print): Likewise.
14831
14832 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
14833 be #defined in the prologue, not in the Bison declarations.
14834 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 14835
b64755e3
PE
148362002-12-02 Paul Eggert <eggert@twinsun.com>
14837
14838 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
14839 * lib/strtoul.c: New file, from gnulib.
14840 This fixes a porting bug reported by Peter Klein in
161a71f3 14841 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 14842
6e746484
PE
148432002-11-30 Paul Eggert <eggert@twinsun.com>
14844
b64755e3
PE
14845 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
14846 and put only a forward declaration in the prologue. This is for
14847 consistency with the other scanner helper functions.
14848
6ba55592
PE
14849 Type clashes now generate warnings, not errors, since it
14850 appears that POSIX may allow some grammars with type clashes.
14851 * src/reader.c (grammar_current_rule_check): Warn about
14852 type clashes instead of complaining.
14853 * tests/input.at (Type Clashes): Expect warnings, not complaints.
14854
6e746484
PE
14855 Add Yacc library, since POSIX requires it.
14856 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
14857 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
14858 * lib/main.c, lib/yyerror.c: New files.
14859
14860 gram_error can be static; it need not be extern.
14861 * src/reader.h (gram_error): Remove decl.
14862 * src/parse-gram.y (gram_error): Now static. Add static decl.
14863 (print_token_value): Omit parameter names from forward decl,
14864 for consistency.
14865
88510f9c
PE
148662002-11-29 Paul Eggert <eggert@twinsun.com>
14867
6e746484
PE
14868 * doc/bison.texinfo: Emphasize that yylex and yyerror must
14869 be declared before being used. E.g., one should typically
14870 declare them in the prologue. Use GNU coding style in examples.
14871 Put "const" consistently after the type it modifies. Mention
14872 that C99 supports "inline". Mention that yyerror traditionally
14873 returns "int".
14874
88510f9c
PE
14875 %parse-param and %lex-param now take just one argument, the
14876 declaration; the argument name is deduced from the declaration.
14877
14878 * doc/bison.texinfo (Parser Function, Pure Calling, Error
14879 Reporting, Table of Symbols): Document this.
14880 * src/parse-gram.y (add_param): New function.
14881 (COMMA): Remove.
14882 (declaration): Implement new rule for %parse-param and %lex-param.
14883 * src/scan-gram.l: "," now elicits a warning, rather than being
14884 a token; this is more compatible with byacc.
14885 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
14886
bb92250c
PE
148872002-11-27 Paul Eggert <eggert@twinsun.com>
14888
14889 Rename identifiers to avoid real and potential collisions.
14890
14891 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
14892 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 14893 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
14894 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
14895 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
14896 * src/parse-gram.y (print_token_value): Renamed from yyprint.
14897 All uses changed.
14898 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
14899 The name "yycontrol" violates the name space rules, and this stuff
14900 wasn't being used anyway.
14901 (input): Remove action; this stuff wasn't being used.
14902 (gram_error): Rename local variable yylloc -> loc.
14903 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
14904 (YY_DECL): Don't use "yy" at start of local variables.
14905 All uses changed, e.g., yylloc -> loc.
14906 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
14907 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
14908 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
14909 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
14910
14911 * src/parse-gram.y (gram_error): loc is now const *.
14912 * src/reader.h (gram_error): Likewise.
14913
3af4feb2
PE
149142002-11-24 Paul Eggert <eggert@twinsun.com>
14915
14916 Version 1.75c.
14917
14918 * tests/actions.at (Actions after errors): Use an output format
14919 more similar to that of the Printers and Destructors test.
14920 Test the position of the ';' token too.
14921 (Printers and Destructors): Likewise.
14922 (Printers and Destructors: %glr-parser): Remove for now, to avoid
14923 unnecessarily alarming people when the test fails.
14924
14925 * data/yacc.c (yyerrlab1): Move this label down, so that the
14926 parser does not discard the lookahead token if the user code
14927 invokes YYERROR. This change is required for POSIX conformance.
14928
14929 * lib/error.c: Sync with gnulib.
14930
149312002-11-22 Paul Eggert <eggert@twinsun.com>
14932
14933 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
14934 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
14935 * lib/xmalloc.c: Likewise.
26b4a969 14936
58004308
PE
149372002-11-20 Paul Eggert <eggert@twinsun.com>
14938
14939 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
14940
149412002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 14942
58004308
PE
14943 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
14944 should use `if (! x) abort ();' rather than `assert (x);', and
14945 anyway it's one less thing to worry about configuring.
14946
14947 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
14948 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
14949 and replace all instances of assert with abort.
14950 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
14951 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
14952
14953 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
14954 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
14955 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
14956 hash_find_entry, hash_rehash, hash_insert): Likewise.
14957 * src/conflicts.c (resolve_sr_conflict): Likewise.
14958 * src/lalr.c (set_goto_map, map_goto): Likewise.
14959 * src/nullable.c (nullable_compute): Likewise.
14960 * src/output.c (prepare_rules, token_definitions_output): Likewise.
14961 * src/reader.c (packgram, reader): Likewise.
14962 * src/state.c (state_new, state_free, state_transitions_set,
14963 state_reduction_find): Likewise.
14964 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
14965 symbol_pack): Likewise.
14966 * src/tables.c (conflict_row, pack_vector): Likewise.
14967 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14968 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14969 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
14970 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
14971
14972 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
14973 (ARGMATCH_CONSTRAINT): New macro.
14974 (ARGMATCH_ASSERT): Use it.
14975
14976 * src/system.h (verify): New macro.
14977 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
14978 rather than assert.
14979 * src/tables.c (tables_generate): Likewise.
14980
14981 * src/struniq.c (struniq_assert): Now returns void, and aborts
14982 if the assertion is false.
14983 (struniq_assert_p): Remove.
14984 * src/struniq.h: Likewise.
14985
76ae8198
PE
149862002-11-18 Paul Eggert <eggert@twinsun.com>
14987
14988 * data/glr.c (yygetLRActions): Replace `yyindex' with
14989 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
14990 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 14991 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 14992
d3c4e709
AD
149932002-11-18 Akim Demaille <akim@epita.fr>
14994
14995 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
14996 space.
14997 From Tim Van Holder.
14998
8d8a7238
PE
149992002-11-17 Paul Eggert <eggert@twinsun.com>
15000
15001 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
15002 to "SyntaxError" for consistency with my 2002-11-15 change.
15003
15004 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
15005 not define to {}, since this breaks the common use of `YYDPRINTF
15006 ((...));' if a single statement is desired (e.g. before `else').
15007 Work around GCC warnings by surrounding corresponding calls with
15008 {} if needed.
15009 (yyhasResolvedValue): Remove unused function.
15010 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
15011 loop body.
15012 (yyreportSyntaxError): Renamed from yyreportParseError.
15013 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
15014 All uses changed.
15015 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
15016 extern when possible. Remove unused initializations.
15017
b0937b22
AD
150182002-11-16 Akim Demaille <akim@epita.fr>
15019
15020 Augment the similarity between GLR and LALR traces.
15021
15022 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
15023 (YY_REDUCE_PRINT): New.
15024 (yyparse): Use them.
15025 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
15026 YYDPRINT here.
15027 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
15028 state reached after the reduction/recovery, since...
15029 (yyparse, yyprocessOneStack): Report the state we are entering in.
15030
c5e3e510
AD
150312002-11-16 Akim Demaille <akim@epita.fr>
15032
15033 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
15034 Add support for --trace=skeleton.
15035 * src/scan-skel.l: %option debug.
15036 Scan strings of non-@ or \n instead of character by character.
15037 (scan_skel): Handle trace_skeleton.
15038 (QPUTS): New.
15039 (@output_parser_name@, @output_header_name@): ``Restore'' their
15040 support (used to be M4 macros).
15041 * data/yacc.c: Quote larger chunks, a la glr.c.
15042 * data/lalr1.cc: Likewise.
15043 The header guards are no longer available, so use some other
15044 string than `YYLSP_NEEDED'.
15045
4c6cc1db
AD
150462002-11-16 Akim Demaille <akim@epita.fr>
15047
15048 Make the ``Printers and Destructors'' test more verbose, taking
15049 `yacc.c''s behavior as (possibly wrong) reference.
15050
15051 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
15052 instead of fprint on stdout.
15053 Set and report the last_line of the symbols.
15054 Consistently display values and locations.
15055
6d9e8019
PE
150562002-11-16 Paul Eggert <eggert@twinsun.com>
15057
15058 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
15059
6e649e65
PE
150602002-11-15 Paul Eggert <eggert@twinsun.com>
15061
b25d88f6
PE
15062 * tests/actions.at (Actions after errors): New test case.
15063
6e649e65
PE
15064 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
15065 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
15066 tests/action.at, tests/calc.at, tests/conflicts.at,
15067 tests/cxx-type.at, tests/regression.at:
15068 "parse error" -> "syntax error" for POSIX compatibility.
15069 "parsing stack overflow..." -> "parser stack overflow" so
15070 that code matches Bison documentation.
15071
0f39aab9
AD
150722002-11-15 Akim Demaille <akim@epita.fr>
15073
15074 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
15075 take two BRACED_CODE, not two string_content.
15076 Free the scanner's obstack when we are done.
15077 (code_content): New.
15078 * tests/calc.at: Adjust.
15079 * doc/bison.texinfo: Adjust.
15080 Also, make sure to include the `,' for these declarations.
15081
761c1926
AD
150822002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
15083
15084 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
15085 definition; avoids potential autoreconf problems.
15086
b0f98b10
AD
150872002-11-15 Akim Demaille <akim@epita.fr>
15088
15089 Always check the value returned by yyparse.
15090
15091 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
15092 returned by yyparse.
15093 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
15094 Adjust calls.
15095 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
15096 returned by yyparse.
15097
970785f1
PH
150982002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15099
15100 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
15101 on input.at test.
15102
8fcc7db1
PE
151032002-11-14 Paul Eggert <eggert@twinsun.com>
15104
7ec1b48e
PE
15105 * src/output.c (output_skeleton): Call xfopen instead of
15106 duplicating xfopen's body.
15107
cfff7583 15108 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 15109 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 15110
8fcc7db1
PE
15111 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
15112 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
15113 Group compiler. Instead, use "$CC -E bar.c". Include the .h
15114 file twice in the grammar, as an extra check.
15115
15116 * tests/input.at (Torturing the Scanner): Surround the
15117 backslash-newline tests with "#if 0", to make it less likely that
15118 we'll run into compiler bugs. Bring back solitary \ inside
15119 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 15120 test backslash-newline in C character constant.
8fcc7db1 15121
4e8d992c
AD
151222002-11-14 Akim Demaille <akim@epita.fr>
15123
15124 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
15125 status of the compiler.
f32b346d 15126 Calling `exit 1' is no longer needed.
4e8d992c
AD
15127 Reported by Nelson H. F. Beebe.
15128
9501dc6e
AD
151292002-11-14 Akim Demaille <akim@epita.fr>
15130
15131 * tests/atlocal.in (CPPFLAGS): We have config.h.
15132 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
15133 New.
15134 * tests/actions.at, tests/calc.at, tests/conflicts.at,
15135 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
15136 * tests/regression.at, tests/torture.at: Use them for all the
15137 grammars that are to be compiled.
15138 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
15139 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
15140 * doc/bison.texinfo (GLR Parsers): Document `inline'.
15141
18b519c0
AD
151422002-11-14 Akim Demaille <akim@epita.fr>
15143
15144 * doc/bison.texinfo: Various formatting changes (alignments in
15145 samples, additional @group/@end group, GCS in samples.
15146 Use @deffn instead of simple @table to define the directives,
15147 macros, variables etc.
15148
9a86cdb9
PE
151492002-11-13 Paul Eggert <eggert@twinsun.com>
15150
daa33def 15151 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 15152 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 15153
daa33def 15154 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 15155 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
15156 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
15157 * tests/headers.at (export YYLTYPE): Likewise.
15158
15159 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 15160 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 15161
9a86cdb9
PE
15162 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
15163 comments, since they're not portable. Use GNU coding style.
15164
9c1e26bd
AD
151652002-11-13 Akim Demaille <akim@epita.fr>
15166
15167 * data/yacc.c: Leave bigger chunks of quoted text.
15168 (YYDSYMPRINTF): New.
15169 Use it to report symbol activities.
15170 * data/glr.c (YYDSYMPRINTF): New.
15171 Use it.
15172
87f721cc
PE
151732002-11-12 Paul Eggert <eggert@twinsun.com>
15174
15175 Version 1.75b.
15176
15177 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
15178 (yyglrReduce): Return yyok, not 0.
15179 This should avoid the enumerated-type warnings reported
464c6927 15180 by Nelson H. F. Beebe in
161a71f3 15181 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
15182
15183 * lib/bbitset.h (BITSET_INLINE): Remove.
15184 * lib/bitset.h [! BITSET_INLINE]: Remove.
15185 (bitset_set, bitset_reset, bitset_test): Rename local vars
15186 to avoid shadowing warnings by GCC.
15187
15188 * data/glr.c (inline): Remove #define. It's the user's
15189 responsibility to #define it away, just like 'const'.
464c6927 15190 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 15191 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 15192
87f721cc
PE
15193 * Makefile.maint (po-check): Scan .l and .y files instead of the
15194 .c and the .h files that they generate. This fixes the bug
15195 reported by Tim Van Holder in:
161a71f3 15196 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
15197 Look for N_ as well as for _. Try to avoid matching #define for
15198 N_ and _.
15199 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
15200 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
15201 * src/scan-gram.l: Revamp regular expressions so that " and '
15202 do not confuse xgettext.
15203
15204 * src/struniq.h (struniq_new): Do not declare the return type
15205 to be 'const'; this violates the C standard.
15206 * src/struniq.c (struniq_new): Likewise.
15207
be14ade5
AD
152082002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
15209
15210 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
15211 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
15212 linker.
15213
05291fbc
AD
152142002-11-12 Akim Demaille <akim@epita.fr>
15215
15216 * Makefile.maint: Sync with Autoconf:
15217 (local_updates): New.
15218
1f5fd52e
AD
152192002-11-12 Akim Demaille <akim@epita.fr>
15220
15221 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
15222
283f1e64
AD
152232002-11-12 Akim Demaille <akim@epita.fr>
15224
15225 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
15226 locations.
15227
886b69d1
AD
152282002-11-12 Akim Demaille <akim@epita.fr>
15229
15230 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
15231 not yyvalue.
15232
3df37415
AD
152332002-11-12 Akim Demaille <akim@epita.fr>
15234
15235 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
15236 Use it to test the GLR parser.
15237
7bd6c77e
AD
152382002-11-12 Akim Demaille <akim@epita.fr>
15239
15240 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
15241 defines it.
15242 * data/glr.c (yystos): New.
15243 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
15244 (YYDSYMPRINT): New.
15245 (yyval): Don't define it, it is handled via M4.
15246 (yyrecoverParseError): Free verbosely the discarded symbols.
15247 * data/yacc.c (yysymprint): Remove, rather...
15248 (b4_yysymprint_generate): invoke.
15249 * data/c.m4 (b4_yysymprint_generate): New.
15250 Accept pointers as arguments, as opposed to the version from
15251 yacc.c.
15252 (b4_yydestruct_generate): Likewise.
15253 * tests/cations.at (Printers and Destructors): Use Bison directives
15254 instead of CPP macros.
15255 Don't rely on internal details.
15256
b0400cc6
AD
152572002-11-12 Akim Demaille <akim@epita.fr>
15258
15259 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
15260 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
15261 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
15262 it against YYEMPTY and so forth), work on yytoken (i.e., set
15263 it to YYEMPTY etc.).
15264 (yydestruct): Replace with a b4_yydestruct_generate invocation.
15265 (b4_symbol_actions): Remove.
15266 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
15267 for 0, end-of-input.
15268
72f889cc
AD
152692002-11-12 Akim Demaille <akim@epita.fr>
15270
15271 * doc/bison.texinfo (Destructor Decl): New.
15272
b1ae9233
AD
152732002-11-12 Akim Demaille <akim@epita.fr>
15274
15275 * src/tables.c (tables_generate): Use free for pointers that
15276 cannot be NULL, not XFREE.
15277 (pack_vector): Use assert, not fatal, for bound violations.
15278 * src/state.c (state_new): Likewise.
15279 * src/reader.c (reader): Likewise.
15280 * src/lalr.c (set_goto_map): Likewise.
72f889cc 15281 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
15282 the file name.
15283
7ec2d4cd
AD
152842002-11-12 Akim Demaille <akim@epita.fr>
15285
15286 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
15287 Restore.
15288 * src/scan-gram.l (last_string): Is global to the file, not to
15289 yylex.
15290 * src/parse-gram.y (input): Don't append the epilogue here,
15291 (epilogue.opt): do it here, and free the scanner's obstack.
15292 * src/reader.c (epilogue_set): Rename as...
15293 (epilogue_augment): this.
15294 * data/c.m4 (b4_epilogue): Defaults to empty.
15295
573a6cd3
AD
152962002-11-12 Akim Demaille <akim@epita.fr>
15297
15298 * src/getargs.c (long_options): Remove duplicates.
15299 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
15300 Remove.
15301 * doc/bison.rnh: Remove.
15302 * doc/bison.texinfo (VMS Invocation): Remove.
15303
95612cfa
AD
153042002-11-12 Akim Demaille <akim@epita.fr>
15305
15306 * src/struniq.h, src/struniq.c (struniq_t): Is const.
15307 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
15308
15309 Use struniq for symbols.
15310
15311 * src/symtab.h (symbol_t): The tag member is a struniq.
15312 (symbol_type_set): Adjust.
15313 * src/symtab.c (symbol_new): Takes a struniq.
15314 (symbol_free): Don't free the tag member.
15315 (hash_compare_symbol_t, hash_symbol_t): Rename as...
15316 (hash_compare_symbol, hash_symbol): these.
15317 Use the fact that tags as struniqs.
15318 (symbol_get): Use struniq_new.
15319 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
15320 Returns a strniq.
15321 * src/reader.h (merger_list, grammar_currentmerge_set): The name
15322 and type members are struniqs.
15323 * src/reader.c (get_merge_function)
15324 (grammar_current_rule_merge_set): Adjust.
15325 (TYPE, current_type): Are struniq.
15326
15327 Use struniq for file names.
15328
15329 * src/files.h, src/files.c (infile): Split into...
15330 (grammar_file, current_file): these.
15331 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
15332 * src/reduce.c (reduce_print): Likewise.
15333 * src/getargs.c (getargs): Likewise.
15334 * src/complain.h, src/complain.c: Likewise.
15335 * src/main.c (main): Call struniqs_new early enough to use it for
15336 file names.
15337 Don't free the input file name.
15338
3e6656f9
AD
153392002-11-12 Akim Demaille <akim@epita.fr>
15340
15341 * src/symtab.c (symbol_free): Remove dead deactivated code:
15342 type_name are properly removed.
15343 Don't use XFREE to free items that cannot be NULL.
15344 * src/struniq.h, src/struniq.c: New.
15345 * src/main.c (main): Initialize/free struniqs.
15346 * src/parse-gram.y (%union): Add astruniq member.
15347 (yyprint): Adjust.
15348 * src/scan-gram.l (<{tag}>): Return a struniq.
15349 Free the obstack bit that used to store it.
15350 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
15351
7672019c
PE
153522002-11-11 Paul Eggert <eggert@twinsun.com>
15353
15354 Revamp to fix many (but not all) of the C- and M4-related quoting
15355 problems. Among other things, this fixes the Bison bug reported
15356 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 15357 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
15358
15359 Use new @ escapes consistently. Represent brackets with @{ and @}
15360 rather than @<:@ and @:>@, since this works a bit better with dumb
15361 editors like vi. Represent @ with @@, since @ is now consistently
15362 an escape. Use @oline@ and @ofile@ rather than __oline__ and
15363 __ofile__, to avoid unexpected expansions. Similarly, use @output
15364 rather than #output.
15365
15366 * data/c.m4 (b4_copyright): Omit file name from comment, since
15367 the file name could contain "*/".
15368 (b4_synclines_flag): Don't quote the 2nd argument; it should already
15369 be quoted. All uses changed.
15370
15371 * data/glr.c: Use new @ escapes consistently.
15372 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
15373 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
15374 Remove, since they couldn't handle arbitrary characters in file
15375 names.
15376 * data/lalr1.cc: Likewise.
15377 * data/yacc.c: Likewise.
15378
15379 * src/files.c (output_infix): Remove; all uses removed.
15380 * src/files.h: Likewise.
15381
15382 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
15383 mishandled funny characters in file names, and anyway it isn't
15384 needed any more.
15385 * data/yacc.c: Likewise.
15386 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
15387
15388 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
15389 * data/yacc.c: Likewise.
15390
15391 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
15392 strings now.
15393 (muscle_init): Quote filename as a C string.
15394 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
15395 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
15396 * src/output.c (escaped_file_name_output): New function.
15397 (prepare_symbols): Quote tokens for M4.
15398 (prepare): Don't insert output_infix, output_prefix,
15399 output_parser_name, output_header_name; this is now down by scan-skel.
15400 Insert skeleton as a C string.
15401
15402 * src/output.c (user_actions_output, symbol_destructors_output,
15403 symbol_printers_output): Quote filenames for C and M4.
15404 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15405
15406 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
15407 escapes other than \\ and \'; this simplifies the code.
15408 (<SC_STRING>): Likewise, for \\ and \".
15409 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
15410 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
15411 Use new escapes @{ and @} for [ and ].
15412
15413 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
15414 them with auto vars.
15415 Switch to new escape scheme, where @ is the escape character uniformly.
15416 Abort if a stray escape character is found. Avoid unbounded input
15417 buffer when parsing non-escaped text.
15418
15419 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
15420 __oline__, #output, $@, and @{ do not have unintended meanings.
15421
acea4f3b
PE
154222002-11-09 Paul Eggert <eggert@twinsun.com>
15423
15424 Fix the test failure due to GCC warnings described in
161a71f3 15425 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
15426 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
15427 evaluate to 0 if it's impossible for NINF to be in the respective
15428 table.
15429 (yygetLRActions, yyrecoverParseError): Use them.
15430
15431 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
15432 counted in the token inserted at end of file. Now takes
15433 location_t *, not location_t, so that the location can be
15434 adjusted. All uses changed.
15435
15436 * tests/regression.at (Invalid inputs): Adjust wording in
15437 diagnostic to match the new behavior.
15438
15439 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
15440 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
15441 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
15442 abort ();'. This reduces the runtime of the "Many lookaheads"
15443 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
15444 GCC 3.2.
15445
20ef1ad5
PE
154462002-11-07 Paul Eggert <eggert@twinsun.com>
15447
15448 * src/parse-gram.y (CHARACTER): Remove unused token.
15449 All uses removed.
15450
15451 * src/scan-gram.l: Remove stack option. We no longer use the
15452 stack, since the stack was never deeper than 1; instead, use the
15453 new auto var c_context to record the stacked value.
15454
15455 Remove nounput option. At an unexpected end of file, we now unput
15456 the minimal input necessary to end cleanly; this simplifies the
15457 code.
15458
15459 Avoid unbounded token sizes where this is easy.
15460
15461 (unexpected_end_of_file): New function.
15462 Use it to systematize the error message on unexpected EOF.
15463 (last-string): Now auto, not static.
15464 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
15465 (scanner_last_string_free): Remove; not used.
15466 (percent_percent_count): Move decl to just before use.
15467 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
15468 not the (never otherwised-used) CHARACTER.
15469
93724f13
AD
154702002-11-07 Akim Demaille <akim@epita.fr>
15471
15472 Let yyerror always receive the msg as last argument, so that
15473 yyerror can be variadic.
15474
15475 * data/yacc.c (b4_yyerror_args): New.
15476 Use it when calling yyerror.
15477 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
15478 Use it when calling yyerror.
15479 * doc/bison.texinfo (Error Reporting): Adjust.
15480 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
15481 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
15482
6e40b4eb
AD
154832002-11-06 Akim Demaille <akim@epita.fr>
15484
15485 #line should have quoted strings.
15486 Ideally, this should be done by m4_quotearg.
15487
15488 * src/scan-skel.l: Include quotearg.h.
15489 Quote __ofile__.
15490 * src/output.c (symbol_printers_output)
15491 (symbol_destructors_output): Quote the file name.
15492
2dfbfc12
AD
154932002-11-06 Akim Demaille <akim@epita.fr>
15494
15495 * tests/regression.at (Invalid inputs): Adjust to the recent
15496 messages.
15497
437c2d80
AD
154982002-11-06 Akim Demaille <akim@epita.fr>
15499
15500 Restore --no-lines.
15501 Reported by Jim Kent.
15502
15503 * data/c.m4 (b4_syncline): New.
15504 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
15505 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
15506 * src/output.c (user_actions_output): Likewise.
15507 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 15508 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 15509
900c5db5
AD
155102002-11-06 Akim Demaille <akim@epita.fr>
15511
15512 * src/main.c (main): Free `infile'.
15513 * src/scan-gram.l (handle_syncline): New.
15514 Recognize `#line'.
15515 * src/output.c (user_actions_output, symbol_destructors_output)
15516 (symbol_printers_output): Use the location's file name, not
15517 infile.
15518 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15519
e183b123 155202002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 15521
e183b123 15522 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 15523 either has GLR conflict entries.
e183b123 15524
193eb6b7
PE
155252002-11-05 Paul Eggert <eggert@twinsun.com>
15526
e183b123
PE
15527 * src/scan-gram.l: Use more accurate diagnostics, e.g.
15528 "integer out of range" rather than "invalid value".
15529 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
15530 accordingly.
15531
193eb6b7
PE
15532 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
15533 Also, remove one static variable in the scanner.
15534
15535 * src/scan-gram.l (braces_level): Now auto, not static.
15536 Initialize to zero if the compiler is being picky.
15537 (INITIAL): Clear braces_level instead of incrementing it.
15538 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
15539 as POSIX 1003.1-2001 requires.
15540 * src/system.h (IF_LINT): New macro, taken from coreutils.
15541 * configure.ac: Define "lint" if --enable-gcc-warnings.
15542
29c01725
AD
155432002-11-05 Akim Demaille <akim@epita.fr>
15544
15545 * src/scan-gram.l: When it starts with `%', complain about the
15546 whole directive, not just that `invalid character: %'.
15547
8aeac3ca
AD
155482002-11-04 Akim Demaille <akim@epita.fr>
15549
15550 * Makefile.maint: Update from Autoconf.
15551 (update, cvs-update, po-update, do-po-update): New.
15552
793a58bb
AD
155532002-11-04 Akim Demaille <akim@epita.fr>
15554
15555 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
15556 and yyerror.
15557 Have yyerror `use' its arguments.
15558 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
15559 returns true when location & yacc & pure & parse-param.
15560 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
15561
c4d720cd
AD
155622002-11-04 Akim Demaille <akim@epita.fr>
15563
15564 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
15565 clashes.
15566 * src/scan-gram.l: Use [\'] instead of ['] to pacify
15567 font-lock-mode.
15568 Use complain_at.
15569 Use quote, not quote_n since LOCATION_PRINT no longer uses the
15570 slot 0.
15571
613a0dc5
PE
155722002-11-03 Paul Eggert <eggert@twinsun.com>
15573
15574 * src/reader.c (get_merge_function, grammar_current_rule_check):
15575 Use consistent diagnostics for reporting type name clashes.
15576 Quote the types with <>, for consistency with Yacc.
15577 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
15578
2a8d363a
AD
155792002-11-03 Akim Demaille <akim@epita.fr>
15580
15581 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
15582 New.
15583 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
15584 (b4_parse_param): Remove.
15585 Use b4_identification.
15586 Propagate b4_pure_args where needed to pass them to yyerror.
15587 * data/glr.m4 (b4_parse_param): Remove.
15588 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
15589 (b4_lpure_formals): New.
15590 Use b4_identification.
15591 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
15592 b4_user_formals and b4_user_args.
15593 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
15594 (yyreportAmbiguity): When using a pure parser, also need
15595 the location, and the parse-params.
15596 Adjust callers.
15597 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
15598 When using a pure parser, also need the parse-params.
15599 Adjust callers.
15600 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
15601 (%pure-parser + %parse-param) LALR and GLR parsers.
15602 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
15603 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
15604 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
15605 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
15606 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
15607 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
15608 * doc/bison.texinfo: Untabify the whole file.
15609 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
15610 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
15611 (Error Reporting): Adjust to these new directives.
15612 Document %error-verbose, deprecate YYERROR_VERBOSE.
15613
9e32add8
AD
156142002-11-03 Akim Demaille <akim@epita.fr>
15615
15616 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
15617 AT_CHECK_CALC_GLR invocations to use % directives, instead of
15618 command line options.
15619 * tests/cxx-type.at: Formatting changes.
15620
b02d90a5
PE
156212002-11-03 Paul Eggert <eggert@twinsun.com>
15622
15623 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
15624 to count columns correctly, and to check for invalid inputs.
9e32add8 15625
b02d90a5
PE
15626 Use mbsnwidth to count columns correctly. Account for tabs, too.
15627 Include mbswidth.h.
15628 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
15629 (extend_location): New function.
15630 (YY_LINES): Remove.
15631
15632 Handle CRLF in C code rather than in Lex code.
15633 (YY_INPUT): New macro.
15634 (no_cr_read): New function.
15635
15636 Scan UCNs, even though we don't fully handle them yet.
15637 (convert_ucn_to_byte): New function.
15638
15639 Handle backslash-newline correctly in C code.
15640 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
15641 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
15642 all uses changed.
15643 (tag, splice): New EREs. Do not allow NUL or newline in tags.
15644 Use {splice} wherever C allows backslash-newline.
15645 YY_STEP after space, newline, vertical-tab.
15646 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 15647
b02d90a5
PE
15648 (letter, id): Don't assume ASCII; e.g., spell out a-z.
15649
15650 ({int}, handle_action_dollar, handle_action_at): Check for integer
15651 overflow.
9e32add8 15652
b02d90a5
PE
15653 (YY_STEP): Omit trailing semicolon, so that it's more like C.
15654
15655 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
15656 as well as \000. Check for UCHAR_MAX, not 255.
15657 Allow \x with an arbitrary positive number of digits, as in C.
15658 Check for overflow here.
15659 Allow \? and UCNs, for compatibility with C.
15660
15661 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
15662 with quote slot used by complain_at.
15663
15664 * tests/input.at: Add tests for backslash-newline, m4 quotes
15665 in symbols, long literals, and funny escapes in strings.
15666
15667 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
15668 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
15669 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
15670 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
15671 * m4/mbswidth.m4: New file, from GNU coreutils.
15672
15673 * doc/bison.texinfo (Grammar Outline): Document // comments.
15674 (Symbols): Document that trigraphs have no special meaning in Bison,
15675 nor is backslash-newline allowed.
15676 (Actions): Document that trigraphs have no special meaning.
15677
15678 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
15679 no longer used.
15680
156812002-11-02 Paul Eggert <eggert@twinsun.com>
15682
15683 * src/reader.c: Don't include quote.h; not needed.
15684 (get_merge_function): Reword warning to be consistent with
15685 type clash diagnostic in grammar_current_rule_check.
15686
15687 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
15688 bug in trigraph handling.
15689
15690 * src/output.c (prepare_symbols): When printing token names,
15691 escape "[" as "@<:@" and likewise for "]".
15692
15693 * src/system.h (errno): Remove declaration, as we are now
15694 assuming C89 or better, and C89 guarantees errno.
15695
762b212b
PE
156962002-10-30 Paul Eggert <eggert@twinsun.com>
15697
15698 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
15699 Check for close failures.
15700 * src/files.h (xfclose): Return void, not int, since it always
15701 returned zero.
15702 * src/files.c (xfclose): Likewise. Report I/O error if ferror
15703 indicates one.
15704 * src/output.c (output_skeleton): Use xfclose rather than fclose
15705 and ferror. xfclose now checks ferror.
15706
15707 * data/glr.c (YYLEFTMOST_STATE): Remove.
15708 (yyreportTree): Use a stack-based leftmost state. This avoids
15709 our continuing battles with bogus warnings about initializers.
15710
56100c60
AD
157112002-10-30 Akim Demaille <akim@epita.fr>
15712
15713 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
15714 #if.
15715
51b4a04c
PH
157162002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15717
15718 * tests/glr-regr1.at: New test for reported regressions.
15719 * tests/testsuite.at: Add glr-regr1.at test.
15720 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 15721
bf1ebda2
PE
157222002-10-24 Paul Eggert <eggert@twinsun.com>
15723
5c16c6b1
PE
15724 Version 1.75a.
15725
bf1ebda2
PE
15726 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
15727 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
15728 we use malloc. Don't assume 'A' through 'Z' are contiguous.
15729 Don't assume strdup exists; POSIX says its an XSI extension.
15730 Check for buffer overflow on input.
15731
b526ee61
AD
157322002-10-24 Akim Demaille <akim@epita.fr>
15733
15734 * src/output.c (output_skeleton): Don't disable M4sugar comments
15735 too soon: it results in comments being expanded.
15736 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
15737 first output.
15738
f1886bb2
AD
157392002-10-24 Akim Demaille <akim@epita.fr>
15740
15741 * data/yacc.c (m4_int_type): New.
15742 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
15743 char' as only yacc.c wants K&R portability.
15744 * data/glr.c (yysigned_char): Remove.
15745 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
15746 Reported by Quoc Peyrot.
15747
c5576256
PE
157482002-10-23 Paul Eggert <eggert@twinsun.com>
15749
15750 * src/main.c (main): With --trace=time, report times even if a
15751 non-fatal error occurs. Formerly, the times were reported in some
15752 such cases but not in others.
15753 * src/reader.c (reader): Just return if a complaint has been issued,
15754 instead of exiting, so that 'main' can report times.
15755
27b0ffea
AD
157562002-10-22 Akim Demaille <akim@epita.fr>
15757
15758 * src/system.h: Include sys/types.
15759 Reported by Bert Deknuydt.
15760
223a7883
PE
157612002-10-23 Paul Eggert <eggert@twinsun.com>
15762
15763 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
15764 Suggested by Art Haas.
15765
157662002-10-22 Paul Eggert <eggert@twinsun.com>
15767
15768 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
15769 decl; not needed any more.
15770 * src/main.c (main): Use return to exit, undoing yesterday's change.
15771 The last OS that we could find where this wouldn't work is
15772 SunOS 3.5, and that's too old to worry about now.
15773
15774 * data/glr.c (struct yyltype): Define members even when not
15775 doing locations. This is more consistent with yacc.c, and it
15776 works around the following bug reports:
161a71f3
PE
15777 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
15778 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 15779
223a7883
PE
15780 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
15781 @acronym consistently. Standardize on "Yacc" instead of "YACC",
15782 "Algol" instead of "ALGOL". Give a bit more history about BNF.
15783
8b76775a
AD
157842002-10-22 Akim Demaille <akim@epita.fr>
15785
15786 * data/README: New.
15787
6db10d14
PE
157882002-10-21 Paul Eggert <eggert@twinsun.com>
15789
15790 Be consistent about 'bool'; the old code used an enum in one
15791 module and an int in another, and this violates the C standard.
15792 * m4/stdbool.m4: New file, from coreutils 4.5.3.
15793 * configure.ac (AC_HEADER_STDBOOL): Add.
15794 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
15795 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
15796 * src/symtab.c (hash_compare_symbol_t): Likewise.
15797 * src/system.h (bool, false, true): Use a definition consistent
15798 with ../lib/hash.c. All uses changed.
15799
15800 * src/complain.c (warning_issued): Renamed from warn_message_count,
15801 so that we needn't worry about integer overflow (!).
15802 Now of type bool. All uses changed.
15803 (complaint_issued): Renamed from complain_message_count; likewise.
15804
15805 * src/main.c (main): Use exit to exit with failure.
27b0ffea 15806
6db10d14
PE
15807 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
15808 rather than 1 and 0.
15809 * src/main.c (main): Likewise.
15810 * src/getargs.c (getargs): Likewise.
15811 * src/reader.c (reader): Likewise.
15812
15813 * src/getarg.c (getargs): Remove duplicate code for
15814 "Try `bison --help'".
15815
15816 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
15817 What was that "2" for?
15818
15819 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
15820 * src/getargs.c (usage): Likewise.
15821
15822 * src/getargs.c (getargs): When there are too few operands, report
15823 the last one. When there are too many, report the first extra
15824 one. This is how diffutils does it.
15825
92a060fd
PE
158262002-10-20 Paul Eggert <eggert@twinsun.com>
15827
15828 Remove K&R vestiges.
15829 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
15830 * src/complain.c (VA_START): Remove. Assume prototypes.
15831 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
15832 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
15833 fatal): Assume prototypes.
15834 * src/complain.h: Assume prototypes.
15835 * src/system.h (PARAMS): Remove.
15836 Include <limits.h> unconditionally, since it's guaranteeed even
15837 for a freestanding C89 compiler.
15838 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
15839 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 15840
e7cb57c0
AD
158412002-10-20 Akim Demaille <akim@epita.fr>
15842
15843 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
15844 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
15845 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
15846 (yyresolveStates, yyresolveAction, yyresolveStack)
15847 (yyprocessOneStack): Use them.
15848 (yy_reduce_print): New.
15849 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
15850
0245f82d
AD
158512002-10-20 Akim Demaille <akim@epita.fr>
15852
15853 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
15854 arguments and output `void'.
15855 (b4_c_function): Rename as...
15856 (b4_c_function_def): this.
15857 (b4_c_function_decl, b4_c_ansi_function_def)
15858 (b4_c_ansi_function_decl): New.
15859 Change the interpretation of the arguments: before `int, foo', now
15860 `int foo, foo'.
15861 * data/yacc.c (yyparse): Prototype and define thanks to these.
15862 Adjust b4_c_function_def uses.
15863 * data/glr.c (yyparse): Likewise, but ANSI only.
15864
39912f52
AD
158652002-10-20 Akim Demaille <akim@epita.fr>
15866
15867 * src/output.c (prepare): Move the definition of `tokens_number',
15868 `nterms_number', `undef_token_number', `user_token_number_max'
15869 to...
15870 (prepare_tokens): Here.
15871 (prepare_tokens): Rename as...
15872 (prepare_symbols): this.
15873 (prepare): Move the definition of `rules_number' to...
15874 (prepare_rules): here.
15875 (prepare): Move the definition of `last', `final_state_number',
15876 `states_number' to...
15877 (prepare_states): here.
15878 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
15879
20c1e2ad
AD
158802002-10-20 Akim Demaille <akim@epita.fr>
15881
15882 * src/tables.h, src/tables.c, src/output.c: Comment changes.
15883
21964f43
AD
158842002-10-20 Akim Demaille <akim@epita.fr>
15885
15886 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
15887 * data/c.m4: here.
15888
66d30cd4
AD
158892002-10-20 Akim Demaille <akim@epita.fr>
15890
15891 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
15892 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
15893 `pair'.
15894 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
15895 `name' to...
15896 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
15897 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
15898 These.
15899
95f2c9fe
PE
159002002-10-19 Paul Eggert <eggert@twinsun.com>
15901
15902 Do not create a temporary file, as that involves security and
15903 cleanup headaches. Instead, use a pair of pipes.
15904 Derived from a suggestion by Florian Krohm.
15905 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
15906 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
15907 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
15908 (BISON_PREREQ_SUBPIPE): Add.
15909 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
15910 Add subpipe.h, subpipe.c.
15911 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
15912 * po/POTFILES.in: Add lib/subpipe.c.
15913 * src/output.c: Include "subpipe.h".
15914 (m4_invoke): Remove decl.
15915 (scan_skel): New decl.
15916 (output_skeleton): Use pipe rather than temporary file for m4 input.
15917 Check that m4sugar.m4 is readable, to avoid deadlock.
15918 Check for pipe I/O error.
15919 * src/scan-skel.l (readpipe): Remove decl.
15920 (scan_skel): New function, to be used in place of m4_invoke.
15921 Read from stream rather than file.
66d30cd4 15922
95f2c9fe
PE
15923 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
15924 float, as this generates a warning on Solaris 8 + GCC 3.2 with
15925 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
15926 this generates a more-accurate value anyway.
15927
15928 * lib/timevar.c (timervar_accumulate): Rename locals to
15929 avoid confusion with similarly-named more-global.
15930 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
15931
15932 * src/output.c (prepare): Use xstrdup to convert char const *
15933 to char *, to avoid GCC warning.
15934
c19988b7
AD
159352002-10-19 Akim Demaille <akim@epita.fr>
15936
15937 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
15938 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
15939 Use them to have `calc.y' ready for %pure-parser.
15940 * data/yacc.c (YYLEX): Pass a yylex return type to
15941 b4_c_function_call.
15942
ae7453f2
AD
159432002-10-19 Akim Demaille <akim@epita.fr>
15944
15945 Prototype support of %lex-param and %parse-param.
15946
15947 * src/parse-gram.y: Add the definition of the %lex-param and
15948 %parse-param tokens, plus their rules.
15949 Drop the `_' version of %glr-parser.
15950 Add the "," token.
15951 * src/scan-gram.l (INITIAL): Scan them.
15952 * src/muscle_tab.c: Comment changes.
15953 (muscle_insert, muscle_find): Rename `pair' as `probe'.
15954 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
15955 (muscle_entry_s): The `value' member is no longer const.
15956 Adjust all dependencies.
15957 * src/muscle_tab.c (muscle_init): Adjust: use
15958 MUSCLE_INSERT_STRING.
15959 Initialize the obstack earlier.
15960 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
15961 (muscle_pair_list_grow): New.
15962 * data/c.m4 (b4_c_function_call, b4_c_args): New.
15963 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
15964 * tests/calc.at: Use %locations, not --locations.
15965 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
15966
0e575721
AD
159672002-10-19 Akim Demaille <akim@epita.fr>
15968
15969 * src/getargs.c (usage): Take status as argument and exit
15970 accordingly.
15971 Report the traditional `Try ... --help' message when status != 0.
15972 (usage, version): Don't take a FILE * as arg, it is pointless.
15973 (getargs): When there is an incorrect number of arguments, make it
15974 an error, and report it GNUlically thanks to `usage ()'.
15975
724ce7f5
PE
159762002-10-18 Paul Eggert <eggert@twinsun.com>
15977
3a781eb2
PE
15978 * data/glr.c (yyreportParseError): Don't assume that sprintf
15979 yields the length of the printed string, as this is not true
15980 on SunOS 4.1.4. Reported by Peter Klein.
15981
724ce7f5
PE
15982 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
15983 * tests/conflicts.at (%nonassoc and eof): Likewise.
15984 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
15985
473d0a75
AD
159862002-10-17 Akim Demaille <akim@epita.fr>
15987
15988 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
15989 * src/getargs.c (trace_types, trace_args): Adjust.
15990 * src/reader.c (grammar_current_rule_prec_set)
15991 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
15992 Standardize error messages.
15993 And s/@prec/%prec/!
15994 (reader): Use trace_flag to enable scanner/parser debugging,
15995 instead of an adhoc scheme.
15996 * src/scan-gram.l: Remove trailing debugging code.
15997
e76d2469
PE
159982002-10-16 Paul Eggert <eggert@twinsun.com>
15999
93e2236a
PE
16000 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
16001 MUSCLE_TAB_H.
16002
e76d2469
PE
16003 * NEWS: Officially drop support for building Bison with K&R C,
16004 since it didn't work anyway and it's not worth worrying about.
16005 * Makefile.maint (wget_files): Remove ansi2knr.c.
16006 (ansi2knr.c-url_prefix): Remove.
16007 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
16008 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16009 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16010
5bd1c419
PE
160112002-10-15 Paul Eggert <eggert@twinsun.com>
16012
16013 Stop using the "enum_" trick for K&R-style function definitions;
16014 it confused me, and I was the author! Instead, assume that people
16015 who want to use K&R C compilers (when using these modules in GCC,
16016 perhaps?) will run ansi2knr.
16017
16018 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
16019 All uses of "enum_" changed to "enum ".
16020 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16021 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 16022
5bd1c419
PE
16023 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
16024 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
16025 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
16026 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
16027 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
16028 abitset_not, abitset_ones, abitset_or, abitset_or_and,
16029 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
16030 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
16031 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
16032 Use function prototypes; this removes the need for declaring
16033 static functions simply to provide their prototypes.
16034 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
16035 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
16036 bitset_count_, bitset_create, bitset_dump, bitset_first,
16037 bitset_free, bitset_init, bitset_last, bitset_next,
16038 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
16039 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
16040 bitset_print, bitset_release_memory, bitset_toggle_,
16041 bitset_type_choose, bitset_type_get, bitset_type_name_get,
16042 debug_bitset): Likewise.
16043 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
16044 * lib/bitset_stats.c (bitset_log_histogram_print,
16045 bitset_percent_histogram_print, bitset_stats_and,
16046 bitset_stats_and_cmp, bitset_stats_and_or,
16047 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
16048 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
16049 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
16050 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
16051 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
16052 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
16053 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
16054 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
16055 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
16056 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
16057 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
16058 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
16059 bitset_stats_zero): Likewise.
16060 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16061 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16062 bitsetv_dump, debug_bitsetv): Likewise.
16063 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
16064 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
16065 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
16066 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
16067 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
16068 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
16069 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
16070 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
16071 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
16072 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
16073 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
16074 Likewise.
16075 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
16076 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
16077 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
16078 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
16079 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
16080 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
16081 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
16082 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
16083 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
16084 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
16085 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 16086
ae26e1f0
AD
160872002-10-14 Akim Demaille <akim@epita.fr>
16088
16089 Version 1.75.
16090
d43baf71
AD
160912002-10-14 Akim Demaille <akim@epita.fr>
16092
16093 * tests/Makefile.am (maintainer-check-posix): New.
16094
7ebc83e3
AD
160952002-10-14 Akim Demaille <akim@epita.fr>
16096
16097 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
16098 member.
16099
05846dae
AD
161002002-10-14 Akim Demaille <akim@epita.fr>
16101
16102 * src/tables.c (table_ninf_remap): base -> tab.
16103 Reported by Matt Rosing.
16104
1318e37d
PE
161052002-10-14 Paul Eggert <eggert@twinsun.com>
16106
447fbb17
PE
16107 * tests/action.at, tests/calc.at, tests/conflicts.at,
16108 tests/cxx-type.at, tests/headers.at, tests/input.at,
16109 tests/regression.at, tests/synclines.at, tests/torture.at:
16110 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
16111 so that the tests still work even if POSIXLY_CORRECT is set.
16112 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 16113
1318e37d
PE
16114 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
16115 for portability to K&R hosts. Fix typo: signed char is guaranteed
16116 only to 127, not to 128.
16117 * data/glr.c (yysigned_char): New type.
16118 * data/yacc.c (yysigned_char): Likewise.
16119 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
16120
cc0f0794
PE
161212002-10-13 Paul Eggert <eggert@twinsun.com>
16122
5038f418
PE
16123 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
16124 true due to limited range of data type" warning from GCC.
16125
cc0f0794
PE
16126 * data/c.m4 (b4_token_defines): Protect against double-inclusion
16127 by wrapping enum yytokentype's definition inside #ifndef
16128 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
16129
6fed0802
AD
161302002-10-13 Akim Demaille <akim@epita.fr>
16131
16132 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
16133 Un yy- yyrhs to avoid the name clash with the global YYRHS.
16134
32f0598d
AD
161352002-10-13 Akim Demaille <akim@epita.fr>
16136
16137 * Makefile.maint: Update from Autoconf 2.54.
16138 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
16139
7ea9a33f
AD
161402002-10-13 Akim Demaille <akim@epita.fr>
16141
16142 * src/print.c (print_state): Separate the list of solved conflicts
16143 from the other items.
16144 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
16145
ea99527d
AD
161462002-10-13 Akim Demaille <akim@epita.fr>
16147
16148 Let nondeterministic skeletons be usable with deterministic
16149 tables.
16150
16151 With the patch, GAWK compiled by GCC without -O2 passes its test
16152 suite using a GLR parser driven by LALR tables. It fails with -O2
16153 because `struct stat' gives two different answers on my machine:
16154 88 (definition of an auto var) and later 96 (memset on this var).
16155 Hence the stack is badly corrumpted. The headers inclusion is to
16156 blame: if I move the awk.h inclusion before GLR's system header
16157 inclusion, the two struct stat have the same size.
16158
16159 * src/tables.c (pack_table): Always create conflict_table.
16160 (token_actions): Always create conflict_list.
16161 * data/glr.c (YYFLAG): Remove, unused.
16162
f377f69f
AD
161632002-10-13 Akim Demaille <akim@epita.fr>
16164
16165 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
16166 (O0FLAGS): New.
16167 (VALGRIND, GXX): New.
16168 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
16169 * tests/bison.in: Run $PREBISON a pre-command.
16170 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
16171 (maintainer-check-g++): New.
16172 * Makefile.am (maintainer-check): New.
16173
2a1fe6ed
AD
161742002-10-13 Akim Demaille <akim@epita.fr>
16175
16176 * data/glr.c: Formatting changes.
16177 Tweak some trace messages to match yacc.c's.
16178
f50adbbd
AD
161792002-10-13 Akim Demaille <akim@epita.fr>
16180
16181 GLR parsers sometimes raise parse errors instead of performing the
16182 default reduction.
16183 Reported by Charles-Henry de Boysson.
16184
16185 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 16186 check the length of the traces when %glr.
f50adbbd
AD
16187 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
16188 GLR's traces.
16189 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
16190 Test GLR parsers.
16191 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
16192 (yyltype): Remove the yy prefix from the member names.
16193 (yytable): Complete its comment.
16194 (yygetLRActions): Map error action number from YYTABLE from
16195 YYTABLE_NINF to 0.
16196 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
16197 (which was a bug: it should have been YYTABEL_NINF, and yet it was
16198 not satisfying as we could compare an YYACTION computed from
16199 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
16200 only value for error actions.
16201 (yyreportParseError): In verbose parse error messages, don't issue
16202 `error' in the list of expected tokens.
16203 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
16204 next action to perform to match glr.c's decoding.
16205 (yytable): Complete its comment.
16206
bcbad5b9
PE
162072002-10-13 Paul Eggert <eggert@twinsun.com>
16208
16209 Fix problem reported by Henrik Grubbstroem in
161a71f3 16210 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
16211 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
16212 because the Bison parser reads the second action before reducing
16213 the first one.
16214 * src/scan-gram.l (rule_length): New static var.
16215 Use it to keep track of the rule length in the scanner, since
16216 we can't expect the parser to be in lock-step sync with the scanner.
16217 (handle_action_dollar, handle_action_at): Use this var.
16218 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 16219
14904b89
PE
162202002-10-12 Paul Eggert <eggert@twinsun.com>
16221
1fe611e5
PE
16222 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
16223 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
16224 Include <sys/time.h> when checking for clock_t and struct tms.
16225 Use same include order as source.
16226 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 16227 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 16228
1fe611e5
PE
16229 * lib/timevar.c: Update copyright date and clarify comments.
16230 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 16231
1fe611e5
PE
16232 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
16233 GCC version as of today, then merge Bison's changes.
16234 Change "GCC" to "Bison" in copyright notice. timevar.def's
16235 author is Akim, so change that too.
16236
98194095
PE
16237 * src/reader.c (grammar_current_rule_check):
16238 Don't worry about the default action if $$ is untyped.
16239 Prevents bogus warnings reported by Jim Gifford in
161a71f3 16240 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 16241
14904b89
PE
16242 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
16243 * data/glr.c, data/lalr1.cc, data/yacc.c:
16244 Output token definitions before the first part of user declarations.
16245 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 16246 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 16247
ff6dca18
PE
162482002-10-11 Paul Eggert <eggert@twinsun.com>
16249
16250 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
16251 (yyparse): here. This undoes some of the 2002-07-25 change.
16252 Compatibility problem reported by Ralf S. Engelschall with
16253 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
16254
eb714592
AD
162552002-10-11 Akim Demaille <akim@epita.fr>
16256
16257 * tests/regression.at Characters Escapes): New.
16258 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
16259 characters.
16260 Reported by Jan Nieuwenhuizen.
16261
b7195100
AD
162622002-10-11 Akim Demaille <akim@epita.fr>
16263
16264 * po/id.po: New.
16265
f28a0f2d
PE
162662002-10-10 Paul Eggert <eggert@twinsun.com>
16267
16268 Portability fixes for bitsets; this also avoids several GCC
16269 warnings.
16270
16271 * lib/abitset.c: Include <stddef.h>, for offsetof.
16272 * lib/lbitset.c: Likewise.
16273
16274 * lib/abitset.c (abitset_bytes): Return a size that is aligned
16275 properly for vectors of objects. Do not assume that adding a
16276 header size to a multiple of a word size yields a value that is
16277 properly aligned for the whole union.
16278 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16279
16280 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
16281 unique names for structures.
16282 * lib/ebitset.c (ebitset_bytes): Likewise.
16283 * lib/lbitset.c (lbitset_bytes): Likewise.
16284
16285 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
16286 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
16287 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
16288 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
16289 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
16290 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
16291 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
16292 to improve the type-checking that GCC can do.
16293 * lib/bitset.c (bitset_op4_cmp): Likewise.
16294 * lib/bitset_stats.c (bitset_stats_count,
16295 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
16296 bitset_stats_copy, bitset_stats_disjoint_p,
16297 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
16298 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
16299 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
16300 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
16301 bitset_stats_and_or_cmp, bitset_stats_andn_or,
16302 bitset_stats_andn_or_cmp, bitset_stats_or_and,
16303 bitset_stats_or_and_cmp): Likewise.
16304 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
16305 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
16306 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
16307 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
16308
16309 * lib/abitset.h: Include bitset.h, not bbitset.h.
16310 * lib/ebitset.h: Likewise.
16311 * lib/lbitset.h: Likewise.
16312
16313 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
16314 All instances of parameters of type enum bitset_opts are now of
16315 type enum_bitset_opts, to conform to the C Standard, and similarly
16316 for enum_bitset_type.
16317 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16318 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16319
16320 Do not use "struct bitset_struct" to mean different things in
16321 different modules. Not only is this confusing, it violates
16322 the C Standard, which requires that structure types in different
16323 modules must be compatible if one is to be passed to the other.
16324 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
16325 All instances of "struct bitset_struct *" replaced with "bitset".
16326 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
16327 (union bitset_union, struct abitset_struct, struct ebitset_struct,
16328 struct lbitset_struct, struct bitset_stats_struct): New types.
16329 All uses of struct bitset_struct changed to union bitset_union,
16330 etc.
ba0fe3c7 16331 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
16332 struct bitset_struct): Remove.
16333 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
16334 struct bitset_struct): Remove.
16335 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
16336 bitset_struct): Remove.
16337 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
16338 Likewise.
16339
16340 Do not call a function of type T using a call that assumes the
16341 function is of a different type U. Standard C requires that a
16342 function must be called with a type that is compatible with its
16343 definition.
16344 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16345 New decls.
16346 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16347 New functions.
16348 * lib/ebitset.c (PFV): Remove.
16349 * lib/lbitset.c (PFV): Likewise.
16350 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
16351 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
16352 decls.
16353 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
16354 (ebitset_vtable): Use them.
16355 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
16356 lbitset_xor): New functions.
16357 (lbitset_vtable): Use them.
16358
16359 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
16360 Declare.
16361
16362 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
16363 GCC warning.
16364 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
16365 Use offsetof, for simplicity.
16366
6fbe4984
PE
163672002-10-06 Paul Eggert <eggert@twinsun.com>
16368
16369 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
16370 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 16371 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
16372 which was inadvertently undone by the 2002-09-30 patch.
16373 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
16374 the same width as int.
16375
420f93c8
PE
163762002-10-04 Paul Eggert <eggert@twinsun.com>
16377
16378 Version 1.50.
16379
16380 * configure.ac (AC_INIT), NEWS: Increment version number.
16381
16382 * doc/bison.texinfo: Minor spelling, grammar, and white space
16383 fixes.
16384 (Symbols): Mention that any negative value returned from yylex
16385 signifies end-of-input. Warn about negative chars. Mention
16386 the portable Standard C character set.
16387
16388 The GNU coding standard says CFLAGS and YFLAGS are reserved
16389 for the installer to set.
16390 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
16391 * src/Makefile.am (AM_CFLAGS): Likewise.
16392 (AM_YFLAGS): Renamed from YFLAGS.
16393
16394 Fix some MAX and MIN problems.
16395 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
16396 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
16397 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
16398 * src/reader.c (reader): Use it.
16399
16400 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
16401 POSIX 1003.1-2001 has removed fgrep.
16402
164032002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
16404
16405 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
16406 interpreted as signed.
16407 * lib/ebitset.c (ebitset_list): Fix bug.
16408
ff68026d
PE
164092002-10-01 Paul Eggert <eggert@twinsun.com>
16410
16411 More fixes for 64-bit hosts and large bitsets.
16412
16413 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
16414 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
16415 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
16416 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
16417 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
16418 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
16419 bitset_count_): Likewise.
16420 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
16421 bitset_first, bitset_last): Likewise.
16422 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
16423 bitset_stats_list_reverse, bitset_stats_size,
16424 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
16425 Likewise.
16426 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16427 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16428 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16429 bitsetv_reflexive_transitive_closure): Likewise.
16430 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
16431 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
16432 Likewise.
16433 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
16434 Likewise.
420f93c8 16435
ff68026d
PE
16436 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
16437 Use size_t, not unsigned int, to count bytes.
16438 * lib/abitset.h (abitset_bytes): Likewise.
16439 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
16440 Likewise.
16441 * lib/bitset.h (bitset_bytes): Likewise.
16442 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
16443 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
16444 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16445 * lib/ebitset.c (ebitset_bytes): Likewise.
16446 * lib/ebitset.h (ebitset_bytes): Likewise.
16447 * lib/lbitset.c (lbitset_bytes): Likewise.
16448 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 16449
ff68026d
PE
16450 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
16451 abitset_subset_p, abitset_disjoint_p, abitset_and,
16452 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
16453 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
16454 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
16455 abitset_or_and, abitset_or_and_cmp):
16456 Use bitset_windex instead of unsigned int.
16457 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16458 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
16459 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
16460 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
16461 Likewise.
16462 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 16463
ff68026d
PE
16464 * lib/bitset.c (bitset_print):
16465 Use proper printf formats for widths of integer types.
16466 * lib/bitset_stats.c (bitset_percent_histogram_print,
16467 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
16468 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16469 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16470 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 16471
ff68026d
PE
16472 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
16473 BITSET_SIZE_MAX): New macros.
16474 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
16475 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
16476 to BITSET_WINDEX_MAX.
16477
16478 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
16479 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
16480 since we now return the bitset_bindex type (not int).
16481
16482 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
16483 when computing sizes.
16484 * lib/ebitset.c (ebitset_elts_grow): Likewise.
16485
16486 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
16487 and avoid cast to unsigned.
16488
6aa452a6
AD
164892002-09-30 Akim Demaille <akim@epita.fr>
16490
16491 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
16492 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
16493 Updates from Michael Hayes.
16494
927f7817
AD
164952002-09-30 Art Haas <ahaas@neosoft.com>
16496
16497 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
16498 invocations.
16499 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
16500 defined.
16501
9738f41e
AD
165022002-09-27 Akim Demaille <akim@epita.fr>
16503
16504 Version 1.49c.
16505
a5c75d7f
AD
165062002-09-27 Akim Demaille <akim@epita.fr>
16507
16508 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
16509 (Because of AC_LIBSOURCE).
16510
8280e179
AD
165112002-09-27 Akim Demaille <akim@epita.fr>
16512
16513 Playing with Autoscan.
16514
16515 * configure.ac: Remove the old LIBOBJ tweaks.
16516 (AC_REPLACE_FUNCS): Add strrchr and strtol.
16517 * lib/strrchr.c: New.
16518 * lib/strtol.c: New, from the Coreutils 4.5.1.
16519
ae64af35
AD
165202002-09-27 Akim Demaille <akim@epita.fr>
16521
16522 Playing with Autoscan.
16523
16524 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
16525 * lib/Makefile.am (libbison_a_SOURCES): No longer include
16526 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
16527 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
16528 Coreutils 4.5.1.
16529
d1a1114f
AD
165302002-09-24 Akim Demaille <akim@epita.fr>
16531
16532 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
16533 (Frequently Asked Questions, Parser Stack Overflow): New.
16534
b906441c
AD
165352002-09-13 Akim Demaille <akim@epita.fr>
16536
16537 Playing with autoscan.
16538
16539 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
16540 * src/files.c (skeleton_find): Remove, unused.
16541 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
16542 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
16543
bd701811
AD
165442002-09-13 Akim Demaille <akim@epita.fr>
16545
16546 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
16547 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
16548
e0a13e7b
AD
165492002-09-13 Akim Demaille <akim@epita.fr>
16550
16551 * configure.ac: Require 2.54.
16552 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
16553 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
16554 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
16555 Remove, provided by Autoconf macros.
16556
c97011bf
AD
165572002-09-12 Akim Demaille <akim@epita.fr>
16558
16559 * m4/prereq.m4: Update, from Coreutils 4.5.1.
16560
d862b1be
AD
165612002-09-12 Akim Demaille <akim@epita.fr>
16562
16563 * m4/prereq.m4: Update, from Fileutils 4.1.5.
16564 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
16565 Reported by Martin Mokrejs.
16566
3d38c03a
AD
165672002-09-10 Akim Demaille <akim@epita.fr>
16568
16569 * src/parse-gram.y: Associate a human readable string to each
16570 token type.
16571 * tests/regression.at (Invalid inputs): Adjust.
16572
b6347355
AD
165732002-09-10 Gary V. Vaughan <gary@gnu.org>
16574
16575 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
16576 with an Autoconf-2.5x style configure.ac.
16577
09ba4ab2
PE
165782002-09-06 Paul Eggert <eggert@twinsun.com>
16579
16580 * doc/bison.texinfo (Conditions): Make explicit that the GPL
16581 exception applies only to yacc.c. This is a modification of a
16582 patch originally suggested by Akim Demaille.
16583
21846f69
AD
165842002-09-06 Akim Demaille <akim@epita.fr>
16585
09ba4ab2
PE
16586 * data/c.m4 (b4_copyright): Move the GPL exception comment from
16587 here to...
16588 * data/yacc.c: here.
16589
21846f69
AD
16590 * data/lalr1.cc (struct yyltype): Don't define it, since we use
16591 LocationType.
16592 (b4_ltype): Default to yy::Location from location.hh.
16593
c0ad8bf3
AD
165942002-09-04 Jim Meyering <jim@meyering.net>
16595
16596 * data/yacc.c: Guard the declaration of yytoknum also with
16597 `#ifdef YYPRINT', so it is declared only when used.
16598
3a93251e
AD
165992002-09-04 Akim Demaille <akim@epita.fr>
16600
16601 * configure.in: Rename as...
16602 * configure.ac: this.
16603 Bump to 1.49c.
16604
427c0dda
AD
166052002-09-04 Akim Demaille <akim@epita.fr>
16606
16607 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
16608 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
16609 translate maintainer only messages.
16610
6a254321
PE
166112002-08-12 Paul Eggert <eggert@twinsun.com>
16612
645e30d1
PE
16613 Version 1.49b.
16614
6a254321
PE
16615 * Makefile.am (SUBDIRS): Remove intl.
16616 (DISTCLEANFILES): Remove.
16617 * NEWS: Mention that GNU M4 is now required. Clarify what is
16618 meant by "larger grammars". Mention the pt_BR translation.
16619 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
16620 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
16621 Bump version from 0.11.2 to 0.11.5.
16622 (BISON_PREREQ_STAGE): Remove.
16623 (AM_GNU_GETTEXT): Use external gettext.
16624 (AC_OUTPUT): Remove intl/Makefile.
16625
16626 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
16627
16628 * data/glr.c: Include string.h, for strlen.
16629 (yyreportParseError): Use size_t for yysize.
16630 (yy_yypstack): No longer nested inside yypstates, as nested
16631 functions are not portable. Do not assume size_t is the
16632 same width as int.
16633 (yypstates): Do not assume that ptrdiff_t is the same width
16634 as int, and similarly for yyposn and YYINDEX.
16635
16636 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
16637
16638 * lib/Makefile.am (INCLUDES): Do not include from the intl
16639 directory, which has been removed.
16640 * src/Makefile.am (INCLUDES): Likewise.
16641
16642 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
16643 (bitsets_sources, additional_bitsets_sources, timevars_sources):
16644 New vars.
16645
16646 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
16647 * tests/Makefile.am (EXTRA_DIST): Likewise.
16648
16649 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
16650 Do not assume that bitset_windex is the same width as unsigned.
16651
16652 * lib/abitset.c (abitset_unused_clear): Do not assume that
16653 bitset_word is the same width as int.
16654 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
16655 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
16656 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
16657 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
16658 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
16659
16660 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
16661 portability to one's complement hosts!).
16662 * lib/ebitset.c (ebitset_op1): Likewise.
16663 * lib/lbitset.c (lbitset_op1): Likewise.
16664
16665 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
16666 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
16667 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
16668 Sync with fileutils.
16669 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
16670 lib/gettext.h: Sync with diffutils.
16671
16672 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
16673 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
16674
16675 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
16676 PROTOTYPES to check for prototypes, and "defined __STDC__" to
16677 check for void *.
16678
16679 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
16680 size_t; the old version tried to do this but casted improperly.
16681 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
16682 (bitset_test): Now returns int, not unsigned long.
16683
16684 * lib/bitset_stats.c: Include "gettext.h".
16685 (_): New macro.
16686 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
16687 name locals "index", as it generates unnecessary warnings on some
16688 hosts that have an "index" function.
16689
16690 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
16691 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
16692 they need translation.
16693 * src/LR0.c (state_list_append, new_itemsets, get_state,
16694 append_states, generate_states): Likewise.
16695 * src/assoc.c (assoc_to_string): Likewise.
16696 * src/closure.c (print_closure, set_firsts, closure): Likewise.
16697 * src/gram.c (grammar_dump): Likewise.
16698 * src/injections.c (injections_compute): Likewise.
16699 * src/lalr.c (lookaheads_print): Likewise.
16700 * src/relation.c (relation_transpose): Likewise.
16701 * src/scan-gram.l: Likewise.
16702 * src/tables.c (table_grow, pack_vector): Likewise.
16703
16704 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
16705 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
16706 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
16707 * m4/mbstate_t.m4: Sync with fileutils.
16708 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
16709
16710 * po/LINGUAS: Add pt_BR.
16711 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
16712 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
16713 lib/timevar.c.
16714 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
16715 manual recommends.
16716 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
16717
16718 * src/complain.c (strerror_r): Remove decl; not needed.
16719 (strerror): Use same pattern as ../lib/error.c.
16720
16721 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
16722
16723 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
16724
16725 * src/main.c (main): Cast result of bindtextdomain and textdomain
16726 to void, to avoid a GCC warning when --disable-nls is in effect.
16727
16728 * src/scan-gram.l: Use strings rather than escapes when possible,
16729 to minimize the number of warnings from xgettext.
16730 (handle_action_dollar, handle_action_at): Don't use isdigit,
16731 as it mishandles negative chars and it may not work as expected
16732 outside the C locale.
16733
16734 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
16735 this is a GCC extension and is not portable to other compilers.
16736
16737 * src/system.h (alloca): Use same pattern as ../lib/error.c.
16738 Do not include <ctype.h>; no longer needed.
16739 Do not include <malloc.h>; no longer needed (and generates
16740 warnings on OpenBSD 3.0).
16741
16742 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
16743 it's not portable.
16744
16745 * tests/regression.at: Do not use 'cc -c input.c -o input';
16746 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
16747
16748 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
16749 exit status as failure, not just exit status 1. Sun C exits
16750 with status 2 sometimes.
16751
16752 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
16753 Use it for the two large tests.
16754
c8f002c7
AD
167552002-08-02 Akim Demaille <akim@epita.fr>
16756
16757 * src/conflicts.c (conflicts_output): Don't output rules never
16758 reduced here, since anyway that computation doesn't work.
16759 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
16760 (rule_useless_p, rule_never_reduced_p): New.
16761 (grammar_rules_partial_print): Use a filter instead of a range.
16762 Display the title only if needed.
16763 (grammar_rules_print): Adjust.
16764 (grammar_rules_never_reduced_report): New.
16765 * src/tables.c (action_row): Move the computation of rules never
16766 reduced to...
16767 (token_actions): here.
16768 * src/main.c (main): Make the parser before making the report, so
16769 that rules never reduced are computed.
16770 Call grammar_rules_never_reduced_report.
16771 * src/print.c (print_results): Report rules never reduced.
16772 * tests/conflicts.at, tests/reduce.at: Adjust.
16773
cd08e51e
AD
167742002-08-01 Akim Demaille <akim@epita.fr>
16775
16776 Instead of attaching lookaheads and duplicating the rules being
16777 reduced by a state, attach the lookaheads to the reductions.
16778
16779 * src/state.h (state_t): Remove the `lookaheads',
16780 `lookaheads_rule' member.
16781 (reductions_t): Add a `lookaheads' member.
16782 Use a regular array for the `rules'.
16783 * src/state.c (reductions_new): Initialize the lookaheads member
16784 to 0.
16785 (state_rule_lookaheads_print): Adjust.
16786 * src/state.h, src/state.c (state_reductions_find): New.
16787 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
16788 (count_rr_conflicts): Adjust.
16789 * src/lalr.c (LArule): Remove.
16790 (add_lookback_edge): Adjust.
16791 (state_lookaheads_count): New.
16792 (states_lookaheads_initialize): Merge into...
16793 (initialize_LA): this.
16794 (lalr_free): Adjust.
16795 * src/main.c (main): Don't free nullable and derives too early: it
16796 is used by --verbose.
16797 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
16798
bb0027a9
AD
167992002-08-01 Akim Demaille <akim@epita.fr>
16800
16801 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
16802 `rule_number_t**'.
16803 (set_derives, free_derives): Rename as...
16804 (derives_compute, derives_free): this.
16805 Adjust all dependencies.
16806 * src/nullable.c (set_nullable, free_nullable): Rename as...
16807 (nullable_compute, nullable_free): these.
16808 (rule_list_t): Store rule_t *, not rule_number_t.
16809 * src/state.c (state_rule_lookaheads_print): Directly compare rule
16810 pointers, instead of their numbers.
16811 * src/main.c (main): Call nullable_free, and derives_free earlier,
16812 as they were lo longer used.
16813
3325ddc4
AD
168142002-08-01 Akim Demaille <akim@epita.fr>
16815
16816 * lib/timevar.c (get_time): Include children time.
16817 * src/lalr.h (LA, LArule): Don't export them: used with the
16818 state_t.
16819 * src/lalr.c (LA, LArule): Static.
16820 * src/lalr.h, src/lalr.c (lalr_free): New.
16821 * src/main.c (main): Call it.
16822 * src/tables.c (pack_vector): Check whether loc is >= to the
16823 table_size, not >.
16824 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
16825 (tables_generate): do it, since that's also it which allocates
16826 them.
16827 Don't free LA and LArule, main does.
16828
c6f1a33c
AD
168292002-07-31 Akim Demaille <akim@epita.fr>
16830
16831 Separate parser tables computation and output.
16832
16833 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
16834 (conflict_list, conflict_list_cnt, table, check, table_ninf)
16835 (yydefgoto, yydefact, high): Move to...
16836 * src/tables.h, src/tables.c: here.
16837 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
16838 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
16839 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
16840 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
16841 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
16842 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
16843 (action_row, save_row, token_actions, save_column, default_goto)
16844 (goto_actions, sort_actions, matching_state, pack_vector)
16845 (table_ninf_remap, pack_table, prepare_actions): Move to...
16846 * src/tables.c: here.
16847 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
16848 * src/output.c (token_actions, output_base, output_conflicts)
16849 (output_check): Merge into...
16850 (prepare_actions): this.
16851 (actions_output): Rename as...
16852 (user_actions_output): this.
16853 * src/main.c (main): Call tables_generate and tables_free.
16854
1509d42f
AD
168552002-07-31 Akim Demaille <akim@epita.fr>
16856
16857 Steal GCC's --time-report support.
16858
16859 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
16860 stolen/adjusted from GCC.
16861 * m4/stage.m4: Remove time related checks.
16862 * m4/timevar.m4: New.
16863 * configure.in: Adjust.
16864 * src/system.h: Adjust to using timevar.h.
16865 * src/getargs.h, src/getargs.c: Support trace_time for
16866 --trace=time.
16867 * src/main.c (stage): Remove.
16868 (main): Replace `stage' invocations with timevar calls.
16869 * src/output.c: Insert pertinent timevar calls.
16870
273a74fa
AD
168712002-07-31 Akim Demaille <akim@epita.fr>
16872
16873 Let --trace have arguments.
16874
16875 * src/getargs.h (enum trace_e): New.
16876 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
16877 (long_options, short_options): --trace/-T takes an optional
16878 argument.
16879 Change all the uses of trace_flag to reflect the new flags.
16880 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
16881
16882 Strengthen `stage' portability.
16883
16884 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
16885 * configure.in: Use it.
16886 Don't check for malloc.h and sys/times.h.
16887 * src/system.h: Include them when appropriate.
16888 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
16889 times and struct tms are available.
16890
217598da
AD
168912002-07-30 Akim Demaille <akim@epita.fr>
16892
16893 In verbose parse error message, don't report `error' as an
16894 expected token.
16895 * tests/actions.at (Printers and Destructors): Adjust.
16896 * tests/calc.at (Calculator $1): Adjust.
16897 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
16898 error message, do not report the parser accepts the error token in
16899 that state.
16900
52489d44
AD
169012002-07-30 Akim Demaille <akim@epita.fr>
16902
16903 Normalize conflict related messages.
16904
16905 * src/complain.h, src/complain.c (warn, complain): New.
16906 * src/conflicts.c (conflicts_print): Use them.
16907 (conflict_report_yacc): New, extracted from...
16908 (conflicts_print): here.
16909 * tests/conflicts.at, tests/existing.at: Adjust.
16910
e8832397
AD
169112002-07-30 Akim Demaille <akim@epita.fr>
16912
16913 Report rules which are never reduced by the parser: those hidden
16914 by conflicts.
16915
16916 * src/LR0.c (save_reductions): Don't make the final state too
16917 different: save its reduction (accept) instead of having a state
16918 without any action (no shift or goto, no reduce).
16919 Note: the final state is now a ``regular'' state, i.e., the
16920 parsers now contain `reduce 0' as default reduction.
16921 Nevertheless, since they decide to `accept' when yystate =
16922 final_state, they still will not reduce rule 0.
16923 * src/print.c (print_actions, print_reduction): Adjust.
16924 * src/output.c (action_row): Track reduced rules.
16925 (token_actions): Report rules never reduced.
16926 * tests/conflicts.at, tests/regression.at: Adjust.
16927
caf23d24
AD
169282002-07-30 Akim Demaille <akim@epita.fr>
16929
16930 `stage' was accidently included in a previous patch.
16931 Initiate its autoconfiscation.
16932
16933 * configure.in: Look for malloc.h and sys/times.h.
16934 * src/main.c (stage): Adjust.
16935 Report only when trace_flag.
16936
640748ee
AD
169372002-07-29 Akim Demaille <akim@epita.fr>
16938
16939 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
16940 state_number_t.
16941 (errs_t): symbol_t*, not symbol_number_t.
16942 (reductions_t): rule_t*, not rule_number_t.
16943 (FOR_EACH_SHIFT): New.
16944 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
16945 * src/print.c, src/print_graph.c: Adjust.
16946
88bce5a2
AD
169472002-07-29 Akim Demaille <akim@epita.fr>
16948
16949 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
16950
16951 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
16952 (endtoken, accept): these.
16953 * src/reader.c (reader): Set endtoken's default tag to "$end".
16954 Set undeftoken's tag to "$undefined" instead of "$undefined.".
16955 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
16956 Adjust.
16957
1bfb97db
AD
169582002-07-29 Akim Demaille <akim@epita.fr>
16959
16960 * src/reduce.c (reduce_grammar): When the language is empty,
16961 complain about the start symbol, not the axiom.
16962 Use its location.
16963 * tests/reduce.at (Empty Language): New.
16964
fc5734fe
AD
169652002-07-26 Akim Demaille <akim@epita.fr>
16966
16967 * src/reader.h, src/reader.c (gram_error): ... can't get
16968 yycontrol without making too strong assumptions on the parser
16969 itself.
16970 * src/output.c (prepare_tokens): Use the real 0th value of
16971 token_translations instead of `0'.
16972 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
16973 visible here.
16974 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
16975 for the time being: %locations ought to provide it to yyerror.
16976
3650b4b8
AD
169772002-07-25 Akim Demaille <akim@epita.fr>
16978
16979 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
16980 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
16981 * tests/regression.at (Web2c Actions): Adjust.
16982
4b3d3a8e
AD
169832002-07-25 Akim Demaille <akim@epita.fr>
16984
16985 Stop storing rules from 1 to nrules + 1.
16986
16987 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
16988 * src/nullable.c, src/output.c, src/print.c, src/reader.c
16989 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
16990 Iterate from 0 to nrules.
16991 Use rule_number_as_item_number and item_number_as_rule_number.
16992 Adjust to `derive' now containing possibly 0.
16993 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
16994 Handle the `- 1' part in rule numbers from/to item numbers.
16995 * src/conflicts.c (log_resolution): Fix the message which reversed
16996 shift and reduce.
16997 * src/output.c (action_row): Initialize default_rule to -1.
16998 (token_actions): Adjust.
16999 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
17000 expected output.
17001 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
17002
4a2a22f4
AD
170032002-07-25 Akim Demaille <akim@epita.fr>
17004
17005 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
17006 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
17007 (b4_c_knr_arg_decl): New.
17008 * data/yacc.c: Use it to define yysymprint, yydestruct, and
17009 yyreport_parse_error.
17010
b8df3223
AD
170112002-07-25 Akim Demaille <akim@epita.fr>
17012
17013 * data/yacc.c (yyreport_parse_error): New, extracted from...
17014 (yyparse): here.
17015 (yydestruct, yysymprint): Move above yyparse.
17016 Be K&R compliant.
17017
a762e609
AD
170182002-07-25 Akim Demaille <akim@epita.fr>
17019
17020 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
17021 replace...
17022 (b4_sint_type, b4_uint_type): these.
17023 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
17024 * tests/regression.at (Web2c Actions): Adjust.
17025
12b0043a
AD
170262002-07-25 Akim Demaille <akim@epita.fr>
17027
17028 * src/gram.h (TIEM_NUMBER_MAX): New.
17029 (item_number_of_rule_number, rule_number_of_item_number): Rename
17030 as...
17031 (rule_number_as_item_number, item_number_as_rule_number): these.
17032 Adjust dependencies.
17033 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17034 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17035 (symbol_number_to_vector_number): New.
17036 (order): Of vector_number_t* type.
17037 (base_t, BASE_MAX, BASE_MIN): New.
17038 (froms, tos, width, pos, check): Of base_t type.
17039 (action_number_t, ACTION_MIN, ACTION_MAX): New.
17040 (actrow): Of action_number_t type.
17041 (conflrow): Of unsigned int type.
17042 (table_ninf, base_ninf): New.
17043 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
17044 (muscle_insert_int_table, muscle_insert_base_table)
17045 (muscle_insert_rule_number_table): New.
17046 (prepare_tokens): Output `toknum' as int_table.
17047 (action_row): Returns a rule_number_t.
17048 Use ACTION_MIN, not SHRT_MIN.
17049 (token_actions): yydefact is rule_number_t*.
17050 (table_ninf_remap): New.
17051 (pack_table): Use it for `base' and `table'.
17052 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
17053 replaced with...
17054 (YYPACT_NINF, YYTABLE_NINF): these.
17055 (yypact, yytable): Compute their types instead of hard-coded
17056 `short'.
17057 * tests/regression.at (Web2c Actions): Adjust.
17058
5dde258a
AD
170592002-07-19 Akim Demaille <akim@epita.fr>
17060
17061 * src/scan-gram.l (id): Can start with an underscore.
17062
a945ec39
AD
170632002-07-16 Akim Demaille <akim@epita.fr>
17064
17065 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
17066 Adjust all former `associativity' dependencies.
17067 * src/symtab.c (symbol_new): Default associativity is `undef', not
17068 `right'.
17069 (symbol_check_alias_consistence): Adjust.
17070
fae437e8
AD
170712002-07-09 Akim Demaille <akim@epita.fr>
17072
17073 * doc/bison.texinfo: Properly set the ``header'' part.
17074 Use @dircategory ``GNU programming tools'' as per Texinfo's
17075 documentation.
17076 Use @copying.
17077
1a715ef2
AD
170782002-07-09 Akim Demaille <akim@epita.fr>
17079
17080 * lib/quotearg.h: Protect against multiple inclusions.
17081 * src/location.h (location_t): Add a `file' member.
17082 (LOCATION_RESET, LOCATION_PRINT): Adjust.
17083 * src/complain.c (warn_at, complain_at, fatal_at): Drop
17084 `error_one_per_line' support.
17085
a5d50994
AD
170862002-07-09 Akim Demaille <akim@epita.fr>
17087
17088 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
17089 * src/reader.c (lineno): Remove.
17090 Adjust all dependencies.
17091 (get_merge_function): Take a location and use complain_at.
17092 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
17093 * tests/regression.at (Invalid inputs, Mixing %token styles):
17094 Adjust.
17095
b275314e
AD
170962002-07-09 Akim Demaille <akim@epita.fr>
17097
17098 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
17099 recovery rule, and forbid extensions when --yacc.
17100 (gram_error): Use complain_at.
17101 * src/reader.c (reader): Exit if there were parse errors.
17102
865b9df1
AD
171032002-07-09 Akim Demaille <akim@epita.fr>
17104
17105 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
17106 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
17107 Reported by R Blake <blakers@mac.com>.
17108
c76e14da
AD
171092002-07-09 Akim Demaille <akim@epita.fr>
17110
17111 * data/yacc.c: Output the copyright notive in the header.
17112
7db2ed2d
AD
171132002-07-03 Akim Demaille <akim@epita.fr>
17114
17115 * src/output.c (froms, tos): Are state_number_t.
17116 (save_column): sp, sp1, and sp2 are state_number_t.
17117 (prepare): Rename `final' as `final_state_number', `nnts' as
17118 `nterms_number', `nrules' as `rules_number', `nstates' as
17119 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
17120 unused.
17121 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
17122 * data/lalr1.cc (nsym_): Remove, unused.
17123
e68e0410
AD
171242002-07-03 Akim Demaille <akim@epita.fr>
17125
17126 * src/lalr.h, src/lalr.c (goto_number_t): New.
17127 * src/lalr.c (goto_list_t): New.
17128 Propagate them.
17129 * src/nullable.c (rule_list_t): New.
17130 Propagate.
17131 * src/types.h: Remove.
17132
e1a4f3a4
AD
171332002-07-03 Akim Demaille <akim@epita.fr>
17134
17135 * src/closure.c (print_fderives): Use rule_rhs_print.
17136 * src/derives.c (print_derives): Use rule_rhs_print.
17137 (rule_list_t): New, replaces `shorts'.
17138 (set_derives): Add comments.
17139 * tests/sets.at (Nullable, Firsts): Adjust.
17140
536545f3
AD
171412002-07-03 Akim Demaille <akim@epita.fr>
17142
17143 * src/output.c (prepare_actions): Free `tally' and `width'.
17144 (prepare_actions): Allocate and free `order'.
17145 * src/symtab.c (symbols_free): Free `symbols'.
17146 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
17147 * src/output.c (m4_invoke): Move to...
17148 * src/scan-skel.l: here.
17149 (<<EOF>>): Close yyout, and free its name.
17150
8b752b00
AD
171512002-07-03 Akim Demaille <akim@epita.fr>
17152
17153 Fix some memory leaks, and fix a bug: state 0 was examined twice.
17154
17155 * src/LR0.c (new_state): Merge into...
17156 (state_list_append): this.
17157 (new_states): Merge into...
17158 (generate_states): here.
17159 (set_states): Don't ensure a proper `errs' state member here, do it...
17160 * src/conflicts.c (conflicts_solve): here.
17161 * src/state.h, src/state.c: Comment changes.
17162 (state_t): Rename member `shifts' as `transitions'.
17163 Adjust all dependencies.
17164 (errs_new): For consistency, also take the values as argument.
17165 (errs_dup): Remove.
17166 (state_errs_set): New.
17167 (state_reductions_set, state_transitions_set): Assert that no
17168 previous value was assigned.
17169 (state_free): New.
17170 (states_free): Use it.
17171 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
17172 temporary storage: use `errs' and `nerrs' as elsewhere.
17173 (set_conflicts): Allocate and free this `errs'.
17174
613f5e1a
AD
171752002-07-02 Akim Demaille <akim@epita.fr>
17176
17177 * lib/libiberty.h: New.
17178 * lib: Update the bitset implementation from upstream.
17179 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
17180 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
17181 * src/main.c: Adjust bitset stats calls.
17182
26e0cadc
PE
171832002-07-01 Paul Eggert <eggert@twinsun.com>
17184
17185 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
17186 char, so that negative chars don't collide with $.
17187
1154cced
AD
171882002-06-30 Akim Demaille <akim@epita.fr>
17189
17190 Have the GLR tests be `warning' checked, and fix the warnings.
17191
17192 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
17193 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
17194 (yyremoveDeletes): `yyi' and `yyj' are size_t.
17195 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
17196 (yyaddDeferredAction): static.
17197 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
17198 (yyreportParseError): yyprefix is const.
17199 yytokenp is used only when verbose.
17200 (yy__GNUC__): Replace with __GNUC__.
17201 (yypdumpstack): yyi is size_t.
17202 (yypreference): Un-yy local variables and arguments, to avoid
17203 clashes with `yyr1'. Anyway, we are not in the user name space.
17204 (yytname_size): be an int, as is compared with ints.
17205 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
17206 Use them.
17207 * tests/cxx-gram.at: Use quotation to protect $1.
17208 Use AT_COMPILE to enable warnings hunts.
17209 Prototype yylex and yyerror.
17210 `Use' argc.
17211 Include `string.h', not `strings.h'.
17212 Produce and prototype stmtMerge only when used.
17213 yylex takes a location.
17214
97650f4e
AD
172152002-06-30 Akim Demaille <akim@epita.fr>
17216
17217 We spend a lot of time in quotearg, in particular when --verbose.
17218
17219 * src/symtab.c (symbol_get): Store a quoted version of the key.
17220 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
17221 Adjust all callers.
17222
d2576365
AD
172232002-06-30 Akim Demaille <akim@epita.fr>
17224
17225 * src/state.h (reductions_t): Rename member `nreds' as num.
17226 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
17227 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
17228
ccaf65bc
AD
172292002-06-30 Akim Demaille <akim@epita.fr>
17230
17231 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
17232 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
17233 (shifts_to): Rename as...
17234 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
17235 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
17236 (TRANSITION_IS_DISABLED, transitions_to): these.
17237
87675353
AD
172382002-06-30 Akim Demaille <akim@epita.fr>
17239
17240 * src/print.c (print_shifts, print_gotos): Merge into...
17241 (print_transitions): this.
17242 (print_transitions, print_errs, print_reductions): Align the
17243 lookaheads columns.
17244 (print_core, print_transitions, print_errs, print_state,
17245 print_grammar): Output empty lines separator before, not after.
17246 (state_default_rule_compute): Rename as...
17247 (state_default_rule): this.
17248 * tests/conflicts.at (Defaulted Conflicted Reduction),
17249 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
17250 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
17251
ce4ccb4b
AD
172522002-06-30 Akim Demaille <akim@epita.fr>
17253
17254 Display items as we display rules.
17255
17256 * src/gram.h, src/gram.c (rule_lhs_print): New.
17257 * src/gram.c (grammar_rules_partial_print): Use it.
17258 * src/print.c (print_core): Likewise.
17259 * tests/conflicts.at (Defaulted Conflicted Reduction),
17260 (Unresolved SR Conflicts): Adjust.
17261 (Unresolved SR Conflicts): Adjust and rename as...
17262 (Resolved SR Conflicts): this, as was meant.
17263 * tests/regression.at (Web2c Report): Adjust.
17264
bc933ef1
AD
172652002-06-30 Akim Demaille <akim@epita.fr>
17266
17267 * src/print.c (state_default_rule_compute): New, extracted from...
17268 (print_reductions): here.
17269 Pessimize, but clarify the code.
17270 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
17271
53d4308d
AD
172722002-06-30 Akim Demaille <akim@epita.fr>
17273
17274 * src/output.c (action_row): Let default_rule be always a rule
17275 number.
17276
574fb2d5
AD
172772002-06-30 Akim Demaille <akim@epita.fr>
17278
17279 * src/closure.c (print_firsts, print_fderives, closure):
17280 Use BITSET_EXECUTE.
17281 * src/lalr.c (lookaheads_print): Likewise.
17282 * src/state.c (state_rule_lookaheads_print): Likewise.
17283 * src/print_graph.c (print_core): Likewise.
17284 * src/print.c (print_reductions): Likewise.
17285 * src/output.c (action_row): Likewise.
17286 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
17287
05811fd7
AD
172882002-06-30 Akim Demaille <akim@epita.fr>
17289
17290 * src/print_graph.c: Use report_flag.
17291
0e4d5753
AD
172922002-06-30 Akim Demaille <akim@epita.fr>
17293
17294 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
17295 to...
17296 * src/relation.h, src/relation.c (traverse, relation_digraph)
17297 (relation_print, relation_transpose): New.
17298
24c7d800
AD
172992002-06-30 Akim Demaille <akim@epita.fr>
17300
17301 * src/state.h, src/state.c (shifts_to): New.
17302 * src/lalr.c (build_relations): Use it.
17303
9222837b
AD
173042002-06-30 Akim Demaille <akim@epita.fr>
17305
17306 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
17307 (item_number_of_rule_number, rule_number_of_item_number): New.
17308 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
17309 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
17310 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
17311 Propagate their use.
17312 Much remains to be done, in particular wrt `shorts' from types.h.
17313
260008e5
AD
173142002-06-30 Akim Demaille <akim@epita.fr>
17315
17316 * src/symtab.c (symbol_new): Initialize the `printer' member.
17317
8a731ca8
AD
173182002-06-30 Akim Demaille <akim@epita.fr>
17319
17320 * src/LR0.c (save_reductions): Remove, replaced by...
17321 * src/state.h, src/state.c (state_reductions_set): New.
17322 (reductions, errs): Rename as...
17323 (reductions_t, errs_t): these.
17324 Adjust all dependencies.
17325
32e1e0a4
AD
173262002-06-30 Akim Demaille <akim@epita.fr>
17327
17328 * src/LR0.c (state_list_t, state_list_append): New.
17329 (first_state, last_state): Now symbol_list_t.
17330 (this_state): Remove.
17331 (new_itemsets, append_states, save_reductions): Take a state_t as
17332 argument.
17333 (set_states, generate_states): Adjust.
17334 (save_shifts): Remove, replaced by...
17335 * src/state.h, src/state.c (state_shifts_set): New.
17336 (shifts): Rename as...
17337 (shifts_t): this.
17338 Adjust all dependencies.
17339 * src/state.h (state_t): Remove the `next' member.
17340
e5fb6710
AD
173412002-06-30 Akim Demaille <akim@epita.fr>
17342
17343 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
17344 escaped in slot 0.
17345
c7ca99d4
AD
173462002-06-30 Akim Demaille <akim@epita.fr>
17347
17348 Use hash.h for the state hash table.
17349
17350 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
17351 (allocate_storage): Use state_hash_new.
17352 (free_storage): Use state_hash_free.
17353 (new_state, get_state): Adjust.
17354 * src/lalr.h, src/lalr.c (states): Move to...
17355 * src/states.h (state_t): Remove the `link' member, no longer
17356 used.
17357 * src/states.h, src/states.c: here.
17358 (state_hash_new, state_hash_free, state_hash_lookup)
17359 (state_hash_insert, states_free): New.
17360 * src/states.c (state_table, state_compare, state_hash): New.
17361 * src/output.c (output_actions): Do not free states now, since we
17362 still need to know the final_state number in `prepare', called
17363 afterwards. Do it...
17364 * src/main.c (main): here: call states_free after `output'.
17365
df0e7316
AD
173662002-06-30 Akim Demaille <akim@epita.fr>
17367
17368 * src/state.h, src/state.c (state_new): New, extracted from...
17369 * src/LR0.c (new_state): here.
17370 * src/state.h (STATE_ALLOC): Move to...
17371 * src/state.c: here.
17372 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
17373 * src/state.h, src/state.c: here.
17374
39f41916
AD
173752002-06-30 Akim Demaille <akim@epita.fr>
17376
17377 * src/reader.c (gensym): Rename as...
17378 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
17379 (getsym): Rename as...
17380 (symbol_get): this.
17381
d57650a5
AD
173822002-06-30 Akim Demaille <akim@epita.fr>
17383
17384 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
17385 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
17386 * src/output.c, src/print.c, src/print_graph.c: Propagate.
17387 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
17388
5a08f1ce
AD
173892002-06-30 Akim Demaille <akim@epita.fr>
17390
17391 Make the test suite pass with warnings checked.
17392
17393 * tests/actions.at (Printers and Destructors): Improve.
17394 Avoid unsigned vs. signed issues.
17395 * tests/calc.at: Don't exercise the scanner here, do it...
17396 * tests/input.at (Torturing the Scanner): here.
17397
720623af
PH
173982002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17399
88e7e941 17400 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
17401 reorganize first lines parallel to yacc.c.
17402
fb8135fa
AD
174032002-06-28 Akim Demaille <akim@epita.fr>
17404
17405 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
17406 (b4_token_enum, b4_token_defines): New, factored from...
17407 * data/lalr1.cc, data/yacc.c, glr.c: here.
17408
41442480
AD
174092002-06-28 Akim Demaille <akim@epita.fr>
17410
17411 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
17412 unused variables.
17413 * src/output.c (merger_output): static.
17414
e0e5bf84
AD
174152002-06-28 Akim Demaille <akim@epita.fr>
17416
ba0fe3c7 17417 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
17418 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
17419 pacify GCC.
17420 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 17421
676385e2
PH
174222002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17423
17424 Accumulated changelog for new GLR parsing features.
17425
6a254321 17426 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
17427 conflicts_total_count.
17428 * src/conflicts.h: Ditto.
17429 * src/output.c (token_actions): Use the new name.
17430 (output_conflicts): Change conflp => conflict_list_heads, and
17431 confl => conflict_list for better readability.
17432 * data/glr.c: Use the new names.
17433 * NEWS: Add self to GLR announcement.
e0e5bf84 17434
676385e2
PH
17435 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
17436
17437 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
17438 Akim Demaille.
17439
17440 * data/bison.glr: Change name to glr.c
17441 * data/glr.c: Renamed from bison.glr.
17442 * data/Makefile.am: Add glr.c
e0e5bf84
AD
17443
17444 * src/getargs.c:
17445
676385e2 17446 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 17447 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 17448
676385e2
PH
17449 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17450
17451 * data/bison.glr: Be sure to restore the
17452 current #line when returning to the skeleton contents after having
17453 exposed the input file's #line.
17454
17455 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17456
17457 * data/bison.glr: Bring up to date with changes to bison.simple.
17458
17459 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17460
17461 * data/bison.glr: Correct definitions that use b4_prefix.
17462 Various reformatting.
17463 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
17464 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
17465 yytokenp argument; now part of stack.
17466 (yychar): Define to behave as documented.
17467 (yyclearin): Ditto.
e0e5bf84 17468
676385e2
PH
17469 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17470
17471 * src/reader.h: Add declaration for free_merger_functions.
17472
17473 * src/reader.c (merge_functions): New variable.
17474 (get_merge_function): New function.
17475 (free_merger_functions): New function.
17476 (readgram): Check for %prec that is not followed by a symbol.
17477 Handle %dprec and %merge declarations.
17478 (packgram): Initialize dprec and merger fields in rules array.
17479
17480 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
17481 conflict_list_cnt, conflict_list_free): New variables.
17482 (table_grow): Also grow conflict_table.
e0e5bf84 17483 (prepare_rules): Output dprec and merger tables.
676385e2 17484 (conflict_row): New function.
e0e5bf84 17485 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
17486 default reduction in conflicted states for GLR parser so that there
17487 are spaces for the conflict lists.
17488 (save_row): Also save conflict information.
17489 (token_actions): Allocate conflict list.
17490 (merger_output): New function.
17491 (pack_vector): Pack conflict table, too.
17492 (output_conflicts): New function to output yyconflp and yyconfl.
17493 (output_check): Allocate conflict_tos.
17494 (output_actions): Output conflict tables, also.
17495 (output_skeleton): Output b4_mergers definition.
17496 (prepare): Output b4_max_rhs_length definition.
17497 Use 'bison.glr' as default skeleton for GLR parsers.
17498
17499 * src/gram.c (glr_parser): New flag.
17500 (grammar_free): Call free_merger_functions.
17501
17502 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
17503 all pairs of conflicting reductions, rather than just all tokens
17504 causing conflicts. Needed to size conflict tables.
e0e5bf84 17505 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
17506 interface.
17507 (conflicts_print): Ditto.
17508 (count_total_conflicts): New function.
17509
17510 * src/reader.h (merger_list): New type.
17511 (merge_functions): New variable.
17512
17513 * src/lex.h (tok_dprec, tok_merge): New token types.
17514
17515 * src/gram.h (rule_s): Add dprec and merger fields.
17516 (glr_parser): New flag.
17517
17518 * src/conflicts.h (count_total_conflicts): New function.
17519
17520 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
17521
17522 * doc/bison.texinfo (Generalized LR Parsing): New section.
17523 (GLR Parsers): New section.
17524 (Language and Grammar): Mention GLR parsing.
17525 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
17526 Correct typo ("tge" -> "the").
17527
17528 * data/bison.glr: New skeleton for GLR parsing.
17529
17530 * tests/cxx-gram.at: New tests for GLR parsing.
17531
17532 * tests/testsuite.at: Include cxx-gram.at.
17533
17534 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 17535
676385e2
PH
17536 * src/parse-gram.y:
17537
17538 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
17539
17540 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 17541
b5480d74 175422002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
17543
17544 * src/options.h, src/options.c: Remove.
17545 * src/getargs.c (short_options, long_options): New.
17546
60491a94
AD
175472002-06-27 Akim Demaille <akim@epita.fr>
17548
17549 * data/bison.simple, data/bison.c++: Rename as...
17550 * data/yacc.c, data/lalr1.cc: these.
17551 * doc/bison.texinfo (Environment Variables): Remove.
17552
9be0c25b
AD
175532002-06-25 Raja R Harinath <harinath@cs.umn.edu>
17554
17555 * src/getargs.c (report_argmatch): Initialize strtok().
17556
1ae72863
AD
175572002-06-20 Akim Demaille <akim@epita.fr>
17558
17559 * data/bison.simple (b4_symbol_actions): New, replaces...
17560 (b4_symbol_destructor, b4_symbol_printer): these.
17561 (yysymprint): Be sure to call YYPRINT only for tokens, and using
17562 user token numbers.
17563
87542d29
AD
175642002-06-20 Akim Demaille <akim@epita.fr>
17565
17566 * data/bison.simple (yydestructor): Rename as...
17567 (yydestruct): this.
17568
1a31ed21
AD
175692002-06-20 Akim Demaille <akim@epita.fr>
17570
17571 * src/symtab.h, src/symtab.c (symbol_type_set)
17572 (symbol_destructor_set, symbol_precedence_set): The location is
17573 the last argument.
17574 Adjust all callers.
17575
e776192e
AD
175762002-06-20 Akim Demaille <akim@epita.fr>
17577
17578 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
17579 internals.
17580 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
17581 Takes a location.
17582 * src/symtab.h, src/symtab.c (symbol_class_set)
17583 (symbol_user_token_number_set): Likewise.
17584 Adjust all callers.
17585 Promote complain_at.
17586 * tests/input.at (Type Clashes): Adjust.
17587
5c1180b3
AD
175882002-06-20 Akim Demaille <akim@epita.fr>
17589
17590 * data/bison.simple (YYLEX): Fix the declaration when
17591 %pure-parser.
17592
e3170060
AD
175932002-06-20 Akim Demaille <akim@epita.fr>
17594
17595 * data/bison.simple (yysymprint): Don't print the token number,
17596 just its name.
17597 * tests/actions.at (Destructors): Rename as...
17598 (Printers and Destructors): this.
17599 Also exercise %printer.
17600
253862fd
AD
176012002-06-20 Akim Demaille <akim@epita.fr>
17602
17603 * data/bison.simple (YYDSYMPRINT): New.
17604 Use it to remove many of the #if YYDEBUG/if (yydebug).
17605
366eea36
AD
176062002-06-20 Akim Demaille <akim@epita.fr>
17607
17608 * src/symtab.h, src/symtab.c (symbol_t): printer and
17609 printer_location are new members.
17610 (symbol_printer_set): New.
17611 * src/parse-gram.y (PERCENT_PRINTER): New token.
17612 Handle its associated rule.
17613 * src/scan-gram.l: Adjust.
17614 (handle_destructor_at, handle_destructor_dollar): Rename as...
17615 (handle_symbol_code_at, handle_symbol_code_dollar): these.
17616 * src/output.c (symbol_printers_output): New.
17617 (output_skeleton): Call it.
17618 * data/bison.simple (yysymprint): New. Cannot be named yyprint
17619 since there are already many grammar files with a user `yyprint'.
17620 Replace the calls to YYPRINT to calls to yysymprint.
17621 * tests/calc.at: Adjust.
17622 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
17623 taking advantage of parser very internal details (stack size!).
17624
4f25ebb0
AD
176252002-06-20 Akim Demaille <akim@epita.fr>
17626
17627 * src/scan-gram.l: Complete the scanner with the missing patterns
17628 to pacify Flex.
17629 Use `quote' and `symbol_tag_get' where appropriate.
17630
93b68a0e
AD
176312002-06-19 Akim Demaille <akim@epita.fr>
17632
17633 * tests/actions.at (Destructors): Augment to test locations.
17634 * data/bison.simple (yydestructor): Pass it the current location
17635 if locations are enabled.
17636 Prototype only when __STDC__ or C++.
17637 Change the argument names to move into the yy name space: there is
17638 user code here.
17639
58612f1d
AD
176402002-06-19 Akim Demaille <akim@epita.fr>
17641
74310291
AD
17642 * data/bison.simple (b4_pure_if): New.
17643 Use it instead of #ifdef YYPURE.
17644
176452002-06-19 Akim Demaille <akim@epita.fr>
17646
17647 * data/bison.simple (b4_location_if): New.
58612f1d
AD
17648 Use it instead of #ifdef YYLSP_NEEDED.
17649
f25bfb75
AD
176502002-06-19 Akim Demaille <akim@epita.fr>
17651
17652 Prepare @$ in %destructor, but currently don't bind it in the
17653 skeleton, as %location use is not cleaned up yet.
17654
17655 * src/scan-gram.l (handle_dollar, handle_destructor_at)
17656 (handle_action_at): New.
17657 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
17658 a braced_code_t and a location as additional arguments.
17659 (handle_destructor_dollar): Instead of requiring `b4_eval', just
17660 unquote one when outputting `b4_dollar_dollar'.
17661 Adjust callers.
17662 * data/bison.simple (b4_eval): Remove.
17663 (b4_symbol_destructor): Adjust.
17664 * tests/input.at (Invalid @n): Adjust.
17665
c732d2c6
AD
176662002-06-19 Zack Weinberg <zack@codesourcery.com>
17667
17668 * doc/bison.texinfo: Document ability to have multiple
17669 prologue sections.
17670
8c165d89
AD
176712002-06-18 Akim Demaille <akim@epita.fr>
17672
17673 * src/files.c (compute_base_names): When computing the output file
17674 names from the input file name, strip the directory part.
17675
ca98bf57
AD
176762002-06-18 Akim Demaille <akim@epita.fr>
17677
17678 * data/bison.simple.new: Comment changes.
17679 Reported by Andreas Schwab.
17680
0bfb02ff
AD
176812002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
17682
17683 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
17684 there are no `label `yyoverflowlab' defined but not used' warnings
17685 when yyoverflow is defined.
17686
24c0aad7
AD
176872002-06-18 Akim Demaille <akim@epita.fr>
17688
17689 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
17690 new member.
17691 (symbol_destructor_set): Adjust.
17692 * src/output.c (symbol_destructors_output): Output the destructor
17693 locations.
17694 Output the symbol name.
17695 * data/bison.simple (b4_symbol_destructor): Adjust.
17696
5719c109
AD
176972002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
17698 and Akim Demaille <akim@epita.fr>
17699
17700 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
17701 what's left on the stack when the error recovery hits EOF.
17702 * tests/actions.at (Destructors): Complete to exercise this case.
17703
9280d3ef
AD
177042002-06-17 Akim Demaille <akim@epita.fr>
17705
17706 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
17707 arguments is really empty, not only equal to `[]'.
17708 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
17709 member.
17710 (symbol_destructor_set): New.
17711 * src/output.c (symbol_destructors_output): New.
17712 * src/reader.h (brace_code_t, current_braced_code): New.
17713 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
17714 (handle_dollar): Rename as...
17715 (handle_action_dollar): this.
17716 (handle_destructor_dollar): New.
17717 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
17718 (grammar_declaration): Use it.
17719 * data/bison.simple (yystos): Is always defined.
17720 (yydestructor): New.
17721 * tests/actions.at (Destructors): New.
17722 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
17723
dafdc66f
AD
177242002-06-17 Akim Demaille <akim@epita.fr>
17725
17726 * src/symlist.h, src/symlist.c (symbol_list_length): New.
17727 * src/scan-gram.l (handle_dollar, handle_at): Compute the
17728 rule_length only when needed.
17729 * src/output.c (actions_output, token_definitions_output): Output
17730 the full M4 block.
17731 * src/symtab.c: Don't access directly to the symbol tag, use
17732 symbol_tag_get.
17733 * src/parse-gram.y: Use symbol_list_free.
17734
56c47203
AD
177352002-06-17 Akim Demaille <akim@epita.fr>
17736
17737 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
17738 (symbol_list_prepend, get_type_name): Move to...
17739 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
17740 (symbol_list_prepend, symbol_list_n_type_name_get): here.
17741 Adjust all callers.
17742 (symbol_list_free): New.
17743 * src/scan-gram.l (handle_dollar): Takes a location.
17744 * tests/input.at (Invalid $n): Adjust.
17745
1e0bab92
AD
177462002-06-17 Akim Demaille <akim@epita.fr>
17747
17748 * src/reader.h, src/reader.c (symbol_list_new): Export it.
17749 (symbol_list_prepend): New.
17750 * src/parse-gram.y (%union): `list' is a new member.
17751 (symbols.1): New, replaces...
17752 (terms_to_prec.1, nterms_to_type.1): these.
17753 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
17754 Take a location as additional argument.
17755 Adjust all callers.
17756
04e60654
AD
177572002-06-15 Akim Demaille <akim@epita.fr>
17758
17759 * src/parse-gram.y: Move %token in the declaration section so that
17760 we don't depend upon CVS Bison.
17761
10e5b8bd
AD
177622002-06-15 Akim Demaille <akim@epita.fr>
17763
17764 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
17765 * src/print.c (print_core): Use it.
17766
9801d40c
AD
177672002-06-15 Akim Demaille <akim@epita.fr>
17768
17769 * src/conflicts.c (log_resolution): Accept the rule involved in
17770 the sr conflicts instead of the lookahead number that points to
17771 that rule.
17772 (flush_reduce): Accept the current lookahead vector as argument,
17773 instead of the index in LA.
17774 (resolve_sr_conflict): Accept the current number of lookahead
17775 bitset to consider for the STATE, instead of the index in LA.
17776 (set_conflicts): Adjust.
17777 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
17778
c0263492
AD
177792002-06-15 Akim Demaille <akim@epita.fr>
17780
17781 * src/state.h (state_t): Replace the `lookaheadsp' member, a
17782 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
17783 Adjust all dependencies.
17784 * src/lalr.c (initialize_lookaheads): Split into...
17785 (states_lookaheads_count, states_lookaheads_initialize): these.
17786 (lalr): Adjust.
17787
9757c359
AD
177882002-06-15 Akim Demaille <akim@epita.fr>
17789
17790 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
17791 out of...
17792 (grammar_rules_print): here.
17793 * src/reduce.c (reduce_output): Use it.
17794 * tests/reduce.at (Useless Rules, Reduced Automaton)
17795 (Underivable Rules): Adjust.
17796
6b98e4b5
AD
177972002-06-15 Akim Demaille <akim@epita.fr>
17798
17799 Copy BYacc's nice way to report the grammar.
17800
17801 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
17802 New.
17803 Don't print the rules' location, it is confusing and useless.
17804 (rule_print): Use grammar_rhs_print.
17805 * src/print.c (print_grammar): Use grammar_rules_print.
17806
6b98e4b5
AD
178072002-06-15 Akim Demaille <akim@epita.fr>
17808
17809 Complete and rationalize `useless thing' warnings.
17810
17811 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
17812 (symbol_tag_print): New.
17813 Use them everywhere in place of accessing directly the tag member.
17814 * src/gram.h, src/gram.c (rule_print): New.
17815 Use it where a rule used to be printed `by hand'.
17816 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
17817 (reduce_grammar_tables): Report the useless rules.
17818 (reduce_print): Useless things are a warning, not an error.
17819 Report it as such.
17820 * tests/reduce.at (Useless Nonterminals, Useless Rules):
17821 (Reduced Automaton, Underivable Rules): Adjust.
17822 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
17823 * tests/conflicts.at (Unresolved SR Conflicts)
17824 (Solved SR Conflicts): Adjust.
17825
ee000ba4
AD
178262002-06-15 Akim Demaille <akim@epita.fr>
17827
17828 Let symbols have a location.
17829
17830 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
17831 (getsym): Adjust.
17832 Adjust all callers.
17833 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
17834 Use location_t, not int.
17835 * src/symtab.c (symbol_check_defined): Take advantage of the
17836 location.
17837 * tests/regression.at (Invalid inputs): Adjust.
17838
8efe435c
AD
178392002-06-15 Akim Demaille <akim@epita.fr>
17840
17841 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
17842 (input): Don't try to initialize yylloc here, do it in the
17843 scanner.
17844 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
17845 * src/gram.h (rule_t): Change line and action_line into location
17846 and action_location, of location_t type.
17847 Adjust all dependencies.
17848 * src/location.h, src/location.c (empty_location): New.
17849 * src/reader.h, src/reader.c (grammar_start_symbol_set)
17850 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
17851 (grammar_current_rule_symbol_append)
17852 (grammar_current_rule_action_append): Expect a location as argument.
17853 * src/reader.c (grammar_midrule_action): Adjust to attach an
17854 action's location as dummy symbol location.
17855 * src/symtab.h, src/symtab.c (startsymbol_location): New.
17856 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
17857 the line numbers.
17858
1921f1d7
AD
178592002-06-14 Akim Demaille <akim@epita.fr>
17860
17861 Grammar declarations may be found in the grammar section.
17862
17863 * src/parse-gram.y (rules_or_grammar_declaration): New.
17864 (declarations): Each declaration may end with a semicolon, not
17865 just...
17866 (grammar_declaration): `"%union"'.
17867 (grammar): Branch to rules_or_grammar_declaration.
17868
4515534c
AD
178692002-06-14 Akim Demaille <akim@epita.fr>
17870
17871 * src/main.c (main): Invoke scanner_free.
17872
f958596b
AD
178732002-06-14 Akim Demaille <akim@epita.fr>
17874
17875 * src/output.c (m4_invoke): Extracted from...
17876 (output_skeleton): here.
17877 Free tempfile.
17878
2c569025
AD
178792002-06-14 Akim Demaille <akim@epita.fr>
17880
17881 * src/parse-gram.y (directives, directive, gram)
17882 (grammar_directives, precedence_directives, precedence_directive):
17883 Rename as...
17884 (declarations, declaration, grammar, grammar_declaration)
17885 (precedence_declaration, precedence_declarator): these.
17886 (symbol_declaration): New.
17887
592e8d4d
AD
178882002-06-14 Akim Demaille <akim@epita.fr>
17889
17890 * src/files.c (action_obstack): Remove, unused.
17891 (output_obstack): Remove it, and all its dependencies, as it is no
17892 longer needed.
17893 * src/reader.c (epilogue_set): Build the epilogue in the
17894 muscle_obstack.
17895 * src/output.h, src/output.c (muscle_obstack): Move to...
17896 * src/muscle_tab.h, src/muscle_tab.h: here.
17897 (muscle_init): Initialize muscle_obstack.
17898 (muscle_free): New.
17899 * src/main.c (main): Call it.
17900
0c15323d
AD
179012002-06-14 Akim Demaille <akim@epita.fr>
17902
17903 * src/location.h: New, extracted from...
17904 * src/reader.h: here.
17905 * src/Makefile.am (noinst_HEADERS): Merge into
17906 (bison_SOURCES): this.
17907 Add location.h.
17908 * src/parse-gram.y: Use location_t instead of Bison's.
17909 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
17910 Use location_t instead of ints.
17911
e96c9728
AD
179122002-06-14 Akim Demaille <akim@epita.fr>
17913
17914 * data/bison.simple, data/bison.c++: Be sure to restore the
17915 current #line when returning to the skeleton contents after having
17916 exposed the input file's #line.
17917
75d1fe16
AD
179182002-06-12 Akim Demaille <akim@epita.fr>
17919
17920 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
17921 eager.
17922 * tests/actions.at (Exotic Dollars): New.
17923
6c35d22c
AD
179242002-06-12 Akim Demaille <akim@epita.fr>
17925
17926 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
17927 ['"/] too eagerly.
17928 * tests/input.at (Torturing the Scanner): New.
17929
1d6412ad
AD
179302002-06-11 Akim Demaille <akim@epita.fr>
17931
17932 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
17933 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
17934 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
17935 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
17936 * src/reader.c (reader): Use it.
17937
4cdb01db
AD
179382002-06-11 Akim Demaille <akim@epita.fr>
17939
17940 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
17941 Adjust all callers.
17942 (scanner_last_string_free): New.
17943
44995b2e
AD
179442002-06-11 Akim Demaille <akim@epita.fr>
17945
17946 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
17947 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
17948 (last_string, YY_OBS_FREE): New.
17949 Use them when returning an ID.
17950
e9955c83
AD
179512002-06-11 Akim Demaille <akim@epita.fr>
17952
17953 Have Bison grammars parsed by a Bison grammar.
17954
17955 * src/reader.c, src/reader.h (prologue_augment): New.
17956 * src/reader.c (copy_definition): Remove.
17957
17958 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
17959 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
17960 (grammar_current_rule_prec_set, grammar_current_rule_check)
17961 (grammar_current_rule_symbol_append)
17962 (grammar_current_rule_action_append): Export.
17963 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
17964 (symbol_list_action_append): Remove.
17965 Hook the routines from reader.
17966 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
17967 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
17968
17969 * src/reader.c (read_declarations): Remove, unused.
17970
17971 * src/parse-gram.y: Handle the epilogue.
17972 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
17973 (grammar_start_symbol_set): this.
17974 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
17975 * src/reader.c (readgram): Remove, unused.
17976 (reader): Adjust to insert eoftoken and axiom where appropriate.
17977
17978 * src/reader.c (copy_dollar): Replace with...
17979 * src/scan-gram.h (handle_dollar): this.
17980 * src/parse-gram.y: Remove `%thong'.
17981
17982 * src/reader.c (copy_at): Replace with...
17983 * src/scan-gram.h (handle_at): this.
17984
17985 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
17986 New.
17987
17988 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
17989 time being.
17990
17991 * src/reader.h, src/reader.c (grammar_rule_end): New.
17992
17993 * src/parse.y (current_type, current_class): New.
17994 Implement `%nterm', `%token' support.
17995 Merge `%term' into `%token'.
17996 (string_as_id): New.
17997 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
17998 type name.
17999
18000 * src/parse-gram.y: Be sure to handle properly the beginning of
18001 rules.
18002
18003 * src/parse-gram.y: Handle %type.
18004 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
18005
18006 * src/parse-gram.y: More directives support.
18007 * src/options.c: No longer handle source directives.
18008
18009 * src/parse-gram.y: Fix %output.
18010
18011 * src/parse-gram.y: Handle %union.
18012 Use the prologue locations.
18013 * src/reader.c (parse_union_decl): Remove.
18014
18015 * src/reader.h, src/reader.c (epilogue_set): New.
18016 * src/parse-gram.y: Use it.
18017
18018 * data/bison.simple, data/bison.c++: b4_stype is now either not
18019 defined, then default to int, or to the contents of %union,
18020 without `union' itself.
18021 Adjust.
18022 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
18023
18024 * src/output.c (actions_output): Don't output braces, as they are
18025 already handled by the scanner.
18026
18027 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
18028 characters to themselves.
18029
18030 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
18031 that the epilogue has a proper #line.
18032
18033 * src/parse-gram.y: Handle precedence/associativity.
18034
18035 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
18036 a terminal.
18037 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
18038 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
18039 at all to define terminals that cannot be emitted.
18040
18041 * src/scan-gram.l: Escape M4 characters.
18042
18043 * src/scan-gram.l: Working properly with escapes in user
18044 strings/characters.
18045
18046 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
18047 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
18048 grammar.
18049 Use more modest sizes, as for the time being the parser does not
18050 release memory, and therefore the process swallows a huge amount
18051 of memory.
18052
18053 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
18054 stricter %token grammar.
18055
18056 * src/symtab.h (associativity): Add `undef_assoc'.
18057 (symbol_precedence_set): Do nothing when passed an undef_assoc.
18058 * src/symtab.c (symbol_check_alias_consistence): Adjust.
18059
18060 * tests/regression.at (Invalid %directive): Remove, as it is now
18061 meaningless.
18062 (Invalid inputs): Adjust to the new error messages.
18063 (Token definitions): The new grammar doesn't allow too many
18064 eccentricities.
18065
18066 * src/lex.h, src/lex.c: Remove.
18067 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
18068 (copy_character, copy_string2, copy_string, copy_identifier)
18069 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
18070 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
18071 (parse_action): Remove.
18072 * po/POTFILES.in: Adjust.
18073
2e047461
AD
180742002-06-11 Akim Demaille <akim@epita.fr>
18075
cd05d13c 18076 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
18077 rule's action member: return the action as a string.
18078 Don't require `rule_length' as an argument: compute it.
18079 (grammar_current_rule_symbol_append)
18080 (grammar_current_rule_action_append): New, eved out from
18081 (readgram): here.
18082 Remove `action_flag', `rulelength', unused now.
18083
9af3fbce
AD
180842002-06-11 Akim Demaille <akim@epita.fr>
18085
18086 * src/reader.c (grammar_current_rule_prec_set).
18087 (grammar_current_rule_check): New, eved out from...
18088 (readgram): here.
18089 Remove `xaction', `first_rhs': useless.
18090 * tests/input.at (Type clashes): New.
18091 * tests/existing.at (GNU Cim Grammar): Adjust.
18092
1485e106
AD
180932002-06-11 Akim Demaille <akim@epita.fr>
18094
18095 * src/reader.c (grammar_midrule_action): New, Eved out from
18096 (readgram): here.
18097
da4160c3
AD
180982002-06-11 Akim Demaille <akim@epita.fr>
18099
18100 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
18101 New.
18102 (readgram): Use them as replacement of inlined code, crule and
18103 crule1.
18104
f6d0f937
AD
181052002-06-11 Akim Demaille <akim@epita.fr>
18106
18107 * src/reader.c (grammar_end, grammar_symbol_append): New.
18108 (readgram): Use them.
18109 Make the use of `p' as local as possible.
18110
69078d4b
AD
181112002-06-10 Akim Demaille <akim@epita.fr>
18112
18113 GCJ's parser requires the tokens to be defined before the prologue.
18114
18115 * data/bison.simple: Output the token definition before the user's
18116 prologue.
18117 * tests/regression.at (Braces parsing, Duplicate string)
18118 (Mixing %token styles): Check the output from bison.
18119 (Early token definitions): New.
18120
5e424082
AD
181212002-06-10 Akim Demaille <akim@epita.fr>
18122
18123 * src/symtab.c (symbol_user_token_number_set): Don't complain when
18124 assigning twice the same user number to a token, so that we can
18125 use it in...
18126 * src/lex.c (lex): here.
18127 Also use `symbol_class_set' instead of hand written code.
18128 * src/reader.c (parse_assoc_decl): Likewise.
18129
44536b35
AD
181302002-06-10 Akim Demaille <akim@epita.fr>
18131
18132 * src/symtab.c, src/symtab.c (symbol_class_set)
18133 (symbol_user_token_number_set): New.
18134 * src/reader.c (parse_token_decl): Use them.
18135 Use a switch instead of ifs.
18136 Use a single argument.
18137
8b9f2372
AD
181382002-06-10 Akim Demaille <akim@epita.fr>
18139
18140 Remove `%thong' support as it is undocumented, unused, duplicates
18141 `%token's job, and creates useless e-mail traffic with people who
18142 want to know what it is, why it is undocumented, unused, and
18143 duplicates `%token's job.
18144
18145 * src/reader.c (parse_thong_decl): Remove.
18146 * src/options.c (option_table): Remove "thong".
18147 * src/lex.h (tok_thong): Remove.
18148
3ae2b51f
AD
181492002-06-10 Akim Demaille <akim@epita.fr>
18150
18151 * src/symtab.c, src/symtab.c (symbol_type_set)
18152 (symbol_precedence_set): New.
18153 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
18154 (value_components_used): Remove, unused.
18155
2f1afb73
AD
181562002-06-09 Akim Demaille <akim@epita.fr>
18157
18158 Move symbols handling code out of the reader.
18159
18160 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
18161 (axiom): Move to...
18162 * src/symtab.h, src/symtab.c: here.
18163
18164 * src/gram.c (start_symbol): Remove: use startsymbol->number.
18165 * src/reader.c (startval): Rename as...
18166 * src/symtab.h, src/symtab.c (startsymbol): this.
18167 * src/reader.c: Adjust.
18168
18169 * src/reader.c (symbol_check_defined, symbol_make_alias)
18170 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18171 (token_translations_init)
18172 Move to...
18173 * src/symtab.c: here.
18174 * src/reader.c (packsymbols): Move to...
18175 * src/symtab.h, src/symtab.c (symbols_pack): here.
18176 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
18177 argument.
18178
e9bca3ad
AD
181792002-06-03 Akim Demaille <akim@epita.fr>
18180
18181 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
18182 then statements.
18183
86eff183
AD
181842002-06-03 Akim Demaille <akim@epita.fr>
18185
18186 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
18187 structs with non literals.
18188 * src/scan-skel.l: never-interactive.
18189 * src/conflicts.c (enum conflict_resolution_e): No trailing
18190 comma.
18191 * src/getargs.c (usage): Split long literal strings.
18192 Reported by Hans Aberg.
18193
717be197
AD
181942002-05-28 Akim Demaille <akim@epita.fr>
18195
18196 * data/bison.c++: Use C++ ostreams.
18197 (cdebug_): New member.
18198
670ddffd
AD
181992002-05-28 Akim Demaille <akim@epita.fr>
18200
18201 * src/output.c (output_skeleton): Be sure to allocate enough room
18202 for `/' _and_ for `\0' in full_skeleton.
18203
769b430f
AD
182042002-05-28 Akim Demaille <akim@epita.fr>
18205
18206 * data/bison.c++: Catch up with bison.simple:
18207 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18208 and Paul Eggert <eggert@twinsun.com>: `error' handing.
18209 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
18210 and popping traces.
18211
7067cb36
PH
182122002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18213
18214 * src/output.c (output_skeleton): Put an explicit path in front of
18215 the skeleton file name, rather than relying on the -I directory,
18216 to partially alleviate effects of having a skeleton file lying around
18217 in the current directory.
769b430f 18218
4a713ec2
PH
182192002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18220
769b430f 18221 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
18222 obstack_printf should be obstack_fgrow1.
18223
b408954b
AD
182242002-05-26 Akim Demaille <akim@epita.fr>
18225
18226 * src/state.h (state_t): `solved_conflicts' is a new member.
18227 * src/LR0.c (new_state): Set it to 0.
18228 * src/conflicts.h, src/conflicts.c (print_conflicts)
18229 (free_conflicts, solve_conflicts): Rename as...
18230 (conflicts_print, conflicts_free, conflicts_solve): these.
18231 Adjust callers.
18232 * src/conflicts.c (enum conflict_resolution_e)
18233 (solved_conflicts_obstack): New, used by...
18234 (log_resolution): this.
18235 Adjust to attach the conflict resolution to each state.
18236 Complete the description with the precedence/associativity
18237 information.
18238 (resolve_sr_conflict): Adjust.
18239 * src/print.c (print_state): Output its solved_conflicts.
18240 * tests/conflicts.at (Unresolved SR Conflicts)
18241 (Solved SR Conflicts): Exercise --report=all.
18242
a49aecd5
AD
182432002-05-26 Akim Demaille <akim@epita.fr>
18244
18245 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18246 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18247 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
18248 (token_number_t, item_number_as_token_number)
18249 (token_number_as_item_number, muscle_insert_token_number_table):
18250 Rename as...
18251 (symbol_number_t, item_number_as_symbol_number)
18252 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
18253 these, since it is more appropriate.
18254
5504898e
AD
182552002-05-26 Akim Demaille <akim@epita.fr>
18256
18257 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
18258 `Error:' lines.
18259 * data/bison.simple (yystos) [YYDEBUG]: New.
18260 (yyparse) [YYDEBUG]: Display the symbols which are popped during
18261 error recovery.
18262 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
18263
ec3bc396
AD
182642002-05-25 Akim Demaille <akim@epita.fr>
18265
18266 * doc/bison.texinfo (Debugging): Split into...
18267 (Tracing): this new section, its former contents, and...
18268 (Understanding): this new section.
18269 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
18270 by...
18271 (report_flag): this.
18272 Adjust all dependencies.
18273 (report_args, report_types, report_argmatch): New.
18274 (usage, getargs): Report/support -r, --report.
18275 * src/options.h
18276 (struct option_table_struct): Rename as..,
18277 (struct option_table_s): this.
18278 Rename the `set_flag' member to `flag' to match with getopt_long's
18279 struct.
18280 * src/options.c (option_table): Split verbose into an entry for
18281 %verbose, and another for --verbose.
18282 Support --report/-r, so remove -r from the obsolete --raw.
18283 * src/print.c: Attach full item sets and lookaheads reports to
18284 report_flag instead of trace_flag.
18285 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
18286
78df8250
PE
182872002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18288 and Paul Eggert <eggert@twinsun.com>
769b430f 18289
78df8250
PE
18290 * data/bison.simple (yyparse): Correct error handling to conform to
18291 POSIX and yacc. Specifically, after syntax error is discovered,
18292 do not reduce further before shifting the error token.
18293 Clean up the code a bit by removing the labels yyerrdefault,
18294 yyerrhandle, yyerrpop.
18295 * NEWS: Document the above.
18296
c0c9ea05
PH
182972002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18298
18299 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
18300 type; it isn't always big enough, since it doesn't necessarily
18301 include non-terminals.
769b430f 18302 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
18303 the latter can be removed.
18304 (yy_token_number_type): Remove, only one use.
18305 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
18306 don't use TokenNumberType as element type.
769b430f 18307
c0c9ea05
PH
18308 * tests/regression.at: Modify expected output to agree with change
18309 to yyr1 and yytranslate.
769b430f 18310
6390a83f
FK
183112002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
18312
18313 * src/reader.c (parse_action): Use copy_character instead of
18314 obstack_1grow.
18315
db7c8e9a
AD
183162002-05-13 Akim Demaille <akim@epita.fr>
18317
18318 * tests/regression.at (Token definitions): Prototype yylex and
18319 yyerror.
18320
fcc61800
PH
183212002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18322
158c687b 18323 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
18324 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
18325 32-bit arithmetic.
18326 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
18327
5683e9b2
AD
183282002-05-07 Akim Demaille <akim@epita.fr>
18329
18330 * tests/synclines.at: Be sure to prototype yylex and yyerror to
18331 avoid GCC warnings.
18332
0c2d3f4c
AD
183332002-05-07 Akim Demaille <akim@epita.fr>
18334
18335 Kill GCC warnings.
18336
18337 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
18338 over the RHS of each rule.
18339 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
18340 * src/state.h (state_t): Member `nitems' is unsigned short.
18341 * src/LR0.c (get_state): Adjust.
18342 * src/reader.c (packgram): Likewise.
18343 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
18344 `Type'.
18345 (muscle_insert_int_table): Remove, unused.
18346 (prepare_rules): Remove `max'.
18347
1565b720
AD
183482002-05-06 Akim Demaille <akim@epita.fr>
18349
18350 * src/closure.c (print_firsts): Display of the symbol tags.
18351 (bitmatrix_print): Move to...
18352 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
18353 here.
18354 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
18355
cfaee611
AD
183562002-05-06 Akim Demaille <akim@epita.fr>
18357
18358 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
18359 hash_do_for_each.
18360
458be8e0
AD
183612002-05-06 Akim Demaille <akim@epita.fr>
18362
18363 * src/LR0.c (new_state, get_state): Instead of using the global
18364 `kernel_size' and `kernel_base', have two new arguments:
18365 `core_size' and `core'.
18366 Adjust callers.
18367
a900a624
AD
183682002-05-06 Akim Demaille <akim@epita.fr>
18369
18370 * src/reader.c (packgram): No longer end `ritem' with a 0
18371 sentinel: it is not used.
18372
d4e7d3a1
AD
183732002-05-05 Akim Demaille <akim@epita.fr>
18374
18375 New experimental feature: display the lookaheads in the report and
18376 graph.
18377
18378 * src/print (print_core): When --trace-flag, display the rules
18379 lookaheads.
18380 * src/print_graph.c (print_core): Likewise.
18381 Swap the arguments.
18382 Adjust caller.
18383
39ceb25b
AD
183842002-05-05 Akim Demaille <akim@epita.fr>
18385
18386 * tests/torture.at (Many lookaheads): New test.
18387
5372019f
AD
183882002-05-05 Akim Demaille <akim@epita.fr>
18389
18390 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
18391 (GENERATE_MUSCLE_INSERT_TABLE): this.
18392 (output_int_table, output_unsigned_int_table, output_short_table)
18393 (output_token_number_table, output_item_number_table): Replace with...
18394 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
18395 (muscle_insert_short_table, muscle_insert_token_number_table)
18396 (muscle_insert_item_number_table): these.
18397 Adjust all callers.
18398 (prepare_tokens): Don't free `translations', since...
18399 * src/reader.h, src/reader.c (grammar_free): do it.
18400 Move to...
18401 * src/gram.h, src/gram.c (grammar_free): here.
18402 * data/bison.simple, data/bison.c++: b4_token_number_max is now
18403 b4_translate_max.
18404
5df5f6d5
AD
184052002-05-05 Akim Demaille <akim@epita.fr>
18406
18407 * src/output.c (output_unsigned_int_table): New.
18408 (prepare_rules): `i' is unsigned.
18409 `prhs', `rline', `r2' are unsigned int.
18410 Rename muscle `rhs_number_max' as `rhs_max'.
18411 Output muscles `prhs_max', `rline_max', and `r2_max'.
18412 Free rline and r1.
18413 * data/bison.simple, data/bison.c++: Adjust to use these muscles
18414 to compute types instead of constant types.
18415 * tests/regression.at (Web2c Actions): Adjust.
18416
b87f8b21
AD
184172002-05-04 Akim Demaille <akim@epita.fr>
18418
18419 * src/symtab.h (SALIAS, SUNDEF): Rename as...
18420 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
18421 Adjust dependencies.
18422 * src/output.c (token_definitions_output): Be sure not to output a
18423 `#define 'a'' when fed with `%token 'a' "a"'.
18424 * tests/regression.at (Token definitions): New.
18425
8bb936e4
PE
184262002-05-03 Paul Eggert <eggert@twinsun.com>
18427
18428 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
18429 for K&R C.
18430
184312002-05-03 gettextize <bug-gnu-gettext@gnu.org>
18432
18433 * Makefile.am (SUBDIRS): Remove intl.
18434 (EXTRA_DIST): Add config/config.rpath.
18435
53c71a12
AD
184362002-05-03 Akim Demaille <akim@epita.fr>
18437
18438 * data/bison.simple (m4_if): Don't output empty enums.
18439 And actually, output valid enum definitions :(.
18440
289dd0cf
AD
184412002-05-03 Akim Demaille <akim@epita.fr>
18442
18443 * configure.bat: Remove, completely obsolete.
18444 * Makefile.am (EXTRA_DIST): Adjust.
18445 Don't distribute config.rpath...
18446 * config/Makefile.am (EXTRA_DIST): Do it.
18447
db85e524
AD
184482002-05-03 Akim Demaille <akim@epita.fr>
18449
18450 * configure.in (GETTEXT_VERSION): New.
18451 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
18452
83ccf991
AD
184532002-05-03 Akim Demaille <akim@epita.fr>
18454
18455 * data/bison.simple (b4_token_enum): New.
18456 (b4_token_defines): Use it to output tokens both as #define and
18457 enums.
18458 Suggested by Paul Eggert.
18459 * src/output.c (token_definitions_output): Don't output spurious
18460 white spaces.
18461
1f418995
AD
184622002-05-03 Akim Demaille <akim@epita.fr>
18463
18464 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18465
45119f04
RA
184662002-05-02 Robert Anisko <robert@lrde.epita.fr>
18467
18468 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
18469 Update the stack class, give a try to deque as the default container.
18470
b2d52318
AD
184712002-05-02 Akim Demaille <akim@epita.fr>
18472
18473 * data/bison.simple (yyparse): Do not implement @$ = @1.
18474 (YYLLOC_DEFAULT): Adjust to do it.
18475 * doc/bison.texinfo (Location Default Action): Fix.
18476
3a8b4109
AD
184772002-05-02 Akim Demaille <akim@epita.fr>
18478
18479 * src/reader.c (parse_braces): Merge into...
18480 (parse_action): this.
18481
84614e13
AD
184822002-05-02 Akim Demaille <akim@epita.fr>
18483
18484 * configure.in (ALL_LINGUAS): Remove.
18485 * po/LINGUAS, hr.po: New.
18486
fdbcd8e2
AD
184872002-05-02 Akim Demaille <akim@epita.fr>
18488
18489 Remove the so called hairy (semantic) parsers.
18490
18491 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
18492 * src/gram.h, src/gram.c (semantic_parser): Remove.
18493 (rule_t): Remove the guard and guard_line members.
18494 * src/lex.h (token_t): remove tok_guard.
18495 * src/options.c (option_table): Remove %guard and %semantic_parser
18496 support.
18497 * src/output.c, src/output.h (guards_output): Remove.
18498 (prepare): Adjust.
18499 (token_definitions_output): Don't output the `T'
18500 tokens (???).
18501 (output_skeleton): Don't output the guards.
18502 * src/files.c, src/files.c (attrsfile): Remove.
18503 * src/reader.c (symbol_list): Remove the guard and guard_line
18504 members.
18505 Adjust dependencies.
18506 (parse_guard): Remove.
18507 * data/bison.hairy: Remove.
18508 * doc/bison.texinfo (Environment Variables): Remove occurrences of
18509 BISON_HAIRY.
18510
82b6cb3f
AD
185112002-05-02 Akim Demaille <akim@epita.fr>
18512
18513 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
18514 (parse_guard): Rename the formal argument `stack_offset' as
18515 `rule_length', which is more readable.
18516 Adjust callers.
18517 (copy_at, copy_dollar): Instead of outputting the hard coded
18518 values of $$, $n and so forth, output invocation to b4_lhs_value,
18519 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
18520 Note: this patch partially drops `semantic-parser' support: it
18521 always does `rule_length - n', where semantic parsers ought to
18522 always use `-n'.
82b6cb3f
AD
18523 * data/bison.simple, data/bison.c++ (b4_lhs_value)
18524 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
18525
6cbfbcc5
AD
185262002-05-02 Akim Demaille <akim@epita.fr>
18527
18528 * configure.in (AC_INIT): Bump to 1.49b.
18529 (AM_INIT_AUTOMAKE): Short invocation.
18530
b8548114
AD
185312002-05-02 Akim Demaille <akim@epita.fr>
18532
18533 Version 1.49a.
18534
c20cd1fa
AD
185352002-05-01 Akim Demaille <akim@epita.fr>
18536
18537 * src/skeleton.h: Remove.
18538
8a9566d4
AD
185392002-05-01 Akim Demaille <akim@epita.fr>
18540
18541 * src/skeleton.h: Fix the #endif.
18542 Reported by Magnus Fromreide.
18543
8c6d399a
PE
185442002-04-26 Paul Eggert <eggert@twinsun.com>
18545
18546 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
18547 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 18548 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 18549
2b7ed18a
RA
185502002-04-25 Robert Anisko <robert@lrde.epita.fr>
18551
18552 * src/scan-skel.l: Postprocess quadrigraphs.
18553
18554 * src/reader.c (copy_character): New function, used to output
18555 single characters while replacing `[' and `]' with quadrigraphs, to
18556 avoid troubles with M4 quotes.
18557 (copy_comment): Output characters with copy_character.
18558 (read_additionnal_code): Likewise.
18559 (copy_string2): Likewise.
18560 (copy_definition): Likewise.
18561
18562 * tests/calc.at: Exercise M4 quoting.
18563
34a89c50
AD
185642002-04-25 Akim Demaille <akim@epita.fr>
18565
18566 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
18567 between `!' and the command.
18568 Reported by Paul Eggert.
18569
0dd1580a
RA
185702002-04-24 Robert Anisko <robert@lrde.epita.fr>
18571
18572 * tests/calc.at: Exercise prologue splitting.
18573
18574 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
18575 `b4_post_prologue' instead of `b4_prologue'.
18576
18577 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
18578 muscles.
18579 (output): Free pre_prologue_obstack and post_prologue_obstack.
18580 * src/files.h, src/files.c (attrs_obstack): Remove.
18581 (pre_prologue_obstack, post_prologue_obstack): New.
18582 * src/reader.c (copy_definition): Add a parameter to specify the
18583 obstack to fill, instead of using attrs_obstack unconditionally.
18584 (read_declarations): Pass pre_prologue_obstack to copy_definition if
18585 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
18586
83c1796f
PE
185872002-04-23 Paul Eggert <eggert@twinsun.com>
18588
18589 * data/bison.simple: Remove unnecessary commentary and white
18590 space differences from 1_29-branch.
18591 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
18592
18593 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
18594 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
18595 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
18596 constructors or destructors.
18597
18598 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
18599
1207eeac
AD
186002002-04-23 Akim Demaille <akim@epita.fr>
18601
18602 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
18603 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
18604 location with columns.
18605 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
18606 All reported by Paul Eggert.
18607
78ab8f67
AD
186082002-04-22 Akim Demaille <akim@epita.fr>
18609
18610 * src/reduce.c (dump_grammar): Move to...
18611 * src/gram.h, src/gram.c (grammar_dump): here.
18612 Be sure to separate long item numbers.
18613 Don't read the members of a rule's prec if its nil.
18614
133c20e2
AD
186152002-04-22 Akim Demaille <akim@epita.fr>
18616
18617 * src/output.c (table_size, table_grow): New.
18618 (MAXTABLE): Remove, replace uses with table_size.
18619 (pack_vector): Instead of dying when the table is too big, grow it.
18620
9515e8a7
AD
186212002-04-22 Akim Demaille <akim@epita.fr>
18622
18623 * data/bison.simple (yyr1): Its type is that of a token number.
18624 * data/bison.c++ (r1_): Likewise.
18625 * tests/regression.at (Web2c Actions): Adjust.
18626
23c5a174
AD
186272002-04-22 Akim Demaille <akim@epita.fr>
18628
18629 * src/reader.c (token_translations_init): 256 is now the default
18630 value for the error token, i.e., it will be assigned another
18631 number if the user assigned 256 to one of her tokens.
18632 (reader): Don't force 256 to error.
18633 * doc/bison.texinfo (Symbols): Adjust.
18634 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
18635 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
18636 etc. instead of 10, 20, 30 (which was used to `jump' over error
18637 (256) and undefined (2)).
18638
5fbb0954
AD
186392002-04-22 Akim Demaille <akim@epita.fr>
18640
18641 Propagate more token_number_t.
18642
18643 * src/gram.h (token_number_as_item_number)
18644 (item_number_as_token_number): New.
18645 * src/output.c (GENERATE_OUTPUT_TABLE): New.
18646 Use it to create output_item_number_table and
18647 output_token_number_table.
18648 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18649 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
18650 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
18651 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
18652
4f940944
AD
186532002-04-22 Akim Demaille <akim@epita.fr>
18654
18655 * src/output.h, src/output.c (get_lines_number): Remove.
18656
3ded9a63
AD
186572002-04-19 Akim Demaille <akim@epita.fr>
18658
18659 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
18660 as Lex/Flex'.
18661 (Debugging): More details about enabling the debugging features.
18662 (Table of Symbols): Describe $$, $n, @$, and @n.
18663 Suggested by Tim Josling.
18664
e0c471a9
AD
186652002-04-19 Akim Demaille <akim@epita.fr>
18666
18667 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
18668
fecc10cd
AD
186692002-04-10 Akim Demaille <akim@epita.fr>
18670
18671 * src/system.h: Rely on HAVE_LIMITS_H.
18672 Suggested by Paul Eggert.
18673
51dec47b
AD
186742002-04-09 Akim Demaille <akim@epita.fr>
18675
18676 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
18677 full stderr, and strip it according to the bison options, instead
18678 of composing the error message from different bits.
18679 This makes it easier to check for several error messages.
18680 Adjust all the invocations.
18681 Add an invocation exercising the error token.
18682 Add an invocation demonstrating a stupid error message.
18683 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
18684 Adjust the tests.
18685 Error message are for stderr, not stdout.
18686
007a50a4
AD
186872002-04-09 Akim Demaille <akim@epita.fr>
18688
18689 * src/gram.h, src/gram.c (error_token_number): Remove, use
18690 errtoken->number.
18691 * src/reader.c (reader): Don't specify the user token number (2)
18692 for $undefined, as it uselessly prevents using it.
18693 * src/gram.h (token_number_t): Move to...
18694 * src/symtab.h: here.
18695 (state_t.number): Is a token_number_t.
18696 * src/print.c, src/reader.c: Use undeftoken->number instead of
18697 hard coded 2.
18698 (Even though this 2 is not the same as above: the number of the
18699 undeftoken remains being 2, it is its user token number which
18700 might not be 2).
18701 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
18702 `user_token_number_max'.
18703 Output `undef_token_number'.
18704 * data/bison.simple, data/bison.c++: Use them.
18705 Be sure to map invalid yylex return values to
18706 `undef_token_number'. This saves us from gratuitous SEGV.
18707
18708 * tests/conflicts.at (Solved SR Conflicts)
18709 (Unresolved SR Conflicts): Adjust.
18710 * tests/regression.at (Web2c Actions): Adjust.
18711
06446ccf
AD
187122002-04-08 Akim Demaille <akim@epita.fr>
18713
18714 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
18715 Adding #line.
18716 Remove the duplicate `typedefs'.
18717 (RhsNumberType): Fix the declaration and various other typos.
18718 Use __ofile__.
18719 * data/bison.simple: Use __ofile__.
18720 * src/scan-skel.l: Handle __ofile__.
18721
62a3e4f0
AD
187222002-04-08 Akim Demaille <akim@epita.fr>
18723
18724 * src/gram.h (item_number_t): New, the type of item numbers in
18725 RITEM. Note that it must be able to code symbol numbers as
18726 positive number, and the negation of rule numbers as negative
18727 numbers.
18728 Adjust all dependencies (pretty many).
18729 * src/reduce.c (rule): Remove this `short *' pointer: use
18730 item_number_t.
18731 * src/system.h (MINSHORT, MAXSHORT): Remove.
18732 Include `limits.h'.
18733 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
18734 (shortcpy): Remove.
18735 (MAXTABLE): Move to...
18736 * src/output.c (MAXTABLE): here.
18737 (prepare_rules): Use output_int_table to output rhs.
18738 * data/bison.simple, data/bison.c++: Adjust.
18739 * tests/torture.at (Big triangle): Move the limit from 254 to
18740 500.
18741 * tests/regression.at (Web2c Actions): Ajust.
18742
18743 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
18744 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
18745 passes, but produces negative #line number, once fixed, GCC is
18746 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
18747 C), it passes.
18748 * src/state.h (state_h): Code input lines on ints, not shorts.
18749
bb88b0fc
AD
187502002-04-08 Akim Demaille <akim@epita.fr>
18751
18752 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
18753 and then the grammar.
18754
9a636f47
AD
187552002-04-08 Akim Demaille <akim@epita.fr>
18756
18757 * src/system.h: No longer using strndup.
18758
680e8701
AD
187592002-04-07 Akim Demaille <akim@epita.fr>
18760
18761 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
18762 * src/output.c (output_table_data): Return the longest number.
18763 (prepare_tokens): Output `token_number_max').
18764 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
18765 New.
18766 Use them to define yy_token_number_type/TokenNumberType.
18767 Use this type for yytranslate.
18768 * tests/torture.at (Big triangle): Push the limit from 124 to
18769 253.
18770 * tests/regression.at (Web2c Actions): Adjust.
18771
817e9f41
AD
187722002-04-07 Akim Demaille <akim@epita.fr>
18773
18774 * tests/torture.at (Big triangle): New.
18775 (GNU AWK Grammar, GNU Cim Grammar): Move to...
18776 * tests/existing.at: here.
18777
5123689b
AD
187782002-04-07 Akim Demaille <akim@epita.fr>
18779
18780 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
18781 nritems.
18782 Adjust dependencies.
18783
f3849179
AD
187842002-04-07 Akim Demaille <akim@epita.fr>
18785
18786 * src/reader.c: Normalize increments to prefix form.
18787
bd02036a
AD
187882002-04-07 Akim Demaille <akim@epita.fr>
18789
18790 * src/reader.c, symtab.c: Remove debugging code.
18791
db8837cb
AD
187922002-04-07 Akim Demaille <akim@epita.fr>
18793
18794 Rename all the `bucket's as `symbol_t'.
18795
18796 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
18797 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
18798 * src/symtab.c, src/symtab.h (bucket): Rename as...
18799 (symbol_t): this.
18800 (symbol_list_new, bucket_check_defined, bucket_make_alias)
18801 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
18802 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
18803 (buckets_new, buckets_free, buckets_do): Rename as...
18804 (symbol_list_new, symbol_check_defined, symbol_make_alias)
18805 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18806 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
18807 (symbols_new, symbols_free, symbols_do): these.
18808
72a23c97
AD
188092002-04-07 Akim Demaille <akim@epita.fr>
18810
18811 Use lib/hash for the symbol table.
18812
18813 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
18814 EOF.
18815 * src/lex.c (lex): Set the `number' member of new terminals.
18816 * src/reader.c (bucket_check_defined, bucket_make_alias)
18817 (bucket_check_alias_consistence, bucket_translation): New.
18818 (reader, grammar_free, readgram, token_translations_init)
18819 (packsymbols): Adjust.
18820 (reader): Number the predefined tokens.
18821 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
18822 for predefined tokens.
18823 * src/symtab.h (bucket): Remove all the hash table related
18824 members.
18825 * src/symtab.c (symtab): Replace by...
18826 (bucket_table): this.
18827 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
18828 (buckets_new, buckets_do): New.
18829
280a38c3
AD
188302002-04-07 Akim Demaille <akim@epita.fr>
18831
18832 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
18833 (start_symbol, max_user_token_number, semantic_parser)
18834 (error_token_number): Initialize.
18835 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
18836 Initialize.
18837 (reader): Don't.
18838 (errtoken, eoftoken, undeftoken, axiom): Extern.
18839
03b31c0c
AD
188402002-04-07 Akim Demaille <akim@epita.fr>
18841
18842 * src/gram.h (rule_s): prec and precsym are now pointers
18843 to the bucket giving the priority/associativity.
18844 Member `associativity' removed: useless.
18845 * src/reduce.c, src/conflicts.c: Adjust.
18846
8b3df748
AD
188472002-04-07 Akim Demaille <akim@epita.fr>
18848
18849 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
18850 Properly escape the symbols' TAG when outputting them.
18851
e601aa1d
AD
188522002-04-07 Akim Demaille <akim@epita.fr>
18853
18854 * src/lalr.h (LA): Is a bitsetv, not bitset*.
18855
b0299a2e
AD
188562002-04-07 Akim Demaille <akim@epita.fr>
18857
18858 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
18859 (LArule): this, which is an array to rule_t*.
18860 * src/print.c, src/conflicts.c: Adjust.
18861
d7e1f00c
AD
188622002-04-07 Akim Demaille <akim@epita.fr>
18863
18864 * src/gram.h (rule_t): Rename `number' as `user_number'.
18865 `number' is a new member.
18866 Adjust dependencies.
18867 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
18868
cc9305dd
AD
188692002-04-07 Akim Demaille <akim@epita.fr>
18870
18871 As a result of the previous patch, it is no longer needed
18872 to reorder ritem itself.
18873
18874 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
18875
b0940840
AD
188762002-04-07 Akim Demaille <akim@epita.fr>
18877
18878 Be sure never to walk through RITEMS, but use only data related to
18879 the rules themselves. RITEMS should be banished.
18880
18881 * src/output.c (output_token_translations): Rename as...
18882 (prepare_tokens): this.
18883 In addition to `translate', prepare the muscles `tname' and
18884 `toknum', which were handled by...
18885 (output_rule_data): this.
18886 Remove, and move the remainder of its outputs into...
18887 (prepare_rules): this new routines, which also merges content from
18888 (output_gram): this.
18889 (prepare_rules): Be sure never to walk through RITEMS.
18890 (output_stos): Rename as...
18891 (prepare_stos): this.
18892 (output): Always invoke prepare_states, after all, just don't use it
18893 in the output if you don't need it.
18894
643a5994
AD
188952002-04-07 Akim Demaille <akim@epita.fr>
18896
18897 * src/LR0.c (new_state): Display `nstates' as the name of the
18898 newly created state.
18899 Adjust to initialize first_state and last_state if needed.
18900 Be sure to distinguish the initial from the final state.
18901 (new_states): Create the itemset of the initial state, and use
18902 new_state.
18903 * src/closure.c (closure): Now that the initial state has its
18904 items properly set, there is no need for a special case when
18905 creating `ruleset'.
18906
18907 As a result, now the rule 0, reducing to $axiom, is visible in the
18908 outputs. Adjust the test suite.
18909
18910 * tests/conflicts.at (Solved SR Conflicts)
18911 (Unresolved SR Conflicts): Adjust.
18912 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
18913 * tests/conflicts.at (S/R in initial): New.
18914
b4c4ccc2
AD
189152002-04-07 Akim Demaille <akim@epita.fr>
18916
18917 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
18918 the RHS of the rules.
18919 * src/output.c (output_gram): Likewise.
18920
bba97eb2
AD
189212002-04-07 Akim Demaille <akim@epita.fr>
18922
18923 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
18924 bucket.
18925 Adjust all dependencies.
18926 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
18927 `number' of the buckets too.
18928 * src/gram.h: Include `symtab.h'.
18929 (associativity): Move to...
18930 * src/symtab.h: here.
18931 No longer include `gram.h'.
18932
c3b407f4
AD
189332002-04-07 Akim Demaille <akim@epita.fr>
18934
18935 * src/gram.h, src/gram.c (rules_rhs_length): New.
18936 (ritem_longest_rhs): Use it.
18937 * src/gram.h (rule_t): `number' is a new member.
18938 * src/reader.c (packgram): Set it.
18939 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
18940 the end of `rules', and count them out of `nrules'.
18941 (reduce_output, dump_grammar): Adjust.
18942 * src/print.c (print_grammar): It is no longer needed to check for
18943 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
18944 * tests/reduce.at (Reduced Automaton): New test.
18945
11652ab3
AD
189462002-04-07 Akim Demaille <akim@epita.fr>
18947
18948 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
18949 lacking `+ 1' to nrules, Bison reported as useless a token if it
18950 was used solely to set the precedence of the last rule...
18951
26b23c1a
AD
189522002-04-07 Akim Demaille <akim@epita.fr>
18953
18954 * data/bison.c++, data/bison.simple: Don't output the current file
18955 name in #line, to avoid useless diffs between two identical
18956 outputs under different names.
18957
18bcecb0
AD
189582002-04-07 Akim Demaille <akim@epita.fr>
18959
18960 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
18961 Normalize loops to using `< nrules + 1', not `<= nrules'.
18962
fa770c86
AD
189632002-04-07 Akim Demaille <akim@epita.fr>
18964
18965 * TODO: Update.
18966
d9b739c3
AD
189672002-04-07 Akim Demaille <akim@epita.fr>
18968
18969 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
18970 bucket.value as bucket.number.
18971
99013900
AD
189722002-04-07 Akim Demaille <akim@epita.fr>
18973
18974 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
18975 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18976 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
18977 RHS, instead of being an index in RITEMS.
18978
e966383b
PE
189792002-04-04 Paul Eggert <eggert@twinsun.com>
18980
18981 * doc/bison.texinfo: Update copyright date.
18982 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
18983 (Symbols): Warn about running Bison in one character set,
18984 but compiling and/or running in an incompatible one.
18985 Warn about character code 256, too.
18986
189872002-04-03 Paul Eggert <eggert@twinsun.com>
18988
18989 * src/bison.data (YYSTACK_ALLOC): Depend on whether
18990 YYERROR_VERBOSE is nonzero, not whether it is defined.
18991
18992 Merge changes from bison-1_29-branch.
c307773e 18993
8d6c48b9
PE
189942002-03-20 Paul Eggert <eggert@twinsun.com>
18995
18996 Merge fixes from Debian bison_1.34-1.diff.
18997
18998 * configure.in (AC_PREREQ): 2.53.
18999
e53c6322
AD
190002002-03-20 Akim Demaille <akim@epita.fr>
19001
19002 * src/conflicts.c (log_resolution): Argument `resolution' is const.
19003
9ffbeca7
PE
190042002-03-19 Paul Eggert <eggert@twinsun.com>
19005
21db0b2a
PE
19006 * src/bison.simple (YYCOPY): New macro.
19007 (YYSTACK_RELOCATE): Use it.
19008 Remove Type arg; no longer needed. All callers changed.
19009 (yymemcpy): Remove; no longer needed.
19010
9ffbeca7
PE
19011 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
19012 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
19013
642cb8f8
AD
190142002-03-19 Akim Demaille <akim@epita.fr>
19015
19016 Test and fix the #line outputs.
19017
19018 * tests/atlocal.at (GCC): New.
19019 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 19020 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
19021 (Action synch line, Epilogue synch line): New tests.
19022 * src/reader.c (parse_union_decl): Define the muscle stype_line.
19023 * data/bison.simple, data/bison.c++: Use it.
19024
3c31a486
AD
190252002-03-19 Akim Demaille <akim@epita.fr>
19026
19027 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
19028 (Solved SR Conflicts, %expect not enough, %expect right)
19029 (%expect too much): Move to...
19030 * tests/conflicts.at: this new file.
19031
0d8bed56
AD
190322002-03-19 Akim Demaille <akim@epita.fr>
19033
19034 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
19035 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
19036 that we can move to enums for instance.
19037 * src/output.c (token_definitions_output): Output a list of
19038 `token-name, token-number' instead of the #define.
19039 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
19040
9208d17f
AD
190412002-03-14 Akim Demaille <akim@epita.fr>
19042
19043 Use Gettext 0.11.1.
19044
af27eacb
RA
190452002-03-09 Robert Anisko <robert@lrde.epita.fr>
19046
19047 * data/bison.c++: Make the user able to add members to the generated
19048 parser by subclassing.
19049
9101a310
RA
190502002-03-05 Robert Anisko <robert@lrde.epita.fr>
19051
19052 * src/reader.c (read_additionnal_code): `c' should be an integer, not
19053 a character.
19054 Reported by Nicolas Tisserand and Nicolas Burrus.
19055
fff9bf0b
RA
190562002-03-04 Robert Anisko <robert@lrde.epita.fr>
19057
19058 * src/reader.c: Warn about lacking semi-colons, do not complain.
19059
64dba31e
RA
190602002-03-04 Robert Anisko <robert@lrde.epita.fr>
19061
19062 * data/bison.c++: Remove a debug line.
19063
374f5a14
RA
190642002-03-04 Robert Anisko <robert@lrde.epita.fr>
19065
19066 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
19067 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
19068 provide a default implementation.
19069
bfcf1f3a
AD
190702002-03-04 Akim Demaille <akim@epita.fr>
19071
19072 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
19073 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
19074 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
19075 * tests/semantic.at (Parsing Guards): Similarly.
19076 * src/reader.at (readgram): Complain if the last rule is not ended
19077 with a semi-colon.
19078
65ccf9fc
AD
190792002-03-04 Akim Demaille <akim@epita.fr>
19080
19081 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
19082 * src/closure.c: here.
19083 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
19084 RTC.
19085 * src/warshall.h, src/warshall.c: Remove.
19086 * tests/sets.at (Broken Closure): Adjust.
19087
d0039cbc
AD
190882002-03-04 Akim Demaille <akim@epita.fr>
19089
19090 * src/output.c (output_skeleton): tempdir is const.
19091 bytes_read is unused.
19092
345cea78
AD
190932002-03-04 Akim Demaille <akim@epita.fr>
19094
19095 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19096 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
19097 Update.
19098 From Michael Hayes.
19099
564801f7
AD
191002002-03-04 Akim Demaille <akim@epita.fr>
19101
19102 * src/closure.c (closure): `r' is unused.
19103
e5352bc7
AD
191042002-03-04 Akim Demaille <akim@epita.fr>
19105
19106 * tests/sets.at (Broken Closure): Add the ending `;'.
19107 * src/reader.at (readgram): Complain if a rule is not ended with a
19108 semi-colon.
19109
914feea9
AD
191102002-03-04 Akim Demaille <akim@epita.fr>
19111
19112 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
19113 (count_sr_conflicts): Use bitset_count.
19114 * src/reduce.c (inaccessable_symbols): Ditto.
19115 (bits_size): Remove.
19116 * src/warshall.h, src/warshall.c: Convert to bitsetv.
19117
f0250de6
AD
191182002-03-04 Akim Demaille <akim@epita.fr>
19119
19120 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
19121 * src/reduce.c: Remove the `bitset_zero's following the
19122 `bitset_create's, as now it is performed by the latter.
19123
ef017502
AD
191242002-03-04 Akim Demaille <akim@epita.fr>
19125
19126 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
19127 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
19128 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
19129 latest sources from Michael.
19130
76514394
AD
191312002-03-04 Akim Demaille <akim@epita.fr>
19132
19133 * src/output.c (output): Don't free the grammar.
19134 * src/reader.c (grammar_free): New.
19135 * src/main.c (main): Call it and don't free symtab here.
19136
55024580
AD
191372002-03-04 Akim Demaille <akim@epita.fr>
19138
19139 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
19140 before returning.
19141 Reported by Benoit Perrot.
19142
f9abaa2c
AD
191432002-03-04 Akim Demaille <akim@epita.fr>
19144
19145 Use bitset operations when possible, not loops over bits.
19146
19147 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
19148 bitset_or.
19149 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
19150 * src/reduce.c (useless_nonterminals): Formatting changes.
19151 * src/warshall.c (TC): Use bitset_or.
19152
0e721e75
AD
191532002-03-04 Akim Demaille <akim@epita.fr>
19154
19155 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
19156 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
19157 Ditto.
19158
0fb1ffb1
AD
191592002-03-04 Akim Demaille <akim@epita.fr>
19160
19161 * src/lalr.c (F): Now a bitset*.
19162 Adjust all dependencies.
19163
b86796bf
AD
191642002-03-04 Akim Demaille <akim@epita.fr>
19165
19166 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
19167 Adjust all dependencies.
19168
602bbf31
AD
191692002-03-04 Akim Demaille <akim@epita.fr>
19170
19171 * src/L0.c, src/LR0.h (nstates): Be size_t.
19172 Adjust comparisons (signed vs unsigned).
19173 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
19174 bitset*.
19175 Adjust all dependencies.
19176
d8a0245c
AD
191772002-03-04 Akim Demaille <akim@epita.fr>
19178
19179 * src/closure.c (firsts): Now, also a bitset.
19180 Adjust all dependencies.
19181 (varsetsize): Remove, now unused.
19182 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
19183
34ba9743
AD
191842002-03-04 Akim Demaille <akim@epita.fr>
19185
19186 * src/print.c: Convert to use bitset.h, not hand coded iterations
19187 over ints.
19188
ed86e78c
AD
191892002-03-04 Akim Demaille <akim@epita.fr>
19190
19191 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
19192
dfdb1797
AD
191932002-03-04 Akim Demaille <akim@epita.fr>
19194
19195 * src/closure.c (ruleset): Be a bitset.
19196 (rulesetsize): Remove.
19197
7086e707
AD
191982002-03-04 Akim Demaille <akim@epita.fr>
19199
19200 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19201 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
19202 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
19203 * src/closure.c (fderives): Be an array of bitsets.
19204
98254360
RA
192052002-02-28 Robert Anisko <robert@lrde.epita.fr>
19206
19207 * data/bison.c++: Merge the two generated headers. Insert a copyright
19208 notice in each output file.
19209
a75c057f
AD
192102002-02-28 Akim Demaille <akim@epita.fr>
19211
19212 * data/bison.c++: Copy the prologue of bison.simple to fetch
19213 useful M4 definitions, such as b4_header_guard.
19214
06b00abc
AD
192152002-02-25 Akim Demaille <akim@epita.fr>
19216
19217 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
19218 translator friendly scheme for the bgr
19219 copyright notice.
06b00abc 19220
70e7d534
AD
192212002-02-25 Akim Demaille <akim@epita.fr>
19222
19223 * src/output.c (header_output): Remove, now handled completely via
19224 M4.
19225
abe017f6
AD
192262002-02-25 Akim Demaille <akim@epita.fr>
19227
19228 * m4/m4.m4: New, from CVS Autoconf.
19229 * configure.in: Invoke it.
19230 * src/output.c (output_skeleton): Use its result instead of the
19231 hard coded name.
19232
381fb12e
AD
192332002-02-25 Akim Demaille <akim@epita.fr>
19234
19235 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
19236 Fileutils 4.1.5.
19237 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
19238 * src/output.c (output_skeleton): Use mkstemp to create a real
19239 temporary file.
19240 Move the filling of `skeleton' and its muscle to...
19241 (prepare): here.
19242 (output): Move the definition of the prologue muscle to...
19243 (prepare): here.
19244 * src/system.h (DEFAULT_TMPDIR): New.
19245
6f38107f
PE
192462002-02-14 Paul Eggert <eggert@twinsun.com>
19247
19248 Remove the support for C++ namespace cleanliness; it was
19249 causing more problems than it was curing, since it didn't work
19250 properly on some nonstandard C++ compilers. This can wait
19251 for a proper C++ parser.
19252
19253 * NEWS: Document this.
19254 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
19255 of C++, as it's treated like C now.
19256 * src/bison.simple (YYSTD): Remove.
19257 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
19258 Treat C++ just like Standard C instead of trying to support
19259 namespace cleanliness.
19260
80cce3da
AD
192612002-02-14 Akim Demaille <akim@epita.fr>
19262
19263 * tests/regression.at (else): Adjust to Andreas' change.
19264
842e8679
AD
192652002-02-14 Akim Demaille <akim@epita.fr>
19266
19267 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
19268
4bda3f10
AD
192692002-02-13 Andreas Schwab <schwab@suse.de>
19270
19271 * src/output.c (output_rule_data): Don't output NULL, it might
19272 not be defined yet.
19273
4162fa07 192742002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 19275
4162fa07
RA
19276 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
19277 (Copyright notice): Update.
b418ecd8 19278
bd16a5dc
AD
192792002-02-11 Akim Demaille <akim@epita.fr>
19280
19281 * tests/regression.at (%nonassoc and eof): Don't include
19282 nonportable headers.
19283
8d69a1a3
RA
192842002-02-08 Robert Anisko <robert@lrde.epita.fr>
19285
19286 * data/bison.c++: Correct error recovery. Make the user able to
19287 initialize the starting location.
19288
9b2d0677
AD
192892002-02-07 Akim Demaille <akim@epita.fr>
19290
19291 * tests/input.at: New.
19292
69e2658b
RA
192932002-02-07 Robert Anisko <robert@lrde.epita.fr>
19294
19295 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 19296 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
19297 directives around tables only needed for debugging.
19298
4aacc3a7
RA
192992002-02-07 Robert Anisko <robert@lrde.epita.fr>
19300
19301 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
19302 C++ parsers.
19303 (yy::b4_name::parse): Use print_.
19304
762a801e
RA
193052002-02-07 Robert Anisko <robert@lrde.epita.fr>
19306
19307 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
19308
4bb2bc3f
RA
193092002-02-07 Robert Anisko <robert@lrde.epita.fr>
19310
19311 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
19312 C++ parsers.
19313 (yy::b4_name::parse): Build verbose error messages, and use error_.
19314
6b45a3ca
RA
193152002-02-06 Robert Anisko <robert@lrde.epita.fr>
19316
19317 * data/bison.c++: Fix m4 quoting in comments.
19318
50997c6e
RA
193192002-02-06 Robert Anisko <robert@lrde.epita.fr>
19320
19321 * data/bison.c++: Adjust the parser code. Fix some muscles that were
19322 not expanded by m4.
19323
3f3eed27
AD
193242002-02-05 Akim Demaille <akim@epita.fr>
19325
19326 * data/bison.c++: Adjust to the M4 back end.
19327 More is certainly needed.
19328
be2a1a68
AD
193292002-02-05 Akim Demaille <akim@epita.fr>
19330
19331 Give a try to M4 as a back end.
19332
19333 * lib/readpipe.c: New, from wdiff.
19334 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
19335 BISON_HAIRY.
19336 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
19337 specific values. Now it is m4 that performs the lookup.
19338 * src/parse-skel.y: Remove.
19339 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
19340 * src/output.c (actions_output, guards_output)
19341 (token_definitions_output): No longer keeps track of the output
19342 line number, hence remove the second argument.
19343 (guards_output): Check against the guard member of a rule, not the
19344 action member.
19345 Adjust callers.
19346 (output_skeleton): Don't look for the skeleton location, let m4 do
19347 that.
19348 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
19349 file will be used.
19350 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
19351 (prepare): Given that for the time being changesyntax is not
19352 usable in M4, rename the muscles using `-' to `_'.
19353 Define `defines_flag', `output_parser_name' and `output_header_name'.
19354 * src/output.h (actions_output, guards_output)
19355 (token_definitions_output): Adjust prototypes.
19356 * src/scan-skel.l: Instead of scanning the skeletons, it now
19357 processes the output of m4: `__oline__' and `#output'.
19358 * data/bison.simple: Adjust to be used by M4(sugar).
19359 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
19360 to date.
19361 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
19362 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
19363 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
19364 shamelessly stolen from CVS Autoconf.
19365
beda758b
AD
193662002-02-05 Akim Demaille <akim@epita.fr>
19367
19368 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
19369 * configure.in: Check for the declarations of free and malloc.
19370 * src/muscle_tab.c: Adjust.
19371
5ece6d43
AD
193722002-02-05 Akim Demaille <akim@epita.fr>
19373
19374 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
19375 which have no values.
19376
5bb18f9a
AD
193772002-02-05 Akim Demaille <akim@epita.fr>
19378
19379 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
19380 * data/: here.
19381
894dd62e
PE
193822002-01-29 Paul Eggert <eggert@twinsun.com>
19383
19384 * src/bison.simple (YYSIZE_T): Do not define merely because
19385 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
19386 On some platforms, <alloca.h> does not declare YYSTD (size_t).
19387
82841af7
AD
193882002-01-27 Akim Demaille <akim@epita.fr>
19389
19390 Fix `%nonassoc and eof'.
19391
19392 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
19393 which were not properly copied! Replace
19394 memcpy (res->errs, src->errs, src->nerrs);
19395 with
19396 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
19397 !!!
19398 * tests/regression.at (%nonassoc and eof): Adjust to newest
19399 Autotest: `.' is not in the PATH.
19400
318b76e9
AD
194012002-01-27 Akim Demaille <akim@epita.fr>
19402
19403 * tests/sets.at (AT_EXTRACT_SETS): New.
19404 (Nullable): Use it.
19405 (Firsts): New.
19406
30d2f3d5
AD
194072002-01-26 Akim Demaille <akim@epita.fr>
19408
19409 * tests/actions.at, tests/calc.at, tests/headers.at,
19410 * tests/torture.at: Adjust to the newest Autotest which no longer
19411 forces `.' in the PATH.
19412
30f8c395
AD
194132002-01-25 Akim Demaille <akim@epita.fr>
19414
19415 * tests/regression.at (%nonassoc and eof): New.
19416 Suggested by Robert Anisko.
19417
29ae55f1
AD
194182002-01-24 Akim Demaille <akim@epita.fr>
19419
19420 Bison dumps core when trying to complain about broken input files.
19421 Reported by Cris van Pelt.
19422
19423 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
19424 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
19425 into...
19426 (Invalid inputs): Strengthen: exercise parse_percent_token.
19427
2b548aa6
RA
194282002-01-24 Robert Anisko <robert.anisko@epita.fr>
19429
19430 * src/Makefile.am: Add bison.c++.
19431 * src/bison.c++: New skeleton.
19432
bb0146c2
AD
194332002-01-21 Paolo Bonzini <bonzini@gnu.org>
19434
19435 * po/it.po: New.
19436
bec30531
AD
194372002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
19438
19439 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
19440
fc6edc45
MA
194412002-01-20 Marc Autret <marc@gnu.org>
19442
19443 * src/files.c (compute_output_file_names): Fix
19444
5e5d5415
MA
194452002-01-20 Marc Autret <marc@gnu.org>
19446
19447 * tests/output.at: New test.
19448 * src/files.c (compute_base_names): Don't map extensions when
19449 the YACC flag is set, use defaults.
19450 Reported by Evgeny Stambulchik.
19451
44ea3fbd
MA
194522002-01-20 Marc Autret <marc@gnu.org>
19453
ba0fe3c7
PE
19454 * src/system.h: Need to define __attribute__ away for non-GCC
19455 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
19456 Suggested by Albert Chin-A-Young.
19457
338963d1
TVH
194582002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
19459
19460 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
19461 canonical definition.
19462 * src/system.h: Use the canonical definition for PARAMS (avoids
19463 a conflict with the macro from lib/hash.h).
19464
c57b2479
AD
194652002-01-11 Akim Demaille <akim@epita.fr>
19466
19467 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 19468 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 19469
b85810ae
AD
194702002-01-09 Akim Demaille <akim@epita.fr>
19471
19472 * src/files.c, src/files.h (output_infix): New.
19473 (tab_extension): Remove.
19474 (compute_base_names): Compute the former, drop the latter.
19475 * src/output.c (prepare): Insert the muscles `output-infix', and
19476 `output-suffix'.
19477 * src/parse-skel.y (string, string.1): New.
19478 (section.header): Use it.
19479 (section.yacc): Remove.
19480 (prefix): Remove too.
19481 * src/scan-skel.l: Adjust.
19482 * src/bison.simple, src/bison.hairy: Adjust.
19483
cae60122
AD
194842002-01-09 Akim Demaille <akim@epita.fr>
19485
19486 * configure.in (WERROR_CFLAGS): Compute it.
19487 * src/Makefile.am (CFLAGS): Pass it.
19488 * tests/atlocal.in (CFLAGS): Idem.
19489 * src/files.c: Fix a few warnings.
19490 (get_extension_index): Remove, unused.
19491
ae404801
AD
194922002-01-08 Akim Demaille <akim@epita.fr>
19493
19494 * src/getargs.c (AS_FILE_NAME): New.
19495 (getargs): Use it to convert DOSish file names.
19496 * src/files.c (base_name): Rename as full_base_name to avoid
19497 clashes with `base_name ()'.
19498 (filename_split): New.
19499 (compute_base_names): N-th rewrite, using filename_split.
19500
22312b71
AD
195012002-01-08 Akim Demaille <akim@epita.fr>
19502
19503 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
19504 New, stolen from the Fileutils 4.1.
19505 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19506 * configure.in: Check for the presence of memrchr, and of its
19507 prototype.
19508
a67cef01
TVH
195092002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
19510
19511 * lib/hash.h (__P): Added definition for this macro.
19512 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
19513 BUILT_SOURCES, to ensure they are generated first.
19514 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
19515 %error-verbose to allow bootstrapping with bison 1.30x.
19516
2b25d624
AD
195172002-01-06 Akim Demaille <akim@epita.fr>
19518
19519 * src/reader.c (parse_braces): Don't fetch the next char, the
19520 convention is to fetch on entry.
19521 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
19522 'switch' without a following semicolon.
19523 * tests/regression.at (braces parsing): New.
19524
3460813b
AD
195252002-01-06 Akim Demaille <akim@epita.fr>
19526
19527 Bison is dead wrong in its RR conflict reports.
19528
19529 * tests/torture.at (GNU Cim Grammar): New.
19530 * src/conflicts.c (count_rr_conflicts): Fix.
19531
73784c64
AD
195322002-01-06 Akim Demaille <akim@epita.fr>
19533
19534 Creating package.m4 from configure.ac causes too many problems.
19535
19536 * tests/Makefile.am (package.m4): Create it by hand,
19537 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
19538
25d81090
AD
195392002-01-06 Akim Demaille <akim@epita.fr>
19540
19541 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
19542 skeleton.h.
19543
a9b8959e
PE
195442002-01-04 Paul Eggert <eggert@twinsun.com>
19545
19546 * doc/bison.texinfo (Debugging):
19547 Remove YYSTDERR; it's no longer defined or used.
19548 Also, s/cstdio.h/cstdio/.
19549
25d81090
AD
195502002-01-03 Akim Demaille <akim@epita.fr>
19551
19552 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
19553
1109455c
AD
195542002-01-03 Akim Demaille <akim@epita.fr>
19555
19556 * src/parse-skel.y (process_skeleton): Don't bind the parser's
19557 tracing code to --trace, wait for a better --trace option, with
19558 args.
19559
7ea5e977
AD
195602002-01-03 Akim Demaille <akim@epita.fr>
19561
19562 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
19563 The ISO C++ standard is extremely clear about it: stderr is
19564 considered a macro, not a regular symbol (see table 94 `Header
19565 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
19566 Therefore std:: does not apply to it. It still does with fprintf.
19567 Also, s/cstdio.h/cstdio/.
19568
fab5b110
AD
195692002-01-03 Akim Demaille <akim@epita.fr>
19570
19571 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
19572 for non system headers.
19573
aed7fd9b
AD
195742002-01-02 Akim Demaille <akim@epita.fr>
19575
19576 Equip the skeleton chain with location tracking, runtime trace,
19577 pure parser and scanner.
19578
19579 * src/parse-skel.y: Request a pure parser, locations, and prefix
19580 renaming.
19581 (%union): Having several members with the same type does not help
19582 type mismatches, simplify.
19583 (YYPRINT, yyprint): New.
19584 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
19585 (skel_error): this.
19586 Handle locations.
19587 * src/scan-skel.l: Adjust to these changes.
19588 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
19589 (LOCATION_PRINT, skel_control_t): New.
19590
24fad99e
AD
195912001-12-30 Akim Demaille <akim@epita.fr>
19592
19593 * src/parse-skel.y: Get rid of the shift/reduce conflict:
19594 replace `gb' with BLANKS.
19595 * src/scan-skel.l: Adjust.
19596
a4b36db4
AD
195972001-12-30 Akim Demaille <akim@epita.fr>
19598
19599 * src/system.h: We don't need nor want bcopy.
19600 Throw away MS-DOS crap: we don't need getpid.
19601 * configure.in: We don't need strndup. It was even causing
19602 problems: because Flex includes the headers *before* us,
19603 _GNU_SOURCE is not defined by config.h, and therefore strndup was
19604 not visible.
19605 * lib/xstrndup.c: New.
19606 * src/scan-skel.l: Use it.
19607 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
19608 * src/parse-skel.y: Use %directives instead of #defines.
19609
1239777d
AD
196102001-12-30 Akim Demaille <akim@epita.fr>
19611
19612 * src/skeleton.h: New.
19613 * src/output.c (output_parser, output_master_parser): Remove, dead
19614 code.
19615 * src/output.h (get_lines_number, actions_output, guards_output)
19616 (token_definitions_output): Prototype them.
19617 * src/parse-skel.y: Add the license notice.
19618 Include output.h and skeleton.h.
19619 (process_skeleton): Returns void, and takes a single parameter.
19620 * src/scan-skel.l: Add the license notice.
19621 Include skeleton.h.
19622 Don't use %option yylineno: it seems that then Flex imagines
19623 REJECT has been used, and therefore it won't reallocate its
19624 buffers (which makes no other sense to me than a bug). It results
19625 in warnings for `unused: yy_flex_realloc'.
19626
9b3add5b
RA
196272001-12-30 Robert Anisko <robert.anisko@epita.fr>
19628
19629 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
19630 (MUSCLE_INSERT_PREFIX): ...to there.
19631 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
19632 (MUSCLE_INSERT_PREFIX): Move from here...
19633
19634 * src/bison.hairy: Add a section directive. Put braces around muscle
19635 names. This parser skeleton is still broken, but Bison should not
19636 choke on a bad muscle 'syntax'.
19637 * src/bison.simple: Add a section directive. Put braces around muscle
19638 names.
19639
19640 * src/files.h (strsuffix, stringappend): Add declarations.
19641 (tab_extension): Add declaration.
19642 (short_base_name): Add declaration.
19643
19644 * src/files.c (strsuffix, stringappend): No longer static. These
19645 functions are used in the skeleton parser.
19646 (tab_extension): New.
19647 (compute_base_names): Use the computations done in this function
fab5b110 19648 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
19649 names.
19650 (short_base_name): No longer static.
19651
19652 * src/output.c (output_skeleton): New.
19653 (output): Disable call to output_master_parser, and give a try to
19654 a new skeleton handling system.
19655 (guards_output, actions_output): No longer static.
19656 (token_definitions_output, get_lines_number): No longer static.
19657
19658 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
19659
fab5b110 19660 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
19661 parse-skel.y.
19662
19663 * src/parse-skel.y: New file.
19664 * src/scan-skel.l: New file.
19665
b5b61c61
AD
196662001-12-29 Akim Demaille <akim@epita.fr>
19667
19668 %name-prefix is broken.
19669
19670 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
19671 Adjust all dependencies.
19672 * tests/headers.at (export YYLTYPE): Strengthen this test: use
19673 %name-prefix.
19674
19675 Renaming yylval but not yylloc is not consistent. Now we do.
19676
19677 * src/bison.simple: Prefix yylloc if used.
19678 * doc/bison.texinfo (Decl Summary): Document that.
19679
8c9a50be
AD
196802001-12-29 Akim Demaille <akim@epita.fr>
19681
19682 * doc/bison.texinfo: Promote `%long-directive' over
19683 `%long_directive'.
19684 Remove all references to fixed-output-files, yacc is enough.
19685
d99361e6
AD
196862001-12-29 Akim Demaille <akim@epita.fr>
19687
19688 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
19689 user prologue. These are defaults.
19690 * tests/actions.at (Mid-rule actions): Make sure the user can
19691 define YYDEBUG and YYERROR_VERBOSE.
19692
b9cecb91
AD
196932001-12-29 Akim Demaille <akim@epita.fr>
19694
19695 * src/output.c (header_output): Don't forget to export YYLTYPE and
19696 yylloc.
19697 * tests/headers.at (export YYLTYPE): New, make sure it does.
19698 * tests/regression.at (%union and --defines, Invalid CPP headers):
19699 Move to...
19700 * tests/headers.at: here.
19701
aea13e97
AD
197022001-12-29 Akim Demaille <akim@epita.fr>
19703
19704 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
19705
931394cb
AD
197062001-12-29 Akim Demaille <akim@epita.fr>
19707
19708 * tests/actions.at (Mid-rule actions): Output on a single line
19709 instead of several.
19710
704a47c4
AD
197112001-12-29 Akim Demaille <akim@epita.fr>
19712
19713 * doc/bison.texinfo: Formatting changes.
19714
091e20bb
AD
197152001-12-29 Akim Demaille <akim@epita.fr>
19716
19717 Don't store the token defs in a muscle, just be ready to output it
19718 on command. Now possible via `symbols'. Fixes a memory leak.
19719
19720 * src/output.c (token_definitions_output): New.
19721 (output_parser, header_output): Use it.
19722 * src/reader.c (symbols_save): Remove.
19723
cce71710
AD
197242001-12-29 Akim Demaille <akim@epita.fr>
19725
19726 * src/bison.simple: Do not provide a default for YYSTYPE and
19727 YYLTYPE before the user's prologue. Otherwise it's hardly... a
19728 default.
19729
82c035a8
AD
197302001-12-29 Akim Demaille <akim@epita.fr>
19731
19732 Mid-rule actions are simply... ignored!
19733
19734 * src/reader.c (readgram): Be sure to attach mid-rule actions to
19735 the empty-rule associated to the dummy symbol, not to the host
19736 rule.
19737 * tests/actions.at (Mid-rule actions): New.
19738
8419d367
AD
197392001-12-29 Akim Demaille <akim@epita.fr>
19740
19741 Memory leak.
19742
19743 * src/reader.c (reader): Free grammar.
19744
375d5806
AD
197452001-12-29 Akim Demaille <akim@epita.fr>
19746
19747 Memory leak.
19748
19749 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
19750 since it allocates it for each state, although only one is needed.
19751 (allocate_storage): Do it here.
19752
f51cb8ff
AD
197532001-12-29 Akim Demaille <akim@epita.fr>
19754
19755 * src/options.h, src/options.c (create_long_option_table): Rename
19756 as...
19757 (long_option_table_new): this, with a clearer prototype.
19758 (percent_table): Remove, unused,
19759 * src/getargs.c (getargs): Adjust.
19760
29e88316
AD
197612001-12-29 Akim Demaille <akim@epita.fr>
19762
19763 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
19764 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
19765 as states.
19766
b9f71f19
AD
197672001-12-29 Akim Demaille <akim@epita.fr>
19768
19769 * src/lalr.c (build_relations): Rename `states' as `states1'.
19770 Sorry, I don't understand exactly what it is, no better name...
19771
1a2b5d37
AD
197722001-12-29 Akim Demaille <akim@epita.fr>
19773
19774 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
19775 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
19776 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
19777 as rules.
19778
1cca533e
AD
197792001-12-29 Akim Demaille <akim@epita.fr>
19780
19781 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
19782 ago.
19783
c03ae966
AD
197842001-12-29 Akim Demaille <akim@epita.fr>
19785
19786 * src/reader.c, src/reader.h (user_toknums): Remove.
19787 Adjust all users to use symbols[i]->user_token_number.
19788
5a670b1e
AD
197892001-12-29 Akim Demaille <akim@epita.fr>
19790
19791 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
19792 Adjust all users to use symbols[i]->prec or ->assoc.
19793
ad949da9
AD
197942001-12-29 Akim Demaille <akim@epita.fr>
19795
19796 * src/reader.c, src/reader.h (tags): Remove.
19797 Adjust all users to use symbols[i]->tag.
19798
0e78e603
AD
197992001-12-29 Akim Demaille <akim@epita.fr>
19800
19801 * src/gram.h, src/gram.c (symbols): New, similar to state_table
19802 and rule_table.
19803 * src/reader.c (packsymbols): Fill this table.
19804 Drop sprec.
19805 * src/conflicts.c (resolve_sr_conflict): Adjust.
19806 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
19807 single table.
19808 Use symbols[i]->tag instead of tags[i].
19809
213e640e
AD
198102001-12-29 Akim Demaille <akim@epita.fr>
19811
19812 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
19813 In addition, put a comment in there, to replace...
19814 * tests/regression.at (%union and C comments): Remove.
19815
e7b8bef1
AD
198162001-12-29 Akim Demaille <akim@epita.fr>
19817
19818 * tests/regression.at (Web2c Actions): Blindly move the actual
19819 output as expected output. The contents *seem* right to me, but I
19820 can't pretend reading perfectly parser tables... Nonetheless, all
19821 the other tests pass correctly, the table look OK, even though the
19822 presence of `$axiom' is to be noted: AFAICS it is useless (but
19823 harmless).
19824
b68e7744
AD
198252001-12-29 Akim Demaille <akim@epita.fr>
19826
19827 * src/reader.c (readgram): Don't add the rule 0 if there were no
19828 rules read. In other words, add it _after_ having performed
19829 grammar sanity checks.
19830 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
19831
78d5bae9
AD
198322001-12-29 Akim Demaille <akim@epita.fr>
19833
19834 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
19835 visible, and some states have now a different number.
19836
ff442794
AD
198372001-12-29 Akim Demaille <akim@epita.fr>
19838
19839 * src/reader.c (readgram): Bind the initial rule's lineno to that
19840 of the first rule.
19841 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
19842 (Solved SR Conflicts): Adjust rule 0's line number.
19843
610ab194
AD
198442001-12-29 Akim Demaille <akim@epita.fr>
19845
19846 Fix the `GAWK Grammar' failure.
19847
19848 * src/LR0.c (final_state): Initialize to -1 so that we do compute
19849 the reductions of the first state which was mistakenly confused
19850 with the final state because precisely final_state was initialized
19851 to 0.
19852 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
19853 now noticed by Bison.
19854 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
19855 have a reduction on $default.
19856
29d29c8f
AD
198572001-12-29 Akim Demaille <akim@epita.fr>
19858
19859 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
19860 rule line numbers.
19861 * src/closure.c (print_closure): Likewise.
19862 * src/derives.c (print_derives): Likewise.
19863 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
19864 now.
19865
7c6b64d0
AD
198662001-12-29 Akim Demaille <akim@epita.fr>
19867
19868 * src/lalr.c (lookaheads_print): New.
19869 (lalr): Call it when --trace-flag.
19870 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
19871 are dumped.
19872
3d4daee3
AD
198732001-12-29 Akim Demaille <akim@epita.fr>
19874
19875 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
19876 when walking through ritem, even via rule->rhs.
19877 * src/reduce.c (dump_grammar, useful_production, reduce_output)
19878 (useful_production, useless_nonterminals): Likewise.
19879 (reduce_grammar_tables): Likewise, plus update nritems.
19880 * src/nullable.c (set_nullable): Likewise.
19881 * src/lalr.c (build_relations): Likewise.
19882 * tests/sets.at (Nullable): Adjust.
19883 Fortunately, now, the $axiom is no longer nullable.
19884
9e7f6bbd
AD
198852001-12-29 Akim Demaille <akim@epita.fr>
19886
19887 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
19888 the 0-sentinel.
19889 * src/gram.c (ritem_longest_rhs): Likewise.
19890 * src/reduce.c (nonterminals_reduce): Likewise.
19891 * src/print_graph.c (print_graph): Likewise.
19892 * src/output.c (output_rule_data): Likewise.
19893 * src/nullable.c (set_nullable): Likewise.
19894
255ef638
AD
198952001-12-29 Akim Demaille <akim@epita.fr>
19896
19897 * src/output.c: Comment changes.
19898
0d8a7363
AD
198992001-12-27 Paul Eggert <eggert@twinsun.com>
19900
19901 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
19902 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
19903 Sparc, as they were causing more porting problems than the
19904 (minor) performance improvement was worth.
19905
19906 Also, catch up with 1.31's YYSTD.
19907
3db472b9
AD
199082001-12-27 Akim Demaille <akim@epita.fr>
19909
19910 * src/output.c (output_gram): Rely on nritems, not the
19911 0-sentinel. See below.
19912 Use -1 as separator, not 0.
19913 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
19914 Rely on -1 as separator in yyrhs, instead of 0.
19915 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
19916 twice `Now at end of input', therefore there are two lines less to
19917 expect.
19918
b365aa05
AD
199192001-12-27 Akim Demaille <akim@epita.fr>
19920
19921 * tests/regression.at (Unresolved SR Conflicts):
19922 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
19923 below.
19924
30171f79
AD
199252001-12-27 Akim Demaille <akim@epita.fr>
19926
19927 * src/LR0.c (new_state): Recognize the final state by the fact it
19928 is reached by eoftoken.
19929 (insert_start_shifting_state, insert_eof_shifting_state)
19930 (insert_accepting_state, augment_automaton): Remove, since now
19931 these states are automatically computed from the initial state.
19932 (generate_states): Adjust.
19933 * src/print.c: When reporting a rule number to the user, substract
19934 1, so that the axiom rule is rule 0, and the first user rule is 1.
19935 * src/reduce.c: Likewise.
19936 * src/print_graph.c (print_core): For the time being, just as for
19937 the report, depend upon --trace-flags to dump the full set of
19938 items.
19939 * src/reader.c (readgram): Once the grammar read, insert the rule
19940 0: `$axiom: START-SYMBOL $'.
19941 * tests/set.at: Adjust: rule 0 is now displayed, and since the
19942 number of the states has changed (the final state is no longer
19943 necessarily the last), catch up.
19944
75142d45
AD
199452001-12-27 Akim Demaille <akim@epita.fr>
19946
19947 Try to make the use of the eoftoken valid. Given that its value
19948 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
19949 is used instead of > 0 where appropriate, (ii), depend upon nritems
19950 instead of the 0-sentinel.
19951
19952 * src/gram.h, src/gram.c (nritems): New.
19953 Expected to be duplication of nitems, but for the time being...
19954 * src/reader.c (packgram): Assert nritems and nitems are equal.
19955 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
19956 * src/closure.c (print_closure, print_fderives): Likewise.
19957 * src/gram.c (ritem_print): Likewise.
19958 * src/print.c (print_core, print_grammar): Likewise.
19959 * src/print_graph.c: Likewise.
19960
b7c49edf
AD
199612001-12-27 Akim Demaille <akim@epita.fr>
19962
19963 * src/main.c (main): If there are complains after grammar
19964 reductions, then output the report anyway if requested, then die.
19965 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
19966 * src/reader.c (eoftoken): New.
19967 (parse_token_decl): If the token being defined has value `0', it
19968 is the eoftoken.
19969 (packsymbols): No longer hack `tags' to insert `$' by hand.
19970 Be sure to preserve the value of the eoftoken.
19971 (reader): Make sure eoftoken is defined.
19972 Initialize nsyms to 0: now eoftoken is created just like the others.
19973 * src/print.c (print_grammar): Don't special case the eof token.
19974 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
19975 lie anyway, albeit pleasant.
19976 * tests/calc.at: Exercise error messages with eoftoken.
19977 Change the grammar so that empty input is invalid.
19978 Adjust expectations.
19979 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
19980
ec2da99f
AD
199812001-12-27 Akim Demaille <akim@epita.fr>
19982
19983 * configure.in: Check the protos of strchr ans strspn.
19984 Replace strchr if needed.
19985 * src/system.h: Provide the protos of strchr, strspn and memchr if
19986 missing.
19987 * lib/strchr.c: New.
19988 * src/reader.c (symbols_save): Use strchr.
19989
8adfa272
AD
199902001-12-27 Akim Demaille <akim@epita.fr>
19991
19992 * src/print.c, src/print_graph.c (escape): New.
19993 Use it to quote the TAGS outputs.
19994 * src/print_graph.c (print_state): Now errors are in red, and
19995 reductions in green.
19996 Prefer high to wide: output the state number on a line of its own.
19997
80dac38c
AD
199982001-12-27 Akim Demaille <akim@epita.fr>
19999
20000 * src/state.h, src/state.c (reductions_new): New.
20001 * src/LR0.c (set_state_table): Let all the states have a
20002 `reductions', even if reduced to 0.
20003 (save_reductions): Adjust.
20004 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
20005 * src/print.c (print_reductions, print_actions): Adjust.
20006 * src/output.c (action_row): Adjust.
20007
2cec70b9
AD
200082001-12-27 Akim Demaille <akim@epita.fr>
20009
20010 * src/state.h, src/state.c (errs_new, errs_dup): New.
20011 * src/LR0.c (set_state_table): Let all the states have an errs,
20012 even if reduced to 0.
20013 * src/print.c (print_errs, print_reductions): Adjust.
20014 * src/output.c (output_actions, action_row): Adjust.
20015 * src/conflicts.c (resolve_sr_conflict): Adjust.
20016
13ca549a
AD
200172001-12-27 Akim Demaille <akim@epita.fr>
20018
20019 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
20020
5092aba5
AD
200212001-12-27 Akim Demaille <akim@epita.fr>
20022
20023 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
20024 * src/print.c: here.
20025 (lookaheadset, shiftset): New, used as additional storage by
20026 print_reductions.
20027 (print_results): Adjust.
20028 (print_shifts, print_gotos, print_errs): New, extracted from...
20029 (print_actions): here.
20030 * src/print_graph.c (print_actions): Remove dead code.
20031
11e2beca
AD
200322001-12-27 Akim Demaille <akim@epita.fr>
20033
20034 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
20035 `$n' and `@n'.
20036
dac3c910
AD
200372001-12-27 Akim Demaille <akim@epita.fr>
20038
20039 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
20040 (build_relations): Adjust.
20041
d0b0fefa
AD
200422001-12-27 Akim Demaille <akim@epita.fr>
20043
20044 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
20045 duplication.
20046
adc8c848
AD
200472001-12-27 Akim Demaille <akim@epita.fr>
20048
20049 * src/reader.c (packgram): Catch nitems overflows.
20050
14d293ac
AD
200512001-12-27 Akim Demaille <akim@epita.fr>
20052
20053 * src/files.c, src/files.h (guard_obstack): Remove.
20054 * src/output.c (output): Adjust.
20055 * src/reader.c (parse_braces): New, factoring...
20056 (copy_action, copy_guard): these two which are renamed as...
20057 (parse_action, parse_guard): these.
20058 As a voluntary consequence, using braces around guards is now
20059 mandatory.
20060
f499b062
AD
200612001-12-27 Akim Demaille <akim@epita.fr>
20062
20063 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
20064 * src/reader.c (symbol_list): `guard' and `guard_line' are new
20065 members.
20066 (symbol_list_new): Adjust.
20067 (copy_action): action_line is the first line, not the last.
20068 (copy_guard): Just as for actions, store the `action' only, not
20069 the switch/case/break flesh.
20070 Don't parse the user action that might follow the guard, let...
20071 (readgram): do it, i.e., now, there can be an action after a
20072 guard.
20073 In other words the guard is just explicitly optional.
20074 (packgram): Adjust.
20075 * src/output.c (guards_output): New.
20076 (output_parser): Call it when needed.
20077 (output): Also free the guard and attrs obstacks.
20078 * src/files.c, src/files.h (obstack_save): Remove.
20079 (output_files): Remove.
20080 As a result, if one needs the former `.act' file, using an
20081 appropriate skeleton which requires actions and guards is now
20082 required.
20083 * src/main.c (main): Adjust.
20084 * tests/semantic.at: New.
20085 * tests/regression.at: Use `input.y' as input file name.
20086 Avoid 8+3 problems by requiring input.c when the test needs the
20087 parser.
20088
d945f5cd
AD
200892001-12-27 Akim Demaille <akim@epita.fr>
20090
20091 * src/reader.c (symbol_list_new): Be sure to initialize all the
20092 fields.
20093
d200e455
AD
200942001-12-27 Akim Demaille <akim@epita.fr>
20095
20096 All the hacks using a final pseudo state are now useless.
20097
20098 * src/LR0.c (set_state_table): state_table holds exactly nstates.
20099 * src/lalr.c (nLA): New.
20100 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
20101 instead of lookaheadsp from the pseudo state (nstate + 1).
20102
f9507c28
AD
201032001-12-27 Akim Demaille <akim@epita.fr>
20104
20105 * src/output.c (action_row, token_actions): Use a state_t instead
20106 of a integer, and nlookaheads instead of the following state's
20107 lookaheadsp.
20108
065fbd27
AD
201092001-12-27 Akim Demaille <akim@epita.fr>
20110
20111 * src/conflicts.c (log_resolution, flush_shift)
20112 (resolve_sr_conflict, set_conflicts, solve_conflicts)
20113 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
20114 (conflicts_print, print_reductions): Use a state_t instead of an
20115 integer when referring to a state.
20116 As much as possible, depend upon nlookaheads, instead of the
20117 `lookaheadsp' member of the following state (since lookaheads of
20118 successive states are successive, the difference between state n + 1
20119 and n served as the number of lookaheads for state n).
20120 * src/lalr.c (add_lookback_edge): Likewise.
20121 * src/print.c (print_core, print_actions, print_state)
20122 (print_results): Likewise.
20123 * src/print_graph.c (print_core, print_actions, print_state)
20124 (print_graph): Likewise.
20125 * src/conflicts.h: Adjust.
20126
1b177bd7
AD
201272001-12-27 Akim Demaille <akim@epita.fr>
20128
20129 * src/bison.hairy: Formatting/comment changes.
20130 ANSIfy.
20131 Remove `register' indications.
20132 Add plenty of `static'.
20133
7742ddeb
AD
201342001-12-27 Akim Demaille <akim@epita.fr>
20135
20136 * src/output.c (prepare): Drop the muscle `ntbase' which
20137 duplicates ntokens.
20138 * src/bison.simple: Formatting/comment changes.
20139 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
20140 is an undocumented synonym.
20141
1fa14068
AD
201422001-12-22 Akim Demaille <akim@epita.fr>
20143
20144 * src/output.c (output_table_data): Change the prototype to use
20145 `int' for array ranges: some invocations do pass an int, not a
20146 short.
20147 Reported by Wayne Green.
20148
b9752825
AD
201492001-12-22 Akim Demaille <akim@epita.fr>
20150
20151 Some actions of web2c.y are improperly triggered.
20152 Reported by Mike Castle.
20153
20154 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
20155 * tests/regression.at (Web2c): Rename as...
20156 (Web2c Report): this.
20157 (Web2c Actions): New.
20158
776209d6
AD
201592001-12-22 Akim Demaille <akim@epita.fr>
20160
20161 Reductions in web2c.y are improperly reported.
20162 Reported by Mike Castle.
20163
20164 * src/conflicts.c (print_reductions): Fix.
20165 * tests/regression.at (Web2c): New.
20166
275fc3ad
AD
201672001-12-18 Akim Demaille <akim@epita.fr>
20168
20169 Some host fail on `assert (!"foo")', which expands to
20170 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
20171 Reported by Nelson Beebee.
20172
20173 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
20174 `#define it_succeeded 0' and `assert (it_succeeded)'.
20175
897668ee
MA
201762001-12-17 Marc Autret <autret_m@epita.fr>
20177
20178 * src/bison.simple: Don't hard code the skeleton line and filename.
20179 * src/output.c (output_parser): Rename 'line' as 'output_line'.
20180 New line counter 'skeleton_line' (skeleton-line muscle).
20181
ab3399e0
PE
201822001-12-17 Paul Eggert <eggert@twinsun.com>
20183
20184 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
20185 YYDEBUG must be defined to a nonzero value.
20186
20187 * src/bison.simple (yytname): Do not assume that the user defines
20188 YYDEBUG to a properly parenthesized expression.
20189
3877f72b
AD
201902001-12-17 Akim Demaille <akim@epita.fr>
20191
20192 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
20193 nlookaheads is a new member.
20194 Adjust all users.
20195 * src/lalr.h (nlookaheads): Remove this orphan declaration.
20196 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
20197 state.
776209d6 20198
331dbc1b
AD
201992001-12-17 Akim Demaille <akim@epita.fr>
20200
20201 * src/files.h, src/files.c (open_files, close_files): Remove.
20202 * src/main.c (main): Don't open/close files, nor invoke lex_free,
20203 let...
20204 * src/reader.c (reader): Do it.
776209d6 20205
be750e4c
AD
202062001-12-17 Akim Demaille <akim@epita.fr>
20207
20208 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 20209
709ae8c6
AD
202102001-12-17 Akim Demaille <akim@epita.fr>
20211
20212 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
20213 (flush_reduce): New.
20214 (resolve_sr_conflict): Adjust.
776209d6 20215
f87685c3
AD
202162001-12-17 Akim Demaille <akim@epita.fr>
20217
20218 * src/output.c (output_obstack): Be static and rename as...
20219 (format_obstack): this, to avoid any confusion with files.c's
20220 output_obstack.
20221 * src/reader.h (muscle_obstack): Move to...
20222 * src/output.h: here, since it's defined in output.c.
20223
837491d8
AD
202242001-12-17 Akim Demaille <akim@epita.fr>
20225
20226 * src/output.c (action_row, save_column, default_goto)
20227 (sort_actions, matching_state, pack_vector): Better variable
20228 locality.
20229
796d61fb
AD
202302001-12-17 Akim Demaille <akim@epita.fr>
20231
20232 * src/output.c: Various formatting changes.
776209d6 20233
64d15509
AD
202342001-12-17 Akim Demaille <akim@epita.fr>
20235
20236 * src/files.c (output_files): Free the output_obstack.
20237 * src/main.c (main): Call print and print_graph conditionally.
20238 * src/print.c (print): Work unconditionally.
20239 * src/print_graph.c (print_graph): Work unconditionally.
20240 * src/conflicts.c (log_resolution): Output only if verbose_flag.
20241
fbc8ecb7
MA
202422001-12-16 Marc Autret <autret_m@epita.fr>
20243
20244 * src/output.c (actions_output): Fix. When we use %no-lines,
20245 there is one less line per action.
20246
f0440388
MA
202472001-12-16 Marc Autret <autret_m@epita.fr>
20248
20249 * src/bison.simple: Remove a useless #line directive.
20250 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
20251 * src/output.c (get_lines_number): New.
776209d6 20252 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
20253 output muscles.
20254 Fix line numbering.
20255 (actions_output): Computes the number of lines taken by actions.
20256 (output_master_parser): Insert new skeleton which is the name of
20257 the output parser file name.
20258
a79986b8
MA
202592001-12-15 Marc Autret <autret_m@epita.fr>
20260
20261 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
20262
4ec8e00f
MA
202632001-12-15 Marc Autret <autret_m@epita.fr>
20264
20265 * src/output.c (output_gram): Keep track of the hairy one.
20266
1a4648ff
AD
202672001-12-15 Akim Demaille <akim@epita.fr>
20268
20269 Make `make distcheck' work.
20270
20271 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
20272 system.h which uses libgettext.h.
20273
9c2c67e6
AD
202742001-12-15 Akim Demaille <akim@epita.fr>
20275
20276 * src/nullable.c (set_nullable): Useless rules must be skipped,
20277 otherwise, since we range over their symbols, we might look at a
20278 nonterminal which no longer ``exists'', i.e., it is not counted in
20279 `nvars', hence we overflow our arrays.
20280
93ede233
AD
202812001-12-15 Akim Demaille <akim@epita.fr>
20282
20283 The header can also be produced directly, without any obstack!
20284 Yahoo!
20285
20286 * src/files.c, src/files.h (defines_obstack): Remove.
20287 (compute_header_macro): Global.
20288 (defines_obstack_save): Remove.
20289 * src/reader.c (parse_union_decl): No longer output to
20290 defines_obstack: its content can be found in the `stype' muscle
20291 anyway.
20292 (output_token_translations): Merge into...
20293 (symbols_output): this.
20294 Rename as...
20295 (symbols_save): this.
20296 (reader): Adjust.
20297 * src/output.c (header_output): New.
20298 (output): Call it.
20299
2666f928
AD
203002001-12-15 Akim Demaille <akim@epita.fr>
20301
20302 * src/reader.c (parse_union_decl): Instead of handling two obstack
20303 simultaneously, use one to define the `stype' muscle, and use the
20304 value of the latter to fill defines_obstack.
20305 (copy_comment): Remove.
20306 (copy_comment2): Work for a single obstack.
20307 Rename as...
20308 (copy_comment): this.
20309
428046f8
AD
203102001-12-15 Akim Demaille <akim@epita.fr>
20311
20312 * src/lex.c, src/lex.h (xgetc): No longer static.
20313 * src/reader.c (parse_union_decl): Revamp.
20314
ea52d706
AD
203152001-12-15 Akim Demaille <akim@epita.fr>
20316
20317 Still making progress in separating Bison into (i) input, (ii)
20318 process, (iii) output: now we can directly output the parser file
20319 without using table_obstack at all.
20320
20321 * src/files.c, src/files.h (table_obstack): Bye bye.
20322 (parser_file_name): New.
20323 * src/files.c (compute_output_file_names): Compute it.
20324 * src/output.c (actions_output, output_parser)
20325 (output_master_parser): To a file instead of an obstack.
20326
3f96f4dc
AD
203272001-12-15 Akim Demaille <akim@epita.fr>
20328
20329 Attach actions to rules, instead of pre-outputting them to
20330 actions_obstack.
20331
20332 * src/gram.h (rule_t): action and action_line are new members.
20333 * src/reader.c (symbol_list): Likewise.
20334 (copy_action): Save the actions within the rule.
20335 (packgram): Save them in rule_table.
20336 * src/output.c (actions_output): New.
20337 (output_parser): Use it on `%%actions'.
20338 (output_rule_data): Don't free rule_table.
20339 (output): Do it.
20340 (prepare): Don't save the `action' muscle.
20341 * src/bison.simple: s/%%action/%%actions/.
20342
51576fb3
AD
203432001-12-15 Akim Demaille <akim@epita.fr>
20344
20345 * src/reader.c (copy_action): When --yacc, don't append a `;'
20346 to the user action: let it fail if lacking.
dee049eb 20347 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 20348
2648a72d
AD
203492001-12-14 Akim Demaille <akim@epita.fr>
20350
20351 * src/lex.c (literalchar): Simply return the char you decoded, non
20352 longer mess around with obstacks and int pointers.
20353 Adjust all callers.
20354
92790e5b
AD
203552001-12-14 Akim Demaille <akim@epita.fr>
20356
20357 * src/lex.c (literalchar): Don't escape the special characters,
20358 just decode them, and keep them as char (before, eol was output as
20359 the 2 char string `\n' etc.).
20360 * src/output.c (output_rule_data): Use quotearg to output the
20361 token strings.
20362
927c1557
PE
203632001-12-13 Paul Eggert <eggert@twinsun.com>
20364
20365 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
20366 Do not infringe on the global user namespace when using C++.
20367 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
20368 All uses of `fprintf' and `stderr' changed.
20369
20370 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
20371
ed8e1f68
AD
203722001-12-13 Akim Demaille <akim@epita.fr>
20373
20374 The computation of nullable is broken: it doesn't handle empty
20375 RHS's properly.
20376
20377 * tests/torture.at (GNU AWK Grammar): New.
20378 * tests/sets.at (Nullable): New.
20379 * src/nullable.c (set_nullable): Instead of blindly looping over
20380 `ritems', loop over the rules, and then over their rhs's.
20381
20382 Work around Autotest bugs.
20383
20384 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
20385 frame, because Autotest understand lines starting with a `+' as
20386 traces from the shell. Then, they are not processed properly.
20387 Admittedly an Autotest bug, but we don't have time to wait for
20388 Autotest to catch up.
20389 * tests/regression.at (Broken Closure): Adjust to the new table
20390 frames.
20391 Move to...
20392 * tests/sets.at: here.
20393
cb581495
AD
203942001-12-13 Akim Demaille <akim@epita.fr>
20395
20396 * src/closure.c (closure): Use nrules instead of playing tricks
20397 with BITS_PER_WORD.
20398
2e729273
AD
203992001-12-13 Akim Demaille <akim@epita.fr>
20400
20401 * src/print.c (print_actions): Output the handling of `$' as the
20402 traces do: shifting the token EOF. Before EOF was treated as a
20403 nonterminal.
20404 * tests/regression.at: Adjust some tests.
20405 * src/print_graph.c (print_core): Complete the set of items via
20406 closure. The next-to-final and final states are still unsatisfying,
20407 but that's to be addressed elsewhere.
20408 No longer output the rule numbers, but do output the state number.
20409 A single loop for the shifts + gotos is enough, but picked a
20410 distinct color for each.
20411 (print_graph): Initialize and finalize closure.
20412
107f7dfb
AD
204132001-12-13 Akim Demaille <akim@epita.fr>
20414
20415 * src/reader.c (readgram): Remove dead code, an strip useless
20416 braces.
20417 (get_type): Remove, unused.
20418
9b53a24f
AD
204192001-12-12 Akim Demaille <akim@epita.fr>
20420
20421 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
20422 on that of lib/error.c.
20423
dbfb6dcd
AD
204242001-12-12 Akim Demaille <akim@epita.fr>
20425
20426 Some hosts don't like `/' in includes.
20427
20428 * src/system.h: Include libgettext.h without qualifying the path.
20429 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
20430 $(top_srcdir).
20431
c25fb648
MA
204322001-12-11 Marc Autret <autret_m@epita.fr>
20433
20434 * src/output.c (output_parser): Remove useless muscle.
20435
710ddc4f
MA
204362001-12-11 Marc Autret <autret_m@epita.fr>
20437
20438 * src/bison.simple: Remove #line just before %%epilogue. It
20439 is now handled in ...
20440 * src/reader.c (read_additionnal_code): Add the output of a
20441 #line for the epilogue.
20442
e83d80b8
MA
204432001-12-10 Marc Autret <autret_m@epita.fr>
20444
927c1557 20445 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
20446 replace precedent remove.
20447 * src/bison.simple: Remove #line before %%prologue because
20448 %%input-line is wrong at this time.
20449
971d5158
MA
204502001-12-10 Marc Autret <autret_m@epita.fr>
20451
20452 * src/reader.c (symbols_output): Clean up.
927c1557 20453 * src/output.c (output_gram, output): Clean up.
971d5158 20454
5edafffd
AD
204552001-12-10 Akim Demaille <akim@epita.fr>
20456
20457 * src/lalr.c (initialize_lookaheads): New. Extracted from...
20458 * src/LR0.c (set_state_table): here.
20459 * src/lalr.c (lalr): Call it.
20460
0279f8e9
AD
204612001-12-10 Akim Demaille <akim@epita.fr>
20462
20463 * src/state.h (shifts): Remove the `number' member: shifts are
20464 attached to state, hence no longer need to be labelled with a
20465 state number.
20466
190c4f5f
AD
204672001-12-10 Akim Demaille <akim@epita.fr>
20468
20469 Now that states have a complete set of members, the linked list of
20470 shifts is useless: just fill directly the state's shifts member.
20471
20472 * src/state.h (shifts): Remove the `next' member.
20473 * src/LR0.c (first_state, last_state): Remove.
20474 Adjust the callers.
20475 (augment_automaton): Don't look for the shifts that must be added
20476 a shift on EOF: it is those of the state we looked for! But now,
20477 since shifts are attached, it is no longer needed to looking
20478 merely by its id: its number.
20479
2a73b93d
AD
204802001-12-10 Akim Demaille <akim@epita.fr>
20481
20482 * src/LR0.c (augment_automaton): Better variable locality.
20483 Remove an impossible branch: if there is a state corresponding to
20484 the start symbol being shifted, then there is shift for the start
20485 symbol from the initial state.
20486
74392f6a
AD
204872001-12-10 Akim Demaille <akim@epita.fr>
20488
20489 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
20490 only when appropriate: when insert_start_shifting_state' is not
20491 invoked.
20492 * tests/regression.at (Rule Line Numbers): Adjust.
20493
37c82725
AD
204942001-12-10 Akim Demaille <akim@epita.fr>
20495
20496 * src/LR0.c (augment_automaton): Now that all states have shifts,
20497 merge the two cases addition shifts to the initial state.
20498
6a164e0c
AD
204992001-12-10 Akim Demaille <akim@epita.fr>
20500
20501 * src/lalr.c (set_state_table): Move to...
20502 * src/LR0.c: here.
20503 * src/lalr.c (lalr): Don't call it...
20504 * src/LR0.c (generate_states): do it.
20505 * src/LR0.h (first_state): Remove, only the table is used.
20506
7215de24
AD
205072001-12-10 Akim Demaille <akim@epita.fr>
20508
20509 * src/LR0.h (first_shift, first_reduction): Remove.
20510 * src/lalr.c: Don't use first_shift: find shifts through the
20511 states.
20512
80e25d4d
AD
205132001-12-10 Akim Demaille <akim@epita.fr>
20514
20515 * src/LR0.c: Attach shifts to states as soon as they are
20516 computed.
20517 * src/lalr.c (set_state_table): Instead of assigning shifts to
20518 state, just assert that the mapping was properly done.
20519
0ab3728b
AD
205202001-12-10 Akim Demaille <akim@epita.fr>
20521
20522 * src/LR0.c (insert_start_shift): Rename as...
20523 (insert_start_shifting_state): this.
20524 (insert_eof_shifting_state, insert_accepting_state): New.
20525 (augment_automaton): Adjust.
20526 Better locality of the variables.
20527 When looking if the start_symbol is shifted from the initial
20528 state, using `while (... symbol != start_symbol ...)' sounds
20529 better than `while (... symbol < start_symbol ...)': If fail
20530 to see how the order between symbols could be relevant!
20531
78af9bbc
AD
205322001-12-10 Akim Demaille <akim@epita.fr>
20533
20534 * src/getargs.h: Don't declare `spec_name_prefix' and
20535 `spec_file_prefix', declared by src/files.h.
20536 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
20537 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
20538 * src/output.c (prepare): Adjust.
20539 * src/reader.c (symbols_output): Likewise.
20540 * src/vmsgetargs.c: Vaguely adjust, but who cares?
20541
bdef2a41
AD
205422001-12-10 Akim Demaille <akim@epita.fr>
20543
20544 * src/muscle_tab.c (muscle_init): NULL is a better default than
20545 `"0"'.
20546
3735969c
AD
205472001-12-10 Akim Demaille <akim@epita.fr>
20548
20549 * src/reader.c (reader): Calling symbols_output once is enough.
20550
49701457
AD
205512001-12-10 Akim Demaille <akim@epita.fr>
20552
20553 Now that states have a complete set of members, the linked list of
20554 reductions is useless: just fill directly the state's reductions
20555 member.
20556
20557 * src/state.h (struct reductions): Remove member `number' and
20558 `next'.
20559 * src/LR0.c (first_reduction, last_reduction): Remove.
20560 (save_reductions): Don't link the new reductions, store them in
20561 this_state.
20562 * src/lalr.c (set_state_table): No need to attach reductions to
20563 states, it's already done.
20564 * src/output.c (output_actions): No longer free the shifts, then
20565 the reductions, then the states: free all the states and their
20566 members.
20567
0edad749
AD
205682001-12-10 Akim Demaille <akim@epita.fr>
20569
20570 * src/options.c (OPTN, DRTV, BOTH): New.
20571 (option_table): Use them.
20572
0edad749
AD
20573 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
20574 the job of system.h.
20575 * src/options.c: Don't include stdio.h and xalloc.h for the same
20576 reasons.
20577
5449dd0f
AD
205782001-12-10 Akim Demaille <akim@epita.fr>
20579
20580 * src/output.c (output, prepare): Make sure the values of the
20581 muscles `action' and `prologue' are 0-terminated.
20582
a870c567
AD
205832001-12-10 Akim Demaille <akim@epita.fr>
20584
20585 Clean up GCC warnings.
20586
20587 * src/reader.c (copy_action): `buf' is not used.
20588 (parse_skel_decl): Be static.
20589 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
20590 * src/options.h (create_long_option_table): Have a real prototype.
20591 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
20592 (hash_delete_at): Return const void *.
20593 Adjust casts to preserve the const.
20594
80df8768
AD
205952001-12-10 Akim Demaille <akim@epita.fr>
20596
20597 * configure.in: Require 2.52g.
20598 M4 is not needed, but AUTOM4TE is.
20599 * m4/m4.m4: Remove.
20600 * tests/Makefile.am: Adjust.
20601
f693ad14
AD
206022001-12-10 Akim Demaille <akim@epita.fr>
20603
20604 One structure for states is enough, even though theoretically
20605 there are LR(0) states and LALR(1) states.
20606
20607 * src/lalr.h (state_t): Remove.
20608 (state_table): Be state_t **, not state_t *.
20609 * src/state.h (core, CORE_ALLOC): Rename as...
20610 (state_t, STATE_ALLOC): this.
20611 Add the LALR(1) members: shifts, reductions, errs.
20612 * src/LR0.c (state_table): Rename as...
20613 (state_hash): this, to avoid name clashes with the global
20614 `state_table'.
20615 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
20616 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
20617
74ffbcb6
AD
206182001-12-10 Akim Demaille <akim@epita.fr>
20619
20620 Bison dumps core on bash.y.
20621 Reported by Pascal Bart.
20622
20623 * src/warshall.c (bitmatrix_print): New.
20624 (TC): Use it.
ba0fe3c7 20625 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
20626 j must be the outer loop.
20627 * tests/regression.at (Broken Closure): New.
20628
07708e19
AD
206292001-12-05 Akim Demaille <akim@epita.fr>
20630
20631 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
20632 its argument.
ba1ecc07 20633 Reported by Peter Hamorsky.
07708e19 20634
92b16366
AD
206352001-12-05 Akim Demaille <akim@epita.fr>
20636
20637 * src/conflicts.c (err_table): Remove.
20638 (resolve_sr_conflict): Adjust.
20639 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
20640 Rename as...
20641 (state_t.reductions, state_t.shifts): this.
20642
076ab033
AD
206432001-12-05 Akim Demaille <akim@epita.fr>
20644
20645 * src/reduce.c (reduce_grammar_tables): No longer disable the
20646 removal of useless rules via CPP but via `if (0)', so that the
20647 compiler still check the code is valid.
20648 For instance, it should have noticed `rline' no longer exists: use
20649 the `line' member of rule_t.
20650 * src/gram.c (dummy, rline): Remove, unused.
20651
3843c413
AD
206522001-12-05 Akim Demaille <akim@epita.fr>
20653
20654 * src/output.c (pack_vector): Use assert, not berror.
20655 * src/main.c (berror): Remove, unused.
20656
43168960
AD
206572001-12-05 Akim Demaille <akim@epita.fr>
20658
20659 New experimental feature: if --verbose --trace output all the
20660 items of a state, not only its kernel.
20661
20662 * src/print.c (print_core): If `trace_flag', then invoke closure
20663 before outputting the items of the state (print_core is no longer
20664 a correct name them).
20665 (print_results): Invoke new_closure/free_closure if needed.
20666
b2872512
AD
206672001-12-05 Akim Demaille <akim@epita.fr>
20668
20669 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
20670 * src/closure.c, src/closure.h (itemsetsize): Rename as...
20671 (nitemset): for consistency with the rest of the project.
20672
23cbcc6c
AD
206732001-12-05 Akim Demaille <akim@epita.fr>
20674
20675 * src/closure.c (print_closure): Improve.
20676 (closure): Use it for printing input and output.
20677
03ec521c
AD
206782001-12-05 Akim Demaille <akim@epita.fr>
20679
20680 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
20681 indexed by nonterminals.
20682
3a7456dd
AD
206832001-12-05 Akim Demaille <akim@epita.fr>
20684
20685 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
20686 what it was!).
20687 * src/warshall.h: Remove accidental duplication of the content.
20688
1cbcf2e7
AD
206892001-12-05 Akim Demaille <akim@epita.fr>
20690
20691 * src/closure.c (set_fderives): De-obfuscate.
20692
84182270
AD
206932001-12-05 Akim Demaille <akim@epita.fr>
20694
20695 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
20696
3f6f053c
AD
206972001-12-05 Akim Demaille <akim@epita.fr>
20698
20699 * src/closure.c (set_firsts): De-obfuscate.
20700
7a5350ba
AD
207012001-12-05 Akim Demaille <akim@epita.fr>
20702
20703 * src/output.c (action_row): De-obfuscate
20704 using the good o' techniques: arrays not pointers, variable
20705 locality, BITISSET, RESETBIT etc.
20706
d954473d
AD
207072001-12-05 Akim Demaille <akim@epita.fr>
20708
20709 Pessimize the code to simplify it: from now on, all the states
20710 have a valid SHIFTS, which NSHIFTS is possibly 0.
20711
20712 * src/LR0.c (shifts_new): Be global and move to..
20713 * src/state.c, src/state.h: here.
20714 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
20715 * src/print_graph: Adjust.
20716
9839bbe5
AD
207172001-12-05 Akim Demaille <akim@epita.fr>
20718
20719 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
20720 * src/conflicts.c: Use it.
20721 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
20722 incorrectly ``simplified''.
20723
9f136c07
AD
207242001-12-05 Akim Demaille <akim@epita.fr>
20725
20726 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
20727 using the good o' techniques: arrays not pointers, variable
20728 locality, BITISSET, RESETBIT etc.
20729
b608206e
AD
207302001-12-05 Akim Demaille <akim@epita.fr>
20731
20732 * src/state.h (SHIFT_SYMBOL): New.
20733 * src/conflicts.c: Use it to deobfuscate.
20734
52afa962
AD
207352001-12-05 Akim Demaille <akim@epita.fr>
20736
20737 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
20738 (print_reductions): De-obfuscate using the good o' techniques:
20739 arrays not pointers, variable locality, BITISSET.
20740
e74dc321
AD
207412001-12-05 Akim Demaille <akim@epita.fr>
20742
20743 * src/conflicts.c (print_reductions): Arrays, not pointers.
20744 Use BITISSET.
20745
768fca83
AD
207462001-12-05 Akim Demaille <akim@epita.fr>
20747
20748 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20749
a17e599f
AD
207502001-12-05 Akim Demaille <akim@epita.fr>
20751
20752 * src/conflicts.c (print_reductions): Improve variable locality.
20753
a04bc341
AD
207542001-12-05 Akim Demaille <akim@epita.fr>
20755
20756 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20757
c8ea038e
AD
207582001-12-05 Akim Demaille <akim@epita.fr>
20759
20760 * src/conflicts.c (print_reductions): Improve variable locality.
20761
aa2aab3c
AD
207622001-12-05 Akim Demaille <akim@epita.fr>
20763
20764 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
20765 * src/lalr.c: Use them.
20766
b178c8cc
AD
207672001-12-05 Akim Demaille <akim@epita.fr>
20768
20769 * src/LR0.c (augment_automaton): Formatting changes.
20770 Better variable locality.
20771
f67d13aa
AD
207722001-12-05 Akim Demaille <akim@epita.fr>
20773
20774 * src/lalr.c (matrix_print): New.
20775 (transpose): Use it.
20776 Use arrays instead of pointers.
20777
c2713865
AD
207782001-12-05 Akim Demaille <akim@epita.fr>
20779
20780 * src/lalr.c (maxrhs): Move to...
20781 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
20782 * src/lalr.c (build_relations): Adjust.
20783
9887c18a
AD
207842001-12-05 Akim Demaille <akim@epita.fr>
20785
20786 * src/lalr.c (transpose): Free the memory allocated to the
20787 argument, as it is replaced by the results by the unique caller.
20788 (build_relations): Merely invoke transpose: it handles the memory
20789 deallocation.
20790 Improve variable locality.
20791 Avoid variables used as mere abbreviations.
20792 (compute_lookaheads): Use arrays instead of pointers.
20793
4d4f699c
AD
207942001-12-05 Akim Demaille <akim@epita.fr>
20795
20796 * src/lalr.c (initialize_F): Improve variable locality.
20797 Avoid variables used as mere abbreviations.
20798
80a69750
AD
207992001-12-05 Akim Demaille <akim@epita.fr>
20800
20801 * src/derives.c (print_derives): Display the ruleno.
20802 * src/lalr.c (initialize_F, transpose): Better variable locality
20803 to improve readability.
20804 Avoid variables used as mere abbreviations.
20805
fe961097
AD
208062001-12-05 Akim Demaille <akim@epita.fr>
20807
20808 * src/lalr.c (traverse): Use arrays instead of pointers.
20809
e3e4e814
AD
208102001-12-05 Akim Demaille <akim@epita.fr>
20811
20812 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
20813 the handling of squeue.
20814 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
20815
630e182b
AD
208162001-12-05 Akim Demaille <akim@epita.fr>
20817
20818 Because useless nonterminals are now kept alive (instead of being
20819 `destroyed'), we now sometimes examine them, and store information
20820 related to them. Hence we need to know their number, and adjust
20821 memory allocations.
20822
20823 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
20824 static.
20825 * src/LR0.c (allocate_itemsets): The memory allocated to
20826 `symbol_count' was used for two different purpose: once to count
20827 the number of occurrences of each symbol, and later reassigned to
20828 `shift_symbol', containing the symbol that can be shifted from a
20829 given state.
20830 Deobfuscate, i.e., allocate, use and free `symbol_count' here
20831 only, and...
20832 (new_itemsets): Allocate `shift_symbol' here.
20833 (allocate_itemsets): symbol_count includes useless nonterminals.
20834 Make room for them.
20835 (free_storage): Use `free', not `XFREE', for pointers that cannot
20836 be null.
20837
81b51460
AD
208382001-12-05 Akim Demaille <akim@epita.fr>
20839
20840 * src/nullable.c (set_nullable): Deobfuscate the handling of
20841 ritem.
20842 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
20843
3067fbef
AD
208442001-12-05 Akim Demaille <akim@epita.fr>
20845
20846 * src/gram.c, src/gram.h (ritem_print): New.
20847 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
20848 (This useless function was defined only to work around VMS linkers
20849 that can't handle compilation units with variables only).
20850 * src/reduce.c (dump_grammar): Use it to trace the construction of
20851 ritem.
20852
c2bea5f9
PE
208532001-12-04 Paul Eggert <eggert@twinsun.com>
20854
7d27c823
PE
20855 * src/bison.simple (union yyalloc): Change member names
20856 to be the same as the stack names.
20857 (yyparse): yyptr is now union yyalloc *, not char *.
20858 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
20859 and may generate better code on some machines.
c2bea5f9
PE
20860 (yystpcpy): Use prototype if __STDC__ is defined, not just
20861 if __cplusplus is defined.
35687a9d 20862
2c8a9dfa
AD
208632001-11-30 Akim Demaille <akim@epita.fr>
20864
20865 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
20866 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
20867 Gettext doesn't compile cleanly, and dies with -Werror.
20868 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
20869 Include WARNING_CFLAGS here.
20870 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
20871 before being defined.
20872
f4e421e6
AD
208732001-11-27 Paul Eggert <eggert@twinsun.com>
20874
20875 * lib/quotearg.h (quotearg_n, quotearg_n_style):
20876 First arg is int, not unsigned.
20877 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
20878 (SIZE_MAX, UINT_MAX): New macros.
20879 (quotearg_n_options): Abort if N is negative.
20880 Avoid overflow check on hosts where size_t is 64 bits and int
20881 is 32 bits, as overflow is impossible there.
20882 Fix off-by-one typo that caused unnecessary reallocation.
20883
7093d0f5
AD
208842001-11-29 Paul Eggert <eggert@twinsun.com>
20885
20886 Name space cleanup in generated parser.
20887
20888 * doc/bison.texinfo (Bison Parser): Discuss system headers
20889 and their effect on the user name space.
20890
20891 * src/bison.simple:
20892 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
20893 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
20894 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
20895
20896 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
20897 on user names when possible.
20898
20899 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
20900 Simplify test for whather <alloca.h> exists.
20901
20902 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
20903
20904 (<stdio.h>): Include if YYDEBUG.
20905
20906 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
20907 ! defined (yyoverflow) && ! defined (yymemcpy).
20908
20909 (yymemcpy, yyparse): Rename local variables as needed so that
20910 they all begin with 'yy'.
20911
20912 (yystrlen, yystpcpy): New functions.
20913
20914 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
20915 All uses changed.
20916
20917 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
20918 instead of relying on string.h functions. Use YYSTACK_ALLOC
20919 and YYSTACK_FREE instead of malloc and free.
20920
fd51e5ff
AD
209212001-11-30 Akim Demaille <akim@epita.fr>
20922
20923 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
20924 before their first uses.
20925 (YYBISON, YYPURE): Move to the top of the output.
20926
7d13ff5f
AD
209272001-11-30 Akim Demaille <akim@epita.fr>
20928
20929 * tests/reduce.at (Useless Nonterminals): Fix.
20930
892a3995
AD
209312001-11-30 Akim Demaille <akim@epita.fr>
20932
20933 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
20934 if body instead of `;' to pacify GCC's warnings.
20935
68f1e3ed
AD
209362001-11-30 Akim Demaille <akim@epita.fr>
20937
20938 Instead of mapping the LHS of unused rules to -1, keep the LHS
20939 valid, but flag the rules as invalid.
20940
20941 * src/gram.h (rule_t): `useful' is a new member.
20942 * src/print.c (print_grammar): Adjust.
20943 * src/derives.c (set_derives): Likewise.
20944 * src/reader.c (packgram, reduce_output): Likewise.
20945 * src/reduce.c (reduce_grammar_tables): Likewise.
20946 * tests/reduce.at (Underivable Rules, Useless Rules): New.
20947
d2d1b42b
AD
209482001-11-30 Akim Demaille <akim@epita.fr>
20949
20950 * src/reduce.c (reduce_output): Formatting changes.
20951 * src/print.c (print_results, print_grammar): Likewise.
20952 * tests/regression.at (Rule Line Numbers)
20953 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
20954
760b53a8
AD
209552001-11-30 Akim Demaille <akim@epita.fr>
20956
20957 * src/reduce.c (nonterminals_reduce): Instead of throwing away
20958 useless nonterminals, move them at the end of the symbol arrays.
20959 (reduce_output): Adjust.
20960 * tests/reduce.at (Useless Nonterminals): Adjust.
20961
00238958
AD
209622001-11-30 Akim Demaille <akim@epita.fr>
20963
20964 * src/reduce.c: Various comment/formatting changes.
20965 (nonterminals_reduce): New, extracted from...
20966 (reduce_grammar_tables): here.
20967 (reduce_grammar): Call nonterminals_reduce.
20968
396452de
PE
209692001-11-29 Paul Eggert <eggert@twinsun.com>
20970
20971 * src/bison.simple (YYSTACK_REALLOC): Remove.
20972 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
20973 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
20974 New macros.
20975 (union yyalloc): New type.
20976 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
20977 an arbitrary restriction on hosts where size_t is wider than int.
20978
20979 (yyparse): Don't dump core if alloca or malloc fails; instead, report
20980 a parser stack overflow. Allocate just one block of memory for all
20981 three stacks, instead of allocating three blocks; this typically is
20982 faster and reduces fragmentation.
20983
20984 Do not limit the number of items in the stack to a value that fits
20985 in 'int', as this is an arbitrary limit on hosts with 64-bit
20986 size_t and 32-bit int.
20987
147e184c
MA
209882001-11-29 Marc Autret <autret_m@epita.fr>
20989
20990 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
20991 of defining YYERROR_VERBOSE.
20992 [AT_DATA]: $4 is now out of C declarations in the prologue.
20993
426cf563
MA
209942001-11-28 Marc Autret <autret_m@epita.fr>
20995
20996 * src/reader.c (parse_dquoted_param): New.
20997 (parse_skel_decl): Use it.
20998 * src/lex.h: Add its prototype.
20999 * src/lex.c (literalchar): Become not static.
21000
c7925b99
MA
210012001-11-28 Marc Autret <autret_m@epita.fr>
21002
21003 * src/output.h: And put its extern declaration here.
21004 * src/output.c (error_verbose): Define here.
21005 (prepare): Echo name modification.
21006 * src/getargs.h: Clean its extern declaration.
21007 * src/getargs.c (error_verbose_flag): Remove.
21008 (getargs): Remove case 'e'.
21009 * src/options.c (option_table): 'error-verbose' is now seen as simple
21010 percent option.
21011 Include output.h.
21012
21013 * src/reader.c (read_declarations): Remove case tok_include.
21014 (parse_include_decl): Remove.
21015 * src/lex.h (token_t): Remove tok_include.
21016 * src/options.c (option_table): 'include' is now a simple command line
21017 option.
21018
5b5d1929
MA
210192001-11-28 Marc Autret <autret_m@epita.fr>
21020
21021 * src/bison.simple: Adjust muscle names.
21022 * src/muscle_tab.c (muscle_init): Also rename the muscles.
21023 * src/output.c (prepare): s/_/-/ for the muscles names.
21024 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
21025
8850be4b
MA
210262001-11-28 Marc Autret <autret_m@epita.fr>
21027
21028 * src/bison.simple: Fix debug.
21029 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
21030
4a38e613
AD
210312001-11-28 Akim Demaille <akim@epita.fr>
21032
21033 * src/LR0.c (shifts_new): New.
21034 (save_shifts, insert_start_shift, augment_automaton): Use it.
21035
4b35e1c1
AD
210362001-11-28 Akim Demaille <akim@epita.fr>
21037
21038 * src/closure.c (closure): `b' and `ruleno' denote the same value:
21039 keep ruleno only.
21040
d2b04478
AD
210412001-11-28 Akim Demaille <akim@epita.fr>
21042
21043 * src/closure.c (closure): Instead of looping over word in array
21044 then bits in words, loop over bits in array.
21045
2c4c30aa
AD
210462001-11-28 Akim Demaille <akim@epita.fr>
21047
21048 * src/closure.c (closure): No longer optimize the special case
21049 where all the bits of `ruleset[r]' are set to 0, to make the code
21050 clearer.
21051
576890b7
AD
210522001-11-28 Akim Demaille <akim@epita.fr>
21053
21054 * src/closure.c (closure): `r' and `c' are new variables, used to
21055 de-obfuscate accesses to RULESET and CORE.
21056
cb487d7d
AD
210572001-11-28 Akim Demaille <akim@epita.fr>
21058
21059 * src/reduce.c (reduce_print): Use ngettext.
21060 (dump_grammar): Improve the trace accuracy.
21061
6013d43f
AD
210622001-11-28 Akim Demaille <akim@epita.fr>
21063
21064 * src/reduce.c (dump_grammar): Don't translate trace messages.
21065
cb4956ee
AD
210662001-11-28 Akim Demaille <akim@epita.fr>
21067
21068 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
21069 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
21070 as all tags are free'ed afterwards.
21071 From Enrico Scholz.
21072
648185ab
PE
210732001-11-27 Paul Eggert <eggert@twinsun.com>
21074
21075 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
21076 use alloca when we didn't want to, and vice versa.
21077
68254a03
MA
210782001-11-27 Marc Autret <autret_m@epita.fr>
21079
9113b58f
AD
21080 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
21081 initialization.
68254a03
MA
21082 * src/output.c (prepare): Remove its update.
21083
04d843a2
MA
210842001-11-27 Marc Autret <autret_m@epita.fr>
21085
21086 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
21087 Use %error-verbose.
21088
d2079671 210892001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
21090
21091 * src/bison.simple: Remove YYERROR_VERBOSE using.
21092 Use %%error_verbose.
21093 (yyparse): Likewise.
21094 * src/output.c (prepare): Give its final value.
21095 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
21096 * src/getargs.h: Add its extern declaration.
21097 * src/getargs.c (error_verbose_flag): New int.
21098 (getargs): Update to catch new case.
21099 * src/options.c (option_table): 'error-verbose' is a new option.
21100 (shortopts): Update.
21101
e0327bc8
AD
211022001-11-27 Akim Demaille <akim@epita.fr>
21103
21104 * src/system.h: Use intl/libgettext.h.
21105 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
21106
000f1a3c
AD
211072001-11-27 Akim Demaille <akim@epita.fr>
21108
21109 * tests/torture.at (Exploding the Stack Size with Malloc):
21110 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
21111
26cfe0be
AD
211122001-11-27 Akim Demaille <akim@epita.fr>
21113
21114 * src/files.c: Include error.h.
21115 Reported by Hans Aberg.
21116
f6bd5427
MA
211172001-11-26 Marc Autret <autret_m@epita.fr>
21118
d2079671 21119 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
21120 (read_declarations): Add case tok_include.
21121 * src/getargs.h (include): Add its extern definition.
21122 * src/getargs.c (include): New const char *.
21123 (getargs): Add case '-I'.
21124 * src/options.c (option_table): Add include as command line and
21125 percent option.
21126 * src/lex.h (token_t): Add tok_include.
21127
2ca209c1
AD
211282001-11-26 Akim Demaille <akim@epita.fr>
21129
21130 * src/reader.c (readgram): Make sure rules for mid-rule actions
21131 have a lineno equal to that of their host rule.
21132 Reported by Hans Aberg.
21133 * tests/regression.at (Rule Line Numbers): New.
21134
0e41b407
AD
211352001-11-26 Akim Demaille <akim@epita.fr>
21136
21137 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
21138 size_ts.
21139
211402001-11-26 Akim Demaille <akim@epita.fr>
21141
21142 * src/complain.c, src/complain.h (error): Remove, provided by
21143 lib/error.[ch].
21144
e0c40012
AD
211452001-11-26 Akim Demaille <akim@epita.fr>
21146
21147 * src/reader.c (read_declarations): Don't abort on tok_illegal,
21148 issue an error message.
21149 * tests/regression.at (Invalid %directive): New.
21150 Reported by Hans Aberg.
21151
5e147124
AD
211522001-11-26 Akim Demaille <akim@epita.fr>
21153
21154 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
21155 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
21156
a034c8b8
AD
211572001-11-26 Akim Demaille <akim@epita.fr>
21158
21159 * src/conflicts.c (conflicts_print): Don't complain at all when
21160 there are no reduce/reduce conflicts, and as many shift/reduce
21161 conflicts as expected.
21162 * tests/regression.at (%expect right): Adjust.
21163
c64a20f3
AD
211642001-11-23 Akim Demaille <akim@epita.fr>
21165
21166 * lib/alloca.c: Update, from fileutils.
21167
5b0d29bb
AD
211682001-11-23 Akim Demaille <akim@epita.fr>
21169
21170 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
21171
722c4bfe
AD
211722001-11-23 Akim Demaille <akim@epita.fr>
21173
21174 * src/system.h: Include alloca.h.
21175 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
21176
6255b435
AD
211772001-11-23 Akim Demaille <akim@epita.fr>
21178
21179 * src/print_graph.c (print_actions): Remove `rule', unused.
21180 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
21181 pacify GCC's signed < unsigned warnings.
21182 * src/closure.c (itemsetsize): Likewise.
21183 * src/reader.c (symbol_list_new): Static.
21184
b29b2ed5
AD
211852001-11-23 Akim Demaille <akim@epita.fr>
21186
21187 Attaching lineno to buckets is stupid, since only one copy of each
21188 symbol is kept, only the line of the first occurrence is kept too.
21189
21190 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
21191 * src/reader.c (rline_allocated): Remove, unused.
21192 (symbol_list): Have a `line' member.
21193 (symbol_list_new): New.
21194 (readgram): Use it.
21195 * src/print.c (print_grammar): Output the rule line numbers.
21196 * tests/regression.at (Solved SR Conflicts)
21197 (Unresolved SR Conflicts): Adjust.
21198 Reported by Hans Aberg.
21199
a81b1d4a
MA
212002001-11-22 Marc Autret <autret_m@epita.fr>
21201
21202 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
21203
c1ecb3c1
MA
212042001-11-22 Marc Autret <autret_m@epita.fr>
21205
21206 * src/muscle_tab.c (muscle_init): Remove initialization of
21207 skeleton muscle.
21208 * src/output.c (output_master_parser): Do it here.
21209
fbe01355
AD
212102001-11-20 Akim Demaille <akim@epita.fr>
21211
21212 * po/sv.po: New.
21213 * configure.in (ALL_LINGUAS): Adjust.
21214 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
21215 longer contains strings to translate.
21216
81e895c0
AD
212172001-11-19 Akim Demaille <akim@epita.fr>
21218
21219 * src/conflicts.c (conflicts_print): Add a missing \n.
21220
6bb1878b
AD
212212001-11-19 Akim Demaille <akim@epita.fr>
21222
21223 * src/nullable.c (nullable_print): New.
21224 (set_nullable): Call it when tracing.
21225 Better locality of variables.
21226
d9ec2d07
AD
212272001-11-19 Akim Demaille <akim@epita.fr>
21228
21229 * src/print.c (print_actions): Better locality of variables.
21230
720e5c1b
AD
212312001-11-19 Akim Demaille <akim@epita.fr>
21232
21233 * src/derives.c (print_derives): Fix and enrich.
21234 * src/closure.c (print_fderives): Likewise.
21235
fb908786
AD
212362001-11-19 Akim Demaille <akim@epita.fr>
21237
21238 * src/closure.c (itemsetend): Remove, replaced with...
21239 (itemsetsize): new.
21240
125ecb56
AD
212412001-11-19 Akim Demaille <akim@epita.fr>
21242
21243 * src/LR0.c (kernel_end): Remove, replaced with...
21244 (kernel_size): new.
21245
d8cf039f
AD
212462001-11-19 Akim Demaille <akim@epita.fr>
21247
21248 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
21249 to clarify.
21250
7bec0760
AD
212512001-11-19 Akim Demaille <akim@epita.fr>
21252
21253 * src/closure.c (closure): Use arrays instead of pointers to clarify.
21254
c87d4863
AD
212552001-11-19 Akim Demaille <akim@epita.fr>
21256
21257 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
21258 trace messages.
21259 * src/LR0.c: Likewise.
21260 (allocate_itemsets): Use arrays instead of pointers to clarify.
21261
9bfe901c
AD
212622001-11-19 Akim Demaille <akim@epita.fr>
21263
21264 * src/getargs.c (statistics_flag): Replace with...
21265 (trace_flag): New.
21266 (longopts): Accept --trace instead of --statistics.
21267 * src/getargs.h, src/options.c: Adjust.
21268 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
21269 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
21270
97db7bd4
AD
212712001-11-19 Akim Demaille <akim@epita.fr>
21272
cc72668c 21273 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
21274 pointers to clarify the code.
21275 (save_reductions, save_shifts): Factor common parts of alternatives.
21276
2c5f66ed
AD
212772001-11-19 Akim Demaille <akim@epita.fr>
21278
21279 * src/LR0.c (new_state, get_state): Complete TRACE code.
21280 * src/closure.c: Include `reader.h' to get `tags', needed by the
21281 trace code.
21282 Rename the conditional DEBUG as TRACE.
21283 Output consistently TRACEs to stderr, not stdout.
21284 * src/derives.c: Likewise.
21285 * src/reduce.c: (inaccessable_symbols): Using if is better style
21286 than goto.
21287 Use `#if TRACE' instead of `#if 0' for tracing code.
21288
300f275f
AD
212892001-11-19 Akim Demaille <akim@epita.fr>
21290
21291 * src/system.h (LIST_FREE, shortcpy): New.
21292 * src/LR0.c: Use them.
21293 * src/output.c (free_itemsets, free_reductions, free_shifts):
21294 Remove, replaced by LIST_FREE.
21295
f59c437a
AD
212962001-11-19 Akim Demaille <akim@epita.fr>
21297
21298 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
21299 (REDUCTIONS_ALLOC): New.
21300 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
21301 allocation.
21302
6986fd9e
AD
213032001-11-19 Akim Demaille <akim@epita.fr>
21304
21305 * src/LR0.c (new_state): Complete trace code.
21306 * src/nullable.c (set_nullable): Don't translate traces.
21307
4bc30f78
AD
213082001-11-19 Akim Demaille <akim@epita.fr>
21309
21310 * src/print_graph.c (print_core): Better locality of variables.
21311 * src/print.c (print_core): Likewise.
21312
08a946e0
AD
213132001-11-19 Akim Demaille <akim@epita.fr>
21314
21315 * src/vcg.c: You do the output, so you are responsible of the
21316 handling of VCG syntax, in particular: use quotearg.
21317 * src/print_graph.c: Don't.
21318 (print_actions): Don't output the actions as part of the nodes,
21319 since that's the job of the edges.
21320 (print_state): Don't output by hand: fill the node description,
9bfe901c 21321 and ask for its output.
08a946e0 21322
f0473484
AD
213232001-11-19 Akim Demaille <akim@epita.fr>
21324
cc72668c
AD
21325 * src/bison.simple (yyparse): When verbosely reporting an error,
21326 no longer put additional quotes around token names.
f0473484
AD
21327 * tests/calc.at: Adjust.
21328
e41dc700
AD
213292001-11-19 Akim Demaille <akim@epita.fr>
21330
21331 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
21332 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
21333 * src/output.c: Adjust.
21334
652a871c
AD
213352001-11-19 Akim Demaille <akim@epita.fr>
21336
21337 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
21338 (rule_t): this.
21339 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
21340
b2ed6e58
AD
213412001-11-19 Akim Demaille <akim@epita.fr>
21342
21343 * src/gram.h (rule_t): New.
21344 (rule_table): New.
21345 (rrhs, rlhs): Remove, part of state_t.
21346 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
21347 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
21348 * src/reader.c, src/reduce.c: Adjust.
21349
edad7067
AD
213502001-11-19 Akim Demaille <akim@epita.fr>
21351
21352 * src/reader.c (symbols_output): New, extracted from...
21353 (packsymbols): Here.
21354 (reader): Call it.
21355
3feec034
AD
213562001-11-19 Akim Demaille <akim@epita.fr>
21357
21358 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
21359 (maxrhs): this new function.
21360
ddcd5fdf
AD
213612001-11-19 Akim Demaille <akim@epita.fr>
21362
cc72668c 21363 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
21364 Adjust.
21365
bb527fc2
AD
213662001-11-19 Akim Demaille <akim@epita.fr>
21367
cc72668c 21368 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
21369 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21370 * src/lalr.c: Adjust.
21371
a845a697
AD
213722001-11-19 Akim Demaille <akim@epita.fr>
21373
21374 * src/lalr.c (initialize_LA): Only initialize LA. Let...
21375 (set_state_table): handle the `lookaheads' members.
21376
f004bf6a
AD
213772001-11-19 Akim Demaille <akim@epita.fr>
21378
cc72668c
AD
21379 * src/lalr.h (lookaheads): Removed array, whose contents is now
21380 a member of...
f004bf6a
AD
21381 (state_t): this structure.
21382 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21383 Adjust.
21384
de326cc0
AD
213852001-11-19 Akim Demaille <akim@epita.fr>
21386
cc72668c
AD
21387 * src/lalr.h (consistent): Removed array, whose contents is now
21388 a member of...
de326cc0
AD
21389 (state_t): this structure.
21390 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21391 Adjust.
21392
90b4416b
AD
213932001-11-19 Akim Demaille <akim@epita.fr>
21394
cc72668c
AD
21395 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
21396 contents are now members of...
90b4416b
AD
21397 (state_t): this structure.
21398 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21399 Adjust.
21400
9703cc49
AD
214012001-11-19 Akim Demaille <akim@epita.fr>
21402
21403 * src/lalr.h (state_t): New.
21404 (state_table): Be a state_t * instead of a core **.
21405 (accessing_symbol): Remove, part of state_t.
21406 * src/lalr.c: Adjust.
21407 (set_accessing_symbol): Merge into...
21408 (set_state_table): this.
21409 * src/print_graph.c, src/conflicts.c: Adjust.
21410
d803322e
AD
214112001-11-14 Akim Demaille <akim@epita.fr>
21412
21413 * tests/calc.at, tests/output.at, tests/regression.at,
21414 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
21415 now the tests are run in private dirs, therefore AC_CLEANUP and
21416 family can be simplified to 0-ary.
21417 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
21418 use abs. path to find config.h.
21419 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
21420 stderr, there can be way too much random noise.
21421 Instead pass -Werror to GCC and rely on the exit status.
21422 Reported by Wolfram Wagner.
21423
3d76b07d
AD
214242001-11-14 Akim Demaille <akim@epita.fr>
21425
21426 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
21427 defined only if yyoverflow is defined, to avoid `warning: unused
21428 variable `yyvs1''.
21429 Reported by The Test Suite.
21430
09b503c8
AD
214312001-11-14 Akim Demaille <akim@epita.fr>
21432
21433 * src/print.c: Include reduce.h.
21434 Reported by Hans Aberg.
21435
214362001-11-14 Akim Demaille <akim@epita.fr>
21437
21438 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
21439 Revert a previous patch: these are really const.
21440 * src/conflicts.c (conflict_report): Additional useless pair of
21441 braces to pacify GCC's warnings for `if () if () {} else {}'.
21442 * src/lex.c (parse_percent_token): Replace equal_offset with
21443 arg_offset.
21444 arg is const.
21445 Be sure to strdup `arg' when used, since there is no reason for
21446 token_buffer not to change.
21447
0f37a994
AD
214482001-11-14 Akim Demaille <akim@epita.fr>
21449
21450 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
21451 definition.
21452 * src/main.c (main): Use them.
21453 Suggested by Hans Aberg.
21454
d39d93b8
AD
214552001-11-12 Akim Demaille <akim@epita.fr>
21456
21457 * src/system.h (ngettext): Now that we use ngettext, be sure to
21458 provide a default definition when NLS are not used.
21459
9edcd895
AD
214602001-11-12 Akim Demaille <akim@epita.fr>
21461
21462 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
21463 Use @kbd to denote user input.
21464 (Language and Grammar): ANSIfy the example.
21465 Adjust its layout for info/notinfo.
21466 (Location Tracking Calc): Output error messages to stderr.
21467 Output locations in a more GNUtically correct way.
21468 Fix a couple of Englishos.
21469 Adjust @group/@end group pairs.
21470
7da99ede
AD
214712001-11-12 Akim Demaille <akim@epita.fr>
21472
e3aa65c5 21473 %expect was not functioning at all.
7da99ede
AD
21474
21475 * src/conflicts.c (expected_conflicts): Set to -1.
21476 (conflict_report): Use ngettext.
21477 (conflicts_print): Check %expect and make its violation an error.
21478 * doc/bison.texinfo (Expect Decl): Adjust.
21479 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
21480 * tests/regression.at (%expect not enough, %expect right)
21481 (%expect too much): New.
21482
ba9dda1a
AD
214832001-11-12 Akim Demaille <akim@epita.fr>
21484
21485 * tests/regression.at (Conflicts): Rename as...
21486 (Unresolved SR Conflicts): this.
21487 (Solved SR Conflicts): New.
21488
337c5bd1
AD
214892001-11-12 Akim Demaille <akim@epita.fr>
21490
21491 * src/reduce.c (print_results): Rename as...
21492 (reduce_output): This.
21493 Output to OUT, passed as argument, instead of output_obstack.
21494 (dump_grammar): Likewise.
21495 (reduce_free): New.
21496 Also free V1.
21497 (reduce_grammar): No longer call reduce_output, since...
21498 * src/print.c (print_results): do it.
21499 * src/main.c (main): Call reduce_free;
21500
c73a41af
AD
215012001-11-12 Akim Demaille <akim@epita.fr>
21502
21503 * src/conflicts.c (print_reductions): Accept OUT as argument.
21504 Output to it, not to output_obstack.
21505 * src/print.c (print_actions): Adjust.
21506
0df87bb6
AD
215072001-11-12 Akim Demaille <akim@epita.fr>
21508
21509 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
21510 the result instead of using...
21511 (src_total, rrc_total, src_count, rrc_count): Remove.
21512 (any_conflicts): Remove.
21513 (print_conflicts): Split into...
21514 (conflicts_print, conflicts_output): New.
21515 * src/conflicts.h: Adjust.
21516 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 21517 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
21518 * tests/regression.at (Conflicts): New.
21519 Reported by Tom Lane.
21520
e4d3d4de
AD
215212001-11-12 Akim Demaille <akim@epita.fr>
21522
21523 * tests/regression.at (Invalid input): Remove, duplicate with
21524 ``Invalid input: 1''.
21525
6d7d248e
AD
215262001-11-12 Akim Demaille <akim@epita.fr>
21527
21528 * tests/torture.at (AT_DATA_STACK_TORTURE)
21529 (Exploding the Stack Size with Alloca)
21530 (Exploding the Stack Size with Malloc): New.
21531
e9e4c321
AD
215322001-11-12 Akim Demaille <akim@epita.fr>
21533
21534 * src/bison.simple (YYSTACK_REALLOC): New.
21535 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 21536 Reported by Per Allansson.
e9e4c321 21537
5f7e0832
AD
215382001-11-12 Pascal Bart <pascal.bart@epita.fr>
21539
21540 * src/bison.simple: Define type yystype instead of YYSTYPE, and
21541 define CPP macro, which substitute YYSTYPE by yystype.
21542 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
21543 with yyltype/YYLTYPE. This allows inclusion of the generated
21544 header within the parser if the compiler, such as GGC, accepts
21545 multiple equivalent #defines.
21546 From Akim.
21547
e3f1699f
AD
215482001-11-05 Akim Demaille <akim@epita.fr>
21549
21550 * src/reader.c (symbols_output): New, extracted from...
21551 (packsymbols): here.
21552 (reader): Adjust.
21553
65be0866
AD
215542001-11-05 Akim Demaille <akim@epita.fr>
21555
21556 * src/lex.c (parse_percent_token): s/quotearg/quote/.
21557
e4d910bf
AD
215582001-11-05 Akim Demaille <akim@epita.fr>
21559
21560 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
21561 pattern.
21562
951366c1
AD
215632001-11-05 Akim Demaille <akim@epita.fr>
21564
21565 * src/options.h (struct option_table_struct): set_flags is void*.
21566 * src/options.c (longopts): Support `--output' and `%output'.
21567 (usage): Adjust.
21568 * src/lex.h (tok_setopt): Remove, replaced with...
21569 (tok_intopt, tok_stropt): these new guys.
21570 * src/lex.c (getopt.h): Not needed.
21571 (token_buffer, unlexed_token_buffer): Not const.
21572 (percent_table): Promote `-' over `_' in directive names.
21573 Active `%name-prefix', `file-prefix', and `output'.
21574 (parse_percent_token): Accept possible arguments to directives.
21575 Promote `-' over `_' in directive names.
21576
d8988b2f
AD
215772001-11-04 Akim Demaille <akim@epita.fr>
21578
21579 * doc/bison.texinfo (Decl Summary): Split the list into
21580 `directives for grammars' and `directives for bison'.
21581 Sort'em.
21582 Add description of `%name-prefix', `file-prefix', and `output'.
21583 Promote `-' over `_' in directive names.
21584 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
21585 Simplify the description of `--name-prefix'.
21586 Promote `-' over `_' in directive names.
21587 Promote `--output' over `--output-file'.
21588 Fix the description of `--defines'.
21589 * tests/output.at: Exercise %file-prefix and %output.
21590
6468d18e
AD
215912001-11-02 Akim Demaille <akim@epita.fr>
21592
21593 * doc/refcard.tex: Update.
21594
6b7e85b9
AD
215952001-11-02 Akim Demaille <akim@epita.fr>
21596
21597 * src/symtab.h (SUNDEF): New.
21598 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
21599 stand for `uninitialized', instead of 0.
21600 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
21601 * src/lex.c (lex): Adjust.
21602
21603 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
21604 Number it 0.
21605 Let yylex return it instead of a plain 0.
21606 Reported by Dick Streefland.
21607
cd5aafcf
AD
216082001-11-02 Akim Demaille <akim@epita.fr>
21609
21610 * tests/regression.at (Mixing %token styles): New test.
21611
037ca2f1
AD
216122001-11-02 Akim Demaille <akim@epita.fr>
21613
21614 * src/reader.c (parse_thong_decl): Formatting changes.
21615 (token_translations_init): New, extracted from...
21616 (packsymbols): Here.
21617 Adjust.
21618
270a173c
AD
216192001-11-01 Akim Demaille <akim@epita.fr>
21620
21621 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
21622 Check that `9foo.y' produces correct cpp guards.
21623 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
21624 guards.
21625 Reported by Wwp.
21626
561f9a30
AD
216272001-11-01 Akim Demaille <akim@epita.fr>
21628
21629 * tests/regression.at (Invalid input: 2): New.
21630 * src/lex.c (unlexed_token_buffer): New.
21631 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
21632 too.
21633 Reported by Wwp.
21634
f987e9d2
AD
216352001-11-01 Akim Demaille <akim@epita.fr>
21636
21637 * tests/calc.at: Catch up with 1.30.
21638 * configure.in: Bump to 1.49a.
21639 Adjust to newer Autotest.
21640
0846f581
PB
216412001-10-19 Pascal Bart <pascal.bart@epita.fr>
21642
21643 * src/conflicts.c: Move global variables rrc_total and src_total ...
21644 (print_conflicts): here.
21645 * src/output.c (output): Free global variable user_toknums.
21646 * src/lex.c (token_obstack): Become static.
21647
3c1a79b3
AD
216482001-10-18 Akim Demaille <akim@epita.fr>
21649
21650 * tests/atlocal.in (GCC): Add.
21651 * tests/calc.at: s/m4_match/m4_bmatch/.
21652 s/m4_patsubst/m4_bpatsubst/.
21653 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
21654 * configure.in: AC_SUBST(GCC).
21655
5d52e7d0
MA
216562001-10-14 Marc Autret <autret_m@epita.fr>
21657
21658 * src/options.c (create_long_option_table): Fix.
21659
631aa1d3
AD
216602001-10-10 Akim Demaille <akim@epita.fr>
21661
21662 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
21663
f6ec6d13
AD
216642001-10-04 Akim Demaille <akim@epita.fr>
21665
21666 * src/reader.c (parse_union_decl): Push the caracters in
21667 union_obstack, not attrs_obstack.
21668
342b8b6e
AD
216692001-10-04 Akim Demaille <akim@epita.fr>
21670
21671 Merge in the branch 1.29.
21672
21673 * src/reader.c (packsymbols): Use a temporary obstack for
21674 `%%tokendef', since output_stack is already used elsewhere.
21675
21676 2001-10-02 Akim Demaille <akim@epita.fr>
21677
21678 Bump 1.29d.
21679
21680 2001-10-02 Akim Demaille <akim@epita.fr>
21681
21682 Version 1.29c.
21683
21684 2001-10-02 Akim Demaille <akim@epita.fr>
21685
21686 * tests/regression.at (Invalid CPP headers): New.
21687 From Alexander Belopolsky.
21688 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
21689
21690 2001-10-02 Akim Demaille <akim@epita.fr>
21691
21692 * tests/regression.at (Invalid input): New.
21693 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
21694 Reported by Shura.
21695
21696 2001-10-02 Akim Demaille <akim@epita.fr>
21697
21698 * tests/calc.at: Now that --debug works, the tests must be adjusted.
21699
21700 2001-10-02 Akim Demaille <akim@epita.fr>
21701
21702 * src/output.c (output_parser): Assert `skeleton'.
21703 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
21704 systems.
21705 From Shura.
21706
21707 2001-10-01 Marc Autret <autret_m@epita.fr>
21708
21709 * src/lex.h: Echo modifications.
21710 * src/lex.c (unlex): Parameter is now token_t.
21711 From Hans Aberg.
21712
21713 2001-10-01 Marc Autret <autret_m@epita.fr>
21714
21715 * src/main.c: Include lex.h.
21716 From Hans Aberg.
21717
21718 2001-09-29 Akim Demaille <akim@epita.fr>
21719
21720 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
21721
21722 2001-09-28 Akim Demaille <akim@epita.fr>
21723
21724 * tests/testsuite.at: Update to newer Autotest.
21725 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
21726
21727 2001-09-27 Akim Demaille <akim@epita.fr>
21728
21729 Position independent wrapper.
21730
21731 * tests/bison: Remove.
21732 * tests/bison.in: New.
21733 * configure.in: Adjust.
21734
21735 2001-09-27 Paul Eggert <eggert@twinsun.com>
21736
21737 Port quotearg fixes from tar 1.13.24.
21738
21739 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
21740 tm to be declared.
21741 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
21742 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
21743
21744 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
21745 * m4/mbrtowc.m4: New file.
21746 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
21747 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
21748
21749 2001-09-27 Akim Demaille <akim@epita.fr>
21750
21751 Bump to 1.29c.
21752
21753 2001-09-27 Akim Demaille <akim@epita.fr>
21754
21755 Version 1.29b.
21756
21757 2001-09-25 Akim Demaille <akim@epita.fr>
21758
21759 * src/system.h: Include `xalloc.h'.
21760 Remove it from the C files.
21761 * src/files.c (output_files): Free the obstacks.
21762 * src/lex.c (init_lex): Rename as...
21763 (lex_init): this.
21764 (lex_free): New.
21765 * src/main.c (main): Use it.
21766
21767 2001-09-24 Marc Autret <autret_m@epita.fr>
21768
21769 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
21770 to output informations in fout (FILE*).
21771 (open_graph, close_graph): Likewise.
21772 (output_graph, output_edge, output_node): Likewise.
21773 * src/vcg.h: Update function prototypes.
21774 * src/print_graph.c (print_graph): Open output graph file.
21775 (print_actions): Adjust.
21776 * src/files.h: Remove extern declaration.
21777 * src/files.c: Remove graph_obstack declaration.
21778 (open_files): Remove graph_obstack initialization.
21779 (output_files): Remove graph_obstack saving.
21780
21781 2001-09-24 Marc Autret <autret_m@epita.fr>
21782
21783 * src/files.c (compute_output_file_names): Fix.
21784
21785 2001-09-24 Marc Autret <autret_m@epita.fr>,
21786 Akim Demaille <akim@epita.fr>
21787
21788 * src/reader.c (reader): Remove call to free_symtab ().
21789 * src/main.c (main): Call it here.
21790 Include symtab.h.
21791 * src/conflicts.c (initialize_conflicts): Rename as...
21792 (solve_conflicts): this.
21793 * src/print.c (print_core, print_actions, print_state)
21794 (print_grammar): Dump to a file instead a `output_obstack'.
21795 (print_results): Dump `output_obstack', and then proceed with the
21796 FILE *.
21797 * src/files.c (compute_output_file_names, close_files): New.
21798 (output_files): Adjust.
21799 * src/main.c (main): Adjust.
21800
21801 2001-09-23 Marc Autret <autret_m@epita.fr>
21802
21803 * src/files.c (compute_header_macro): Computes header macro name
21804 from spec_defines_file when given.
21805
21806 2001-09-23 Marc Autret <autret_m@epita.fr>
21807
21808 * src/files.c (output_files): Add default extensions.
21809
21810 2001-09-22 Akim Demaille <akim@epita.fr>
21811
21812 * src/conflicts.c (finalize_conflicts): Rename as...
21813 (free_conflicts): this.
21814
21815 2001-09-22 Akim Demaille <akim@epita.fr>
21816
21817 * src/gram.c (gram_free): Rename back as...
21818 (dummy): this.
21819 (output_token_translations): Free `token_translations'.
21820 * src/symtab.c (free_symtab): Free the tag field.
21821
21822 2001-09-22 Akim Demaille <akim@epita.fr>
21823
21824 Remove `translations' as it is always set to true.
21825
21826 * src/gram.h: Adjust.
21827 * src/reader.c (packsymbols, parse_token_decl): Adjust
21828 * src/print.c (print_grammar): Adjust.
21829 * src/output.c (output_token_translations): Adjust.
21830 * src/lex.c (lex): Adjust.
21831 * src/gram.c: Be sure the set pointers to NULL.
21832 (dummy): Rename as...
21833 (gram_free): this.
21834
21835 2001-09-22 Akim Demaille <akim@epita.fr>
21836
21837 * configure.in: Invoke AM_LIB_DMALLOC.
21838 * src/system.h: Use dmalloc.
21839 * src/LR0.c: Be sure to have pointers initialized to NULL.
21840 (allocate_itemsets): Allocate kernel_items only if needed.
21841
21842 2001-09-22 Akim Demaille <akim@epita.fr>
21843
21844 * configure.in: Bump to 1.29b.
21845 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
21846 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
21847 need xmalloc.c in calc.y.
21848 From Pascal Bart.
21849
21850 2001-09-21 Akim Demaille <akim@epita.fr>
21851
21852 Version 1.29a.
21853 * Makefile.maint, config/config.guess, config/config.sub,
21854 * config/missing: Update from masters.
21855 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
21856 upon package.m4.
21857 * configure.in (ALL_LINGUAS): Add `tr'.
21858
21859 2001-09-21 Akim Demaille <akim@epita.fr>
21860
21861 * tests/Makefile.am (package.m4): Move to...
21862 ($(srcdir)/$(TESTSUITE)): here.
21863
21864 2001-09-20 Akim Demaille <akim@epita.fr>
21865
21866 * src/complain.c: No longer try to be standalone: use system.h.
21867 Don't assume __STDC__ is defined to 1. Just test if it is defined.
21868 * src/complain.h: Likewise.
21869 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
21870 Remove the unused variable `n'.
21871 From Albert Chin-A-Young.
21872
21873 2001-09-18 Marc Autret <autret_m@epita.fr>
21874
21875 * doc/bison.1: Update.
21876 * doc/bison.texinfo (Bison Options): Update --defines and --graph
21877 descriptions.
21878 (Option Cross Key): Update.
21879 Add --graph.
21880
21881 2001-09-18 Marc Autret <autret_m@epita.fr>
21882
21883 * tests/regression.at: New test (comment in %union).
21884
21885 2001-09-18 Marc Autret <autret_m@epita.fr>
21886
21887 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
21888 do that.
21889 Reported by Keith Browne.
21890
21891 2001-09-18 Marc Autret <autret_m@epita.fr>
21892
21893 * tests/output.at: Add tests for --defines and --graph.
21894
21895 2001-09-18 Marc Autret <autret_m@epita.fr>
21896
21897 * tests/output.at: Removes tests of %{header,src}_extension features.
21898
21899 2001-09-18 Akim Demaille <akim@epita.fr>
21900
21901 * tests/Makefile.am (package.m4): New.
21902 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
21903 (_AT_CHECK_CALC_ERROR): Likewise.
21904 Factor the `, ' part of verbose error messages.
21905
21906 2001-09-18 Marc Autret <autret_m@epita.fr>
21907
21908 * src/getargs.c (longopts): Declare --defines and --graph as options
21909 with optional arguments.
21910 * src/files.h: Add extern declarations.
21911 * src/files.c (spec_graph_file, spec_defines_file): New.
21912 (output_files): Update.
21913 Remove CPP-outed code.
21914
21915 2001-09-18 Marc Autret <autret_m@epita.fr>
21916
21917 Turn off %{source,header}_extension feature.
21918
21919 * src/files.c (compute_exts_from_gf): Update.
21920 (compute_exts_from_src): Update.
21921 (output_files): CPP-out useless code.
21922 * src/files.h: Remove {header,source}_extension extern declarations.
21923 * src/reader.c (parse_dquoted_param): CPP-out.
21924 (parse_header_extension_decl): Remove.
21925 (parse_source_extension_decl): Remove.
21926 (read_declarations): Remove cases tok_{hdrext,srcext}.
21927 * src/lex.c (percent_table): Remove {header,source}_extension entries.
21928 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
21929
21930 2001-09-10 Akim Demaille <akim@epita.fr>
21931
21932 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
21933 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
21934 (AT_CHECK_OUTPUT): this.
21935 Merely check ls' exit status, its output is useless.
21936
21937 2001-09-10 Akim Demaille <akim@epita.fr>
21938
21939 * tests/calc.at: Use m4_match.
21940 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
21941
21942 2001-09-10 Marc Autret <autret_m@epita.fr>,
21943 Akim Demaille <akim@epita.fr>
21944
21945 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
21946 enum color_e.
21947 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
21948 to `normal'.
21949 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
21950 * src/lex.h: Adjust prototype.
21951 (token_t): Add `tok_undef'.
21952 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
21953 (parse_percent_token): Now returns token_t.
21954 Add default statement in switch.
21955 (lex): Separate `c' as an input variable, from the token_t result
21956 part.
21957 (unlexed): Is a token_t.
21958
21959 2001-09-10 Akim Demaille <akim@epita.fr>
21960
21961 * configure.in: Bump to 1.29a.
21962
21963 2001-09-07 Akim Demaille <akim@epita.fr>
21964
21965 Version 1.29.
21966
21967 2001-08-30 Akim Demaille <akim@epita.fr>
21968
21969 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
21970 * m4/atconfig.m4: Remove.
21971 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
21972 * tests/bison: New.
21973 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
21974 m4_if, m4_patsubst, and m4_regexp.
21975 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
21976 `input' file instead of echo.
21977
21978 2001-08-29 Akim Demaille <akim@epita.fr>
21979
21980 Bump to 1.28e.
21981
21982 2001-08-29 Akim Demaille <akim@epita.fr>
21983
21984 Version 1.28d.
21985
21986 2001-08-29 Paul Eggert <eggert@twinsun.com>
21987
21988 * src/bison.simple (yyparse): Don't take the address of an
21989 item before the start of an array, as that doesn't conform to
21990 the C Standard.
21991
21992 2001-08-29 Robert Anisko <anisko_r@epita.fr>
21993
21994 * doc/bison.texinfo (Location Tracking Calc): New node.
21995
21996 2001-08-29 Paul Eggert <eggert@twinsun.com>
21997
21998 * src/output.c (output): Do not define const, as this now
21999 causes more problems than it cures.
22000
22001 2001-08-29 Akim Demaille <akim@epita.fr>
22002
22003 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
22004 the nodes.
22005 Be sure to tag the `detailmenu'.
22006
22007 2001-08-29 Akim Demaille <akim@epita.fr>
22008
22009 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
22010 download in a tmp dir.
22011
22012 2001-08-28 Marc Autret <autret_m@epita.fr>
22013
22014 * config/depcomp: New file.
22015
22016 2001-08-28 Marc Autret <autret_m@epita.fr>
22017
22018 * doc/bison.1 (mandoc): Adjust.
22019 From Juan Manuel Guerrero.
22020
22021 2001-08-28 Marc Autret <autret_m@epita.fr>
22022
22023 * src/print_graph.c (print_state): Fix.
22024
22025 2001-08-27 Marc Autret <autret_m@epita.fr>
22026
22027 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
22028 char * members.
22029 Echo modifications to the functions prototypes.
22030 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
22031
22032 2001-08-27 Marc Autret <autret_m@epita.fr>
22033
22034 * src/vcg.c: Include `xalloc.h'.
22035 (add_colorentry): New.
22036 (add_classname): New.
22037 (add_infoname): New.
22038 * src/vcg.h: Add new prototypes.
22039
22040 2001-08-27 Akim Demaille <akim@epita.fr>
22041
22042 * Makefile.maint: Sync. again with CVS Autoconf.
22043
22044 2001-08-27 Akim Demaille <akim@epita.fr>
22045
22046 * Makefile.maint: Formatting changes.
22047 (po-update, cvs-update, update): New targets.
22048 (AMTAR): Remove.
22049
22050 2001-08-27 Akim Demaille <akim@epita.fr>
22051
22052 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22053 * Makefile.maint: Sync. with CVS Autoconf.
22054
22055 2001-08-27 Marc Autret <autret_m@epita.fr>
22056
22057 * src/vcg.h (struct infoname_s): New.
22058 (struct colorentry_s): New.
22059 (graph_s): New fields {vertical,horizontal}_order in structure.
22060 Add `infoname' field.
22061 Add `colorentry' field;
22062 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
22063 (G_HORIZONTAL_ORDER): New.
22064 (G_INFONAME): New.
22065 (G_COLORENTRY): New.
22066 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
22067 Add output of `infoname'.
22068 Add output of `colorentry'.
22069
22070 2001-08-27 Marc Autret <autret_m@epita.fr>
22071
22072 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
22073 This one shadowed a global parameter.
22074
22075 2001-08-24 Marc Autret <autret_m@epita.fr>
22076
22077 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
22078 instead of `unsigned'.
22079 (print_state): Do not call obstack_object_size () in obstack_grow ()
22080 to avoid macro variables shadowing.
22081
22082 2001-08-23 Marc Autret <autret_m@epita.fr>
22083
22084 * src/lex.c (percent_table): Typo: s/naem/name/.
22085 Add graph option.
22086 Normalize new options declarations.
22087
22088 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
22089
22090 * tests/suite.at: Exercise %header_extension and %source_extension.
22091
22092 2001-08-16 Marc Autret <autret_m@epita.fr>
22093
22094 * src/reader.c (parse_dquoted_param): New.
22095 (parse_header_extension_decl): Use it.
22096 (parse_source_extension_decl): Likewise.
22097
22098 2001-08-16 Marc Autret <autret_m@epita.fr>
22099
22100 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
22101 (get_xxxx_str): Use assert () instead of complain ().
22102 Remove return invokations in default cases.
22103 (get_decision_str): Modify default behaviour. Remove second argument.
22104 Echo modifications on calls.
22105 (output_graph): Fix.
22106
22107 2001-08-16 Marc Autret <autret_m@epita.fr>
22108
22109 * src/getargs.c (usage): Update with ``-g, --graph''.
22110
22111 2001-08-16 Marc Autret <autret_m@epita.fr>
22112
22113 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
22114 (Option Cross Key): Likewise.
22115 * doc/bison.1: Update.
22116
1c8c2190
PB
221172001-09-25 Pascal Bart <pascal.bart@epita.fr>
22118
22119 * src/output.c (output_master_parser): Don't finish action_obstack.
22120 (output_parser): Don't care about the muscle action, here.
22121 (prepare): Copy the action_obstack in the action muscle.
22122 (output): Free action_obstack.
22123
180d45ba
PB
221242001-09-23 Pascal Bart <pascal.bart@epita.fr>
22125
22126 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
22127 will contain `%union' declaration.
22128 (parse_union_decl): Delete #line directive output.
22129 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
22130 informations about %union.
22131 (parse_union_decl): Copy the union_obstack in the muscle stype.
22132 * src/bison.simple: Add new #line directive.
22133 Add typdef %%stype YYSTYPE.
22134
c51d1a19
PB
221352001-09-23 Pascal Bart <pascal.bart@epita.fr>
22136
22137 * src/bison.simple: Add new `#line' directive.
22138
6f9344da
PB
221392001-09-22 Pascal Bart <pascal.bart@epita.fr>
22140
22141 * src/bison.simple: New `#line' directive.
22142 * src/output.c (output_parser): Support new dynamic muscle input_line.
22143
652def80
MA
221442001-09-22 Marc Autret <autret_m@epita.fr>
22145
22146 * src/output.c (output_master_parser): New.
22147 (output_parser): Be more re-entrant.
22148
25b222fa
MA
221492001-09-21 Marc Autret <autret_m@epita.fr>
22150
22151 * src/reader.c (copy_definition, parse_union_decl): Update and use
22152 `linef' muscle.
22153 (copy_action): Likewise.
22154 Use obstack_1grow ().
22155 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
22156
6bc35ae5
MA
221572001-09-21 Marc Autret <autret_m@epita.fr>
22158
22159 * src/options.c (option_table): Adjust.
22160 * src/lex.c (parse_percent_token): Fix.
22161
c0629aa1
PB
221622001-09-20 Pascal Bart <pascal.bart@epita.fr>
22163
22164 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 22165
82b6d266
PB
221662001-09-20 Pascal Bart <pascal.bart@epita.fr>
22167
22168 * src/lex.c (parse_percent_token): Change type of variable `tx', which
22169 is now an option_table_struct*.
22170 (option_strcmp): New function option_strcmp.
22171 (parse_percent_token): Call option_strcmp.
22172 * src/getargs.c (xalloc.h, options.h): Include it.
22173 (getargs): Call create_long_option_table.
22174 (getargs): Free longopts at the end of the function.
22175 (shortopts): Move in options.c.
22176 * src/options.c (create_long_option_table): New function. Convert
22177 information from option_table to option structure.
22178 * src/reader.c (options.h): Include it.
22179
22180 * src/Makefile.am: Adjust.
22181 * src/options.c (option_table): Create from longopts and percent_table.
22182 * src/getargs.c (longopts): Delete.
22183 * src/lex.c (struct percent_table_struct): Delete.
22184 (percent_table): Delete.
22185 (options.h): Include it.
22186 * src/options.c: Create.
22187 * src/options.h: Create.
22188 Declare enum opt_access_e.
22189 Define struct option_table_struct.
22190
75f5aaea
MA
221912001-09-20 Marc Autret <autret_m@epita.fr>
22192
22193 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
22194 sections of Bison.
22195
f508cb0a
PB
221962001-09-19 Pascal Bart <pascal.bart@epita.fr>
22197
22198 * src/bison.simple: s/%%filename/%%skeleton.
22199 * src/muscle_tab.c (getargs.h): Include it.
22200 (muscle_init): Insert new muscle skeleton.
22201
13105fc1
PB
222022001-09-18 Pascal Bart <pascal.bart@epita.fr>
22203
22204 * src/output.c (output_parser): Delete unused variable actions_dumped.
22205
b0c4483e
PB
222062001-09-07 Pascal Bart <pascal.bart@epita.fr>
22207
22208 * src/output.c (output): Delete call to reader_output_yylsp.
22209 * src/reader.c (reader): Likewise.
ba0fe3c7 22210 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 22211
11d82f03
MA
222122001-09-02 Marc Autret <autret_m@epita.fr>
22213
22214 * src/reader.c: Include muscle_tab.h.
22215 (parse_union_decl): Update.
22216 (parse_macro_decl): Rename parse_muscle_decl.
22217 Update to use renamed functions and variable.
22218 (read_declarations, copy_action, read_additionnal_code, : Updated
22219 with correct variables and functions names.
22220 (packsymbols, reader): Likewise.
342b8b6e 22221
11d82f03 22222 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 22223
11d82f03
MA
22224 * src/output.c: Include muscle_tab.h
22225 In all functions using macro_insert, change by using muscle_insert ().
22226 (macro_obstack): Rename muscle_obstack.
22227 Echo modifications in the whole file.
22228 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
22229 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
22230 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
22231
22232 * src/muscle_tab.h: Update double inclusion macros.
22233 (macro_entry_s): Rename muscle_entry_s.
22234 Update prototypes.
342b8b6e 22235
11d82f03
MA
22236 * src/muscle_tab.c: Include muscle_tab.h.
22237 Rename macro_tabble to muscle_table.
22238 (mhash1, mhash2, mcmp): Use muscle_entry.
22239 (macro_init): Rename muscle_init. Update.
22240 (macro_insert): Rename muscle_insert. Update.
22241 (macro_find): Rename muscle_find. Update.
22242
22243 * src/main.c: Include muscle_tab.h.
22244 (main): Call muscle_init ().
22245 * src/Makefile.am (bison_SOURCES): Echo modifications.
22246
93a37297
MA
222472001-09-02 Marc Autret <autret_m@epita.fr>
22248
f753cd62 22249 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 22250
f753cd62
MA
22251 * src/muscle_tab.c, src/muscle_tab.h: Add files.
22252
222532001-09-02 Marc Autret <autret_m@epita.fr>
22254
22255 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 22256
682d48cd
PB
222572001-09-01 Pascal Bart <pascal.bart@epita.fr>
22258
342b8b6e 22259 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
22260 filename.
22261
087c8fda
MA
222622001-09-01 Marc Autret <autret_m@epita.fr>
22263
22264 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
22265 to an explicit value to activate the feature. We do it here.
22266
dda680cb
PB
222672001-08-31 Pascal Bart <pascal.bart@epita.fr>
22268
22269 * src/output.c (prepare): Delete the `filename' muscule insertion.
22270 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
22271 (parse_union_decl): Likewise.
22272 * src/macrotab.c (macro_init): Initialize filename by infile.
22273
9e644e64
MA
222742001-08-31 Marc Autret <autret_m@epita.fr>
22275
22276 * src/bison.simple (YYLSP_NEEDED): New definition.
22277 * src/output.c (prepare): Add macro insertion of `locations_flag'
22278
17da6427
PB
222792001-08-31 Pascal Bart <pascal.bart@epita.fr>
22280
22281 * src/output.c (prepare): Delete insertion of previous muscles,
22282 and insert the `prefix' muscles.
22283 * src/macrotab.c (macro_init): Likewise.
22284 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 22285 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
22286 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
22287 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 22288 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
22289 name_prefix.
22290
e8cb70b9
PB
222912001-08-31 Pascal Bart <pascal.bart@epita.fr>
22292
22293 * src/main.c (main): Standardize.
22294 * src/output.c (output_table_data, output_parser): Likewise.
22295 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
22296
63c2d5de
MA
222972001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
22298
342b8b6e 22299 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
22300 %%epilogue.
22301 * src/output.c (output): Rename %%declarations to %%prologue.
22302 * src/bison.simple: Echo modifications.
342b8b6e 22303
d8cb5183
MA
223042001-08-31 Marc Autret <autret_m@epita.fr>
22305
22306 * src/reader.c (readgram): CleanUp.
22307 (output_token_defines): Likewise.
22308 (packsymbols): Likewise.
22309 (reader): Likewise.
22310 * src/output.c (output): CPP-out useless code.
22311
6c686258
PB
223122001-08-31 Pascal Bart <pascal.bart@epita.fr>
22313
342b8b6e 22314 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
22315 output_trailers and output_headers.
22316 * src/output.h: Remove obsolete functions prototypes of output_headers
22317 and output_trailers.
22318
8f451ef7
PB
223192001-08-30 Pascal Bart <pascal.bart@epita.fr>
22320
22321 * src/main.c: Include macrotab.h.
342b8b6e 22322 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
22323 Adjust functions prototypes.
22324 * src/macrotab.c (macro_insert): Constify key and value.
22325 (macro_find): Constify key.
22326 (macro_insert): Include 'xalloc.h'
22327 (macro_insert): Use XMALLOC.
22328 (macro_find): Constify return value.
22329 * src/output.c (output_table_data): Rename table to table_data.
22330 (output_parser): Constify macro_key, macro_value.
22331
997b6fd0 223322001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
22333
22334 * src/reader.c (parse_skel_decl): New.
342b8b6e 22335 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
22336 * src/lex.h (token_t): New token `tok_skel'.
22337 * src/lex.c (percent_table): Add skeleton option entry.
22338 Standardize.
22339
ff48177d
MA
223402001-08-29 Marc Autret <autret_m@epita.fr>
22341
22342 * src/bison.simple: Add %%user_code directive at the end.
22343 * src/reader.c (read_additionnal_code): New.
22344 (reader): Use it.
22345 * src/output.c (output_program): Remove.
22346 (output): Update.
22347
b33160bf
MA
223482001-08-28 Marc Autret <autret_m@epita.fr>
22349
22350 * src/output.c (output_actions): Clean up.
4e5caae2 22351 (output_gram): CPP-out useless code.
b33160bf
MA
22352 * src/reader.c (reader): Clean up, CPP-out useless code.
22353
d1a2daf7
PB
223542001-08-28 Pascal Bart <pascal.bart@epita.fr>
22355
342b8b6e 22356 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 22357 directive.
d1a2daf7
PB
22358 * src/bison.simple: Add `%%definitions'.
22359
2b763dfe
MA
223602001-08-28 Marc Autret <autret_m@epita.fr>
22361
22362 * config/depcomp: New file.
22363
f1a87ef6
PE
223642001-08-27 Paul Eggert <eggert@twinsun.com>
22365
22366 * src/bison.simple (yyparse): Don't take the address of an
22367 item before the start of an array, as that doesn't conform to
22368 the C Standard.
22369
82e236e2
RA
223702001-08-27 Robert Anisko <robert.anisko@epita.fr>
22371
f1a87ef6 22372 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
22373 obstack. It was done too late here.
22374
22375 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
22376 completely wrong.
22377 (reader): Initialize the macro obstack here, since we need it to grow
22378 '%define' directives.
22379
22380 * src/reader.h: Declare the macro obstack as extern.
22381
b0cfa28a
RA
223822001-08-27 Robert Anisko <robert.anisko@epita.fr>
22383
22384 * src/output.c (output_parser): Fix. Store single '%' characters in
22385 the output obstack instead of throwing them away.
22386
6fc74234
AD
223872001-08-27 Akim Demaille <akim@epita.fr>
22388
22389 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22390
9c76d118
RA
223912001-08-25 Robert Anisko <robert.anisko@epita.fr>
22392
22393 * lib/Makefile.am: Adjust.
22394
a8289c62
RA
223952001-08-25 Robert Anisko <robert.anisko@epita.fr>
22396
22397 * src/bison.simple: Update and add '%%' directives.
22398
b6610515
RA
223992001-08-25 Robert Anisko <robert.anisko@epita.fr>
22400
22401 * src/reader.c (reader): Remove calls to 'output_headers' and
22402 'output_trailers'. Remove some C output.
22403 (readgram): Disable a piece of code that was writing a default
22404 definition for 'YYSTYPE'.
22405 (reader_output_yylsp): Remove.
22406 (packsymbols): Output token defintions to a macro.
22407 (copy_definition): Disable C output.
6fc74234 22408
b6610515
RA
22409 * src/reader.c (parse_macro_decl): New function used to parse macro
22410 declarations.
22411 (copy_string2): Put the body of copy_string into this new function.
22412 Add a parameter to let the caller choose whether he wants to copy the
22413 string delimiters or not.
22414 (copy_string): Be a simple call to copy_string2 with the last argument
22415 bound to true.
22416 (read_declarations): Add case for macro definition.
22417 (copy_identifier): New.
6fc74234 22418 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
22419 rather than lex.
22420
26f609ff
RA
224212001-08-25 Robert Anisko <robert.anisko@epita.fr>
22422
22423 * src/output.c (prepare): Add prefixed names.
22424 (output_parser): Output semantic actions.
22425 (output_parser): Fix bug on '%%line' directives.
6fc74234 22426
26f609ff
RA
22427 * src/output.c (output_headers): Remove. The C code printed by this
22428 function should now be in the skeletons.
22429 (output_trailers): Remove.
22430 (output): Disable call to 'reader_output_yylsp'.
22431 (output_rule_data): Do not output tables to the table obstack.
22432
22433 * src/output.c: Remove some C dedicated output.
22434 Improve the use of macro and output obstacks.
22435 (output_defines): Remove.
6fc74234 22436
26f609ff
RA
22437 * src/output.c (output_token_translations): Associate 'translate'
22438 table with a macro. No output to the table obstack.
22439 (output_gram): Same for 'rhs' and 'prhs'.
22440 (output_stos): Same for 'stos'.
22441 (output_rule_data): Same for 'r1' and 'r2'.
22442 (token_actions): Same for 'defact'.
22443 (goto_actions): Same for 'defgoto'.
22444 (output_base): Same for 'pact' and 'pgoto'.
22445 (output_table): Same for 'table'.
22446 (output_check): Same for 'check'.
6fc74234 22447
26f609ff
RA
22448 * src/output.c (output_table_data): New function.
22449 (output_short_table): Remove.
22450 (output_short_or_char_table): Remove.
6fc74234 22451
26f609ff
RA
22452 * src/output.c (output_parser): Replace most of the skeleton copy code
22453 with something new. Skeletons are now processed character by character
22454 rather than line by line, and Bison looks for '%%' macros. This is the
22455 first step in making Bison's output process (a lot) more flexible.
22456 (output_parser): Use the macro table.
22457
6f43b113
RA
224582001-08-25 Robert Anisko <robert.anisko@epita.fr>
22459
22460 * src/main.c (main): Initialize the macro table.
22461
dd3127cf
RA
224622001-08-25 Robert Anisko <robert.anisko@epita.fr>
22463
22464 * src/lex.c (percent_table): Add tok_define.
22465 * src/lex.h: Add tok_define.
22466
aa321494
RA
224672001-08-25 Robert Anisko <robert.anisko@epita.fr>
22468
22469 * src/macrotab.c: New file.
22470 * src/macrotab.h: New file.
22471 * src/Makefile.am: Update.
22472
68bd3b6b
RA
224732001-08-25 Robert Anisko <robert.anisko@epita.fr>
22474
22475 * lib/hash.c: New file.
22476 * lib/hash.h: New file.
22477 * lib/Makefile.am: Update.
22478
45f8dd1e
AD
224792001-08-15 Akim Demaille <akim@epita.fr>
22480
22481 Version 1.28c.
22482
40a64a7a 224832001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
22484
22485 * src/reader.c (readgram): Indent output macro YYSTYPE.
22486 (packsymbols): Likewise.
22487 (output_token_defines): Likewise.
22488 * src/files.c: Standardize.
22489 (compute_header_macro): New.
22490 (defines_obstack_save): New. Use compute_header_macro.
22491 (output_files): Update. Use defines_obstack_save.
22492
f9a8293a
AD
224932001-08-15 Akim Demaille <akim@epita.fr>
22494
22495 * doc/bison.texinfo (Table of Symbols): Document
22496 YYSTACK_USE_ALLOCA.
22497
150ca7a7
AD
224982001-08-15 Akim Demaille <akim@epita.fr>
22499
22500 * missing: Update from CVS Automake.
22501 * config/config.guess, config/config.sub, config/texinfo.tex:
22502 Update from gnu.org.
22503
69b5cec4
AD
225042001-08-15 Akim Demaille <akim@epita.fr>
22505
22506 * Makefile.maint: Sync with CVS Autoconf.
22507
f2b5126e
PB
225082001-08-14 Pascal Bart <pascal.bart@epita.fr>
22509
69b5cec4 22510 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
22511 `fdl.texi'.
22512 * doc/fdl.texi: Add to package.
22513
4ecbf796
MA
225142001-08-14 Marc Autret <autret_m@epita.fr>
22515
22516 Turn on %{source,header}_extension features.
22517
69b5cec4 22518 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
22519 source_extension.
22520 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 22521 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
22522 between options.
22523
95fb5662
MA
225242001-08-14 Marc Autret <autret_m@epita.fr>
22525
22526 * src/files.c (compute_base_names): Add extensions computing when
22527 `--file-prefix' used.
22528 Standardize function calls.
22529
78d09da9
MA
225302001-08-13 Marc Autret <autret_m@epita.fr>
22531
69b5cec4 22532 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
22533 defining it (defined but null disables alloca).
22534
5a009f2c
MA
225352001-08-13 Marc Autret <autret_m@epita.fr>
22536
22537 * src/bison.simple (_yy_memcpy): CPP reformat.
22538
1e41465a
PB
225392001-08-13 Pascal Bart <pascal.bart@epita.fr>
22540
22541 * tests/atconfig.in (CPPFLAGS): Fix.
22542
c67a198d
PB
225432001-08-10 Pascal Bart <pascal.bart@epita.fr>
22544
79282c6c 22545 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
22546 `gpl.texi'.
22547 * doc/gpl.texi: Add to package.
22548
09a6de7e
MA
225492001-08-10 Marc Autret <autret_m@epita.fr>
22550
22551 * src/print_graph.h: Fix.
22552 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
22553
b77b9ee0
AD
225542001-08-10 Akim Demaille <akim@epita.fr>
22555
22556 * src/system.h: Provide default declarations for stpcpy, strndup,
22557 and strnlen.
22558
3e259915
MA
225592001-08-10 Robert Anisko <anisko_r@epita.fr>
22560
22561 * doc/bison.texinfo (Locations): Update @$ stuff.
22562
ca96bc2d
MA
225632001-08-09 Robert Anisko <anisko_r@epita.fr>
22564
22565 * src/bison.simple (YYLLOC_DEFAULT): Update.
22566 (yyparse): Adjust.
22567
fdc6758b
MA
225682001-08-08 Marc Autret <autret_m@epita.fr>
22569
b77b9ee0 22570 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
22571 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
22572 Reported by Fabrice Bauzac.
957d4dbf 22573
600cad3b
MA
225742001-08-08 Marc Autret <autret_m@epita.fr>
22575
22576 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
22577 * src/vcg.c (output_node): Fix.
22578 * src/vcg.h: Cleanup.
22579 * src/print_graph.c: Add comments.
b77b9ee0 22580 (node_output_size): New global variable. Simplify the formatting of
600cad3b 22581 the VCG graph output.
b77b9ee0 22582 (print_actions): Unused code is now used. It notifies the final state
600cad3b 22583 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 22584 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
22585 blue.
22586 Get the current node name and node_obstack by argument.
22587 (node_obstack): New variable.
22588 (print_state): Manage node_obstack.
22589 (print_core): Use node_obstack given by argument.
22590 A node is not only computed here but in print_actions also.
22591 (print_graph): CPP out useless code instead of commenting it.
22592
976e528f
AD
225932001-08-07 Pascal Bart <pascal.bart@epita.fr>
22594
22595 * tests/atconfig.in (CPPFLAGS): Fix.
22596
20e8e5ca
AD
225972001-08-07 Akim Demaille <akim@epita.fr>
22598
22599 * src/print_graph.c (quote): New.
22600 (print_core): Use it.
22601
957d4dbf 226022001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 22603
3e3da797
AD
22604 * src/vcg.c (complain.h): Include it.
22605 Unepitaize `return' invocations.
c4b66126 22606 [NDEBUG] (main): Remove.
79282c6c 22607 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
22608 * src/files.c (open_files): Initialize graph_obstack.
22609 * src/print_graph.c (print_actions): CPP out useless code.
22610 (print_core): Don't output the last `\n' in labels.
22611 Use `quote'.
22612 * src/files.c (output_files): Output the VCG file.
22613 * src/main.c (main): Invoke print_graph ();
3e3da797 22614
957d4dbf 226152001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
22616
22617 Automaton VCG graph output.
22618 Using option ``-g'' or long option ``--graph'', you can generate
22619 a gram_filename.vcg file containing a VCG description of the LALR (1)
22620 automaton of your grammar.
22621
22622 * src/main.c: Call to print_graph() function.
22623 * src/getargs.h: Update.
22624 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
22625 (graph_flag): New flag.
22626 (longopts): Update.
22627 (getargs): Add case `g'.
22628 * src/files.c (graph_obstack): New obstack struct.
22629 (open_files): Initialize new obstack.
22630 (output_files): Saves graph_obstack if required.
22631 * src/files.h (graph_obstack): New extern declaration.
22632 * src/Makefile.am: Add new source files.
22633
927c1557 226342001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
22635
22636 * src/print_graph.c, src/print_graph.h (graph): New.
22637 * src/vcg.h: New file.
22638 * src/vcg.c: New file, VCG graph handling.
22639
7333d403
AD
226402001-08-06 Marc Autret <autret_m@epita.fr>
22641
22642 Add of %source_extension and %header_extension which specify
22643 the source or/and the header output file extension.
22644
22645 * src/files.c (compute_base_names): Remove initialisation of
22646 src_extension and header_extension.
22647 (compute_exts_from_gf): Update.
22648 (compute_exts_from_src): Update.
22649 (output_files): Update.
22650 * src/reader.c (parse_header_extension_decl): New.
22651 (parse_source_extension_decl): New.
22652 (read_declarations): New case statements for the new tokens.
22653 * src/lex.c (percent_table): Add entries for %source_extension
22654 and %header_extension.
22655 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
22656
84163231
AD
226572001-08-06 Marc Autret <autret_m@epita.fr>
22658
22659 * configure.in: Bump to 1.28c.
22660 * doc/bison.texinfo: Texinfo thingies.
22661
8303fc42
AD
226622001-08-04 Pascal Bart <pascal.bart@epita.fr>
22663
22664 * tests/atconfig.in (CPPFLAGS): Add.
22665 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
22666
70a84437
AD
226672001-08-03 Akim Demaille <akim@epita.fr>
22668
22669 Version 1.28b.
22670
2ce10144
AD
226712001-08-03 Akim Demaille <akim@epita.fr>
22672
22673 * tests/Makefile.am (check-local): Ship testsuite.
22674 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
22675 Include `string.h'.
22676
1e3e4bc1
AD
226772001-08-03 Akim Demaille <akim@epita.fr>
22678
22679 * configure.in: Try using -Wformat when compiling.
22680
42b45b7f
AD
226812001-08-03 Akim Demaille <akim@epita.fr>
22682
22683 * configure.in: Bump to 1.28b.
22684
8f13fe33
AD
226852001-08-03 Akim Demaille <akim@epita.fr>
22686
22687 * src/complain.c: Adjust strerror_r portability issues.
22688
b37ba92c
AD
226892001-08-03 Akim Demaille <akim@epita.fr>
22690
22691 Version 1.28a.
22692
b0ce6046
AD
226932001-08-03 Akim Demaille <akim@epita.fr>
22694
22695 * src/getargs.c, src/getarg.h (skeleton)): Constify.
22696 * src/lex.c (literalchar): Avoid name clashes on `buf'.
22697 * src/getargs.c: Include complain.h.
22698 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
22699 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
22700
d01c415b
AD
227012001-08-03 Akim Demaille <akim@epita.fr>
22702
22703 * src/reader.c (readgram): Display hidden chars in error messages.
22704
459dd1a6
AD
227052001-08-03 Akim Demaille <akim@epita.fr>
22706
22707 Update to gettext 0.10.39.
22708
53b74c0c
AD
227092001-08-03 Akim Demaille <akim@epita.fr>
22710
22711 * lib/strspn.c: New.
22712
234a3be3
AD
227132001-08-01 Marc Autret <autret_m@epita.fr>
22714
22715 * doc/bison.texinfo: Update.
22716 * doc/bison.1 (mandoc): Update.
22717 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
22718 * src/files.c: Support output files extensions computing.
22719 (src_extension): New static variable.
22720 (header_extension): New static variable.
22721 (tr): New function.
22722 (get_extension_index): New function, gets the index of an extension
22723 filename in a string.
22724 (compute_exts_from_gf): New function, computes extensions from the
22725 grammar file extension.
22726 (compute_exts_from_src): New functions, computes extensions from the
22727 C source file extension, file given by ``-o'' option.
22728 (compute_base_names): Update.
22729 (output_files): Update.
22730
847bf1f5
AD
227312001-08-01 Robert Anisko <anisko_r@epita.fr>
22732
d995fee7 22733 * doc/bison.texi: Document @$.
847bf1f5
AD
22734 (Locations): New section.
22735
d074a105
AD
227362001-07-18 Akim Demaille <akim@epita.fr>
22737
22738 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
22739 * config/prev-version.txt, config/move-if-change: New.
22740 * Makefile.am: Adjust.
22741
3419715d
AD
227422001-07-08 Pascal Bart <pascal.bart@epita.fr>
22743
22744 * src/bison.simple (yyparse): Suppress warning `comparaison
22745 between signed and unsigned'.
22746
62ab6972
AD
227472001-07-05 Pascal Bart <pascal.bart@epita.fr>
22748
22749 * src/getargs.h (raw_flag): Remove.
22750 * src/getargs.c: Die on `-r'/`--raw'.
22751 * src/lex.c (parse_percent_token): Die on `%raw'.
22752 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
22753 * tests/calc.at: Suppress test with option `--raw'.
22754
1e24cc5b
AD
227552001-07-14 Akim Demaille <akim@epita.fr>
22756
22757 * config/: New.
22758 * configure.in: Require Autoconf 2.50.
22759 Update to gettext 0.10.38.
22760
32dfccf8
AD
227612001-03-16 Akim Demaille <akim@epita.fr>
22762
22763 * doc/bison.texinfo: ANSIfy the examples.
22764
cd5bd6ac
AD
227652001-03-16 Akim Demaille <akim@epita.fr>
22766
22767 * getargs.c (skeleton): New variable.
22768 (longopts): --skeleton is a new option.
22769 (shortopts, getargs): -S is a new option.
22770 * getargs.h: Declare skeleton.
22771 * output.c (output_parser): Use it.
22772
5141b016
AD
227732001-03-16 Akim Demaille <akim@epita.fr>
22774
22775 * m4/strerror_r.m4: New.
22776 * m4/error.m4: Run AC_FUNC_STRERROR_R.
22777 * lib/error.h, lib/error.c: Update.
22778
447992b9
AD
227792001-03-16 Akim Demaille <akim@epita.fr>
22780
22781 * src/getargs.c (longopts): Clean up.
22782
274d42ce
AD
227832001-02-21 Akim Demaille <akim@epita.fr>
22784
22785 * src/reader.c (gensym): `gensym_count' is your own.
22786 Use a static buf to create the symbol name, as token_buffer is no
22787 longer a buffer.
22788
22c821f3
AD
227892001-02-08 Akim Demaille <akim@epita.fr>
22790
22791 * src/conflicts.c (conflict_report): Be sure not to append to res
22792 between two calls, which could happen if both first sprintf were
22793 skipped, but not the first cp += strlen.
22794
18569462
AD
227952001-02-08 Akim Demaille <akim@epita.fr>
22796
22797 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
22798 New, from fileutils 4.0.37.
22799 * configure.in: Require Autoconf 2.49c. I took some time before
22800 making this decision. This is the only way out for portability
22801 issues in Bison, it would mean way too much duplicate effort to
22802 import in Bison features implemented in 2.49c since 2.13.
22803 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
22804
0d8f3c8a
AD
228052001-02-02 Akim Demaille <akim@epita.fr>
22806
22807 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 22808 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 22809
f17bcd1f
AD
228102001-01-19 Akim Demaille <akim@epita.fr>
22811
22812 Get rid of the ad hoc handling of token_buffer in the scanner: use
22813 the obstacks.
22814
22815 * src/lex.c (token_obstack): New.
22816 (init_lex): Initialize it. No longer call...
22817 (grow_token_buffer): this. Remove it.
22818 Adjust all the places which used it to use the obstack.
22819
511e79b3
AD
228202001-01-19 Akim Demaille <akim@epita.fr>
22821
22822 * src/lex.h: Rename all the tokens:
22823 s/\bENDFILE\b/tok_eof/g;
22824 s/\bIDENTIFIER\b/tok_identifier/g;
22825 etc.
22826 Let them be enums, not #define, to ease debugging.
22827 Adjust all the code.
22828
0d6508ef
AD
228292001-01-18 Akim Demaille <akim@epita.fr>
22830
22831 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
22832 * src/lex.c (maxtoken, grow_token_buffer): Static.
22833
6deb4447
AD
228342001-01-18 Akim Demaille <akim@epita.fr>
22835
22836 Since we now use obstacks, more % directives can be enabled.
22837
22838 * src/lex.c (percent_table): Also accept `%yacc',
22839 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
22840 `%debug'.
22841 Handle the actions for `%semantic_parser' and `%pure_parser' here,
22842 instead of returning a token.
22843 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
22844 * src/reader.c (read_declarations): Adjust.
22845 * src/files.c (open_files): Don't call `compute_base_names', don't
22846 compute `attrsfile' since they depend upon data which might be
22847 *in* the input file now.
22848 (output_files): Do it here.
22849 * src/output.c (output_headers): Document the fact that this patch
22850 introduces a guaranteed SEGV for semantic parsers.
22851 * doc/bison.texinfo: Document them.
22852 * tests/suite.at: Exercise these %options.
22853
ff4423cc
AD
228542000-12-20 Akim Demaille <akim@epita.fr>
22855
22856 Also handle the output file (--verbose) with obstacks.
22857
22858 * files.c (foutput): Remove.
22859 (output_obstack): New.
22860 Adjust all dependencies.
22861 * src/conflicts.c: Return a string.
22862 * src/system.h (obstack_grow_string): Rename as...
22863 (obstack_sgrow): this. Be ready to work with non literals.
22864 (obstack_fgrow4): New.
22865
956dba3a
AD
228662000-12-20 Akim Demaille <akim@epita.fr>
22867
22868 * src/files.c (open_files): Fix the computation of short_base_name
22869 in the case of `-o foo.tab.c'.
22870
337bab46
AD
228712000-12-20 Akim Demaille <akim@epita.fr>
22872
22873 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
22874 (copy_dollar): Now that everything uses obstacks, get rid of the
22875 FILE * parameters.
22876
5d3214b8
AD
228772000-12-20 Akim Demaille <akim@epita.fr>
22878
22879 * src/files.c (open_files): Actually the `.output' file is based
22880 on the short_base_name, not base_name.
22881 * tests/suite.at (Checking output file names): Adjust.
22882
29092a57
AD
228832000-12-20 Akim Demaille <akim@epita.fr>
22884
22885 * src/bison.s1: Remove, we now use directly...
22886 * src/bison.simple: this.
22887 * src/Makefile.am: Use pkgdata instead of data.
22888
ea5607fd
AD
228892000-12-20 Akim Demaille <akim@epita.fr>
22890
22891 * src/files.c (guard_obstack): New.
22892 (open_files): Initialize it.
22893 (output_files): Dump it...
22894 * src/files.h: Export it.
22895 * src/reader.c (copy_guard): Use it.
22896
27110317
AD
228972000-12-19 Akim Demaille <akim@epita.fr>
22898
22899 * src/files.c (outfile, defsfile, actfile): Removed as global
22900 vars.
22901 (open_files): Don't compute them.
22902 (output_files): Adjust.
22903 (base_name, short_base_name): Be global.
22904 Adjust dependencies.
22905
19c50364
AD
229062000-12-19 Akim Demaille <akim@epita.fr>
22907
22908 * src/files.c (strsuffix): New.
22909 (stringappend): Be just like strcat but allocate.
22910 (base_names): Eve out from open_files.
22911 Try to simplify the rather hairy computation of base_name and
22912 short_base_name.
22913 (open_files): Use it.
22914 * tests/suite.at (Checking output file names): New test.
22915
573c1d9f
AD
229162000-12-19 Akim Demaille <akim@epita.fr>
22917
22918 * src/system.h (obstack_grow_literal_string): Rename as...
22919 (obstack_grow_string): this.
22920 * src/output.c (output_parser): Recognize `%% actions' instead of
22921 `$'.
22922 * src/bison.s1: s/$/%% actions/.
22923 * src/bison.hairy: Likewise.
22924
ef7ddedd
AD
229252000-12-19 Akim Demaille <akim@epita.fr>
22926
22927 * src/output.c (output_parser): Compute the `#line' lines when
22928 there are.
22929 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
22930 Suggested by Hans Aberg.
22931
ff61dabd
AD
229322000-12-19 Akim Demaille <akim@epita.fr>
22933
22934 Let the handling of the skeleton files be local to the procedures
22935 that use it.
22936
22937 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
22938 longer static.
22939 (fparser, open_extra_files): Remove.
22940 (open_files, output_files): Don't take care of fparser.
22941 * src/files.h: Adjust.
22942 * src/output.c (output_parser): Open and close the file to the
22943 skeleton.
22944 * src/reader.c (read_declarations): When %semantic_parser, open
22945 fguard.
22946
55b96341
AD
229472000-12-19 Akim Demaille <akim@epita.fr>
22948
22949 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
22950 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
22951
358c15b7
AD
229522000-12-19 Akim Demaille <akim@epita.fr>
22953
22954 * src/files.c (open_files): Yipee! We no longer need all the code
22955 looking for `/tmp' since we have no tmp file.
22956
7de3329e
AD
229572000-12-19 Akim Demaille <akim@epita.fr>
22958
22959 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
22960 New macros.
22961 * src/files.c (open_files): Less dependency on MSDOS etc.
22962
3abcd459
AD
229632000-12-14 Akim Demaille <akim@epita.fr>
22964
22965 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
22966 Provide a default definition.
22967 Use it when executing the default @ action.
22968 * src/reader.c (reader_output_yylsp): No longer include
22969 `timestamp' and `text' in the default YYLTYPE.
22970
2a91a95e
AD
229712000-12-12 Akim Demaille <akim@epita.fr>
22972
22973 * src/reader.c (copy_definition, parse_union_decl, copy_action)
22974 (copy_guard): Quote the file names.
22975 Reported by Laurent Mascherpa.
22976
14d3eb9b
AD
229772000-12-12 Akim Demaille <akim@epita.fr>
22978
22979 * src/output.c (output_headers, output_program, output): Be sure
22980 to escape special characters when outputting filenames.
22981 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
22982 (output_headers): Don't depend on them, Use ACTSTR.
22983
d7045ec6
AD
229842000-11-17 Akim Demaille <akim@epita.fr>
22985
22986 * lib/obstack.h: Formatting changes.
22987 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
22988 prevents type checking.
22989 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
22990 cast the value to (void *): assigning a `foo *' to a `void *'
22991 variable is valid.
22992 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
22993 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
22994 append characters.
22995
6fd54b73
AD
229962000-11-17 Akim Demaille <akim@epita.fr>
22997
22998 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
22999 as...
23000 (suite.m4, regression.m4, calc.m4): these.
23001 * tests/atgeneral.m4: Update from CVS Autoconf.
23002
4c50eae6
AD
230032000-11-17 Akim Demaille <akim@epita.fr>
23004
23005 * tests/regression.m4 (%union and --defines): New test,
23006 demonstrating a current bug in the obstack implementation.
23007
a35f64ea
AD
230082000-11-17 Akim Demaille <akim@epita.fr>
23009
23010 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
23011 macros.
23012 Use them to declare the variables which are global or local to
23013 `yyparse'.
23014
7de23534
AD
230152000-11-17 Akim Demaille <akim@epita.fr>
23016
23017 * acconfig.h: Remove, no longer used.
23018
aa7815f5
AD
230192000-11-07 Akim Demaille <akim@epita.fr>
23020
23021 * src: s/Copyright (C)/Copyright/g.
23022
5af1f549
AD
230232000-11-07 Akim Demaille <akim@epita.fr>
23024
23025 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
23026 defining.
23027 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
23028
553e2b22
AD
230292000-11-07 Akim Demaille <akim@epita.fr>
23030
23031 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
23032 Merge in a single CPP if/else.
23033
8a4f41d6
AD
230342000-11-07 Akim Demaille <akim@epita.fr>
23035
23036 * src/output.c (output): Remove useless variables.
23037 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
23038 argument `data' for consistency with the prototypes.
23039 Qualify it `const'.
23040 (obstack_copy, obstack_copy0): Rename the second argument as
23041 `address' for consistency. Qualify it `const'.
23042 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
23043 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
23044 `const' their input argument (`data' or `address').
23045 Adjust the corresponding macros to include `const' in casts.
23046
095a3fb5
AD
230472000-11-03 Akim Demaille <akim@epita.fr>
23048
23049 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
23050 s/PFILE1/BISON_HAIRY/.
23051 Adjust dependencies.
23052
d1cdce7c
AD
230532000-11-03 Akim Demaille <akim@epita.fr>
23054
090c5ebf 23055 For some reason, this was not applied.
d1cdce7c
AD
23056
23057 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23058 `unlink': it's no longer used.
23059
9311529b
AD
230602000-11-03 Akim Demaille <akim@epita.fr>
23061
23062 * src/files.c (skeleton_find): New function, eved out of...
23063 (open_files, open_extra_files): here.
23064
d8880f69
AD
230652000-11-03 Akim Demaille <akim@epita.fr>
23066
23067 Don't use `atexit'.
23068
23069 * src/files.c (obstack_save): New function.
23070 (done): Rename as...
23071 (output_files): this.
23072 Use `obstack_save'.
23073 * src/main.c (main): Don't use `atexit' to register `done', since
23074 it no longer has to remove tmp files, just call `output_files'
23075 when there are no errors.
23076
0dbb648e
AD
230772000-11-02 Akim Demaille <akim@epita.fr>
23078
23079 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23080 `unlink': it's no longer used.
23081 * src/files.h: Formatting changes.
23082
896fe5c1
AD
230832000-11-02 Akim Demaille <akim@epita.fr>
23084
23085 Remove the last uses of mktemp and unlink/delete.
23086
23087 * src/files.c (fdefines, ftable): Removed.
23088 (defines_ostack, table_obstack): New.
23089 Adjust dependencies of the former into uses of the latter.
23090 * src/output.c (output_short_or_char_table, output_short_table):
23091 Convert to using obstacks.
23092 * src/reader.c (copy_comment2): Accept one FILE * and two
23093 obstacks.
23094 (output_token_defines, reader_output_yylsp): Use obstacks.
23095 * src/system.h (obstack_fgrow3): New.
1f65350a 23096 * po/POTFILES.in: Adjust.
896fe5c1 23097
dd60faec
AD
230982000-11-01 Akim Demaille <akim@epita.fr>
23099
23100 Change each use of `fattrs' into a use of `attrs_obstack'.
23101
23102 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
23103 * src/files.c (fattrs): Remove.
23104 (attrs_obstack): New.
23105 Adjust all dependencies.
23106 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
23107
8c7ebe49
AD
231082000-11-01 Akim Demaille <akim@epita.fr>
23109
23110 Introduce obstacks.
23111 Change each use of `faction' into a use of `action_obstack'.
23112
23113 * lib/obstack.h, lib/obstack.c: New files.
23114 * src/files.c (faction): Remove.
23115 (action_obstack): New.
23116 Adjust all dependencies.
23117
77aee789
AD
231182000-10-20 Akim Demaille <akim@epita.fr>
23119
23120 * lib/quote.h (PARAMS): New macro. Use it.
23121
43591cec
AD
231222000-10-16 Akim Demaille <akim@epita.fr>
23123
23124 * src/output.c (output_short_or_char_table): New function.
23125 (output_short_table, output_token_translations): Use it.
23126 (goto_actions): Use output_short_table.
23127
1e9798d5
AD
231282000-10-16 Akim Demaille <akim@epita.fr>
23129
23130 * src/symtab.c (bucket_new): New function.
23131 (getsym): Use it.
23132
23133 * src/output.c (output_short_table): New argument to display the
23134 comment associated with the table.
23135 Adjust dependencies.
23136 (output_gram): Use it.
23137 (output_rule_data): Nicer output layout for YYTNAME.
23138
f282676b
AD
231392000-10-16 Akim Demaille <akim@epita.fr>
23140
23141 * src/lex.c (read_typename): New function.
23142 (lex): Use it.
23143 * src/reader.c (copy_dollar): Likewise.
23144
550a72a3
AD
231452000-10-16 Akim Demaille <akim@epita.fr>
23146
23147 * src/reader.c (copy_comment2): Expect the input stream to be on
23148 the `/' which is suspected to open a comment, instead of being
23149 called after `//' or `/*' was read.
23150 (copy_comment, copy_definition, parse_union_decl, copy_action)
23151 (copy_guard): Adjust.
23152
131e2fef
AD
231532000-10-16 Akim Demaille <akim@epita.fr>
23154
23155 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
23156 `read_signed_integer'.
23157
79282c5a
AD
231582000-10-16 Akim Demaille <akim@epita.fr>
23159
23160 * src/reader.c (copy_dollar): New function.
23161 (copy_guard, copy_action): Use it.
23162
ff4a34be
AD
231632000-10-16 Akim Demaille <akim@epita.fr>
23164
23165 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
23166 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
23167 New files, from Fileutils 4.0.27.
23168 * src/main.c (printable_version): Remove.
23169 * src/lex.c, src/reader.c: Use `quote'.
23170
231712000-10-04 Akim Demaille <akim@epita.fr>
23172
23173 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
23174
14ded682
AD
231752000-10-04 Akim Demaille <akim@epita.fr>
23176
23177 * doc/bison.texinfo: Various typos spotted by Neil Booth.
23178
8e03724b
AD
231792000-10-04 Akim Demaille <akim@epita.fr>
23180
23181 When a literal string is used to define two different tokens,
23182 `bison -v' segfaults.
23183 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
23184
23185 * tests/regression.m4: New file.
23186 Include the core of the sample provided by Piotr Gackiewicz.
23187 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
23188 properly.
23189
a9e64249
AD
231902000-10-04 Akim Demaille <akim@epita.fr>
23191
23192 * src/reader.c (parse_expect_decl): Keep `count' within the size
23193 of `buffer'.
23194 From Neil Booth.
23195
da9abf43
AD
231962000-10-02 Paul Eggert <eggert@twinsun.com>
23197
23198 * bison.s1 (yyparse): Assign the default value
23199 unconditionally, to avoid a GCC warning and make the parser a
23200 tad smaller.
23201
c33638bb
AD
232022000-10-02 Akim Demaille <akim@epita.fr>
23203
23204 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
23205 options.
23206
444c570a
AD
232072000-10-02 Akim Demaille <akim@epita.fr>
23208
23209 * src/derives.c, src/print.c, src/reduce.c: To ease the
23210 translation, move some `\n' out of the translated strings.
23211
89cab50d
AD
232122000-10-02 Akim Demaille <akim@epita.fr>
23213
23214 The location tracking mechanism is precious for parse error
23215 messages. Nevertheless, it is enabled only when `@n' is used in
23216 the grammar, which is a different issue (you can use it in error
23217 message, but not in the grammar per se). Therefore, there should
23218 be another means to enable it.
23219
23220 * src/getargs.c (getargs): Support `--locations'.
23221 (usage): Report it.
23222 * src/getargs.h (locationsflag): Export it.
23223 * src/lex.c (percent_table): Support `%locations'.
23224 * src/reader.c (yylsp_needed): Remove this variable, now replaced
23225 with `locationsflag'.
23226 * doc/bison.texinfo: Document `--locations' and `%locations'.
23227 Sort the options.
23228 * tests/calc.m4: Test it.
23229
23230 For regularity of the names, replace each
23231 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
23232 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
23233 In addition replace each `flag' with `_flag'.
23234
d6c2cba0
AD
232352000-10-02 Akim Demaille <akim@epita.fr>
23236
23237 Also test parse error messages, including with YYERROR_VERBOSE.
23238
23239 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
23240 associative).
23241 Use it to check the computations.
23242 Use it to check `nonassoc' is honored.
23243 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
23244 `--yyerror-verbose'.
23245 (_AT_CHECK_CALC): Adjust to this option.
23246 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
23247
5a35a6cb
AD
232482000-10-02 Akim Demaille <akim@epita.fr>
23249
23250 Test also `--verbose', `--defines' and `--name-prefix'. Testing
23251 the latter demonstrates a flaw in the handling of non debugging
23252 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
23253 was used in order to simplify:
23254
23255 #if YYDEBUG
23256 if (yydebug)
23257 {
23258 ...
23259 }
23260 #endif
23261
23262 into
23263
23264 if (yydebug)
23265 {
23266 ...
23267 }
23268
23269 unfortunately this leads to a CPP conflict when
23270 `--name-prefix=foo' is used since it produces `#define yydebug
23271 foodebug'.
23272
23273 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
23274 (YYDPRINTF): New macro.
23275 Spread its use.
23276 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
23277 the bison options.
23278 Also test `--verbose', `--defines' and `--name-prefix'.
23279
71da9eea
AD
232802000-10-02 Akim Demaille <akim@epita.fr>
23281
23282 Improve the readability of the produced parsers.
23283
23284 * src/bison.s1: Formatting changes.
23285 Improve the comment related to the `$' mark.
23286 (yydefault): Don't fall through to `yyresume': `goto' there.
23287 * src/output.c (output_parser): When the `$' is met, skip the end
23288 of its line.
23289 New variable, `number_of_dollar_signs', to check there's exactly
23290 one `$' in the parser skeleton.
23291
95e36146
AD
232922000-10-02 Akim Demaille <akim@epita.fr>
23293
23294 * lib/xstrdup.c: New file, from the fileutils.
23295 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
23296 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
23297 instead of strlen + xmalloc + strcpy.
23298 * src/symtab.c (copys): Remove, use xstrdup instead.
23299
d7020c20
AD
233002000-10-02 Akim Demaille <akim@epita.fr>
23301
23302 * src/gram.h (associativity): New enum type which replaces the
23303 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
23304 `right_assoc', `left_assoc' and `non_assoc'.
23305 Adjust all dependencies.
23306 * src/reader.c: Formatting changes.
23307 (LTYPESTR): Don't define it, use it as a literal in
23308 `reader_output_yylsp'.
23309 * src/symtab.h (symbol_class): New enum type which replaces the
23310 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
23311 `sunknown', `stoken and `snterm'.
23312
1916f98e
AD
233132000-10-02 Akim Demaille <akim@epita.fr>
23314
23315 * src/getargs.c (fixed_outfiles): Rename as...
23316 (yaccflag): for consistency and accuracy.
23317 Adjust dependencies.
23318
d7913476
AD
233192000-10-02 Akim Demaille <akim@epita.fr>
23320
23321 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
23322 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
23323 difficult and introduced a lot of core dump. It turns out that
23324 Bison used an implementation of `xmalloc' based on `calloc', and
23325 at various places it does depend upon the initialization to 0. I
23326 have not tried to isolate the pertinent places, and all the former
23327 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
23328 someone should address this issue.
23329
23330 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
23331 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
23332 files.
23333 Adjust dependencies.
23334 * src/warshall.h: New file.
23335 Propagate.
23336
340ef489
AD
233372000-10-02 Akim Demaille <akim@epita.fr>
23338
23339 Various anti-`extern in *.c' changes.
23340
23341 * src/system.h: Include `assert.h'.
23342
b2ca4022
AD
233432000-10-02 Akim Demaille <akim@epita.fr>
23344
23345 * src/state.h (nstates, final_state, first_state, first_shift)
23346 (first_reduction): Move their exportation from here...
23347 * src/LR0.h: to here.
23348 Adjust dependencies.
23349 * src/getargs.c (statisticsflag): New variable.
23350 Add support for `--statistics'.
23351 Adjust dependencies.
23352
23353 Remove a lot of now useless `extern' statements in most files.
23354
403b315b
AD
233552000-10-02 Akim Demaille <akim@epita.fr>
23356
23357 * src/LR0.h: New file.
23358 Propagate its use.
23359
07a58c13
AD
233602000-10-02 Akim Demaille <akim@epita.fr>
23361
23362 * src/print.h: New file.
23363 Propagate its use.
23364 * src/print.c: Formatting and ordering changes.
23365 (verbose, terse): Replace with...
23366 (print_results): this new function.
23367 Adjust dependencies.
23368
0619caf0
AD
233692000-10-02 Akim Demaille <akim@epita.fr>
23370
23371 * src/conflicts.c (conflict_report): New function.
23372 (conflict_log, verbose_conflict_log): Replace with...
23373 (print_conflicts): this function.
23374 Adjust dependencies.
23375 * src/conflicts.h: New file.
23376 Propagate its inclusion.
23377
3519ec76
AD
233782000-10-02 Akim Demaille <akim@epita.fr>
23379
23380 * src/nullable.h: New file.
23381 Propagate its inclusion.
23382 * src/nullable.c: Formatting changes.
23383
015acc48
AD
233842000-10-02 Akim Demaille <akim@epita.fr>
23385
23386 * src/reduce.h: New file.
23387 Propagate its inclusion.
23388 * src/reduce.c: Topological sort and other formatting changes.
23389 (bool, TRUE, FALSE): Move their definition to...
23390 * src/system.h: here.
23391
8963a27b
AD
233922000-10-02 Akim Demaille <akim@epita.fr>
23393
23394 * src/files.c: Formatting changes.
23395 (tryopen, tryclose, openfiles): Rename as...
23396 (xfopen, xfclose, open_files): this.
23397 (stringappend): static.
23398 * src/files.h: Complete the list of exported symbols.
23399 Propagate its use.
23400
a70083a3
AD
234012000-10-02 Akim Demaille <akim@epita.fr>
23402
23403 * src/reader.h: New file.
23404 Propagate its use instead of tedious list of `extern' and
23405 prototypes.
23406 * src/reader.c: Formatting changes, topological sort,
23407 s/register//.
23408
abadc117
AD
234092000-10-02 Akim Demaille <akim@epita.fr>
23410
23411 * src/lex.h: Prototype `lex.c' exported functions.
23412 * src/reader.c: Adjust.
23413 * src/lex.c: Formatting changes.
23414 (safegetc): Rename as...
23415 (xgetc): this.
23416
720d742f
AD
234172000-10-02 Akim Demaille <akim@epita.fr>
23418
23419 * src/lalr.h: New file.
23420 Propagate its inclusion instead of prototypes and `extern'.
23421 * src/lalr.c: Formatting changes, topological sorting etc.
23422
f2acea59
AD
234232000-10-02 Akim Demaille <akim@epita.fr>
23424
23425 * src/output.c (token_actions): Introduce a temporary array,
23426 YYDEFACT, that makes it possible for this function to use
23427 output_short_table.
23428
d019d655
AD
234292000-10-02 Akim Demaille <akim@epita.fr>
23430
23431 `user_toknums' is output as a `short[]' in `output.c', while it is
23432 defined as a `int[]' in `reader.c'. For consistency with the
23433 other output tables, `user_toknums' is now defined as a table of
23434 shorts.
23435
23436 * src/reader.c (user_toknums): Be a short table instead of an int
23437 table.
23438 Adjust dependencies.
23439
23440 Factor the short table outputs.
23441
23442 * src/output.c (output_short_table): New function.
23443 * src/output.c (output_gram, output_stos, output_rule_data)
23444 (output_base, output_table, output_check): Use it.
23445
6c89f1c1
AD
234462000-10-02 Akim Demaille <akim@epita.fr>
23447
23448 * src/output.c (output): Topological sort of the functions, in
23449 order to get rid of the `static' prototypes.
23450 No longer use `register'.
23451 * src/output.h: New file.
23452 Propagate its inclusion in files explicitly prototyping functions
23453 from output.c.
23454
d9efd181
AD
234552000-09-21 Akim Demaille <akim@epita.fr>
23456
23457 * src/atgeneral.m4: Update from Autoconf.
23458
c29240e7 234592000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
23460
23461 * src/closure.h: New file.
23462 * src/closure.c: Formatting changes, topological sort over the
23463 functions, use of closure.h.
23464 (initialize_closure, finalize_closure): Rename as...
23465 (new_closure, free_closure): these. Adjust dependencies.
23466 * src/LR0.c: Formatting changes, topological sort, use of
23467 cloture.h.
23468 (initialize_states): Rename as...
23469 (new_states): this.
23470 * src/Makefile.am (noinst_HEADERS): Adjust.
23471
499daa50
AD
234722000-09-20 Akim Demaille <akim@epita.fr>
23473
23474 * src/acconfig.h: Don't protect config.h against multiple
23475 inclusion.
23476 Don't define PARAMS.
23477 * src/system.h: Define PARAMS.
23478 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
23479 purpose of config.h. system.h must not try to fix wrong
23480 definitions in config.h.
23481
cc84fd5d
AD
234822000-09-20 Akim Demaille <akim@epita.fr>
23483
23484 * src/derives.h: New file.
23485 * src/main.c, src/derives.h: Use it.
23486 Formatting changes.
23487 * src/Makefile.am (noinst_HEADERS): Adjust.
23488
db5b3a89
AD
234892000-09-20 Akim Demaille <akim@epita.fr>
23490
23491 * tests/atgeneral.m4: Update from Autoconf.
23492 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
23493 (AT_CHECK_CALC): New macros.
23494 Use these macros to test bison with options `', `--raw',
23495 `--debug', `--yacc', `--yacc --debug'.
23496
ceed8467
AD
234972000-09-19 Akim Demaille <akim@epita.fr>
23498
23499 * src/output.c: Formatting changes.
23500 * src/machine.h: Remove, leaving its contents in...
23501 * src/system.h: here.
23502 Include stdio.h.
23503 Adjust all dependencies on stdio.h and machine.h.
23504 * src/getargs.h: New file.
23505 Let all `extern' declarations about getargs.c be replaced with
23506 inclusion of `getargs.h'.
23507 * src/Makefile.am (noinst_HEADERS): Adjust.
23508
23509 * tests/calc.m4 (yyin): Be initialized in main, not on the global
23510 scope.
23511 (yyerror): Returns void, not int.
23512 * doc/bison.texinfo: Formatting changes.
23513
05a1d24b
AD
235142000-09-19 Akim Demaille <akim@epita.fr>
23515
23516 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
23517 portable.
23518
cbd25751
AD
235192000-09-18 Akim Demaille <akim@epita.fr>
23520
23521 * configure.in: Append WARNING_CFLAGS to CFLAGS.
23522 * src/Makefile.am (INCLUDES): Don't.
23523 Be ready to fetch headers in lib/.
23524
13863333
AD
235252000-09-18 Akim Demaille <akim@epita.fr>
23526
23527 * doc/bison.texinfo: Update the copyright.
23528 ANSIfy and GNUify the examples.
23529 Remove the old menu.
23530
0d533154
AD
235312000-09-18 Akim Demaille <akim@epita.fr>
23532
23533 First set of tests: use the `calc' example from the documentation.
23534
23535 * src/bison.s1 (yyparse): Condition the code using `yytname' which
23536 is defined only when YYDEBUG is.
23537 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
23538 * src/files.c (tryopen, tryclose): Formatting changes.
23539 Move to the top and be static.
23540 * src/reader.c (read_signed_integer): Likewise.
23541 * tests/calc.m4: New file.
23542 * Makefile.am, suite.m4: Adjust.
23543 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
23544
e79137ac
AD
235452000-09-18 Akim Demaille <akim@epita.fr>
23546
23547 Add support for an Autotest test suite for Bison.
23548
23549 * m4/m4.m4, m4/atconfig.m4: New files.
23550 * m4/Makefile.am (EXTRA_DIST): Adjust.
23551 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
23552 files.
23553 * src/getargs.c: Display a more standard --version message.
23554 * src/reader.c (reader): Formatting changes.
23555 No longer depend upon VERSION_STRING.
23556 * configure.in: No longer use `dnl'.
23557 Set up the test suite and the new directory `tests/.
23558 (VERSION_STRING): Remove.
23559
27821bff
AD
235602000-04-14 Akim Demaille <akim@epita.fr>
23561
23562 * src/reader.c (copy_comment2): New function, same as former
23563 `copy_comment', but outputs into two FILE *.
23564 (copy_comment): Use it.
23565 (parse_union_decl): Use it.
23566 (get_type, parse_start_decl): Use the same `invalid' message.
23567 (parse_start_decl, parse_union_decl): Use the same `multiple'
23568 message.
23569 (parse_union_decl, copy_guard, copy_action): Use the same
23570 `unmatched' message.
23571 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
23572
cfe5fbc0
AD
235732000-03-31 Akim Demaille <akim@epita.fr>
23574
23575 * src/files.c (tryopen, tryclose): Move to the top.
23576 Be static.
23577
cb7db13e
AD
235782000-03-31 Akim Demaille <akim@epita.fr>
23579
23580 * src/main.c (main): Don't call `done', exit does it.
23581
a0f6b076
AD
235822000-03-31 Akim Demaille <akim@epita.fr>
23583
36281465
AD
23584 * allocate.c: s/return (foo)/return foo/.
23585 * lalr.c: Likewise.
23586 * LR0.c: Likewise.
23587 * output.c: Likewise.
23588 * reader.c: Likewise.
23589 * symtab.c: Likewise.
23590 * vmsgetargs.c: Likewise.
23591
235922000-03-31 Akim Demaille <akim@epita.fr>
23593
23594 Clean up the error reporting functions.
a0f6b076
AD
23595
23596 * src/report.c: New file.
23597 * src/report.h: Likewise.
23598 * src/Makefile.am: Adjust.
23599 * m4/error.m4: New file.
23600 * m4/Makefile.am: Adjust.
23601 * configure.in (jm_PREREQ_ERROR): Call it.
23602 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
23603 Remove.
23604 (fatal, fatals): Remove. All callers use complain.c::fatal.
23605 (warn, warni, warns, warnss, warnss): Remove. All callers use
23606 complain.c::complain.
23607 (toomany): Remove, use fatal instead.
23608 * src/files.c (done): No argument, use complain_message_count.
23609 * src/main.c (main): Register `done' to `atexit'.
23610
23611 * src/getargs.c (usage): More `fputs', less `fprintf'.
23612
18539825
AD
236132000-03-28 Akim Demaille <akim@epita.fr>
23614
23615 * lib/: New directory.
23616 * Makefile.am (SUBDIRS): Adjust.
23617 * configure.in: Adjust.
23618 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
23619 useless.
23620 * src/alloca.c: Moved to lib/.
23621 * src/getopt.c: Likewise.
23622 * src/getopt1.c: Likewise.
23623 * src/getopt.h: Likewise.
23624 * src/ansi2knr.c: Likewise.
23625 * src/ansi2knr.1: Likewise.
23626 * src/Makefile.am: Adjust.
23627 * lib/Makefile.am: New file.
23628
9f306f2a
AD
236292000-03-28 Akim Demaille <akim@epita.fr>
23630
23631 * src/getargs.c (usage): Refresh the help message.
23632
0ba347b6
AD
236332000-03-17 Akim Demaille <akim@epita.fr>
23634
23635 * src/getopt1.c: Updated from textutils 2.0e
23636 * src/getopt.c: Likewise.
23637 * src/getopt.h: Likewise.
23638
dbe7f271
AD
236392000-03-17 Akim Demaille <akim@epita.fr>
23640
23641 * src/Makefile.am (bison.simple): Fix the awk program: quote only
23642 the file name, not the whole `#line LINE FILE'.
23643
75bbe78d
AD
236442000-03-17 Akim Demaille <akim@epita.fr>
23645
23646 On syntax errors, report the token on which we choked.
23647
aa5fd0ee
AD
23648 * src/bison.s1 (yyparse): In the label yyerrlab, when
23649 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 23650
7b306f52
AD
236512000-03-17 Akim Demaille <akim@epita.fr>
23652
aa5fd0ee 23653 * src/reader.c (copy_at): New function.
7b306f52
AD
23654 (copy_guard): Use it.
23655 (copy_action): Use it.
23656
e87b5700
AD
236572000-03-17 Akim Demaille <akim@epita.fr>
23658
23659 Be kind to translators, save some useless translations.
23660
aa5fd0ee 23661 * src/main.c (banner): New function.
e87b5700
AD
23662 (fatal_banner): Use it.
23663 (warn_banner): Use it.
23664
ae3c3164
AD
236652000-03-17 Akim Demaille <akim@epita.fr>
23666
aa5fd0ee
AD
23667 * src/reader.c (copy_definition): Use copy_string and
23668 copy_comment. Removed now unused `match', `ended',
23669 `cplus_comment'.
ae3c3164
AD
23670 (copy_comment, copy_string): Moved, to be visible from
23671 copy_definition.
23672
4dc58e7c
AD
236732000-03-17 Akim Demaille <akim@epita.fr>
23674
aa5fd0ee
AD
23675 * src/reader.c (copy_string): Declare `static inline'. No
23676 problems with inline, since it is checked by configure.
4dc58e7c
AD
23677 (copy_comment): Likewise.
23678
0a6384c4
AD
236792000-03-17 Akim Demaille <akim@epita.fr>
23680
aa5fd0ee 23681 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 23682
3cef001a
AD
236832000-03-17 Akim Demaille <akim@epita.fr>
23684
aa5fd0ee 23685 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
23686 (copy_action): Use it. Removed now unused `match', `ended',
23687 `cplus_comment'.
23688 (copy_guard): Likewise.
23689
ca36d2ef
AD
236902000-03-17 Akim Demaille <akim@epita.fr>
23691
aa5fd0ee 23692 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
23693 (copy_action): Use it.
23694 (copy_guard): Likewise.
23695
6666f98f
AD
236962000-03-17 Akim Demaille <akim@epita.fr>
23697
23698 Change the handling of @s so that they behave exactly like $s.
23699 There is now a pseudo variable @$ (readble and writable), location
23700 of the lhs of the rule (by default ranging from the location of
23701 the first symbol of the rhs, to the location of the last symbol,
23702 or, if the rhs is empty, YYLLOC).
23703
23704 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
23705 yyval.
23706 (yyparse): When providing a default semantic action, provide a
23707 default location action.
23708 (after the $): No longer change `*YYLSP', just stack YYLOC the
23709 same way you stack YYVAL.
23710 * src/reader.c (read_declarations): Use warns.
23711 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
23712 (copy_action, case '@'): Likewise.
23713 Use a standard error message, to save useless work from
23714 translators.
23715
41aca2e0
AD
237162000-03-17 Akim Demaille <akim@epita.fr>
23717
aa5fd0ee
AD
23718 * src/bison.s1: Formatting and cosmetics changes.
23719 * src/reader.c: Likewise.
41aca2e0
AD
23720 Update the Copyright notice.
23721
dc08c1d5
AD
237222000-03-17 Akim Demaille <akim@epita.fr>
23723
aa5fd0ee
AD
23724 * src/bison.s1 (#line): All set to `#line' only, since the
23725 Makefile now handles them.
dc08c1d5 23726
9ee3c97b
AD
237272000-03-16 Akim Demaille <akim@epita.fr>
23728
23729 * src/output.c (output_rule_data): Output the documentation of
23730 some of the tables.
23731 (Copyright notice): Update.
23732 Formatting changes.
23733
0de741ca
AD
237342000-03-16 Akim Demaille <akim@epita.fr>
23735
23736 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
23737 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
23738 One `#if YYDEBUG' remains, since it uses variables which are
23739 defined only if `YYDEBUG != 0'.
23740
bb10be54
AD
237412000-03-16 Akim Demaille <akim@epita.fr>
23742
23743 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
23744 and related variables so that the similarities are highlighted.
23745
b07b484a
AD
237462000-03-16 Akim Demaille <akim@epita.fr>
23747
23748 * src/bison.s1: Properly indent CPP directives.
23749
361f60b3
AD
237502000-03-16 Akim Demaille <akim@epita.fr>
23751
23752 * src/bison.s1: Properly indent the `alloca' CPP section.
23753
8c44d3ec
AD
237542000-03-16 Akim Demaille <akim@epita.fr>
23755
23756 Do not hard code values of directories in `configure.in'.
23757 Update the `configure' tool chain.
23758
23759 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
23760 src/makefile.am.
23761 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
23762 (AC_OUTPUT): Add m4/Makefile.
23763 Bump to bison 1.28a, 1.29 has never been released.
23764 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
23765 handled via src/Makefile.am.
23766 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
23767 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
23768 autoheader.
23769 * Makefile.am (SUBDIRS): Add m4.
23770 (ACLOCAL_AM_FLAGS): New variable.
23771 (AUTOMAKE_OPTIONS): Add check-news.
23772 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
23773 the proper line number and file name.
23774 (DEFS): Propagate the location of bison library files and of the
23775 locale files.
23776 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
23777 builddir.
23778 * acinclude.m4: Remove, replaced by the directory m4.
23779 * m4/Makefile.am (EXTRA_DIST): New variable.
23780 * m4/gettext.m4: New file, from the fileutils.
23781 * m4/lcmessage.m4: Likewise
23782 * m4/progtest.m4: Likewise.
23783 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
23784
f95997e7
AD
237852000-03-10 Akim Demaille <akim@epita.fr>
23786
23787 * src/closure.c:
23788 Formatting changes of various comments.
23789 Respect the GNU coding standards at various places.
23790 Don't use `_()' when no translation is needed.
23791
237921999-12-13 Jesse Thilo <jthilo@gnu.org>
23793
23794 * src/files.c:
23795 OS/2 honors TMPDIR environment variable.
23796
237971999-12-13 Jesse Thilo <jthilo@gnu.org>
23798
23799 * doc/bison.texinfo: Tweaked spelling and grammar.
23800 Updated ISBN.
23801 Removed reference to price of printed copy.
23802 Mention BISON_SIMPLE and BISON_HAIRY.
23803
238041999-12-13 Jesse Thilo <jthilo@gnu.org>
23805
23806 * configure.in, NEWS:
23807 Bison 1.29 released.
23808
238091999-10-27 Jesse Thilo <jthilo@gnu.org>
23810
23811 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
23812 Added reference card.
23813
238141999-07-26 Jesse Thilo <jthilo@gnu.org>
23815
23816 * po/ru.po: Added Russian translation.
23817
238181999-07-26 Jesse Thilo <jthilo@gnu.org>
23819
23820 * configure.in: Added Russian translation.
23821
238221999-07-06 Jesse Thilo <jthilo@gnu.org>
23823
23824 * configure.in, NEWS, README:
23825 Released version 1.28.
23826
238271999-06-14 Jesse Thilo <jthilo@gnu.org>
23828
23829 * src/system.h:
23830 Squashed redefinition warning on some systems.
23831
23832 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
23833 Have configure build version string instead of relying on ANSI string
23834 concatentation.
23835
238361999-06-14 Jesse Thilo <jthilo@gnu.org>
23837
23838 * po/POTFILES.in: Got rid of version.c.
23839
238401999-06-14 Jesse Thilo <jthilo@gnu.org>
23841
23842 * acconfig.h, configure.in:
23843 Have configure build version string instead of relying on ANSI string
23844 concatentation.
23845
238461999-06-08 Jesse Thilo <jthilo@gnu.org>
23847
23848 * doc/bison.1:
23849 Dropped mention of `+' for long-named options.
23850
238511999-05-30 Jesse Thilo <jthilo@gnu.org>
23852
23853 * src/files.c: Added <unistd.h> for unlink().
23854
23855 * src/Makefile.am, src/system.h:
23856 I18n fixes.
23857
238581999-05-30 Jesse Thilo <jthilo@gnu.org>
23859
23860 * README: Added a FAQ list.
23861
23862 * configure.in, acconfig.h:
23863 I18n fixes.
23864
238651999-05-30 Jesse Thilo <jthilo@gnu.org>
23866
23867 * doc/FAQ, doc/Makefile.am:
23868 Added a FAQ list.
23869
238701999-05-19 Jesse Thilo <jthilo@gnu.org>
23871
23872 * src/alloc.h, src/symtab.h, src/version.c:
23873 Protected inclusion of "config.h" with HAVE_CONFIG_H.
23874
238751999-04-18 Jesse Thilo <jthilo@gnu.org>
23876
23877 * src/.cvsignore, src/Makefile.am:
23878 Reorganized: sources in `src', documentation in `doc'.
23879
23880 * src/lex.c (literalchar):
23881 fixed the code for escaping double quotes (thanks
23882 Jonathan Czisny.)
23883
238841999-04-18 Jesse Thilo <jthilo@gnu.org>
23885
23886 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
23887 Adjusted paths to reflect directory reorganization.
23888
238891999-04-18 Jesse Thilo <jthilo@gnu.org>
23890
23891 * doc/.cvsignore, doc/Makefile.am:
23892 Reorganized: sources in `src', documentation in `doc'.
23893
238941999-04-18 Jesse Thilo <jthilo@gnu.org>
23895
23896 * configure.in:
23897 Updated AC_INIT file to reflect directory reorganization.
23898
23899 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
23900 Reorganized: sources in `src', documentation in `doc'.
23901
239021999-04-13 Jesse Thilo <jthilo@gnu.org>
23903
23904 * src/allocate.c:
23905 Don't declare calloc() and realloc() if not necessary.
23906
239071999-04-13 Jesse Thilo <jthilo@gnu.org>
23908
23909 * configure.in, acconfig.h, acinclude.m4:
23910 Don't declare calloc() and realloc() if not necessary.
23911
239121999-03-23 Jesse Thilo <jthilo@gnu.org>
23913
23914 * po/.cvsignore: Added i18n support.
23915
239161999-03-23 Jesse Thilo <jthilo@gnu.org>
23917
23918 * acconfig.h, configure.in, Makefile.am:
23919 Added i18n support.
23920
239211999-03-22 Jesse Thilo <jthilo@gnu.org>
23922
23923 * src/bison.s1: Fixed #line numbers.
23924
239251999-03-15 Jesse Thilo <jthilo@gnu.org>
23926
23927 * po/es.po, po/fr.po, po/nl.po, po/de.po:
23928 Added PO files from Translation Project.
23929
239301999-03-03 Jesse Thilo <jthilo@gnu.org>
23931
23932 * Makefile.am:
23933 Added support for non-ANSI compilers (ansi2knr).
23934
239351999-02-16 Jesse Thilo <jthilo@gnu.org>
23936
23937 * configure.in: Bumped version number to 1.27.
23938
23939 * Makefile.am:
23940 Added `bison.simple' to list of files removed by `make distclean'.
23941
239421999-02-12 Jesse Thilo <jthilo@gnu.org>
23943
23944 * src/files.c, src/files.h:
23945 Defined locations of parser files in config.h instead of Makefile.
23946
239471999-02-12 Jesse Thilo <jthilo@gnu.org>
23948
23949 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
23950 Defined locations of parser files in config.h instead of Makefile.
23951
239521999-02-09 Jesse Thilo <jthilo@gnu.org>
23953
23954 * Makefile.am:
23955 Removed inappropriate use of $< macro.
23956
239571999-02-05 Jesse Thilo <jthilo@gnu.org>
23958
23959 * po/Makefile.in.in, po/POTFILES.in:
23960 Add `po' directory skeleton.
23961
239621999-01-27 Jesse Thilo <jthilo@gnu.org>
23963
23964 * README: Document help-bison list.
23965
23966 * configure.in: Add check for mkstemp().
23967
239681999-01-20 Jesse Thilo <jthilo@gnu.org>
23969
23970 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
23971 Hush a few compiler warnings.
23972
23973 * src/files.c:
23974 Add tryclose(), which verifies that fclose was successful.
23975 Hush a couple of compiler warnings.
23976
239771999-01-20 Jesse Thilo <jthilo@gnu.org>
23978
23979 * Makefile.am, OChangeLog:
23980 ChangeLog is now automatically generated. Include the old version as
23981 OChangeLog.
23982
239831999-01-14 Jesse Thilo <jthilo@gnu.org>
23984
23985 * 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:
23986 Update FSF address.
23987
239881999-01-14 Jesse Thilo <jthilo@gnu.org>
23989
23990 * doc/bison.texinfo: Fix formatting glitch.
23991
23992 * doc/bison.texinfo: Update FSF address.
23993
239941999-01-14 Jesse Thilo <jthilo@gnu.org>
23995
23996 * acconfig.h: Update FSF address.
23997
239981999-01-08 Jesse Thilo <jthilo@gnu.org>
23999
24000 * src/system.h:
24001 Don't define PACKAGE here, since config.h defines it.
24002
240031998-12-30 Jesse Thilo <jthilo@gnu.org>
24004
24005 * src/reader.c: Update copyright date.
24006
24007 * src/main.c:
24008 Ditch sprintf to statically-sized buffers in fatal/warn functions in
24009 favor of output directly to stderr (avoids buffer overruns).
24010
24011 * src/reader.c: Some checks for premature EOF.
24012
24013 * 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:
24014 Use prototypes if the compiler understands them.
24015
24016 * src/files.c: Honor TMPDIR on Unix hosts.
24017 Use prototypes if the compiler understands them.
24018
24019 * src/reader.c:
24020 Fix a couple of buffer overrun bugs.
24021 Use prototypes if the compiler understands them.
24022
24023 * src/system.h: Include unistd.h and ctype.h.
24024 Use #ifdef instead of #if for NLS symbols.
24025
240261998-12-30 Jesse Thilo <jthilo@gnu.org>
24027
24028 * doc/bison.texinfo:
24029 Delete comment "consider using @set for edition number, etc..." since
24030 we now are doing so.
24031
240321998-12-30 Jesse Thilo <jthilo@gnu.org>
24033
24034 * configure.in:
24035 Use prototypes if the compiler understands them.
24036
24037 * NEWS: Document 1.26 highlights.
24038
24039 * Makefile.am: Require Automake 1.3 or later.
24040
24041 * acconfig.h:
24042 Use prototypes if the compiler understands them.
24043
240441998-12-29 Jesse Thilo <jthilo@gnu.org>
24045
24046 * src/version.c:
24047 Use VERSION symbol from automake for version number.
24048
240491998-12-29 Jesse Thilo <jthilo@gnu.org>
24050
24051 * acconfig.h, configure.in, version.cin:
24052 Use VERSION symbol from automake for version number.
24053
240541998-11-28 Jesse Thilo <jthilo@gnu.org>
24055
24056 * Makefile.am:
24057 Distribute original version of simple parser (bison.s1), not built
24058 version (bison.simple).
24059
240601998-11-28 Jesse Thilo <jthilo@gnu.org>
24061
24062 * doc/bison.texinfo: Add info dir entry.
24063
24064 * doc/bison.texinfo:
24065 Let automake put version number into documentation.
24066
240671998-11-26 Jesse Thilo <jthilo@gnu.org>
24068
24069 * src/bison.cld, src/build.com, src/vmshlp.mar:
24070 Add non-RCS files from /gd/gnu/bison.
24071
240721998-11-26 Jesse Thilo <jthilo@gnu.org>
24073
24074 * doc/bison.1:
24075 Document the BISON_HAIRY and BISON_SIMPLE variables.
24076
240771998-11-25 Jesse Thilo <jthilo@gnu.org>
24078
24079 * src/version.c: Build version.c automatically.
24080
24081 * src/reader.c:
24082 Fix token numbering (used to start at 258, not 257).
24083
24084 * src/system.h: Include config.h.
24085
24086 * src/getargs.c: Update bug report address.
24087
24088 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
24089 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
24090
240911998-11-25 Jesse Thilo <jthilo@gnu.org>
24092
24093 * Makefile.am:
24094 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24095
24096 * configure.in, version.cin:
24097 Build version.c automatically.
24098
24099 * AUTHORS: Add AUTHORS file.
24100
24101 * README: Update bug report address.
24102
24103 * bison.simple:
24104 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24105
24106 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
24107 Add automake stuff.
24108
241091998-11-25 Jesse Thilo <jthilo@gnu.org>
24110
24111 * doc/bison.texinfo: Clean up some formatting.
24112
241131998-05-05 Richard Stallman <rms@gnu.org>
24114
24115 * doc/bison.texinfo:
24116 Explain better why to make a pure parser.
24117
241181998-01-05 Richard Stallman <rms@gnu.org>
24119
24120 * src/files.c (openfiles):
24121 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
24122 find a temporary directory, if possible. Do not unlink files while
24123 they are open.
24124
241251997-08-25 Richard Stallman <rms@gnu.org>
24126
24127 * src/reader.c (stack_offset;):
24128 Change some warni to warns.
24129
24130 * src/lex.c (literalchar): Use warns, not warni.
24131
241321997-06-28 Richard Stallman <rms@gnu.org>
24133
24134 * src/bison.s1: Add a Bison version comment.
24135
24136 * src/main.c (fatal, warn, berror):
24137 Use program_name.
24138
241391997-06-28 Richard Stallman <rms@gnu.org>
24140
24141 * Makefile.in (bison_version): New variable.
24142 (dist): Use that variable.
24143 (bison.s1): Substitute the Bison version into bison.simple.
24144
24145 * bison.simple: Add a Bison version comment.
24146
241471997-06-18 Richard Stallman <rms@gnu.org>
24148
24149 * src/main.c (fatal, warn, berror):
24150 Make error messages standard.
24151 (toomany): Improve error message text.
24152
24153 * 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:
24154 new.h renamed to alloc.h.
24155
241561997-06-18 Richard Stallman <rms@gnu.org>
24157
24158 * Makefile.in: new.h renamed to alloc.h.
24159
241601997-05-24 Richard Stallman <rms@gnu.org>
24161
24162 * src/lex.c (literalchar):
24163 Fix the code for escaping \, " and '.
24164
24165 (lex): Avoid trouble when there are many chars
24166 to discard in a char literal with just several chars in it.
24167
241681997-05-17 Richard Stallman <rms@gnu.org>
24169
24170 * src/bison.s1:
24171 Use malloc, if using alloca is troublesome.
24172 (YYSTACK_USE_ALLOCA): New flag macro.
24173 Define it for some systems and compilers.
24174 (YYSTACK_ALLOC): New macro.
24175 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24176 If it was malloc'd, free it.
24177
241781997-05-17 Richard Stallman <rms@gnu.org>
24179
24180 * bison.simple:
24181 Use malloc, if using alloca is troublesome.
24182 (YYSTACK_USE_ALLOCA): New flag macro.
24183 Define it for some systems and compilers.
24184 (YYSTACK_ALLOC): New macro.
24185 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24186 If it was malloc'd, free it.
24187
241881997-04-23 Richard Stallman <rms@gnu.org>
24189
24190 * src/bison.s1:
24191 (alloca) [__hpux]: Always define as __builtin_alloca.
24192
241931997-04-23 Richard Stallman <rms@gnu.org>
24194
24195 * bison.simple:
24196 (alloca) [__hpux]: Always define as __builtin_alloca.
24197
241981997-04-22 Richard Stallman <rms@gnu.org>
24199
24200 * src/bison.s1:
24201 [__hpux]: Include alloca.h (right for HPUX 10)
24202 instead of declaring alloca (right for HPUX 9).
24203
24204 * src/bison.s1 (__yy_memcpy):
24205 Declare arg `count' as unsigned int.
24206 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24207
242081997-04-22 Richard Stallman <rms@gnu.org>
24209
24210 * bison.simple:
24211 [__hpux]: Include alloca.h (right for HPUX 10)
24212 instead of declaring alloca (right for HPUX 9).
24213
24214 * bison.simple (__yy_memcpy):
24215 Declare arg `count' as unsigned int.
24216 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24217
242181997-01-03 Richard Stallman <rms@gnu.org>
24219
24220 * src/allocate.c: [__STDC__ or _MSC_VER]:
24221 Declare calloc and realloc to return void *.
24222
242231997-01-02 Richard Stallman <rms@gnu.org>
24224
24225 * src/system.h:
24226 [_MSC_VER]: Include stdlib.h and process.h.
24227 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
24228
24229 * src/main.c (main): Return FAILURE as a value.
24230 (printable_version): Declare arg as int, not char.
24231
242321997-01-02 Richard Stallman <rms@gnu.org>
24233
24234 * Makefile.in (dist):
24235 Explicitly check for symlinks, and copy them.
24236
242371996-12-19 Richard Stallman <rms@gnu.org>
24238
24239 * src/files.c:
24240 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
24241
242421996-12-18 Paul Eggert <eggert@gnu.org>
24243
24244 * src/bison.s1 (yyparse):
24245 If __GNUC__ and YYPARSE_PARAM are both defined,
24246 declare yyparse to have a void * argument.
24247
242481996-12-18 Paul Eggert <eggert@gnu.org>
24249
24250 * bison.simple (yyparse):
24251 If __GNUC__ and YYPARSE_PARAM are both defined,
24252 declare yyparse to have a void * argument.
24253
242541996-12-17 Richard Stallman <rms@gnu.org>
24255
24256 * src/reduce.c (nbits): Add some casts.
24257
242581996-08-12 Richard Stallman <rms@gnu.org>
24259
24260 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
24261
242621996-08-12 Richard Stallman <rms@gnu.org>
24263
24264 * bison.simple: Test _MSDOS as well as _MSDOS_.
24265
242661996-07-31 Richard Stallman <rms@gnu.org>
24267
24268 * src/bison.s1:
24269 [__sun && __i386]: Include alloca.h.
24270
242711996-07-31 Richard Stallman <rms@gnu.org>
24272
24273 * bison.simple:
24274 [__sun && __i386]: Include alloca.h.
24275
242761996-07-30 Richard Stallman <rms@gnu.org>
24277
24278 * src/bison.s1: Comment change.
24279
24280 * src/bison.s1: Test _MSDOS_, not MSDOS.
24281
242821996-07-30 Richard Stallman <rms@gnu.org>
24283
24284 * bison.simple: Comment change.
24285
24286 * bison.simple: Test _MSDOS_, not MSDOS.
24287
242881996-06-01 Richard Stallman <rms@gnu.org>
24289
24290 * 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:
24291 Insert `_' macro around many string constants.
24292
24293 * src/main.c:
24294 Insert `_' macro around many string constants.
24295
24296 (main): Call setlocale, bindtextdomain and textdomain.
24297
24298 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
24299 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
24300 [ENABLE_NLS]: Include libintl.h.
24301 [ENABLE_NLS] (gettext): Define.
24302 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
24303 (N_, PACKAGE, LOCALEDIR): New macros.
24304
243051996-06-01 Richard Stallman <rms@gnu.org>
24306
24307 * POTFILES.in: New file.
24308
24309 * Makefile.in (allocate.o):
24310 Define target explicitly.
24311
24312 * Makefile.in (CFLAGS): Set to @CFLAGS@.
24313 (LDFLAGS): Set to @LDFLAGS@.
24314 (configure): Run autoconf only if preceding `cd' succeeds.
24315 (bison.s1): Redirect output to temporary file then move the
24316 temporary to the target, rather than redirecting directly to bison.s1.
24317 (clean): Remove config.status and config.log.
24318 (distclean): Don't remove config.status here.
24319
243201996-05-12 Richard Stallman <rms@gnu.org>
24321
24322 * src/bison.s1:
24323 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24324
243251996-05-12 Richard Stallman <rms@gnu.org>
24326
24327 * bison.simple:
24328 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24329
243301996-05-11 Richard Stallman <rms@gnu.org>
24331
24332 * src/bison.s1 (__yy_memcpy):
24333 Really reorder the args, as was supposedly done on Feb 14 1995.
24334 (yyparse): Calls changed accordingly.
24335
243361996-05-11 Richard Stallman <rms@gnu.org>
24337
24338 * Makefile.in (dist): Don't use $(srcdir).
24339
24340 * bison.simple (__yy_memcpy):
24341 Really reorder the args, as was supposedly done on Feb 14 1995.
24342 (yyparse): Calls changed accordingly.
24343
243441996-01-27 Richard Stallman <rms@gnu.org>
24345
24346 * src/output.c (output_rule_data):
24347 Test YYERROR_VERBOSE in the conditional
24348 around the definition of ttyname.
24349
243501995-12-29 Richard Stallman <rms@gnu.org>
24351
24352 * src/bison.s1:
24353 Fix line numbers in #line commands.
24354
243551995-12-29 Richard Stallman <rms@gnu.org>
24356
24357 * bison.simple:
24358 Fix line numbers in #line commands.
24359
243601995-12-27 Richard Stallman <rms@gnu.org>
24361
24362 * src/bison.s1 (YYPARSE_PARAM_DECL):
24363 In C++, make it always null.
24364 (YYPARSE_PARAM_ARG): New macro.
24365 (yyparse): Use YYPARSE_PARAM_ARG.
24366
243671995-12-27 Richard Stallman <rms@gnu.org>
24368
24369 * bison.simple (YYPARSE_PARAM_DECL):
24370 In C++, make it always null.
24371 (YYPARSE_PARAM_ARG): New macro.
24372 (yyparse): Use YYPARSE_PARAM_ARG.
24373
243741995-11-29 Richard Stallman <rms@gnu.org>
24375
24376 * doc/bison.texinfo:
24377 Describe literal string tokens, %raw, %no_lines, %token_table.
24378
243791995-11-29 Daniel Hagerty <hag@gnu.org>
24380
24381 * doc/bison.texinfo: Fixed update date
24382
243831995-10-16 Richard Stallman <rms@gnu.org>
24384
24385 * src/version.c: Version 1.25.
24386
243871995-10-16 Richard Stallman <rms@gnu.org>
24388
24389 * NEWS: *** empty log message ***
24390
243911995-10-16 Richard Stallman <rms@gnu.org>
24392
24393 * doc/bison.1, doc/bison.rnh:
24394 Add new options.
24395
243961995-10-15 Richard Stallman <rms@gnu.org>
24397
24398 * src/vmsgetargs.c, src/getargs.c:
24399 Added -n, -k, and -raw switches.
24400 (noparserflag, toknumflag, rawtoknumflag): New variables.
24401
24402 * src/symtab.h (SALIAS):
24403 New #define for adding aliases to %token.
24404 (struct bucket): Added `alias' field.
24405
24406 * src/reduce.c (reduce_grammar):
24407 Revise error message.
24408 (print_notices): Remove final `.' from error message.
24409
24410 * src/reader.c (reader_output_yylsp):
24411 New function.
24412 (readgram): Use `#if 0' around code that accepted %command
24413 inside grammar rules: The documentation doesn't allow it,
24414 and it will fail since the %command processors scan for the next %.
24415 (parse_token_decl): Extended the %token
24416 declaration to allow a multi-character symbol as an alias.
24417 (parse_thong_decl): New function.
24418 (read_declarations): Added %thong declarations.
24419 (read_declarations): Handle NOOP to deal with allowing
24420 % declarations as another means to specify the flags.
24421 (readgram): Allow %prec prior to semantics embedded in a rule.
24422 (skip_to_char, read_declarations, copy_definition)
24423 (parse_token_decl, parse_start_decl, parse_type_decl)
24424 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
24425 (get_type_name, copy_guard, copy_action, readgram)
24426 (get_type, packsymbols): Revised most error messages.
24427 Changed `fatal' to `warnxxx' to avoid aborting for error.
24428 Revised and use multiple warnxxx functions to avoid using VARARGS1.
24429 (read_declarations): Improve the error message for
24430 an invalid character. Do not abort.
24431 (read_declarations, copy_guard, copy_action): Use
24432 printable_version to avoid unprintable characters in printed output.
24433 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
24434 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
24435 Allow the type of a non-terminal can be given
24436 more than once, as long as all specifications give the same type.
24437
24438 * src/output.c:
24439 (output_headers, output_trailers, output, output_gram)
24440 (output_rule_data): Implement noparserflag variable.
24441 Implement toknumflag variable.
24442 (output): Call reader_output_yylsp to output LTYPESTR.
24443
24444 * src/main.c (main):
24445 If reader sees an error, don't process the grammar.
24446 (fatals): Updated to not use VARARGS1.
24447 (printable_version, int_to_string, warn, warni, warns, warnss)
24448 (warnsss): New error reporting functions. Avoid abort for error.
24449
24450 * src/lex.h:
24451 Added THONG and NOOP for alias processing.
24452 Added SETOPT for the new code that allows setting options with %flags.
24453
24454 * src/lex.c:
24455 Include getopt.h. Add some extern decls.
24456 (safegetc): New function to deal with EOF gracefully.
24457 (literalchar); new function to deal with reading \ escapes.
24458 (lex): Use literalchar.
24459 (lex): Implemented "..." tokens.
24460 (literalchar, lex, parse_percent_token): Made tokenbuffer
24461 always contain the token. This includes growing the token
24462 buffer while reading an integer.
24463 (parse_percent_token): Replaced if-else statement with percent_table.
24464 (parse_percent_token): Added % declarations as another
24465 way to specify the flags -n, -l, and -r. Also added hooks for
24466 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
24467 major changes to files.c.
24468 (lex) Retain in the incoming stream a character following
24469 an incorrect '/'.
24470 (skip_white_space, lex): Revised most error messages
24471 and changed fatal to warn to avoid aborting.
24472 (percent_table): Added %thong declarations.
24473
24474 * src/gram.h: Comment changes.
24475
24476 * src/files.c (openfiles, open_extra_files, done):
24477 Add faction flag
24478 and actfile file. Handle noparserflag. Both for -n switch.
24479
24480 * src/conflicts.c (resolve_sr_conflict):
24481 Remove use of alloca.
24482
244831995-06-01 Jim Meyering <meyering@gnu.org>
24484
24485 * doc/bison.texinfo: *** empty log message ***
24486
244871995-05-06 Richard Stallman <rms@gnu.org>
24488
24489 * src/bison.s1: Comment change.
24490
244911995-05-06 Richard Stallman <rms@gnu.org>
24492
24493 * bison.simple: Comment change.
24494
244951995-05-03 Richard Stallman <rms@gnu.org>
24496
24497 * src/version.c: Version now 1.24.
24498
24499 * src/bison.s1: Change distribution terms.
24500
24501 * src/version.c: Version now 1.23.
24502
245031995-05-03 Richard Stallman <rms@gnu.org>
24504
24505 * doc/bison.texinfo:
24506 Rewrite "Conditions for Using Bison".
24507 Update version to 1.24.
24508
245091995-05-03 Richard Stallman <rms@gnu.org>
24510
24511 * bison.simple: Change distribution terms.
24512
245131995-02-23 Richard Stallman <rms@gnu.org>
24514
24515 * src/files.c: Test __VMS_POSIX as well as VMS.
24516
245171995-02-14 Jim Meyering <meyering@gnu.org>
24518
24519 * src/bison.s1 (__yy_memcpy):
24520 Renamed from __yy_bcopy to avoid
24521 confusion. Reverse FROM and TO arguments to be consistent with
24522 those of memcpy.
24523
245241995-02-14 Jim Meyering <meyering@gnu.org>
24525
24526 * bison.simple (__yy_memcpy):
24527 Renamed from __yy_bcopy to avoid
24528 confusion. Reverse FROM and TO arguments to be consistent with
24529 those of memcpy.
24530
245311994-11-10 David J. MacKenzie <djm@gnu.org>
24532
24533 * NEWS: reformat
24534
24535 * NEWS: New file.
24536
24537 * Makefile.in (DISTFILES): Include NEWS.
24538
24539 * Makefile.in (DISTFILES):
24540 Include install-sh, not install.sh.
24541
24542 * configure.in: Update to Autoconf v2 macro names.
24543
245441994-10-05 David J. MacKenzie <djm@gnu.org>
24545
24546 * Makefile.in: fix typo
24547
24548 * Makefile.in (prefix, exec_prefix):
24549 Let configure set them.
24550
245511994-09-28 David J. MacKenzie <djm@gnu.org>
24552
24553 * Makefile.in: Set datadir to $(prefix)/share.
24554
245551994-09-15 Richard Stallman <rms@gnu.org>
24556
24557 * src/bison.s1:
24558 Update copyright notice and GPL version.
24559
245601994-09-15 Richard Stallman <rms@gnu.org>
24561
24562 * bison.simple:
24563 Update copyright notice and GPL version.
24564
245651994-07-12 Richard Stallman <rms@gnu.org>
24566
24567 * src/reduce.c, src/reader.c:
24568 entered into RCS
24569
245701994-05-05 David J. MacKenzie <djm@gnu.org>
24571
24572 * Makefile.in: entered into RCS
24573
245741994-03-26 Richard Stallman <rms@gnu.org>
24575
24576 * src/bison.s1: entered into RCS
24577
245781994-03-26 Richard Stallman <rms@gnu.org>
24579
24580 * bison.simple: entered into RCS
24581
245821994-03-25 Richard Stallman <rms@gnu.org>
24583
24584 * src/main.c: entered into RCS
24585
245861994-03-24 Richard Stallman <rms@gnu.org>
24587
24588 * src/conflicts.c: entered into RCS
24589
245901994-01-02 Richard Stallman <rms@gnu.org>
24591
24592 * Makefile.in: *** empty log message ***
24593
245941993-11-21 Richard Stallman <rms@gnu.org>
24595
24596 * src/bison.s1: *** empty log message ***
24597
245981993-11-21 Richard Stallman <rms@gnu.org>
24599
24600 * doc/bison.texinfo: entered into RCS
24601
24602 * doc/bison.texinfo: *** empty log message ***
24603
246041993-11-21 Richard Stallman <rms@gnu.org>
24605
24606 * bison.simple: *** empty log message ***
24607
246081993-10-25 David J. MacKenzie <djm@gnu.org>
24609
24610 * doc/bison.texinfo: *** empty log message ***
24611
246121993-10-19 Richard Stallman <rms@gnu.org>
24613
24614 * src/bison.s1: *** empty log message ***
24615
246161993-10-19 Richard Stallman <rms@gnu.org>
24617
24618 * bison.simple: *** empty log message ***
24619
246201993-10-14 Richard Stallman <rms@gnu.org>
24621
24622 * src/bison.s1: *** empty log message ***
24623
246241993-10-14 Richard Stallman <rms@gnu.org>
24625
24626 * bison.simple: *** empty log message ***
24627
246281993-09-14 David J. MacKenzie <djm@gnu.org>
24629
24630 * doc/bison.texinfo: *** empty log message ***
24631
246321993-09-13 Noah Friedman <friedman@gnu.org>
24633
24634 * Makefile.in: *** empty log message ***
24635
246361993-09-10 Richard Stallman <rms@gnu.org>
24637
24638 * src/conflicts.c: *** empty log message ***
24639
24640 * src/system.h: entered into RCS
24641
246421993-09-10 Richard Stallman <rms@gnu.org>
24643
24644 * doc/bison.1: entered into RCS
24645
246461993-09-06 Noah Friedman <friedman@gnu.org>
24647
24648 * src/version.c: entered into RCS
24649
246501993-09-06 Noah Friedman <friedman@gnu.org>
24651
24652 * Makefile.in: *** empty log message ***
24653
246541993-07-30 David J. MacKenzie <djm@gnu.org>
24655
24656 * Makefile.in: *** empty log message ***
24657
246581993-07-24 Richard Stallman <rms@gnu.org>
24659
24660 * src/bison.s1: *** empty log message ***
24661
246621993-07-24 Richard Stallman <rms@gnu.org>
24663
24664 * bison.simple: *** empty log message ***
24665
246661993-07-08 David J. MacKenzie <djm@gnu.org>
24667
24668 * Makefile.in: *** empty log message ***
24669
246701993-07-04 Richard Stallman <rms@gnu.org>
24671
24672 * src/bison.s1: *** empty log message ***
24673
246741993-07-04 Richard Stallman <rms@gnu.org>
24675
24676 * bison.simple: *** empty log message ***
24677
246781993-06-26 David J. MacKenzie <djm@gnu.org>
24679
24680 * src/getargs.c: entered into RCS
24681
246821993-06-26 David J. MacKenzie <djm@gnu.org>
24683
24684 * doc/bison.texinfo: *** empty log message ***
24685
24686 * doc/bison.1: New file.
24687
246881993-06-25 Richard Stallman <rms@gnu.org>
24689
24690 * src/getargs.c: New file.
24691
246921993-06-16 Richard Stallman <rms@gnu.org>
24693
24694 * src/bison.s1: *** empty log message ***
24695
246961993-06-16 Richard Stallman <rms@gnu.org>
24697
24698 * bison.simple: *** empty log message ***
24699
247001993-06-03 Richard Stallman <rms@gnu.org>
24701
24702 * src/bison.s1: New file.
24703
247041993-06-03 Richard Stallman <rms@gnu.org>
24705
24706 * doc/bison.texinfo: *** empty log message ***
24707
247081993-06-03 Richard Stallman <rms@gnu.org>
24709
24710 * bison.simple: New file.
24711
247121993-05-19 Richard Stallman <rms@gnu.org>
24713
24714 * doc/bison.texinfo: New file.
24715
247161993-05-07 Noah Friedman <friedman@gnu.org>
24717
24718 * Makefile.in: *** empty log message ***
24719
247201993-04-28 Noah Friedman <friedman@gnu.org>
24721
24722 * src/reader.c: *** empty log message ***
24723
247241993-04-23 Noah Friedman <friedman@gnu.org>
24725
24726 * src/alloc.h: entered into RCS
24727
247281993-04-20 David J. MacKenzie <djm@gnu.org>
24729
24730 * src/version.c: *** empty log message ***
24731
24732 * src/files.c, src/allocate.c:
24733 entered into RCS
24734
24735 * src/reader.c: *** empty log message ***
24736
24737 * src/lex.c: entered into RCS
24738
24739 * src/conflicts.c: New file.
24740
24741 * src/symtab.c: entered into RCS
24742
24743 * src/alloc.h: New file.
24744
24745 * src/LR0.c: entered into RCS
24746
247471993-04-18 Noah Friedman <friedman@gnu.org>
24748
24749 * src/reader.c: New file.
24750
24751 * src/version.c: *** empty log message ***
24752
247531993-04-18 Noah Friedman <friedman@gnu.org>
24754
24755 * Makefile.in: *** empty log message ***
24756
247571993-04-17 Noah Friedman <friedman@gnu.org>
24758
24759 * Makefile.in: *** empty log message ***
24760
247611993-04-15 Richard Stallman <rms@gnu.org>
24762
24763 * src/main.c, src/files.c:
24764 New file.
24765
247661993-04-15 Noah Friedman <friedman@gnu.org>
24767
24768 * configure.in: entered into RCS
24769
24770 * configure.in: *** empty log message ***
24771
24772 * configure.in: New file.
24773
247741993-04-14 Richard Stallman <rms@gnu.org>
24775
24776 * Makefile.in: New file.
24777
247781993-04-13 Richard Stallman <rms@gnu.org>
24779
24780 * src/version.c: New file.
24781
247821993-03-25 Richard Stallman <rms@gnu.org>
24783
24784 * src/output.c: entered into RCS
24785
247861992-09-25 Richard Stallman <rms@gnu.org>
24787
24788 * configure.bat: entered into RCS
24789
247901992-06-22 Richard Stallman <rms@gnu.org>
24791
24792 * src/vmsgetargs.c: entered into RCS
24793
247941992-06-22 Richard Stallman <rms@gnu.org>
24795
24796 * doc/bison.rnh: entered into RCS
24797
247981992-04-20 David J. MacKenzie <djm@gnu.org>
24799
24800 * README: entered into RCS
24801
248021992-01-22 Richard Stallman <rms@gnu.org>
24803
24804 * src/machine.h: entered into RCS
24805
248061991-12-21 Richard Stallman <rms@gnu.org>
24807
24808 * src/lalr.c, src/closure.c:
24809 entered into RCS
24810
248111991-12-20 Richard Stallman <rms@gnu.org>
24812
24813 * src/state.h: entered into RCS
24814
248151991-12-18 Richard Stallman <rms@gnu.org>
24816
24817 * src/print.c, src/nullable.c, src/derives.c:
24818 entered into RCS
24819
248201991-11-03 David J. MacKenzie <djm@gnu.org>
24821
24822 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
24823 entered into RCS
24824
248251988-09-09 Richard Stallman <rms@gnu.org>
24826
24827 * src/bison.hairy: entered into RCS
24828
248291987-12-16 Richard Stallman <rms@gnu.org>
24830
24831 * REFERENCES: entered into RCS
dc546b0f 24832
f294a2c2 24833
04098407 24834 -----
f294a2c2 24835
04098407 24836 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
e021191b
JD
24837 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
24838 2008, 2009 Free Software Foundation, Inc.
f294a2c2 24839
04098407
PE
24840 Copying and distribution of this file, with or without
24841 modification, are permitted provided the copyright notice and this
24842 notice are preserved.