]> git.saurik.com Git - bison.git/blame - ChangeLog
lalr1.cc: don't discard non-existent lookahead on syntax error.
[bison.git] / ChangeLog
CommitLineData
d59beda0
JD
12009-12-18 Joel E. Denny <jdenny@clemson.edu>
2
3 lalr1.cc: don't discard non-existent lookahead on syntax error.
4 * data/lalr1.cc (parser::parse): Check yyempty first.
5 * tests/c++.at (Syntax error discarding no lookahead): New test
6 group.
7
387b4d50
JD
82009-12-17 Joel E. Denny <jdenny@clemson.edu>
9
10 Code cleanup.
11 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
12 function, which is no longer used.
13
a603c6e0
JD
142009-12-16 Joel E. Denny <jdenny@clemson.edu>
15
16 Add gcc's -Wundef to test suite and fix another warning from it.
17 * NEWS (2.4.2): Update description of -Wundef fix.
18 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
19 (WARN_CFLAGS_TEST): New substitution.
20 * data/glr.c: Avoid warning about __STRICT_ANSI__.
21 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
22 WARN_CFLAGS.
23 (NO_WERROR_CFLAGS): Likewise.
24 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
25
19750d31
JD
262009-12-16 Joel E. Denny <jdenny@clemson.edu>
27
28 * data/yacc.c: Reformat m4 a little.
29
c938d650
JD
302009-12-16 Joel E. Denny <jdenny@clemson.edu>
31
32 Document gcc -Wundef fix.
33 * NEWS (2.4.2): Here.
34 * THANKS (Jonathan Nieder): Add.
35
fcd32abd
JN
362009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
37
38 Simplify y.tab.c when location tracking is disabled.
39 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
40 tracking is not enabled. Instead, unconditionally define
41 YY_LOCATION_PRINT as a no-op for backward compatibility.
42
ae93128c
JN
432009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
44
45 Avoid warnings from gcc -Wundef y.tab.c.
46 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
47 defined before using them.
48 * data/lalr1.cc: Likewise.
49 * data/yacc.c: Likewise.
50
c843aaab
JD
512009-12-15 Joel E. Denny <jdenny@clemson.edu>
52
53 autoconf: update to latest for fix of M4 detection.
54 Reported by Eric Blake.
55 * submodules/autoconf: Update.
56
5c99151a
JD
572009-12-15 Joel E. Denny <jdenny@clemson.edu>
58
59 portability: use -DGNULIB_POSIXCHECK.
60 Reported by Eric Blake. See discussions at
61 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
62 and
63 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
64 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
65 * bootstrap.conf (gnulib_modules): Add all the printf modules
66 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
67 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
68 (excluded_files): Remove m4/printf-posix.m4.
69 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
70 lib/libbison.a so gnulib libraries can be linked.
71
75f94c6d
JD
722009-12-15 Joel E. Denny <jdenny@clemson.edu>
73
74 gnulib: update for fix of fprintf-posix, which we'll use soon.
75 * etc/prefix-gnulib-mk (prefix): Adjust regex for make file
76 targets so that gnulib's new arg-nonnull.h and link-warning.h
77 are matched.
78 * gnulib: Update.
79
ca01f454
JD
802009-12-14 Joel E. Denny <jdenny@clemson.edu>
81
82 Enable assertion output and --disable-assert for configure.
83 * bootstrap.conf (gnulib_modules): Add assert module.
84 * src/system.h (aver): Define as assert, and summarize the
85 discussion on this issue.
86
9dc3ee6d
JD
872009-12-14 Joel E. Denny <jdenny@clemson.edu>
88
89 Expand GLR acronym in summary of Bison.
90 Based on discussion with Akim Demaille starting at
91 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
92 * doc/bison.texinfo (Introduction): Here.
93 * src/getargs.c (usage): Here.
94
d013372c
AR
952009-10-03 Alex Rozenman <rozenman@gmail.com>
96
97 Document named references.
98 * doc/bison.texinfo (Actions): Add new example and xref to
99 Using Named References node.
100 (Using Named References): New node.
101
5297ebb3
JD
1022009-10-16 Joel E. Denny <jdenny@clemson.edu>
103
104 cleanup.
105 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
106 of char*.
107 (Sbitset__isEmpty): Use Sbitset instead of char*.
108 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
109 instead of char. This helps to avoid casting errors.
110 (Sbitset__or): Use Sbitset instead of char*.
111
175620d3
JD
1122009-10-16 Joel E. Denny <jdenny@clemson.edu>
113
114 portability: don't assume 8-bit bytes.
115 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
116 * src/Sbitset.h (Sbitset__nbytes): Here.
117 (Sbitset__byteAddress): Here.
118 (Sbitset__bit_mask): Here.
119 (Sbitset__last_byte_mask): Here.
120 (Sbitset__ones): Here.
121 (SBITSET__FOR_EACH): Here.
122
786578e3
JD
1232009-10-11 Joel E. Denny <jdenny@clemson.edu>
124
125 portability: use va_start and va_end in the same function.
126 * src/complain.c (error_message): Move va_end from here...
127 (ERROR_MESSAGE): ... to here.
128
416a9da6
JD
1292009-10-08 Joel E. Denny <jdenny@clemson.edu>
130
131 * data/bison.m4: Update comments for rename to muscle-tab.h.
132
10659d0e
JD
1332009-10-07 Joel E. Denny <jdenny@clemson.edu>
134
135 Minor code cleanup.
136 * src/muscle-tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
137 replace all uses with UNIQSTR_CONCAT.
138 * src/uniqstr.c (uniqstr_vsprintf): New function.
139 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
140 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
141 macros.
142
3c5362b8
JD
1432009-10-06 Joel E. Denny <jdenny@clemson.edu>
144
145 * TODO (Complaint submessage indentation): New.
146
b143f404
JD
1472009-10-04 Joel E. Denny <jdenny@clemson.edu>
148
149 Minor code cleanup.
150 * src/parse-gram.y: Clean up sorting of declarations.
151 Use types to simplify %printer declarations where possible.
152 Provide %printer for BRACKETED_ID and symbol.prec.
153 * src/symtab.c: Whitespace change.
154
7439c5c0
JD
1552009-10-04 Joel E. Denny <jdenny@clemson.edu>
156
157 tests: skip tests of file names that platform does not support.
158 Reported by Michael Raskin at
159 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
160 * THANKS (Michael Raskin): Add.
161 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
162 to fail at least for file names containing ":" or "\".
163
45319f13
JD
1642009-09-23 Joel E. Denny <jdenny@clemson.edu>
165
166 yysyntax_error: avoid duplicate lookahead collection.
167 Except when memory reallocation is required, this change
168 eliminates the need to invoke yysyntax_error twice and thus to
169 repeat the collection of lookaheads. It also prepares for
170 future extensions that will make those repetitions more
171 expensive and that will require additional memory management in
172 yysyntax_error. Finally, it fixes an obscure bug already
173 exercised in the test suite.
174 * data/yacc.c (yysyntax_error): Add arguments for message
175 buffer variables stored in the parser. Instead of size, return
176 status similar to yyparse status but indicating success of
177 message creation. Other than the actual reallocation of the
178 message buffer, import and clean up memory management code
179 from...
180 (yyparse, yypush_parse): ... here.
181 * tests/regression.at (parse.error=verbose overflow): No longer
182 an expected failure.
183
52cea04a
JD
1842009-09-23 Joel E. Denny <jdenny@clemson.edu>
185
186 yysyntax_error: test memory management more.
187 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
188 * tests/regression.at (parse.error=verbose and
189 YYSTACK_USE_ALLOCA): New test group.
190 (parse.error=verbose overflow): New test group that reveals an
191 obscure bug. Expected fail for now.
192
37318e2f
JD
1932009-10-04 Joel E. Denny <jdenny@clemson.edu>
194
195 benchmarks: use %debug consistently among grammars.
196 * etc/bench.pl.in (generate_grammar_triangular): Do not activate
197 %debug by default. It can affect the timings even if yydebug=0.
198 (generate_grammar_calc): For consistency with other grammars,
199 use YYDEBUG environment variable to set yydebug.
200
f74d6d25
JD
2012009-10-03 Joel E. Denny <jdenny@clemson.edu>
202
203 Remove dead code.
204 * src/symtab.c (symbol_pack): Here because every symbol's number
205 is always defined by this time.
206
5b1ff423
AR
2072009-10-03 Alex Rozenman <rozenman@gmail.com>
208
209 Add additional space after periods in NEWS.
210 * NEWS (2.5): here.
211
47eced30
JD
2122009-09-29 Joel E. Denny <jdenny@clemson.edu>
213
214 Use the correct conversion specifier for size_t.
215 Reported by Jim Meyering.
216 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
217 because Sbitset__Index is size_t.
218 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
219
d8f68fc2
JD
2202009-09-27 Joel E. Denny <jdenny@clemson.edu>
221
222 tests: don't abuse AT_BISON_CHECK.
223 * tests/regression.at (parse-gram.y: LALR = IELR): Move
224 additional shell commands outside of AT_BISON_CHECK.
225
43aabb70
JD
2262009-09-26 Joel E. Denny <jdenny@clemson.edu>
227
228 tests: check that parse-gram.y's IELR and LALR are identical.
229 * tests/atlocal.in (abs_top_srcdir): New shell variable.
230 * tests/regression.at (parse-gram.y: LALR = IELR): New test
231 group.
232
66381412
AR
2332009-09-19 Alex Rozenman <rozenman@gmail.com>
234
235 Keep sub-messages aligned. Fix strings for translation.
5b1ff423
AR
236 * src/location.h (location_print): Add return value.
237 * src/location.c (location_print): Return number of printed
66381412 238 characters.
5b1ff423
AR
239 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
240 new functions.
241 * src/complain.cpp (indent_ptr): New static variable.
242 (error_message, complain_at_indent, warn_at_indent): Implement
243 the alignment mechanism.
244 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
245 for translations. Use new alignment mechanism.
246 * tests/named-ref.at: Adjust test-cases.
66381412
AR
247 * NEWS (2.5): Add an announcement about named references.
248
a6ca4ce2
AD
2492009-09-17 Akim Demaille <demaille@gostai.com>
250
251 doc: fixes.
252 * doc/bison.texinfo: here.
253 Reported by Alex Rozenman.
254
3cdc21cf
AD
2552009-09-16 Akim Demaille <demaille@gostai.com>
256
257 doc: lalr1.cc and variants.
258 * doc/bison.texinfo (Decl Summary): Document the "lex_symbol" and
259 "variant" %define variables.
260 (C++ Semantic Values): Split into...
261 (C++ Unions, C++ Variants): these.
262 The latter is new.
263 (C++ Parser Interface): Fix type names.
264 Document parser::syntax_error.
265 Document the fact that locations are not mandatory.
266 (C++ Scanner Interface): Split into...
267 (Split Symbols, Complete Symbols): these.
268 The later is new.
269 (Calc++ Parsing Driver): Use variants.
270 Add more comments.
271 Adjust style.
272 (Calc++ Parser): Declare all the tokens, no
273 longer accept raw characters.
274 Remove %union.
275 Adjust types and printers.
276 Remove destructors.
277 (Calc++ Scanner): Use make_<SYMBOL> functions.
278 Use strerror in error message.
279
f50bfcd6
AD
2802009-09-16 Akim Demaille <demaille@gostai.com>
281
282 doc: spell checking.
283 * doc/bison.texinfo: here.
284
6b5a0de9
AD
2852009-09-16 Akim Demaille <demaille@gostai.com>
286
287 doc: comment changes.
288 * doc/bison.texinfo: Comment changes.
289
2b08bceb
AD
2902009-09-16 Akim Demaille <demaille@gostai.com>
291
292 lalr1.cc: factor the yytranslate_ invocation in make_SYMBOLS.
293 * data/c++.m4, data/lalr1.cc (parser::symbol_type): Change the
294 constructor to take a token_type instead of the (internal) symbol
295 number.
296 Call yytranslate_.
297 * data/variant.hh (b4_symbol_constructor_define_): Therefore,
298 don't call yytranslate_ here.
299
c981ce9b
AD
3002009-09-16 Akim Demaille <demaille@gostai.com>
301
302 TODO: statistics.
303 * TODO (Figures): New.
304
00d80a9c
JD
3052009-09-13 Joel E. Denny <jdenny@clemson.edu>
306
307 tests: clean up push.at test group titles.
308 * tests/push.at: Remove "Push Parsing: " from test group titles
309 because these are already under the banner "Push Parsing Tests".
310
f64e406b
AR
3112009-09-12 Alex Rozenman <rozenman@gmail.com>
312
313 Provide an additional sub-message for clarity.
314 Add "symbol not found in production" error message when
315 an "invalid reference" is detected in named references
316 resolution.
317 * src/scan-code.l: Update "invalid reference" case.
318 * tests/named-ref.at: Adjust test-cases.
319
bb31eb56
JD
3202009-09-10 Joel E. Denny <jdenny@clemson.edu>
321
322 Clean up yacc.c a little.
323 * data/yacc.c: Clean up M4 for readability, and make output
324 whitespace more consistent. For the main parse function
325 comment, instead of saying "yyparse or yypush_parse", say either
326 "yyparse" or "yypush_parse" depending on which it actually is.
327
2d399888
JD
3282009-09-10 Joel E. Denny <jdenny@clemson.edu>
329
330 Fix --enable-gcc-warnings.
331 * src/parse-gram.y (%printer <param>): Handle param_none.
332
ff601366
AD
3332009-09-09 Akim Demaille <demaille@gostai.com>
334
335 lalr1.cc: syntax_error as exceptions.
336 It is common to use sort of factories in the user actions. These
337 factories may check some "syntactic" constraints that are not
338 enforced by the grammar itself. This is possible using YYERROR
339 within the action itself. Provide the user with a means to throw
340 a syntax_error exception.
341
342 * data/c++.m4 (b4_public_types_declare, b4_public_types_define):
343 Declare and define yy::parser::syntax_error.
344 * data/lalr1.cc: Include stdexcept.
345 (yy::parser::parse): Wrap the user action within a try/catch.
346 * data/glr.cc: Include stdexcept.
347
29660062
AD
3482009-09-09 Akim Demaille <demaille@gostai.com>
349
350 lalr1.cc: add missing "inline".
351 * data/c++.m4 (b4_public_types_define): Add missing inline to
352 implementations provided in headers.
353
2055a44e
AD
3542009-09-09 Akim Demaille <demaille@gostai.com>
355
356 %param: documentation.
357 * NEWS (2.6): Document %param, %lex-param, and %parse-param
358 changes.
359 * doc/bison.texinfo: Document that %lex-param and %parse-param
360 are n-ary.
361 Changes some examples to demonstrate it.
362 (Calc++ Parser): Use %param.
363
dd875058
AD
3642009-09-09 Akim Demaille <demaille@gostai.com>
365
366 Regen.
367
f71db70b
AD
3682009-09-09 Akim Demaille <demaille@gostai.com>
369
370 style changes.
371 * src/parse-gram.y (add_param): Scope changes.
372
eaca4c11
AD
3732009-09-09 Akim Demaille <demaille@gostai.com>
374
375 %parse: support several arguments.
376 * src/parse-gram.y (current_param): New.
377 (param_type): Add param_none.
378 (params): New nonterminal.
379 Use it.
380
b18cdd91
AD
3812009-09-09 Akim Demaille <demaille@gostai.com>
382
383 Regen.
384
a7706735
AD
3852009-09-09 Akim Demaille <demaille@gostai.com>
386
387 %param.
388 Provide a means to factor lex-param and parse-param common
389 declarations.
390
391 * src/parse-gram.y (param_type): New.
392 Define a %printer for it.
393 (add_param): Use it.
394 (%parse-param, %lex-param): Merge into...
395 (%parse): this new token.
396 Adjust the grammar to use it.
397 * src/scan-gram.l (RETURN_VALUE): New.
398 (RETURN_PERCENT_FLAG): Use it.
399 (RETURN_PERCENT_PARAM): New.
400 Use it to support %parse-param, %lex-param and %param.
401
9789acf0
JD
4022009-09-03 Joel E. Denny <jdenny@clemson.edu>
403
404 Use aver not assert.
405 * src/output.c: Don't include assert.h.
406 (output_skeleton): Use aver not assert.
407 * src/system.h (aver): In documentation of why, add links to
408 Paul Eggert's explanations in the mailing lists.
409
61bc57e5
AR
4102009-09-05 Alex Rozenman <rozenman@gmail.com>
411
412 Use "Unresolved reference" error message when no symbols were found
413 in a symbolic reference resolution. Remove .expr and -expr from
414 the shown reference when the reference is unresolved.
415 * src/scan-code.l: Change the error message, adjust location columns,
416 rename variable "exact_mode" to "explicit_bracketing".
417 * tests/named-ref.at: Adjust existing tests and add a new one.
418
f4c75eaf
AD
4192009-09-04 Akim Demaille <demaille@gostai.com>
420
421 Adjust synclines in src/parse-gram.[ch].
422 * tests/bison.in: Do some magic (including working around issues
423 with ylwrap) when this wrapper is used to compile
424 src/parse-gram.y.
425
c6abeab1
JD
4262009-09-03 Joel E. Denny <jdenny@clemson.edu>
427
428 Complain about unused %define variables and %code qualifiers.
429 * NEWS (2.5): Document.
430 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
431 * doc/bison.texinfo (Decl Summary): Document complaint, and
432 improve %define documentation a little otherwise.
433 * tests/input.at (Reject unused %code qualifiers): Update.
434 (%define errors): Update.
435 (%define, --define, --force-define): Update.
436 (%define backward compatibility): Update.
437 (Unused %define api.pure): Update.
438 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
439
82db7cdb
JD
4402009-09-03 Joel E. Denny <jdenny@clemson.edu>
441
442 Don't suppress warnings about unused parse.error.
443 * data/bison.m4 (b4_error_verbose_flag): Don't examine value of
444 %define variable parse.error unless b4_error_verbose_flag is
445 actually expanded in a skeleton.
446
2755de8f
AD
4472009-09-03 Akim Demaille <demaille@gostai.com>
448
449 * NEWS (2.4.2): Add "Internationalization" item.
450
1deef26d
AD
4512009-09-03 Akim Demaille <demaille@gostai.com>
452
453 bootstrap: fix/improve find_tool.
454 * bootstrap (find_tool): Improve error messages.
455 Fix typo about find_tool_names.
456
2646cd54
JD
4572009-08-29 Joel E. Denny <jdenny@clemson.edu>
458
459 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
460 See
461 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
462 * src/scan-code.h (code_props_rule_action_init): Rename
463 named_ref arg to name so it doesn't shadow named_ref type. This
464 makes it consistent with the function definition in scan-code.l
465 anyway.
466
cf499cff
JD
4672009-08-28 Joel E. Denny <jdenny@clemson.edu>
468
469 %define: accept unquoted values.
470 * NEWS (2.5): Group all %define changes together, and document
471 this one. Remove quotes in IELR and canonical LR entry.
472 * doc/bison.texinfo: Remove quotes in most examples throughout.
473 (Decl Summary): Update %define documentation.
474 (Table of Symbols): Likewise.
475 * src/ielr.c (LrType): Update documentation.
476 * src/parse-gram.y (content.opt): Add production for ID.
477 * tests/actions.at: Remove quotes in most tests.
478 * tests/calc.at: Likewise.
479 * tests/existing.at: Likewise.
480 * tests/input.at: Likewise.
481 * tests/local.at: Likewise.
482 * tests/push.at: Likewise.
483 * tests/reduce.at: Likewise.
484 * tests/torture.at: Likewise.
485
6ba96404
JD
4862009-08-28 Joel E. Denny <jdenny@clemson.edu>
487
488 %define lr.type: make values lowercase IDs.
489 That is, "LALR" => "lalr", "IELR" => "ielr", and
490 "canonical LR" => "canonical-lr".
491 * NEWS (2.5): Update documentation.
492 * doc/bison.texinfo (Decl Summary): Likewise.
493 * src/ielr.c (ielr): Use new values.
494 * src/ielr.h (ielr): Update documentation.
495 * src/reader.c (prepare_percent_define_front_end_variables): Use
496 and validate new values.
497 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
498 grammars.
499 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
500
4413bbd3
EB
5012009-08-27 Eric Blake <ebb9@byu.net>
502
503 scan-gram: avoid portability trap with ctype usage.
504 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
505 Avoid compiler warning.
506
b70c7fb4
JD
5072009-08-27 Joel E. Denny <jdenny@clemson.edu>
508
509 tests: use perl for printing special sequences to files.
510 And skip tests if perl is not available. This is better than
511 playing tricks with shell portability. Suggested by Akim
512 Demaille.
513 * tests/input.at (Bad character literals): Use it here for
514 omitting final newlines.
515 (Bad escapes in literals): Use it here for special characters.
516
d1cc31c5
JD
5172009-08-26 Joel E. Denny <jdenny@clemson.edu>
518
519 tests: show a use of %define lr.default-reductions "consistent"
520 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
521 prevents the omission of expected tokens for %error-verbose.
522
3bed3a75
AD
5232009-08-26 Akim Demaille <demaille@gostai.com>
524
525 tests: portability fix.
526 * tests/input.at (Bad escapes in literals): Don't expect "echo
527 '\0'" to output \ then 0.
528
aa0cb40d
JD
5292009-08-26 Joel E. Denny <jdenny@clemson.edu>
530
531 Actually handle the yytable zero value correctly this time.
532 * data/bison.m4 (b4_integral_parser_tables_map): Don't mention
533 zero values in the YYTABLE comments.
534 * data/glr.c (yytable_value_is_error): Don't check for zero
535 value.
536 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
537 * data/yacc.c (yytable_value_is_error): Likewise.
538 * data/lalr1.java (yy_table_value_is_error_): Likewise.
539 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
540 * src/tables.h: In header comments, explain why it's useless to
541 check for a zero value in yytable.
542
f2b30bdf
JD
5432009-08-25 Joel E. Denny <jdenny@clemson.edu>
544
545 More fixes related to last two patches.
546 * data/bison.m4 (b4_integral_parser_tables_map): Fix YYTABLE
547 comments: zero indicates syntax error not default action.
548 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
549 defined.
550 * data/glr.c (yyis_pact_ninf): Rename to...
551 (yypact_value_is_default): ... this.
552 (yyisDefaultedState): Update for rename.
553 (yyis_table_ninf): Rename to...
554 (yytable_value_is_error): ... this, and check for value zero
555 besides just YYTABLE_NINF.
556 (yygetLRActions): Check for default value from yypact. It
557 appears that this check is always performed before this function
558 is invoked, and so adding the check here is probably redundant.
559 However, the code may evolve after this subtlety is forgotten.
560 Also, update for rename to yytable_value_is_error. Because that
561 macro now checks for zero, a different but equivalent branch of
562 the if-then-else here is evaluated.
563 (yyreportSyntaxError): Update for rename to
564 yytable_value_is_error. The zero condition was mishandled
565 before.
566 (yyrecoverSyntaxError): Update for renames. No behavioral
567 changes.
568 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
569 New function.
570 (yy_table_value_is_error_): New function.
571 (parse): Use new functions where possible. No behavioral
572 changes.
573 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
574 The zero condition was mishandled before.
575 * data/yacc.c (yyis_pact_ninf): Rename to...
576 (yypact_value_is_default): ... this.
577 (yyis_table_ninf): Rename to...
578 (yytable_value_is_error): ... this, and check for value zero
579 besides just YYTABLE_NINF.
580 (yysyntax_error): Update for rename to yytable_value_is_error.
581 The zero condition was mishandled before.
582 (yyparse): Update for renames. No behavioral changes.
583 * src/tables.h: Improve comments about yypact, yytable, etc.
584 more. Most importantly, say yytable value of zero means syntax
585 error not default action.
586
53f036ce
JD
5872009-08-25 Joel E. Denny <jdenny@clemson.edu>
588
589 Fix %error-verbose for conflicts resolved by %nonassoc.
590 * NEWS (2.5): Document.
591 * data/glr.c (yyreportSyntaxError): Fix this by checking
592 yyis_table_ninf.
593 * data/yacc.c (yysyntax_error): Likewise.
594 * data/lalr1.cc (yysyntax_error_): Fix this by checking
595 yytable_ninf_.
596 * data/lalr1.java (yysyntax_error): Likewise.
597 * tests/conflicts.at (%nonassoc and eof): Update expected output
598 and remove FIXME.
599
87412882
JD
6002009-08-25 Joel E. Denny <jdenny@clemson.edu>
601
602 Some code and documentation improvements.
603 * data/c.m4 (b4_table_value_equals): New macro to capture
604 some repeated code.
605 * data/glr.c (yyis_pact_ninf): Use it here.
606 (yyis_table_ninf): Likewise.
607 (yyreportSyntaxError): Improve internal comments.
608 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
609 Use it everywhere possible.
610 (yyis_table_ninf): Likewise.
611 (yysyntax_error): Improve internal comments.
612 * data/lalr1.cc (yysyntax_error_): Likewise.
613 * data/lalr1.java (yysyntax_error): Likewise.
614 * src/tables.h: Improve comments about yypact, yytable, etc.
615
e6c849d8
JD
6162009-08-21 Joel E. Denny <jdenny@clemson.edu>
617
618 Use locale when quoting.
619 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
620 quote rather than implementing quoting here.
621
d8911864
EB
6222009-08-20 Eric Blake <ebb9@byu.net>
623
b0778bdd
EB
624 Make previous patch more robust.
625 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
626 argmatch.h.
627 (output_skeleton): Use it.
628 Suggested by Akim Demaille.
629
d8911864
EB
630 Import latest m4/m4.m4.
631 * submodules/autoconf: Update to autoconf 2.64.
632 * configure.ac (M4_GNU_OPTION): New define.
633 * src/output.c (output_skeleton): Use it to resolve FIXME.
634 * NEWS: Mention this.
635
c2724603
JD
6362009-08-19 Joel E. Denny <jdenny@clemson.edu>
637
638 Fix complaints about escape sequences.
639 Discussed starting at
640 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
641 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
642 For a \0 and similar escape sequences meaning the null
643 character, report an invalid escape sequence instead of an
644 invalid null character because the latter does not actually
645 appear in the user's input.
646 In all escape sequence complaints, don't escape the initial
647 backslash, and don't quote when the sequence appears at the end
648 of the complaint line unless there's whitespace that quotearg
649 won't escape.
650 Consistently say "invalid" not "unrecognized".
651 Consistently prefer "empty character literal" over "extra
652 characters in character literal" warning for invalid escape
653 sequences; that is, consistently discard those sequences.
654 * tests/input.at (Bad escapes in literals): New.
655
17aed602
AD
6562009-08-19 Akim Demaille <demaille@gostai.com>
657
658 doc: fixes.
659 * doc/bison.texinfo: Fix minor Texinfo errors.
660
9142239a
AD
6612009-08-19 Akim Demaille <demaille@gostai.com>
662
663 tests: distcc compliance.
664 * tests/synclines.at (AT_SYNCLINES_COMPILE): Discard distcc's
665 error messages from the output.
666
171ad99d
AD
6672009-08-19 Akim Demaille <demaille@gostai.com>
668
669 variables: simplify the upgrade of namespace into api.namespace.
670
671 This patch simplifies "variables: rename namespace as
672 api.namespace", commit 67501061076ba46355cfd9f9361c7eed861b389c.
673 Suggested by Joel E. Denny in
674 http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00006.html
675
676 * src/muscle-tab.c (muscle_percent_variable_update): New.
677 (muscle_percent_define_insert): Use it in replacement of the
678 previous tr invocation.
679 Remove variable_tr, no longer needed.
680 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
681 Remove.
682 * data/c++.m4: No longer handle namespace -> api.namespace.
683 * tests/input.at (%define backward compatibility): Check that
684 namespace is treated as api.namespace.
685
d59e456d
AD
6862009-08-19 Akim Demaille <demaille@gostai.com>
687
688 doc: %initial-action to initialize yylloc.
689 Reported by Bill Allombert.
690 * doc/bison.texinfo: Set fill-column to 76.
691 (Location Type): Document the use of %initial-action to initialize
692 yylloc.
693
ceb8b8e6
AD
6942009-08-19 Akim Demaille <demaille@gostai.com>
695
696 lalr1.cc: use state_type.
697 * data/lalr1.cc (yysyntax_error_): Use state_type.
698 Move argument names into yy*.
699
7580c379
AD
7002009-08-19 Akim Demaille <demaille@gostai.com>
701
702 lalr1.cc: get rid of yyparse's yystate.
703 yystate and yystack_[0].state are equal, keep only the latter.
704 The former was also used as a temporary variable to compute the
705 post-reduction state. Move this computation into an auxiliary
706 function.
707
708 * data/glr.c (yyLRgotoState): Fuse variable definition and first
709 assignment.
710 * data/lalr1.cc (yy_lr_goto_state_): New.
711 (yyparse): Use it.
712 Replace remaining uses of yystate by yystate_[0].state.
713 Remove the former.
714
c4dc4c46
AD
7152009-08-19 Akim Demaille <demaille@gostai.com>
716
717 lalr1.cc: destroy $$ when YYERROR is called.
718 * data/lalr1.cc (yyreduce): Compute the resulting state before
719 running the user action so that yylhs is a valid symbol.
720 (yyerrorlab): Since yylhs is complete (it knows its type), we can
721 simply call yy_destroy_ to destroy $$ on YYERROR invocations.
722 * tests/c++.at (AT_CHECK_VARIANTS): Test YYERROR with variants.
723
c67e466f
JD
7242009-08-18 Joel E. Denny <jdenny@clemson.edu>
725
726 maint: update for gnulib's recent update-copyright changes
727 * gnulib: Update.
728 * .x-update-copyright (COPYING): Add as it's no longer implied
729 when .x-update-copyright is present.
730 * cfg.mk (update-copyright-local): Remove, now ignored.
731 (update-copyright): Declare update-b4-copyright as a dependency.
732
af6d2358
AD
7332009-08-17 Akim Demaille <demaille@gostai.com>
734
735 build: require gettext 0.17.
736
737 Suggested by Bruno Haible.
738 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
739 * configure.ac: require gettext 0.17 to ensure compatibility with
740 gnulib.
741
91a2b9b1
AD
7422009-08-17 Akim Demaille <demaille@gostai.com>
743
744 build: lower gettext requirements.
745
746 Bison was uselessly requiring the formatstring macros from
747 gettext, which resulted in mo files not being installed on systems
748 that perfectly supported Bison mo files. Lower the requirement.
749 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
750
b0778bdd
EB
751 * configure.ac: Require need-ngettext instead of
752 need-formatstring-macros.
753 Reported by Martin Jabocs.
754 Suggested by Bruno Haible.
755 * INSTALL: Restructure.
756 (Internationalization): New.
91a2b9b1 757
585935e8
JD
7582009-08-14 Joel E. Denny <jdenny@clemson.edu>
759
760 maint: fix use of copyright year intervals.
761 * gnulib: Update.
762 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
763 as now recommended in gnulib/NEWS.
764 * build-aux/update-b4-copyright: Fix.
765 * cfg.mk (update-copyright-env): Configure update-copyright.
766
83b60c97
JD
7672009-08-13 Joel E. Denny <jdenny@clemson.edu>
768
769 Make it easier to write deterministic tests.
770 Continues Akim's work from his 2009-06-10 commits.
771 * src/reader.c (check_and_convert_grammar): Don't add any
772 symbols after the first symbols_do invocation.
773 * src/symtab.c (symbols_sorted): New static global.
774 (user_token_number_redeclaration): Update comments.
775 (symbol_from_uniqstr): If a new symbol is being created, assert
776 that symbols_sorted hasn't been allocated yet.
777 (symbols_free): Free symbols_sorted.
778 (symbols_cmp, symbols_cmp_qsort): New functions.
779 (symbols_do): Sort symbol_table into symbols_sorted on first
780 invocation.
781 * tests/input.at (Numbered tokens): Recombine tests now that the
782 output should be deterministic across multiple numbers.
783
28169bab
AD
7842009-08-12 Akim Demaille <demaille@gostai.com>
785
786 tests: GCC 4.5 compliance.
787 * tests/synclines.at (AT_SYNCLINES_COMPILE): Adjust to GCC 4.5's
788 messages about #error.
789
9f14e187
AD
7902009-08-12 Akim Demaille <demaille@gostai.com>
791
792 build: fix the generation of the documentation.
793 Some of our targets use "bison --help", but they can't depend on
794 "bison" itself (to avoid additional requirements on the user), so
795 they used to call "make src/bison" in the commands. Then
796 concurrent builds may fail: one make might be aiming one of its
797 jobs at compiling src/bison, and another job at generating the man
798 page. If the latter is faster than the former, then we have two
799 makes that concurrently try to compile src/bison.
800
801 This might also be a more convincing explanation for the failure
802 described in the patch "build: fix paths".
803
804 * Makefile.am (SUFFIXES): Initialize.
805 * build-aux/move-if-change: New, symlink to gnulib's.
806 * build-aux/local.mk: Ship it.
807 * doc/common.x: Remove, merged into...
808 * doc/bison.x: here.
809 * doc/local.mk (doc/bison.help): New.
810 ($(CROSS_OPTIONS_TEXI)): Depend on it.
811 Use src/bison.
812 (.x.1): Replace with...
813 (doc/bison.1): this explicit, simpler, target.
814 (common_dep): Remove, inlined where appropriate.
815 (SUFFIXES, PREPATH): Remove, unused.
816
d1b55e81
AD
8172009-08-12 Akim Demaille <demaille@gostai.com>
818
819 gnulib: improve prefixing.
820 * configure.ac (gl_PREFIXED_LIBOBJS): Don't rename it, rather,
821 change the value of...
822 (gl_LIBOBJS): this.
823 Adjust more variables.
824 * etc/prefix-gnulib-mk (prefix_assignment): Don't rename
825 gl_LIBOBJS.
826 (prefix): Also transform rules whose targets have slashes.
827 Use $prefix liberally.
828 Map @MKDIR_P@ to $(MKDIR_P).
829 Prefix directories that are mkdir'd.
830
838205d5
AD
8312009-08-12 Akim Demaille <demaille@gostai.com>
832
833 build: fix paths.
834 When using $(top_builddir) inconsistently, Make (including GNU
835 Make) is sometimes confused. As a result it may want to build
836 lib/libbison.la and $(top_builddir)/lib/libbison.la (the same
837 file, different names) concurrently, which, amusingly enough,
838 might end with:
839
840 ranlib lib/libbison.a
841 ranlib lib/libbison.a
842 make[2]: *** [lib/libbison.a] Segmentation fault
843
844 on OS X.
845
846 * doc/local.mk, src/local.mk: Do not use $(top_builddir) when not
847 needed.
848
67af7198
AD
8492009-08-12 Akim Demaille <demaille@gostai.com>
850
851 distcheck: fix.
852
b0778bdd 853 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
67af7198 854
c467dc42
JD
8552009-08-10 Joel E. Denny <jdenny@clemson.edu>
856
857 * tests/local.mk (TESTSUITE_AT): Add named-refs.at.
858
dfaa4860
JD
8592009-08-10 Joel E. Denny <jdenny@clemson.edu>
860
861 Miscellaneous code readability improvements.
862
863 * src/reader.c (reader): Move %define front-end variable
864 defaults and checking into...
865 (prepare_percent_define_front_end_variables): ... this new
866 function.
867
868 * src/scan-gram.l (INITIAL): For consistency with string
869 literals, don't store open quote on character literal. It's
870 discarded before returning anyway.
871 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
872 Make length test more readable, and make the character stored
873 for an empty literal more obvious while consistent with the
874 previous behavior.
875
876 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
877 USER_NUMBER_HAS_STRING_ALIAS throughout.
878 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
879 that is repeated in symtab.h. Improve argument names to make it
880 clear which side of the symbol-string alias pair is which.
881 (symbol_check_alias_consistency): Improve local variable names
882 for the same purpose.
883 * src/symtab.h (struct symbol): Make comments about aliases
884 clearer.
885 (symbol_make_alias): Improve comments and argument name.
886 * src/output.c (token_definitions_output): Update for rename to
887 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
888
ce268795
AR
8892009-08-08 Alex Rozenman <rozenman@gmail.com>
890
891 Convert "misleading reference" messages to warnings.
892 * src/scan-code.l: New function 'show_sub_messages', more
893 factoring.
894 * tests/named-ref.at: Adjust tests.
895
401b73af
JD
8962009-08-06 Joel E. Denny <jdenny@clemson.edu>
897
898 maint: run "make update-copyright"
899
a1a9422d
JD
9002009-08-06 Joel E. Denny <jdenny@clemson.edu>
901
902 maint: make update-b4-copyright easier to use
903 * build-aux/update-b4-copyright: In warnings, report line
904 numbers rather than character positions.
905 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
906 that update-copyright runs it.
907 * gnulib: Update.
908
0b61a8ec
JD
9092009-08-05 Joel E. Denny <jdenny@clemson.edu>
910
911 maint: clean up update-b4-copyright code
912 * build-aux/update-b4-copyright: Do not accept 2-digit
913 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
914 Don't accept a `[' in a b4_copyright argument.
915 Format code more consistently.
916 Don't assume b4*copyright never occurs.
917
269e222e
JD
9182009-08-04 Joel E. Denny <jdenny@clemson.edu>
919
920 maint: automate b4_copyright updates.
921 * Makefile.am (update-b4-copyright): New target rule.
922 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
923 * build-aux/update-b4-copyright: New.
924 * data/yacc.c: Remove stray characters around b4_copyright
925 invocations.
926
35905f2b
JD
9272009-08-04 Joel E. Denny <jdenny@clemson.edu>
928
929 maint: automate annual package-wide copyright-year update.
930 * .x-update-copyright: New.
931 * Makefile.am (EXTRA_DIST): Remove maint.mk.
932 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
933 update-copyright. Remove gnumakefile, which is implied by
934 maintainer-makefile.
935 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
936 * gnulib: Update.
937 * maint.mk: Remove, now copied from gnulib.
938 * examples/extexi: Add missing "(C)" in copyright statement so
939 update-copyright can recognize it.
940 * src/LR0.h: Likewise.
941 * src/print.h: Likewise.
942 * src/print_graph.h: Likewise.
943 * src/gram.c: Add missing comma in copyright statement.
944 * src/gram.h: Likewise.
945
b30e18dc
JD
9462009-08-04 Joel E. Denny <jdenny@clemson.edu>
947
948 Fix "make distcheck".
949 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
950 of just calc.stamp.
951
8d90395d
JD
9522009-08-01 Joel E. Denny <jdenny@clemson.edu>
953
954 Pacify "gcc -Wunused" for the input function from Flex.
955 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
956 and later.
957 * src/scan-code.l: Add "%option noinput", which I cannot find in
958 the Flex manual, but which Flex has supported since at least as
959 far back as 2.5.4. However, if any of our developers still use
960 Flex 2.5.4, they'll need to stop configuring with
961 --enable-gcc-warnings because "%option noinput" didn't work
962 correctly until Flex 2.5.6.
963 * src/scan-gram.l: Likewise.
964 * src/scan-skel.l: Likewise.
965
ba4184ec
AR
9662009-07-31 Alex Rozenman <rozenman@gmail.com>
967
968 Fix --enable-gcc-warnings problems.
969 * src/reader.c: Adjust variable names.
970 * src/scan-code.l: Fix prototypes and adjust names.
971 * src/named-ref.c: Remove redundant "if".
972
91a2af97
JD
9732009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
974
975 Fix a --enable-gcc-warnings problem.
976 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
977 variable.
978
3208e3f4
JD
9792009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
980
981 Warn about character literals not of length one.
982 * NEWS (2.5): Document.
983 * src/scan-gram.l (INITIAL): Remove comment that we don't check
984 the length.
985 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
986 * tests/input.at (Bad character literals): New test group.
987
5add20ab 9882009-07-24 Alex Rozenman <rozenman@gmail.com>
13cdf208
AR
989
990 Fix some memory leaks.
991 * src/named-ref.c: Add a pointer check (named_ref_free).
992 * src/scan-code.l: New function (variant_table_free). Called in
993 code_scanner_free.
994 * src/symlist.c: Call to named_ref_free (symbol_list_free).
995
e459fb0e
JD
9962009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
997
998 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
999
c4be5517
JD
10002009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
1001
1002 Some M4 cleanup in the testsuite.
1003 Suggested by Eric Blake at
1004 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
1005 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
1006 complicate the code by distinguishing between a missing value
1007 and an empty string value for an optional argument. This fix is
1008 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
1009 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
1010 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
1011 arguments are not needed because of the following changes.
1012 Fix stale comments.
1013 Bison developers should use GNU M4 and should not use
1014 POSIXLY_CORRECT when building the test suite, so do not
1015 complicate the code by avoiding $10 and above.
1016 Do not quote an empty string value for an optional argument, and
1017 do not distinguish between a missing value and an empty string
1018 value.
1019
feeb56cd
JD
10202009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1021
1022 Revert unnecessary column realignment in --help output.
1023 Reported by Akim Demaille at
1024 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
1025 * src/getargs.c (usage): Here.
1026
5add20ab 10272009-07-04 Alex Rozenman <rozenman@gmail.com>
629e4def
AR
1028
1029 Alphabetical order in src/local.mk.
1030 * src/local.mk: Adjust.
1031
5add20ab 10322009-07-04 Alex Rozenman <rozenman@gmail.com>
872b52bc
AR
1033
1034 Style changes and factoring.
1035 * src/named-ref.h: Add comments.
1036 * src/parse-gram.y: Readability and style changes.
1037 * src/reader.c: Factoring: assign_named_ref function.
1038 * src/scan-code.l: Factoring and style changes. Rename
1039 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
1040 Use "unsigned" type for variant index. Improve readablity.
1041 * src/scan-gram.l: Change error messages and add comments.
1042 * src/symlist.h: symbol_list_null: New function decl.
1043 * src/symlist.c: symbol_list_null: Implement here.
1044 * tests/named-refs.at: Adjust for new error messages.
1045
83ea2423
EB
10462009-06-29 Eric Blake <ebb9@byu.net>
1047
1048 scan-code: avoid compiler warnings
1049 * src/scan-code.l (parse_named_ref): Use correct specifiers.
1050
5ece73ea
AD
10512009-06-29 Akim Demaille <demaille@gostai.com>
1052
1053 build: avoid concurrent extraction of calc++.
1054 * examples/calc++/Makefile.am (calc.stamp): New.
1055 Depend on it to create the sources of calc++ so that concurrent
1056 builds don't launch several "extexi" in parallel.
1057 Not only this is inefficient, this also builds incorrect sources
1058 with several extractions mixed together.
1059
ad597a78
AD
10602009-06-29 Akim Demaille <demaille@gostai.com>
1061
1062 parse.error: fix.
1063 * data/bison.m4: Move code related to specific variables after the
1064 definition of the variable-maintaining macros so that we don't
1065 "invoke" b4_percent_define_check_values before it is defined.
1066
31b850d2
AD
10672009-06-29 Akim Demaille <demaille@gostai.com>
1068
1069 variables: parse.error
1070
1071 Implement, document, and test the replacement of %error-verbose
1072 by %define parse.error "verbose".
1073 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
1074 values of the parse.error variable.
1075 Make "simple" its default value.
1076 Check the valid values.
1077 * src/parse-gram.y: Use %define parse.error.
1078 (PERCENT_ERROR_VERBOSE): New token.
1079 Support it.
1080 * src/scan-gram.l: Support %error-verbose.
1081
1082 * doc/bison.texinfo (Decl Summary): Replace the documentation of
1083 %define error-verbose by that of %define parse.error.
1084 * NEWS: Document it.
1085
1086 * tests/actions.at, tests/calc.at: Use parse.error instead of
1087 %error-verbose.
1088
b9f1d9a4
AR
10892009-06-27 Alex Rozenman <rozenman@gmail.com>
1090
1091 Implement support for named symbol references.
1092 * src/parse-gram.y: Add new syntax (named_ref.opt).
1093 * src/reader.c: Store named refs in symbol lists.
1094 * src/reader.h: New argument for symbol_append and
1095 action_append functions.
1096 * src/scan-code.h: Add new field (named_ref) into
1097 code_props data structure. Keeps named ref of midrule
1098 actions.
1099 * src/scan-code.l: Support for named refs in semantic
1100 action code. New function 'parse_named_ref'.
1101 * src/scan-gram.l: Support bracketed id.
1102 * src/symlist.c: Store named refs in symbol lists.
1103 * src/symlist.h: New field in symbol list: named_ref.
1104 * src/named-ref.h: New file, a struct for named_ref.
1105 * src/named-ref.cp: New file, named_ref_new function.
1106 * src/local.mk: Add two new files.
1107 * tests/testsuite.at: Include new test group:
1108 * tests/named-refs.at: this new file.
1109
b5c212b6
AD
11102009-06-25 Akim Demaille <demaille@gostai.com>
1111
1112 hash: check insertion for memory exhaustion.
1113 * src/uniqstr.c (uniqstr_new): New.
1114
67501061
AD
11152009-06-24 Akim Demaille <demaille@gostai.com>
1116
1117 variables: rename namespace as api.namespace.
1118 Discussed in
1119 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
1120
1121 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
1122 New.
1123 (b4_percent_define_use): New.
1124 Use it where applicable.
1125 * data/c++.m4: Replace uses of the variable "namespace" by
1126 "api.namespace".
1127 Default the latter to the former.
1128 * doc/bison.texinfo (Decl Summary): Document "namespace" as
1129 obsolete.
1130 Document api.namespace.
1131 Use @samp to document %define uses, keep @code for identifiers.
1132 * NEWS: Likewise.
1133 * tests/c++.at, tests/input.at: Test api.namespace instead of
1134 namespace. (The tests passed with namespace.)
1135
41976786
AD
11362009-06-11 Akim Demaille <demaille@gostai.com>
1137
1138 style changes.
1139 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
1140 * src/print-xml.c: Style changes.
1141 * tests/conflicts.at: Comment changes.
1142
44bb9084
AD
11432009-06-11 Akim Demaille <demaille@gostai.com>
1144
1145 xml: beware of user strings used to give a %prec to rules.
1146 * tests/conflicts.at (%prec with user strings): New.
1147 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
1148 XML output.
1149
04d1e39d
AD
11502009-06-11 Akim Demaille <demaille@gostai.com>
1151
1152 hash: check insertion for memory exhaustion.
1153 * src/muscle-tab.c (muscle_insert, muscle_grow)
1154 * src/state.c (state_hash_insert): Check the return value of
1155 hash_insert.
1156
a8873669
AD
11572009-06-11 Akim Demaille <demaille@gostai.com>
1158
1159 tests: honor TESTSUITEFLAGS in every check target.
1160 * tests/local.mk (RUN_TESTSUITE): New.
1161 (check-local, installcheck-local, maintainer-check-g++)
1162 (maintainer-check-posix, maintainer-check-valgrind): Use it.
1163
8893145a
AD
11642009-06-10 Akim Demaille <demaille@gostai.com>
1165
1166 deterministic test suite.
1167 Some consistency checks on symbols are performed after all the
1168 symbols were read, by an iteration over the symbol table. This
1169 traversal is nondeterministic, which can be a problem for test
1170 cases.
1171 Avoid this.
1172 Addresses another form of nondeterminism reported by Joel E. Denny.
1173 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1174
1175 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
1176 test in two.
1177 Use different file names for the three tests to make the
1178 maintenance easier.
1179
92d7a23a
AD
11802009-06-10 Akim Demaille <demaille@gostai.com>
1181
1182 gnulib: update.
b0778bdd
EB
1183 * gnulib: Update to latest.
1184 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
1185 * m4/.gitignore: Regen.
1186 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
1187 Call xalloc_die on hash_insert failures.
1188 Requested by the new __warn_unused_result__ attribute of
1189 hash_insert.
92d7a23a 1190
12cf133f
AD
11912009-06-10 Akim Demaille <demaille@gostai.com>
1192
1193 deterministic user-token-number redeclaration errors.
1194 Address nondeterminism reported by Joel E. Denny.
1195 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
1196
1197 * src/uniqstr.h: Comment changes.
1198 * src/location.h (boundary_cmp, location_cmp): New.
1199 * src/symtab.c (user_token_number_redeclaration): New.
1200 (symbol_translation): Use it.
1201 * tests/input.at (Numbered tokens): Adjust the expected output.
1202
796a2b0a
AD
12032009-05-25 Akim Demaille <demaille@gostai.com>
1204
1205 build: avoid ignored errors.
1206 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
1207 errors, they pollute the output.
1208
0b6d43c5
JD
12092009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1210
1211 Convert multiple variable definition warnings to complaints.
1212 * NEWS (2.5): Add a new entry for that change.
1213 * doc/bison.texinfo (Decl Summary): Update %define entry.
1214 (Bison Options): Update -D/--define/-F/--force-define entry.
1215 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
1216 * src/muscle-tab.h (muscle_percent_define_insert): Update
1217 comments.
1218 * tests/input.at (`%define errors'): Update.
1219 (`%define, --define, --force-define'): Update.
1220
de5ab940
JD
12212009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1222
1223 -F/--force-define and relative %define/-D/--define priorities.
1224 * NEWS (2.5): Add documentation to -D/--define entry.
1225 * build-aux/cross-options.pl: Hard-code association of
1226 --force-define with %define.
1227 * doc/bison.texinfo (Decl Summary): In %define entry,
1228 cross-reference command-line options.
1229 (Bison Options): Add documentation to -D/--define entry.
1230 (Option Cross Key): Widen column for --force-define row.
1231 * src/getargs.c (usage): Document -F/--force-define. Realign
1232 options in output.
1233 (short_options, long_options, getargs): Parse -F/--force-define,
1234 and update muscle_percent_define_insert invocations.
1235 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
1236 (muscle_percent_define_insert): Add argument with that type.
1237 * src/muscle-tab.c (muscle_percent_define_insert): Implement
1238 -F/--force-define behavior and priorities.
1239 (muscle_percent_define_ensure): Update
1240 muscle_percent_define_insert invocation.
1241 * src/parse-gram.y (prologue_declaration): Update
1242 muscle_percent_define_insert invocations.
1243 * tests/input.at (`%define, --define'): Rename to...
1244 (`%define, --define, --force-define'): ... this and extend.
1245
f8e7258f
JD
12462009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
1247
1248 Update some comments to make sense for -D.
1249 * data/bison.m4 (b4_check_user_names): In header comments, say
1250 "user occurrence" instead of "grammar occurrence".
1251 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
1252 (muscle_percent_code_grow): Likewise just for consistency.
1253
b987342b
JD
12542009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
1255
1256 * data/c++.m4 (b4_namespace_close): Simplify slightly.
1257
4977e0a7
JD
12582009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
1259
1260 Handle a trailing `:' in a user-supplied C++ namespace better.
1261 * data/c++.m4 (b4_namespace_close): Don't let it be printed
1262 among the closing braces here. This fix might make the
1263 generated code easier to debug, but otherwise it should be
1264 insignificant because a trailing `:' is a C++ error already.
1265
9b04dad7
AD
12662009-05-19 Akim Demaille <demaille@gostai.com>
1267
1268 remove useless variable.
1269 * src/getargs.c (skeleton_arg): Remove now useless variable.
1270 Should help the compiler see that this printf-like call is sane.
1271
4c6622c2
AD
12722009-05-15 Akim Demaille <demaille@gostai.com>
1273
1274 Rename token.prefix as api.tokens.prefix.
1275 Discussed here.
1276 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
1277
1278 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
1279 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
1280 (token.prefix): Rename as...
1281 (api.tokens.prefix): this.
1282
3c248d70
AD
12832009-05-11 Akim Demaille <demaille@gostai.com>
1284
1285 doc: use C++ headers.
1286 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
1287 headers.
1288
99c08fb6
AD
12892009-05-11 Akim Demaille <demaille@gostai.com>
1290
1291 doc: token.prefix
1292 * doc/bison.simple (Decl Summary): Document token.prefix.
1293 (Calc++ Parser): Various fixes.
1294 Formatting changes.
1295 Use token.prefix.
1296 Introduce a macro TOKEN to shorten the code and make it more
1297 readable.
1298 (Calc++ Scanner): Adjust.
1299 * NEWS (Variable token.prefix): New.
1300
84a1cb5a
AD
13012009-05-04 Akim Demaille <demaille@gostai.com>
1302
1303 bison: catch bad symbol names.
1304 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
1305 * tests/input.at: Adjust.
1306
cdf3f113
AD
13072009-05-04 Akim Demaille <demaille@gostai.com>
1308
1309 identifiers: dashes are letters.
1310 Dashes can now start identifiers (symbols and directives).
84a1cb5a 1311
cdf3f113
AD
1312 * src/scan-gram.l ({letter}): Add dash.
1313 ({id}): Remove it.
1314 * tests/input.at (Symbols): Adjust.
1315 Remove stray comment.
1316 * tests/regression.at (Invalid inputs): Adjust error message.
1317 * doc/bison.texinfo (Symbols): Update.
1318
98a345a2
JD
13192009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
1320
1321 Declare %code to be a permanent feature.
1322 * NEWS (2.4.2): Here.
1323 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
1324 experimental.
1325 (Decl Summary): Likewise.
1326
67212941
JD
13272009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1328
1329 Convert underscores to dashes in some %define variable names.
1330 For now, just api.push-pull and lr.keep-unreachable-states.
1331 Maintain old names for backward compatibility.
1332 * NEWS (2.5): Document.
1333 * data/c.m4 (b4_identification): Update comment.
1334 * data/yacc.c: Update access.
1335 * doc/bison.texinfo: Update.
1336 * etc/bench.pl.in (bench_push_parser): Update use.
1337 * src/files.c (tr): Move to...
1338 * src/getargs.c, src/getargs.h (tr): ... here because I can't
1339 think of a better place to expose it. My logic is that, for all
1340 uses of tr so far, command-line arguments can be involved, and
1341 getargs.h is already included.
1342 * src/main.c (main): Update access.
1343 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
1344 variable names to new variable names before assigning value.
1345 * src/reader.c (reader): Update setting default.
1346 * tests/calc.at: Update uses.
1347 * tests/conflicts.at (Unreachable States After Conflict
1348 Resolution): Update use.
1349 * tests/input.at (%define enum variables): Update use.
1350 (%define backward compatibility): New test group.
1351 * tests/push.at: Update uses.
1352 * tests/reduce.at: Update uses.
1353 * tests/torture.at: Update uses.
1354
ba5c6d94
JD
13552009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1356
1357 Set all front-end %define defaults in one place.
1358 * src/main.c (main): Move lr.keep_unreachable_states default...
1359 * src/reader.c (reader): ... to here.
1360
5bab9d08
JD
13612009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1362
1363 Rename lr.default_reductions to lr.default-reductions.
1364 * NEWS (2.5): Here.
1365 * doc/bison.texinfo: Here.
1366 * src/lalr.c (initialize_LA): Here.
1367 * src/print.c (print_reductions): Here.
1368 * src/reader.c (reader): Here.
1369 * src/tables.c (action_row): Here.
1370 * tests/input.at (%define enum variables): Here.
1371 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
1372
d521ee19
JD
13732009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1374
1375 Pacify ./configure --enable-gcc-warnings.
1376 * tests/input.at (Symbols): Prototype yyerror and yylex.
1377
13782009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
c9aded4b
JD
1379
1380 Document how `%define "var" "value"' is not M4-friendly.
1381 * src/parse-gram.y (variable): In comments here.
1382
8f0d265e
JD
13832009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1384
1385 Clean up recent patches a little.
1386 Reported by Akim Demaille.
1387 * doc/bison.texinfo (Understanding): Fix typos.
1388 * src/print.c (print_reductions): Don't use negated variable.
1389
f4909773
JD
13902009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1391
1392 List accepted values for a %define enum variable with an invalid value.
1393 Suggested by Akim Demaille at
1394 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
1395 * data/bison.m4 (_b4_percent_define_check_values): Implement.
1396 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
1397 * tests/input.at (%define lr.default_reductions invalid values): Merge
1398 into...
1399 (%define enum variables): ... here, and update output.
1400
110ef36a
JD
14012009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
1402
1403 Rename "default rule" to "default reduction".
1404 This includes changing variable names in code, changing
1405 comments, and renaming %define lr.default_rules to %define
1406 lr.default_reductions.
1407 * NEWS (2.5): Update IELR documentation.
1408 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
1409 documentation.
1410 * data/glr.c, data/lalr1.java: Sync copyright dates.
1411 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
1412 and lr.type documentation. Make some other wording
1413 improvements.
1414 (Glossary): Adjust cross-references and Default Reduction
1415 definition.
1416 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
1417 Remove a confusing comment pointed out by Akim Demaille.
1418 (initialize_LA): Adjust code.
1419 * src/print-xml.c (print_reductions): Adjust code.
1420 * src/print.c (print_reductions): Adjust code.
1421 * src/reader.c (reader): Adjust code.
1422 * src/tables.c (action_row): Adjust code.
1423 (token_actions): Adjust code.
1424 * src/tables.h: Adjust YYDEFACT documentation.
1425 * tests/input.at (%define lr.default_rules invalid values):
1426 Rename test group to...
1427 (%define lr.default_reductions invalid values): ... this, and
1428 update grammar file and expected output.
1429 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
1430 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
1431
746ee38c
AD
14322009-04-21 Akim Demaille <demaille@gostai.com>
1433
1434 tests: check the use of dashes and periods in symbols.
1435 * tests/input.at (Symbol): New test group.
1436
eb45ef3b
JD
14372009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1438
1439 Document %define lr.type and lr.default_rules.
1440 * NEWS (2.5): Add an entry.
1441 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
1442 besides just LALR(1) and GLR(1).
1443 * doc/bison.texinfo (Introduction): Likewise.
1444 (Language and Grammar): Bison is no longer limited to LALR(1)
1445 restrictions.
1446 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
1447 when trying to distinguish from GLR. Talk about LR(1) grammars
1448 rather than LALR(1) grammars.
1449 (Decl Summary): In %define api.push_pull entry, say it applies
1450 to deterministic parsers in C rather than LALR(1) parsers in C.
1451 Add lr.default_rules entry.
1452 Add lr.type entry.
1453 (Mystery Conflicts): Bison is no longer limited to LALR(1)
1454 restrictions.
1455 (Generalized LR Parsing): Same changes as for the previous GLR
1456 section.
1457 (Memory Management): Say deterministic rather than LALR(1).
1458 (Understanding): Correct some bison output.
1459 Index discussion of "accepting state".
1460 Say deterministic rather than LALR(1).
1461 (Bison Options): In --yacc entry, say deterministic rather than
1462 LALR(1).
1463 In --report, --graph, and --xml entries, just don't mention
1464 LALR(1).
1465 (C++ Parsers): Say deterministic rather than LALR(1).
1466 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
1467 (Glossary): Add Accepting State, Consistent State, Default Rule,
1468 and IELR(1) definitions.
1469 In Generalized LR (GLR) definition, make same changes as in
1470 previous GLR sections.
1471 In LALR(1) definition, say Bison uses LALR(1) by default rather
1472 than implying Bison is limited to LALR(1).
1473 (LocalWords): Add IELR.
1474
db34f798
JD
14752009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1476
1477 Finish implementing %define lr.type.
1478 Its value can be "LALR", "IELR", or "canonical LR".
1479 * lib/timevar.def (TV_IELR_PHASE1): New var.
1480 (TV_IELR_PHASE2): New var.
1481 (TV_IELR_PHASE3): New var.
1482 (TV_IELR_PHASE4): New var.
1483 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
1484 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
1485 Sbitset.h, ielr.h, and ielr.c.
1486 * src/getargs.h, src/getargs.c (enum trace, trace_args,
1487 trace_types): Add trace_ielr.
1488 * src/lalr.h, src/lalr.c (ngotos): Export it.
1489 (F): Rename to...
1490 (goto_follows): ... this, update all uses, and export it.
1491 (set_goto_map): Export it.
1492 (map_goto): Export it.
1493 (compute_lookahead_tokens): Don't free goto_follows yet. Now
1494 handled in ielr.
1495 (initialize_LA): Export it. Move lookback allocation to...
1496 (lalr): ... here because, for canonical LR, initialize_LA must
1497 be invoked but lookback and much of the rest of LALR isn't
1498 needed.
1499 * main.c (main): Instead of lalr, invoke ielr, which invokes
1500 lalr.
1501 * src/reader.c (reader): Default lr.type to "LALR".
1502 Default lr.default_rules to "accepting" if lr.type is "canonical
1503 LR". Leave the default as "all" otherwise.
1504 Check for a valid lr.type value.
1505 * src/state.h, src/state.c (struct state_list): Add state_list
1506 member.
1507 (state_new): Initialize state_list member to NULL.
1508 (state_new_isocore): New function, exported.
1509 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
1510 exercises all values of lr.type.
1511 (GNU AWK Grammar): Rename test group to...
1512 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
1513 AT_TEST_EXISTING_GRAMMAR.
1514 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
1515 (GNU pic Grammar): Rename test group to...
1516 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
1517 AT_TEST_EXISTING_GRAMMAR.
1518 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
1519 all values of lr.type.
1520 (Single State Split): New test groups using AT_TEST_LR_TYPE.
1521 (Lane Split): Likewise.
1522 (Complex Lane Split): Likewise.
1523 (Split During Added Lookahead Propagation): Likewise.
1524
7fe11bb5
JD
15252009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1526
1527 Add new files for IELR and canonical LR implementation.
1528 * src/AnnotationList.c: New.
1529 * src/AnnotationList.h: New.
1530 * src/InadequacyList.c: New.
1531 * src/InadequacyList.h: New.
1532 * src/Sbitset.c: New.
1533 * src/Sbitset.h: New.
1534 * src/ielr.c: New.
1535 * src/ielr.h: New.
1536
7254f6a8
JD
15372009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1538
1539 Implement %define lr.default_rules.
1540 Its value describes the states that are permitted to contain
1541 default rules: "all", "consistent", or "accepting".
1542 * src/reader.c (reader): Default lr.default_rules to "all".
1543 Check for a valid lr.default_rules value.
1544 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
1545 is "accepting", then only mark the accepting state as
1546 consistent.
1547 (initialize_LA): Tell state_lookahead_tokens_count whether
1548 lr.default_rules is "accepting".
1549 * src/tables.c (action_row): If lr.default_rules is not "all",
1550 then disable default rules in inconsistent states.
1551 * src/print.c (print_reductions): Use this opportunity to
1552 perform some assertions about whether lr.default_rules was
1553 obeyed correctly.
1554 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
1555 helps with checking the parser tables for a grammar.
1556 * tests/input.at (%define lr.default_rules invalid values): New
1557 test group.
1558 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
1559 AT_TEST_TABLES_AND_PARSE.
1560 (`no %define lr.default_rules'): New test group generated by
1561 AT_TEST_LR_DEFAULT_RULES.
1562 (`%define lr.default_rules "all"'): Likewise.
1563 (`%define lr.default_rules "consistent"'): Likewise.
1564 (`%define lr.default_rules "accepting"'): Likewise.
1565
72e727f2
AD
15662009-04-20 Akim Demaille <demaille@gostai.com>
1567
1568 Formatting change.
1569
90462b8d
AD
15702009-04-20 Akim Demaille <demaille@gostai.com>
1571
1572 bison: factoring.
1573 * src/output.c (token_definitions_output): Use symbol_id_get
1574 instead of duplicating its logic.
1575 * TODO (YYERRCODE): Extend.
1576
4f646c37
AD
15772009-04-20 Akim Demaille <demaille@gostai.com>
1578
71b00ed8
AD
1579 variables: prefer error-verbose to error_verbose.
1580 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
1581 instead of error_verbose.
1582 * src/scan-gram.l (%error-verbose): Map to the error-verbose
1583 variable.
1584 * doc/bison.texinfo: Promote %define error-verbose instead of
1585 %error-verbose.
1586 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
1587
15882009-04-15 Akim Demaille <demaille@gostai.com>
1589
4f646c37
AD
1590 variables: accept dashes.
1591 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
1592 underscores.
1593 * src/scan-gram.l ({id}): Also accept dashes after the initial
1594 letter.
1595 ({directive}): Use {id}.
1596 * src/parse-gram.y: Comment and formatting changes.
1597 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
1598 symbols.
1599 * src/complain.h, src/complain.c (yacc_at): New.
1600 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
1601 symbol names.
1602 * src/output.c (token_definitions_output): Do not #define token
1603 names with dashes.
1604
184e3179
AD
16052009-04-20 Akim Demaille <demaille@gostai.com>
1606
1607 Consistently refer to Yacc, not YACC.
1608 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
1609
41253c3a
JD
16102009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
1611
1612 Pacify make maintainer-check-posix.
1613 * tests/input.at (%define, --define): Move bison command-line
1614 options before grammar file name.
1615
197b82ba
JD
16162009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1617
1618 Document semicolon warnings.
1619 * NEWS (2.5): Here.
1620
0c90a1f5
AD
16212009-04-14 Akim Demaille <demaille@gostai.com>
1622
1623 variables: use `parse.assert' instead of `assert'.
1624 * TODO (assert): Remove.
1625 * data/bison.m4 (b4_assert_if): Replace with...
1626 (b4_parse_assert_if): this.
1627 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
1628 * doc/bison.texinfo (Decl Summary): Document parse.assert.
1629
fa819509
AD
16302009-04-14 Akim Demaille <demaille@gostai.com>
1631
16dc0d90 1632 variables: use `parse.trace' instead of `debug'.
fa819509
AD
1633 * src/getargs.c (getargs): Map -t to %define trace.parse.
1634 * src/scan-gram.l (%debug): Map to %define trace.parse.
1635 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
1636 names to `_' in macro names.
1637 (b4_debug_if): Replace with...
1638 (b4_parse_trace_if): this.
1639 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1640 * data/yacc.c: Adjust.
1641 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
1642 Use @code to label the variable list.
1643 Document the variable parse.trace.
1644 (Tracing): Promote the parse.trace variable.
1645 * TODO: %printer is not documented.
1646
f7dae1ea
AD
16472009-04-14 Akim Demaille <demaille@gostai.com>
1648
1649 doc: minor fixes.
1650 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
1651 (Table of Symbols): Remove duplicate entry for %debug.
1652
3535c071
EB
16532009-04-10 Eric Blake <ebb9@byu.net>
1654
1655 submodules: update to latest
1656 * submodules/autoconf: Use latest upstream Autoconf.
1657
cf48f675
EB
16582009-04-06 Eric Blake <ebb9@byu.net>
1659
1660 Work around autoconf 2.63b bug in testsuite.
1661 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
1662 autoconf bug related to # in test.
1663
50cca368
JD
16642009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1665
1666 * NEWS (2.5): New section. Describe new -D/--define feature.
1667
3583d96b
AD
16682009-04-06 Akim Demaille <demaille@gostai.com>
1669
1670 Regen.
1671 * src/parse-gram.h, src/parse-gram.c: Regen.
1672
00f5d575
AD
16732009-04-06 Akim Demaille <demaille@gostai.com>
1674
1675 rename muscle_tab.* as muscle-tab.* for consistency.
1676 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
1677 * src/muscle-tab.h, src/muscle-tab.c: these.
1678 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
1679 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
1680
76bf5102
AD
16812009-04-06 Akim Demaille <demaille@gostai.com>
1682
1683 Makefile: introduce $(BISON).
1684 * src/local.mk (BISON): New.
1685 (YACC): Use it.
1686
bc0f5737
AD
16872009-04-06 Akim Demaille <demaille@gostai.com>
1688
1689 parser: handle %locations as %define locations.
1690 * src/getargs.h, src/getargs.c (locations_flag): Remove.
1691 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
1692 to set "locations" to true.
1693 * src/output.c (prepare): Don't output "locations".
1694 * src/scan-gram.l (%locations): Handle it as a %<flag>.
1695 * src/parse-gram.y: It's no longer a token.
1696 Don't handle it.
1697 * data/bison.m4 (b4_locations_if): Define it with
1698 b4_percent_define_if_define.
1699 * data/c.m4, data/glr.cc: Adjust.
1700
697c912f
AD
17012009-04-06 Akim Demaille <demaille@gostai.com>
1702
1703 Regen.
1704 * src/parse-gram.c: Regen.
1705
4920ae8b
AD
17062009-04-06 Akim Demaille <demaille@gostai.com>
1707
1708 muscle: factor the handling of obsolete of obsolete directives.
1709 Suggested by Joel E. Denny.
50cca368 1710
4920ae8b
AD
1711 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
1712 New, extracted from...
1713 * src/parse-gram.y (prologue_declaration: pure-parser): here.
1714 Remove it.
1715 (prologue_declaration: "%<flag>"): Use
1716 muscle_percent_define_ensure.
1717 (%error-verbose, %pure-parser): No longer tokens.
1718 * src/scan-gram.l (pure-parser): Return as a %<flag>.
1719
1d5b3c08
JD
17202009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1721
1722 Fix options documentation.
1723 * build-aux/cross-options.pl: As in --help output, write optional
1724 arguments as [=ARG] not =[ARG].
1725 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
1726
62c99cf4
JD
17272009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1728
1729 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
1730 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
1731 requirements for a correct m4 are stricter.
1732 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
1733 * configure.ac: Update to use AC_PROG_GNU_M4.
1734 Reported by Eric Blake.
1735
1c93f35b
JD
17362009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1737
1738 Help with updating web manual.
1739 * HACKING: Incorporate instructions from gnulib/doc/README.
1740 * bootstrap.conf (gnulib_modules): Add gendocs.
1741
86cfae0a
AD
17422009-04-03 Akim Demaille <demaille@gostai.com>
1743
1744 Regen.
1745 * src/parse-gram.h, src/parse-gram.c: Regen.
1746
ba061fa6
AD
17472009-04-03 Akim Demaille <demaille@gostai.com>
1748
1749 Factor %FLAG at scan level.
1750 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
1751 definitions and associated rules, replaced by....
1752 (PERCENT_FLAG): this new token type, and rule.
1753 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
1754 Use it for %debug and %error-verbose.
1755
b19ebeb3
AD
17562009-04-03 Akim Demaille <demaille@gostai.com>
1757
1758 Regen.
1759 * src/parse-gram.h, src/parse-gram.c: Regen.
1760
001a16a9
AD
17612009-04-03 Akim Demaille <demaille@gostai.com>
1762
1763 Treat %debug as %define debug.
1764 * data/bison.m4 (b4_debug_if): New.
1765 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
1766 * data/lalr1.java: Use it instead of b4_debug_flag.
1767 * src/getargs.h, src/getargs.c (debug_flag): Remove.
1768 * src/output.c (prepare): Don't output it.
1769 * src/parse-gram.y: Treat %debug as %define debug.
1770
17712009-04-03 Akim Demaille <demaille@gostai.com>
1772
1773 Treat %error-verbose as %define error_verbose.
1774 This allows to pass -Derror_verbose on the command line. Better
1775 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
1776 ERROR_VERBOSE being defined as false or true.
1777 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
1778 on b4_percent_define_ifdef, for does not check the defined value,
1779 but only whether the symbol is defined, rely on
1780 b4_percent_define_flag_if, so that a value of "false" is processed
1781 as a false.
1782 If not defined, define the flag to "false".
1783 (b4_error_verbose_if): New.
1784 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
1785 b4_error_verbose_flag.
1786 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
1787 * src/output.c (prepare): Don't output it.
1788 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
1789
92822aff
JD
17902009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1791
1792 Fix strange %define locations for default values.
1793 Reported by Akim Demaille at
1794 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
1795 and discussed again starting at
1796 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
1797 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
1798 because location information is bogus.
1799 Use angle brackets to delimit fake file name because square brackets
1800 look like underexpanded m4. Choose a better fake file name.
1801 Use negative line numbers.
1802 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
1803 * src/location.c (location_print): If line for a boundary is negative,
1804 only print that boundary's file name.
1805 * src/location.h: Document that.
1806 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1807 defaults): Update output.
1808
e021191b
JD
18092009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1810
1811 Pacify ./configure --enable-gcc-warnings.
1812 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
1813 in lib won't compile with it.
1814 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
1815
78f65418
AD
18162009-03-31 Akim Demaille <demaille@gostai.com>
1817
1818 bootstrap: --help to stdout.
1819 * bootstrap (usage): Don't send --help to stderr.
1820 Use a here doc instead of a long string.
1821
f7e241f4
AD
18222009-03-31 Akim Demaille <demaille@gostai.com>
1823
1824 bootstrap: README-hacking no longer exists
1825 * bootstrap (checkout_only_file): Set to HACKING.
1826
31d3e510
AD
18272009-03-26 Akim Demaille <demaille@gostai.com>
1828
1829 doc: merge HACKING and README-hacking.
1830 Two files is confusing.
1831 Reported by Alexandre Duret-Lutz.
1f9d8248 1832
31d3e510
AD
1833 * README-hacking: Merge into...
1834 * HACKING (Working from the repository): here.
1835
81535bfa
AD
18362009-03-26 Akim Demaille <demaille@gostai.com>
1837
1838 doc: update README-hacking.
1839 * README-hacking: We now use git and git submodules.
1840 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
1841
56f772e9
AD
18422009-03-26 Akim Demaille <demaille@gostai.com>
1843
1844 lalr1.cc: avoid GCC 4.3 warnings.
1845 GCC 4.3 now warns about "a || b && c" and asks for explicit
1846 parentheses.
1847 Reported by Alexandre Duret-Lutz.
1848 * data/location.cc: Update copyright years.
1849 (Position::operator==): Use parens to make precedence explicit.
1850 Compare lines and columns first, as they are more likely to be
1851 different, and they are faster to compare.
1852
11c073b7
AD
18532009-03-26 Akim Demaille <demaille@gostai.com>
1854
1855 gnulib: update.
1856 * gnulib: Update to latest.
1857 * src/local.mk (AM_CFLAGS): Move to...
1858 * Makefile.am: here.
1859 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
1860 AM_CFLAGS.
1861
91be6b28
AD
18622009-03-02 Akim Demaille <demaille@gostai.com>
1863
1864 Comment changes.
1865
cbf25ce7
AD
18662009-03-02 Akim Demaille <demaille@gostai.com>
1867
1868 Share b4_yytranslate_define.
1869 * data/lalr1.cc (b4_yytranslate_define): Move to...
1870 * data/c++.m4: here.
1871
882f02ed
AD
18722009-03-02 Akim Demaille <demaille@gostai.com>
1873
1874 Use locations in the variant example.
1f9d8248
AD
1875 Yes, this obfuscates the point of this example, variants only.
1876 But glr.cc cannot work (yet?) without locations. This change
1877 makes it easier to use this example with glr.cc.
11c073b7 1878
882f02ed
AD
1879 * examples/variant.yy (assert): %define it.
1880 (locations): Request them.
1881 (yylex): Bind the location to the stage.
1882
0623bacc
AD
18832009-03-02 Akim Demaille <demaille@gostai.com>
1884
1885 Dub make_TOKEN as a public type interface.
1886 * data/c++.m4 (b4_symbol_constructor_declare)
1887 (b4_symbol_constructor_define): New empty stubs.
1888 (b4_public_types_declare, b4_public_types_define): Use them.
1889 * data/lalr1.cc (b4_symbol_constructor_declare)
1890 (b4_symbol_constructor_declare_)
1891 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
1892 Move to...
1893 * data/variant.hh: here.
1894 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
1895 needed.
1896 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
1897 b4_symbol_constructor_declare, as it is now done by
1898 b4_public_types_define and b4_public_types_declare.
1899
5f5a90df
AD
19002009-03-02 Akim Demaille <demaille@gostai.com>
1901
1902 Coding style changes.
1903 * data/lalr1.cc (b4_symbol_constructor_declaration_)
1904 (b4_symbol_constructor_declarations)
1905 (b4_symbol_constructor_definition_)
1906 (b4_symbol_constructor_definitions)
1907 (b4_yytranslate_definition): Rename as...
1908 (b4_symbol_constructor_declare_)
1909 (b4_symbol_constructor_declare)
1910 (b4_symbol_constructor_define_)
1911 (b4_symbol_constructor_define)
1912 (b4_yytranslate_define): these.
1913 * data/variant.hh (b4_variant_definition): Rename as...
1914 (b4_variant_define): this.
1915
b47b6ff7
AD
19162009-03-02 Akim Demaille <demaille@gostai.com>
1917
1918 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
1919 * data/bison.m4 (b4_percent_define_if_define): New.
1920 * data/c++.m4 (b4_variant_if): Move to...
1921 * data/bison.m4: Here, using b4_percent_define_if_define.
1922 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
1923 * data/bison.m4: Here, using b4_percent_define_if_define.
1924
1d6b689b
AD
19252009-03-02 Akim Demaille <demaille@gostai.com>
1926
1927 Dub symbol_type_base as a public type.
1928 * data/c++.m4 (b4_public_types_declare): Now define
1929 symbol_type_base and symbol_type.
1930 (b4_public_types_define): New.
1931 In both cases, the definitions are taken verbatim from lalr1.cc.
1932 * data/lalr1.cc: Adjust.
1933
4f84717d
AD
19342009-03-02 Akim Demaille <demaille@gostai.com>
1935
1936 b4_public_types_declare.
1937 * data/c++.m4 (b4_public_types_declare): New.
1938 * data/glr.cc, data/lalr1.cc: Use it.
1939
b9e4eb5b
AD
19402009-03-02 Akim Demaille <demaille@gostai.com>
1941
1942 b4_semantic_type_declare.
1943 * data/c++.m4 (b4_semantic_type_declare): New.
1944 Factors and generalizes what was in glr.cc and lalr1.cc.
1945 * data/variant.hh (b4_semantic_type_declare): Redefine it for
1946 variants.
1947 * data/lalr1.cc, data/glr.cc: Use it.
1948
6a6e7f0c
AD
19492009-02-26 Akim Demaille <demaille@gostai.com>
1950
1951 Upgrade gnulib.
1952 * gnulib: Upgrade from master.
1953 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
1954 Regen.
1955
e9e61b00
AD
19562009-02-25 Akim Demaille <demaille@gostai.com>
1957
1958 Remove useless arguments.
1959 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
1960 relevant.
1961
3eead995
AD
19622009-02-25 Akim Demaille <demaille@gostai.com>
1963
1964 Comment changes.
1965 * data/lalr1.cc: here.
1966
87f28efe
AD
19672009-02-25 Akim Demaille <demaille@gostai.com>
1968
1969 Fix glr.cc's debug level handling.
1970 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
1971 glr.c which is used.
1972 (debug_level, set_debug_level): Adjust.
1973
9be2a009
AD
19742009-02-25 Akim Demaille <demaille@gostai.com>
1975
1976 Copyright years.
1977 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
1978
07a6e87d
AD
19792009-02-25 Akim Demaille <demaille@gostai.com>
1980
1981 Style changes.
1982 * etc/bench.pl.in (generate_grammar_list): Consitently use
1983 location_type, not yy::location.
1984
33c78bd2
AD
19852009-02-25 Akim Demaille <demaille@gostai.com>
1986
1987 Comment change.
1988 * data/lalr1.cc: here.
1989
49572920
AD
19902009-02-19 Akim Demaille <demaille@gostai.com>
1991
1992 Make yyparser::error public.
1993 * data/lalr1.cc: here.
1994 There is no good reason to keep it private (and it is convenient
1995 to use it from the scanner for instance). It is already public in
1996 glr.cc.
1997
88654b47
AD
19982009-02-19 Akim Demaille <demaille@gostai.com>
1999
2000 Comment changes.
2001 * data/glr.cc: here.
2002
4524c55b
AD
20032009-02-19 Akim Demaille <demaille@gostai.com>
2004
2005 Remove trailing blanks.
6a6e7f0c
AD
2006 The epilogue has its own ending \n, no need to add another.
2007
4524c55b
AD
2008 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
2009 epilogue.
2010 * data/glr.cc: dnl when extending the epilogue.
2011 Remove stray "private:".
2012
6ceccee8
AD
20132009-02-19 Akim Demaille <demaille@gostai.com>
2014
2015 Use b4_c_modern.
2016 * data/c.m4 (b4_c_function_decl): Here.
2017
9c6a8966
AD
20182009-02-19 Akim Demaille <demaille@gostai.com>
2019
2020 Comment changes.
2021 * data/lalr1.cc: here.
2022
507aa0e2
AD
20232009-02-19 Akim Demaille <demaille@gostai.com>
2024
2025 Extract variant.hh
2026 * data/variant.hh: New, extracted from...
2027 * data/lalr1.cc: here.
2028 Adjust.
2029 * data/local.mk: Adjust.
2030
51bacae6
AD
20312009-02-19 Akim Demaille <demaille@gostai.com>
2032
2033 Extract stack.hh from lalr1.cc.
2034 * data/stack.hh: New.
2035 * data/lalr1.cc: Extract from here.
2036 * data/local.mk: Adjust.
2037
06c3084f
JD
20382009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
2039
2040 Add reminder about uploading public key to keys.gnupg.net.
2041 * HACKING (Release Procedure): Here.
2042
0ea583d2
AD
20432009-01-28 Akim Demaille <demaille@gostai.com>
2044
2045 * NEWS: Update information about 2.4.1 and 2.4.2.
2046
402b123d
AD
20472008-11-04 Akim Demaille <demaille@gostai.com>
2048
2049 Reformat NEWS.
2050 * NEWS: Use more outline-mode markup.
2051 Suggested by Jim Meyering.
2052
74553c98
AD
20532009-01-08 Akim Demaille <demaille@gostai.com>
2054
2055 Fix grep portability issues.
2056 Grep on Solaris does not support -q.
2057 Reported by Summum Bonum.
2058
2059 * NEWS: Add a stub for 2.4.2.
2060 * THANKS: Add Summum Bonum.
2061 * tests/atlocal.in (EGREP): New.
2062 (CC, CXX, XSLTPROC): Make it possible to override them via
2063 envvars.
2064 * tests/java.at: Use $EGREP instead of egrep.
2065 Use AT_CHECK's ignore instead of grep's -q.
2066
84eedf86
AD
20672008-12-11 Akim Demaille <demaille@gostai.com>
2068
2069 Pass the token type to yysyntax_error.
2070 * data/yacc.c (yysyntax_error): Take the transated token instead
2071 of the raw number.
2072 Adjust callers.
2073 * TODO: Update.
2074
5860cc8c
AD
20752008-12-11 Akim Demaille <demaille@gostai.com>
2076
2077 Formatting changes.
2078 * data/glr.c: Formatting changes.
2079
2b008529
AD
20802008-12-11 Akim Demaille <demaille@gostai.com>
2081
2082 Propagate i18n changes into glr.c.
2083 * TODO: Update.
2084 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
2085 building the error message format dynamically.
2086 * data/lalr1.java: Formatting changes.
2087
2cd1af95
AD
20882008-12-11 Akim Demaille <demaille@gostai.com>
2089
2090 Use testsuite -C.
2091 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
2092 Solves problems when top_srcdir is an absolute path.
2093 Suggested by Eric Blake.
2094 * configure.ac: Require Autoconf 2.62.
2095
eeb29422
AD
20962008-12-11 Akim Demaille <demaille@gostai.com>
2097
2098 Simplify the i18n of the error messages.
2099 * data/lalr1.cc: Comment changes.
2100 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
2101 lalr1.cc instead of building dynamically the format string.
2102
6617622c
AD
21032008-12-08 Akim Demaille <demaille@gostai.com>
2104
2105 Fix portability issue in the test suite.
2106 * tests/local.at (AT_MATCHES_CHECK): New.
2107 Based on Perl instead of Sed. Sed has too many portability
2108 pitfalls, not ever Sed is GNU Sed.
2109 * tests/actions.at (Fix user actions without a trailing semicolon):
2110 Use it.
2111
2ca1136c
AD
21122008-12-08 Akim Demaille <demaille@gostai.com>
2113
2114 Update data/README.
2115 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
2116
6c63b895
AD
21172008-12-08 Akim Demaille <demaille@gostai.com>
2118
2119 Install autoconf as a submodule to get m4sugar.
2120 * .gitmodules: Add submodules/autoconf.
2121 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
2122 submodules/autoconf.
2123
417e31d2
AD
21242008-12-08 Akim Demaille <demaille@gostai.com>
2125
2126 Test token.prefix in all the skeletons.
2127 * data/java.m4 (b4_token_enum): Use the token.prefix.
2128 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
2129 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
2130 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
2131 * tests/java.at: Comment changes.
2132 (AT_CHECK_JAVA_MINIMAL): Define the END token.
2133 (Java parser class and package names): Add token.prefix check.
2134
97abf544
AD
21352008-12-08 Akim Demaille <demaille@gostai.com>
2136
2137 Fix regeneration of atconfig.
2138 * tests/local.mk (tests/atconfig): The rule was incorrect, but
2139 remove it: now that there is no tests/Makefile.am, the top-level
2140 Makefile properly updates atconfig when needed.
2141
e8cd1ad6
DJ
21422008-12-07 Di-an Jan <dianj@freeshell.org>
2143
2144 Implement the FIXME that ends an user action with a semicolon
2145 if it seems necessary.
2146 * src/scan-code.l (flex rules section): Flag cpp directive from
2147 any `#' to the first unescaped end-of-line. Semicolon is not
2148 needed after `;', `{', '}', or cpp directives and is needed after
2149 any other token (whitespaces and comments have no effect).
2150 * tests/actions.at (Fix user actions without a trailing semicolon):
2151 New test.
2152 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
2153 to make user actions complete statements.
2154 Adjust column numbers in error messages.
2155 * tests/regression.at (Fix user actions without a trailing semicolon):
2156 Remove. Covered by new test.
2157
ce9447fc
AD
21582008-12-07 Akim Demaille <demaille@gostai.com>
2159
2160 Update gnulib.
2161 * gnulib: Update from master.
2162
d333175f
EB
21632008-12-05 Eric Blake <ebb9@byu.net>
2164
2165 Avoid compiler warning.
2166 * src/output.c (muscle_insert_item_number_table): Delete unused
2167 function.
2168
215b40ac
EB
21692008-12-02 Eric Blake <ebb9@byu.net>
2170
2171 Build testsuite with newer autoconf.
2172 * tests/output.at (m4_expand): Don't override in newer autoconf,
2173 where the underlying implementation changed.
2174 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
2175 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
2176 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
2177 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
2178 since some of them contain unbalanced ')'.
2179
3bb21113
AD
21802008-12-01 Akim Demaille <demaille@gostai.com>
2181
2182 Use b4_symbol for printers and destructors everywhere.
2183 * data/bison.m4 (b4_symbol_action_location): New.
2184 * data/c.m4 (b4_symbol_actions): Remove.
2185 Adjust all callers to use by b4_symbol_foreach and the corresponding
2186 b4_symbol_printer/destructor macro.
2187 * data/glr.cc: Adjust.
2188 * data/lalr1.java: Adjust the %destructor sanity check.
2189 * src/output.c (symbol_code_props_output): Remove, we no longer
2190 need the b4_symbol_printers/destructors tables.
2191
fb7c5b1f
AD
21922008-12-01 Akim Demaille <demaille@gostai.com>
2193
2194 Use b4_symbol_case_.
2195 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
2196 b4_symbol_case_.
2197
cf6fb222
AD
21982008-12-01 Akim Demaille <demaille@gostai.com>
2199
2200 Move b4_symbol based macro to bison.m4.
2201 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
2202 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
2203 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
2204 (b4_type_foreach): Move to...
2205 * data/bison.m4: Here.
2206 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
2207 b4_symbol_value_template instead of b4_symbol_value.
cf6fb222 2208
e3c52a63
AD
22092008-12-01 Akim Demaille <demaille@gostai.com>
2210
2211 b4_symbol/type_foreach.
2212 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
2213 Use them.
2214
2bde9113
AD
22152008-12-01 Akim Demaille <demaille@gostai.com>
2216
2217 Use the symbol properties to output the printer/destructor for lalr1.cc.
30c10faf
AD
2218 Instead of defining complex list of tuples to define various
2219 properties of the symbols, we now prefer to define symbols as
2220 "structs" in m4: using the symbol key (its number), and the
2221 property name, b4_symbol gives it value. Use this to handle
2222 destructors and printers.
2223
2bde9113
AD
2224 * src/output.c (CODE_PROP): New.
2225 (prepare_symbol_definitions): Use it to define the printer and
2226 destructor related attributes of the symbols.
2227 * data/lalr1.cc (b4_symbol_actions): Rename as...
2228 (b4_symbol_action): this.
2229 Use b4_symbol instead of 6 arguments.
2230 (b4_symbol_printer, b4_symbol_destructor): New.
2231 Use them instead of b4_symbol_actions.
2232
44494bf6
AD
22332008-12-01 Akim Demaille <demaille@gostai.com>
2234
2235 Avoid capturing variables too easily.
2236 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
2237 v__ and p__ instead of v and p.
2238
fad814bd
AD
22392008-12-01 Akim Demaille <demaille@gostai.com>
2240
2241 Remove spurious empty line before syncline.
2242 * data/bison.m4 (b4_syncline): Don't output an empty line before
2243 the output.
2244
feda5527
AD
22452008-11-26 Akim Demaille <demaille@gostai.com>
2246
2247 Convert lib/Makefile.am into lib/local.mk.
2248 The real problem is rather gnulib.mk, which itself is extracted
2249 from a Makefile.am that gnulib expects to the "recursive". The
2250 tool prefix-gnulib-mk converts such a gnulib.mk to be
2251 non-recursive. Also, some AC_SUBST variables need to be adjusted.
2252
2253 * etc/prefix-gnulib-mk: New.
2254 * bootstrap (slurp): Use it to convert further gnulib.mk.
2255 No longer try to avoid re-creation of lib/gnulib.mk as the changes
2256 are deeper.
2257 * lib/Makefile.am: Rename as...
2258 * lib/local.mk: this.
2259 Adjust to be prefixed.
2260 * Makefile.am, configure.ac: Adjust.
2261 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
2262
56ddee7f
AD
22632008-11-26 Akim Demaille <demaille@gostai.com>
2264
2265 s/_FLAGS/FLAGS/.
2266 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
2267 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
2268 Reported by Eric Blake.
2269
728e89a0
AD
22702008-11-26 Akim Demaille <demaille@gostai.com>
2271
2272 Use b4_parser_tables_define in glr.cc.
2273 * data/glr.c: Use b4_parser_tables_define instead of defining the
2274 (deterministic integral) tables by hand.
2275
2c1bf9bd
AD
22762008-11-26 Akim Demaille <demaille@gostai.com>
2277
2278 Use b4_parser_tables_define in Java.
2279 * data/java.m4 (b4_typed_parser_table): Rename as...
2280 (b4_typed_parser_table_define): this, for consistency.
2281 Accept a comment as $4.
2282 Move $2 into yy*_.
2283 (b4_integral_parser_table): Rename as...
2284 (b4_integral_parser_table_define): this.
2285 * data/lalr1.java: Adjust all uses.
2286 Use b4_parser_tables_define instead of generation by hand.
2287
ba206cf4
AD
22882008-11-26 Akim Demaille <demaille@gostai.com>
2289
2290 Prepare the convergence bw C style and Java table generation.
2291 * data/bison.m4 (b4_tables_map, b4_tables_declare)
2292 (b4_tables_define): Rename as...
2293 (b4_integral_parser_tables_map, b4_parser_tables_declare)
2294 (b4_parser_tables_define): these.
2295 * data/c.m4 (b4_table_define): Rename as...
2296 (b4_integral_parser_table_define): this.
2297 * data/lalr1.cc: Adjust.
2298 (b4_table_define, b4_table_declare): Rename as...
2299 (b4_integral_parser_table_define)
2300 (b4_integral_parser_table_declare): these.
2301 (yyrline_): Move the comment where it is actually used.
2302 * data/yacc.c: Adjust.
2303 (yyrline): Use b4_integral_parser_table_define.
2304
d12f8e49
AD
23052008-11-26 Akim Demaille <demaille@gostai.com>
2306
2307 Regen.
2308 * src/parse-gram.h, src/parse-gram.c: Regen.
2309
0991e29b
AD
23102008-11-26 Akim Demaille <demaille@gostai.com>
2311
2312 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
2313 * data/lalr1.cc (b4_tables_map): Move to...
2314 * data/bison.m4: here.
2315 Update the comment for yytable during the flight.
2316 (b4_tables_declare, b4_tables_define): New.
2317 * data/lalr1.cc: Use them.
2318 * data/c.m4 (b4_table_define): New.
2319 * data/yacc.c: Use b4_tables_define instead of output the tables
2320 by hand.
2321 * tests/regression.at (Web2c Actions): Adjust the expected output,
2322 the order of the tables changed.
2323
3d3bc1fe
AD
23242008-11-26 Akim Demaille <demaille@gostai.com>
2325
2326 Get rid of (yy)rhs and (yy)prhs.
2327 These tables are no longer needed in the parsers, and they don't seem to
2328 be useful. They are not documented either.
feda5527 2329
3d3bc1fe
AD
2330 * src/output.c (prepare_rules): Get rid of rhs and prhs.
2331 Adjust the computation of (yy)r2.
2332
08c81469
AD
23332008-11-26 Akim Demaille <demaille@gostai.com>
2334
2335 Rule length is unsigned.
2336 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
2337
932b0c96
AD
23382008-11-26 Akim Demaille <demaille@gostai.com>
2339
2340 Get rid of lalr1-split.cc.
2341 It was no longer maintainer.
feda5527 2342
932b0c96
AD
2343 * data/lalr1-split.cc: Remove.
2344 * etc/bench.pl.in (bench_fusion_parser): Remove.
2345 Adjust.
2346
8452c667
AD
23472008-11-26 Akim Demaille <demaille@gostai.com>
2348
2349 Use yy* consistently.
2350 * data/glr.c: Now that yyrhs no longer exists as a global
2351 variable, rename local "rhs" variables into "yyrhs" for
2352 consistency.
2353
783aa653
AD
23542008-11-25 Akim Demaille <demaille@gostai.com>
2355
2356 Get rid of yyrhs and yyprhs in glr.c.
2357 * data/glr.c (yyrhs, yyprhs): Remove.
2358 Instead, use the state stack and yystos.
2359
6130b755
AD
23602008-11-25 Akim Demaille <demaille@gostai.com>
2361
2362 Flag glr tests.
2363 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
2364 as an Autotest keyword.
2365
95a7b1c9
AD
23662008-11-25 Akim Demaille <demaille@gostai.com>
2367
2368 Prefer TESTSUITE_FLAGS.
2369 TESTSUITEFLAGS is barely readable.
feda5527 2370
95a7b1c9
AD
2371 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
2372 for backward compatibility.
2373 Use the former instead of the latter.
2374
b4f18401
AD
23752008-11-25 Akim Demaille <demaille@gostai.com>
2376
2377 Get rid of yyrhs and yyprhs in larl1.java.
2378 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
2379 (yy_reduce_print): Rather, use yystos_ and the state stack.
2380
c265fd6b
AD
23812008-11-25 Akim Demaille <demaille@gostai.com>
2382
2383 Formatting changes.
2384
68dbdee8
AD
23852008-11-25 Akim Demaille <demaille@gostai.com>
2386
2387 Get rid of yyrhs and yyprhs in yacc.c.
30c10faf
AD
2388 They were used to get the symbol types, given a rule number, when
2389 displaying the top of the stack before a reduction. But the
2390 symbol type is available from the state stack. This has two be
2391 benefits: two tables less in the parser (making it smaller), and a
2392 more consistent use of the three stacks which will help to fuse
2393 them.
feda5527 2394
68dbdee8
AD
2395 * data/yacc.c (yyprhs, yyrhs): Remove.
2396 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
2397 (yy_reduce_print): Take yyssp as argument.
2398 Use it, together with yystos, to get the symbol type.
2399 * tests/regression.at (Web2c Report): Remove these tables from the
2400 expected output.
2401
6ab1adbe
AD
24022008-11-25 Akim Demaille <demaille@gostai.com>
2403
2404 b4_tables_map.
2405 The point is to factor the generation of the tables across skeletons.
2406 This is language dependant.
feda5527 2407
6ab1adbe
AD
2408 * data/c.m4 (b4_comment_): New.
2409 Should be usable to define how to generate tables independently of
2410 the language.
2411 (b4_c_comment): New.
2412 (b4_comment): Bounce to b4_c_comment.
2413 Now support $2 = [PREFIX] for indentation.
2414 * data/lalr1.cc (b4_table_declare): Don't output a comment if
2415 there is no comment.
2416 Indent it properly when there is one.
2417 Output the ending semicolon.
2418 (b4_table_define): Space changes.
2419 Output the ending semicolon.
2420 (b4_tables_map): New.
2421 Use it twice instead of declaring and defining the (integral)
2422 tables by hand.
2423
0fddb3d5
AD
24242008-11-25 Akim Demaille <demaille@gostai.com>
2425
2426 b4_table_declare.
2427 * data/lalr1.cc (b4_table_declare): New.
2428 Use it to declare the tables defined with b4_table_define.
2429 (b4_table_define): Declare a third arg to match b4_table_declare
2430 signature.
2431 Move all the comments around invocations of b4_table_define into
2432 the invocations itselves.
2433 Move things around to have the order for declarations and
2434 definitions.
2435
c4ddc0fb
AD
24362008-11-25 Akim Demaille <demaille@gostai.com>
2437
2438 Formatting changes.
2439 * data/lalr1.java: here.
2440
e0c653e7
AD
24412008-11-25 Akim Demaille <demaille@gostai.com>
2442
2443 b4_args is more general than only C++.
2444 * data/lalr1.cc (b4_args, _b4_args): Move to...
2445 * data/bison.m4: here.
2446
4182a0a1
DJ
24472008-11-21 Di-an Jan <dianj@freeshell.org>
2448
2449 Implement no-XXX arguments for --warnings, --report, --trace.
2450 * src/getargs.c (flags_argmatch): Handles no-XXX.
2451 Fix typo in doxygen comment.
2452
01466c3e
AD
24532008-11-21 Akim Demaille <demaille@gostai.com>
2454
2455 Display the changes in cross-options.texi.
2456 * build-aux/cross-options.pl ($sep): New, to separate items.
2457 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
2458 changes.
2459
a7c09cba
DJ
24602008-11-20 Di-an Jan <dianj@freeshell.org>
2461
2462 Improves options in the manual.
2463 * doc/bison.texinfo (-g, -x): Add space before argument.
2464 (Option Cross Key): Implement FIXME: listing directives also.
2465 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2466 (Short Option): Special case -d. Put arguments inside @option.
feda5527 2467 (Bison Directive): Add column, automatically extracted from
a7c09cba
DJ
2468 src/scan-gram.l (actual name passed as the first argument)
2469 with special case for %define.
2470 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
2471 to build-aux/cross-options.pl.
2472 * src/getargs.c (usage): Document limitations of cross-options.pl.
2473 * src/scan-gram.l: Likewise.
2474
6c88b51e
JD
24752008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2476
2477 Fix unexpanded macros in GLR defines file.
2478 Reported by Csaba Raduly at
2479 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
2480 * THANKS (Csaba Raduly): Add.
2481 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
2482 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
2483 lexer in a separate module that includes the defines file.
2484 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
2485 source.
2486 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
2487 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
2488 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
2489 (AT_DATA_SOURCE_PROLOGUE): New.
2490 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
2491 (AT_DATA_SOURCE): New.
2492 (AT_FULL_COMPILE): Extend to support an additional source file.
2493
1e034807
AD
24942008-11-18 Akim Demaille <demaille@gostai.com>
2495
2496 More TODO.
2497 * TODO: More short term issues.
2498
e3dda35c
AD
24992008-11-18 Akim Demaille <demaille@gostai.com>
2500
2501 Regen.
2502 * src/parse-gram.h, src/parse-gram.c: Regen.
2503
bd187d7b
AD
25042008-11-18 Akim Demaille <demaille@gostai.com>
2505
2506 Use b4_subtract where possible.
2507 * data/lalr1.cc (b4_subtract): Move to...
2508 * data/bison.m4: here.
2509 * data/glr.c (b4_rhs_data): Use it.
2510 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
2511
6085ab0d
AD
25122008-11-18 Akim Demaille <demaille@gostai.com>
2513
2514 Remove incorrect mode specification.
2515 * data/glr.cc: Don't pretend it's C code.
2516
9ce405ce
JD
25172008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2518
2519 Simplify last patch slightly.
2520 * src/getargs.c (getargs): Here.
2521
a8beef7e
JD
25222008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2523
2524 Fix last warning from --enable-gcc-warnings.
2525 * src/getargs.c (getargs): Don't assign const address to non-const
2526 pointer.
2527
d50eea6d
JD
25282008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2529
2530 Don't let maintainer-*-check targets force a version update.
2531 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
2532 handled.
2533
f5f419de
DJ
25342008-11-17 Di-an Jan <dianj@freeshell.org>
2535
2536 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
2537 Align menus. Adjust word wrapping. Use node names for menu names.
2538 (Examples): Don't abbreviate node names.
2539 (LocalWords): Remove abbreviations.
2540 (Copying): Make description a sentence.
d50eea6d 2541 (Java Action Features): Remove period to match the rest of menu.
f5f419de 2542
d73e55e0
DJ
25432008-11-17 Di-an Jan <dianj@freeshell.org>
2544
2545 Handles several --enable-gcc-warnings.
2546 * src/getargs.c (command_line_location): Set parameters to void.
2547 * src/output.c (symbol_type_name_cmp): Make static.
2548 (symbols_by_type_name): Set parameters to void.
2549 (symbol_definitions_output): Remove unused parameter. Rename as...
2550 (prepare_symbol_definitions): this.
2551 (muscles_output): Move symbol_definitions_output to...
2552 (output): here as prepare_symbol_definitions.
2553 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
d50eea6d 2554 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
d73e55e0 2555
68c989de
DJ
25562008-11-17 Di-an Jan <dianj@freeshell.org>
2557
2558 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
2559 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
2560
23ce6f4c
AD
25612008-11-16 Akim Demaille <demaille@gostai.com>
2562
2563 Add missing $(EXEEXT).
2564 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
2565 "src/bison$(EXEEXT)".
2566 Reported by Di-an Jan.
2567
dd704c35
AD
25682008-11-15 Akim Demaille <demaille@gostai.com>
2569
2570 * TODO: Update.
2571
dab244d5
AD
25722008-11-15 Akim Demaille <demaille@gostai.com>
2573
2574 Formatting changes.
2575 * tests/input.at: here.
2576
4b4da9fb
AD
25772008-11-15 Akim Demaille <demaille@gostai.com>
2578
2579 Remove duplicate header inclusion.
2580 * src/LR0.c: here.
2581
4ea3f53d
AD
25822008-11-15 Akim Demaille <demaille@gostai.com>
2583
2584 * src/parse-gram.h, src/parse-gram.c: Regen.
2585
cb823b6f
AD
25862008-11-15 Akim Demaille <demaille@gostai.com>
2587
2588 Support parametric types.
b06df3c2
AD
2589
2590 There are two issues to handle: first scanning nested angle
2591 bracket pairs to support types such as std::pair< std::string,
2592 std::list<std::string> > >.
2593
2594 Another issue is to address idiosyncracies of C++: do not glue two
2595 closing angle brackets together (otherwise it's operator>>), and
2596 avoid sticking blindly a TYPE to the opening <, as it can result
2597 in '<:' which is a digraph for '['.
2598
cb823b6f
AD
2599 * src/scan-gram.l (brace_level): Rename as...
2600 (nesting): this.
2601 (SC_TAG): New.
2602 Implement support for complex tags.
b06df3c2 2603 (tag): Accept
cb823b6f
AD
2604 , but not <.
2605 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
2606 (b4_symbol_variant): Leave space around types as parameters.
2607 * examples/variant.yy: Use nested template types and leading ::.
2608 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
2609 Rename as...
2610 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
2611 * tests/c++.at: Test parametric types.
2612
7b6e6753
AD
26132008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2614
2615 Test token.prefix.
2616 This is not sufficient, but we test at least that the make_SYMBOL
2617 interface is not affected by token.prefix. A more general test
2618 will be implemented when the support of token.prefix is generalized
2619 to more skeletons.
b06df3c2 2620
7b6e6753
AD
2621 * tests/c++.at: One more variant test, using token.prefix.
2622
dddec537
AD
26232008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2624
2625 Test the make_TOKEN interface.
2626 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
2627 Factor the common code in yylex.
2628 Use it to test "%define lex_symbol".
2629
7d3e21ba
AD
26302008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2631
2632 Formatting change.
2633
4fc55348
AD
26342008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
2635
2636 Simplify code for variants bench marks.
2637 * etc/bench.pl.in (&generate_grammar_list): Define and use
2638 location_type.
2639 Factor the common code in yylex.
2640
070e6509
AD
26412008-11-15 Akim Demaille <demaille@gostai.com>
2642
2643 Better error message.
2644 * bootstrap (find_tool): Fix the error message.
2645
0078681b
AD
26462008-11-15 Akim Demaille <demaille@gostai.com>
2647
2648 Update variant.yy to newest interface.
2649 * examples/variant.yy: Define lex_symbol.
2650 Adjust.
2651
ff084799
AD
26522008-11-15 Akim Demaille <demaille@gostai.com>
2653
2654 Don't use locations in variant.yy.
2655 * examples/variant.yy: Adjust to not using locations.
2656
b0d79ec6
AD
26572008-11-15 Akim Demaille <demaille@gostai.com>
2658
2659 Comment changes.
2660 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
2661 comments for the license.
2662
d4977ce3
AD
26632008-11-15 Akim Demaille <demaille@gostai.com>
2664
2665 Remove tests/Makefile.am.
2666 * tests/Makefile.am: Rename as...
2667 * tests/local.mk: this.
2668 * Makefile.am, configure.ac: Adjust.
2669 * Makefile.am (DISTCLEANFILES): Define.
2670 (maintainer-check, maintainer-xml-check, maintainer-push-check):
2671 Remove, we no longer need to bounce to the real targets.
2672
87f1149a
AD
26732008-11-15 Akim Demaille <demaille@gostai.com>
2674
2675 Comment changes.
2676
36415906
AD
26772008-11-15 Akim Demaille <demaille@gostai.com>
2678
2679 djgpp/local.mk.
2680 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
2681 * djgpp/local.mk: this new file.
2682
e2c2f696
AD
26832008-11-15 Akim Demaille <demaille@gostai.com>
2684
2685 Remove doc/Makefile.am.
2686 * doc/Makefile.am: Rename as...
2687 * doc/local.mk: this.
2688 Adjust paths
2689 * Makefile.am, configure.ac: Adjust.
2690 * Makefile.am (MOSTLYCLEANFILES): New.
2691 * src/local.mk: Adjust.
2692
2ead32e6
AD
26932008-11-15 Akim Demaille <demaille@gostai.com>
2694
2695 Move sc_tight_scope into maint.mk.
b06df3c2
AD
2696 It does not work, and I don't know how it was supposed to work: it
2697 seems to be looking for sources in the build tree. I just moved
2698 it at a better place, fixing it is still required.
2699
2ead32e6
AD
2700 * src/local.mk (echo): Remove.
2701 (sc_tight_scope): Move to...
2702 * maint.mk: here.
2703
2df9ec37
AD
27042008-11-15 Akim Demaille <demaille@gostai.com>
2705
2706 Regen.
2707 * src/parse-gram.h, src/parse-gram.h: Regen.
2708
0305d25e
AD
27092008-11-15 Akim Demaille <demaille@gostai.com>
2710
2711 Remove src/Makefile.am.
2712 * src/Makefile.am: Rename as...
2713 * src/local.mk: this.
2714 Prefix all the paths with src/.
2715 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
2716 (AM_CPPFLAGS): Find find in builddir/src.
2717 (YACC): Move the flags into...
2718 (AM_YFLAGS): here.
2719 * maint.mk (sc_tight_scope): Disable.
2720 It used to bounce to the version in src/Makefile.am which is now
2721 part of this very Makefile.
2722 * Makefile.am, configure.ac: Adjust.
2723 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
2724 include "..." to find files "here": we are no longer in src/, so
2725 qualify the includes with src/.
2726 * doc/Makefile.am (PREPATH): No longer include the top_builddir
2727 prefix.
2728 (.x.1): Adjust to be able to create src/foo from the top level
2729 Makefile, instead of going bounce to src/Makefile the creation of
2730 foo.
2731
5277c0a3
AD
27322008-11-15 Akim Demaille <demaille@gostai.com>
2733
2734 Remove useless variable.
2735 * doc/Makefile.am (srcsrcdir): Remove.
2736
6a5aa0cd
AD
27372008-11-15 Akim Demaille <demaille@gostai.com>
2738
2739 Remove data/Makefile.am.
2740 * data/Makefile.am: Rename as...
2741 * data/local.mk: this.
2742 Adjust paths.
2743 * Makefile.am, configure.ac: Adjust.
2744
7cb794dc
AD
27452008-11-15 Akim Demaille <demaille@gostai.com>
2746
2747 Remove etc/Makefile.am.
2748 * etc/Makefile.am: Rename as...
2749 * etc/local.mk: this.
2750 Adjust.
2751 * Makefile.am, configure.ac: Adjust.
2752
cd409e3b
AD
27532008-11-15 Akim Demaille <demaille@gostai.com>
2754
2755 Remove examples/local.mk.
2756 examples/calc++/Makefile.am might be interesting to keep as is, since
2757 it is an example in itself.
2df9ec37 2758
cd409e3b
AD
2759 * examples/Makefile.am: Rename as...
2760 * examples/local.mk: this.
2761 Adjust.
2762 * Makefile.am, configure.ac: Adjust.
2763
9a1e4214
AD
27642008-11-15 Akim Demaille <demaille@gostai.com>
2765
2766 Remove build-aux/Makefile.am.
2767 Recursive Makefiles are really way too slow, let's get rid of some of
2768 them.
2df9ec37 2769
9a1e4214
AD
2770 * build-aux/Makefile.am: Rename as...
2771 * build-aux/local.mk: this.
2772 Adjust paths.
2773 * Makefile.am, configure.ac: Adjust.
2774
0634493c
AD
27752008-11-15 Akim Demaille <demaille@gostai.com>
2776
2777 Provide convenience constructors for locations and positions.
2778 * data/location.cc (position::position): Accept file, line and
2779 column as arguments with default values.
2780 Always qualify initial line and column literals as unsigned.
2781 (location::location): Provide convenience constructors.
2782
fe1b448a
AD
27832008-11-15 Akim Demaille <demaille@gostai.com>
2784
b06df3c2
AD
2785 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
2786 token type.
fe1b448a
AD
2787 Using template buys us nothing, and makes it uselessly complex to
2788 construct a symbol. Besides, it could not be generalized to other
2789 languages, while make_FOO would work in C/Java etc.
2df9ec37 2790
fe1b448a
AD
2791 * data/lalr1.cc (b4_symbol_): New.
2792 (b4_symbol): Use it.
2793 (b4_symbol_constructor_declaration_)
2794 (b4_symbol_constructor_definition_): Instead of generating
2795 specializations of an overloaded template function, just generate
2796 several functions whose names are forged from the token names
2797 without the token.prefix.
2798 (b4_symbol_constructor_declarations): Generate them for all the
2799 symbols, not just by class of symbol type, now that instead of
2800 specializing a function template by the token, we generate a
2801 function named after the token.
2802 (b4_symbol_constructor_specialization_)
2803 (b4_symbol_constructor_specializations): Remove.
2804 * etc/bench.pl.in: Adjust to this new API.
2805
5679f311
AD
28062008-11-13 Akim Demaille <demaille@gostai.com>
2807
2808 %define token.prefix.
b06df3c2
AD
2809 Provide a means to add a prefix to the name of the tokens as
2810 output in the generated files. Because of name clashes, it is
2811 good to have such a prefix such as TOK_ that protects from names
2812 such as EOF, FILE etc. But it clutters the grammar itself.
2df9ec37 2813
5679f311
AD
2814 * data/bison.m4 (token.prefix): Empty by default.
2815 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
2816 * data/lalr1.cc (b4_symbol): Ditto.
2817
3204049e
AD
28182008-11-13 Akim Demaille <demaille@gostai.com>
2819
2820 Compute at M4 time some of the subtractions.
90290ce5 2821 * data/lalr1.cc (b4_subtract): New.
3204049e
AD
2822 (b4_rhs_data): Use it.
2823
202598d3
AD
28242008-11-13 Akim Demaille <demaille@gostai.com>
2825
2826 symbol::token.
b06df3c2 2827 This allows the user to get the type of a token returned by yylex.
2df9ec37 2828
202598d3
AD
2829 * data/lalr1.cc (symbol::token): New.
2830 (yytoknum_): Define when %define lex_symbol, independently of
2831 %debug.
2832 (yytoken_number_): Move into...
2833 (symbol::token): here, since that's the only use.
2834 The other one is YYPRINT which was not officially supported
2835 by lalr1.cc, and anyway it did not work since YYPRINT uses this
2836 array under a different name (yytoknum).
2837
fc2476c7
AD
28382008-11-13 Akim Demaille <demaille@gostai.com>
2839
2840 YYERRCODE.
2841 * TODO (YYERRCODE): Mention the case of $undef.
2842
865f1e9f
AD
28432008-11-13 Akim Demaille <demaille@gostai.com>
2844
2845 TODO: YYPRINT.
2846 * TODO (YYPRINT): New.
2847
cb0b136a
AD
28482008-11-13 Akim Demaille <demaille@gostai.com>
2849
2850 Comment changes.
2851 * data/lalr1.cc, data/yacc.c: Fix the description of the
2852 yytranslate and yytoknum tables.
2853
2c086d29
AD
28542008-11-13 Akim Demaille <demaille@gostai.com>
2855
2856 Define make_symbol in the header.
b06df3c2
AD
2857 To reach good performances these functions should be inlined (yet
2858 this is to measure precisely). To this end they must be available
2859 to the caller.
2df9ec37 2860
2c086d29
AD
2861 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
2862 location_type with the class name.
2863 Since will now be output in the header, declare "inline".
2864 No longer use b4_symbol_constructor_specializations, but
2865 b4_symbol_constructor_definitions in the header.
2866 Don't call it in the *.cc file.
2867
1c4af381
AD
28682008-11-13 Akim Demaille <demaille@gostai.com>
2869
2870 Define yytranslate in the header for lex_symbol.
2871 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
2872 into the header file when using %define lex_symbol.
2873 (yytranslate_): Declare inline.
2874
e51b0a82
AD
28752008-11-13 Akim Demaille <demaille@gostai.com>
2876
b06df3c2
AD
2877 Define the constructors of symbol_type in
2878 b4_symbol_constructor_definitions.
e51b0a82 2879 The constructors are called by the make_symbol functions, which a
b06df3c2
AD
2880 forthcoming patch will move elsewhere. Hence the interest of
2881 putting them together.
2df9ec37 2882
b06df3c2
AD
2883 The stack_symbol_type does not need to be moved, it is used only
2884 by the parser.
2df9ec37 2885
e51b0a82
AD
2886 * data/lalr1.cc: Move symbol_type and symbol_base_type
2887 constructors into...
2888 (b4_symbol_constructor_definitions): here.
2889 Adjust.
2890
78835571
AD
28912008-11-13 Akim Demaille <demaille@gostai.com>
2892
2893 Make it easier to move the definition of yytranslate_.
2894 Forthcoming changes will make it possible to use yytranslate_
2895 from outside the parser implementation file.
2df9ec37 2896
78835571
AD
2897 * data/lalr1.cc (b4_yytranslate_definition): New.
2898 Use it.
2899
c1e6c88c
AD
29002008-11-13 Akim Demaille <demaille@gostai.com>
2901
2902 Remove useless class specification.
2903 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
2904 to refer to the class name to use a type defined by the class for
2905 arguments of member functions.
2906
4654b0c0
AD
29072008-11-13 Akim Demaille <demaille@gostai.com>
2908
2909 Finer input type for yytranslate.
2910 This patch is debatable: the tradition expects yylex to return an int
2911 which happens to correspond to token_number (which is an enum). This
2912 allows for instance to return characters (such as '*' etc.). But this
2913 goes against the stronger typing I am trying to have with the new
2914 lex interface which return a symbol_type. So in this case, feed
2915 yytranslate_ with a token_type.
2df9ec37 2916
4654b0c0
AD
2917 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
2918 expect a token_type.
2919
dd735e4e
AD
29202008-11-13 Akim Demaille <demaille@gostai.com>
2921
2922 Honor lex-params in %define lex_symbol mode.
2923 * data/lalr1.cc: Use b4_lex_param.
2924
6659366c
AD
29252008-11-13 Akim Demaille <demaille@gostai.com>
2926
2927 Simplify names.
2928 * src/output.c (symbol_definitions_output): Rename symbol
2929 attributes type_name and has_type_name as type and has_type.
2930 * data/lalr1.cc: Adjust uses.
2931
e9805e57
AD
29322008-11-13 Akim Demaille <demaille@gostai.com>
2933
2934 Use b4_type_names for the union type.
b06df3c2
AD
2935 The union used to compute the size of the variant used to iterate
2936 over the type of all the symbols, with a lot of redundancy. Now
2937 iterate over the lists of symbols having the same type-name.
2df9ec37 2938
e9805e57
AD
2939 * data/lalr1.cc (b4_char_sizeof_): New.
2940 (b4_char_sizeof): Use it.
2941 Adjust to be called with a list of numbers instead of a single
2942 number.
2943 Adjust its caller for new-line issues.
2944
aea10ef4
AD
29452008-11-13 Akim Demaille <demaille@gostai.com>
2946
2947 Define the "identifier" of a symbol.
b06df3c2
AD
2948 Symbols may have several string representations, for instance if
2949 they have an alias. What I call its "id" is a string that can be
2950 used as an identifier. May not exist.
2df9ec37 2951
b06df3c2
AD
2952 Currently the symbols which have the "tag_is_id" flag set are
2953 those that don't have an alias. Look harder for the id.
2df9ec37 2954
aea10ef4
AD
2955 * src/output.c (is_identifier): Move to...
2956 * src/symtab.c (is_identifier): here.
2957 * src/symtab.h, src/symtab.c (symbol_id_get): New.
2958 * src/output.c (symbol_definitions_output): Use it to define "id"
2959 and "has_id".
2960 Remove the definition of "tag_is_id".
2961 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
2962 "tag_is_id" were used to produce code.
2963 We still use "tag" for documentation.
2964
2ea7730c
AD
29652008-11-11 Akim Demaille <demaille@gostai.com>
2966
2967 Locations are no longer required by lalr1.cc.
2968 * data/lalr1.cc (_b4_args, b4_args): New.
2969 Adjust all uses of locations to make them optional.
2970 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
2971 (AT_CHECK_NAMESPACE): Check the use of locations.
2972 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
2973 without locations with lalr1.cc.
2974 Test these cases.
2975 * tests/output.at: Check lalr1.cc with and without location
2976 support.
2977 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
2978 Don't use locations.
2979
7ca2266a
AD
29802008-11-11 Akim Demaille <demaille@gostai.com>
2981
2982 AT_FULL_COMPILE.
2983 * tests/local.at (AT_FULL_COMPILE): New.
2984 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
2985
1a7a65f9
AD
29862008-11-11 Akim Demaille <demaille@gostai.com>
2987
2988 Support parens in calc++.
2989 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
2990 * examples/calc++/test (run): Check the expected output.
2991 Adjust callers.
2992 Check parens too.
2993
c944f7f2
AD
29942008-11-11 Akim Demaille <demaille@gostai.com>
2995
2996 Simplify lalr1.cc since %defines is mandatory.
2997 * data/lalr1.cc: Remove useless calls to b4_defines_if.
2998
dada3cd1
AD
29992008-11-11 Akim Demaille <demaille@gostai.com>
3000
3001 TODO: yyfmt.
3002 * TODO (yysyntax_error): New item.
3003
422c18f4
AD
30042008-11-11 Akim Demaille <demaille@gostai.com>
3005
3006 Prefer M4 to CPP.
3007 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
3008 YYERROR_VERBOSE.
3009
a0ffc175
AD
30102008-11-11 Akim Demaille <demaille@gostai.com>
3011
3012 Support i18n of the parse error messages.
3013 * TODO (lalr1.cc/I18n): Remove.
3014 * data/lalr1.cc (yysyntax_error_): Support the translation of the
3015 error messages, as done in yacc.c.
3016 Stay within the yy* pseudo namespace.
3017
00a8a083
AD
30182008-11-11 Akim Demaille <demaille@gostai.com>
3019
3020 More TODO.
3021 * TODO (single stack, yysyntax_error): New.
3022
09277875
AD
30232008-11-11 Akim Demaille <demaille@gostai.com>
3024
3025 Make it possible to return a symbol_type from yylex.
3026 * data/lalr1.cc (b4_lex_symbol_if): New.
3027 (parse): When lex_symbol is defined, expected yylex to return the
3028 complete lookahead.
3029 * etc/bench.pl.in (generate_grammar_list): Extend to support this
3030 yylex interface.
3031 (bench_variant_parser): Exercise it.
3032
64c1b92a
AD
30332008-11-11 Akim Demaille <demaille@gostai.com>
3034
3035 Remove useless bench case.
3036 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
3037 no longer used.
3038
2722aa42
AD
30392008-11-11 Akim Demaille <demaille@gostai.com>
3040
3041 Improve display of directives.
3042 * etc/bench.pl.in (parse_term): Don't add useless eol.
3043
918eb7c5
AD
30442008-11-11 Akim Demaille <demaille@gostai.com>
3045
3046 Use string_cast in the bench.
3047 * etc/bench.pl.in (generate_grammar_list): Define and use
3048 string_cast.
3049
39be9022
AD
30502008-11-11 Akim Demaille <demaille@gostai.com>
3051
3052 Replace yychar with a Boolean.
3053 * data/lalr1.cc (parse::yychar): Replace by...
3054 (parse::yyempty): this.
3055
a2e3fa77
AD
30562008-11-11 Akim Demaille <demaille@gostai.com>
3057
3058 Factor the tables.
3059 * TODO: New item.
3060
aba12ad1
AD
30612008-11-11 Akim Demaille <demaille@gostai.com>
3062
3063 Let yytranslate handle the eof case.
3064 * data/lalr1.cc (yytranslate_): Handle the EOF case.
3065 Adjust callers.
3066 No longer expect yychar to be equal to yyeof_, rather, test the
3067 lookahead's (translated) kind.
3068
27cb5b59
AD
30692008-11-11 Akim Demaille <demaille@gostai.com>
3070
3071 yychar cannot be empty in yyerrlab.
3072 * TODO (yychar == yyempty_): New.
3073 * data/lalr1.cc: Remove the handling of this case.
3074 This eases forthcoming changes related to yychar and yytranslate.
3075
fce629c0
AD
30762008-11-11 Akim Demaille <demaille@gostai.com>
3077
3078 Bench: syntactic sugar for %define/#define.
3079 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
3080 (&bench_push_parser, bench_variant_parser): Use this feature.
3081 (&eat): New.
3082 Use it.
3083
ce671960
AD
30842008-11-11 Akim Demaille <demaille@gostai.com>
3085
3086 Less memory pressure on the "list" bench.
3087 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
3088 the values, to limit memory pressure.
3089
2873fdf8
AD
30902008-11-11 Akim Demaille <demaille@gostai.com>
3091
3092 Introduce make_symbol.
b06df3c2
AD
3093 make_symbol provides a means to construct a full symbol (kind,
3094 value, location) in a single shot. It is meant to be a Symbol
3095 constructor, parameterized by the symbol kind so that overloading
3096 would prevent incorrect kind/value pairs. Unfortunately
3097 parameterized constructors do not work well in C++ (unless the
3098 parameter also appears as an argument, which is not acceptable),
3099 hence the use of a function instead of a constructor.
2df9ec37 3100
2873fdf8
AD
3101 * data/lalr1.cc (b4_symbol_constructor_declaration_)
3102 (b4_symbol_constructor_declarations)
3103 (b4_symbol_constructor_specialization_)
3104 (b4_symbol_constructor_specializations)
3105 (b4_symbol_constructor_definition_)
3106 (b4_symbol_constructor_definitions): New.
3107 Use them where appropriate to generate declaration, declaration of
3108 the specializations, and implementations of the templated
3109 overloaded function "make_symbol".
3110 (variant::variant): Always define a default ctor.
3111 Also provide a copy ctor.
3112 (symbol_base_type, symbol_type): New ctor overloads for value-less
3113 symbols.
3114 (symbol_type): Now public, so that functions such as yylex can use
3115 it.
3116
8be046d7
AD
31172008-11-11 Akim Demaille <demaille@gostai.com>
3118
3119 Inform m4 whether a tag is a valid id.
3120 * src/output.c (is_identifier): New.
3121 (symbol_definitions_output): Use it to define tag_is_id.
3122 But maybe this should be done at m4 level?
3123
de62edee
AD
31242008-11-11 Akim Demaille <demaille@gostai.com>
3125
3126 Test 214 was failing: it greps with a pattern containing [ ]*
3127 which obviously meant to catch spaces and tabs, but contained only
3128 spaces. Tabulations in sources are a nuisance, so to simplify the
3129 matter, get rid of all the tabulations in the Java sources. The
3130 other skeletons will be treated equally later.
3131
3132 * data/java.m4, data/lalr1.java: Untabify.
3133 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
3134 tabulations are no longer generated.
3135
905f0697
PB
31362008-11-11 Paolo Bonzini <bonzini@gnu.org>
3137
3138 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
3139 * configure.ac: Adjust usage.
3140 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3141 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3142 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
3143
09ccae9b
DJ
31442008-11-10 Di-an Jan <dianj@freeshell.org>
3145
3146 Workaround Java's ``code too large'' problem for parser tables
3147 in most cases, by using one function per initialization.
3148 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
3149 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
3150 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
3151 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
3152 (yytname_): Use b4_typed_parser_table.
3153 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
3154 ``code too large'' error.
3155
1979121c
DJ
31562008-11-10 Di-an Jan <dianj@freeshell.org>
3157
3158 * NEWS: Document them.
de62edee 3159
1979121c
DJ
3160 General Java skeleton improvements.
3161 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
3162 using gcj < 4.3 in the testsuite, according to comments in
3163 gnulib/m4/javacomp.m4.
3164 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
3165 location_type, position_type): Remove extraneous brackets from
3166 b4_percent_define_default.
3167 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
3168 m4_define and m4_define_default.
3169 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
3170 which marks the end of user code with appropriate syncline, like all
3171 the other skeletons.
3172 (b4_user_post_prologue): Add. Don't silently drop.
3173 (yylex): Remove.
3174 (parse): Inline yylex.
3175 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
3176 (%{...%}): Fix typo of %code imports.
3177 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
3178
3179 Support annotations on parser class with %define annotations.
3180 * data/lalr1.java (annotations): Add to parser class modifier.
3181 * doc/bison.texinfo (Java Parser Interface): Document
3182 %define annotations.
3183 (Java Declarations Summary): Document %define annotations.
3184 * tests/java.at (Java parser class modifiers): Test annotations.
3185
3186 Do not generate code for %error-verbose unless requested.
3187 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
3188 Make private. Make conditional on %error-verbose.
3189 (getErrorVerbose, setErrorVerbose): New.
3190 (yytnamerr_): Make conditional on %error-verbose.
3191 (yysyntax_error): Make some code conditional on %error-verbose.
3192 * doc/bison.texinfo (Java Bison Interface): Remove the parts
3193 about %error-verbose having no effect.
3194 (getErrorVerbose, setErrorVerbose): Document.
3195
3196 Move constants for token names to Lexer interface.
3197 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
3198 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
3199 (parse): Qualify EOF to Lexer.EOF.
3200 * doc/bison.texinfo (Java Parser Interface): Move documentation of
3201 EOF and token names to Java Lexer Interface.
3202 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
3203
3204 Make yyerror public.
3205 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
3206 (yyerror): Change to public. Add Javadoc comments. Use longer
3207 parameter names. Make the body rather than the declarator
3208 conditional on %locations.
3209 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
3210
3211 Allow user to add code to the constructor with %code init.
3212 * data/java.m4 (b4_init_throws): New, for %define init_throws.
3213 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
3214 Add %code init to the front of the constructor body.
3215 * doc/bison.texinfo (YYParser.YYParser): Document %code init
3216 and %define init_throws.
3217 (Java Declarations Summary): Document %code init and
3218 %define init_throws.
3219 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
3220 (Java constructor init and init_throws): Add tests.
de62edee 3221
42f832d6
AD
32222008-11-10 Akim Demaille <demaille@gostai.com>
3223
3224 Update TODO.
3225 * TODO (-D): is implemented.
3226 (associativity): Same precedence must have the same associativity.
3227 For instance, how can a * b / c be parsed if * is %left and / is
3228 %right?
3229 (YYERRORCODE, YYFAIL, YYBACKUP): New.
3230
247efe34
AD
32312008-11-10 Akim Demaille <demaille@gostai.com>
3232
3233 Formatting changes.
3234
5d731440
AD
32352008-11-10 Akim Demaille <demaille@gostai.com>
3236
3237 More information about the symbols.
3238 * src/output.c (type_names_output): Document all the symbols,
3239 including those that don't have a type-name.
3240 (symbol_definitions_output): Define "is_token" and
3241 "has_type_name".
3242 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
3243 type-name, now that they are defined too in b4_type_names.
3244
21db118b
AD
32452008-11-10 Akim Demaille <demaille@gostai.com>
3246
3247 Regen.
3248
6ed15cde
AD
32492008-11-10 Akim Demaille <demaille@gostai.com>
3250
3251 Make parser::yytranslate static.
b06df3c2
AD
3252 Small speedup (1%) on the list grammar. And makes yytranslate_
3253 available in non member functions.
de62edee 3254
6ed15cde
AD
3255 * data/lalr1.cc (yytranslate_): Does not need to be a instance
3256 function.
3257
30bb2edc
AD
32582008-11-10 Akim Demaille <demaille@gostai.com>
3259
3260 Avoid trailing spaces.
3261 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
3262 * data/lalr1.cc: Don't indent before rule and symbol actions, as
3263 they can be empty, and anyway this incorrectly indents the first
3264 action.
3265
b3a28fd4
AD
32662008-11-10 Akim Demaille <demaille@gostai.com>
3267
3268 Comment changes.
3269
914202bd
AD
32702008-11-10 Akim Demaille <demaille@gostai.com>
3271
3272 Use "enum" for integral constants.
3273 This is just nicer to read, I observed no speedup.
de62edee 3274
914202bd
AD
3275 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
3276 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
3277 (yyuser_token_number_max_, yyundef_token_): Move into...
3278 (yytranslate_): here.
3279
c17f9a4a
AD
32802008-11-10 Akim Demaille <demaille@gostai.com>
3281
3282 Shortcuts in bench directives.
3283 * etc/bench.pl.in (parse_dirs): New.
3284 Use it.
3285 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
3286 Create the benches in "benches/".
3287
b9855ea5
AD
32882008-11-10 Akim Demaille <demaille@gostai.com>
3289
3290 Formatting changes.
3291 * data/lalr1.cc: here.
3292
6e097787
AD
32932008-11-10 Akim Demaille <demaille@gostai.com>
3294
3295 Adjust verbose message to using emacs.
3296 * etc/bench.pl.in: Inform compilation-mode when we change the
3297 directory.
3298 (generate_grammar_list): Recognize %define "variant" in addition
3299 to %define variant.
3300
4c3cc7da
AD
33012008-11-10 Akim Demaille <demaille@gostai.com>
3302
3303 Classify symbols by type-name.
3304 * src/uniqstr.h (UNIQSTR_CMP): New.
3305 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
3306 (type_names_output): New.
3307 (muscles_output): Use it.
3308 * data/lalr1.cc (b4_symbol_action_): Remove.
3309 (b4_symbol_case_, b4_type_action_): New.
3310 Adjust uses of b4_symbol_action_ to use b4_type_action_.
3311
d69c9694
AD
33122008-11-10 Akim Demaille <demaille@gostai.com>
3313
3314 Change the handling of the symbols in the skeletons.
3315 Before we were using tables which lines were the symbols and which
3316 columns were things like number, tag, type-name etc. It is was
3317 difficult to extend: each time a column was added, all the numbers had
3318 to be updated (you asked for colon $2, not for "tag"). Also, it was
3319 hard to filter these tables when only a subset of the symbols (say the
3320 tokens, or the nterms, or the tokens that have and external number
3321 *and* a type-name) was of interest.
de62edee 3322
d69c9694
AD
3323 Now instead of monolithic tables, we define one macro per cell. For
3324 instance "b4_symbol(0, tag)" is a macro name which contents is
3325 self-decriptive. The macro "b4_symbol" provides easier access to
3326 these cells.
de62edee 3327
d69c9694
AD
3328 * src/output.c (type_names_output): Remove.
3329 (symbol_numbers_output, symbol_definitions_output): New.
3330 (muscles_output): Call them.
3331 (prepare_symbols): Define b4_symbols_number.
3332
5263bea9
AD
33332008-11-10 Akim Demaille <demaille@gostai.com>
3334
3335 --trace=muscles
3336 * src/getargs.h, src/getargs.c (trace_muscle): New.
3337 (trace_types, trace_args): Support it.
3338 * src/output.c (output_skeleton): Use it.
3339
4175f6bb
AD
33402008-11-10 Akim Demaille <demaille@gostai.com>
3341
3342 muscles_output.
3343 * src/output.c (muscles_output): New, extracted from...
3344 (output_skeleton): here.
3345 Adjust.
3346
1de69d6a
AD
33472008-11-10 Akim Demaille <demaille@gostai.com>
3348
3349 Formatting changes.
3350
36db78a7
AD
33512008-11-10 Akim Demaille <demaille@gostai.com>
3352
3353 Update the variant example.
3354 * examples/variant.yy: Formatting changes.
3355 One stage build.
3356
e5eb92e7
AD
33572008-11-10 Akim Demaille <demaille@gostai.com>
3358
3359 Support constructor with an argument.
3360 This improves the "list" bench by 2%.
de62edee 3361
e5eb92e7
AD
3362 * data/lalr1.cc (variant::build): Add an overloaded version with
3363 an argument.
3364 * tests/c++.at (AT_CHECK_VARIANT): Check it.
3365
76307410
AD
33662008-11-10 Akim Demaille <demaille@gostai.com>
3367
3368 Test variants.
3369 * tests/c++.at (AT_CHECK_VARIANTS): New.
3370 Use it with and without %define assert.
3371
d78f0ac9
AD
33722008-11-10 Akim Demaille <demaille@gostai.com>
3373
3374 Add %precedence support.
3375 Unfortunately it is not possible to reuse the %prec directive. This
3376 is because to please POSIX, we do not require to end the rules with a
3377 semicolon. As a result,
de62edee 3378
d78f0ac9 3379 foo: bar %prec baz
de62edee 3380
d78f0ac9
AD
3381 is ambiguous: either a rule which precedence is that of baz, or a rule,
3382 and then a declaration of the precedence of the token baz.
de62edee 3383
d78f0ac9
AD
3384 * doc/bison.texinfo: Document %precedence.
3385 (Precedence Only): New.
3386 * src/assoc.h, src/assoc.c (precedence_assoc): New.
3387 * src/conflicts.c (resolve_sr_conflict): Support it.
3388 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
3389 Parse it.
3390 * tests/calc.at: Use %precedence for NEG.
3391 * tests/conflicts.at (%precedence does not suffice)
3392 (%precedence suffices): New tests.
3393
c85be41a
AD
33942008-11-09 Akim Demaille <demaille@gostai.com>
3395
3396 Make benches in a sub dirs.
3397 * etc/bench.pl.in ($dir): New.
3398 Use it.
3399 Check the use of constructors with an argument.
3400 (bench_variant_parser): Fix.
3401
db65ca1f
AD
34022008-11-09 Akim Demaille <demaille@gostai.com>
3403
3404 fix eof condition
3405
9b0efa5b
AD
34062008-11-09 Akim Demaille <demaille@gostai.com>
3407
3408 Fix --help.
3409
432ac57a
AD
34102008-11-09 Akim Demaille <demaille@gostai.com>
3411
3412 Require the generation of parse-gram.output.
3413 * src/Makefile.am (YACC): Pass --report=all.
3414
deef2a0a
AD
34152008-11-09 Akim Demaille <demaille@gostai.com>
3416
3417 Formatting changes.
3418
df72984a
AD
34192008-11-09 Akim Demaille <demaille@gostai.com>
3420
3421 Update TODO.
3422 * TODO: Remove obsolete items.
3423 Update others.
3424
f10e19fd
AD
34252008-11-09 Akim Demaille <demaille@gostai.com>
3426
3427 Enhance bench.pl.
3428 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
3429 (@token, $grammar, $bench): New.
3430 (generate_grammar_variant): Rename as...
3431 (generate_grammar_list): this.
3432 (generate_grammar): Adjust.
3433 (bench_grammar): Rename as...
3434 (bench): this.
3435 Use it in the various bench-marking routines.
3436 (-b, -g): New options.
3437
5de9c593
AD
34382008-11-09 Akim Demaille <demaille@gostai.com>
3439
3440 Use a static hierarchy for symbols in the C++ parser.
3441 * data/lalr1.cc (symbol_base_type, symbol_type)
3442 (stack_symbol_type): Make it a static hierarchy.
3443 Adjust dependencies.
3444
757f8f98
AD
34452008-11-09 Akim Demaille <demaille@gostai.com>
3446
3447 bench.pl -d, --directive.
3448 * etc/bench.pl.in (@directive): New.
3449 (&bench_grammar): Use it.
3450 (&bench_list_grammar): New, to provide access to the "variant"
3451 grammar.
3452 Use it.
3453 (getopts): Support -d, --directive.
3454
d3be4f6d
AD
34552008-11-09 Akim Demaille <demaille@gostai.com>
3456
3457 Use inline for small operations.
3458 * data/lalr1.cc (symbol_base_type, symbol_type)
3459 (stack_symbol_type): Declare constructor and other operations as
3460 inline.
3461 (yy_destroy_): Inline.
3462
1f7d007b
AD
34632008-11-09 Akim Demaille <demaille@gostai.com>
3464
3465 Introduce a hierarchy for symbols.
3466 * data/lalr1.cc (symbol_base_type, symbol_type): New.
3467 (data_type): Rename as...
3468 (stack_symbol_type): this.
3469 Derive from symbol_base_type.
3470 (yy_symbol_value_print_): Merge into...
3471 (yy_symbol_print_): this.
3472 Rename as...
3473 (yy_print_): this.
3474 (yydestruct_): Rename as...
3475 (yy_destroy_): this.
3476 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
3477 (parser::parse): yyla is now of symbol_type.
3478 Use its type member instead of yytoken.
3479
bc0b0477
AD
34802008-11-09 Akim Demaille <demaille@gostai.com>
3481
3482 Rename data_type and stack_symbol_type.
3483 * data/lalr1.cc (data_type): Rename as...
3484 (stack_symbol_type): this.
3485
57295d14
AD
34862008-11-09 Akim Demaille <demaille@gostai.com>
3487
3488 Handle semantic value and location together.
3489 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
3490 yydata.value and yydata.location.
3491 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
3492 (YY_SYMBOL_PRINT): Now take semantic value and location as a
3493 single arg.
3494 Adjust all callers.
3495 (yydestruct_): New overload for a stack symbol.
3496
e9b0834e
AD
34972008-11-09 Akim Demaille <demaille@gostai.com>
3498
3499 Push a complete symbol, not connected parts.
3500 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
3501 state, value and location.
3502 Adjust callers.
3503
6082531a
AD
35042008-11-09 Akim Demaille <demaille@gostai.com>
3505
3506 Agregate yylval and yylloc.
3507 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
3508 (parser::yyla): this.
3509
33c195cc
AD
35102008-11-09 Akim Demaille <demaille@gostai.com>
3511
3512 Rely on the state stack to display reduction traces.
b06df3c2
AD
3513 To display rhs symbols before a reduction, we used information
3514 about the rule reduced, which required the tables yyrhs and
3515 yyprhs. Now use rely only on the state stack to get the same
3516 information.
de62edee 3517
33c195cc
AD
3518 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
3519 Use them.
3520 (parser::yyrhs_, parser::yyprhs_): Remove.
3521 (parser::yy_reduce_print_): Use the state stack.
3522
e1f93869
AD
35232008-11-09 Akim Demaille <demaille@gostai.com>
3524
3525 Fuse yyval and yyloc into yylhs.
3526 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
3527 yylhs.
3528 (parse): Replace yyval and yyloc with yylhs.value and
3529 yylhs.location.
3530 After a user action, compute yylhs.state earlier.
3531 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
3532 fresh error_token.
3533
2935744b
DJ
35342008-11-09 Di-an Jan <dianj@freeshell.org>
3535
3536 Remove unused variable.
3537 * src/output.c (type_names_output): Remove unused variable sep.
3538
bbf9ca37
PB
35392008-11-09 Paolo Bonzini <bonzini@gnu.org>
3540
3541 Change tests/output.at quoting.
3542 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
3543 expanding arguments.
3544
d9a9b96b
JD
35452008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3546
3547 Don't add a semicolon to actions for %skeleton or %language.
3548 It breaks Java test cases as reported by Akim Demaille.
3549 * src/scan-code.l: Implement.
3550
51365192
JD
35512008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3552
3553 Clean up %skeleton and %language priority implementation.
3554 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
3555 remove static qualifier because others will soon need to see it.
3556 (language_prio): Likewise.
3557 (getargs): Use command_line_prio rather than 0.
3558 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
3559 enum fields.
3560 (skeleton_prio): Extern it.
3561 (language_prio): Extern it.
3562 * src/parse-gram.y: Use grammar_prio rather than 1.
3563
9380cfd0
AD
35642008-11-07 Akim Demaille <demaille@gostai.com>
3565
3566 Moving push traces into yypush_.
3567 * data/lalr1.cc (yypush_): Now takes a optional trace message.
3568 Adjust all uses.
3569
8901f32e
AD
35702008-11-07 Akim Demaille <demaille@gostai.com>
3571
3572 The single-stack C++ parser is now the standard one.
3573 * data/lalr1.cc: Rename as...
3574 * data/lalr1-split.cc: this.
3575 * data/lalr1-fusion.cc: Rename as...
3576 * data/lalr1.cc: this.
3577 * etc/bench.pl.in: Adjust.
3578
8cdabf02
AD
35792008-11-07 Akim Demaille <demaille@gostai.com>
3580
3581 Avoid empty-if warnings.
3582 Reported by Quentin Hocquet.
de62edee 3583
8cdabf02
AD
3584 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
3585 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
3586
5a893c2b
AD
35872008-11-07 Akim Demaille <demaille@gostai.com>
3588
3589 Pass command line location to skeleton_arg and language_argmatch.
3590 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
3591 The location argument is now mandatory.
3592 Adjust all dependencies.
3593 (getargs): Use command_line_location.
3594
58697c6d
AD
35952008-11-07 Akim Demaille <demaille@gostai.com>
3596
3597 -D, --define.
3598 * src/getargs.c (usage): Document -D.
3599 Fix help string for --locations.
3600 (command_line_location): New.
3601 (short_options, long_options, getargs): Support -D, --define.
3602 (getargs): Move -d support at the right place.
3603 * doc/bison.texinfo (Bison Options): Update.
3604 * tests/input.at (%define, --define): New.
3605
9fe5a457
AD
36062008-11-07 Akim Demaille <demaille@gostai.com>
3607
3608 Initialize the muscle table before parsing the command line.
3609 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
3610 (getargs): Define file_name.
3611 * src/main.c (main): Initialize muscle_tab before calling
3612 getargs.
3613 * src/muscle_tab.c (muscle_init): No longer define file_name, as
3614 its value is not available yet.
3615
56c5eca9
AD
36162008-11-07 Akim Demaille <demaille@gostai.com>
3617
3618 Locations without columns for command line arguments.
3619 * src/location.c (location_print): Don't display negative columns.
3620 * src/location.h: Document this.
3621
9b9e0a7d
AD
36222008-11-07 Akim Demaille <demaille@gostai.com>
3623
3624 Fix --help.
3625 * src/getargs.c (usage): Fix help string for -W.
3626
74eae918
AD
36272008-11-07 Akim Demaille <demaille@gostai.com>
3628
3629 Handle more general types of option arguments.
3630 * build-aux/cross-options.pl: The argument ends at the first
3631 space, not the first non-symbol character.
3632 Use @var for each word appearing the argument description.
3633
a3d4c6fb
AD
36342008-11-07 Akim Demaille <demaille@gostai.com>
3635
3636 Destroy the variants that remain on the stack in case of error.
3637 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
3638 destructor.
3639 Display the value only if yymsg is nonnull.
3640 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
3641
2d32fc9f
AD
36422008-11-07 Akim Demaille <demaille@gostai.com>
3643
3644 Add "%define assert" to variants.
3645 This is used to help the user catch cases where some value gets
3646 ovewritten by a new one. This should not happen, as this will
3647 probably leak.
de62edee 3648
2d32fc9f
AD
3649 Unfortunately this uncovered a bug in the C++ parser itself: the
3650 lookahead value was not destroyed between two calls to yylex. For
3651 instance if the previous lookahead was a std::string, and then an int,
3652 then the value of the std::string was correctly taken (i.e., the
3653 lookahead was now an empty string), but std::string structure itself
3654 was not reclaimed.
de62edee 3655
2d32fc9f
AD
3656 This is now done in variant::build(other&) (which is used to take the
3657 value of the lookahead): other is not only stolen from its value, it
3658 is also destroyed. This incurs a new performance penalty of a few
3659 percent, and union becomes faster again.
de62edee 3660
2d32fc9f
AD
3661 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
3662 (b4_variant_if): New.
3663 (variant::built): New.
3664 Use it whereever the status of the variant changes.
3665 * etc/bench.pl.in: Check the penalty of %define assert.
3666
f6038cb8
AD
36672008-11-07 Akim Demaille <demaille@gostai.com>
3668
3669 Use "%define variant" in bench.pl.
3670 * etc/bench.pl.in: No longer use the pseudo directive %variants,
3671 just use %define variants.
3672
ccde1f98
AD
36732008-11-07 Akim Demaille <demaille@gostai.com>
3674
3675 Regen.
3676 * src/parse-gram.h, src/parse-gram.c: Regen.
3677
58bd33b7
JD
36782008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
3679
3680 Fix user actions without a trailing semicolon.
3681 Reported by Sergei Steshenko at
3682 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
3683 * THANKS (Sergei Steshenko): Add.
3684 * src/scan-code.l (SC_RULE_ACTION): Fix it.
3685 * tests/regression.at (Fix user actions without a trailing semicolon):
3686 New test case.
3687
639867b5
AD
36882008-11-04 Akim Demaille <demaille@gostai.com>
3689
3690 Use b4_copyright_years.
3691 * data/yacc.c (b4_copyright_years): New.
3692 Fix its value according to the comments in the file.
3693 Use it and undefine it.
3694
3c262606
AD
36952008-11-04 Akim Demaille <demaille@gostai.com>
3696
3697 Formatting changes.
3698 * data/lalr1-fusion.cc, src/parse-gram.y: here.
3699
a2b93d52
AD
37002008-11-04 Akim Demaille <demaille@gostai.com>
3701
3702 Formatting changes.
3703 * data/lalr1-fusion.cc: here.
3704
3a2803df
AD
37052008-11-04 Akim Demaille <demaille@gostai.com>
3706
3707 Use strict on bench.pl.
3708 * etc/bench.pl.in (&run, &generate_grammar): New.
3709 Rename the grammar generating functions for consistency.
3710 Change the interface so that the list of benches to run is passed
3711 as (optionless) arguments.
3712 (&compile): Use &run.
3713
a0d4650a
AD
37142008-11-04 Akim Demaille <demaille@gostai.com>
3715
3716 Remove spurious initial empty lines.
3717 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
3718 * data/yacc.c: End the @output lines with an @.
3719
cac9e09b
AD
37202008-11-04 Akim Demaille <demaille@gostai.com>
3721
3722 Improve the display of sizes.
3723 * etc/bench.p.in: Higher precision.
3724 Sort by decreasing size.
3725
4af4348a
AD
37262008-11-04 Akim Demaille <demaille@gostai.com>
3727
3728 Don't memcpy C++ structures.
3729 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
3730 arguments.
3731 (variant::build): New overload for
3732 copy-construction-that-destroys.
3733 (variant::swap): New.
3734 (parser::yypush_): Use it in variant mode.
3735
ef05c4d6
AD
37362008-11-04 Akim Demaille <demaille@gostai.com>
3737
3738 Better defaults for bench.pl.
3739 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
3740 default values.
3741 Adjust &verbose uses.
3742 (-q, --quiet): New.
3743
9718cfa9
AD
37442008-11-04 Akim Demaille <demaille@gostai.com>
3745
3746 Make variant.yy more complex.
3747 std::list cannot be copied via memcpy, they are more demanding than
3748 std::string. Use one std::list to strengthen the test.
de62edee 3749
9718cfa9
AD
3750 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
3751 Adjust.
3752 Create a list of strings, instead of a single large string.
3753
a6df593d
AD
37542008-11-04 Akim Demaille <demaille@gostai.com>
3755
3756 bench.pl --bench.
3757 * etc/bench.pl.in (--bench, $bench): New.
3758
006a0303
AD
37592008-11-04 Akim Demaille <demaille@gostai.com>
3760
3761 Sort methods.
3762 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
3763 Define it after as().
3764
faef3466
AD
37652008-11-04 Akim Demaille <demaille@gostai.com>
3766
3767 Useless parens.
3768 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
3769
2141aded
AD
37702008-11-04 Akim Demaille <demaille@gostai.com>
3771
3772 Issue missing synclines after user actions.
3773 * data/c.m4 (b4_case): Issue synclines on the output file.
3774
e426d17b
AD
37752008-11-04 Akim Demaille <demaille@gostai.com>
3776
3777 Remove trailing empty line.
3778 * data/lalr1-fusion.cc: Don't add an empty line after the user's
3779 epilogue.
3780
a9ce3f54
AD
37812008-11-04 Akim Demaille <demaille@gostai.com>
3782
3783 Fix output of copyright years.
3784 * data/bison.m4 (b4_copyright): Fix the indentation of the
3785 copyright year paragraph.
3786 Use b4_copyright_years when no years are given.
3787 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
3788 (b4_copyright_years): New.
3789 Use it.
3790
59c544c2
AD
37912008-11-04 Akim Demaille <demaille@gostai.com>
3792
3793 Avoid the spurious initial empty line.
3794 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
3795 the end of @output request to suppress the empty line that
3796 results.
3797
96b15448
AD
37982008-11-04 Akim Demaille <demaille@gostai.com>
3799
3800 Remove parser::rhs_number_type.
3801 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
3802 (yyrhs_): Use b4_table_define.
3803
f0633174
AD
38042008-11-04 Akim Demaille <demaille@gostai.com>
3805
3806 Fix iteration type.
3807 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
3808
417b8004
AD
38092008-11-04 Akim Demaille <demaille@gostai.com>
3810
3811 Factor the declaration of the integer tables.
3812 * data/lalr1-fusion.cc (b4_table_define): New.
3813 Use it.
3814
1a5246c6
AD
38152008-11-03 Akim Demaille <demaille@gostai.com>
3816
3817 Fix indentation of tables in lalr1.cc
3818 * data/lalr1-fusion.cc: Fix the indentation.
3819
f8a95c9c
AD
38202008-11-03 Akim Demaille <demaille@gostai.com>
3821
3822 Destroy the lhs symbols after reduction.
3823 * data/lalr1-fusion.cc (parse): After the user action, when in
3824 variant mode, destroy the lhs symbols.
3825
d7f4d823
AD
38262008-11-03 Akim Demaille <demaille@gostai.com>
3827
3828 Simplify yysyntax_error_ use.
3829 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
3830 type, but make it unnamed in the declaration when it is not used.
3831
8b9c89fb
AD
38322008-11-03 Akim Demaille <demaille@gostai.com>
3833
3834 Let yy::variant::build return an lvalue.
3835 * data/lalr1-fusion.cc (variant::build): Return a reference to the
3836 object.
3837
83243c24
AD
38382008-11-03 Akim Demaille <demaille@gostai.com>
3839
3840 Define yy::variant only when needed.
3841 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
3842 used.
3843
429b4848
AD
38442008-11-03 Akim Demaille <demaille@gostai.com>
3845
3846 Bench the three-stack lalr1.cc.
3847 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
3848 one-stack one.
3849
414c76a4
AD
38502008-11-03 Akim Demaille <demaille@gostai.com>
3851
3852 Fail on parse error in calc++.
3853 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
3854 status.
3855 * examples/calc++/test ($me, $number, $exit, run): New.
3856 Use them to propagate errors to the exit status.
3857
8a5783fd
AD
38582008-11-03 Akim Demaille <demaille@gostai.com>
3859
3860 Don't specify the skeleton twice in the example.
3861 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
3862 file does what is needed.
3863
0cc5bead
AD
38642008-11-03 Akim Demaille <demaille@gostai.com>
3865
3866 bench: Improve output.
3867 * etc/bench.pl.in (bench_grammar): Tune the printf format.
3868
5b421a4e
AD
38692008-11-03 Akim Demaille <demaille@gostai.com>
3870
3871 bench: check impact of %debug on variants.
3872 * etc/bench.pl.in (variant_grammar): Fix the computation of
3873 $variant.
3874 Generate a grammar file that can work with or without %debug.
3875 Do use the @directive.
3876 (bench_variant_parser): Check impact of %debug.
3877 (@directives): Rename all the occurrences to...
3878 (@directive): this, for consistency.
3879
d11ee647
AD
38802008-11-03 Akim Demaille <demaille@gostai.com>
3881
3882 bench: report the size too.
3883 * etc/bench.pl.in ($iterations): Defaults to -3.
3884 (&bench_grammar): Require hireswallclock.
3885 Compute and display the size of the result.
3886 More comments.
3887
e1b74b92
AD
38882008-11-03 Akim Demaille <demaille@gostai.com>
3889
3890 bench: More use of the verbosity level.
3891 * etc/bench.pl.in ($verbose, &verbose): New.
3892 Use them.
3893 More POD documentation.
3894
7e5f9c54
AD
38952008-11-03 Akim Demaille <demaille@gostai.com>
3896
3897 bench.pl: a command line interface
3898 * etc/bench.pl.in: More doc.
3899 Some fixes in the documentation.
3900 ($cflags, $iterations, &help, &getopt): New.
3901 Use them.
3902 (&variant_grammar): Let the number of stages be 10 times what is
3903 specified.
3904
7109a18d
AD
39052008-11-03 Akim Demaille <demaille@gostai.com>
3906
3907 Bench the use of Boost.Variants.
3908 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
3909 New.
3910 (&compile): Be ready to compile C++ parsers.
3911 (&bench_push_parser): Move debug information to the outermost
3912 level.
3913 * THANKS: Add Michiel De Wilde.
3914
922730fe
AD
39152008-11-03 Akim Demaille <demaille@gostai.com>
3916
3917 bench.pl: Pass directives as a list instead of as a string.
3918 * etc/bench.pl.in (&directives): New.
3919 (&triangular_grammar, &calc_grammar): Use it to format the Bison
3920 directives.
3921 (&triangular_grammar): Do use the directives (were ignored).
3922 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
3923 directives.
3924
7484f1d4
AD
39252008-11-03 Akim Demaille <demaille@gostai.com>
3926
3927 Improve genericity of bench.pl.
3928 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
3929 argument.
3930 (&bench_push_parser): New.
3931 Call it.
3932
15129f25
AD
39332008-11-03 Akim Demaille <demaille@gostai.com>
3934
3935 Add documentation to bench.pl.
3936 * etc/bench.pl.in: Comment changes.
3937
0e0ed236
AD
39382008-11-03 Akim Demaille <demaille@gostai.com>
3939
3940 Fuse the three stacks into a single one.
de62edee 3941
b06df3c2
AD
3942 In order to make it easy to perform benchmarks to ensure that
3943 there are no performance loss, lalr1.cc is forked into
3944 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
3945 lalr1.cc.
3946
3947 Meanwhile, to make sure that lalr1-fusion.cc is correctly
3948 exercized by the test suite, the user must install a symbolic link
3949 from lalr1.cc to it.
de62edee 3950
b06df3c2
AD
3951 Instead of having three stacks (state, value, location), use a
3952 stack of triples. This considerably simplifies the code (and it
3953 will be easier not to require locations as currently does the C++
3954 parser), and also gives a 10% speedup according to
3955 etc/bench (probably mainly since memory allocation is done once
3956 instead of three times).
de62edee 3957
0e0ed236
AD
3958 Another motivation is to make it easier to destruct properly
3959 semantic values: now that they are bound to their state (hence
3960 symbol type) it will be easier to call the appropriate destructor.
de62edee 3961
0e0ed236 3962 These changes should probably benefit the C parser too.
de62edee 3963
b06df3c2
AD
3964 * data/lalr1.cc: Copy as...
3965 * data/lalr1-fusion.cc: this new file.
0e0ed236
AD
3966 (b4_rhs_value, b4_rhs_location): New definitions overriding those
3967 from c++.m4.
3968 (state_stack_type, semantic_stack_type, location_stack_type)
3969 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
3970 (data_type, stack_type, yystack_): New.
3971 (YYLLOC_DEFAULT, yypush_): Adjust.
3972 (yyerror_range): Now based on data_type, not location_type.
3973
7dedf26e
AD
39742008-11-03 Akim Demaille <demaille@gostai.com>
3975
3976 Push the state, value, and location at the same time.
3977 This is needed to prepare a forthcoming patch that fuses the three
3978 stacks into one.
de62edee 3979
7dedf26e
AD
3980 * data/lalr1.cc (parser::yypush_): New.
3981 (parser::yynewstate): Change the semantics: instead of arriving to
3982 this label when value and location have been pushed, but yystate
3983 is to be pushed on the state stack, now the three of them must
3984 have been pushed before. yystate still must be the new state.
3985 This allows to use yypush_ everywhere instead of individual
3986 handling of the stacks.
3987
c4585f1e
AD
39882008-11-03 Akim Demaille <demaille@gostai.com>
3989
3990 Prefer references to pointers.
3991 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
3992 definition to use references instead of pointers.
3993 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
3994 Take the value and location as references.
3995 Adjust callers.
3996
56017c17
AD
39972008-11-03 Akim Demaille <demaille@gostai.com>
3998
3999 stack::size instead of stack::height.
4000 * data/lalr1.cc (stack::height): Rename as...
4001 (stack::size): this.
4002 Fix the output type.
4003 Comment changes.
4004
5ab8c47b
AD
40052008-11-03 Akim Demaille <demaille@gostai.com>
4006
4007 Use variants to support objects as semantic values.
b06df3c2
AD
4008 This patch was inspired by work by Michiel De Wilde. But he used
4009 Boost variants which (i) requires Boost on the user side, (ii) is
4010 slow, and (iii) has useless overhead (the parser knows the type of
4011 the semantic value there is no reason to duplicate this
4012 information as Boost.Variants do).
4013
4014 This implementation reserves a buffer large enough to store the
4015 largest objects. yy::variant implements this buffer. It was
4016 implemented with Quentin Hocquet.
de62edee 4017
5ab8c47b
AD
4018 * src/output.c (type_names_output): New.
4019 (output_skeleton): Invoke it.
4020 * data/c++.m4 (b4_variant_if): New.
4021 (b4_symbol_value): If needed, provide a definition for variants.
4022 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
4023 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
4024 (b4_char_sizeof, yy::variant): New.
4025 (parser::parse): If variants are requested, define
4026 parser::union_type, parser::variant, change the definition of
4027 semantic_type, construct $$ before running the user action instead
4028 of performing a default $$ = $1.
4029 * examples/variant.yy: New.
4030 Based on an example by Michiel De Wilde.
4031
1fa5d8bb
AD
40322008-11-03 Akim Demaille <demaille@gostai.com>
4033
4034 Parameterize the extraction of semantic values.
4035 To make future changes easier, no longer rely on ".TYPE" being the
4036 way to get a semantic value.
de62edee 4037
1fa5d8bb
AD
4038 * data/c.m4 (b4_symbol_value): New.
4039 Use it.
4040 * data/c++.m4, data/yacc.c: Use it.
4041 * data/glr.c: Use b4_symbol_value.
4042 (b4_rhs_data): New.
4043 Use it.
4044
91ba8a55
AD
40452008-11-03 Akim Demaille <demaille@gostai.com>
4046
4047 Prepare easier M4 changes.
4048 * data/lalr1.cc: Use escaped [] instead of literals to prepare
4049 future changes.
4050
c9ba9e59
JD
40512008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4052
4053 Initiate further development.
4054 * NEWS: Create an empty section for new entries.
4055 * gnulib: Update submodule to HEAD.
4056
bfb40910
JD
40572008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4058
4059 * NEWS: Version 2.4.
4060
241fda7a
JD
40612008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4062
4063 Prepare for next release.
4064 * NEWS: Briefly mention changes since 2.3b.
4065 * README: Say GNU m4 1.4.6, which we've been requiring in release
4066 announcements already, not 1.4.3, which breaks the build.
4067
ed4d67dc
JD
40682008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4069
4070 Say %language is experimental.
4071 We're thinking of extending it's effect on output file naming. See the
4072 thread at
4073 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
4074 * NEWS: Say it's experimental.
4075 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
4076 recommend it over %skeleton for now.
4077 (Bison Options): Likewise.
4078 (C++ Bison Interface): Use %skeleton not %language.
4079 (Calc++ Parser): Use %skeleton not %language.
4080 * src/getargs.c (usage): Say it's experimental.
4081
e254a580
DJ
40822008-11-01 Di-an Jan <dianj@freeshell.org>
4083 Paolo Bonzini <bonzini@gnu.org>
4084
4085 Support all Java parser class modifiers.
4086 * data/java.m4 (b4_percent_define_get3): New.
4087 (b4_final_if, b4_strictfp_if): New.
4088 * data/lalr1.java (final, strictfp, extends, implements): Support.
4089 * doc/bison.texinfo (final, strictfp, extends, implements): Add
4090 documentation.
4091 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
4092 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
4093 (AT_CHECK_JAVA_GREP): New.
4094 (Java parser class modifiers): New test.
4095 (Java parser class extends and implements): New test.
4096
4097 Model exception propagation better with throws and lex_throws.
4098 * data/java.m4 (b4_list2): New.
4099 (throws): Change default.
4100 * data/lalr1.java (yyaction): Add throws.
4101 (parse): Add lex_throws in addition to throws.
4102 * doc/bison.texinfo (throws, lex_throws): Add documentation.
4103 * tests/java.at (Java throws specifications): New test.
4104
4105 Improve documentation for Java parsers.
4106 * doc/bison.texinfo (Java Parsers): Add subsections.
4107 Don't quote first argument of %define.
4108 (Java Bison Interface): Document output files. Move documentation
4109 of parser class and merge into Java Parser Interface. Document
4110 features that error out. Document directives with no effect.
4111 Move note about Javadoc higher.
4112 (Java Semantic Values): Explicitly mention stype.
4113 Document that generic types cannot be used.
4114 (Java Location Values): Use @deftypeivar. Document constructors.
4115 Correct return value for toString.
4116 (Java Parser Interface): List undocumented constants/fields.
4117 Move documentation of fields added by %parse-param closer to list
4118 of members. Document that token names are added as fields.
4119 Document constructors accurately. Remove error method.
4120 (Java Scanner Interface): Move note on %pure-parser to Java Bison
4121 Interface. Describe %code lexer and yylex accutately.
4122 Remove documentation that does not match the code.
4123 (Java Action Features): New.
4124 (Java Differences): Add reference. Add item on semantic values.
4125 Add note about @{ ... @}. Clarify %% epilogue placement.
4126 (Java Declarations Summary): New.
4127
4128 Fix Java skeleton.
4129 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
4130 (b4_remove_comma): Quote test argument.
4131 (b4_identification): Remove "bison" field.
4132 * tests/java.at (Java parser class and package names): New test.
4133 (Java %parse-param and %lex-param): New test.
4134 (Java stype, position_class and location_class): New test.
4135
f259e4e6
PB
41362008-10-31 Di-an Jan <dianj@freeshell.org>
4137
4138 * data/lalr1.jave: Update copyright years.
4139 (YYParser): Correct name of "generated from" file in Javadoc:
4140 use b4_file_name instead of @ofile@.
4141 (Location constructor): Correct Javadoc parameter name.
4142 (yylloc): Add missing opening m4 quote after b4_location_if.
4143 This removes a stray [ in the Javadoc of Lexer.getStartPos.
4144 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
4145 (YYParser constructor): Correct Javadoc parameter name.
4146
cae5057f
JD
41472008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
4148
4149 Always put auxiliary code files in the same dir as other output files.
4150 * src/files.c (compute_file_name_parts): When the user specifies
4151 --output but not --file-prefix, extract the directory prefix from the
4152 file prefix not from the grammar file name. This affects the location
4153 of files like location.hh generated by the C++ skeleton. The includes
4154 in the other output files require this fix.
4155 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
4156 for expected output files.
4157 (Output files): Add a test for the above.
4158
4af432ba
JD
41592008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
4160
4161 * gnulib: Update submodule to HEAD.
4162
e26d4e43
JD
41632008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4164
4165 Update copyright year.
4166 * src/files.c: Here.
4167
c0ee9e21
DJ
41682008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
4169
4170 Don't overwrite the input file.
4171 * src/files.c (output_file_name_check): Fatal error if using input file
4172 for output.
4173 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
4174 argument.
4175 (Conflicting output files): Add test.
4176
482dc52f
AD
41772008-10-28 Akim Demaille <demaille@gostai.com>
4178
4179 Space changes.
4180 * data/lalr1.cc: Formatting changes.
4181
52cbbe84
AD
41822008-10-28 Akim Demaille <demaille@gostai.com>
4183
4184 Don't define debugging functions when !YYDEBUG.
4185 * data/lalr1.cc (debug_stream, set_debug_stream)
4186 (debug_level_type, debug_level, set_debug_level): Don't
4187 declare them when YYDEBUG is not defined.
4188 The implementation are already YYDEBUG-aware.
4189
0925d5bf
AD
41902008-10-28 Akim Demaille <demaille@gostai.com>
4191
4192 Prefer "continue" for empty loop bodies.
4193 * etc/bench.pl.in: Use "continue" instead of {}.
4194
cf98343c
AD
41952008-10-28 Akim Demaille <demaille@gostai.com>
4196
4197 Space and comments changes.
4198 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
4199 * data/c.m4, data/lalr1.cc: Space changes.
4200
9f467b7d
AD
42012008-10-28 Akim Demaille <demaille@gostai.com>
4202
4203 Make gnulib a submodule.
4204 * gnulib: New.
4205 * .gitmodules (gnulib): New.
4206
0f0e1ace
JD
42072008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4208
4209 Fix yyerror_range for user-defined location type in C++. Reported by
4210 Georg Sauthoff at
4211 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
4212 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
4213 * THANKS (Georg Sauthoff): Add.
4214
548e2104
JD
42152008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
4216
4217 Update several administrative files mainly to facilitate releasing.
4218 * HACKING (Administrivia): Make the git-merge-changelog notes more
4219 helpful.
4220 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
4221 (Release Procedure): Update for git and add numerous details that were
4222 previously missing.
4223 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
4224 * maint.mk (announcement): Don't list bison as a bootstrap tool so
4225 that announcements don't claim we bootstrapped with whatever bison
4226 happened to be in PATH. Add flex as a bootstrap tool.
4227 * Makefile.maint: Remove, previously replaced by maint.mk.
4228 * Makefile.cfg: Remove, and migrate settings to...
4229 * cfg.mk: ... here for the sake of `make announcement'.
4230 * bootstrap.conf (gnulib_modules): Add announce-gen.
4231 * README: Say GNU Bison instead of just Bison. Suggested by Karl
4232 Berry.
4233
ddf17a6e
PB
42342008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
4235
4236 Small but important bugfixes for the Java skeleton.
4237 * data/lalr1.java (yyerror): Change Location to b4_location_type.
4238 (yy_symbol_print): Call toString on yyvaluep.
4239
e1145ad8
AD
42402008-08-29 Akim Demaille <demaille@gostai.com>
4241
4242 Clarify UPDATED use.
215b40ac 4243 * doc/bison.texinfo: It refers to the last edition of this file,
e1145ad8 4244 not to the release date of Bison.
215b40ac 4245 Reported by Joel E. Denny.
e1145ad8 4246
0df72d78
AD
42472008-08-29 Akim Demaille <demaille@gostai.com>
4248
4249 * README: Update FAQ pointer.
4250 Reported by Joel E. Denny.
4251
9a90b6bb
EB
42522008-08-27 Eric Blake <ebb9@byu.net>
4253
4254 Resync m4sugar from autoconf.
4255 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
4256 (m4_init): Adjust to latest m4.git changes.
4257 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
4258 effects.
4259 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
4260 (_m4_list_cmp): Reduce side effects.
4261
65015668
AD
42622008-08-27 Akim Demaille <demaille@gostai.com>
4263
4264 Check yyerrok in calc.at.
215b40ac
EB
4265 * tests/calc.at (calc.y): Use yyerrok on "( error )".
4266 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
4267 expected.
65015668 4268
98e26a92
AD
42692008-08-27 Akim Demaille <demaille@gostai.com>
4270
4271 Support yyerrok in lalr1.cc.
4272 YYBACKUP is still to import back into lalr1.cc.
215b40ac 4273 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
98e26a92 4274
86c0e784
JD
42752008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4276
4277 For maintainer-check*, don't recompile for a $(VERSION) update.
4278 * cfg.mk: New file.
4279 (_is-dist-target): Override the one in GNUmakefile.
4280 * Makefile.am (EXTRA_DIST): Add cfg.mk.
4281
88511166
JD
42822008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
4283
4284 Update for recent change to gnulib.
4285 * src/parse-gram.y: Don't include strverscmp.h. It comes from
4286 string.h now.
4287
6bbb2ed5
EB
42882008-08-15 Eric Blake <ebb9@byu.net>
4289
d67c52e8
EB
4290 Remaining m4sugar merge from autoconf.
4291 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
4292 * data/m4sugar/foreach.m4: New file, copied from autoconf.
4293 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
4294 * src/output.c (output_skeleton): Tell m4 how to find it.
4295
6bbb2ed5
EB
4296 Partial m4sugar merge from autoconf: m4_map.
4297 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
4298 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
4299 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
4300 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
4301 for empty list.
4302 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
4303 Likewise.
4304 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
4305 declares it.
4306
8dce3875
JD
43072008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
4308
4309 Keep .version and PACKAGE_VERSION in sync.
4310 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
4311 dependency, and add comments justifying this in more detail. Discussed
4312 starting at
4313 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
4314
882a1fbf
EB
43152008-08-06 Eric Blake <ebb9@byu.net>
4316
a3764451
EB
4317 Partial m4sugar merge from autoconf: m4_shiftn.
4318 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
4319 (m4_shift2, m4_shift3): New macros.
4320 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
4321 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
4322 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
4323 * data/java.m4 (b4_remove_comma): Likewise.
4324
882a1fbf
EB
4325 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
4326 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
4327 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
4328 (m4_init): Consolidate wrapped text into single m4_wrap.
4329 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
4330 in wrapped text.
4331
a30e920d
EB
43322008-08-05 Eric Blake <ebb9@byu.net>
4333
dfcc5959
EB
4334 Partial m4sugar merge from autoconf: builtins, version.m4.
4335 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
4336 (m4_prepend): Remove, as it is unused and inherently quadratic,
4337 whereas m4_append is linear in newer m4.
4338 (m4_mkstemp): New builtin.
4339 (m4_symbols): Make rename conditional.
4340 (m4_version_prereq): Ensure fatal error if used in bison, which
4341 intentionally lacks version.m4.
4342
a30e920d
EB
4343 Fix comments in m4sugar.
4344 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
4345
445b7470
JD
43462008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4347
4348 Update for recent .gitignore fix in Gnulib.
4349 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
4350 anchored .gitignore entries.
4351
a1e50014
JD
43522008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
4353
4354 Set gnu or gnits strictness.
4355 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
4356 development and gnits strictness for releases. Based on Eric Blake's
4357 suggestion at
4358 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
4359
d43f77e7
PB
43602008-07-31 Paolo Bonzini <bonzini@gnu.org>
4361
4362 * NEWS: Clarify documentation of %language.
4363
fee2ed87
PB
43642008-07-31 Paolo Bonzini <bonzini@gnu.org>
4365
4366 Support usage of git-merge-changelog.
4367 * .gitattributes: New.
4368 * HACKING: Document usage of git-merge-changelog.
4369 * bootstrap: Install git-merge-changelog entries in .git/config
4370 if appropriate.
4371
78029cd5
JD
43722008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4373
4374 Remove remaining dependence on CVS Id keyword.
4375 * ChangeLog: For the sake of people still using CVS, don't use dollars
4376 when mentioning Id.
4377 * data/xslt/bison.xsl: Remove Id from header comments, where it was
4378 unusual anyway.
4379 * data/xslt/xml2dot.xsl: Likewise.
4380 * data/xslt/xml2text.xsl: Likewise.
4381 * data/xslt/xml2xhtml.xsl: Likewise.
4382 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
4383 * doc/Makefile.am (neutralize): Remove, no longer needed.
4384 (.x.1): Don't use neutralize.
4385 (edit): Don't substitute for ID.
4386 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
4387
c53d18b1
JD
43882008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4389
4390 Fix dependence on computed configure variables.
4391 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
4392 $(top_srcdir)/configure.ac so that changes to computed variables, such
4393 as PACKAGE_VERSION, are seen.
4394 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
4395
5523ac79
JD
43962008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
4397
4398 Update copyright dates for recent changes.
4399 * Makefile.am: Here.
4400 * src/Makefile.am: Here.
4401 * src/reduce.c: Here.
4402 * tests/reduce.at: Here.
4403
8fa36911
JD
44042008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
4405
4406 Use git-version-gen for version names between releases.
4407 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
4408 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
4409 * .prev-version: New.
4410 * .version.in: Remove.
78029cd5 4411 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
4412 revision.
4413 * GNUmakefile: Remove, now copied from Gnulib.
4414 * Makefile.am: Add code suggested by comments in
4415 build-aux/git-version-gen.
4416 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
4417 .prev-version, and .version.
4418 * NEWS (2.3b+): Rename to...
4419 (?.?): ... this because we're dropping the "+" version naming scheme,
4420 but, in general, we still can't be sure of our next release name.
4421 * bootstrap: Add a quick hack to remove from .gitignore the
4422 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
4423 entry. This should really be fixed in gnulib instead.
4424 * bootstrap.conf (gnulib_modules): Add gnumakefile.
4425 * configure.ac (AC_INIT): Set version name by invoking
4426 build-aux/git-version-gen.
4427 (AC_CONFIG_FILES): Remove .version, now generated by
4428 build-aux/git-version-gen.
4429 * maint.mk: New, copied from coreutils.
4430 * doc/.cvsignore (bison.1): Add.
4431 * doc/.gitignore (/bison.1): Add.
4432 * doc/bison.1: Remove, generated.
4433 * src/.cvsignore (revision.c): Remove.
4434 * src/.gitignore (/revision.c): Remove.
4435 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
4436 (BUILT_SOURCES): Remove revision.c.
4437 (revision.c): Remove.
4438 * src/getargs.c (version): Don't print revision after the VERSION.
4439 * src/revision.h: Remove.
4440
bcf07cb7
JD
44412008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4442
4443 Fix untranslatable composition of sentences. Reported by Goran
4444 Uddeborg at
4445 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
4446 * THANKS (Goran Uddeborg): Add.
4447 * src/reduce.c (reduce_print): Report the number of nonterminals and
4448 rules useless in the grammar in separate sentences.
4449 * tests/reduce.at (Useless Rules): Update output.
4450 (Reduced Automaton): Likewise.
4451 (Underivable Rules): Likewise.
4452 (Empty Language): Likewise.
4453
9aacab9a
JD
44542008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4455
4456 Fix some .gitignore and .cvsignore problems.
4457 * bootstrap (insert_sorted_if_absent): Replace all uses with...
4458 (insert_vc_ignore): ... this new function, which prepends `/' to all
4459 .gitignore entries before passing them to insert_sorted_if_absent.
4460 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
4461 .cvsignore files are maintained even though Bison developers run
4462 bootstrap while using Git.
4463 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
4464 unneeded by Bison.
4465 (gnulib): Add.
4466 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
4467 unneeded. Reported by Eric Blake.
4468 * lib/.gitignore (/*~): Add.
4469 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
4470 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
4471 Blake.
4472 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
4473
a9fc7990
JD
44742008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
4475
4476 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
4477 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
4478 * bootstrap.conf (gnulib_modules): Add unsetenv.
4479 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
4480 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
4481 (/setenv.m4): Add.
4482 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
4483 the first argument because it may become position-dependent, and unset
4484 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
4485 Add comments explaining these issues in more detail.
4486
0f1d6f10
JD
44872008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
4488
4489 Add .gitignore everywhere based on .cvsignore.
4490 * .gitignore: New.
4491 * build-aux/.gitignore: New.
4492 * data/.gitignore: New.
4493 * doc/.gitignore: New.
4494 * etc/.gitignore: New.
4495 * examples/.gitignore: New.
4496 * examples/calc++/.gitignore: New.
4497 * lib/.gitignore: New.
4498 * m4/.gitignore: New.
4499 * po/.gitignore: New.
4500 * runtime-po/.gitignore: New.
4501 * src/.gitignore: New.
4502 * tests/.gitignore: New.
4503
7bd1665a
JD
45042008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4505
4506 * NEWS (2.3b+): New section, empty for now.
4507 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
4508
72c5b982
JD
45092008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4510
4511 * NEWS (2.3b): Update release date since there has been a delay in
4512 getting the announcements and tarballs out.
4513
bd02cd5d
JD
45142008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4515
4516 * NEWS: Version 2.3b.
4517 * configure.ac (AC_INIT): Likewise.
4518 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
4519
9126263e
JD
45202008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
4521
4522 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
4523 been doing it for years.
4524 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
4525 (Release Procedure): Add FIXME about make alpha being unmaintained.
4526
fa6aa7b3
JD
45272008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
4528
4529 * data/yacc.c: Reformat m4 a little for readability.
4530 * src/lalr.c (build_relations): Correct comment.
4531
d30b312d
JMG
45322008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4533
4534 DJGPP specific issue.
4535 * djgpp/config.sed: Fixes required to run configure scripts generated
4536 by autoconf 2.62.
4537
138d4cd9
JD
45382008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4539
4540 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
4541 coordinator@translationproject.org.
4542
8f7e2e1f
JD
45432008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4544
4545 * THANKS: Add Eric Blake.
4546
f55efa38
JD
45472008-04-23 Eric Blake <ebb9@byu.net>
4548
4549 Revert prior patch, by working around autoconf regression.
4550 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
4551 ("Output file name: ("): Uncomment test.
4552 ("Output file name: )"): Likewise.
4553 Based on an idea from Noah Misch.
4554
096c9f9d
JD
45552008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4556
4557 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
4558 2.61. Reported by Juan Manuel Guerrero at
4559 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
4560 * tests/output.at ("Output file name: ("): Comment out test case for
4561 now.
4562 ("Output file name: )"): Likewise.
4563
0f664b89
JD
45642008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4565
4566 * GNUmakefile: Update git-version-gen invocation so make dist
4567 succeeds.
4568
1cfe6375
JD
45692008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
4570
4571 Update to the current gnulib CVS repository, and fix trigraph handling
4572 in Bison.
4573 * bootstrap: Update gnulib CVS repository URL.
4574 (symlink_to_dir): Encapsulate the code that guarantees the destination
4575 directory exists into...
4576 (check_dst_dir): ... this new function, and...
4577 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
4578 fail when copying files into lib/uniwidth/.
4579 * src/output.c (prepare_symbols): When writing yytname muscles, where
4580 symbol names will be encoded in C-string literals, tell quotearg to
4581 escape trigraphs. This used to be the default in gnulib.
4582 * tests/regression.at (Token definitions): Because of the change in
4583 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
4584 escapes trigraphs in symbol names. Thus, yytname no longer has
4585 trigraphs unnecessarily doubly escaped. Update test case output.
4586 Extend test case to be sure Bison's own error messages will no longer
4587 have trigraphs in symbol names unnecessarily escaped once.
4588
74c52fc8
JD
45892008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
4590
4591 Fix make dist infinite loop reported by Juan Manuel Guerrero at
4592 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
4593 * .cvsignore: Add .version.
4594 * .version.in: New.
4595 * bootstrap.conf (gnulib_modules): Add git-version-gen.
4596 * configure.ac (AC_CONFIG_FILES): Add .version.
4597 * build-aux/.cvsignore: Add git-version-gen.
4598
8e55b3aa
JD
45992008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
4600
4601 * NEWS (2.3a+): Mention that -g now takes an argument.
4602 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
4603 consistency. Update the -g and -x entries now that they take
4604 arguments. Use brackets to indicate optional arguments.
4605 * src/getargs.c (usage): Explain the relationship between arguments of
4606 long and short options more completely. Document --defines and -d
4607 separately since the former takes an argument but, for POSIX Yacc, the
4608 latter does not.
4609 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 4610 (getargs): Sort cases.
8e55b3aa 4611
59c5ac72
AD
46122008-02-28 Akim Demaille <demaille@gostai.com>
4613
4614 * doc/bison.texinfo: Fix a few typos.
4615
118d4978
AD
46162008-02-28 Akim Demaille <akim@epita.fr>
4617
4618 * doc/bison.texinfo (Bison Options): Document -W.
4619 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
4620
7020f1e9
AD
46212008-02-28 Akim Demaille <akim@epita.fr>
4622
4623 * src/getargs.c (short_options): Split and sort for readability.
4624 -g and -x take optional arguments, just like their long options.
4625 * build-aux/cross-options.pl: Use /x to make the regexp easier to
4626 understand.
4627 Fix the handling of $opt which resulted in all the argument to be
4628 considered as optional.
4629
59da312b
JD
46302008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
4631
4632 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
4633 say its interface is experimental.
4634 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4635 Java.
4636 (Bison Options): In the -L and --language entry, mention Java.
4637 (Java Bison Interface): Say the interface is experimental.
4638 * src/getargs.c (usage): Mention -L and --language.
4639
4640 * NEWS (2.3a+): Say the push parsing interface is experimental.
4641 * doc/bison.texinfo (Push Decl): Likewise.
4642 (Decl Summary): Likewise in the "%define api.push_pull" entry.
4643 (Push Parser Function): Likewise.
4644 (Pull Parser Function): Likewise.
4645 (Parser Create Function): Likewise.
4646 (Parser Delete Function): Likewise.
4647 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
4648 yypull_parse, and yypush_parse entries.
4649
4650 * NEWS (2.3a+): Mention XML support, and say the schema is
4651 experimental.
4652 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
4653 * src/getargs.c (usage): Say the XML schema is experimental.
4654
4655 * NEWS (2.3a+): Say option instead of flag.
4656
2bb3ebec
WP
46572008-02-21 Wojciech Polak <polak@gnu.org>
4658
4659 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
4660 text.
4661
333e670c
JD
46622008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
4663
4664 Fix impure push parser compile error reported by Bob Rossi at
4665 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
4666 * data/yacc.c: Clean up whitespace in the output a little.
4667 (yypstate_allocated): Define for impure push parsers regardless of
4668 whether the pull interface is also requested.
4669 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
4670 check impure push parsers without the pull interface.
4671
4672 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
4673 yyerror takes arguments specified by %parse-param while yypstate_new
4674 does not.
4675 * doc/bison.texinfo (Parser Create Function): Document that
4676 yypstate_new returns 0 for multiple impure parser instances.
4677 * tests/push.at (Push Parsing: Multiple impure instances): Update
4678 expected stderr output.
4679
798096e1
JD
46802008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4681
4682 * runtime-po/POTFILES.in (push.c): Remove.
4683
9ca7f077
JD
46842008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4685
4686 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
4687 * data/push.c: Rename to...
4688 * data/yacc.c: ... this, overwriting it.
4689 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
4690 `%push-pull-parser' -> `%define api.push_pull "both"'.
4691 Remove old yacc.c tests, and update push.c tests to yacc.c.
4692
42ee26bb
JD
46932008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
4694
4695 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
4696 `"%code top" blocks' instead of `%code "top" blocks'.
4697 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
4698 Clean up whitespace in the output a little.
4699
b1cc23c4
JD
47002008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4701
4702 Fix documentation problems reported by Tim Josling at
4703 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
4704 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
4705 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
4706 integers. Explain the effect of literal string aliases on error
4707 messages. Copy token 0 documentation from the C++ skeleton
4708 documentation.
4709
ab7f29f8
JD
47102008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
4711
4712 Accept a token number in a %left, %right, or %nonassoc for POSIX
4713 conformance. Reported by Tim Josling at
4714 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
4715 * NEWS (2.3a+): Mention.
4716 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
4717 and code numbers are treated by precedence declarations.
4718 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
4719 of symbols.1.
4720 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
4721 of symbol.
4722 (symbol.prec): New, just like symbol but allows INT.
4723 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
4724 longer holds.
4725 * tests/regression.at (Token number in precedence declaration): New
4726 test case.
4727
a924ef36
JMG
47282008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4729
4730 DJGPP specific issues.
4731 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
4732 be changed. Copyright timestamp adjusted.
4733 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
4734 be changed. Copyright timestamp adjusted.
4735 * djgpp/config.site: Copyright timestamp adjusted.
4736 * djgpp/config_h.sed: Copyright timestamp adjusted.
4737 * djgpp/djunpack.bat: Copyright timestamp adjusted.
4738 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
4739 filename translation list.
4740 * djgpp/subpipe.c (init_subpipe): Check the environment variables
4741 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
4742 files shall be created. Before trying to use the temp dir where the
4743 environment variable points to check that the dir really exists. If
4744 not default to the cwd as temp dir. Copyright timestamp adjusted.
4745 * djgpp/subpipe.h: Copyright timestamp adjusted.
4746 * djgpp/testsuite.sed: Copyright timestamp adjusted.
4747
389c8cfd
PE
47482008-01-30 Paul Eggert <eggert@cs.ucla.edu>
4749
4750 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
4751
5d1cfef4
PE
47522008-01-09 Paul Eggert <eggert@cs.ucla.edu>
4753
4754 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
4755 Problem reported by Claudio Saavedra in
4756 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
4757
e2dcf996
WP
47582008-01-05 Wojciech Polak <polak@gnu.org>
4759
4760 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
4761 document's title with the input grammar file name.
4762
da730230
JD
47632007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
4764
4765 Automate regression testing of the XML/XSLT implementation. Discussed
4766 starting at
4767 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
4768 * configure.ac (XSLTPROC): New substitution.
4769 * Makefile.am (maintainer-xml-check): New phony target invoking...
4770 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
4771 invoking make maintainer-check with BISON_TEST_XML=1.
4772 * tests/atlocal.in (XSLTPROC): New.
4773 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
4774 not to report reachable memory when Bison is expected to have a
4775 non-zero exit status and (2) to compare XML/XSLT output with --graph
4776 and --report=all output for every working grammar when
4777 BISON_TEST_XML=1.
4778 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
4779 (AT_BISON_CHECK_XML): New.
4780 (AT_QUELL_VALGRIND): New.
4781 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
4782 (AT_CHECK): ... don't redefine this since this was the old way to
4783 quell Valgrind.
4784 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
4785 AT_BISON_CHECK invocations.
4786 * tests/c++.at: Likewise.
4787 * tests/calc.at: Likewise.
4788 * tests/conflicts.at: Likewise.
4789 * tests/cxx-type.at: Likewise.
4790 * tests/existing.at: Likewise.
4791 * tests/glr-regression.at: Likewise.
4792 * tests/headers.at: Likewise.
4793 * tests/input.at: Likewise.
4794 * tests/java.at: Likewise.
4795 * tests/output.at: Likewise.
4796 * tests/push.at: Likewise.
4797 * tests/reduce.at: Likewise.
4798 * tests/regression.at: Likewise.
4799 * tests/sets.at: Likewise.
4800 * tests/skeletons.at: Likewise.
4801 * tests/synclines.at: Likewise.
4802 * tests/torture.at: Likewise.
4803 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
4804 tends to hang xsltproc.
4805 (Big horizontal): Likewise.
4806
408476bc
JD
48072007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
4808
4809 In XML output, remove redundant class attribute on symbol element.
4810 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
4811 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
4812 look up a symbol to determine whether it's a nonterminal or terminal.
4813 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
4814 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
4815
4816 Add prec/assoc information to XML output.
4817 * src/gram.c (grammar_rules_print_xml): For each rule that has a
4818 %prec, add a percent_prec attribute.
4819 * src/print-xml.c (print_grammar): For each terminal that has a
4820 precedence or associativity, add a prec or assoc attribute.
4821 (xml_indent): New.
4822 (xml_puts): Use xml_indent.
4823 (xml_printf): Use xml_indent.
4824 * src/print-xml.h (xml_indent): Prototype.
4825
4826 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
4827 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
4828
d4a26c48
JD
48292007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
4830
4831 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
4832 (bison:ruleByNumber): ... this for clarity.
4833 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
4834 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
4835 (xsl:template match="reduction"): Update.
4836 (xsl:template match="item"): Update.
4837 (xsl:template match="reduction"): Update.
4838
4839 In the XML output, don't print the list of rules where symbols appear.
4840 Compute it in XSLT instead. Discussed at
4841 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
4842 * data/xslt/bison.xsl (bison:ruleByLhs): New.
4843 (bison:ruleByRhs): New.
4844 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
4845 bison:ruleByRhs.
4846 (xsl:template match="terminal/rule"): Remove.
4847 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
4848 bison:ruleByRhs.
4849 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
4850 Remove.
4851 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
4852 bison:ruleByRhs and mode="number-link" for rule template.
4853 (xsl:template match="terminal/rule"): Remove.
4854 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
4855 bison:ruleByRhs and mode="number-link" for rule template.
4856 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
4857 Rewrite as...
4858 (xsl:template match="rule" mode="number-link"): ... this.
4859 * src/print-xml.c (print_grammar): Don't print the list of rules.
4860
ef1b4273
JD
48612007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4862
4863 Don't let --report affect XML output; always print all information.
4864 Discussed at
4865 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
4866 * src/conflicts.c (log_resolution): Implement.
4867 * src/print-xml.c (print_core): Implement.
4868 (print_state): Implement.
4869 (print_xml): Implement.
4870
4871 * NEWS (2.3a+): Fix quotes.
4872 * src/parse-gram.y (prologue_declaration): For consistency with -v,
4873 don't let %verbose clear the list specified by --report.
4874
0f6cd9e3
AD
48752007-11-26 Akim Demaille <akim@epita.fr>
4876
4877 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
4878
d80fb37a
JD
48792007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
4880
4881 In the XML output, list useless and unused symbols and rules with the
4882 useful ones and add a "usefulness" attribute. Discussed starting at
4883 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
4884 * src/gram.c (grammar_rules_partial_print_xml): Remove.
4885 (grammar_rules_print_xml): Print all rules instead of just those
4886 useful in the grammar, and add a "usefulness" attribute.
4887 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
4888 * src/print-xml.c (print_rules_useless_in_parser): Remove.
4889 (print_grammar): Print all nonterminals instead of just useful ones,
4890 and add a "usefulness" attribute to nonterminals and terminals.
4891 (print_xml): Don't print a separate "reductions" or
4892 "rules-useless-in-parser" element.
4893 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
4894 (reduce_xml): Remove.
4895 (reduce_token_unused_in_grammar): New.
4896 (reduce_nonterminal_useless_in_grammar): New.
4897 * src/reduce.h (reduce_xml): Remove prototype.
4898 (reduce_token_unused_in_grammar): Add prototype.
4899 (reduce_nonterminal_useless_in_grammar): Add prototype.
4900 * data/xslt/xml2text.xsl: Update for XML changes.
4901 * data/xslt/xml2xhtml.xsl: Update for XML changes.
4902 * tests/reduce.at (Useless Terminals): Update output.
4903 (Useless Rules): Update output.
4904 (Reduced Automaton): Update output.
4905
4906 Say "Terminals unused in grammar" instead of "Unused terminals".
4907 * NEWS (2.3a+): Update.
4908 * doc/bison.texinfo (Understanding): Update example output.
4909 * src/reduce.c (reduce_output): Implement.
4910 * data/xslt/xml2text.xsl: Implement.
4911 * data/xslt/xml2xhtml.xsl: Implement.
4912
1bb2bd75
JD
49132007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
4914
4915 Accept --report-file=FILE to override the default `.output' filename.
4916 * NEWS (2.3a+): Mention.
4917 * doc/bison.texinfo (Bison Options): Add an entry.
4918 * src/files.c (compute_output_file_names): Don't override
4919 spec_verbose_file if already set.
4920 * src/getargs.c (usage): Document --report-file.
4921 (REPORT_FILE_OPTION): New anonymous enum member.
4922 (long_options): Add entry for it.
4923 (getargs): Add case for it setting spec_verbose_file.
4924
4925 * build-aux/cross-options.pl: Don't record a short option just because
4926 there's an arg.
4927 * doc/.cvsignore: Add yacc.1.
4928
a005a9c4
AD
49292007-11-14 Akim Demaille <akim@epita.fr>
4930
4931 * doc/yacc.1.in: New.
4932 * configure.ac, doc/Makefile.am: Adjust.
4933 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
4934 config.h symbol.
4935 Use AC_SUBST for assignments too.
4936 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
4937
cff03fb2
JD
49382007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4939
4940 * src/gram.c: Remove comments that duplicate comments in gram.h.
4941
4942 When reporting useless rules and nonterminals, say "useless in grammar"
4943 instead of "useless", and say "useless in parser" instead of "never
4944 reduced". Discussed starting at
4945 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
4946 * NEWS (2.3a+): Mention this change.
4947 * data/xslt/xml2text.xsl: Update output text and expected input XML
4948 element names to match changes below.
4949 * data/xslt/xml2xhtml.xsl: Likewise.
4950 (xsl:template match="bison-xml-report"): Add missing entry in Table of
4951 Contents: "Rules useless in parser due to conflicts".
4952 * doc/bison.texinfo (Decl Summary): Reword a little.
4953 (Understanding): Update example output for changes below.
4954 * src/gram.c: (rule_useful_p): Rename to...
4955 (rule_useful_in_grammar_p): ... this.
4956 (rule_useless_p): Rename to...
4957 (rule_useless_in_grammar_p): ... this.
4958 (rule_never_reduced_p): Rename to...
4959 (rule_useless_in_parser_p): ... this.
4960 (grammar_rules_print): Update for renames.
4961 (grammar_rules_print_xml): Update for renames.
4962 (grammar_rules_never_reduced_report): Rename to...
4963 (grammar_rules_useless_report): ... this since it is used for either
4964 kind of useless rule.
4965 * src/gram.h: Reword comments and update function names in prototypes.
4966 * src/main.c (main): Say "rule useless in parser due to conflicts".
4967 * src/print-xml.c (print_rules_never_reduced): Rename to...
4968 (print_rules_useless_in_parser): ... this, and rename output XML
4969 element "rules-never-reduced" to "rules-useless-in-parser".
4970 (print_xml): Update for rename.
4971 * src/print.c (print_results): Say "Rules useless in parser due to
4972 conflicts".
4973 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
4974 (nonterminals_reduce): Say "nonterminal useless in grammar".
4975 (reduce_output): Say "Nonterminals useless in grammar".
4976 Say "Rules useless in grammar".
4977 (reduce_xml): Rename output XML element "useless" to
4978 "useless-in-grammar".
4979 (reduce_print): Don't report the count of grammatically useless rules
4980 as "rules never reduced" just because %yacc is specified.
4981 In the correct report of this count, say nonterminal(s) and rule(s)
4982 "useless in grammar".
4983 * tests/conflicts.at (S/R in initial): Update expected output.
4984 (Defaulted Conflicted Reduction): Likewise.
4985 (Unreachable States After Conflict Resolution): Likewise.
4986 * tests/existing.at (GNU pic Grammar): Likewise.
4987 * tests/reduce.at (Useless Nonterminals): Likewise.
4988 (Useless Rules): Likewise.
4989 (Reduced Automaton): Likewise.
4990 (Underivable Rules): Likewise.
4991 (Empty Language): Likewise.
4992
66f0441d
JD
49932007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4994
4995 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
4996 here document and before the EOF so that BSD's implementation of Bourne
4997 shell doesn't parse the delimiter as part of the here document.
4998 * doc/.cvsignore: Add cross-options.texi.
4999 * src/getargs.c (usage): Add a blank line after the warning categories.
5000
d0ee4105
PB
50012007-11-08 Paolo Bonzini <bonzini@gnu.org>
5002
5003 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
5004
e8b1fb9b
AD
50052007-11-05 Akim Demaille <akim@epita.fr>
5006
5007 Remove Id: from bison.1.
5008 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
5009 (perl -0777 -pi -e 's/\.PP\nId): New.
5010 (.x.1): Use it to ignore the version control revision.
5011
2f7a96b5
AD
50122007-11-05 Akim Demaille <demaille@gostai.com>
5013
5014 * build-aux/Makefile.am: Ship cross-options.pl.
5015 * doc/Makefile.am: Always refer to cross-options.texi with
5016 $(srcdir).
5017 (MAINTAINERCLEANFILES): Add it.
5018
f4101aa6
AD
50192007-11-04 Akim Demaille <demaille@gostai.com>
5020
5021 Generate the long/short option cross-table.
5022 * build-aux/cross-options.pl: New.
5023 * doc/Makefile.am (cross-options.texi): New.
5024 * doc/bison.texinfo: Use it.
5025
727a1401
AD
50262007-11-04 Akim Demaille <demaille@gostai.com>
5027
5028 Generate bison.1 using help2man.
5029 * doc/common.x, doc/bison.x: New.
5030 * doc/Makefile.am (bison.1, .x.1): New.
5031 The code is taken from autoconf-2.61/man/Makefile.am.
5032 * configure.ac: Look for help2man.
5033
6aeb9c57
AD
50342007-11-04 Akim Demaille <demaille@gostai.com>
5035
5036 Complete --help.
5037 * src/getargs.c (usage): Document -W, make it clear that -d,
5038 -g and -x have optional arguments.
5039
d7be4085
AD
50402007-11-04 Akim Demaille <demaille@gostai.com>
5041
5042 Find sha1sum when named gsha1sum.
5043 * bootstrap (find_tool): New.
5044 ($SHA1SUM): New.
5045
d9df47b6
JD
50462007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5047
5048 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
5049 at
5050 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
5051 * NEWS (2.3a+): Mention.
5052 * data/bison.m4 (b4_pure_if): Don't define it here.
5053 * data/c.m4 (b4_identification): Depend on individual skeletons to
5054 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
5055 values of the %define variables api.pure or api.push_pull. Define
5056 YYPURE, YYPUSH, and YYPULL accordingly.
5057 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
5058 glr.cc has already defined b4_pure_flag.
5059 * data/push.c: Define b4_pure_if based on `%define api.pure'.
5060 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 5061 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
5062 * doc/bison.texinfo (Pure Decl): Update.
5063 (Push Decl): Update.
5064 (Decl Summary): Add api.pure to %define entry.
5065 In %pure-parser entry, say it's deprecated and reference %define.
5066 (Pure Calling): Update.
5067 (Error Reporting): Update.
5068 (C++ Scanner Interface): Update.
5069 (How Can I Reset the Parser): Update.
5070 (Table of Symbols): In %pure-parser entry, say it's deprecated and
5071 reference %define.
5072 * src/getargs.c (pure_parser): Remove global variable.
5073 * src/getargs.h (pure_parser): Remove extern.
5074 * src/output.c (prepare): Don't define pure_flag muscle.
5075 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
5076 wrapper around `%define api.pure'.
5077 * tests/calc.at (Simple LALR Calculator): Update.
5078 (Simple GLR Calculator): Update.
5079 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
5080 Update.
5081 (GLR: Resolve ambiguity, pure, locations): Update.
5082 (GLR: Merge conflicting parses, pure, no locations): Update.
5083 (GLR: Merge conflicting parses, pure, locations): Update.
5084 * tests/glr-regression.at (Uninitialized location when reporting
5085 ambiguity): Update
5086 * tests/input.at (Unused %define api.pure): New test case.
5087 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
5088 AT_PURE_IF and AT_PURE_AND_LOC_IF.
5089 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5090
c373bf8b
JD
50912007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5092
5093 %define push_pull -> %define api.push_pull. Discussed starting at
5094 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
5095 * data/push.c: Expect the new name.
5096 * data/yacc.c: Likewise.
5097 * doc/bison.texinfo (Push Decl): Update.
5098 (Decl Summary): Update %define entry.
5099 (Push Parser Function): Update.
5100 (Pull Parser Function): Update.
5101 (Parser Create Function): Update.
5102 (Parser Delete Function): Update.
5103 * tests/calc.at (Simple LALR Calculator): Update.
5104 * tests/input.at (%define enum variables): Update.
5105 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5106 (Push Parsing: Multiple impure instances): Update.
5107 (Push Parsing: Unsupported Skeletons): Update.
5108 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
5109 (Exploding the Stack Size with Malloc): Update.
5110
5111 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
5112 other entries some.
5113
32f19b6b
JD
51142007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
5115
5116 For the XML output's terminal element, rename @number to @token-number,
5117 and add @symbol-number. In the nonterminal element, rename @number to
5118 @symbol-number. Discussed starting at
5119 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
5120 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
5121 renames.
5122 (xsl:template match="nonterminal"): Likewise.
5123 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
5124 (xsl:template match="nonterminal"): Likewise.
5125 * src/print-xml.c (print_grammar): Implement.
5126
255a6b90
JD
51272007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5128
5129 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
5130 2007-10-11 change, the child elements here are items not rules.
408476bc 5131 (xsl:template match="item"): New.
255a6b90
JD
5132 (xsl:template match="rule"): Update for new reduced itemset.
5133 (xsl:template match="point"): Remove.
5134 (xsl:template match="empty"): For consistency with --graph, don't
5135 output "/* empty */".
5136 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
5137 line-wrap, don't pass a negative value as first-line-length since this
5138 won't work with the following changes.
5139 (xsl:template name="line-wrap"): Simplify slightly.
5140 (xsl:template name="ws-search"): Eliminate recursion.
5141 * src/print_graph.c (print_core): Don't print a reduction's lookahead
5142 set next to an item whose dot is not at the end of the RHS even if it
5143 happens to be associated with the same rule.
5144
88c78747
JD
51452007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5146
31984206
JD
5147 Add %define lr.keep_unreachable_states.
5148 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
5149 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
5150 * src/main.c (main): Implement it.
5151 * tests/conflicts.at (Unreachable States After Conflict Resolution):
5152 Extend to test it, and fix a typo.
5153
51542007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
5155
5156 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
5157 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
5158 the example .output text.
5159 * tests/regression.at (Extra lookahead sets in report): Improve wording
5160 of comments.
5161
b7a70162
WP
51622007-10-17 Wojciech Polak <polak@gnu.org>
5163
5164 * src/print-xml.c (print_grammar): Renamed
5165 <terminal> and <nonterminal> attributes:
5166 "type" to "number" and "symbol" to "name".
5167 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
5168 Use new attribute names.
5169 (xsl:template match="nonterminal"): Likewise.
5170 * data/xslt/xml2xhtml.xsl: Likewise.
5171
a0de5091
JD
51722007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
5173
5174 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
5175 (Option Cross Key): Likewise.
5176
5177 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
5178 next to an item whose dot is not at the end of the RHS even if it
5179 happens to be associated with the same rule.
5180 * src/print.c (print_core): Likewise.
5181 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
5182 (Resolved SR Conflicts): Update output.
5183 * tests/regression.at (Extra lookahead sets in report): New test case.
5184
4c20d18d
WP
51852007-10-11 Wojciech Polak <polak@gnu.org>
5186
5187 * src/print-xml.c (print_core): Remove item set
5188 redundancy.
5189 * data/xslt/bison.xsl (bison:ruleNumber): New key.
5190 Improve processing time. Suggested by Joel E. Denny.
5191 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
5192 Write xsl:param "required" attribute as comment.
5193 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
5194 (xsl:template match="rule"): Support new reduced itemset.
5195 (xsl:template match="point"): Remove.
5196 * data/xslt/xml2xhtml.xsl: Likewise.
5197
f506ad1c
JD
51982007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5199
5200 * src/getargs.c (version): Update copyright year.
5201
21f1b063
JD
52022007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
5203
5204 Make xml2dot.xsl and --graph produce the same output.
5205 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
5206 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
5207 escaped later.
5208 (xsl:template name="output-node"): Use the new escape template instead
5209 of the string-replace template directly.
5210 (xsl:template name="output-edge"): Likewise.
5211 (xsl:template name="escape"): New, escapes backslashes and newlines in
5212 addition to quotation marks.
5213 * src/graphviz.c (start_graph, output_node, output_edge): Add
5214 whitespace to output for legibility.
5215
5216 Make xml2text.xsl and --report produce the same output, and remove the
5217 XML "conflicts" element since a conflict summary is easily extracted
5218 from the automaton.
5219 * data/xslt/bison.xsl: New.
5220 (xsl:template match="state" mode="bison:count-conflicts): New.
5221 * data/xslt/xml2text.xsl: Import bison.xsl.
5222 (xsl:template match="bison-xml-report"): Instead of styling the
5223 "conflicts" element, style the "automaton" element with mode
5224 "conflicts". Unlike the former, the latter lists S/R and R/R
5225 conflicts for a state on the same line.
5226 (xsl:template match="conflicts"): Remove.
5227 (xsl:template match="conflict"): Remove.
5228 (xsl:template match="terminal"): Line-wrap the list of rules in which
5229 the terminal is used.
5230 (xsl:template match="nonterminal"): Likewise for nonterminals.
5231 (xsl:template match="automaton" mode="conflicts"): New.
5232 (xsl:template match="state" mode="conflicts"): New.
5233 (xsl:template name="line-wrap"): New.
5234 (xsl:template name="ws-search"): New.
5235 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
5236 (xsl:template match="bison-xml-report"): Instead of styling the
5237 "conflicts" element, style the "automaton" element with mode
5238 "conflicts."
5239 (xsl:template match="conflicts"): Remove.
5240 (xsl:template match="conflict"): Remove.
5241 (xsl:template match="automaton" mode="conflicts"): New.
5242 (xsl:template match="state" mode="conflicts): New.
5243 * src/conflicts.c (conflicts_output_xml): Remove.
5244 * src/conflicts.h (conflicts_output_xml): Remove prototype.
5245 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
5246 * src/print.c (print_grammar): Consistently wrap at the 66th column so
5247 the corresponding XSLT is easier. Also, never wrap between a word and
5248 the comma that follows it.
5249
793fbca5
JD
52502007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5251
5252 Improve C++ namespace support. Discussed starting at
5253 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
5254 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
5255 b4_namespace_close): New macros that interpret the %define variable
5256 "namespace" so its value can contain "::" to indicate nested
5257 namespaces.
5258 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
5259 the above macros.
5260 * data/lalr1.cc (b4_namespace): Likewise.
5261 * data/location.cc (b4_namespace): Likewise.
5262 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
5263 inside a new table in the general %define entry. Document `%define
5264 namespace' there as well. Point the %name-prefix entry to it since it
5265 explains it more completely in the case of C++.
5266 (C++ Bison Interface): Mention `%define namespace' instead of
5267 %name-prefix.
5268 (Table of Symbols): Remove the `%define push_pull' entry. The %define
5269 entry suffices.
5270 * tests/c++.at (Relative namespace references): New test case.
5271 (Absolute namespace references): New test case.
5272 (Syntactically invalid namespace references): New test case.
5273 * tests/input.at (C++ namespace reference errors): New test case.
5274
35b8730d
JD
52752007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
5276
5277 Add syncline support and location accessor to internal %define
5278 interfaces.
5279 * data/bison.m4 (b4_percent_define_get_loc): New.
5280 (b4_percent_define_get_syncline): New.
5281 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
5282 (b4_percent_define_default): Record defining location as line 1 rather
5283 than 0 for the sake of synchronizing #line's, and define
5284 b4_percent_define_syncline(VARIABLE).
5285 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
5286 * src/muscle_tab.c (muscle_syncline_grow): New.
5287 (muscle_code_grow): Use muscle_syncline_grow.
5288 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
5289 define b4_percent_define_syncline(VARIABLE).
5290 (muscle_percent_define_get_loc): New.
5291 (muscle_percent_define_get_syncline): New.
5292 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
5293 remove some unused variables.
5294 (muscle_percent_define_default): Record defining location as line 1
5295 rather than 0 for the sake of synchronizing #line's, and define
5296 b4_percent_define_syncline(VARIABLE).
5297 (muscle_percent_define_check_values): Use
5298 muscle_percent_define_get_loc.
5299 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
5300 (muscle_percent_define_get_syncline): Prototype.
5301 * tests/skeletons.at (%define Boolean variables: invalid skeleton
5302 defaults): Update output for location change.
5303 (Complaining during macro argument expansion): Extend to test
5304 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
5305
7dc4a694
JD
53062007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
5307
5308 Fix some error-reporting macro bugs.
5309 * data/bison.m4 (b4_cat): New.
5310 (b4_error, b4_error_at): Use b4_cat to send error directives directly
5311 to stdout so they don't become arguments to other macros. Update
5312 comments and add examples.
5313 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
5314 add examples.
5315 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
5316 after printing the error directive so that M4 doesn't report subsequent
5317 problems that are induced by this problem.
5318 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
5319 instead of just in them. Recognize @\n in both places. Both expand to
5320 the empty string. Needed by b4_cat.
5321 * tests/skeletons.at (Complaining during macro argument expansion):
5322 New test case.
5323 (Fatal errors make M4 exit immediately): New test case.
5324
d4bd2295
JD
53252007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
5326
5327 Implement --print-datadir.
5328 * src/getargs.c (usage): Mention.
5329 (PRINT_DATADIR_OPTION): New anonymous enum member.
5330 (long_options): Add entry for it.
5331 (getargs): Add case for it calling compute_pkgdatadir.
5332 * src/output.c (output_skeleton): Encapsulate data directory
5333 computation from here...
5334 (prepare): ... and from here...
5335 (compute_pkgdatadir): ... into this new function.
5336 * src/output.h (compute_pkgdatadir): Prototype.
5337
34cdeddf
JD
53382007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
5339
5340 * src/print-xml.c (escape_bufs): New static global variable
5341 replacing...
5342 (xml_escape_n): ... the static local variable buf here.
5343 (print_xml): Free memory for escape_bufs.
5344 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
5345
d782395d
JD
53462007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
5347
5348 Replace `%push-parser' and `%push-pull-parser' with
5349 `%define push_pull "push"' and `%define push_pull "both"'.
5350 `%define push_pull "pull"' is the default.
5351 * doc/bison.texinfo (Push Decl, Push Parser Function,
5352 Pull Parser Function, Parser Create Function, Parser Delete Function):
5353 Update declarations.
5354 (Decl Summary, Table of Symbols): Replace %push-parser and
5355 %push-pull-parser entries with a %define push_pull entry.
5356 * data/bison.m4 (b4_percent_define_check_values): New macro.
5357 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
5358 definitions...
5359 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
5360 definitions...
5361 * data/push.c: ... to here and compute them from the value of the
5362 %define variable push_pull.
5363 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
5364 parsing requests here...
5365 * data/yacc.c: ... hack this to switch to push.c any time
5366 b4_use_push_pull_flag or the %define variable push_pull is set. This
5367 will go away when we mv push.c yacc.c.
5368 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
5369 push parsing is not supported since unused %define variables are
5370 reported anyway.
5371 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
5372 * src/muscle_tab.h (muscle_percent_define_check_values): Update
5373 comments for consistency with b4_percent_define_check_values.
5374 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
5375 muscles.
5376 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
5377 Remove.
5378 (prologue_declaration): Remove %push-parser and %push-pull-parser
5379 rules.
5380 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
5381 * tests/calc.at: Update declarations.
5382 * tests/input.at (%define enum variables): New test case.
5383 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
5384 declaration.
5385 (Push Parsing: Multiple impure instances): Update declaration.
5386 (Push Parsing: Unsupported Skeletons): New test case.
5387 * tests/torture.at (Exploding the Stack Size with Alloca): Update
5388 declaration.
5389 (Exploding the Stack Size with Malloc): Update declaration.
5390
3f999f78
WP
53912007-09-24 Wojciech Polak <polak@gnu.org>
5392
5393 Add XSLT transformations.
5394
5395 * data/xslt/xml2dot.xsl: Transform XML into DOT.
5396 * data/xslt/xml2text.xsl: Transform XML into plain text.
5397 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
5398 * data/Makefile.am (xsltdir): New variable.
5399 (dist_xslt_DATA): Add xslt/*.xsl files.
5400
a4f75309
PE
54012007-09-23 Paul Eggert <eggert@cs.ucla.edu>
5402
5403 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
5404 Problem reported by Wojciech Polak.
5405 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
5406 (xml_printf): Undo change I made on 21 September; that is,
5407 indent 2 spaces, not 1.
5408
ad5feac4
JD
54092007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
5410
5411 Pacify ./configure --enable-gcc-warnings.
5412 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
5413 `char const *' instead of `char *'.
5414 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
5415 local variable `sep'.
5416
41d7a5f2
PE
54172007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5418
5419 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
5420 elsewhere.
5421 * src/print-xml.c: Prefer "const" after types; that's more consistent.
5422 (xml_printf): Indent just 1 space for level.
5423 (e_char, xlate_char): Remove.
5424 (xml_escape_string): Rewrite to avoid undefined behavior (used
5425 storage that was freed from the stack).
5426 (xml_escape_n): Don't bother checking for subscript error.
5427
3f999f78
WP
54282007-09-21 Wojciech Polak <polak@gnu.org>
5429
5430 Add Bison XML Automaton Report.
41d7a5f2
PE
5431
5432 Add support for an -x option to generate an XML report.
5433 It is not documented yet.
5434 * src/print-xml.c: New file.
5435 * src/print-xml.h: Likewise.
5436 * lib/timevar.def (TV_XML): New var.
5437 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
5438 * src/conflicts.c: Include print-xml.h.
5439 (solved_conflicts_xml_obstack): New var.
5440 (log_resolution, conflicts_solve, conflicts_free):
5441 Add support for XML report.
5442 (conflicts_output_val): New function.
5443 * src/conflicts.h (conflicts_output_val): New decl.
5444 * src/files.c (spec_xml_file): New var.
5445 (compute_output_file_names, output_file_names_free): Add XML support.
5446 * src/files.h (spec_xml_file): New decl.
5447 * src/getargs.c (xml_flag): New var.
5448 (usage, short_options, long_options, getargs): Add XML support.
5449 * src/getargs.h (xml_flag): New decl.
5450 * src/gram.c: Include print-xml.h.
5451 (rule_lhs_print_xml, rule_rhs_print_xml):
5452 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
5453 New functions.
5454 * src/gram.h: Declare external ones.
5455 * src/main.c: Include print-xml.h.
5456 (main): Add XML support.
5457 * src/reduce.c: Include print-xml.h.
5458 (reduce_xml): New function.
5459 * src/reduce.h: Declare it.
5460 * src/state.c: Include print-xml.h.
5461 (state_new): Add XML support.
5462 (state_rule_lookahead_tokens_print_xml): New function.
5463 * src/state.h: Declare it.
5464 (struct state): New member solved_conflicts_xml.
5465 * src/symtab.c (symbol_class_get_string): New function.
5466 * src/symtab.h: Declare it.
5467
6d8e724d
PE
54682007-09-21 Paul Eggert <eggert@cs.ucla.edu>
5469
5470 * GNUmakefile: Switch to coreutils's version.
5471 * bootstrap: Likewise.
5472 * Makefile.cfg: Adjust to new GNUmakefile.
5473 * README-hacking: Likewise.
5474
5475 Import from gnulib:
5476
5477 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
5478 Bruno Haible <bruno@clisp.org>
5479
5480 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5481 and is a script that invokes bison. Tighten the code. Add comments.
5482
922bdd7f
JD
54832007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
5484
5485 Spell "boolean" as "Boolean". Reported by Akim Demaille.
5486 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
5487 * doc/bison.texinfo (Decl Summary): Fix.
5488 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
5489 * tests/input.at (Boolean %define variables): Update output.
5490 * tests/skeletons.at (%define boolean variables: invalid skeleton
5491 defaults): Rename to...
5492 (%define Boolean variables: invalid skeleton defaults): ... this and
5493 update output.
5494
1b17b01d
JD
54952007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
5496
5497 In impure push mode, don't allow more than one yypstate to be allocated
5498 since multiple impure parsers would corrupt yynerrs.
5499 * data/push.c (yypstate_allocated): New static global variable
5500 initialized to 0.
5501 (yypull_parse): If yypstate_new returns 0, don't report it as memory
5502 exhaustion if yypstate_allocated is 1, but still return 2.
5503 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
5504 already 1. Otherwise, set it to 1.
5505 (yypstate_delete): Set it to 0.
5506 * tests/push.at (Push Parsing: Multiple impure instances): New test
5507 case.
5508
9987d1b3
JD
55092007-08-17 Bob Rossi <bob@brasko.net>
5510
5511 * doc/bison.texinfo (Push Decl): Document the push parser.
5512 (Table of Symbols): Ditto.
5513 (Pure Decl): Ditto.
5514 (Decl Summary): Ditto.
5515 (Multiple Parsers, Push Parser Function, Pull Parser Function,
5516 Parser Create Function, Parser Delete Function):
5517 Add new push parser symbols.
5518 (Table of Symbols): Document push-parser, push-pull-parser,
5519 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
5520
f16b0819
PE
55212007-08-15 Paul Eggert <eggert@cs.ucla.edu>
5522
5523 Update to GPLv3.
5524 * doc/gpl-3.0.texi: New file.
5525 * doc/gpl.texi: Remove.
5526 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
5527 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
5528 * README-hacking, TODO, bootstrap, bootstrap.conf:
5529 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
5530 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
5531 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
5532 * data/lalr1.cc, data/lalr1.java, data/location.cc:
5533 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
5534 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
5535 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
5536 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
5537 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
5538 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
5539 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
5540 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
5541 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
5542 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
5543 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
5544 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
5545 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
5546 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
5547 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
5548 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
5549 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
5550 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
5551 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
5552 * src/complain.c, src/complain.h, src/conflicts.c:
5553 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
5554 * src/files.h, src/flex-scanner.h, src/getargs.c:
5555 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
5556 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
5557 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
5558 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
5559 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
5560 * src/print.c, src/print.h, src/print_graph.c:
5561 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
5562 * src/reduce.h, src/relation.c, src/relation.h:
5563 * src/revision.h, src/scan-code.h, src/scan-code.l:
5564 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
5565 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
5566 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
5567 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
5568 * tests/Makefile.am, tests/actions.at, tests/c++.at:
5569 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
5570 * tests/existing.at, tests/glr-regression.at:
5571 * tests/headers.at, tests/input.at, tests/java.at:
5572 * tests/local.at, tests/output.at, tests/push.at:
5573 * tests/reduce.at, tests/regression.at, tests/sets.at:
5574 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
5575 * tests/torture.at:
5576 Update to GPLv3.
5577
728c4be2
JD
55782007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5579
5580 Get rid of broken %no-parser, -n, and --no-parser implementation and
5581 documentation.
5582 * TODO: Don't mention them.
5583 * doc/bison.1: Likewise.
5584 * doc/bison.texinfo (Decl Summary): Likewise.
5585 (Bison Options): Likewise.
5586 (Option Cross Key): Likewise.
5587 * src/getargs.c (no_parser_flag): Remove global variable.
5588 (usage): Don't print description of -n and --no-parser.
5589 (long_options): Remove --no-parser entry here.
5590 (getargs): Remove -n case in the switch here.
5591 * src/getargs.h (no_parser_flag): Remove extern.
5592 * tests/regression.at (Web2c Actions): Remove comment that mentions
5593 --no-parser.
5594
5d31a216
JD
55952007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
5596
5597 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
5598 name user variables starting with `yy'. Just pass NULL instead of a
5599 dummy local &yylval to yypush_parse.
5600 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
5601 starting with `yy'.
5602
a2ea208d
JD
56032007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
5604
5605 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
5606 true since it's then always used regardless of whether yyoverflow is
5607 defined. Reported by Christian Burger at
5608 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
5609 * THANKS: Add Christian Burger.
5610
91661ebb
JD
5611 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5612 node names: say "Decl Summary" not "Bison Declaration Summary".
5613
cbd50549
JD
56142007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
5615
5616 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
5617 determine whether this function has already complained about an invalid
5618 value for a %define boolean variable, don't check whether Bison has
5619 ever examined the value. As written, the check was a tautology.
5620 Instead, record and check for this complaint using a separate muscle.
5621
eb1b0740
JD
56222007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5623
5624 Fix push parsing memory leak reported by Brandon Lucia at
5625 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
5626 * THANKS: Add Brandon Lucia.
5627 * data/push.c (yypstate_delete): Free the stack if it was reallocated
5628 but the parse never completed and thus freed it.
5629 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
5630 * tests/testsuite.at: Include push.at.
5631 * test/push.at: New.
5632 (Push Parsing: Memory Leak for Early Deletion): New test case.
5633
9d774aff
JD
56342007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
5635
5636 Improve handling of multiple S/R conflicts in the same state and of S/R
5637 conflicts involving multiple reductions.
5638 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
5639 set for a state here or Bison will abort if it is reassigned on a
5640 later conflicted reduction in the same state.
5641 Similarly, don't finalize and assign the solved conflicts report here
5642 or it will be lost if it is reassigned on a later conflicted reduction
5643 in the same state.
5644 (set_conflicts): Instead, assign them both here after all S/R conflicts
5645 in the state have been fully examined.
5646 * src/print.c (shift_set): Rename to...
5647 (no_reduce_set): ... this.
5648 (print_reductions): Update for rename, and add %nonassoc error action
5649 tokens to no_reduce_set so that, when printing the first remaining
5650 reduction on an error action token, the reduction is enclosed in
5651 brackets.
5652 (print_results): Update for rename.
5653 * tests/conflicts.at (Solved conflicts report for multiple reductions
5654 in a state): New test case.
5655 (%nonassoc error actions for multiple reductions in a state): New test
5656 case.
5657
5658 * src/main.c (main): Don't depend on C99 features.
5659
10159d2a
JD
56602007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
5661
5662 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
5663 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
5664 uniwidth.
10159d2a 5665
953b3935
JD
56662007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
5667
5668 * bootstrap (slurp): Create target directories that don't exist.
5669 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
5670
6ce2d93a
JD
56712007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5672
5673 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
5674 than item number.
5675 * closure.c (closure): Likewise.
5676 * state.h (reductions): Comment sorting of rules.
5677 (state): Comment sorting of items.
5678
ce3448d5
JD
56792007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
5680
5681 Fix C++ test cases after recent Gnulib changes. Discussed starting at
5682 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
5683 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
5684 definition in order to avoid Gnulib headers since we don't use config.h
5685 here.
5686 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
5687 rather than AT_DATA so that config.h is included.
5688
8a86eef0
JD
56892007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
5690
5691 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
5692 instead of fprintf. Guard these functions with #if YYDEBUG instead of
5693 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
5694 and so that YYFPRINTF is guaranteed to be defined here.
5695
b1a81613
JD
56962007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5697
5698 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
5699 with...
5700 (muscle_percent_define_check_values): ... this more helpful function.
5701 Again, it's not used yet, but it will be.
5702 * src/muscle_tab.h: Likewise.
5703
71b61d4d
JD
5704 Improve some comments in parser table construction.
5705 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
5706 (generate_states): Don't mention ruleset, which is internal to closure.
5707 * src/closure.c (closure): Explain sorting of core and itemset, which
5708 is required for this function to behave correctly.
5709 * src/closure.h (closure): Mention sorting.
5710
2a6b783d
JD
57112007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
5712
5713 * src/lalr.c (state_lookahead_tokens_count): For code readability,
5714 move the check for disabled transitions to an aver since conflict
5715 resolution hasn't happened yet.
5716
5717 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
5718 labels a state as inconsistent just because it has error transitions.
5719 The original form of this check appeared in revision 1.1 of lalr.c,
5720 which was committed on 1991-12-21. Now (at least), changing the
5721 consistency label on such a state appears to have no useful effect in
5722 any of the places it is examined, which I enumerate below. The key
5723 point to understanding each item in this enumeration is that a state
5724 with an error transition is labelled consistent in the first place only
5725 if it has no rules, so the check cannot matter for states that have
5726 rules. (1) Labelling a state as inconsistent will cause set_conflicts
5727 to try to identify its conflicts, and a state must have *rules* to have
5728 conflicts. (2) Labelling a state as inconsistent will affect how
5729 action_row sets the default *rule* for the state. (3) Labelling a
5730 state as inconsistent will cause build_relations to add lookback edges
5731 to *rules* in that state.
5732 * src/state.h (struct state): Word the comment for member consistent
5733 more carefully.
5734
14462c2b
JD
57352007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
5736
5737 Don't depend on C99 features.
5738 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
5739 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
5740 * src/reader.c (check_and_convert_grammar): Fix for-loop.
5741 * src/state.c (state_mark_reachable_states): Fix for-loop.
5742 (state_remove_unreachable_states): Fix for-loop.
5743
5744 Don't widen struct state with member reachable just to temporarily
5745 record reachability. Instead, use a local bitset.
5746 * src/state.h (struct state): Remove member.
5747 * src/state.c (state_new): Don't initialize it.
5748 (state_mark_reachable_states): Rename to...
5749 (state_record_reachable_states): ... this, and use bitset.
5750 (state_remove_unreachable_states): Use bitset.
5751
5a43d418
JD
57522007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
5753
5754 * src/Makefile.am (yacc): Quote target action commands properly so
5755 that the yacc script isn't corrupt. Reported by Hans Aberg at
5756 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
5757
0c650a20
JD
5758 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
5759 the case of pure parsers. Reported by Frans Englich at
5760 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
5761 * THANKS: Add Frans Englich.
5762
61fee93e
JD
5763 * NEWS (2.3a+): In the %code entry, reference section `Bison
5764 Declaration Summary' from the manual now since the %code summary has
5765 moved there.
5766 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
5767 in the rules section must be terminated by semicolons.
5768
f124d423
JD
57692007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
5770
5771 Extend the front-end API for %define variables to more completely
5772 mirror the back-end. This will be useful in the future.
5773 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
5774 Update comments to mention the new front-end counterparts of these
5775 macros.
5776 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
5777 for muscle_string_decode and muscle_location_decode.
5778 (muscle_string_decode): New static function.
5779 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
5780 (muscle_percent_define_get, muscle_percent_define_ifdef): New
5781 functions.
5782 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
5783 muscle_percent_define_get to mimic the b4_percent_define_flag_if
5784 implementation more closely.
5785 (muscle_percent_define_invalid_value): New function.
5786 * src/muscle_tab.h (muscle_percent_define_get,
5787 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
5788 Prototype.
5789
75ad86ee
JD
57902007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
5791
5792 * NEWS (2.3a+): Mention yesterday's state-removal change.
5793 (2.3a): Remove the %language entry, which was added after 2.3a.
5794 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
5795 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
5796 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
5797 tests/existing.at: Update copyright date.
5798
5967f0cf
JD
57992007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
5800
5801 If conflict resolution makes states unreachable, remove those states,
5802 report rules that are then unused, and don't report conflicts in those
5803 states.
5804 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
5805 New global function.
5806 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
5807 function.
5808 * src/main.c (main): After conflict resolution, remove the unreachable
5809 states and update all data structures that reference states by number.
5810 * src/state.c (state_new): Initialize each state's reachable member to
5811 false.
5812 (state_mark_reachable_states): New static function.
5813 (state_remove_unreachable_states): New global function.
5814 * src/state.h (struct state): Add member bool reachable.
5815 (state_remove_unreachable_states): Prototype.
5816 * tests/conflicts.at (Unreachable States After Conflict Resolution):
5817 New test case.
5818 * tests/existing.at (GNU pic Grammar): Update test case output now that
5819 an unused rule is discovered.
5820
b09f4f48
JD
58212007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
5822
5823 Minor code cleanup in parser table construction.
5824 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
5825 (new_itemsets, save_reductions): Update for rename to nitemset.
5826 * src/closure.c (nritemset): Rename to...
5827 (nitemset): ... this since the "r" appears to meaningless and isn't
5828 used in the comments.
5829 (closure): Update for rename.
5830 * src/closure.h (nritemset): Update extern to...
5831 (nitemset): ... this.
5832 * src/lalr.c (LA): Fix a typo in comments.
5833 * src/print.c (print_core): Update for rename to nitemset.
5834 * src/print_graph.c (print_graph): Likewise.
5835 * src/state.h: Fix some typos in header comments.
5836
bbb44d83
PE
58372007-04-04 Paul Eggert <eggert@cs.ucla.edu>
5838
9b33de72
PE
5839 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
5840 still sticks to ASCII. Sorry!
5841
bbb44d83
PE
5842 * README-hacking: New file, taken mostly from coreutils, with changes
5843 for Bison. Contains much of the contents of:
5844 * README-cvs: Remove.
5845 * bootstrap: Sync from gnulib.
5846 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
5847 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
5848
29553547
JD
58492007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
5850
5851 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
5852 Setzer.
5853 (Java Differences): Fix some typos.
5854 * THANKS: Add Sebastian Setzer.
5855
01b477c6
PB
58562007-03-07 Paolo Bonzini <bonzini@gnu.org>
5857
730739e4
AD
5858 * data/java.m4 (b4_single_class_if): Remove.
5859 (b4_abstract_if): Look at "%define abstract".
5860 (b4_lexer_if): New.
5861 (b4_union_name): Rename...
5862 (b4_yystype): ... to this. Map to "%define stype".
5863 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
5864 b4_maybe_throws): Fix quoting.
5865 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
5866 * data/lalr1.java (Lexer interface): Always define.
5867 (Lexer interface within parser class): Remove.
5868 (YYLexer class): New, used when "%code lexer" is present.
5869 (constructor): When "%code lexer" is used, pass %lex-param
5870 to the lexer constructor.
5871 (yylex, yyparse): Remove %lex-param from method invocations
5872 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
5873
5874 * doc/bison.texinfo (Java Bison Interface): Mention "%define
5875 abstract". Rename "%define union_name" to "%define stype".
5876 Rename method names according to previous patch.
5877 (Java Scanner Interface): Describe "%code lexer" instead of
5878 "%pure-parser" and "%define single_class".
5879 (Java Differences): Mention "%code lexer".
5880
5881 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
5882 Include scanner here, using macros from tests/local.at.
5883 (AT_DATA_CALC_Y): Remove final argument.
5884 (_AT_CHECK_JAVA_CALC): Likewise.
5885 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
5886 of %locations and %error-verbose.
5887 (main): Test with and without %lex-param.
5888 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
5889 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 5890
122bea3a
JMG
58912007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5892
5893 DJGPP spefic issue. Inhibit the use of disallowed characters for
5894 file name genertion on Win98, WinXP, etc. These are |<>":?*\
5895 and concern testsuite case 46.
5896 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
5897 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
5898 * djgpp/config.bat: Inhibit the use of disallowed characters.
5899
9611cfa2
JD
59002007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5901
5902 Miscellaneous %define and %code cleanup.
5903 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
5904 values are interpreted.
5905 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
5906 documentation a little more.
5907 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
5908 muscle_percent_define_insert, muscle_percent_code_grow): New
5909 functions/macros.
5910 * src/muscle_tab.h (muscle_percent_define_insert,
5911 muscle_percent_code_grow): Prototype.
5912 * src/parse-gram.y (prologue_declaration): Use
5913 muscle_percent_define_insert and muscle_percent_code_grow when parsing
5914 %define and %code directives.
5915
5916 Make it easy to share %define boolean variables between the front-end
5917 and back-end. Though not used yet, this will be useful in the future.
5918 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
5919 Bison uses of names rather than just skeleton uses of names.
5920 (b4_percent_define_get, b4_percent_define_ifdef): Rename
5921 b4_percent_define_skeleton_variables(VARIABLE) to
5922 b4_percent_define_bison_variables(VARIABLE).
5923 (b4_percent_code_get, b4_percent_code_ifdef): Rename
5924 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
5925 b4_percent_code_bison_qualifiers(QUALIFIER).
5926 (b4_check_user_names_wrap): Update for renames.
5927 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
5928 muscle_percent_define_default): New functions mimicking
5929 b4_percent_define_flag_if and b4_percent_define_default.
5930
5931 For %define variables, report locations for invalid values and
bbb44d83 5932 redefinitions.
9611cfa2
JD
5933 * data/bison.m4 (b4_percent_define_flag_if): Read
5934 b4_percent_define_loc(VARIABLE) to report the location of an invalid
5935 value for VARIABLE.
5936 (b4_percent_define_default): Save a special location in
5937 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
5938 must later be reported as invalid.
5939 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
5940 functions.
5941 (muscle_percent_define_insert): Record the location of VARIABLE in
5942 muscle percent_define_loc(VARIABLE), and use it to report the previous
5943 location for a redefinition.
5944 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
5945 (muscle_percent_define_default): Update like b4_percent_define_default.
5946 (muscle_grow_user_name_list): Rename to...
5947 (muscle_user_name_list_grow): ... this for consistency and use
5948 muscle_location_grow.
5949 * src/muscle_tab.h (muscle_location_grow): Prototype.
5950 * tests/input.at (%define errors): Update expected output.
5951 * tests/skeletons.at (%define boolean variables: invalid skeleton
5952 defaults): New test case.
5953
0bf92491
JD
59542007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
5955
5956 * src/print.c (lookahead_set, state_default_rule): Remove.
5957 (print_reductions): Replace state_default_rule invocation with
5958 equivalent use of yydefact, which was computed in token_actions in
5959 tables.c.
5960 (print_results): Don't allocate lookahead_set.
5961
d3b12988
PB
59622007-02-27 Paolo Bonzini <bonzini@gnu.org>
5963
5964 * data/lalr1.java: Prefix all private members with yy.
5965
f57a7536
JD
59662007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
5967
5968 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 5969 Sebastien Fricker at
f57a7536 5970 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 5971 * THANKS: Add Sebastien Fricker.
f57a7536
JD
5972 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
5973 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
5974 accept a variable number of arguments.
5975
6404a5bf
JD
59762007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
5977
5978 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
5979
e4e09639
JMG
59802007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5981
5982 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
5983 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
5984 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
5985
d7e0a1a7
PE
59862007-02-11 Paul Eggert <eggert@cs.ucla.edu>
5987
5988 Undo my 2007-02-07 change, switching back to the c-strcase module
5989 introduced in the 2007-02-03 change. Bruno Haible reported that
5990 the 2007-02-07 change would be dangerous in Turkish if we add a
5991 language whose name contains "i", since "i" is not lowercase "I"
5992 in Turkish.
5993 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
5994 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
5995 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
5996 * m4/.cvsignore: Remove strcase.m4.
5997 * src/getargs.c: Revert 2007-02-07 change, as follows.
5998 Include c-strcase.h.
5999 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
6000
deee93a1
JD
60012007-02-11 Bruno Haible <bruno@clisp.org>
6002
6003 Enable the Java related testsuite tests when the only Java compiler
6004 found is a gcj < 4.3. Discussed at
6005 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
6006 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
6007
574add85
JD
60082007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
6009
6010 * data/Makefile.am: Update copyright date.
6011 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
6012 yypstate_new returns NULL.
6013 (yypstate_new): Return NULL if malloc does.
6014 * src/reader.c (packgram): Move translation of rule actions from the
6015 beginning of packgram to...
6016 (check_and_convert_grammar): ... here right before packgram is invoked
6017 so it's easier to write more complete comments, and remove redundant
6018 code.
6019
e785ccf7
JD
60202007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
6021
6022 As in semantic actions, make @$ in %initial-action, %destructor, and
6023 %printer imply %locations.
6024 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
6025 scanning @$.
6026 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
6027 (@$ in %initial-action implies %locations,
6028 @$ in %destructor implies %locations,
6029 @$ in %printer implies %locations): ... these new test cases.
6030
1cfe1ed7
PE
60312007-02-07 Paul Eggert <eggert@cs.ucla.edu>
6032
6033 Undo most of the 2007-02-03 change, switching to the strcase module
6034 now that gnulib strcase has been fixed.
6035 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
6036 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
6037 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
6038 * m4/.cvsignore: Add strcase.m4.
6039 * src/getargs.c: Revert 2007-02-03 change, as follows.
6040 Don't include c-strcase.h.
6041 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
6042 strcasecmp has "unspecified behavior" outside the POSIX locale,
6043 but it works fine in practice if at least one argument is ASCII,
6044 as is the case in Bison.
6045
0049ec86
PB
60462007-02-07 Paolo Bonzini <bonzini@gnu.org>
6047
6048 * tests/java.at: Skip tests if only one of javac/java is present.
6049 Reported by Joel E. Denny.
6050 * tests/atlocal.in: Adjust copyright years.
6051
60522007-02-05 Paolo Bonzini <bonzini@gnu.org>
6053
6054 * data/lalr1.java (Stack): Work around old verifiers that disallow
6055 access to the private fields of an inner class, from the outer class.
6056 We can make Stack's fields public because user code doesn't have access
6057 to the instance of Stack used by parse(). Reported by Paul Eggert.
6058
2c2b7220
PE
60592007-02-03 Paul Eggert <eggert@cs.ucla.edu>
6060
6061 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
6062 the right spot for these files?
6063 * bootstrap.conf (gnulib_modules): Add c-strcase.
6064 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
6065 c-strncasecmp.c.
6066 * src/getargs.c: Include c-strcase.h.
6067 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
6068 to avoid unspecified behavior.
6069
b2b81dae
JD
60702007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
6071
6072 * doc/bison.texinfo (Decl Summary): Correct typo.
6073
c1d19e10
PB
60742007-01-30 Paolo Bonzini <bonzini@gnu.org>
6075
6076 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
6077 Complain if the value does not match empty, "true" or "false".
6078 * data/c++.m4: Adjust default definitions of %define variables.
6079 * data/java.m4: Adjust default definitions of %define variables.
6080 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
6081 to above behavior.
6082 * tests/input.at (Boolean %define variables): Test new behavior.
6083
8405b70c
PB
60842007-01-29 Paolo Bonzini <bonzini@gnu.org>
6085
6086 * NEWS: Mention java.
6087 * TODO: Remove things that are done.
6088 * bootstrap.conf: Add javacomp-script and javaexec-script.
6089 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
6090
6091 * data/Makefile.am: Add new files.
6092 * data/java-skel.m4: New.
6093 * data/java.m4: New.
6094 * data/lalr1.java: New.
6095
6096 * doc/bison.texinfo: Put "A Complete C++ Example" under
6097 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
6098 under Other Languages.
6099
6100 * src/getargs.c (valid_languages): Add Java.
6101 * src/getargs.h (struct bison_language): Update size of string fields.
6102
6103 * tests/Makefile.am: Add java.at.
6104 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
6105 * tests/java.at: New.
6106 * tests/testsuite.at: Include it.
6107
3eb82471
JD
61082007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
6109
6110 Clean up.
6111 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
6112 at_directive_argv arguments so these no longer have to be global
6113 variables. Also, update the implementation for the following changes.
6114 (fail_for_at_directive_too_many_args,
6115 fail_for_at_directive_too_few_args): Add at_directive_name argument.
6116 (at_directive_name): Remove as at_directive_argv[0] will be used for
6117 this now.
6118 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
6119 for the directive name.
6120 (at_directive_argc, at_directive_argv): Make these local within
6121 skel_lex instead of global.
6122 (INITIAL): Update directive start action for above changes.
6123 (SC_AT_DIRECTIVE_ARG): Rename to...
6124 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
6125 (SC_AT_DIRECTIVE_SKIP_WS): Update.
6126 (scan_skel): Move yylex_destroy to...
6127 (skel_scanner_free): ... here.
6128 * tests/skeletons.at (installed skeleton file name): Rename to...
6129 (installed skeleton file names): ... this.
6130
148d66d8
JD
61312007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
6132
6133 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
6134 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
6135 Summary" not "Directives".
6136 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
6137 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
6138 since the former is now the more complete one.
6139 (Prologue Alternatives): Likewise and do the same for %defines.
6140 (Table of Symbols): Add summary of %code, add summary of %define, and
6141 move full %code documentation to...
6142 (Decl Summary): ... here for consistency with other entries in these
6143 sections.
6144 Move %define entry in order to keep this list alphabetized.
6145 Reword %define entry a little to put less emphasis on the skeleton
6146 concept, which most users shouldn't have to think about.
6147
665f0c24
PE
61482007-01-26 Paul Eggert <eggert@cs.ucla.edu>
6149
6150 Adjust to recent gnulib changes.
6151 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
6152 Add string.h, string_.h, unistd_.h, wchar_.h.
6153 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
6154 * src/system.h: Don't include <stpcpy.h>; this is now done by
6155 <string.h>.
6156
592d0b1e
PB
61572007-01-23 Paolo Bonzini <bonzini@gnu.org>
6158
6159 Simplify implementation of unqualified %code, implement macros for
6160 uniform treatment of boolean %define flags. Document %define.
6161 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
6162 b4_percent_code_ifdef): New.
6163 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
6164 * data/c++.m4: Define default value for global_tokens_and_yystype.
6165 * data/glr.cc: Likewise.
6166 * data/location.cc: Use b4_percent_define_flag_if.
6167
148d66d8 6168 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
6169
6170 * src/parse-gram.y (Unqualified %code): Change muscle name to
6171 b4_percent_code().
6172 (content.opt): Default to empty.
6173
a7867f53
JD
61742007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6175
6176 Implement support for relative and absolute skeleton file names.
6177 Discussed starting at
6178 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
6179 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
6180 (Bison Options): Document in --skeleton entry.
6181 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
6182 full_skeleton can't necessarily hold all of pkgdatadir.
6183 If the specified skeleton file name contains a `/', don't prepend
6184 pkgdatadir.
6185 * src/parse-gram.y (prologue_declaration): If the specified skeleton
6186 file name contains a `/', prepend the grammar file directory.
6187 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
6188 * skeletons.at: New file.
6189 (relative skeleton file names): New test case.
6190 (installed skeleton file names): New test case.
6191 * tests/testsuite.at: Include skeletons.at.
6192
6193 * bootstrap: Update copyright to 2007.
6194
830c9b18
PB
61952007-01-17 Paolo Bonzini <bonzini@gnu.org>
6196
6197 * bootstrap: Remove occurrences of .#bootmp from the files.
6198
a8c2e813
AD
61992007-01-17 Akim Demaille <akim@epita.fr>
6200
6201 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
6202 nonterminals.
6203 Use per-type %printer.
6204
279cabb6
JD
62052007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
6206
6207 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
6208 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6209 djgpp/config.site, src/files.c, src/files.h, src/main.c,
6210 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
6211 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
6212 tests/glr-regression.at, tests/input.at, tests/local.at,
6213 tests/output.at, tests/torture.at: Update copyright to 2007.
6214
bb32f4f2
AD
62152007-01-16 Akim Demaille <akim@epita.fr>
6216
6217 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
6218 error code.
6219 (Calc++ Scanner): Exit with failure if we can't open the input
6220 file.
6221 Accept "-" standing for stdin.
6222 (Calc++ Top Level): Print the result only if the parsing was
6223 successful.
6224
7cff04b5
AD
62252007-01-16 Akim Demaille <akim@epita.fr>
6226
6227 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
6228
a4e25e1d
JD
62292007-01-15 Paolo Bonzini <bonzini@gnu.org>
6230 and Joel E. Denny <jdenny@ces.clemson.edu>
6231
6232 Clean up %define and %code implementation in M4 some. Most
6233 importantly, rename all related macros to be in the b4_percent_define
6234 and b4_percent_code namespaces. Also, complete support for `.' in
6235 %define variable names and %code qualifiers.
6236 * data/bison.m4 (b4_check_user_names): Check for special
6237 "SKELETON-NAMESPACE(name)" macros instead of using two nested
6238 m4_foreach loops.
6239 (b4_get_percent_define, b4_get_percent_code): Rename to...
6240 (b4_percent_define_get, b4_percent_code_get): ... these.
6241 Extend documentation with examples.
6242 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
6243 b4_percent_define_skeleton_variables and
6244 b4_percent_code_skeleton_qualifiers.
6245 Expect any value for the %define variable `foo' to be stored in the
6246 macro named `b4_percent_define(foo)'; expect any %code blocks for the
6247 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
6248 expect any unqualified %code blocks to be stored in a macro named
6249 `b4_percent_code_unqualified'.
6250 Use m4_indir so that %define variable names and %code qualifiers can
6251 contain `.', which is allowed by the grammar parser.
6252 (b4_percent_define_default): New macro to set a default value for a
6253 %define variable.
6254 (m4_wrap): Update wrapped code, and fix some underquoting.
6255 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
6256 Expect grammar uses of %define variables and %code qualifiers to be
6257 defined in b4_percent_define_user_variables and
6258 b4_percent_code_user_qualifiers.
6259 * data/c++.m4: Use b4_percent_define_default rather than
6260 m4_define_default. Fix some underquoting. Skeleton usage of %define
6261 variable define_location_comparison now implies skeleton usage of
6262 %define variable filename_type.
6263 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6264 data/push.c, data/yacc.c: Update macro names.
6265 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
6266 muscle names.
6267
e37c665c
JMG
62682007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6269
6270 DJGPP specific issues.
6271
6272 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
6273 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
6274
7d2d521f
JD
62752007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6276
6277 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
6278 run parsers in all tests so that Valgrind is invoked during
6279 maintainer-check-valgrind.
6280 (Duplicate representation of merged trees): Free all semantic values.
6281 (Duplicated user destructor for lookahead): Likewise.
6282
e0ac9b4b
JD
62832007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6284
6285 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
6286 command-line prefix.
6287 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
6288 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
6289 miss Valgrind messages.
6290 (Exploding the Stack Size with Malloc): Likewise.
6291
78143faa
JD
62922007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
6293
6294 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
6295 locals. Reported by Juan Manuel Guerrero at
6296 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
6297 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
6298 Fix some indentation also.
6299 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
6300 explaining this issue.
6301
7ecec4dd
JD
63022007-01-09 Paolo Bonzini <bonzini@gnu.org>
6303 and Joel E. Denny <jdenny@ces.clemson.edu>
6304
6305 Simplify union and prologue handling, and escape union and lex/parse
6306 params with digraphs.
6307 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
6308 values to the empty string since these are no longer guaranteed
6309 initialized by the front-end.
6310 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
6311 braces around b4_user_stype since this is no longer done by the
6312 front-end.
6313 * src/files.c, src/files.h (pre_prologue_obstack,
6314 post_prologue_obstack): Remove.
6315 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
6316 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
6317 with digraphs. This fixes lex params and parse params.
6318 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
6319 * src/output.c (prepare): Remove muscle insertion of the prologues.
6320 (output): Remove freeing of pre_prologue_obstack and
6321 post_prologue_obstack.
6322 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
6323 than prologue_augment for prologue parsing so you don't need prologue
6324 obstacks.
5c80250c
JD
6325 (grammar_declaration): For %union RHS, use `braceless' instead of
6326 "{...}" so that braces are already stripped and code is escaped with
6327 digraphs.
7ecec4dd
JD
6328 * src/reader.c (prologue_augment): Remove.
6329 (reader): Remove initialization of pre_prologue_obstack and
6330 post_prologue_obstack.
6331 * src/reader.h (prologue_augment): Remove.
6332
6333 * data/c.m4: Remove stray parenthesis.
6334
16dc6a9e
JD
63352007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6336
6337 Remove quotes from variables names in %define directives and from
6338 qualifiers in %code directives, and restrict the characters that are
6339 allowed in them to M4-friendly ones. For %define, continue to support
6340 the quoted form as a deprecated feature. Discussed starting at
6341 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
6342 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
6343 %code.
6344 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
6345 (Decl Summary): In %defines entry, update mention of `%code requires'
6346 and `%code provides'.
16dc6a9e
JD
6347 (C++ Location Values): Update %define uses.
6348 (Calc++ Parser Interface): Likewise.
6349 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 6350 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
6351 * src/parse-gram.y (prologue_declaration): For %define variables, use
6352 `variable' instead of `STRING'.
6353 (grammar_declaration): For %code qualifiers, use `ID' instead of
6354 `STRING'.
6355 (variable): New nonterminal that takes an `ID' or a `STRING'.
6356 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
6357 and %define uses.
6358 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
6359 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
6360 (%define errors): Update %define uses.
6361
e9813cd4
JD
63622007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6363
6364 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
6365 instead of muscle_insert for %define values so that M4-special
6366 characters are replaced with digraphs.
6367 * tests/input.at (%define errors): Extend to check weird values.
6368
6afc30cc
JD
63692007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6370
6371 Instead of having skeletons declare all valid %define variables and
6372 %code qualifiers, provide macros that retrieve the associated values
6373 and build these lists automatically. Thus Bison will now warn when a
6374 variable or qualifier is not used by the skeleton in the current
6375 invocation regardless of whether it might sometimes be used by that
6376 skeleton in other invocations. Also, move all %define value macros to
6377 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
6378 form, which is replaced by %code.
6379 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
6380 (b4_check_user_names): ... this, and change the series of valid name
6381 arguments to a single list argument for names used in the skeleton
6382 similar to the existing list argument for names used in the grammar.
6383 Warn instead of complaining.
6384 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
6385 values and %code code, to format %code code properly, and to build
6386 lists of all %define variables and %code qualifiers used in the
6387 skeleton: b4_skeleton_percent_define_variables and
6388 b4_skeleton_percent_code_qualifiers.
6389 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
6390 Remove, and...
6391 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
6392 the skeleton names lists can finish building first. In place of
6393 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
6394 expect the lists b4_user_percent_define_variables and
6395 b4_user_percent_code_qualifiers.
6396 * data/c++.m4: Where setting default values for b4_parser_class_name,
6397 b4_location_type, b4_filename_type, b4_namespace, and
6398 b4_define_location_comparison, update their names to the
6399 b4_percent_define_ namespace.
6400 * data/glr.c: Don't use b4_check_percent_define_variables and
6401 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6402 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
6403 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 6404 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
6405 * data/location.cc: Use b4_get_percent_define.
6406 * data/push.c: Don't use b4_check_percent_define_variables and
6407 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
6408 * data/yacc.c: Likewise, and don't call m4_exit in
6409 b4_use_push_for_pull_if or m4_wrap code will never execute.
6410 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
6411 Rename to...
6412 (muscle_grow_user_name_list): ... this for consistency with the
6413 terminology used in bison.m4.
6414 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
6415 %define variable names, and rename muscle used_percent_define_variables
6416 to user_percent_define_variables.
6417 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
6418 user_percent_code_qualifiers.
6419 (content): Remove.
6420 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
6421 {CODE} form is no longer accepted.
6422 * tests/input.at (Reject bad %code qualifiers): Rename to...
6423 (Reject unused %code qualifiers): ... this, and update test output.
6424 (%define error): Update test output.
6425
7eb8a0bc
JD
64262007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
6427
6428 Check for unrecognized %define variables similar to checking for
6429 unrecognized %code qualifiers. Check for redefined %define variables.
6430 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
6431 generalizes...
6432 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
6433 (b4_check_percent_define_variables): New, also wraps it.
6434 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
6435 variables using b4_check_percent_define_variables.
6436 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
6437 all those exercised in the test suite and all those listed in the
6438 `Default values' section of c++.m4. Are there others?
6439 * data/push.c, data/yacc.c: Declare no valid %define variables.
6440 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
6441 similar to muscle_find, but it works even when the muscle stores a
6442 const value.
6443 (muscle_grow_used_name_list): New function for constructing the used
6444 name list muscles that b4_check_for_unrecognized_names requires.
6445 * src/parse-gram.y (prologue_declaration): Warn if a variable is
6446 %define'd more than once. Define the b4_used_percent_define_variables
6447 muscle with muscle_grow_used_name_list.
6448 (grammar_declaration): Abbreviate %code code with
6449 muscle_grow_used_name_list.
6450 * tests/input.at (%define errors): New.
6451
3fc65ead
JD
64522007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6453
6454 Provide warn_at, complain_at, and fatal_at function callbacks to the
6455 skeletons, and use this for %code qualifier complaints.
6456 * data/bison.m4 (b4_error_at): New, invoked by...
6457 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
6458 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
6459 @fatal_at(...@) directives.
6460 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
6461 qualifiers in b4_used_percent_code_qualifiers and to use
6462 b4_complain_at.
6463 * src/location.c, src/location.h (boundary_set_from_string): New global
6464 function.
6465 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
6466 function.
6467 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
6468 to b4_used_percent_code_qualifiers.
6469 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
6470 function.
6471 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
6472 (lineno): Rename to...
6473 (out_lineno): ... this so I don't misunderstand it again.
6474 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
6475 here; these newlines are in the input but not the output file.
6476 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
6477 (at_directive_perform): ... this new static function, and add handling
6478 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
6479 directives.
6480 * tests/input.at (Reject bad %code qualifiers): Update test output with
6481 locations and extend.
6482
6483 * tests/output.at (Output file name: [, Output file name: ]): Remove
6484 bogus comment about these tests failing.
6485
1c7b7e1d
JD
64862007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6487
6488 Clean up b4_check_percent_code_qualifiers a little.
6489 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
6490 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
6491 documentation and add examples.
6492 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
6493 qualifiers here.
6494
08af01c2
JD
64952007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6496
6497 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
6498 unreliable -- especially when they're hidden inside another macro.
6499 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
6500 data/c.m4: Remove m4_divert(-1).
6501 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
6502 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
6503 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 6504 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
6505 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
6506 pushed and popped by m4sugar, should be first on the stack.
6507
6508 Provide warn, complain, and fatal function callbacks to the skeletons.
6509 This provides more flexibility than m4_fatal, improves the error
6510 message format, and captures messages for translation. Discussed
6511 starting at
6512 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
6513 * data/bison.m4 (b4_error): New, invoked by...
6514 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
6515 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
6516 directives. Because these M4 macros might be called when the current
6517 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
6518 the previous removal of uses of m4_divert, which caused trouble.
6519 (b4_check_percent_code_qualifiers): Use b4_complain instead of
6520 m4_fatal to report unrecognized %code qualifiers.
6521 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
6522 push parser requests.
6523 * data/glr.c: Use b4_complain instead of m4_fatal to report
6524 non-deterministic push parser requests.
6525 Update @output usage to @output(...@) form.
6526 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
6527 report missing %defines. Update @output usage to @output(...@) form.
6528 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
6529 @output(...@) form.
6530 * src/main.c (main): Invoke skel_scanner_free.
6531 * src/scan-skel.h (skel_scanner_free): Prototype new function.
6532 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
6533 obstack_for_string from flex-scanner.h.
6534 (YY_DECL): Use to declare skel_lex static.
6535 (decode_at_digraphs): Remove; now handled in the new
6536 SC_AT_DIRECTIVE_ARG start condition.
6537 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
6538 functions.
6539 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
6540 at_directive_argv): New static globals.
6541 (INITIAL): Use fail_for_invalid_at.
6542 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
6543 recognize the start of a generalized `@directive(...@)' form and
6544 start...
6545 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
6546 directive args (using the new obstack_for_string), to decode the
6547 contained @ diagraphs, and to perform the directive. It recognizes
6548 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
6549 @output(...@).
6550 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
6551 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
6552 `@,'.
6553 (scan_skel): Initialize obstack_for_string on the first call.
6554 (skel_scanner_free): New function to free obstack_for_string.
6555 * tests/input.at (Reject bad %code qualifiers): Update test output.
6556
8e0a5e9e
JD
65572007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
6558
6559 Consolidate the 4 prologue alternative directives (%code, %requires,
6560 %provides, and %code-top) into a single %code directive with an
6561 optional qualifier field. Discussed at
6562 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
6563 * NEWS (2.3a+): Rewrite the existing entry for the prologue
6564 alternatives.
6565 * doc/bison.texinfo (Prologue Alternatives): Update.
6566 (Decl Summary): Update to %code "requires" and %code "provides".
6567 (Calc++ Parser): Update to %code "requires".
148d66d8 6568 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
6569 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
6570 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
6571 are replaced by b4_percent_code_provides and b4_percent_code_requires,
6572 which are skeleton-specific.
6573 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
6574 declare what %code qualifiers it supports and to complain if any other
6575 qualifiers were used in the grammar.
6576 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
6577 and b4_user_code([b4_percent_code_provides]) in place of
6578 b4_user_requires and b4_user_provides.
6579 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
6580 Add b4_user_code([b4_percent_code_top]) and
6581 b4_user_code([b4_percent_code]).
6582 Invoke b4_check_percent_code_qualifiers.
6583 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6584 PERCENT_REQUIRES): Remove.
6585 (grammar_declaration): Remove RHS's for %code-top, %provides, and
6586 %requires. Rewrite the %code RHS as the unqualified form defining the
6587 muscle b4_percent_code. Add another RHS for the qualified %code form,
6588 which defines muscles of the form b4_percent_code_QUALIFIER and the
6589 b4_used_percent_code_qualifiers muscle.
6590 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
6591 PERCENT_REQUIRES): Remove.
6592 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
6593 %code "requires" and %code "provides".
6594 * tests/input.at (Reject bad %code qualifiers): New.
6595
95021767
JD
65962007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6597
6598 Use the new code_props interface for destructors and printers.
6599 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
6600 printer_location members, and change the type of the destructor and
6601 printer members to code_props.
6602 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
6603 symbol_printer_get, semantic_type_destructor_set,
6604 semantic_type_printer_set, default_tagged_destructor_set,
6605 default_tagless_destructor_set, default_tagged_printer_set,
6606 default_tagless_printer_set): Use code_props in arguments and return
6607 types in place of char const * and location.
6608 (symbol_destructor_location_get, symbol_printer_location_get): Remove
6609 since the locations are now contained in the return of
6610 symbol_destructor_get and symbol_printer_get.
6611 * src/output.c (symbol_destructors_output, symbol_printers_output):
6612 Replace with...
6613 (symbol_code_props_output): ... this to eliminate duplicate code.
6614 (output_skeleton): Update to use symbol_code_props_output.
6615 * src/reader.c (symbol_should_be_used): Update use of
6616 symbol_destructor_get.
6617 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6618 Update uses of the various _destructor_set and _printer_set functions.
6619 * src/symtab.c: (default_tagged_destructor_location,
6620 default_tagless_destructor_location, default_tagged_printer_location,
6621 default_tagless_printer_location): Remove since we...
6622 (default_tagged_destructor, default_tagless_destructor,
6623 default_tagged_printer, default_tagless_printer): ... change the type
6624 of these to code_props.
6625 (symbol_new, semantic_type_new, symbol_destructor_set,
6626 semantic_type_destructor_set, symbol_destructor_get,
6627 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
6628 symbol_check_alias_consistency, default_tagged_destructor_set,
6629 default_tagless_destructor_set, default_tagged_printer_set,
6630 default_tagless_printer_set): Update.
6631 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
6632 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
6633 code_props members.
6634 (symbol_print): Use SYMBOL_CODE_PRINT.
6635
f6857bbf
JD
66362007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
6637
6638 Use the new code_props interface for rule actions.
6639 * src/symlist.h (symbol_list): Replace action, action_location, and
6640 used members with a code_props action_props member.
6641 * src/reader.c (symbol_should_be_used, grammar_rule_check,
6642 grammar_midrule_action, grammar_current_rule_merge_set,
6643 grammar_current_rule_symbol_append, packgram): Update.
6644 * src/scan-code.h (translate_rule_action): Remove, no longer used.
6645 * src/scan-code.l (handle_action_dollar): Update.
6646 (translate_rule_action): Remove, no longer used.
6647 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
6648
7c0c6181
JD
66492007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6650
6651 Use the new code_props interface in parse-gram.y.
6652 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
6653 Update all uses of translate_* functions to use the new code_props
6654 interface and to use gram_scanner_last_string_free and
6655 code_scanner_last_string_free where possible.
6656 (grammar_declaration): symbol_list_destructor_set and
6657 symbol_list_printer_set now perform the translation, so don't do it
6658 here. Use gram_scanner_last_string_free where possible.
6659 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
6660 translate_code): Remove, no longer used.
6661 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
6662 symbol_list_printer_set): Perform code translation here rather than
6663 depending on the caller to do so.
6664
6665 * src/symlist.h (struct symbol_list): Correct some documentation typos.
6666 * src/scan-gram.h (gram_last_string): Remove declaration.
6667 * src/scan-gram.l (last_string): Declare it static.
6668
28e52c0d
JD
66692007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6670
6671 Encapsulate code properties and related functionality for the various
6672 destructors, printers, and actions into a code_props structure and
6673 interface. This patch merely implements code_props in scan-code.h and
6674 scan-code.l. Future patches will rewrite other modules to use it.
6675 Discussed starting at
6676 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
6677 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
6678 consistently initialize const structs that have an empty location
6679 field.
6680 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
6681 to ensure consistency.
6682 * src/scan-code.h (code_props): New structure.
6683 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
6684 function, macro, and const global variable for initializing a
6685 code_props with no code.
6686 (code_props_plain_init, code_props_symbol_action_init,
6687 code_props_rule_action_init, code_props_translate_code): The rest of
6688 the new code_props functional interface. Among other things, the init
6689 functions set the code_props kind field so that
6690 code_props_translate_code will know whether to behave like
6691 translate_symbol_action, translate_rule_action, or translate_code.
6692 These old translate functions must remain until all other modules are
6693 updated to use the new code_props interface.
6694 (code_scanner_last_string_free): New function similar to
6695 gram_scanner_last_string_free.
6696 (code_scanner_free): Add documentation.
6697 * src/scan-code.l: Implement the new interface.
6698 (code_lex): Make it static, add a code_props* argument, and remove the
6699 rule argument.
6700 (last_string): New static global similar to the one in scan-gram.l.
6701 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
6702 instead of rule.
6703 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
6704 code_props since Bison may one day use this information for destructors
6705 and printers.
6706 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
6707 (handle_action_dollar): Use symbol_list_n_get and set used flag
6708 directly since symbol_list_n_used_set is removed.
6709 (translate_action): Add a code_props* argument and remove the rule,
6710 action, and location arguments. Pass the code_props* on to code_lex.
6711 (translate_rule_action, translate_symbol_action, translate_code):
6712 Rewrite as wrappers around the new code_props interface.
6713 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
6714 it would eventually need to break the encapsulation of code_props.
6715
96034983
JD
67162007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
6717
6718 * etc/.cvsignore: New.
6719
945e396c
JD
67202007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
6721
6722 Add maintainer-push-check to run maintainer-check using push parsing in
6723 place of pull parsing where available.
6724 * Makefile.am (maintainer-push-check): New.
6725 * data/bison.m4 (b4_use_push_for_pull_if): New.
6726 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
6727 appropriately based on their existing values.
6728 (yypush_parse): Don't print push-parser-specific diagnostics if push
6729 parsing is being used in place of pull parsing.
6730 * data/yacc.c: If push parsing should replace pull parsing, redirect to
6731 push.c.
6732 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
6733 variable, and insert b4_use_push_for_pull_flag into muscles.
6734 * tests/Makefile.am (maintainer-push-check): New.
6735
7d596384
JD
67362006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
6737
6738 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
6739 (whether successful or failed) so that yypush_parse can be invoked
6740 again to start a new parse using the same yypstate.
6741 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
6742 check multiple yypull_parse invocations on the same yypstate. For pull
6743 mode, extend to check multiple yyparse invocations.
6744 (Exploding the Stack Size with Alloca): Extend to try with
6745 %push-pull-parser.
6746 (Exploding the Stack Size with Malloc): Likewise.
6747
6748 * tests/calc.at (Simple LALR Calculator): Don't specify
6749 %skeleton "push.c" since %push-pull-parser implies that now.
6750 * tests/headers.at (export YYLTYPE): Don't check for the push
6751 declarations. Otherwise, this test case can't be used to see if push
6752 mode can truly emulate pull mode.
6753 * tests/input.at (Torturing the Scanner): Likewise.
6754 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
6755 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
6756 AT_YACC_IF, which now includes the case of push mode since %skeleton
6757 need not be used for push mode. This will be more intuitive once
6758 push.c is renamed to yacc.c.
6759
7172e23e
JD
67602006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
6761
6762 For push mode, convert yyparse from a macro to a function, invoke yylex
6763 instead of passing a yylexp argument to yypull_parse, and don't
6764 generate yypull_parse or yyparse unless %push-pull-parser is declared.
6765 Discussed starting at
6766 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
6767 * data/bison.m4 (b4_pull_if): New.
6768 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
6769 * data/push.c: Improve M4 quoting a little.
6770 (b4_generate_macro_args, b4_parenthesize): Remove.
6771 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
6772 any time a pull parser is requested.
6773 Don't #define this as a wrapper around yypull_parse. Instead, when
6774 both push and pull are requested, make it a function that does that
6775 same thing.
6776 (yypull_parse): If there's a b4_prefix, #define this to
6777 b4_prefix[pull_parse] when both push and pull are requested.
6778 Don't define this as a function unless both push and pull are
6779 requested.
6780 Remove the yylexp argument and hard-code yylex invocation instead.
6781 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
6782 %push-parser.
6783 * src/getargs.c (pull_parser): New global initialized to true.
6784 * getargs.h (pull_parser): extern it.
6785 * src/output.c (prepare): Insert pull_flag muscle.
6786 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
6787 (prologue_declaration): Set both push_parser and pull_parser = true for
6788 %push-pull-parser. Set push_parser = true and pull_parser = false for
6789 %push-parser.
6790 * src/scan-gram.l: Don't accept %push_parser as an alternative to
6791 %push-parser since there's no backward-compatibility concern here.
6792 Scan %push-pull-parser.
6793 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
6794 instead of %push-parser.
6795 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
6796 prototype it in the module that calls yyparse.
6797 * tests/input.at (Torturing the Scanner): Likewise.
6798 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
6799
2e7944cb
JD
68002006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
6801
6802 Update etc/bench.pl. Optimize push mode a little (the yyn change
6803 deserves most of the credit).
6804 * Makefile.am (SUBDIRS): Add etc subdirectory.
6805 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
6806 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
6807 yytoken, yyval, and yyloc declarations to...
6808 (yyparse or yypush_parse): ... here to improve performance. For
6809 yypush_parse invocations after the first, be sure to assign yyn its old
6810 value again.
6811 (yypstate_new): Don't bother initializing the yyresult field since the
6812 initial value isn't used.
6813 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
6814 remove the #define that, in push mode, set it to yyps->NAME.
6815 * etc/Makefile.am: New.
6816 * etc/bench.pl: Remove and build it instead from...
6817 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
6818 "tests/bison" from the build directory by default rather than just
6819 invoking "bison" from $PATH.
6820 (calc_grammar): Update push parser code: don't declare yylval globally,
6821 don't define yyparse_wrapper, and don't #define yyparse.
6822 (bench_grammar): Update to check all working combinations of yacc.c,
6823 push.c, impure, pure, pull, and push.
6824
c3d50342
JD
68252006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
6826
6827 For push mode, add pull wrappers around yypush_parse.
6828 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
6829 (yypull_parse): New function wrapping yypush_parse.
6830 (yyparse): New #define wrapping yypull_parse.
6831 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
6832 is declared.
6833 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
6834 prototype yylex in the module that calls yyparse, and don't prototype
6835 yyparse there. Otherwise, the yyparse expansion won't compile.
6836 * tests/input.at (Torturing the Scanner): Likewise.
6837
94ebeba5
JD
68382006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
6839
6840 Enable push parsers to operate in impure mode. Thus, %push-parser no
6841 longer implies %pure-parser. The point of this change is to move
6842 towards being able to test the push parser code by running the entire
6843 test suite as if %push-parser had been declared.
6844 * data/push.c (yypush_parse): For impure mode, remove the
6845 yypushed_char, yypushed_val, and yypushed_loc arguments.
6846 Instead, declare these as local variables initialized to the global
6847 yychar, yylval, and yylloc.
6848 For the first yypush_parse invocation only, restore the initial values
6849 of these global variables when it's time to read a token since they
6850 have been overwritten.
6851 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
6852 %push-parser.
6853 * tests/calc.at (Simple LALR(1) Calculator): Always declare
6854 %pure-parser along with %push-parser since this test case was designed
6855 for pure push parsers.
6856 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
6857 (AT_YACC_OR_PUSH_IF): New.
6858 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
6859 add a note that it's still wrong for some cases (as it has been for a
6860 while).
6861 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
6862 %push-parser no longer implies %pure-parser.
6863
a0633178
JD
68642006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6865
6866 Remove some unnecessary differences between the pull parser code and
6867 the push parser code. This patch enables yynerrs in push mode.
6868 * data/push.c: Reformat M4 a little.
6869 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
6870 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
6871 because push mode is on. Instead, if pure mode is on, move yynerrs
6872 to...
6873 (b4_declare_parser_state_variables): ... here.
6874 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
6875 to yyps->NAME so it can be used in yypush_parse.
6876 (yypush_parse): Don't omit uses of yynerrs in push mode.
6877
8646b6a3
JD
68782006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6879
6880 Fix bug such that the first pushed token's value and location are
6881 sometimes overwritten (sometimes by %initial-action) before being used.
6882 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
6883 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
6884 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
6885 more closely mimic the pull parser logic.
6886 Don't copy the pushed token to yychar, yylval, and yylloc until it's
6887 time to read a token, which is after any initialization of yylval and
6888 yylloc.
6889 (gottoken): Rename label to...
6890 (yyread_pushed_token): ... for clarity and to avoid infringing on the
6891 user namespace.
6892
9baf4d74
JD
68932006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6894
6895 Rearrange initialization of the parser state variables so that the
6896 skeleton doesn't have to have a copy for pull mode and another for push
6897 mode. This patch also fixes at least a bug such that yylloc was not
6898 initialized (with b4_location_initial_line and
6899 b4_location_initial_column) upon calling yypush_parse. However, that
6900 initialization now overwrites the first token's location;
6901 %initial-action assigning @$ already did the same thing, and both bugs
6902 will be fixed in a later patch.
6903 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
6904 (b4_declare_parser_state_variables): Remove initialization of yytoken,
6905 yyss, yyvs, yyls, and yystacksize.
6906 (yypstate_new): Remove initialization of some yypstate fields: yystate,
6907 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
6908 yylsp.
6909 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
6910 yyps->NAME so it can be used in yypush_parse.
6911 (yyparse or yypush_parse): For yypush_parse, don't print the
6912 "Starting parse" diagnostic for invocations after the first.
6913 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
6914 yypush_parse, only do it for the first invocation.
6915 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
6916 initialization to occur in yypush_parse but only on the first
6917 invocation.
6918
23522164
JD
69192006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6920
6921 * data/push.c: Add CPP guards around push parser declarations in both
6922 the header and the code file.
6923 In the code file, move the push parser declarations to the same place
6924 they appear in the header file.
6925 Clean up the M4 some, especially the inconsistent underquoting in
6926 some b4_c_function_def and b4_c_function_decl uses.
6927
bb010fe5
JD
69282006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6929
6930 Encapsulate the push parser state variables into an M4 macro so the
6931 push skeleton doesn't have to list them again for pull mode's yyparse.
6932 For push mode, remove yypush_parse's local equivalents of these
6933 variables to eliminate unnecessary copying between the two sets at
6934 run-time. This patch also fixes at least a bug related to multiple
6935 %initial-action invocations in push mode.
6936 * data/push.c (b4_declare_parser_variables): Rename to...
6937 (b4_declare_scanner_communication_variables): ... this for clarity and
6938 update both uses.
6939 (b4_declare_yyparse_variables): Remove and move its contents to the one
6940 spot where it was invoked.
6941 (b4_declare_parser_state_variables): New macro containing the parser
6942 state variables required by push mode.
6943 (struct yypstate): Replace all fields but yynew with
6944 b4_declare_parser_state_variables.
6945 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
6946 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
6947 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
6948 (yyparse or yypush_parse): For yyparse in pull mode, replace local
6949 parser state variable declarations with
6950 b4_declare_parser_state_variables.
6951 Don't initialize parser state variables when calling yypush_parse since
6952 yypstate_new already does that.
6953 Invoke the user's initial action only upon the first yypush_parse
6954 invocation.
6955 Remove all code that copies between the local parser state variables
6956 and the yypstate.
6957
2d212f8c
JD
69582006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6959
6960 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
6961 prevent a name collision in a future patch where these names will
6962 sometimes be #define'd.
6963 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
6964 since it no longer has the same name as the existing argument.
6965 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
6966
e6e704dc
JD
69672006-12-19 Paolo Bonzini <bonzini@gnu.org>
6968 and Joel E. Denny <jdenny@ces.clemson.edu>
6969
6970 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
6971 that the argument is case-insensitive, and there's no `=' here.
6972 For the %skeleton entry, mention that %language is better.
6973 (Bison Options): Likewise for --language and --skeleton. Move the
6974 --skeleton entry so that the `Tuning the parser' section is sorted
6975 alphabetically on long options.
6976 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
6977 %language directive in detail here; cross-reference the %language
6978 documentation instead.
6979 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
6980 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 6981 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
6982 * examples/extexi (normalize): Instead of replacing every %require
6983 argument with the current Bison version, just substitute for
6984 `@value{VERSION}'. This guarantees that we're testing what actually
6985 appears in the documentation.
6986 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
6987 rather than `@VERSION@'.
6988
0e021770
PE
69892006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6990
fd575f05
PE
6991 * NEWS: Reword the %language news a bit, and put it earlier.
6992
0e021770
PE
6993 * src/getargs.c (skeleton_arg): Last arg is now location const *.
6994 Rewrite to simplify the logic.
6995 (language_argmatch): Likewise.
fd575f05
PE
6996 (program_name): We now own this var.
6997 * src/getargs.h (struct bison_language): Use char[] rather than
6998 const char *.
0e021770
PE
6999
7000 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
7001 Java is supported.
7002 * src/complain.c (program_name): Remove decl; no longer needed.
7003 * src/main.c (program_name): Remove; now belongs to getargs.
7004
70052006-12-18 Paolo Bonzini <bonzini@gnu.org>
7006
7007 * NEWS: Document %language.
7008
7009 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
7010
7011 * data/c-skel.m4, data/c++-skel.m4: New files.
7012 * data/glr.c: Complain on push parsers.
7013
7014 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
7015 over %skeleton.
148d66d8 7016 (Decl Summary): Document %language and %skeleton.
0e021770
PE
7017 (Command line): Document -L.
7018
7019 * examples/extexi: Rewrite %require directive.
7020 * examples/calc++/Makefile.am: Pass VERSION to extexi.
7021
7022 * src/files.c (compute_exts_from_gc): Look in language structure
7023 for .y extension.
7024 (compute_file_name_parts): Check whether .tab should be added.
7025 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
7026 (language, skeleton_arg, language_argmatch): New.
7027 (long_options): Add --language.
7028 (getargs): Use skeleton_arg, add -L/--language.
7029 * src/getargs.h: Include location.h.
7030 (struct bison_language, language, skeleton_arg, language_argmatch): New.
7031 * src/output.c (prepare): Pick default skeleton from struct language.
7032 Don't dispatch C skeletons here.
7033 * src/parse-gram.y (PERCENT_LANGUAGE): New.
7034 (prologue_declaration): Add "%language" rule, use skeleton_arg.
7035 * src/scan-gram.l ("%language"): New rule.
7036
7037 * tests/calc.at: Test %skeleton and %language.
7038 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
7039 (AT_GLR_IF): Look for %skeleton "glr.cc".
7040 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
7041 (AT_YACC_IF): Reject %language.
7042
5691bf57
PE
70432006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7044
db06f0ce
PE
7045 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
7046 since it wasn't used; only the typedef name 'semantic_type' is needed.
7047 Also, omit trailing white space.
7048
5691bf57
PE
7049 * bootstrap: Sync from coreutils.
7050 (gnulib_extra_files): Add build-aux/announce.gen.
7051 (slurp): Adjust .gitignore files like .cvsignore files.
7052 * build-aux/announce-gen: Remove from CVS, since bootstrap
7053 now creates this.
7054
791934e4
JD
70552006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
7056
7057 Make %push-parser imply %pure-parser. This fixes several bugs; see
7058 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
7059 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
7060 pure_parser = true.
7061 * data/push.c: Don't bother testing b4_push_if when deciding whether
7062 to expand b4_declare_parser_variables globally.
7063 (yypush_parse): Likewise in here.
7064
7065 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
7066 (yy_reduce_print): Reformat M4 for readability.
7067
ee5abb37
JD
70682006-12-15 Bob Rossi <bob@brasko.net>
7069 and Joel Denny <jdenny@ces.clemson.edu>
7070
7071 * data/push.c (yypstate): Add typedef, and update all uses of
7072 struct yypstate to just yypstate.
7073 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
7074
16ca01f9
JD
70752006-12-14 Bob Rossi <bob@brasko.net>
7076
7077 * data/push.c (yypush_parse): Declare prototype regardless of
7078 %locations option.
7079
ab8e7e1a
JD
70802006-12-14 Bob Rossi <bob@brasko.net>
7081
7082 * data/push.c (yyparse): Remove the prototype and the #define when in
7083 push-parser mode.
7084
9bf32be3
JD
70852006-12-13 Bob Rossi <bob@brasko.net>
7086
7087 * data/push.c (yypstate_init): Rename to...
7088 (yypstate_new): ... this and use b4_c_function_def.
7089 (yypstate_delete): New.
7090 (yypush_parse): Change parameters yynval and yynlloc to be const.
7091 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
7092 yypstate_delete functions.
7093
f02e2948
JD
70942006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
7095
7096 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
7097 strange test case titles. Reported by Bob Rossi.
7098
38eb7751
PE
70992006-12-13 Paul Eggert <eggert@cs.ucla.edu>
7100
7101 * TODO: Add pointer to Sylvain Schmitz's work on static detection
7102 of potential ambiguities in GLR grammers.
7103
bd9d212b
JD
71042006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
7105
7106 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
7107 `bison ', use m4_index instead of m4_substr since chopping up a string
7108 containing M4-special characters causes problems here.
7109
7110 Fix a couple of bugs related to special characters in user-specified
7111 file names, and make it easier for skeletons to compute output file
7112 names with the same file name prefix as Bison-computed output file
7113 names.
7114 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
7115 b4_parser_file_name and b4_spec_defines_file instead of
7116 @output_parser_name@ and @output_header_name@, which are now redundant.
7117 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
7118 b4_parser_file_name, b4_spec_defines_file, and the new
7119 @basename(FILENAME@) instead of @output_parser_name@ and
7120 @output_header_name@, which inappropriately escaped the file names as
7121 C string literals.
7122 * src/files.c (all_but_ext): Remove static qualifier.
7123 (compute_output_file_names): Move `free (all_but_ext)' to...
7124 (output_file_names_free): ... here since all_but_ext is needed later.
7125 * src/files.h (all_but_ext): Extern.
7126 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
7127 exactly what MUSCLE_INSERT_STRING used to do.
7128 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
7129 characters are escaped properly.
7130 * src/output.c (prepare): Define muscle file_name_all_but_ext as
7131 all_but_ext.
7132 For pkgdatadir muscle, maintain previous functionality by using
7133 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
7134 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
7135 digraphs would never be expanded. Hopefully no one has M4-special
7136 characters in his Bison installation path.
7137 * src/scan-skel.l: Don't parse @output_header_name@ and
7138 @output_parser_name@ anymore since they're now redundant.
7139 In @output, use decode_at_digraphs.
7140 Parse a new @basename command that invokes last_component.
7141 (decode_at_digraphs): New.
7142 (BASE_QPUTS): Remove unused.
7143 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
7144 (Output file name): New tests.
7145
3f7ca628
JD
71462006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
7147
7148 Warn about output files that are generated by the skeletons and that
7149 conflict with other output files.
7150 * data/glr.c: Don't generate the header file here when glr.cc does.
7151 * src/files.c (file_names, file_names_count): New static globals.
7152 (compute_output_file_names): Invoke output_file_name_check for files
7153 not generated by the skeletons and remove existing checks.
7154 (output_file_name_check): New function that warns about conflicting
7155 output file names.
7156 (output_file_names_free): Free file_names.
7157 * src/files.h (output_file_name_check): Declare.
7158 * src/scan-skel.l: Invoke output_file_name_check for files generated by
7159 the skeletons.
7160 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
7161 (Conflicting output files): New tests.
7162
178e123e
PE
71632006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7164
7165 * doc/bison.texinfo: Fix a couple of typos.
7166
71672006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
7168
7169 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
7170 Rename to...
7171 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
7172 update all uses.
7173 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
7174 (yypush_parse): Rename yypvars argument to yyps and remove redundant
7175 local pv.
7176 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
7177 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
7178
ea17f233
JD
71792006-12-07 Bob Rossi <bob@brasko.net>
7180 and Joel Denny <jdenny@ces.clemson.edu>
7181
7182 * data/push.c (yypvarsinit): Change return type from void* to struct
7183 yypvars*. No longer cast to void* on return.
7184 (struct yypvars): Remove yylen since it need not be remembered between
7185 yypushparse invocations.
7186 (yypushparse): Don't copy between yylen and pv->yylen.
7187
55a30bda
JD
71882006-12-05 Bob Rossi <bob@brasko.net>
7189
7190 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
7191 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
7192 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
7193 (struct yypvars): Remove b4_declare_parser_variables.
7194 (yypvarsinit): Remove init code for removed variables.
7195 (global scope): Do not declare b4_declare_parser_variables if
7196 push or pure mode.
7197 (yypushparse): Add b4_declare_parser_variables.
7198 Init new local variables, and remove init code for removed
7199 yypvars variables.
7200 (yyparse): Delete.
7201 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
7202 and yyparse for other modes.
7203 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
7204 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
7205 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
7206 (AT_PURE_LEX_IF): True if pure or push parser.
7207
85894313
JD
72082006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
7209
7210 Document Yacc prologue alternatives and default %destructor's and
7211 %printer's as experimental. Don't mention Java yet. Discussed at
7212 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
7213 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
7214 (2.3a): Annotate this entry to say the old forms of these features were
7215 also experimental.
7216 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 7217 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
7218 of Java (we'll want this back eventually).
7219
02975b9a
JD
72202006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
7221
7222 Support a file name argument to %defines. Deprecate `=' in
7223 %file-prefix, %name-prefix, and %output. Discussed at
7224 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
7225 * NEWS (2.3a+): Mention.
148d66d8 7226 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
7227 form of %defines, and remove `=' from entries for %file-prefix,
7228 %name-prefix, and %output.
7229 * src/parse-gram.y (prologue_declaration): Implement.
7230 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
7231 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
7232 all but one occurrence of %name-prefix.
7233 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
7234 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
7235 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
7236 occurrence of each of %file-prefix and %output. Add check for %defines
7237 with argument.
7238 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
7239 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
7240 Remove the `=' from %output.
7241
287b314e
JD
72422006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
7243
7244 Don't escape $ in test case titles since Autoconf 2.61 now does that
7245 correctly.
7246 * tests/actions.at (Default %printer and %destructor are not for error
7247 or $undefined): Here.
7248 (Default %printer and %destructor are not for $accept): Here.
7249 * tests/input.at (Invalid $n and @n): Here.
7250
3ebecc24
JD
72512006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
7252
7253 Rename <!> to <>. Discussed starting at
7254 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
7255 * NEWS (2.3a+): Update.
148d66d8 7256 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
7257 Update.
7258 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
7259 * src/scan-gram.l (INITIAL): Implement.
7260 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
7261 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
7262 comment.
7263 * tests/actions.at (Default tagless %printer and %destructor,
7264 Default tagged and per-type %printer and %destructor,
7265 Default %printer and %destructor are not for error or $undefined,
7266 Default %printer and %destructor are not for $accept,
7267 Default %printer and %destructor for mid-rule values): Update.
7268 * tests/input.at (Default %printer and %destructor redeclared,
7269 Unused values with default %destructor): Update.
7270
26b8a438
JD
72712006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
7272
7273 Don't let %prec take a nonterminal.
7274 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
7275 token.
7276 * tests/input.at (%prec takes a token): New test checking that %prec
7277 won't take a nonterminal.
7278
07c39ae9
JD
72792006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7280
405d53b7
JD
7281 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
7282 it was double-quoted.
07c39ae9
JD
7283 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
7284 grammar is maintained with Bison's highest standards.
7285 * src/getargs.c: Fix some typos in Doxygen comments.
7286
580b8926
JD
72872006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
7288
7289 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
7290 later. Reported by Paul Eggert in
7291 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
7292 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
7293 * src/scan-code.l (translate_action): Don't bother invoking
7294 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
7295 (code_scanner_free): Instead of invoking
7296 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
7297 which frees more.
7298 * src/scan-gram.l (gram_scanner_free): Likewise.
7299 * src/scan-skel.l (scan_skel): Likewise.
7300
4502eadc
JD
73012006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
7302
7303 * src/files.c (tr): Change return type to void.
7304 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
7305 has been called previously for the same key.
7306 (muscle_find): Return storage instead of value so that
7307 --enable-gcc-warnings doesn't produce warnings that the return discards
7308 const. aver that the value and storage are the same since storage
7309 could potentially be NULL when value is not.
7310 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
7311 same as 0.
7312
7746c8f6
PE
73132006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7314
7315 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
7316 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
7317 us a slightly cleaner distribution, and also works.
7318 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
7319 gnulib changes.
7320
eb095650
PE
73212006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
7322 and Paul Eggert <eggert@cs.ucla.edu>
7323
7324 Don't let Bison leak memory except when it complains.
7325 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
7326 (spec_defines_file, dir_prefix): Now char *, not const char *,
7327 since they are freed.
7328 * src/files.c: Likewise.
7329 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
7330 Likewise.
7331 (tr): Now operates in-place. All uses changed.
7332 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
7333 values.
7334 (compute_file_name_parts, compute_output_file_names): Don't store
7335 read-only data in variables that will be freed.
7336 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
7337 src_extension, and header_extension.
7338 (output_file_names_free): New public function to free
7339 spec_verbose_file, spec_graph_file, spec_defines_file,
7340 parser_file_name, and dir_prefix.
7341 * src/getargs.c (getargs): Don't store read-only data in variables that
7342 will be freed.
7343 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
7344 (which previously existed but was unused), and quotearg_free.
7345 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
7346 * src/muscle_tab.c: Likewise.
7347 (muscle_entry): Make the value char const *,
7348 and add a new storage member that is char * and can be freed.
7349 (muscle_entry_free): New private function.
7350 (muscle_init): Use it instead of free.
7351 (muscle_insert, muscle_grow): Update and use new storage member.
7352 (muscle_code_grow): Free the string passed to muscle_grow
7353 since it's not needed anymore.
7354 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
7355 add a new `char *code' member.
7356 ("{...}"): Declare semantic type as code.
7357 * src/scan-code.h (translate_rule_action):
7358 (translate_symbol_action, translate_code, translate_action): Return
7359 `char const *' rather than `char *' since external code should not free
7360 these strings.
7361 * src/scan-code.l: Likewise.
7362 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
7363 which is "{...}" in the parser.
7364 * tests/Makefile.am (maintainer-check-valgrind): Set
7365 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
7366 Valgrind.
7367 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
7368 complain.
7369 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
7370 expecting a non-zero exit status sets --leak-check=summary and
7371 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
7372 this case, and we don't want to hear about it.
7373
ac564be4
PE
73742006-11-08 Paul Eggert <eggert@cs.ucla.edu>
7375
7376 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
7377 instead of from the template, to simplify configuration a bit.
7378 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
7379 and m4/wint_t.m4, as they are needed with the latest gnulib.
7380
17bd8a73
JD
73812006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7382
7383 Disable unset/unused mid-rule value warnings by default, and recognize
7384 --warnings=midrule-values to enable them. Discussed starting at
7385 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
7386 * NEWS (2.3a+): Mention.
7387 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
7388 warnings): Add entry for midrule-values subargument.
7389 * src/reader.c (symbol_should_be_used): Don't return true just because
7390 the value is a set/used mid-rule value unless
7391 --warnings=midrule-values was specified.
7392 * tests/input.at (Unused values, Unused values before symbol
7393 declarations): Run tests with and without --warnings=midrule-values.
7394
7395 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
7396 than LIST_FREE directly.
7397
89eb3c76
JD
73982006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7399
7400 Finish implementing --warnings=error, which should not be implied by
7401 --warnings=all (or by its synonyms -W and --warnings without
7402 subarguments).
7403 * src/complain.c (set_warning_issued): New function to report that
7404 warnings are being treated as errors and to record an error if so.
7405 Invoke...
7406 (warn_at, warn): ... here.
7407 * src/getargs.c (warnings_args, warnings_types): Reorder so that
7408 "error - warnings are errors" does not appear above "all - all of the
7409 above".
7410 (getargs): For -W and --warnings without subarguments, don't let
7411 FLAGS_ARGMATCH set warnings_error in warnings_flag.
7412 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
7413
ba7560e2
JD
74142006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
7415
7416 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
7417 empty subargument list. For example: `bison --warnings= parser.y'.
7418
31283fc3
JD
74192006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7420
7421 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
7422 the parser header file so that gcc doesn't warn.
7423
12e35840
JD
74242006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7425
7426 Split the default %destructor/%printer into two kinds: <*> and <!>.
7427 Discussed starting at
7428 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
7429 * NEWS (2.3a+): Mention.
7430 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
7431 previous change today related to mid-rules.
148d66d8 7432 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 7433 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
7434 (TYPE_TAG_ANY): Add as <*>.
7435 (TYPE_TAG_NONE): Add as <!>.
7436 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
7437 for <*> and <!>.
7438 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
7439 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
7440 * src/symlist.c (symbol_list_default_new): Split into tagged and
7441 tagless versions.
7442 (symbol_list_destructor_set, symbol_list_printer_set): Split
7443 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
7444 SYMLIST_DEFAULT_TAGLESS.
7445 * src/symlist.h: Update symbol_list_default*_new prototypes.
7446 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
7447 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
7448 * src/symtab.c (default_destructor, default_destructor_location,
7449 default_printer, default_printer_location): Split each into tagged and
7450 tagless versions.
7451 (symbol_destructor_get, symbol_destructor_location_get,
7452 symbol_printer_get, symbol_printer_location_get): Implement tagged
7453 default and tagless default cases.
7454 (default_destructor_set, default_printer_set): Split each into tagged
7455 and tagless versions.
7456 * src/symtab.h: Update prototypes.
7457 * tests/actions.at (Default %printer and %destructor): Rename to...
7458 (Default tagless %printer and %destructor): ... this, and extend.
7459 (Per-type %printer and %destructor): Rename to...
7460 (Default tagged and per-type %printer and %destructor): ... this, and
7461 extend.
7462 (Default %printer and %destructor for user-defined end token): Extend.
7463 (Default %printer and %destructor are not for error or $undefined):
7464 Update.
7465 (Default %printer and %destructor are not for $accept): Update.
7466 (Default %printer and %destructor for mid-rule values): Extend.
7467 * tests/input.at (Default %printer and %destructor redeclared): Extend.
7468 (Unused values with default %destructor): Extend.
7469
f91b1629
JD
74702006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
7471
7472 Don't apply the default %destructor/%printer to an unreferenced midrule
7473 value. Mentioned at
7474 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
7475 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
7476 like $@n instead of just @n so that the default %destructor/%printer
7477 logic doesn't see them as user-defined symbols.
7478 (symbol_is_dummy): Check for both forms of the name.
7479 * src/reader.c (packgram): Remove the `$' from each midrule symbol
7480 name for which the midrule value is referenced in any action.
7481 * tests/actions.at (Default %printer and %destructor for mid-rule
7482 values): New test.
7483 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
7484 for change to dummy symbol names.
7485
519d0004
JD
74862006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7487
7488 Warn about unset midrule $$ if the corresponding $n is used.
7489 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
7490 $n usage.
7491 (packgram): Before invoking grammar_rule_check on any rule, make sure
7492 all actions have already been scanned in order to set `used' flags.
7493 Otherwise, checking that a midrule's $$ is set will not always work
7494 properly because the midrule check must forward-reference the midrule's
7495 parent rule.
7496 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
7497 warning.
7498
a501eca9
JD
74992006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
7500
7501 More improvements to the documentation of the prologue alternatives:
7502 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
7503 Bison manual.
7504 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
7505 some text to clarify the relative importance of the new directives and
7506 to show how these directives may be viewed as code labels.
7507
2cbe6b7f
JD
75082006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
7509
7510 Similar to the recently removed %before-header, add %code-top as the
7511 alternative to the pre-prologue. Mentioned at
7512 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
7513 Also, let the prologue alternatives appear in the grammar section.
7514 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
7515 (prologue_declaration): Move the existing prologue alternatives to...
7516 (grammar_declaration): ... here and add %code-top.
7517 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
7518
7519 Clean up and extend documentation for the prologue alternatives.
7520 * NEWS (2.3a+): Describe prologue alternatives.
7521 * doc/bison.texinfo (Prologue): Move discussion of prologue
7522 alternatives to...
7523 (Prologue Alternatives): ... this new section, and extend it to discuss
7524 all 4 directives in detail.
148d66d8
JD
7525 (Table of Symbols): Clean up discussion of prologue alternatives and
7526 add %code-top.
2cbe6b7f 7527
e557d3ea
JMG
75282006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7529
7530 DJGPP specific issues.
7531
7532 * djgpp/config.bat: config.hin has been moved to lib. Adjust
7533 config.bat accordingly.
7534 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
7535 * djgpp/config.site: Likewise.
7536
136a0f76
PB
75372006-10-16 Paolo Bonzini <bonzini@gnu.org>
7538
27bd5d67
PB
7539 Replace %*-header with %provides, %requires, %code. See discussion at
7540 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
7541
136a0f76
PB
7542 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
7543 (b4_user_start_header): Remove.
7544 * data/glr.c: Use new macros instead of b4_*start_header
7545 and b4_*end_header.
7546 * data/glr.cc: Likewise.
7547 * data/lalr1.cc: Likewise.
7548 * data/push.c: Likewise.
7549 * data/yacc.c: Likewise.
7550
7551 * doc/bison.texinfo: Remove %before-header, rename
7552 %{start,end,after}-header to %requires, %provides, %code.
7553
7554 * src/parse-gram.y: Likewise (also rename token names accordingly).
7555 * src/scan-gram.l: Likewise.
7556 * tests/actions.at: Likewise.
7557
10f429ef
PE
75582006-10-14 Paul Eggert <eggert@cs.ucla.edu>
7559
7560 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
7561 Problem reported by Joel E. Denny.
7562
75632006-10-14 Jim Meyering <jim@meyering.net>
7564
7565 (Sync from coreutils.)
7566 Work also when the working directory (with e.g. coreutils sources)
7567 is version controlled with git, rather than CVS.
7568 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
7569 rather than CVS.
7570 In messages and comments, say e.g., "checked-out sources",
7571 rather than "CVS sources".
7572 (version_controlled_file): New function. Work for git as well as
7573 for CVS. Don't use grep's -q option.
7574 (slurp): Call it here, in place of CVS-specific code.
7575
c4bd5bf7
JD
75762006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
7577
7578 Fix testsuite for ./configure --enable-gcc-warnings:
7579 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
7580 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
7581 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
7582 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
7583 * test/regression.at (Diagnostic that expects two alternatives):
7584 Likewise.
7585
46356ea4
PE
75862006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7587
231ed89a
PE
7588 * bootstrap.conf (gnulib_modules): Add config-h.
7589 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
7590 worry about HAVE_CONFIG_H.
7591 * lib/abitset.c: Likewise.
7592 * lib/bitset.c: Likewise.
7593 * lib/bitset_stats.c: Likewise.
7594 * lib/bitsetv-print.c: Likewise.
7595 * lib/bitsetv.c: Likewise.
7596 * lib/ebitset.c: Likewise.
7597 * lib/get-errno.c: Likewise.
7598 * lib/lbitset.c: Likewise.
7599 * lib/subpipe.c: Likewise.
7600 * lib/timevar.c: Likewise.
7601 * lib/vbitset.c: Likewise.
7602 * lib/bitset.c: Include "bitset.h" first, to test interface.
7603 * lib/bitset_stats.c: Include "bitset_stats.h" first.
7604 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
7605 * lib/bitsetv.c: Include "bitsetv.h" first.
7606 * lib/get-errno.c: Include "get-errno.h" first.
7607 * m4/.cvsignore: Add config-h.m4.
7608 * tests/actions.at (Default %printer and %destructor for ...):
7609 Adjust expected line numbers in output to reflect removal of #if
7610 HAVE_CONFIG_H lines.
7611 * tests/glr-regression.at (Missed %merge type warnings when ...):
7612 Likewise.
7613 * tests/regression.at (Braced code in declaration in rules section):
7614 Likewise.
7615 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
7616 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
7617 Include <config.h> unconditionally.
7618
46356ea4
PE
7619 * bootstrap: Sync from coreutils, as follows:
7620
7621 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7622
7623 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
7624 variable was sometimes used without being initialized. This
7625 messed up the installation of the INSTALL file in some cases.
7626
7627 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7628
7629 * bootstrap (usage, main program, symlink_to_gnulib): Add option
7630 --copy. Inspired by a suggestion from Bruno Haible.
7631
7632 2006-10-03 Jim Meyering <jim@meyering.net>
7633
7634 * bootstrap: Undo last change to this file, since now gnulib-tool
7635 sticks with the automake default in generating dependencies.
7636
dd4bf078
PE
76372006-10-12 Paul Eggert <eggert@cs.ucla.edu>
7638
cf2a5f7c
PE
7639 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
7640 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
7641
7642 * doc/bison.1: Add copyright notice.
7643
7644 * data/glr.c: Don't include <stdarg.h>; not used.
7645
35fe0834
PE
7646 * NEWS: The -g and --graph options now output graphs in Graphviz
7647 DOT format, not VCG format.
7648 * doc/bison.1: Likewise.
7649 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
7650 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
7651 of this change in
7652 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
7653 * TODO: Remove Graphviz entry.
7654 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
7655 remove vcg.c, vcg.h, vcg_defaults.h.
7656 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
7657 * src/graphviz.c, src/graphviz.h: New files.
7658 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
7659 * src/files.h: Make comment more generic.
7660 * src/main.c (main): Likewise.
7661 * src/print_graph.h: Likewise.
7662 * src/getargs.c (usage): Make usage description more generic.
7663 * src/print_graph.c: Include graphviz.h rather than vcg.h.
7664 (static_graph, fgraph): Remove. All uses changed to pass
7665 arguments instead of sharing a static var.
7666 (print_core, print_actions, print_state, print_graph):
7667 Output graphviz format rather than VCG format.
7668 * tests/.cvsignore: Remove *.vcg; add *.dot.
7669 * tests/output.at: Expect *.dot files, not *.vcg files.
7670
dd4bf078
PE
7671 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
7672 accommodates the 2006-10-08 change.
7673
efdd7421
PE
76742006-10-11 Bob Rossi <bob@brasko.net>
7675
7676 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
7677 (b4_yyssa, b4_yyerror_range): New macros.
7678 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
7679 (yypvarsinit): Remove init of removed fields.
7680 (yypushparse): Remove use of removed fields; use new macros instead.
7681
96a1981a
PE
76822006-10-11 Paul Eggert <eggert@cs.ucla.edu>
7683
7684 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
7685 in a push parser. Reindent slightly to match yacc.c better.
7686
76872006-10-11 Bob Rossi <bob@brasko.net>
7688
46356ea4
PE
7689 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
7690 yymsg_alloc fields.
7691 (yypvarsinit, yypushparse): Remove init of removed fields.
7692 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 7693
c1630a8b
PE
76942006-10-09 Paul Eggert <eggert@cs.ucla.edu>
7695
7696 * THANKS: Add Paolo Bonzini and Bob Rossi.
7697
90b9908d
PB
76982006-10-08 Paolo Bonzini <bonzini@gnu.org>
7699
7700 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
7701 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
7702 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
7703 b4_define_user_cde and uses): Remove.
7704 (b4_comment, b4_prefix, b4_sync_start): New.
7705 * data/bison.m4: New file, with most of the content removed from c.m4.
7706 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
7707 * src/output.c (output_skeleton): Pass bison.m4.
7708 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
7709 only if specified.
7710
cf806753
PE
77112006-10-05 Paul Eggert <eggert@cs.ucla.edu>
7712
7713 Fix test failure reported by Tom Lane in
7714 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
7715 and try to make such failures easier to catch in the future.
7716 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
7717 that's now the caller's responsibility.
7718 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
7719 Set yychar = YYEOF if it's negative.
7720 * tests/actions.at (yylex): Abort if asked to read past EOF.
7721 * tests/conflicts.at (yylex): Likewise.
7722 * tests/cxx-type.at (yylex): Likewise.
7723 * tests/glr-regression.at (yylex): Likewise.
7724 * tests/input.at (yylex): Likewise.
7725 * tests/regression.at (yylex): Likewise.
7726 * tests/torture.at (yylex): Likewise.
7727
0e2f006a
PE
77282006-10-01 Paul Eggert <eggert@cs.ucla.edu>
7729
7730 Fix problems with translating English-language diagnostics.
7731 * bootstrap: Fix bug introduced in recent bootstrap changes, with
7732 respect to bison-runtime pot generation. The YY_ stuff
7733 wasn't being captured.
7734 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
7735 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
7736 * runtime-po/POTFILES.in: Add data/push.c.
7737
e3ddc1e3
PE
77382006-09-29 Paul Eggert <eggert@cs.ucla.edu>
7739
7740 Merge bootstrap changes from coreutils.
7741
7742 2006-09-28 Jim Meyering <jim@meyering.net>
7743
7744 Automatically generated dependencies are important even
7745 when all of the sources in a directory come from gnulib.
7746 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
7747 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
7748
7749 2006-09-23 Jim Meyering <jim@meyering.net>
7750
7751 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
7752
7753 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7754
7755 * bootstrap: Add support for --force.
7756 (usage): New function. Describe usage less tersely.
7757 (CVS_only_file): New var.
7758
01e972b3
PE
77592006-09-21 Paul Eggert <eggert@cs.ucla.edu>
7760
7761 * data/push.c (YYPUSH_MORE): Make it an enum instead.
7762 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
7763 Adjust white space and comments to match GNU style better.
7764
c63d3e90
PE
77652006-09-20 Bob Rossi <bob@brasko.net>
7766
7767 * data/push.c (yyresult_get): Remove function.
7768 (YYPUSH_MORE): Add #define.
7769 (yypushparse): Modify return value.
7770
e70f46d1
PE
77712006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7772
7773 * stamp-h.in: Remove; no longer needed.
7774 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
7775 Remove config.h, config.hin, intl (no longer created).
7776 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
7777 stamp-h1.
7778
7779 Sync bootstrap from coreutils, as follows:
7780
7781 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
7782
7783 * bootstrap (symlink_to_gnulib): New function.
7784 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
7785 to copies-of-gnulib.
7786 (cp_mark_as_generated, slurp, gnulib_files):
7787 Avoid making a copy if it's the same as the old version.
7788 (gnulib_files): Add support for this variable (used by Bison).
7789
a92be413
PE
77902006-09-20 Paul Eggert <eggert@cs.ucla.edu>
7791
7792 * src/getargs.c (usage): Rework to use conventions similar to
7793 coreutils, to make translation a bit easier and the code a bit
7794 smaller. Problem reported by Tim Van Holder.
7795
4f82b42a
PE
77962006-09-15 Paul Eggert <eggert@cs.ucla.edu>
7797
3b2942e6
PE
7798 Use some of gnulib's new modules, taken from coreutils.
7799
7800 * bootstrap: Sync from coreutils, except add support for gnulib_files.
7801 * bootstrap.conf: New file.
7802 (gnulib_modules): Add configmake, inttypes, unistd.
7803 (XGETTEXT_OPTIONS): Add complain, complain_at,
7804 fatal, fatal_at, warn, warn_at, unexpected_end.
7805 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
7806 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
7807 (gl_EARLY): Add.
7808 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
7809 (gl_INIT): Add
7810 (GNULIB_AUTOCONF_SNIPPET): Remove.
7811 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
7812 the pickiest.
7813 * lib/.cvsignore: Add inttypes_.h.
7814 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
7815 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
7816 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
7817 no-longer-necessary initializations.
7818 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
7819 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
7820 use the unistd module.
7821 * src/system.h: Likewise.
7822 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
7823 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
7824 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
7825 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
7826 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
7827 * src/system.h: Include inttypes.h unconditionally, now that we
7828 use the inttypes module. Don't bother to include stdint.h, since
7829 inttypes.h now does that for us.
7830 (LOCALEDIR): Remove, now that we use the configmake module.
7831 * src/getargs.c: Include configmake.h.
7832 * src/main.c: Likewise.
7833 * src/output.c: Likewise.
7834 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
7835 not from $abs_top_builddir, since config.h moved.
7836
7837
4f82b42a
PE
7838 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
7839 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
7840
7841 * src/parse-gram.y (symbol_declaration): Don't put statements
7842 before declarations; it's not portable to C89.
7843 * src/scan-code.l (handle_action_at): Likewise.
7844
7845 * src/scan-code.l: Always initialize braces_level; the old code
7846 left it uninitialized and therefore had undefined behavior.
7847
7848 Don't attempt to redefine 'assert', since it runs afoul of
7849 systems where standard headers (mistakenly) include <assert.h>.
7850 Instead, define and use our own alternative, called 'aver'.
7851 * src/reader.c: Don't include assert.h, since we no longer
7852 use assert.
7853 * src/scan-code.l: Likewise.
7854 * src/system.h (assert): Remove, replacing with....
7855 (aver): New function, taking a bool arg. All uses changed.
7856 * src/tables.c (pack_vector): Ensure that aver arg is bool,
7857 not merely an integer.
7858
31c10e38
PE
78592006-09-15 Bob Rossi <bob@brasko.net>
7860
7861 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
7862 * data/c.m4 (YYPUSH): New.
7863 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
7864 * src/getargs.c (push_parser): New var.
7865 * src/getargs.h (push_parser): New declaration.
7866 * src/output.c (prepare): Add macro insertion of `push_flag'.
7867 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
7868 (prologue_declaration): Parse %push-parser.
7869 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
7870 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
7871 list of removed lines from the traces observed.
7872 (AT_CHECK_CALC_LALR): Added push parser tests.
7873
fa7b79c0
PE
78742006-09-13 Paul Eggert <eggert@cs.ucla.edu>
7875
21fe08ca
PE
7876 * NEWS: Version 2.3a.
7877 * configure.ac (AC_INIT): Likewise.
7878
e8ec4d9b
PE
7879 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
7880 "#define YYSTYPE int" that caused "make maintainer-check" to fail
7881 due to header ordering dependencies. I don't know why the #define
7882 was there.
7883
fa7b79c0
PE
7884 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
7885 runtime cost when YYDEBUG is not defined, and so that some tests
7886 that used to fail now work. Problem and initial suggestion by
7887 Paolo Bonzini.
7888 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
7889 * data/glr.cc (b4_parser_class_name):
7890 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
7891 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
7892 (yydebug_) [YYDEBUG]: New member.
7893 (yycdebug_): Now defined only if YYDEBUG.
7894 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
7895 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
7896 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
7897 if YYYDEBUG.
7898 (debug_stream, set_debug_stream, debug_level, set_debug_level):
7899 Define only if YYDEBUG.
7900 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
7901 set_debug_level.
7902 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
7903 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
7904 AT_CHECK_CALC_GLR_CC that are working now.
7905
4ec13d60
PE
79062006-09-12 Paul Eggert <eggert@cs.ucla.edu>
7907
7908 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
7909 We don't need them in glr.cc, and glr.c defines them.
7910 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
7911 assumes that defining it to anything is the same as defining
7912 it to 1. Problem reported by Paolo Bonzini.
7913
8e1687ae
PE
79142006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
7915
7916 * data/c.m4 (b4_null, b4_case): Define.
7917 * src/output.c (prepare_symbols): Use b4_null.
7918 (user_actions_output): Use b4_case.
7919
3dc5e96b
PE
79202006-09-11 Paul Eggert <eggert@cs.ucla.edu>
7921
aef3da86
PE
7922 * data/glr.c (b4_shared_declarations): Put start-header first,
7923 before any #includes that we generate, so that feature-test
7924 macros work. Problem reported by Michael Deutschmann in
7925 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
7926 * data/lalr1.cc: Likewise.
7927 * doc/bison.texinfo (Prologue): Document that feature-test macros
7928 should be defined before any Bison declarations.
7929 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
7930 that depend on location.hh after, not before, Bison decls, since
7931 we now include location.hh after the first user prologue.
7932
3dc5e96b
PE
7933 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
7934 Sander Brandenburg in
7935 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
7936 Also, fix minor white space and comment issues.
aef3da86
PE
7937 (Prologue): Mention that it's better to define feature-test macros
7938 before Bison declarations. Problem reported by Michael Deutschmann.
7939
7940 * README-cvs: Fix typo: "&" should be "&&". Problem reported
7941 by Jim Meyering.
7942 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
7943 This adjusts to recent gnulib changes.
3dc5e96b 7944
b2a0b7ca
JD
79452006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7946
7947 Finish implementation of per-type %destructor/%printer. Discussed
7948 starting at
7949 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
7950 and
7951 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
7952 * NEWS (2.3+): Add a description of this feature to the default
7953 %destructor/%printer description.
7954 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
7955 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
7956 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
7957 list node contains a semantic type.
7958 * src/symtab.c, src/symtab.h: Extend with a table that associates
7959 semantic types with their %destructor's and %printer's.
7960 (semantic_type_from_uniqstr, semantic_type_get,
7961 semantic_type_destructor_set, semantic_type_printer_set): New functions
7962 composing the public interface of that table.
7963 (symbol_destructor_get, symbol_destructor_location_get,
7964 symbol_printer_get, symbol_printer_location_get): If there's no
7965 per-symbol %destructor/%printer, look up the per-type before trying
7966 the default.
7967 * tests/actions.at (Per-type %printer and %destructor): New test case.
7968 * tests/input.at (Default %printer and %destructor redeclared):
7969 Extend to check that multiple occurrences of %symbol-default in a
7970 single %destructor/%printer declaration is an error.
7971 (Per-type %printer and %destructor redeclared, Unused values with
7972 per-type %destructor): New test cases.
7973
3be03b13
JD
79742006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7975
7976 Require default %destructor/%printer to be declared using
7977 %symbol-default instead of an empty symbol list, and start working on
7978 new per-type %destructor/%printer. Discussed at
7979 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
7980 * NEWS (2.3+): Add %symbol-default to example.
7981 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 7982 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
7983 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
7984 (generic_symlist, generic_symlist_item): New nonterminals for creating
7985 a list in which each item is a symbol, semantic type, or
7986 %symbol-default.
7987 (grammar_declaration): Use generic_symlist in %destructor and %printer
7988 declarations instead of symbols.1 or an empty list.
7989 (symbol_declaration, precedence_declaration, symbols.1): Update actions
7990 for changes to symbol_list.
7991 * src/reader.c: Update for changes to symbol_list.
7992 * src/scan-code.l: Likewise.
7993 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
7994 * src/symlist.c, src/symlist.h: Extend such that a list node may
7995 represent a semantic type or a %symbol-default in addition to just an
7996 ordinary symbol. Add switched functions for setting %destructor's and
7997 %printer's.
7998 * tests/actions.at, tests/input.at: Add %symbol-default to all default
7999 %destructor/%printer declarations.
8000
3508ce36
JD
80012006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
8002
8003 Whether the default %destructor/%printer applies to a particular symbol
8004 isn't a question of whether the user *declares* that symbol (in %token,
8005 for example). It's a question of whether the user by any means
8006 *defines* the symbol at all (by simply using a char token, for
8007 example). $end is defined by Bison whereas any other token with token
8008 number 0 is defined by the user. The error token is always defined by
8009 Bison regardless of whether the user declares it with %token, but we
8010 may one day let the user define error as a nonterminal instead.
8011 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
8012 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
8013 the meaning of "user-defined".
8014 * tests/actions.at (Default %printer and %destructor for user-declared
8015 end token): Rename to...
8016 (Default %printer and %destructor for user-defined end token): ...
8017 this.
8018
8019 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
8020 computation of whether to apply the default, don't maintain a list of
8021 every Bison-defined symbol. Instead, just check for a first character
8022 of '$', which a user symbol cannot have, and check for the error token.
8023
9350499c
JD
80242006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
8025
8026 Don't apply the default %destructor or %printer to the error token,
8027 $undefined, or $accept. This change fits the general rule that the
8028 default %destructor and %printer are only for user-declared symbols,
8029 and it solves several difficulties that are described in the new test
8030 cases listed below.
8031 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
8032 * tests/actions.at (Default %printer and %destructor are not for error
8033 or $undefined, Default %printer and %destructor are not for $accept):
8034 New test cases.
8035
4d7370cb
JD
80362006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
8037
8038 Allow %start after the first rule.
8039 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
8040 when parsing the first rule.
8041 (check_and_convert_grammar): Search for it here after all grammar
8042 declarations have been parsed. Skip midrules, which have dummy LHS
8043 nonterminals.
8044 * src/symtab.c (symbol_is_dummy): New function.
8045 * src/symtab.h (symbol_is_dummy): Declare it.
8046 * tests/input.at (%start after first rule): New test.
8047
6d0ef4ec
JD
80482006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8049
8050 Redo some of the previous commit: add back the ability to use
8051 non-aliased/undeclared string literals since it might be useful to
8052 those declaring %token-table.
8053 * src/reader.c (check_and_convert_grammar): Undo changes in previous
8054 commit: don't worry about complaints from symbols_pack.
8055 * src/symtab.c (symbol_new, symbol_class_set,
8056 symbol_check_alias_consistency): Undo changes in previous commit: count
8057 each string literal as a new symbol and token, assign it a symbol
8058 number, and don't complain about non-aliased string literals.
8059 (symbols_pack): Since symbol_make_alias still does not decrement symbol
8060 and token counts but does still set aliased tokens to the same number,
8061 symbol_pack_processor now leaves empty slots in the symbols array.
8062 Remove those slots.
8063 * tests/regression.at (Undeclared string literal): Remove test case
8064 added in previous commit since non-aliased string literals are allowed
8065 again.
8066 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
8067 remove unnecessary string literal declarations.
8068 * tests/sets.at (Firsts): Likewise.
8069
965537bc
JD
80702006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8071
8072 Don't allow an undeclared string literal, but allow a string literal to
8073 be used before its declaration.
8074 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
8075 symbols_pack complained.
8076 * src/symtab.c (symbol_new): Don't count a string literal as a new
8077 symbol.
8078 (symbol_class_set): Don't count a string literal as a new token, and
8079 don't assign it a symbol number since symbol_make_alias does that.
8080 (symbol_make_alias): It's not necessary to decrement the symbol and
8081 token counts anymore. Don't assume that an alias declaration occurs
8082 before any uses of the identifier or string, and thus don't assert that
8083 one of them has the highest symbol number so far.
8084 (symbol_check_alias_consistency): Complain if there's a string literal
8085 that wasn't declared as an alias.
8086 (symbols_pack): Bail if symbol_check_alias_consistency failed since
8087 symbol_pack asserts that every token has been assigned a symbol number
8088 although undeclared string literals have not.
8089 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 8090 string literal): New test cases.
965537bc
JD
8091 (Characters Escapes, Web2c Actions): Declare string literals as
8092 aliases.
8093 * tests/sets.at (Firsts): Likewise.
8094
47aee066
JD
80952006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
8096
8097 In the grammar scanner, STRING_FINISH unclosed constructs and return
8098 them to the parser in order to improve error messages.
8099 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
8100 SC_BRACED_CODE, SC_PROLOGUE): Implement.
8101 * tests/input.at (Unclosed constructs): New test case.
8102 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
8103 seen.
8104
8105 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
8106 unused global.
8107
1f6b3679
JD
81082006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
8109
8110 Handle string aliases for character tokens correctly.
8111 * src/symtab.c (symbol_user_token_number_set): If the token has an
8112 alias, check and set its alias's user token number instead of its own,
8113 which is set to indicate the alias. Previously, every occurrence of
8114 the character token in the grammar overwrote that alias indicator with
8115 the character code.
8116 * tests/input.at (String aliases for character tokens): New test.
8117
219741d8
JD
81182006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
8119
8120 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
8121
11daa4e7
PE
81222006-08-11 Paul Eggert <eggert@cs.ucla.edu>
8123
8124 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
8125 to prevent failures when building on older platforms.
8126 Check for autopoint failure.
8127 Set XGETTEXT_OPTIONS to values that check for C format strings,
8128 so that translators are warned about them (this also helps
8129 prevent core dumps).
8130
8131 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
8132 function, since it simplifies our code a bit.
8133
8134 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
8135 rather than -W, so we don't get bogus warnings about sign comparisons.
8136 Add -Wpointer-arith, since that warning is useful (it reports code
8137 that does not conform to C89 and that some compilers reject).
8138 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
8139 since it's no longer needed.
8140
f9bfc42a
JD
81412006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
8142
8143 Clean up scanners a bit.
8144 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
8145 definitions so gcc won't warn when obstack_for_string is unused.
8146 * src/scan-code.l: config.h and system.h are already #include'd by
8147 scan-code-c.c, so get rid of them here.
8148 * src/scan-gram.l: Likewise.
8149 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
8150 definitions rather than duplicating the rest of it.
8151 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
8152
06e8700a
JD
81532006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
8154
8155 Suppress signed/unsigned comparison warnings for yycheck.
8156 * data/c.m4 (b4_safest_int_type): New macro.
8157 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
8158 a signed int type, cast it to b4_safest_int_type first.
8159 * data/yacc.c: Likewise.
8160 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
8161 also overwritten.
8162
9c437126
PE
81632006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
8164
8165 * doc/bison.texinfo: Fix some typos.
8166
284d8a13
PE
81672006-08-02 Paul Eggert <eggert@cs.ucla.edu>
8168
8169 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
8170 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
8171
8172 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
8173 the latest gnulib does this a different way.
8174 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
8175 translation was patched, so stop omitting it.
8176
ec5479ce
JD
81772006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8178
8179 Enable declaration of default %printer/%destructor. Make the parser
8180 use these for all user-declared grammar symbols for which the user does
8181 not declare a specific %printer/%destructor. Thus, the parser uses it
8182 for token 0 if the user declares it but not if Bison generates it as
8183 $end. Discussed starting at
8184 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
8185 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
8186 and
8187 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
8188 * NEWS (2.3+): Mention.
8189 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
8190 declare a %destructor for a mid-rule's semantic value. It's just
8191 impossible to declare one specific to it.
8192 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
8193 code. Describe default %destructor form.
8194 * src/parse-gram.y (grammar_declaration): Parse default
8195 %printer/%destructor declarations.
8196 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
8197 and symbol_destructor_location_get rather than accessing the destructor
8198 and destructor_location members of struct symbol.
8199 (symbol_printers_output): Likewise but for %printer's.
8200 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
8201 again.
8202 * src/symtab.c (default_destructor, default_destructor_location,
8203 default_printer, default_printer_location): New static global
8204 variables to record the default %destructor and %printer.
8205 (symbol_destructor_get, symbol_destructor_location_get,
8206 symbol_printer_get, symbol_printer_location_get): New functions to
8207 compute the appropriate %destructor and %printer for a symbol.
8208 (default_destructor_set, default_printer_set): New functions to set the
8209 default %destructor and %printer.
8210 * src/symtab.h: Prototype all those new functions.
8211 * tests/actions.at (Default %printer and %destructor): New test to
8212 check that the right %printer and %destructor are called, that they're
8213 not called for $end, and that $$ and @$ work correctly.
8214 (Default %printer and %destructor for user-declared end token): New
8215 test to check that the default %printer and %destructor are called for
8216 a user-declared end token.
8217 * tests/input.at (Default %printer and %destructor redeclared, Unused
8218 values with default %destructor): New tests to check related grammar
8219 warnings and errors.
8220
868d2d96
JD
82212006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
8222
8223 Clean up handling of %destructor for the end token (token 0).
8224 Discussed starting at
8225 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
8226 and
8227 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
8228
8229 Make the skeletons consistent in how they pop the end token and invoke
8230 its %destructor.
8231 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
8232 state, which has token number 0, since this would invoke the
8233 %destructor for the end token.
8234 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
8235 until after shifting the end token, or else it won't be popped.
8236 * data/yacc.c (yyparse): Likewise.
8237
8238 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
8239 it's the end token. Upon termination, destroy an unshifted lookahead
8240 even when it's the end token.
8241 * data/lalr1.cc (yy::parser::parse): Likewise.
8242 * data/yacc.c (yyparse): Likewise.
8243
8244 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
8245 value warnings for the end token when the user gives the end token a
8246 %destructor.
8247
8248 * tests/actions.at (Printers and Destructors): Test all the above.
8249
62a9592d
PE
82502006-07-24 Paul Eggert <eggert@cs.ucla.edu>
8251
8252 Update to latest gnulib and gettext versions.
8253 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
8254 Add fopen-safer.
8255 (gnulib_files): Add m4/warning.m4. Don't worry about files
8256 overwritten by autopoint.
8257 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
8258 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
8259 rejects them.
8260 Don't use autoreconf; instead, invoke autopoint etc. by hand,
8261 so that we can remove the intl files at a better time.
8262 (intl_files_to_remove): Remove aclocal.m4, since it gets
8263 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
8264 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
8265 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
8266 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
8267 Remove datarootdir hack; no longer needed.
8268 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
8269 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
8270 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
8271 strdup.h.
8272 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
8273 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
8274
10d6970f
PE
82752006-07-20 Paul Eggert <eggert@cs.ucla.edu>
8276
8277 * bootstrap: Adjust to today's change to gnulib-tool by invoking
8278 it with --assume-autoconf='latest-stable'.
8279
50a33993
JD
82802006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
8281
8282 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
8283 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
8284 YYSTYPE' and `{'.
8285 * src/muscle_tab.h (muscle_grow): Replace the header comments with
8286 those from muscle_tab.c since the old ones are misleading.
8287
2ce4ed68
AD
82882006-07-13 Akim Demaille <akim@epita.fr>
8289
8290 Support %define "KEY" {VALUE}.
8291 * src/scan-code.h, src/scan-code.l (translate_action)
8292 (translate_rule_action, translate_symbol_action, translate_code):
8293 Return char *, not const char *.
8294 * src/parse-gram.y (declaration): Rename as...
8295 (prologue_declaration): this.
8296 (string_content): Remove this nonterminal, use STRING.
8297 (braceless, content, content.opt): New nonterminal.
8298 Use them.
8299 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
8300 as value.
8301 * src/scan-gram.l (getargs.h): Don't include it.
8302
db7e5eb5
PE
83032006-07-12 Paul Eggert <eggert@cs.ucla.edu>
8304
8305 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
8306 rather than a for-loop that declares a local bool variable. This
8307 should work around a compatibility problem with a Cray x1e C++
8308 compiler reported by Hung Nguyen in
8309 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
8310 The for-loop was introduced in the 2004-11-17 change but I don't
8311 know why it was needed.
8312
a5d80ba5
AD
83132006-07-12 Akim Demaille <akim@epita.fr>
8314
8315 * data/c.m4: Comment changes.
8316
23eb2a69
AD
83172006-07-10 Akim Demaille <akim@lrde.epita.fr>
8318
8319 * src/complain.c (error_message, ERROR_MESSAGE): New.
8320 To factor...
8321 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
8322 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
8323
ddc8ede1
PE
83242006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8325
8326 * NEWS: Instead of %union, you can define and use your own union type
8327 YYSTYPE if your grammar contains at least one <type> tag.
8328 Your YYSTYPE need not be a macro; it can be a typedef.
8329 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
8330 (Union Decl, Decl Summary): Document this.
8331 * data/glr.c (YYSTYPE): Implement this.
8332 * data/glr.cc (YYSTYPE): Likewise.
8333 * data/lalr1.cc (YYSTYPE): Likewise.
8334 * data/yacc.c (YYSTYPE): Likewise.
8335 * src/output.c (prepare): Output tag_seen_flag.
8336 * src/parse-gram.y (declaration, grammar_declaration):
8337 Use 'union_seen' rather than 'typed' to determine whether
8338 %union has been seen, since grammars can now be typed without
8339 %union.
8340 (symbol_declaration, type.opt, symbol_def):
8341 Keep track of whether a tag has been seen.
8342 * src/reader.c (union_seen, tag_seen): New vars.
8343 (typed): remove.
8344 * src/reader.h (union_seen, tag_seen, typed): Likewise.
8345 * src/scan-code.l (untyped_var_seen): New variable.
8346 (handle_action_dollar): Adjust to above changes.
8347 (handle_action_dollar, handle_action_at):
8348 Improve overflow checking for outlandish numbers.
8349 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
8350 avoid new diagnostics generated by above changes.
8351 * tests/regression.at (YYSTYPE typedef): Add test to check
8352 for type tags without %union.
8353
8354 * src/symlist.c (symbol_list_length): Return int, not unsigned
8355 int, since callers expect int. This may need to get revisited
8356 once we have proper integer overflow checking.
8357
8358 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
8359 object is now static.
8360
8361 * src/getargs.c (flags_argmatch): Return void, not int,
8362 to pacify ./configure --enable-gcc-warnings.
8363
8364 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
8365 since last_string is already defined to FLEX_PREFIX (last_string).
8366
7b42569e
AD
83672006-07-09 Akim Demaille <akim@lrde.epita.fr>
8368
8369 Implement --warnings/-W.
8370 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
8371 replaced by...
8372 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
8373 Adjust callers.
8374 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
8375 (warnings_args, warnings_types): New.
8376 (getargs, short_options, long_options): Accept -W/--warnings.
8377 Sort the options by alphabetical order, upper case letter right
8378 before its lower case.
8379
3b452f4e
JD
83802006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
8381
8382 Change %merge result type clash warnings to errors. Discussed at
8383 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
8384 * src/reader.c (record_merge_function_type): Use complain_at.
8385 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8386 declared later): Update test case results.
8387
b8a41559
AD
83882006-07-09 Akim Demaille <akim@lrde.epita.fr>
8389
8390 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
8391 to be in alphabetical order.
8392 (trace_args): Spelling fixes.
8393
cd9e1ba2
PE
83942006-07-09 Paul Eggert <eggert@cs.ucla.edu>
8395
8396 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
8397 so they don't collide with user-defined macros.
8398 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
8399 this was never guaranteed, and now that we're using gnulib stdint,
8400 which defines int_fast16_t to long int, the problem is exposed.
8401
cb48f191
PE
84022006-07-08 Paul Eggert <eggert@cs.ucla.edu>
8403
b8445a15
PE
8404 * data/c.m4 (b4_basename): Simplify a bit, since we don't
8405 need the full POSIX semantics (and weren't implementing them
8406 anyway).
8407
cb48f191
PE
8408 Adjust to Autoconf 2.60 and today's gnulib.
8409 * bootstrap (gnulib_modules): Add stdint.
8410 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
8411 no longer copies it.
8412 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
8413 since stdint needs the former and wcwidth (which is now required
8414 by mbswidth) needs the latter.
8415 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
8416 work around a compatibility glitch between gettext 0.14.6 and
8417 Autoconf 2.60.
8418 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
8419 Do not check for uintptr_t, since new stdint module does the right
8420 thing.
8421 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
8422 Add stdint.h, stdint_.h, wcwidth.h.
8423 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
8424 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
8425 stdint.m4, wchar_t.m4, wcwidth.m4.
8426 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
8427 usual order for ../lib/*.h files.
8428 (file_name_split): Use last_component, not base_name, to adjust
8429 to gnulib changes.
8430 * src/parse-gram.h: Include <strverscmp.h> in the usual order
8431 for ../lib/*.h files.
8432 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
8433 Define unconditionally, since we now assume the stdint module.
8434 * src/scan-skel.l: Include <dirname.h>.
8435 (BASE_QPUTS): Use last_component, not base_name.
8436 * src/system.h: Include <unlocked-io.h> in the usual order
8437 for ../lib/*.h files. Include <stdint.h> unconditionally,
8438 since we now use the stdint module.
8439 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
8440 HAVE_UINTPTR_T, since we now use the stdint module.
8441 (base_name): Remove decl, since files now include <dirname.h>
8442 to get the decl.
8443
cd48d21d
AD
84442006-07-08 Akim Demaille <akim@lrde.epita.fr>
8445
8446 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
8447 New, default to 1.
8448 * data/yacc.c, data/glr.c, data/location.cc: Use them.
8449 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
8450 default.
8451 * tests/calc.at: Adjust.
8452
8ec0a172
AD
84532006-07-08 Akim Demaille <akim@lrde.epita.fr>
8454
b8445a15 8455 * data/c.m4 (b4_basename): New.
8ec0a172
AD
8456 (b4_syncline): Also output the location of its invocation (from
8457 the skeleton).
8458 (b4_user_action, b4_define_user_action, b4_user_actions)
8459 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
8460 (b4_user_stype): New.
8461 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
8462
4a678af8
JD
84632006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8464
8465 In the grammar file, the first column is 1 not 0 on the first line as
8466 on every other line.
8467 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
8468 * tests/input.at (Torturing the Scanner): Update output.
8469
8470 * src/scan-gram.l (scanner_cursor): Declare it static.
8471
dd60572a
JD
84722006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
8473
8474 In warnings, say "previous declaration" rather than "first
8475 declaration".
8476 * src/symtab.c (redeclaration): Do that here.
8477 * src/reader.c (record_merge_function_type): In the case of a result
8478 type clash, report the previous declaration rather than the very first
8479 one in the grammar file.
8480 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8481 declared later): Add a third declaration to check this behavior.
8482 * tests/input.at (Incompatible Aliases): Update output.
8483
2073e1b6
AD
84842006-06-27 Akim Demaille <akim@epita.fr>
8485
8486 * doc/Doxyfile.in: New.
8487 * doc/Makefile.am: Use it.
8488 * src/lalr.h, src/symtab.h: Initial doxygenation.
8489
8ee5b538
JD
84902006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8491
8492 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
8493 declared after the %merge. This continues the effort of the previous
8494 patch.
8ee5b538
JD
8495 * src/reader.c (get_merge_function): Don't set the merger type yet.
8496 (record_merge_function_type): New function for setting the merger type
8497 and checking for clashes.
8498 (grammar_current_rule_merge_set): Set the location of the %merge for
8499 the current rule.
8500 (packgram): Invoke record_merge_function_type for each rule now that
8501 all symbol type declarations have been parsed.
8502 * src/reader.h (merger_list.type_declaration_location): New member
8503 storing the location of the first %merge from which the type for this
8504 merging function was derived.
8505 * src/symlist.h (symbol_list.merger_declaration_location): New member
8506 storing the location of a rule's %merge, if any.
8507 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
8508 declared later): New test to catch the error fixed by the above patch.
8509
ffa4ba3a
JD
85102006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8511
8512 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
8513 declarations appear after the rules. Discussed at
8514 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
8515 and
8516 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
8517 Don't mistake the type of $$ in a midrule to be that of its parent
8518 rule's $$.
ffa4ba3a
JD
8519 * src/reader.c (grammar_current_rule_end): Don't invoke
8520 grammar_rule_check yet since not all symbol declarations may have been
8521 parsed yet.
8522 (grammar_midrule_action): Likewise.
8523 Don't record whether the midrule's $$ has been used yet since actions
8524 haven't been translated yet.
8525 Record the midrule's parent rule and its RHS index within the parent
8526 rule.
8527 (grammar_current_rule_action_append): Don't translate the action yet
8528 since not all symbol declarations may have been parsed yet and, thus,
8529 warnings about types for $$, $n, @$, and @n can't be reported yet.
8530 (packgram): Translate the action and invoke grammar_rule_check now that
8531 all symbol declarations have been parsed.
8532 * src/scan-code.l (handle_action_dollar): Now that this is invoked
8533 after parsing the entire grammar file, the symbol list here in the case
8534 of a midrule is actually the midrule's empty RHS, so reference its
8535 parent rule's RHS where necessary.
8536 On the other hand, now that you can already know it's a midrule, you
8537 aren't forced to think $$ has the same type as its parent rule's $$.
8538 (handle_action_at): In the case of a midrule, reference the parent rule
8539 where necessary.
8540 * src/symlist.c (symbol_list_new): Initialize new midrule-related
8541 members.
8542 (symbol_list_length): Now that this is invoked after all rules have
8543 been parsed, a NULL symbol (rather than a NULL symbol list node)
8544 terminates a rule. symbol_list_print already does this correctly.
8545 * src/symlist.h (symbol_list.midrule_parent_rule,
8546 symbol_list.midrule_parent_rhs_index): New members so that midrules can
8547 remember their relationships with their parents.
8548 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
8549 fixed by the above patch.
8550 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
8551 implementing...
8552 (Unused values): ... this old test case and...
8553 (Unused values before symbol declarations): ... this new test case.
8554 This one is the same as `Unused values' except that all symbol
8555 declarations appear after the rules in order to catch the rest of the
8556 errors fixed by the above patch.
8557
e256e17f
JD
85582006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
8559
300a1930
JD
8560 More cleanup.
8561 * src/reader.c (current_rule): Declare it static since it's no longer
8562 used outside this file.
8563 (grammar_current_rule_action_append): Remove redundant arguments from
8564 translate_rule_action invocation.
8565 * src/reader.h (current_rule): Remove this unused extern.
8566 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
8567 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 8568
381ecb06
JD
85692006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
8570
8571 Clean up yesterday's patch.
8572 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
8573 to...
8574 * src/reader.c (grammar_current_rule_action_append): ... here for
8575 consistency with grammar_current_rule_symbol_append.
8576 * tests/regression.at (Braced code in declaration in rules section):
8577 Make yyerror and yylex static as usual.
8578
4210cd0b
JD
85792006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
8580
8581 Fix bug that mistakes braced code in a declaration in the rules section
8582 to be a rule action. Mentioned at
8583 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
8584 * src/scan-gram.l: Move midrule action detection from the start of the
8585 scanning of any braced code to...
8586 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
8587 action. For readability, use $2 and @2 rather than the equivalent
8588 global variables.
8589 * tests/regression.at (Braced code in declaration in rules section):
8590 New test to catch the error fixed by the above patch.
8591
8592 Work on code readability some.
8593 * src/scan-code.l (current_rule): Get rid of this misleading and
8594 redundant declaration: it's actually extern'ed in reader.h.
8595 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
8596 translate_action): Add a rule argument and use it instead of the global
8597 current_rule.
8598 (translate_rule_action): This already receives current_rule through an
8599 argument, so pass it on to translate_action instead of assigning
8600 current_rule to current_rule.
8601 (translate_symbol_action, translate_code): Pass rule = NULL to
8602 translate_action.
8603
34f98f46
JD
86042006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
8605
8606 Rename %before-definitions to %start-header and %after-definitions to
8607 %end-header. Don't use these declarations to separate pre-prologue
8608 blocks from post-prologue blocks. Add new order-independent
8609 declarations %before-header and %after-header as alternatives to the
8610 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
8611 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
8612 * NEWS (2.3+): Update for these changes.
8613 * data/glr.c (b4_before_definitions): Update to...
8614 (b4_start_header): ... this.
8615 (b4_after_definitions): Update to...
8616 (b4_end_header): ... this.
8617 * data/glr.cc: Likewise.
8618 * data/lalr1.cc: Likewise.
8619 * data/yacc.c: Likewise.
8620 * doc/bison.texinfo (The prologue): Update names, and replace remaining
8621 prologue blocks with %*-header declarations.
8622 (Calc++ Parser): Likewise.
91661ebb 8623 (Decl Summary): Update names.
148d66d8 8624 (Table of Symbols): Update description.
34f98f46
JD
8625 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
8626 (PERCENT_END_HEADER): ... this.
8627 (PERCENT_BEFORE_DEFINITIONS): Update to...
8628 (PERCENT_START_HEADER): ... this.
8629 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8630 (declaration): Update token names and m4 macro names.
8631 When parsing %end-header and %start-header, invoke translate_code
8632 before muscle_code_grow, and no longer set global booleans to remember
8633 whether these declarations have been seen.
8634 Parse new %after-header and %before-header.
8635 * src/reader.c (before_definitions, after_definitions): Remove.
8636 (prologue_augment): Accept a new bool argument to specify whether to
8637 augment the pre-prologue or post-prologue.
8638 * src/reader.h (before_definitions, after_definitions): Remove these
8639 extern's.
8640 (prologue_augment): Add new bool argument.
8641 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
8642 (PERCENT_END_HEADER): ... this.
8643 (PERCENT_BEFORE_DEFINITIONS): Update to...
8644 (PERCENT_START_HEADER): ... this.
8645 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
8646 * tests/actions.at (Printers and Destructors): Update names.
8647
31b2b07e
JD
86482006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
8649
8650 Add comparison operators for C++ location classes. Discussed at
8651 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
8652 * data/c++.m4 (b4_define_location_comparison): New boolean %define
8653 declaration indicating whether filename_type has an operator==. If
8654 filename_type is `std::string', it defaults to `1', `0' otherwise.
8655 * data/location.cc: Iff b4_define_location_comparison is `1', add
8656 operator== and operator!= for class position and for class location.
8657
8658 Some minor fixes.
8659 * src/scan-action.l: Remove unused file.
8660 * src/symtab.c (symbol_printer_set): Use printer_location not
8661 destructor_location.
8662 * src/symtab.h (struct symbol): Replace incorrect source comment for
8663 printer members.
8664 * tests/input.at (Incompatible Aliases): Update output with correct
8665 printer location.
8666
9bc0dd67
JD
86672006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
8668
8669 Don't put the pre-prologue in the header file. For the yacc.c code
8670 file and the glr.c header and code files, move the pre-prologue before
8671 the token definitions. Add new %before-definitions and
8672 %after-definitions to declare code that will go in both the header file
8673 and code file. Discussed at
8674 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
8675 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
8676 and
8677 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
8678 * NEWS (2.3+): Describe these changes.
8679 * data/glr.c (b4_pre_prologue): Move from within to before...
8680 (b4_shared_declarations): ... this.
8681 Add new b4_before_definitions before b4_token_enums.
8682 Add new b4_after_definitions at the end.
8683 * data/glr.cc (b4_pre_prologue): Replace with...
8684 (b4_before_definitions): ... this in the header file.
8685 (b4_after_definitions): New near the end of the header file.
8686 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
8687 code file right before including the header file.
8688 (b4_before_definitions): New in the previous position of
8689 b4_pre_prologue in the header file.
8690 (b4_after_definitions): New near the end of the header file.
8691 * data/yacc.c: Clean up some m4 quoting especially in the header file.
8692 (b4_token_enums_defines): In the code file, move to right before
8693 YYSTYPE for consistency with the header file.
8694 (b4_before_definitions): New right before b4_token_enums_defines in
8695 both the header and code file.
8696 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
8697 header and code file.
8698 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
8699 of prologues for %union dependencies.
91661ebb
JD
8700 (Decl Summary): In %defines description, mention the effect of
8701 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
8702 (Calc++ Parser): Forward declare driver in a %before-definitions rather
8703 than in the pre-prologue so that make check succeeds.
148d66d8 8704 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
8705 %after-definitions.
8706 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
8707 %before-definitions.
8708 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
8709 (declaration): Parse those declarations and append to
8710 b4_before_definitions and b4_after_definitions, respectively.
8711 * src/reader.c (before_definitions, after_definitions): New bools to
8712 track whether those declarations have been seen.
8713 (prologue_augment): Add to the post-prologue if %union,
8714 %before-definitions, or %after-definitions has been seen.
8715 * src/reader.h (before_definitions, after_definitions): New extern's.
8716 * src/scan-gram.l: Scan the new declarations.
8717 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
8718 prologue block in a %before-definitions or a %after-definitions based
8719 on whether the %union is declared.
8720 * tests/regression.at (Early token definitions with --yacc, Early token
8721 definitions without --yacc): Move tests for token definitions into the
8722 post-prologue since token names are no longer defined in the
8723 pre-prologue.
8724
203b9274
AD
87252006-06-20 Akim Demaille <akim@epita.fr>
8726
8727 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
8728 (symbol_get): Use it.
8729 * src/parse-gram.y: Use it.
8730
a7ee59cf
JD
87312006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
8732
8733 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
8734 build succeeds when configured with --enable-gcc-warnings.
8735
5a2baae7
PE
87362006-06-19 Paul Eggert <eggert@cs.ucla.edu>
8737
33ad1a9c
PE
8738 * src/parse-gram.y (char_name): New function.
8739 (CHAR, STRING, string_content): For %printer, properly escape.
8740 (ID): Prefer fputs to fprintf.
8741 (id): Reindent to be consistent with other rules.
8742 Properly quote char.
8743
5a2baae7
PE
8744 The Translation Project changed its way of publishing translations
8745 to maintainers. I haven't received any responses to my request
8746 for supporting the old way, or for documenting the new way. I
8747 have modified 'bootstrap' to use screen scraping
8748 (in this case, HTML scraping). This is unreliable and inelegant,
8749 but I don't see any better way. Yuck.
8750 * bootstrap (TP_URL, WGET_COMMAND): New vars.
8751 (get_translations): New function, which uses HTML scraping to
8752 deduce locations of latest translations.
8753 Use this function to grab both bison and bison-runtime .po files.
8754 Don't bother priming the pump for the runtime-po domain any more,
8755 as it's now translated better than bison is.
8756
58d7a1a1
AD
87572006-06-19 Akim Demaille <akim@epita.fr>
8758
8759 * src/scan-gram.l: No longer "parse" things after `%union' until
8760 `{'. Rather, return a single "%union" token.
8761 No longer make symbols: return strings, and leave the conversion
8762 to symbols to the parser.
8763 (SC_PRE_CODE, token_type): Remove.
8764 * src/parse-gram.y (%union): New field `character'.
8765 Sort tokens.
8766 (CHAR): New token.
8767 (ID, ID_COLON): Now that the scanner no longer makes them
8768 identifiers, adjust all uses to invoke symbol_get.
8769 (id_colon): New, wraps the conversion from string to symbol.
8770 (%union): Accept a possible union_name.
8771 (symbol): Now can be a char.
8772 * data/c.m4 (b4_union_name): Leave a default value.
8773 * data/glr.c, data/yacc.c: Use it.
8774
b931235e
JD
87752006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
8776
8777 For associating token numbers with token names for "yacc.c", don't use
8778 #define statements unless `--yacc' is specified; always use enum
8779 yytokentype. Most important discussions start at:
8780 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
8781 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
8782 and
8783 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
8784 * NEWS (2.3+): Mention.
8785 * data/c.m4 (b4_yacc_if): New.
8786 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
8787 token #define's.
8788 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
8789 on token name definitions.
8790 * src/getargs.c (usage): Capitalize `Yacc' in English.
8791 * src/output.c (prepare): Define b4_yacc_flag.
8792 * tests/regression.at (Early token definitions): Test that tokens names
8793 are defined before the pre-prologue not just before the post-prologue.
8794 Remove this test case and copy to...
8795 (Early token definitions with --yacc): ... this to test #define's.
8796 (Early token definitions without --yacc): ... and this to test enums.
8797
9e6e7ed2
PE
87982006-06-11 Paul Eggert <eggert@cs.ucla.edu>
8799
8800 * NEWS: Reword the post-2.3 change to not be so optimistic about
8801 removing the old "look-ahead" spelling.
8802 Update previous look-ahead/lookahead change reports.
8803 * REFERENCES: look-ahead -> lookahead (since that's
8804 what he actually wrote).
8805 * doc/refcard.tex: look ahead -> lookahead,
8806 look-ahead -> lookahead
8807
742e4900
JD
88082006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
8809
8810 For consistency, use `lookahead' instead of `look-ahead' or
8811 `look_ahead'. Discussed starting at
8812 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
8813 and then at
8814 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
8815 * NEWS: For the next release, note the change to `--report'.
8816 * TODO, doc/bison.1: Update English.
8817 * doc/bison.texinfo: Update English.
8818 (Understanding Your Parser, Bison Options): Document as
8819 `--report=lookahead' rather than `--report=look-ahead'.
8820 * src/conflicts.c: Update English in comments.
8821 (lookahead_set): Rename from look_ahead_set.
8822 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
8823 (resolve_sr_conflict): Rename local look_ahead_tokens to
8824 lookahead_tokens, and update other uses.
8825 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
8826 count_rr_conflicts, conflicts_free): Update uses.
8827 * src/getargs.c (report_args): Move "lookahead" before alternate
8828 spellings.
8829 (report_types): Update uses.
8830 (usage): For `--report' usage description, state `lookahead' spelling
8831 rather than `look-ahead'.
8832 * src/getargs.h (report.report_lookahead_tokens): Rename from
8833 report_look_ahead_tokens.
8834 * src/lalr.c: Update English in comments.
8835 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
8836 (state_lookahead_tokens_count): Rename from
8837 state_look_ahead_tokens_count.
8838 Rename local n_look_ahead_tokens to n_lookahead_tokens.
8839 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
8840 Rename local n_look_ahead_tokens to n_lookahead_tokens.
8841 Update other uses.
8842 Update English in output.
8843 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
8844 * src/print.c: Update English in comments.
8845 (lookahead_set): Rename from look_ahead_set.
8846 (print_reduction): Rename argument lookahead_token from
8847 look_ahead_token.
8848 (print_core, state_default_rule, print_reductions, print_results):
8849 Update uses.
8850 * src/print_graph.c: Update English in comments.
8851 (print_core): Update uses.
8852 * src/state.c: Update English in comments.
8853 (reductions_new): Update uses.
8854 (state_rule_lookahead_tokens_print): Rename from
8855 state_rule_look_ahead_tokens_print, and update other uses.
8856 * src/state.h: Update English in comments.
8857 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
8858 (state_rule_lookahead_tokens_print): Rename from
8859 state_rule_look_ahead_tokens_print.
8860 * src/tables.c: Update English in comments.
8861 (conflict_row, action_row): Update uses.
8862 * tests/glr-regression.at
8863 (Incorrect lookahead during deterministic GLR,
8864 Incorrect lookahead during nondeterministic GLR): Rename
8865 print_look_ahead to print_lookahead.
8866 * tests/torture.at: Update English in comments.
8867 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
8868 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
8869 (Many lookahead tokens): Update uses.
8870 * data/glr.c: Update English in comments.
8871 * lalr1.cc: Likewise.
8872 * yacc.c: Likewise.
8873 * src/conflicts.h: Likewise.
8874 * src/lalr.h: Likewise.
8875 * src/main.c: Likewise.
8876 * src/output.c: Likewise.
8877 * src/parse-gram.c: Likewise.
8878 * src/tables.h: Likewise.
8879 * tests/calc.at: Likewise.
8880
3c40d0b5
JD
88812006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
8882
8883 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
8884
5d278082
PE
88852006-06-07 Paul Eggert <eggert@cs.ucla.edu>
8886
8887 * TODO: Add request from Nelson H. F. Beebe to be able to install
8888 Bison without installing the yacc script.
8889
9e668899
JD
88902006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
8891
8892 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
8893 and yytext if they're already #define'd.
8894 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
8895 * src/scan-code-c.c: ... here.
8896 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
8897 <config.h>.
8898
0c8e079f
JD
88992006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
8900
8901 Get Bison to build again when configured with --enable-gcc-warnings.
8902 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
8903 missing #include's.
8904 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
8905 loc argument as it shadows a global.
8906 * src/scan-gram.l: Remove stray comma that prevents boundary_set
8907 invocation.
8908
8909 * src/.cvsignore: Add scan-code.c.
8910
2346344a
AD
89112006-06-07 Akim Demaille <akim@epita.fr>
8912
8913 * src/scan-gram.l: Move the "add a trailing ; to actions" code
8914 to...
8915 * src/scan-code.l: here.
8916 * tests/input.at (Torturing the Scanner): Fix another location
8917 error.
8918
4862bdfd
AD
89192006-06-07 Akim Demaille <akim@epita.fr>
8920
8921 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
8922
e9071366
AD
89232006-06-06 Akim Demaille <akim@epita.fr>
8924
8925 Extract the parsing of user actions from the grammar scanner.
8926 As a consequence, the relation between the grammar scanner and
8927 parser is much simpler. We can also split "composite tokens" back
8928 into simple tokens.
8929 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
8930 * src/scan-gram.l (add_column_width, adjust_location): Move to and
8931 rename as...
8932 * src/location.h, src/location.c (add_column_width)
8933 (location_compute): these.
8934 Fix the column count: the initial column is 0.
8935 (location_print): Be robust to ending column being 0.
8936 * src/location.h (boundary_set): New.
8937 * src/main.c: Adjust to scanner_free being renamed as
8938 gram_scanner_free.
8939 * src/output.c: Include scan-code.h.
8940 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
8941 Use boundary_set.
8942 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
8943 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
8944 which is now, again, a separate token.
8945 Adjust all dependencies.
8946 Whereever actions with $ and @ are used, use translate_code.
8947 (action): Remove this nonterminal which is now useless.
8948 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
8949 (grammar_current_rule_action_append): Use translate_code.
8950 (packgram): Bound check ruleno, itemno, and rule_length.
8951 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
8952 (last_string, last_braced_code_loc, max_left_semantic_context)
8953 (scanner_initialize, scanner_free, scanner_last_string_free)
8954 (gram_out, gram_lineno, YY_DECL_): Move to...
8955 * src/scan-gram.h: this new file.
8956 (YY_DECL): Rename as...
8957 (GRAM_DECL): this.
8958 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
8959 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8960 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8961 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8962 Move these declarations, and...
8963 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
8964 these to...
8965 * src/flex-scanner.h: this new file.
8966 * src/scan-gram.l (rule_length, rule_length_overflow)
8967 (increment_rule_length): Remove.
8968 (last_braced_code_loc): Rename as...
8969 (gram_last_braced_code_loc): this.
8970 Adjust to the changes of the parser.
8971 Move all the handling of $ and @ into...
8972 * src/scan-code.l: here.
8973 * src/scan-gram.l (handle_dollar, handle_at): Remove.
8974 (handle_action_dollar, handle_action_at): Move to...
8975 * src/scan-code.l: here.
8976 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
8977 scan-code.h, scan-code-c.c, scan-gram.h.
8978 (EXTRA_bison_SOURCES): Add scan-code.l.
8979 (BUILT_SOURCES): Add scan-code.c.
8980 (yacc): Be robust to white spaces.
8981
8982 * tests/conflicts.at, tests/input.at, tests/reduce.at,
8983 * tests/regression.at: Adjust the column numbers.
8984 * tests/regression.at: Adjust the error message.
7891a7c4 8985
184e42f0
JD
89862006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8987
8988 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8989 Use Akim's wording from
8990 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
8991
7891a7c4
JD
89922006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8993
8994 Between Bison releases, manually append `+' to the previous Bison
8995 release number, and use that as a signal to automatically print the
8996 ChangeLog's CVS Id keyword from --version. Discussed starting at
8997 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
8998 * ChangeLog: Add Id header.
8999 * configure.ac (AC_INIT): Append `+' to `2.3'.
9000 * src/.cvsignore: Add revision.c.
9001 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
9002 (BUILT_SOURCES): Add revision.c.
9003 (revision.c): New target rule. This file defines a new global variable
9004 named revision. It initializes it with either the Id from ChangeLog
9005 or, if VERSION doesn't contain `+', with the empty string.
9006 * src/getargs.c (version): Print the value of revision.
9007 * src/revision.h: Extern revision.
9008
4ad3ed84
PE
90092006-06-05 Paul Eggert <eggert@cs.ucla.edu>
9010
9011 * NEWS: Version 2.3.
9012 * configure.ac (AC_INIT): Likewise.
9013
02103984
PE
90142006-05-30 Paul Eggert <eggert@cs.ucla.edu>
9015
9016 * data/glr.c (YYRECOVERING): Define to be a function-like macro
9017 with no arguments, not as an object-like macro. This is for
9018 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
9019 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
9020 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
9021 Document this.
9022
2c08afa5
JD
90232006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
9024
9025 * src/getargs.c (usage): Back out yesterday's modification of the
9026 --help output so that we don't have to wait for translation before
9027 releasing 2.3.
9028
6077da58
PE
90292006-05-29 Paul Eggert <eggert@cs.ucla.edu>
9030
9031 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
9032 Problem reported by Akim Demaille.
9033
2a26b6c2
JD
90342006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
9035
9036 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9037
aefef0d6
PE
90382006-05-26 Paul Eggert <eggert@cs.ucla.edu>
9039
9040 * data/yacc.c (yy_reduce_print): Omit trailing white space in
9041 generated source code. Problem reported by Frans Englich in
9042 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
9043
fcd8e201
PE
90442006-05-22 Paul Eggert <eggert@cs.ucla.edu>
9045
9046 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
9047 shell, not within 'make', so that 'make' by an ordinary builder
9048 (using GNU make) does not worry about configuring gzip. This also
9049 works around a bug reported independently by Keith Thompson and by
9050 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
9051 stderr rather than stdout, messing up the build logs.
9052
7b5cdcbd
JD
90532006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9054
9055 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
9056 to make sure that YYID will never be unused. This fixes a 'make
9057 maintainer-check' failure caused by the recent changes to the 'Trivial
9058 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
9059 not used.
9060 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
9061
5ad0a449
JD
90622006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9063
9064 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
9065 state before an empty RHS is always resolved here. Only the location
9066 of that state is guaranteed to be resolved, and that's enough. This
9067 fixes the remaining bug reported by Derek M. Jones in
9068 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9069 * tests/glr-regression.at (Uninitialized location when reporting
9070 ambiguity): Test the above case.
9071 Also, the embedded comments in this test case claim it checks the case
9072 of an empty RHS that has inherited the initial location. However, the
9073 corresponding LHS was already resolved, so yyresolveLocations didn't
9074 actually have reason to modify it. Fix this by forcing
9075 nondeterministic operation at the beginning of the parse.
9076
50cce58e
PE
90772006-05-20 Paul Eggert <eggert@cs.ucla.edu>
9078
9079 * data/c.m4 (b4_yy_symbol_print_generate):
9080 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
9081 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
9082 of the bugs reported today by Derek M Jones in
9083 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9084 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
9085 defined to be a type name without parens or brackets.
9086 (Location Type): Similarly for YYLTYPE.
9087 * tests/regression.at (Trivial grammars): Put in a test for this
9088 bug that will be caught by 'make maintainer-check' (though not,
9089 alas, by 'make check' unless your compiler is picky).
9090
ab8d9dc5
PE
90912006-05-19 Paul Eggert <eggert@cs.ucla.edu>
9092
0d2c8934 9093 * NEWS: Version 2.2.
ab8d9dc5
PE
9094 * configure.ac (AC_INIT): Likewise.
9095
9138c575
JD
90962006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
9097
9098 * data/glr.c (yyreportTree): Make room in yystates for the state
9099 preceding the RHS. This fixes the segmentation fault reported by Derek
9100 M. Jones in
9101 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
9102 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
9103 to the user. Reported for yyreportTree by Derek M. Jones later in the
9104 same thread.
9105 * THANKS: Add Derek M. Jones.
9106 Update my email address.
9107 Fix typo in Steve Murphy's name.
9108
276f48df
PE
91092006-05-14 Paul Eggert <eggert@cs.ucla.edu>
9110
d6645148
PE
9111 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
9112 checking against YYLAST that caused the parser to miss a potential
9113 alternative in its diagnostic.
9114 Problem reported by Maria Jose Moron Fernandez in
9115 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
9116 * data/lalr1.cc (yysyntax_error_): Likewise.
9117 * data/yacc.c (yysyntax_error): Likewise.
9118 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
9119 tokens, in case we run into an older C compiler.
9120 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
9121 Use them to check for the off-by-one error fixed above.
9122
276f48df
PE
9123 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
9124 YYSIZE_T, not size_t.
9125 * tests/regression.at (Trivial grammars): New test, to catch
9126 the error fixed by the above patch.
9127
cd8b5791
AD
91282006-05-14 Akim Demaille <akim@lrde.epita.fr>
9129
9130 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
9131 scheme.
9132 Reported by Steve Murphy.
9133
34376418
AD
91342006-05-14 Akim Demaille <akim@lrde.epita.fr>
9135
9136 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
9137 * data/glr.cc: b4_location_flag is now b4_locations_flag.
9138
327afc7c
AD
91392006-05-14 Akim Demaille <akim@lrde.epita.fr>
9140
9141 Implement --trace=m4.
9142 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
9143 * src/output.c (output_skeleton): When set, pass -dV to m4.
9144
9145 Factor the handling of flags in m4.
9146 * src/output.c (prepare): Rename the muscle names debug, defines,
9147 error_verbose to debug_flag, defines_flag, error_verbose_flag.
9148 * data/c.m4: Adjust.
9149 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
9150 Use b4_define_flag_if to define other b4_FLAG_if macros.
9151 (b4_location_if): As a consequence, rename as...
9152 (b4_locations_if): this, for consistency.
9153 Adjust all the skeletons.
9154
ba9ecd19
AD
91552006-05-14 Akim Demaille <akim@lrde.epita.fr>
9156
9157 * etc/bench.pm: Shorten bench names.
9158
4e83ea15
AD
91592006-05-14 Akim Demaille <akim@lrde.epita.fr>
9160
9161 * src/output.h, src/output.c (error_verbose): Move to...
9162 * src/getargs.h, src/getargs.c: here.
9163 Sort the flags.
9164 Adjust dependencies.
9165
6e93d810
PE
91662006-05-13 Paul Eggert <eggert@cs.ucla.edu>
9167
9168 * data/c.m4 (b4_copyright): Put the special exception for Bison
9169 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
9170 uses changed. Suggested by Akim Demaille. Also, wrap the
9171 copyright notice, in case it is longer than 80 columns. Replace
9172 comma by newline after title.
6e93d810 9173
eaea13f5
PE
91742006-05-11 Paul Eggert <eggert@cs.ucla.edu>
9175
9176 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
9177 incompatibility, not a bug. Mention that it wasn't fixed as of
9178 flex 2.5.33.
9179
3cf084ec
AD
91802006-05-11 Akim Demaille <akim@lrde.epita.fr>
9181
9182 * examples/extexi: Enforce the precedence of concatenation over
9183 >>.
0a9f1c7d 9184 Reported by Tommy Nordgren.
3cf084ec 9185
32c96bd7
AD
91862006-05-11 Akim Demaille <akim@lrde.epita.fr>
9187
9188 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
9189 with the member "token".
f94705b2 9190 Reported by Martin Nylin.
32c96bd7 9191
eaea13f5
PE
91922006-05-08 Paul Eggert <eggert@cs.ucla.edu>
9193
9194 * data/glr.c: Switch to Bison 2.2 special-exception language in
9195 the copyright notice. Use more-regular format for titles and
9196 copyright notices.
9197 * data/glr.cc: Likewise.
9198 * data/location.cc: Likewise.
9199 * data/yacc.cc: Likewise.
9200 * doc/bison.texinfo (Conditions): Document this.
9201 * NEWS: likewise. Upgrade version to 2.2.
9202
6e2d1146
AD
92032006-04-27 Akim Demaille <akim@lrde.epita.fr>
9204
9205 * data/glr.cc: Remove dead code.
9206
47671055
PE
92072006-04-25 Paul Eggert <eggert@cs.ucla.edu>
9208
9209 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
9210 that variable and the line breaks the bootstrap. Problem reported
9211 by Juan M. Guerrero.
9212
ed2e6384
AD
92132006-04-24 Akim Demaille <akim@lrde.epita.fr>
9214
9215 * doc/bison.texinfo (Multiple start-symbols): New.
9216
3cedc2dc
AD
92172006-04-24 Akim Demaille <akim@lrde.epita.fr>
9218
9219 * etc/README, etc/bench.pl: New.
9220
b2ddc3f3
AD
92212006-04-03 Akim Demaille <akim@lrde.epita.fr>
9222
9223 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
9224 rule.
9225 Reported by Mickael Labau.
9226 * tests/input.at (Torturing the Scanner): Test it.
9227
91e3ac9a
PE
92282006-03-16 Paul Eggert <eggert@cs.ucla.edu>
9229
9230 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
9231 Problem reported by Bob Rossi.
9232
92332006-03-13 Paul Eggert <eggert@cs.ucla.edu>
9234
9235 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
9236 and didn't really work.
9237 For the index, use @ifnotinfo, not @iftex.
9238 Minor cleanups of spacing and terminology.
9239
5cf61e93
AD
92402006-03-12 Akim Demaille <akim@lrde.epita.fr>
9241
9242 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
9243 of AT_NAME_PREFIX when %name-prefix is not used.
9244
aa08666d
AD
92452006-03-12 Akim Demaille <akim@lrde.epita.fr>
9246
9247 Apply --prefix to C++ skeletons too: they change the namespace.
9248 The test suite already exercize these cases.
9249 * data/c++.m4 (b4_namespace): New.
9250 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
9251 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
9252 * data/yacc.c, data/glr.c: Remove a useless `[]'.
9253 * doc/bison.texinfo: Document it.
9254 (Option Cross Key): Use @multitable in all formats. It looks
9255 nicer, even in TeX outputs.
9256 (Rules): Use the same code whatever the output type is.
9257 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
9258 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
9259 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 9260
45567173
AD
92612006-03-10 Akim Demaille <akim@lrde.epita.fr>
9262
9263 * TODO: Remove dead items.
9264
e9d8f881 92652006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
9266
9267 * doc/FAQ: Remove, merged into...
9268 * doc/bison.texinfo (FAQ): this.
9269 * doc/Makefile.am (EXTRA_DIST): Adjust.
9270
c095d689
AD
92712006-03-10 Akim Demaille <akim@lrde.epita.fr>
9272
9273 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
9274 even if empty.
9275 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
9276 * doc/bison.texinfo (Calc++ Scanner): Use it.
9277
6e0f8287
PE
92782006-03-09 Paul Eggert <eggert@cs.ucla.edu>
9279
9280 Fix two nits reported by twlevo, plus one more that I discovered.
9281
9282 * src/assoc.h (assoc_to_string): Give a name to the arg, as
9283 this is the usual Bison style.
9284 * src/location.h (location_print): Likewise.
9285
9286 * src/reader.h (token_name): Likewise.
9287
d6b771c3
PE
92882006-03-08 Paul Eggert <eggert@cs.ucla.edu>
9289
9290 Fix some nits reported by twlevo.
9291 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
9292 and "POSIX". Use more-modern syntax for URLs. Mention C++
9293 and ask for Java. Don't hardwire OS version numbers. Add
9294 copyright notice.
9295 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
9296 * src/conflicts.c (solved_conflicts_obstack): Now static.
9297
1e137b71
JD
92982006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
9299
9300 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
9301 page. Say "you can use it" not "you may use it" as on the web page;
9302 we're describing capabilities not granting permission.
9303
73f2e47e
PE
93042006-03-06 Paul Eggert <eggert@cs.ucla.edu>
9305
6d05403d
PE
9306 * data/glr.c (yyresolveLocations): Rename local variables to avoid
9307 shadowing warnings. Use usual patter for iterating through RHS.
9308 * tests/glr-regression.at
9309 (Uninitialized location when reporting ambiguity):
9310 Modify yylex so that it uses its argument, rather than trying
9311 to rely on ARGSUSED (which doesn't work for gcc with warnings).
9312 const char -> char const.
9313
73f2e47e
PE
9314 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
9315 Don't use tabs inside commands; it messes up 'ps'.
9316 Problem reported by twlevo.
9317
8710fc41
JD
93182006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
9319
9320 * tests/glr-regression.at (Uninitialized location when reporting
9321 ambiguity): New test case.
9322 * data/glr.c (yyresolveLocations): New function, which uses
9323 YYLLOC_DEFAULT.
9324 (yyresolveValue): Invoke yyresolveLocations before reporting an
9325 ambiguity.
9326 * doc/bison.texinfo (Default Action for Locations): Note
9327 YYLLOC_DEFAULT's usage for ambiguity locations.
9328 (GLR Semantic Actions): Cross-reference those notes.
9329
ae952af2
JD
93302006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
9331
9332 * tests/glr-regression.at (Leaked semantic values when reporting
9333 ambiguity): Remove unnecessary union and type declarations.
9334 (Leaked lookahead after nondeterministic parse syntax error): New test
9335 case.
9336 * data/glr.c (yyparse): Check for zero stacks remaining before
9337 attempting to shift the lookahead so that you don't lose it.
9338
35ee866a
JD
93392006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9340
9341 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
9342 * tests/glr-regression.at (Leaked semantic values when reporting
9343 ambiguity): New test case.
9344 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
9345 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
9346 now unnecessary yystackp parameter.
9347 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
9348 destructors can be called.
9349
9350 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
9351 in existing testcases.
9352
520181ab
JD
93532006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
9354
9355 Don't leak semantic values for parent RHS when a user action cuts the
9356 parser, and clean up related code a bit.
9357 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
9358 cuts parse): Rename to...
9359 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
9360 for leaked parent RHS values.
9361 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
9362 between an unresolved state (non-empty chain of semantic options) and
9363 an incomplete one (signaled by an empty chain).
ae952af2 9364 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
9365 successfully or unsuccessfully resolved yyGLRState to...
9366 (yyresolveValue): ... here so that yyresolveValue always leaves a
9367 yyGLRState with consistent data and thus is easier to understand.
9368 Remove the yyvalp and yylocp parameters since they are always just
9369 taken from the yys parameter. When reporting a discarded merged value
9370 in debugging output, note that it is incompletely merged. Document the
9371 interface.
9372 (yyresolveAction): If resolving any of the RHS states fails, destroy
9373 them all rather than leaking them. Thus, as long as user actions are
9374 written to clean up the RHS correctly, yyresolveAction always cleans up
9375 the RHS of a semantic option. Document the interface.
9376
18d9185c
PE
93772006-02-27 Paul Eggert <eggert@cs.ucla.edu>
9378
9379 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
9380 led to a segmentation fault in GNU Pascal. Problem reported
9381 by Waldek Hebisch.
9382
841a7737
JD
93832006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
9384
9385 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
9386 mid-rule action inside a nonterminal symbol in order to declare a
9387 destructor for its semantic value.
9388
fc3f467f
PE
93892006-02-16 Paul Eggert <eggert@cs.ucla.edu>
9390
9391 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
9392 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
9393 __cplusplus && ! defined _STDLIB_H && !
9394 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
9395 defined free))]: Include <stdlib.h> rather than rolling our own
9396 declarations of malloc and free, to avoid problems with
9397 incompatible declarations (using 'throw') C++'s stdlib.h. This
9398 should fix Debian bug 340012
9399 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
9400 reported by Guillaume Melquiond.
9401
a3af26dd
PE
94022006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9403
4d7bc38c
PE
9404 * NEWS: Clarify symbols versus types in unused-value warnings.
9405
a3af26dd
PE
9406 * configure.ac (AC_INIT): Bump version number.
9407
4e26c69e
PE
94082006-02-13 Paul Eggert <eggert@cs.ucla.edu>
9409
9410 * NEWS: Version 2.1a.
9411 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
9412 since C99 requires this.
9413
498e897c
PE
94142006-02-11 Paul Eggert <eggert@cs.ucla.edu>
9415
9416 * m4/c-working.m4: New file.
9417 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
9418
57bb17ca
PE
94192006-02-10 Paul Eggert <eggert@cs.ucla.edu>
9420
9421 * Makefile.maint: Merge from coreutils.
9422
0be105dc
PE
94232006-02-09 Paul Eggert <eggert@cs.ucla.edu>
9424
9425 More portability fixes for problems summarized by Nelson H. F. Beebe.
9426
9427 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
9428 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
9429 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
9430 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
9431 messes up because C++ code is compiled in 32-bit mode but linked
9432 in 64-bit mode.
9433
6fc0c024
PE
94342006-02-08 Paul Eggert <eggert@cs.ucla.edu>
9435
9436 More portability fixes for problems summarized by Nelson H. F. Beebe.
9437
7870f699
PE
9438 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
9439 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
9440
6fc0c024
PE
9441 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
9442 nodist_PROGRAMS, since we don't need to actually compile the
9443 example if we're just doing a plain 'make'. This avoids bothering
9444 the installer unnecessarily about problems due to weird C++
9445 compilers.
9446
fe6c2fde
PE
94472006-02-06 Paul Eggert <eggert@cs.ucla.edu>
9448
9449 More portability fixes for problems summarized by Nelson H. F. Beebe.
9450
9451 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
9452 than #include "...", and compile with -I'.'. The old method was
9453 not portable, according to Posix and the C standard, and it does
9454 not work with Sun C 5.7, where previous #line directives affect
9455 the working directory used in later #include "..." directives.
9456
927b425b
JMG
94572006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9458
9459 Various DJGGP specific issues in /djgpp
9460
d9735e9e
PE
94612006-02-02 Paul Eggert <eggert@cs.ucla.edu>
9462
9463 More portability fixes for problems summarized by Nelson H. F. Beebe.
9464
9465 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
9466 '#include <map>' works and that you can apply ++ to iterators.
9467
5a6755af
PE
94682006-02-01 Paul Eggert <eggert@cs.ucla.edu>
9469
67a0dc4f
PE
9470 Work around portability problems summarized by Nelson H. F. Beebe in
9471 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
9472
8c86f0ef
PE
9473 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9474 that '#include <string>' works.
9475
de35dd59
PE
9476 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
9477 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
9478 "warning: sorry: semantics of inline function static data `const
9479 unsigned char translate_table[262]' are wrong (you'll wind up with
9480 multiple copies)".
9481
67a0dc4f
PE
9482 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
9483 or, xor to not_, and_, or_, and xor_, respectively. This works
9484 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
9485 random system header somewhere that includes the equivalent of
9486 <iso646.h>.
9487
5a6755af
PE
9488 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
9489 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 9490 Suite Version 2.0.
5a6755af 9491
3f001415
JD
94922006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
9493
9494 During deterministic GLR operation, user actions should be able to
9495 influence the parse by changing yychar. To make this easier to fix and
9496 to make glr.c easier to evolve in general, don't maintain yytoken in
9497 parallel with yychar; just compute yytoken when needed.
9498 * tests/glr-regression.at (Incorrect lookahead during deterministic
9499 GLR): Check that setting yychar in a user action has the intended
9500 effect.
9501 * data/glr.c (yyGLRStack): Remove yytokenp member.
9502 (yyclearin): Don't set *yytokenp.
9503 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
9504 yychar rather than *yytokenp to determine the current lookahead.
9505 Compute yytoken locally when needed.
9506 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
9507 point to.
9508
9509 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
9510 after `--report' documentation.
9511
e2a8c0f5
PE
95122006-01-30 Paul Eggert <eggert@cs.ucla.edu>
9513
9514 * src/parse-gram.y (grammar_declaration): Location of printer
9515 symbol is @1, not list->location. Bug reported by twlevo.
9516 * tests/input.at (Incompatible Aliases): Adjust to above change.
9517
6b702268
PE
95182006-01-29 Paul Eggert <eggert@cs.ucla.edu>
9519
27622431
PE
9520 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
9521 all the test at once. This makes the output easier to read in the
9522 normal case.
9523
6b702268
PE
9524 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
9525 got from <http://bro-ids.org/download.html>. The bug is that
9526 when two actions appeared in succession, the second one was
9527 scanned before the first one was added to the grammar rule
9528 as a midrule action. Bison then output the incorrect warning
9529 "parse.y:905.17-906.36: warning: unused value: $3".
9530 * src/parse-gram.y (BRACED_CODE, action): These are no longer
9531 associated with a value.
9532 (rhs): Don't invoke grammar_current_rule_action_append.
9533 (action): Invoke it here instead.
9534 * src/reader.c (grammar_midrule_action): Now extern.
9535 (grammar_current_rule_action_append): Don't invoke
9536 grammar_midrule_action; that is now the scanner's job.
9537 * src/reader.h (last_string, last_braced_code_loc):
9538 (grammar_midrule_action): New decls.
9539 * src/scan-gram.l (last_string): Now extern, sigh.
9540 (last_braced_code_loc): New extern variable.
9541 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
9542 rule already has an action.
9543 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
9544 * tests/input.at (AT_CHECK_UNUSED_VALUES):
9545 Add some tests to check that the above changes fixed the bug.
9546
d40ba6c2
PE
95472006-01-27 Paul Eggert <eggert@cs.ucla.edu>
9548
9549 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
9550 All used changed. Check whether the symbol has a destructor,
9551 not whether it is typed.
9552 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
9553 that the values are still reported as unused. All line numbers
9554 adjusted.
9555
401aace6
PE
95562006-01-23 Paul Eggert <eggert@cs.ucla.edu>
9557
9558 Work around a bug in bro 0.8, which underparenthesizes its
9559 definition of YYLLOC_DEFAULT.
9560 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
9561 their arguments.
9562 * data/lalr1.cc: Likewise.
9563 * data/yacc.cc: Likewise.
9564
06f01bc4
PE
95652006-01-22 Paul Eggert <eggert@cs.ucla.edu>
9566
401aace6
PE
9567 Work around a bug in Pike 7.0, and give the Pike folks a
9568 better way to override the usual int widths.
9569 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
9570 user can override the types.
9571 (short): #undef, to work around a bug in Pike 7.0.
9572 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
9573 (union yyalloc.yyss): Use yytype_int16 rather than short.
9574 All uses changed.
9575 (yysigned_char): Remove.
9576 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
9577 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
9578 * tests/regression.at (Web2c Actions): Adjust to above changes.
9579
9580 * src/reader.c (check_and_convert_grammar): New function.
9581 (reader): Close the input file even if something went wrong during
9582 parsing. Minor file descriptor leak reported by twlevo.
9583
06f01bc4
PE
9584 * src/assoc.c (assoc_to_string): Use a default: abort (); case
9585 to pacify gcc -Wswitch-default.
9586 * src/scan-gram.l (adjust_location): Use a default: break; case
9587 to pacify gcc -Wswitch-default.
9588 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
9589 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9590 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9591 Move these decls to scan-skel.l, since they don't need to be
9592 visible elsewhere.
9593 * src/scan-skel.l: Accept the above decls.
9594 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
9595 is used.
9596
02650b7f
PE
95972006-01-21 Paul Eggert <eggert@cs.ucla.edu>
9598
9599 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
9600 since we don't want to insist on a version number at the start
9601 of the changelog every time.
9602 * Makefile.maint: Sync from coreutils a bit better.
9603 (sc_trailing_blank): Renamed from sc_trailing_space.
9604 All uses changed.
9605 (sc_no_if_have_config_h, sc_require_config_h):
9606 (sc_prohibit_assert_without_use): New rules.
9607 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
9608 (sc_dd_max_sym_length): Fix leading spaces in rule.
9609 (sc_system_h_headers): Prefix with @.
9610 (sc_useless_cpp_parens, m4-check): Output line numbers.
9611 (changelog-check): Allow version only in head.
9612 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
9613 satisfy new Makefile.maint rule.
9614 * data/glr.c: Likewise.
9615 * data/glr.cc: Likewise.
9616 * data/lalr1.cc: Likewise.
9617 * data/yacc.c: Likewise.
9618 * lib/ebitsetv.c: Likewise.
9619 * lib/lbitset.c: Likewise.
9620 * lib/subpipe.c: Likewise.
9621 * lib/timevar.c: Likewise.
9622 * src/system.h: Likewise.
9623 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
9624 * djgpp/Makefile.maint: Add copyright notice.
9625 * djgpp/README.in: Likewise.
9626 * djgpp/config.bat: Likewise.
9627 * djgpp/config.site: Likewise.
9628 * djgpp/config_h.sed: Likewise.
9629 * djgpp/djunpack.bat: Likewise.
9630 * djgpp/config.sed: Fix copyright notice to match standard format.
9631 * djgpp/subpipe.h: Likewise.
9632 * lib/bitsetv-print.c: Likewise.
9633 * lib/bitsetv.c: Likewise.
9634 * lib/subpipe.h: Likewise.
9635 * lib/timevar.c: Likewise.
9636 * lib/timevar.h: Likewise.
9637 * djgpp/subpipe.c: Use standard recipe for config.h.
9638 * lib/abitset.c: Likewise.
9639 * lib/bitset.c: Likewise.
9640 * lib/bitset_stats.c: Likewise.
9641 * lib/bitsetv-print.c: Likewise.
9642 * lib/bitsetv.c: Likewise.
9643 * lib/ebitsetv.c: Likewise.
9644 * lib/get-errno.c: Likewise.
9645 * lib/lbitset.c: Likewise.
9646 * lib/subpipe.c: Likewise.
9647 * lib/timevar.c: Likewise.
9648 * lib/vbitset.c: Likewise.
9649 * tests/local.at: Likewise.
9650 * src/scan-gram.l: Don't include verify.h, since system.h does
9651 that for us.
9652 * .x-sc_require_config_h: New file.
9653 * .x-sc_unmarked_diagnostics: New file.
9654
287c78f6
PE
96552006-01-20 Paul Eggert <eggert@cs.ucla.edu>
9656
287c78f6
PE
9657 Be a bit more systematic about using 'abort'.
9658 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
9659 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
9660 Put 'default: abort ();' before some other case, to satisfy older
9661 pedantic compilers.
9662 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9663 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
9664 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
9665 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
9666 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
9667 (get_decision_str, get_orientation_str, get_node_alignment_str):
9668 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
9669 (get_linestyle_str, get_arrowstyle_str): Likewise.
9670 * src/conflicts.c (resolve_sr_conflict):
9671 Use a default case rather than one for the one remaining enum
9672 value, to catch invalid enum values as well.
9673 * src/lalr.c (set_goto_map, map_goto):
9674 Prefer "assert (FOO);" to "if (!FOO) abort ();".
9675 * src/nullable.c (nullable_compute, token_definitions_output):
9676 Likewise.
9677 * src/reader.c (packgram, reader): Likewise.
9678 * src/state.c (transitions_to, state_new, state_reduction_find):
9679 Likewise.
9680 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
9681 (symbol_pack): Likewise.
9682 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
9683 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
9684 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
9685 * src/system.h: Don't include <assert.h>.
9686 (assert): New macro.
9687
9688 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
9689 (Destructor Decl, Parser Function, Pure Calling):
9690 Describe rules for braces inside C code more carefully.
287c78f6 9691
c66dfadd
PE
96922006-01-19 Paul Eggert <eggert@cs.ucla.edu>
9693
c21493b8
PE
9694 Fix some porting glitches found by Nelson H. F. Beebe.
9695 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
9696 compilers that don't understand that abort () does not return.
9697 * src/state.c (transitions_to): Likewise.
9698 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
9699 that '#include <cstdlib>' works.
9700 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
9701 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
9702 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
9703 for the benefit of some pre-C99 compilers.
9704
b6e3facf
PE
9705 * bootstrap: Undo changes to gnulib files that autoreconf made.
9706
c66dfadd
PE
9707 Minor fixups to get 'make maintainer-check' to work.
9708 * configure.ac: Don't use -Wnested-externs, as it's incompatible
9709 with the new verify.h implementation.
9710 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
9711 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
9712 * data/yacc.c (YYUSE): Likewise.
9713 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
9714 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
9715 * src/parse-gram.y (declaration): Don't pass a string constant
9716 to a function that expects char *, since GCC might complain
9717 about the constant value.
9718 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
9719 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
9720 before #defining them.
9721 * tests/glr-regression.at
9722 (Incorrectly initialized location for empty right-hand side in GLR):
9723 In yyerror, use the msg arg.
9724 (Corrupted semantic options if user action cuts parse):
9725 (Incorrect lookahead during deterministic GLR):
9726 (Incorrect lookahead during nondeterministic GLR):
9727 Don't name a local var 'index'; it shadows string.h's 'index'.
9728
ed94ef2a
AD
97292006-01-19 Akim Demaille <akim@epita.fr>
9730
9731 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
9732 location, not just parts of it.
9733
e9ad4aec
PE
97342006-01-18 Paul Eggert <eggert@cs.ucla.edu>
9735
d6ca7905
PE
9736 * NEWS: Document the fact that multiple %unions are now allowed.
9737 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
9738 * TODO: This feature is now implemented, so remove it from
9739 the wishlist.
d6ca7905 9740
ef1b70e0
PE
9741 * Makefile.maint: Merge with coreutils Makefile.maint.
9742 (CVS_LIST): Use build-aux version if available.
9743 (VERSION_REGEXP): New macro.
9744 (syntax-check-rules): Add sc_no_if_have_config_h,
9745 sc_prohibit_assert_without_use, sc_require_config_h,
9746 sc_useless_cpp_parens.
9747 (sc_obsolete_symbols): Check for O_NDELAY.
9748 (sc_dd_max_sym_length): Track coreutils.
9749 (sc_unmarked_diagnostics): Look in all files, not just *.c.
9750 (sc_useless_cpp_parens): New rule.
9751 (news-date-check): Look for version or today's date.
9752 (changelog-check): Don't require version number near head.
9753 (copyright-check): Use current year instead of hardwiring 2005.
9754 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
9755 (announcement): Add --gpg-key-ID.
9756
9757 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
9758 with "file system".
9759
2073ce56 9760 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
9761 array. Problem reported by twlevo.
9762 * src/reader.c (packgram): Prepend a new sentinel before ritem.
9763 * src/lalr.c (build_relations): Rely on new sentinel.
9764 * src/gram.c (gram_free): Adjust to new sentinel.
9765
b7691f15
JD
97662006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
9767
9768 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
9769 yylookaheadNeeds. All uses updated.
9770 (yysplitStack): Rename local yynewLookaheadStatuses to
9771 yynewLookaheadNeeds.
9772 * data/glr-regression.at (Incorrect lookahead during nondeterministic
9773 GLR): In comments, change `lookahead status' to `lookahead need'.
9774
ddee1b06
PH
97752006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9776
9777 * data/glr.c (yysplitStack): A little stylistic rewrite.
9778
12f4614d
PH
97792006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9780
9781 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
9782
32c29292
JD
97832006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
9784
9785 * doc/bison.texinfo: Fix some typos.
9786 (GLR Semantic Actions): New subsection discussing special
9787 considerations because GLR semantic actions might be deferred.
9788 (Actions): Mention look-ahead usage of yylval.
9789 (Actions and Locations): Mention look-ahead usage of yylloc.
9790 (Special Features for Use in Actions): Add YYEOF entry and mention it
9791 in the yychar entry.
9792 In the yychar entry, remove mention of the local yychar case (pure
9793 parser) since this is irrelevant information when writing semantic
148d66d8 9794 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
9795 yychar is otherwise described as an external variable.
9796 In the yychar entry, don't call it the `current' look-ahead since it
9797 isn't when semantic actions are deferred.
9798 In the yychar and yyclearin entries, add note about deferred semantic
9799 actions.
9800 Add yylloc and yylval entries discussing look-ahead usage.
9801 (Look-Ahead Tokens): When discussing yychar, don't call it the
9802 `current' look-ahead, and do mention yylval and yylloc.
9803 (Error Recovery): Cross-reference `Action Features' when mentioning
9804 yyclearin.
148d66d8 9805 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
9806 look-ahead.
9807 In the yylloc and yylval entries, mention look-ahead usage.
9808
de366a2f 98092006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
9810
9811 * tests/glr-regression.at: Update copyright year to 2006.
9812
bf70fa87
JD
98132006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
9814
9815 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
9816 use during nondeterministic operation to track which stacks have
9817 actually needed the current lookahead.
9818 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
9819 Allocate, deallocate, resize, and otherwise shuffle space for
9820 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
9821 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
9822 appropriately during nondeterministic operation.
9823 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
9824 members to store the current lookahead to be used by the deferred
9825 user action.
9826 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
9827 from which the RHS is taken. Set the lookahead members of the new
9828 yySemanticOption according to the lookahead status for stack yyk.
9829 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
9830 yyaddDeferredAction.
9831 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
9832 members of yySemanticOption before invoking yyuserAction, and then set
9833 them back to their current values afterward.
9834 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
9835 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
9836 * tests/glr-regression.at: Remove `.' from the ends of recent test case
9837 titles for consistency.
9838 (Leaked merged semantic value if user action cuts parse): In order to
9839 suppress lint warnings, use arguments in merge function, and assign
9840 char value < 128 in main.
9841 (Incorrect lookahead during deterministic GLR): New test case.
9842 (Incorrect lookahead during nondeterministic GLR): New test case.
9843
05449a2c
JD
98442006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
9845
de366a2f 9846 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
9847 !yyvaluep as signal that no semantic value is available to print.
9848 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
9849 to print a semantic value.
9850
4158e0a1 98512006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 9852
4158e0a1
JD
9853 * tests/glr-regression.at: For consistency with my newer test cases,
9854 don't thank myself.
9855
d659304d
JD
98562006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
9857
9858 * data/glr.c (yyresolveValue): When merging semantic options, if at
9859 least one user action succeeds but a later one cuts the parse, then
9860 destroy the semantic value before returning rather than leaking it.
9861 (yyresolveStates): If a user action cuts the parse and thus
9862 yyresolveValue fails, ignore the (unset) semantic value rather than
9863 corrupting the yyGLRState, and empty the semantic options list since
9864 the user actions should have called all necessary destructors.
9865 Simplify code with YYCHK.
9866 * tests/glr-regression.at (Corrupted semantic options if user action
9867 cuts parse): New test case.
9868 (Undesirable destructors if user action cuts parse): New test case.
9869 Before applying any of this patch, this test case never actually failed
9870 for me... but only because the corrupted semantic options usually
9871 masked this bug.
9872 (Leaked merged semantic value if user action cuts parse): New test
9873 case.
9874
6ec2c0f2
AD
98752006-01-05 Akim Demaille <akim@epita.fr>
9876
9877 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
9878
1b9c21fb
PE
98792006-01-04 Paul Eggert <eggert@cs.ucla.edu>
9880
9881 * data/c.m4 (b4_c_modern): New macro, with a new provision for
9882 _MSC_VER. Problem reported by Cenzato Marco.
9883 (b4_c_function_def): Use it.
9884 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
9885 b4_c_modern.
9886 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
9887 than rolling our own.
9888
84866159
AD
98892006-01-04 Akim Demaille <akim@epita.fr>
9890
9891 Also warn about non-used mid-rule values.
9892 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
9893 member.
9894 (symbol_list_new): Adjust.
9895 * src/reader.c (symbol_typed_p): New.
9896 (grammar_rule_check): Use it.
9897 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
9898 Check its rule.
9899 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
9900 Use it.
9901 * tests/actions.at (Exotic Dollars): Adjust.
9902
378f4bd8
AD
99032006-01-04 Akim Demaille <akim@epita.fr>
9904
9905 * src/reader.c (grammar_midrule_action): If $$ is set in a
9906 mid-rule, move the `used' bit to its lhs.
9907 * tests/input.at (Unused values): New.
9908 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
9909
e2a21b6f
PE
99102006-01-03 Paul Eggert <eggert@cs.ucla.edu>
9911
54662697
PE
9912 * doc/bison.texinfo (Bison Options): Say more accurately what
9913 --yacc does.
9914 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
9915 about declarations in the grammar when in Yacc mode, as POSIX does
9916 not require a diagnostic when the grammar uses extensions.
9917
9918 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
9919
073f9288
PE
9920 Warn about dubious constructions like "%token T T".
9921 Reported by twlevo.
9922 * src/symtab.h (struct symbol.declared): New member.
9923 * src/symtab.c (symbol_new): Initialize it to false.
9924 (symbol_class_set): New arg DECLARING, specifying whether
9925 this is a declaration that we want to warn about, if there
9926 is more than one of them. All uses changed.
9927
1221b78a
PE
9928 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
9929 Allow multiple %union directives, whose contents concatenate.
9930 * src/parse-gram.y (grammar_declaration): Likewise.
9931 Use muscle_code_grow, so that we don't need stype_line any more.
9932 All uses changed.
9933
9934 * src/muscle_tab.c (muscle_grow): Fix comment.
9935
e2a21b6f
PE
9936 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
9937 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
9938 Update copyright year to 2006.
9939
8f7e3cf9
AD
99402006-01-03 Akim Demaille <akim@epita.fr>
9941
9942 Have glr.cc pass (some of) the calc.at tests.
9943 * data/glr.cc (b4_parse_param_orig): New.
9944 (b4_parse_param): Improve its definition, and bound it more
9945 clearly in the skeleton.
9946 (b4_epilogue): Append, instead of prepending, in order to keep
9947 #line consistency.
9948 Simplify the generation of auxiliary functions: locations and
9949 purity are mandated.
9950 (b4_global_tokens_and_yystype): Honor it.
9951 * data/location.cc (c++.m4): Don't include it.
9952 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
9953 and AT_SKEL_CC_IF.
9954 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
9955 AT_LALR1_CC_IF.
9956 Be sure to initialize the first position's filename.
9957 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
9958 mandated anyway.
9959 (AT_CHECK_CALC_GLR_CC): New.
9960 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
9961
3953ed88
AD
99622006-01-02 Akim Demaille <akim@epita.fr>
9963
9964 * src/output.c (output_skeleton): Don't hard wire the inclusion of
9965 c.m4.
0a96ba81 9966 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
9967 * data/glr.cc: Do not include stack.hh.
9968
9ecafbbf
AD
99692006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
9970
9971 * data/glr.c: Reformat whitespace with tabs.
9972 (b4_lpure_formals): Remove this unused m4 macro.
9973 * tests/cxx-type.at: Reformat whitespace with tabs.
9974 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
9975 since it's a member. Rename type to isNterm for clarity.
9976
c4d497a0
AD
99772005-12-29 Akim <akim@sulaco.local>
9978
9979 Let glr.cc catch up with symbol_value_print.
9980 * data/glr.cc (b4_yysymprint_generate): Replace by...
9981 (b4_yy_symbol_print_generate): this.
9982 (yy_symbol_print, yy_symbol_value_print): Declare them.
9983
4517da37
PE
99842005-12-28 Paul Eggert <eggert@cs.ucla.edu>
9985
9986 * src/location.h (boundary): Note that a line or column equal
9987 to INT_MAX indicates an overflow.
9988 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
9989 (rule_length_overflow, increment_rule_length, add_column_width):
9990 New functions.
9991 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
9992 (<SC_BRACED_CODE>"}"):
9993 Use increment_rule_length rather than incrementing it by hand.
9994 (adjust_location, handle_syncline): Diagnose overflow.
9995 (handle_action_dollar, handle_action_at):
9996 Fix bug with monstrosities like $-2147483648.
9997 Remove now-unnecessary checks.
9998 (scan_integer): Verify assumptions and remove now-unnecessary checks.
9999 (convert_ucn_to_byte): Verify assumptions.
10000 (handle_syncline): New arg LOC. All callers changed.
10001 Don't store through a value derived from char const * pointer.
10002
10003 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
10004 GCC warnings.
10005
e3233bf6
PE
100062005-12-27 Paul Eggert <eggert@cs.ucla.edu>
10007
10008 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
10009 Remove unnecessary forward static decls.
10010
8f3596a6
AD
100112005-12-27 Akim Demaille <akim@epita.fr>
10012
10013 * src/reader.c (grammar_current_rule_check): Also check that $$
10014 is used.
10015 Take the rule to check as argument, hence rename as...
10016 (grammar_rule_check): this.
10017 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
10018 Rename as...
10019 (grammar_rule_begin, grammar_rule_end): these, for consistency.
10020 (grammar_midrule_action, grammar_symbol_append): Now static.
10021 * tests/torture.at (input): Don't rely on the default action
10022 being always performed.
10023 * tests/calc.at: "Set" $$ even when the action is "cut" with
10024 YYERROR or other.
10025 * tests/actions.at (Exotic Dollars): Instead of using unused
10026 values, check that the warning is issued.
10027
721be13c
PE
100282005-12-22 Paul Eggert <eggert@cs.ucla.edu>
10029
10030 * NEWS: Improve wording for unused-value warnings.
10031
a0af42fc
AD
100322005-12-22 Akim Demaille <akim@epita.fr>
10033
10034 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
10035 (b4_yysymprint_generate): Rename as...
10036 (b4_yy_symbol_print_generate): this.
10037 Generate yy_symbol_print instead of yysymprint.
10038 Generate also yy_symbol_value_print, and use it.
10039
affac613
AD
100402005-12-22 Akim Demaille <akim@epita.fr>
10041
721be13c 10042 * NEWS: Warn about unused values.
affac613
AD
10043 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
10044 a `used' member.
10045 (symbol_list_n_get, symbol_list_n_used_set): New.
10046 (symbol_list_n_type_name_get): Use symbol_list_n_get.
10047 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
10048 * src/reader.c (grammar_current_rule_check): Check that values are
10049 used.
10050 * src/symtab.c (symbol_print): Accept 0.
10051 * tests/existing.at: Remove the type information.
10052 Empty the actions.
10053 Remove useless actions (beware of mid-rule actions: perl -000
10054 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
10055 * tests/actions.at (Exotic Dollars): Use unused values.
10056 * tests/calc.at: Likewise.
10057 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10058 Likewise.
10059
10060 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
10061 rule_useful_p.
10062
9d9b8b70
PE
100632005-12-21 Paul Eggert <eggert@cs.ucla.edu>
10064
8bb4c753
PE
10065 Undo 2005-12-01 tentative license wording change. The wording is
10066 still being reviewed by the lawyers, and we don't want to wait for
10067 them before publishing a test release. For now, revert to the
10068 previous wording.
10069 * NEWS: Undo 2005-12-01 change.
10070 * data/glr.c: Revert to previous license wording.
10071 * data/glr.cc: Likewise.
10072 * data/lalr1.cc: Likewise.
10073 * data/location.cc: Likewise.
10074 * data/yacc.c: Likewise.
10075
9d9b8b70
PE
10076 * NEWS: Reword %destructor vs YYABORT etc.
10077 * data/glr.c: Use American spacing, for consistency.
10078 * data/glr.cc: Likewise.
10079 * data/lalr1.cc: Likewise.
10080 * data/yacc.c: Likewise.
10081 * data/yacc.c: Reformat comments slightly.
10082 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
10083 for consistency. Fix some spelling errors and reword recently-included
10084 text slightly.
10085 * tests/cxx-type.at: Cast results of malloc, for C++.
10086
2c3b392a
AD
100872005-12-21 Joel E. Denny <address@hidden>
10088
10089 * tests/cxx-type.at: Construct a tree, count the parents of shared
10090 nodes, and free each node once and only once. Previously, the memory
10091 for semantic values was leaked instead.
10092
d6cff4dc
AD
100932005-12-21 Joel E. Denny <address@hidden>
10094
10095 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
10096 (yylval, yylloc): If pure, #define to yystackp->yyval and
10097 yystackp->yyloc similar to yychar and yynerrs.
10098 (yyparse): If pure, remove local yylval and yylloc. Add local
10099 yystackp to accommodate pure definitions of yylval and yylloc.
10100 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
10101 yylvalp and yyllocp to &yylval and &yylloc.
10102 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
10103 namespace. Previously, nerrs and char were missing, but lval and lloc
10104 weren't necessary.
10105 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
10106 yylvalp and yyllocp parameters since, if pure, these are now always
10107 accessible through yystackp. If not pure, they are still accessible
10108 globally.
10109 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
10110 `if (YYID (N))' to pacify lint.
10111
a85284cf
AD
101122005-12-21 Akim Demaille <akim@epita.fr>
10113
10114 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
10115 destroy the RHS symbols of a rule.
10116 * data/yacc.c (yylen): Initialize to 0.
10117 Keep its value to the number of items to possibly shift.
10118 In particular, a regular successful parse that ends on YYFINAL by
10119 a (internal) YYACCEPT must not have yylen != 0.
10120 (yyerrorlab, yyreturn): Pop the RHS.
10121 Reorder a bit to emphasize the `shifting' bits of code.
10122 (YYPOPSTACK): Now accept a number of items to pop.
10123 * data/lalr1.cc: Likewise.
10124 * data/glr.c: Formatting changes.
10125 Use goto instead of fall through.
10126 * doc/bison.texinfo (Destructor Decl): Complete.
10127
d508c281
JMG
101282005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10129
10130 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10131 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
10132 * djgpp/config.bat: Replace every occurence of the file name
10133 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10134 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10135 * djgpp/config.sed: Replace every occurence of the file name
10136 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
10137 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
10138 * djgpp/djunpack.bat: DJGPP specific file.
10139 * djgpp/fnchange.lst: DJGPP specific file.
10140 * djgpp/README.in: Add new information about how to unpack the bison
10141 source on MSDOS and other systems which have 8.3 file name restrictions
10142 using djunpack.bat and fnchange.lst.
10143
3e7a2cd9
PE
101442005-12-12 Paul Eggert <eggert@cs.ucla.edu>
10145
10146 * bootstrap (build_cvs_prefix): Remove; unused.
10147 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
10148 when getting gnulib.
10149
101502005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
10151
10152 * data/glr.c: Reorder typedef declarations for structs to match order
10153 of struct declarations.
10154 Rename yystack everywhere to yystackp except in yyparse where it's not
10155 a pointer.
10156 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
10157 consistency.
10158 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
10159 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
10160 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
10161 lint.
10162
877519f8
PE
101632005-12-09 Paul Eggert <eggert@cs.ucla.edu>
10164
0eca5a39
PE
10165 * tests/sets.at (Accept): Fix typos in regular expression used to
10166 sed out the final state number.
10167
2cec9080
PE
10168 Work around portability problem on Solaris 10: flex-generated
10169 files include <stdio.h> before <config.h>, which messes up
10170 because the latter defines __EXTENSIONS__. Address the problem
10171 by creating two new little files that include <config.h> first,
10172 then include the flex-generated files. Rewrite everyone else
10173 to include <config.h> first, as well.
10174 * lib/timevar.c: Always include "config.h".
10175 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
10176 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
10177 (EXTRA_bison_SOURCES): New macro.
10178 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
10179 * src/system.h: Don't include config.h.
10180 * src/LR0.c: Include <config.h> first.
10181 * src/assoc.c: Likewise.
10182 * src/closure.c: Likewise.
10183 * src/complain.c: Likewise.
10184 * src/conflicts.c: Likewise.
10185 * src/derives.c: Likewise.
10186 * src/files.c: Likewise.
10187 * src/getargs.c: Likewise.
10188 * src/gram.c: Likewise.
10189 * src/lalr.c: Likewise.
10190 * src/location.c: Likewise.
10191 * src/main.c: Likewise.
10192 * src/muscle_tab.c: Likewise.
10193 * src/nullable.c: Likewise.
10194 * src/output.c: Likewise.
10195 * src/parse-gram.y: Likewise.
10196 * src/print.c: Likewise.
10197 * src/print_graph.c: Likewise.
10198 * src/reader.c: Likewise.
10199 * src/reduce.c: Likewise.
10200 * src/relation.c: Likewise.
10201 * src/state.c: Likewise.
10202 * src/symlist.c: Likewise.
10203 * src/symtab.c: Likewise.
10204 * src/tables.c: Likewise.
10205 * src/uniqstr.c: Likewise.
10206 * src/vcg.c: Likewise.
10207
877519f8
PE
10208 * src/parse-gram.y: Fix minor problems uncovered by lint.
10209 (current_lhs, current_lhs_location): Now static.
10210 (current_assoc): Remove unused variable.
10211
10212 Cleanups so that Bison-generated parsers have less lint.
10213 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
10214 Prepend /*ARGSUSED*/, for lint's sake.
10215 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
10216 definition if 'lint' is defined.
10217 (YYID): New macro (or function, if lint).
10218 All uses of /*CONSTCOND*/0 replaced by YYID(0).
10219 * data/yacc.c: Likewise.
10220 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
10221 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
10222 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
10223 is C++ only.
10224 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
10225 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
10226 Use YYID(0) rather than 0, for lint.
10227 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
10228 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
10229
f5228370
PE
102302005-12-07 Paul Eggert <eggert@cs.ucla.edu>
10231
10232 * tests/glr-regression.at
10233 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10234 Close memory leak reported by twlevo.
10235
69ce078b
PE
102362005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
10237
6ff99711
PE
10238 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
10239 all stacks.
10240 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
10241 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10242 New test case.
10243 (Duplicated user destructor for lookahead): This test now is expected
10244 to succeed.
10245
af3412cd
PE
102462005-12-01 Paul Eggert <eggert@cs.ucla.edu>
10247
32b5b719 10248 * NEWS: Document the following change.
af3412cd
PE
10249 * data/yacc.c: Say "parser skeleton" rather than "file", since
10250 it's no longer just a file.
10251 * data/glr.c: Grant a special exception for C GLR parsers, that
10252 reads like the already-existing exception for C LALR(1) parsers.
10253 * data/glr.cc: Likewise.
10254 * data/lalr1.cc: Likewise.
10255 * data/location.cc: Likewise.
10256 * data/yacc.c: Reword the "written by" statement to clarify that
10257 it was the parser skeleton, not the entire output file.
10258 * data/glr.c: Written by Paul Hilfinger.
10259 * data/glr.cc: Written by Akim Demaille.
10260 * data/lalr1.cc: Likewise.
10261
035aa4a0
PE
102622005-11-18 Paul Eggert <eggert@cs.ucla.edu>
10263
d9963c85
PE
10264 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
10265 Fix typos in previous change that broke 'make check'.
10266 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
10267 supported in C.
10268 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
10269 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
10270 We can revert this once things settle down.
10271
035aa4a0
PE
10272 * src/conflicts.c (conflicts_print): Don't print file name twice
10273 when %expect fails because there were no conflicts.
10274 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
10275 change.
10276 * tests/conflicts.at (%expect not enough, %expect too much):
10277 (%expect with reduce conflicts): Adjust to new behavior.
10278
102792005-11-18 Akim Demaille <akim@epita.fr>
10280
10281 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
10282 errors.
10283 * NEWS: Document this.
10284 * doc/bison.texinfo (Expect Decl): Likewise.
10285
d1ff7a7c
AD
102862005-11-16 Akim Demaille <akim@epita.fr>
10287
10288 Generalize the display of semantic values and locations in traces.
10289 * data/glr.c (yy_reduce_print): Fix indices (again).
10290 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
10291 literal integers.
10292 * data/lalr1.cc (yyreduce_print): Rename as...
10293 (yy_reduce_print): this.
10294 Display values and locations.
10295 * data/yacc.c (yy_reduce_print): Likewise.
10296 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
10297 (yysymprint): Move higher to be visible from yy_reduce_print).
10298 (yyparse): Adjust.
10299 * tests/calc.at: Adjust the expected length of the traces.
10300
6de5398d
AD
103012005-11-14 Akim Demaille <akim@epita.fr>
10302
10303 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
10304 from 1 to N, while values and location start at 0.
10305 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
10306
a1373f55
AD
103072005-11-14 Akim Demaille <akim@epita.fr>
10308
10309 * data/glr.c (yy_reduce_print): Fix the $ number.
10310
613d8952
AD
103112005-11-14 Akim Demaille <akim@epita.fr>
10312
10313 "Use" parse parameters.
10314 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
10315 * data/glr.c, data/glr.cc: Use them.
10316 * data/glr.c (YYUSE): Have a C++ definition that supports
10317 non-pointer types.
10318
b2741627
AD
103192005-11-14 Akim Demaille <akim@epita.fr>
10320
10321 * data/glr.c (yyexpandGLRStack): Declare only if defined.
10322
5059b5c8
AD
103232005-11-14 Akim Demaille <akim@epita.fr>
10324
42249483
AD
10325 * data/glr.cc: New.
10326 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 10327
4626a15d
AD
103282005-11-12 Akim Demaille <akim@epita.fr>
10329
10330 Let position and location be PODs.
10331 * data/location.cc (position::initialize, location::initialize): New.
10332 (position::position, location::location): Define only if
10333 b4_location_constructors is defined.
10334 * data/lalr1.cc (b4_location_constructors): Define it for backward
10335 compatibility.
10336 * doc/bison.texinfo (Initial Action Decl): Use initialize.
10337
103382005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
10339
10340 * data/lalr1.cc: Move the body of the ctor and dtor into the
10341 parser file (instead of the header).
10342 Wrap the implementations in a "namespace yy".
10343
103442005-11-12 Akim Demaille <akim@epita.fr>
10345
10346 Have glr.c include its header file when created.
10347 * data/glr.c (b4_shared_declarations): New.
10348 Output them verbatim in the parser if !%defines, otherwise
10349 output then in the header file, and include it instead.
10350
1989d947
AD
103512005-11-11 Akim Demaille <akim@epita.fr>
10352
10353 * data/glr.c: Comment changes.
10354
103552005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
10356
10357 When yydebug, report semantic and location values for reductions.
10358 * data/glr.c (yy_reduce_print): Report the semantic values and the
10359 locations.
10360 (YY_REDUCE_PRINT): Adjust.
10361 (yyglrReduce): Use them.
10362 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
10363 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
10364 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
10365 traces.
10366
02998094
AD
103672005-11-10 Akim Demaille <akim@epita.fr>
10368
10369 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
10370 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
10371 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
10372
5210672f
PE
103732005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
10374
10375 * m4/cxx.m4, examples/Makefile.am: Don't build
10376 examples/calc++ if no C++ compiler is available. (trivial change)
10377
a8991a1d
AD
103782005-11-09 Akim Demaille <akim@epita.fr>
10379
10380 * src/scan-skel.l: Use a couple of asserts.
10381
36b5e963
AD
103822005-11-03 Akim Demaille <akim@epita.fr>
10383
10384 In some (weird) cases, the final state number is incorrect.
10385 Reported by Alexandre Duret-Lutz.
10386 * src/LR0.c (state_list_append): Remove the computation of
10387 final_state.
10388 (save_reductions): Do it here.
10389 (get_state): Alpha conversion.
10390 (generate_states): Use a for loop.
10391 * src/gram.h (item_number_is_rule_number)
10392 (item_number_is_symbol_number): New.
10393 * src/state.c: Use assert.
10394 * src/system.h: Include assert.h.
10395 * tests/sets.at (Accept): New.
10396
44e7ead1
PH
103972005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10398
10399 * data/glr.c (yyfill): Adjust comment.
36b5e963 10400 (yyresolveAction): Initialize default location properly
44e7ead1
PH
10401 for empty right-hand sides.
10402 (yydoAction): Ditto.
10403 Add comment explaining apparently dead code.
36b5e963
AD
10404 * tests/glr-regression.at
10405 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 10406 New test.
36b5e963 10407
e10a80ee
PE
104082005-10-30 Paul Eggert <eggert@cs.ucla.edu>
10409
10410 * bootstrap (cleanup_gnulib): New function. Use it to clean up
10411 gnulib when interrupted. This fixes some race conditions and
10412 works around some portability problems (one noted by Paul
10413 Hilfinger).
10414
067b32ee
AD
104152005-10-22 Akim <akim@epita.fr>
10416
10417 * Makefile.cfg: Adjust to config -> build-aux.
10418 Reported by twledo.
10419
4b367315
AD
104202005-10-21 Akim Demaille <akim@epita.fr>
10421
10422 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
10423 the %parse-params.
10424 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
10425 * data/yacc.c (b4_Pure_if): Rename as...
10426 (b4_yacc_pure_if): this.
10427 (YY_SYMBOL_PRINT, yyparse): Adjust.
10428 * doc/bison.texinfo: Formatting changes.
10429
24cc23d9
AD
104302005-10-21 Akim Demaille <akim@epita.fr>
10431
10432 Finish the transition config -> build-aux.
10433 * configure.ac, Makefile.am: Use build-aux.
10434 * config/prev-version, config/announce-gen, config/Makefile.am:
10435 Move to...
10436 * build-aux/prev-version, build-aux/announce-gen,
10437 * build-aux/Makefile.am: here.
10438
d4476375
AD
104392005-10-14 Akim Demaille <akim@epita.fr>
10440
10441 * examples/calc++/test: Use set -x only when VERBOSE.
10442
302c0aee
PE
104432005-10-13 Paul Eggert <eggert@cs.ucla.edu>
10444
10445 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
10446 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
10447
7625ec2c
AD
104482005-10-13 Akim Demaille <akim@epita.fr>
10449
10450 * src/scan-skel.l: Output the base name parts of the parser and
10451 header file names.
302c0aee 10452 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
10453 additional checks.
10454 Use this to exercise C++ outputs in subdirs.
10455 Reported by Oleg Smolsky.
10456
ba0fe3c7
PE
104572005-10-12 Paul Eggert <eggert@cs.ucla.edu>
10458
10459 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
10460 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
10461 Problem reported by John P. Hartmann.
10462 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
10463 already defined it.
10464
9b8a5ce0
AD
104652005-10-12 Akim Demaille <akim@epita.fr>
10466
10467 * src/parse-gram.y (version_check): Exit 63 to please missing
10468 (stands for "version mismatch).
10469 * tests/input.at, doc/bison.texinfo: Adjust.
10470
4f6e011e
PE
104712005-10-10 Paul Eggert <eggert@cs.ucla.edu>
10472
10473 Work around portability problems with Visual Age C compiler
10474 (xlc and xlC_r) reported by John P. Hartmann.
10475 * data/location.cc (initial_column, initial_line): Remove.
10476 All uses replaced by 0 and 1.
10477 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
10478 that xlc complains about.
10479 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 10480 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 10481 as __STDC__.
4d7aa45e
PE
10482 * data/yacc.c (YYMODERN_C): New macro, which also looks at
10483 __STDC_VERSION__. Use it everywhere instead of looking at
10484 __STDC__ and __cplusplus.
4f6e011e 10485
a1b3bf8c
AD
104862005-10-10 Akim Demaille <akim@epita.fr>
10487
10488 * examples/calc++/test: Be quiet unless VERBOSE.
10489
412e44aa
PE
104902005-10-05 Paul Eggert <eggert@cs.ucla.edu>
10491
2a4647a3
PE
10492 * data/c.m4 (yydestruct, yysymprint):
10493 Use YYUSE instead of casting to void.
10494 * data/glr.c (YYUSE): New macro.
10495 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10496 Use it instead of rolling our own.
10497 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10498 (YYCHK1):
10499 Use /*CONSTCOND*/ to suppress lint warnings.
10500 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
10501 (YY_STACK_PRINT): Use 'false' not '0'.
10502 (YYUSE): New macro.
10503 (yysymprint_, yydestruct_): Use it instead of rolling our own.
10504 * data/yacc.c (YYUSE): New macro.
10505 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
10506 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
10507 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
10508
10509
412e44aa
PE
10510 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
10511 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
10512
88c6637f
PE
105132005-10-04 Paul Eggert <eggert@cs.ucla.edu>
10514
2f4f028d
PE
10515 Undo the parts of the unlocked-I/O change that substituted
10516 putc or puts for printf. This might hurt performance a bit,
10517 but some people prefer the printf style.
10518 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
10519 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
10520 All uses replaced by YYFPRINTF and YYDPRINTF.
10521 * data/yacc.c: Likewise.
10522 * lib/bitset.c (bitset_print): Likewise.
10523 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
10524 putc and puts.
10525 * lib/lbitset.c (debug_lbitset): Likewise.
10526 * src/closure.c (print_firsts, print_fderives): Likewise.
10527 * src/gram.c (grammar_dump): Likewise.
10528 * src/lalr.c (look_ahead_tokens_print): Likewise.
10529 * src/output.c (escaped_output): Likewise.
10530 (user_actions_output): Break apart two printfs.
10531 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
10532 * src/reduce.c (reduce_print): Likewise.
10533 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
10534 * src/system.h: Include unlocked-io.h rathe than stdio.h.
10535
88c6637f
PE
10536 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
10537 Use assignments rather than casts-to-void to suppress
10538 unused-variable warnings. This pacifies 'lint'.
10539 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
10540 unused-variable warnings.
10541
fb32e373
JMG
105422005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10543
10544 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
10545
edb8f44f
PE
105462005-10-02 Paul Eggert <eggert@cs.ucla.edu>
10547
fb9c0b33
PE
10548 Use unlocked I/O for a minor performance improvement on hosts like
10549 GNU/Linux and Solaris that support unlocked I/O. The basic idea
10550 is to use the gnlib unlocked-io module, and to prefer putc and
10551 puts to printf when either will work (since the latter doesn't
10552 come in an unlocked flavor).
10553 * bootstrap (gnulib_modules): Add unlocked-io.
10554 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
10555 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
10556 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
10557 and similarly for puts and putc and printf.
10558 * data/yacc.c: Likewise.
10559 * lib/bitset.c (bitset_print): Likewise.
10560 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
10561 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
10562 to printf.
10563 * lib/lbitset.c (debug_lbitset): Likewise.
10564 * src/closure.c (print_firsts, print_fderives): Likewise.
10565 * src/gram.c (grammar_dump): Likewise.
10566 * src/lalr.c (look_ahead_tokens_print): Likewise.
10567 * src/output.c (escaped_output): Likewise.
10568 (user_actions_output): Coalesce two printfs.
2f4f028d 10569 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
10570 * src/reduce.c (reduce_print): Likewise.
10571 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 10572 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 10573
edb8f44f
PE
10574 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
10575 this confuses xgettext.
10576
b50d2359
AD
105772005-10-02 Akim Demaille <akim@epita.fr>
10578
10579 * bootstrap (gnulib_modules): Add strverscmp.
10580 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
10581 * m4/.cvsignore: Add strverscmp.m4.
10582 * src/parse-gram.y (%require): New token, new rule.
10583 (version_check): New.
10584 * src/scan-gram.l (%require): Adjust.
10585 * tests/input.at (AT_REQUIRE): New.
10586 Use it.
10587 * doc/bison.texinfo (Require Decl): New.
10588 (Calc++ Parser): Use %require.
10589
21667f64
AD
105902005-10-02 Akim Demaille <akim@epita.fr>
10591
10592 * data/location.cc: New.
10593
2b81e969
AD
105942005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
10595 Akim Demaille <akim@epita.fr>
10596
10597 Make sure -odir/foo.cc creates dir/location.hh etc.
10598 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
10599 (spec_file_prefix, spec_verbose_file, spec_graph_file)
10600 (spec_defines_file): Now const.
10601 (dir_prefix): New.
10602 (short_base_name): Remove.
10603 * src/files.c: Adjust.
10604 (dirname.h): Include.
10605 (base_name): Don't prototype it.
10606 (finput): Remove, duplicates gram_in.
10607 (full_base_name, short_base_name): Replace by...
10608 (all_but_ext, all_but_tab_ext): these.
10609 (compute_base_names): Rename as...
10610 (compute_file_name_parts): this.
10611 Update to compute the new variables, including dir_prefix.
10612 Adjust dependencies.
10613 * src/output.c (prepare): Output them.
10614 * src/reader.c: Adjust to use gram_in, not finput.
10615 * src/scan-skel.l (@dir_prefix@): New.
10616
ad6a9b97
JMG
106172005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10618
10619 * lib/subpipe.c: New function end_of_output_subpipe() added
10620 to allow support for non-posix systems. This is a no-op function
10621 for posix systems.
10622
10623 * lib/subpipe.h: New function end_of_output_subpipe() added
10624 to allow support for non-posix systems. This is a no-op function
10625 for posix systems.
10626
10627 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
10628 handle the lack of pipe/fork functionality on non-posix systems.
10629
10630 * djgpp/Makefile.maint: DJGPP specific file.
10631
10632 * djgpp/README.in: DJGPP specific file.
10633
10634 * djgpp/config.bat: DJGPP specific configuration file.
10635
10636 * djgpp/config.sed: DJGPP specific configuration file.
10637
10638 * djgpp/config.site: DJGPP specific configuration file.
10639
10640 * djgpp/config_h.sed: DJGPP specific configuration file.
10641
10642 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
10643
10644 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
10645
fc695704
AD
106462005-10-02 Akim Demaille <akim@epita.fr>
10647
10648 * data/location.cc: New, extract from...
10649 * data/lalr1.cc: here.
10650 (location.hh): Include it after the user prologue, in case the
10651 filename type is defined by the user.
10652 Forward declation location and position before the pre-prologue.
10653 (yyresult_): Rename as...
10654 (yyresult): this, it's a local variable, not an attribute.
10655 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
10656
106572005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
10658
10659 * examples/extexi: Restore the #line generation.
10660
fb9712a9
AD
106612005-09-30 Akim Demaille <akim@epita.fr>,
10662 Alexandre Duret-Lutz <adl@gnu.org>
10663
10664 Move the token type and YYSTYPE in the parser class.
10665 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
10666 (parser::token): New, from the moved free definition of tokens.
10667 (parser::semantic_value): Now a full definition instead of an
10668 indirection to YYSTYPE.
10669 (b4_post_prologue): No longer included in the header file, but
10670 in the implementation file.
10671 * doc/bison.texi (C+ Language Interface): Update.
10672 * src/parse-gram.y: Support unary %define.
10673 * tests/actions.at: Define global_tokens_and_yystype for backward
10674 compatibility until we update the tests.
10675 * tests/calc.at: Idem.
10676 (first_line, first_column, last_line, last_column): Define for lalr1.cc
10677 to simplify the code.
10678
55f0c7b1
PE
106792005-09-29 Paul Eggert <eggert@cs.ucla.edu>
10680
10681 Port to SunOS 4.1.4, which lacks strtoul and strerror.
10682 Ah, the good old days! Problem reported by Peter Klein.
10683 * bootstrap (gnulib_modules): Add strerror, strtoul.
10684 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
10685 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
10686
fb9712a9 106872005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
10688
10689 * data/c.m4 (b4_error_verbose_if): New.
10690 * data/lalr1.cc: Use it.
10691 (YYERROR_VERBOSE_IF): Remove.
10692 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
10693 parser members, replaced by...
10694 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
10695 local variables.
10696 (yysyntax_error_): Takes the state number as argument.
10697 (yyreduce_print_): Use the argument yyrule, not the former
10698 attribute yyn_.
10699
8a6f72f3
PE
107002005-09-26 Paul Eggert <eggert@cs.ucla.edu>
10701
10702 * bootstrap (gnulib_modules): Add verify.
10703 * lib/.cvsignore: Add verify.h.
10704 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
10705 * src/system.h (verify): Remove.
10706 Include verify.h instead.
10707 * src/tables.c (tables_generate): Use new API for 'verify'.
10708
0d50976f
PE
107092005-09-21 Paul Eggert <eggert@cs.ucla.edu>
10710
ebc3737e
PE
10711 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
10712 local variables whose names begin with 'yy'.
10713 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
10714 Trivial changes from Joel E. Denny.
10715
0d50976f
PE
10716 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
10717 it itself.
10718 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
10719 don't use alloca any more.
10720
10721 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
10722 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 10723 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
10724 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
10725 to match yacc.c, to test more hosts.
10726
a05b79df
PE
107272005-09-20 Paul Eggert <eggert@cs.ucla.edu>
10728
55289366
PE
10729 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
10730 doesn't affect behavior.
10731 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
10732 Solaris, AIX, MSC.
10733 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
10734 This works a bit better with glibc, if user code has already included
10735 stdlib.h.
10736 * doc/bison.texinfo (Bison Parser): Document that users can't
10737 arbitrarily use malloc and free for other purposes. Document
10738 that <alloca.h> and <malloc.h> might be included.
10739 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
10740 user must declare alloca.
10741
a05b79df
PE
10742 * HACKING (release): Forwarn the Translation Project about
10743 stable releses.
10744
3ab2ca22
AD
107452005-09-20 Akim Demaille <akim@epita.fr>
10746
10747 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
10748
a9739e7c
PE
107492005-09-19 Paul Eggert <eggert@cs.ucla.edu>
10750
a702593e
PE
10751 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
10752 (YYSTACK_ALLOC_MAXIMUM): Use it.
10753 (yysyntax_error): New function.
10754 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
10755 multiple syntax errors are reported, and alloca is being used.
10756 Instead, reallocate buffers twice as big each time, so that
10757 we waste at most half the allocated memory. Start with a small
10758 (128-byte) buffer that will suffice in most cases anyway.
10759 Use yysyntax_error to do most of the work.
10760
10761 * doc/bison.texinfo (Error Reporting, Table of Symbols):
10762 yynerrs is the number of errors reported, not the number of
10763 errors encountered.
10764
a9739e7c
PE
10765 * tests/glr-regression.at (Duplicated user destructor for lookahead):
10766 Mark it as expected to fail.
10767 Cast result of malloc; problem reported by twlevo@xs4all.nl.
10768 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
10769 Don't start user-code symbols with "yy", to avoid name space problems.
10770
f479c6c6
AD
107712005-09-19 Akim Demaille <akim@epita.fr>
10772
10773 Remove the traits, failed experiment.
10774 It never proved useful, and anyway because of the current
10775 definition, it was not possible to have several specialization of
10776 this traits, making it useless.
10777 * data/lalr1.cc (yy:traits): Remove.
10778 Inline its definitions in the parser class.
10779
e2586f82
AD
107802005-09-19 Akim Demaille <akim@epita.fr>
10781
10782 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
10783 least Mac OSX with a /usr/local install of gettext.
10784
2e8cf949
AD
107852005-09-19 Akim Demaille <akim@epita.fr>
10786
10787 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
10788 and yytoken for similarity with the other skeletons.
10789
c7fb0b90
AD
107902005-09-19 Akim Demaille <akim@epita.fr>
10791
4e26c69e 10792 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 10793
1bd0deda
PE
107942005-09-16 Paul Eggert <eggert@cs.ucla.edu>
10795
10796 * NEWS: Version 2.1.
10797
10798 * NEWS: Remove notice of yytname change, since it was never in an
10799 official release.
10800 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
10801 diagnostic.
10802 * src/output.c (prepare): Likewise.
10803 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
10804 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
10805 is not defined. This is an awful hack, but it's enough for now.
10806 All callers changed.
10807 * tests/glr-regression-at (make_value): Args are const pointers now,
10808 to avoid GCC warning.
10809 (Duplicated user destructor for lookahead): New test. Currently
10810 skipped. It fails on my host but I'm not sure it'll always fail.
10811
108122005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
10813
10814 * src/symtab.h (struct symbol): Declare the printer and destructor
10815 as const, to avoid accidental calls to free.
10816 (symbol_destructor_set, symbol_printer_set): Adjust.
10817 * src/symtab.c: Adjust.
10818
1bd0deda 108192005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
10820
10821 * data/c.m4 (b4_token_enums): New.
10822 (b4_token_defines): Rename as...
10823 (b4_token_enums_defines): this.
10824 (b4_token_defines): New, output only the #defines.
10825 * data/yacc.c, data/glr.c: Adjust.
10826 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
10827 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
10828 as default values.
10829
dbcdae2d
AD
108302005-09-16 Akim Demaille <akim@epita.fr>
10831
10832 * data/lalr1.cc (yylex_): Remove, inline its code.
10833 (yyreport_syntax_error_): Remove, replaced by...
10834 (yysyntax_error_): this which returns a string and leaves to the
10835 caller the call to the users' error function.
10836 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
10837 Move from members of the parser object...
10838 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
10839 to local variables of the parse function.
10840
70d8f291
AD
108412005-09-16 Akim Demaille <akim@epita.fr>
10842
10843 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
10844 since it's in Bison's name space.
10845
b47dbebe
PE
108462005-09-15 Paul Eggert <eggert@cs.ucla.edu>
10847
ae199bf1
PE
10848 * data/glr.c (yyresolveValue): Add default case to pacify
10849 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
10850
b47dbebe
PE
10851 * NEWS: Document when yyparse started to return 2.
10852 * doc/bison.texinfo (Parser Function): Document when yyparse
10853 returns 2.
10854
10855 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
10856 (b4_filename_type): Renamed back from b4_file_name_type. All uses
10857 changed.
10858 (class position): file_name -> filename (reverting). All uses changed.
10859
108602005-09-14 Paul Eggert <eggert@cs.ucla.edu>
10861
10862 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
10863 do anything if $@ exists. This reverts part of the 2005-07-07
10864 patch.
10865
00292f66
PE
108662005-09-11 Paul Eggert <eggert@cs.ucla.edu>
10867
10868 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
10869 contains obsolete information and isn't worth distributing as a
10870 separate file anyway.
10871 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
10872 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
10873 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
10874 (yyparse): Abort if user code uses longjmp to throw an unexpected
10875 value.
10876
a420f962
PE
108772005-09-09 Paul Eggert <eggert@cs.ucla.edu>
10878
00292f66
PE
10879 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
10880 Suggested by twlevo@xs4all.nl.
10881
127287e9
PE
10882 * data/glr.c (YYCHK1): Do not assume YYE is in range.
10883 This avoids a diagnostic from gcc -Wswitch-enum.
10884 Problem reported by twlevo@xs4all.nl.
10885
a420f962
PE
10886 * doc/bison.texinfo: Don't use "filename", as per GNU coding
10887 standards. Use "file name" or "file" or "name", depending on
10888 the context.
10889 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
10890 not to hack/foo.tab.c.
10891 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
10892 * data/glr.c: b4_filename -> b4_file_name.
10893 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
10894 All uses changed.
10895 (class position): filename -> file_name. All uses changed.
10896 * data/yacc.c: b4_filename -> b4_file_name.
10897 * lib/bitset.h: filename -> file_name in local vars.
10898 * lib/bitset_stats.c: Likewise.
10899 * src/files.c: Likewise.
10900 * src/scan-skel.l ("@output ".*\n): Likewise.
10901 * src/files.c (file_name_split): Renamed from filename_split.
10902 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
10903
109042005-09-08 Paul Eggert <eggert@cs.ucla.edu>
10905
10906 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
10907 to accommodate latest gnulib.
10908
10909 * tests/glr-regression.at (Duplicate representation of merged trees):
10910 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
10911
10912 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
10913 needed.
10914
42a6501d
PE
109152005-08-26 Paul Eggert <eggert@cs.ucla.edu>
10916
10917 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
10918 All uses changed. Invoke user destructor after an error during a
10919 split parse (trivial change from Joel E. Denny).
10920
10921 * tests/glr-regression.at
10922 (User destructor after an error during a split parse): New test case.
10923 Problem reported by Joel E. Denny in:
10924 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
10925
ef9a1faf
PE
109262005-08-25 Paul Eggert <eggert@cs.ucla.edu>
10927
5b4aaf78
PE
10928 * README-cvs: Give URLs for recommended tools.
10929 Mention Gzip version problem, and bootstrapping issues.
10930 Remove troubleshooting section, as it's somewhat obsolete.
10931
b5240ba5
PE
10932 * bootstrap (no_cache): New var, to accommodate different wget
10933 variants. Use it instead of '-C off'. Problem reported by
10934 twlevo@xs4all.nl.
10935
ef9a1faf
PE
10936 * data/glr.c (yydestroyStackItem): New function.
10937 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
10938 debugging information. Problem reported by Joel E. Denny.
10939
e6efa9da
AD
109402005-08-25 Akim Demaille <akim@epita.fr>
10941
10942 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
10943
adc90f13
PE
109442005-08-24 Paul Eggert <eggert@cs.ucla.edu>
10945
10946 * data/glr.c (yyrecoverSyntaxError, yyreturn):
10947 Don't invoke destructor on unresolved entries.
10948 * tests/glr-regression.at
10949 (User destructor for unresolved GLR semantic value): New test case.
10950 Problem reported by Joel E. Denny in:
10951 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
10952
f9315de5
PE
109532005-08-21 Paul Eggert <eggert@cs.ucla.edu>
10954
15d29c1f
PE
10955 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
10956 Add strnlen.c.
10957 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
10958 lib-prefix.m4, po.m4.
10959
dd5f2af2
PE
10960 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
10961 in yydestruct diagnostic, since it might not be an error.
10962 Problem reported by Joel Denny near end of
10963 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 10964 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
10965 * data/yacc.c (yyreturn): Likewise.
10966 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
10967
10968 * src/files.c: Remove obsolete FIXME comment.
10969
10970 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
10971 with the other templates, and to fix bogus run-on messages such
10972 as the one reported at the end of
10973 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
10974 All callers changed to avoid the newline.
10975 (yyprocessOneStack): Output two lines rather than one, to accommodate
10976 the above change. This changes the debug output format slightly.
10977
f9315de5
PE
10978 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
10979 reported by Joel E. Denny in
10980 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
10981 (trivial change).
10982 * tests/glr-regression.at (Duplicate representation of merged trees):
10983 New test, from Joel E. Denny in:
10984 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
10985 * THANKS: Add Joel E. Denny.
10986
10987 * configure.ac (AC_INIT): Bump to 2.0c.
10988
04098407
PE
109892005-07-24 Paul Eggert <eggert@cs.ucla.edu>
10990
10991 * NEWS: Version 2.0b.
10992
ca5d2013
PE
10993 * Makefile.am (SUBDIRS): Put examples before tests, so that
10994 "make check" doesn't finish with "All 1 tests passed".
10995
3d54b576
PE
10996 * tests/regression.at (Token definitions): Don't rely on
10997 AT_PARSER_CHECK for data that contains backslashes. It currently
10998 uses 'echo', and 'echo' isn't portable if its argument contains
10999 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
11000 that the byte '\0xff' is not printable in the C locale; it is,
11001 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
11002 not printable, so use '\0x81' to test.
11003
d53ae497
PE
11004 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
11005 version of GCC, since the macro is used with non-GCC compilers.
11006
fc01665e
PE
11007 Fix core dump reported by Pablo De Napoli in
11008 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
11009 * tests/regression.at (Invalid inputs with {}): New test.
11010 * src/parse-gram.y (token_name): Translate type before using
11011 it as an index.
11012
04098407
PE
11013 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
11014 the user's name space. All uses changed to __attribute__
11015 ((__unused__)).
11016 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
11017 Add __attribute__ ((__noreturn__)).
11018
11019 * etc/clcommit: Remove. We weren't using it, and it failed
11020 "make maintainer-distcheck".
11021 * Makefile.maint: Merge from coreutils.
11022 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
11023 (syntax-check-rules): Change list of rules as described below.
11024 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
11025 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
11026 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
11027 (sc_trailing_space): New rules.
11028 (sc_xalloc_h_in_src): Remove.
11029 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
11030 (sc_space_tab, sc_error_exit_success, sc_changelog):
11031 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
11032 (makefile-check, po-check, author_mark_check):
11033 (makefile_path_separator_check, copyright-check):
11034 Use grep -n, to make it easier to find violations.
11035 Use CVS_LIST and CVS_LIST_EXCEPT.
11036 (header_regexp, h_re): Remove.
11037 (dd_c): New macro.
11038 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
11039 (my-distcheck): Use more-modern GCC flags.
11040 (signatures, %.asc): Remove.
11041 (rel-files, announcement): Remove signatures.
11042 Restore old updating code, even though we don't use it, so
11043 that we're the same as coreutils.
11044 (alpha, beta, major): Depend on news-date-check.
11045 Make the upload commands.
11046
11047 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
11048 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
11049 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
11050 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
11051 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
11052 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
11053 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
11054 * tests/sets.at: Likewise.
11055
11056 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
11057 we comment out the Autoconf version number.
11058 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
11059 it's error-prone and "make maintainer-distcheck" rejects it.
11060
11061 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
11062 Indent calls to "error" to pacify "make maintainer-distcheck",
11063 when the calls are not intended to be translated.
11064 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
11065
11066 * src/Makefile.am (DEFS): Use +=, to pacify
11067 "make maintainer-distcheck".
11068 (bison_SOURCES): Add scan-skel.h.
11069 (sc_tight_scope): New rule, from coreutils.
11070
11071 * src/files.c (src_extension, header_extension):
11072 Now static, not extern.
11073 * src/getargs.c (short_options): Likewise.
11074 * src/muscle_tab.c (muscle_table): Likewise.
11075 * src/parse-gram.y (current_class, current_type, current_prec):
11076 Likewise.
11077 * src/reader.c (grammar_end, previous_rule_end): Likewise.
11078 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
11079 * src/main.c (main): Cast bindtextdomain and textdomain calls to
11080 void, to avoid warning when NLS is disabled.
11081 * src/output.c: Include scan-skel.h.
11082 (scan_skel): Remove decl, since scan-skel.h does this.
11083 (output_skeleton):
11084 Indent calls to "error" to pacify "make maintainer-distcheck".
11085 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
11086 * src/reader.h (gram_end, gram_lineno): New decls to pacify
11087 "make maintainer-distcheck".
11088 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
11089 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
11090 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
11091 (skel_lex_destroy, scan_skel): Move these decls to...
11092 * src/scan-skel.h: New file.
11093 * src/uniqstr.c (uniqstr_assert):
11094 Indent calls to "error" to pacify "make maintainer-distcheck".
11095
11096 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
11097 not @VAR@.
11098
11099 * tests/torture.at: Revamp to avoid misuse of atoi that
11100 "make maintainer-distcheck" complained about.
11101
11102 * examples/extexi (message): Don't print a message more than once,
11103 and omit line-number decoration that makes Emacs compile think
11104 that informative messages are worth worrying about.
11105
111062005-07-22 Paul Eggert <eggert@cs.ucla.edu>
11107
11108 * configure.ac: Update version number.
11109
11110 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
11111 accidentally.
11112 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
11113 autogenerated by the maintainer.
11114 * examples/calc++/.cvsignore: Add *.yy.
11115
11116 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
11117 * lib/bitset_stats.c (bitset_stats_init): Likewise.
11118 * lib/bitsetv.c (bitsetv_alloc): Likewise.
11119
11120 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
11121
11122 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
11123 from maintainer-distcheck about casting the argument of 'free'.
11124
11125 * NEWS: Mention recent yytname changes.
11126 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
11127
11128 * bootstrap: For translations that have not yet been upgraded to
11129 the new runtime-po domain, prime the pump by extracting the
11130 relevant strings from the obsolete translations. This code can be
11131 removed once the bison-runtime domain has been translated by each
11132 team.
11133
11134 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
11135 now that token names are already quoted.
11136
11137 Fix problem reported by Anthony Heading.
11138 * data/glr.c (YYTOKEN_TABLE): New macro.
11139 (yytname): Define if YYTOKEN_TABLE.
11140 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
11141 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
11142 (YYERROR_VERBOSE): Define the same way the other skeletons do.
11143 * src/output.c (prepare_symbols): Output token_table_flag.
11144
0ffda363
PE
111452005-07-21 Paul Eggert <eggert@cs.ucla.edu>
11146
11147 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
11148 again if the first call fails.
11149
11150 * data/glr.c (yytnamerr): New function.
11151 (yyreportSyntaxError): Use it to dequote most string literals.
11152 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
11153 with other skeletons. All uses changed.
11154 (yytnameerr_): New function.
11155 (yyreport_syntax_error): Use it to dequote most string literals.
11156 * data/yacc.c (yytnamerr): New function.
11157 (yyerrlab): Use it to decode most string literals.
11158 * doc/bison.texinfo (Decl Summary, Calling Convention):
11159 Clarify quoting convention of yytname.
11160 * src/output.c (prepare_symbols): Quote all names. This undoes
11161 the 2005-04-17 change, which is now accomplished (mostly) via
11162 changes in the parsers as described above.
11163 * tests/regression.at (Token definitions, Web2c Actions):
11164 Undo most 2005-04-17 change here, too.
11165
111662005-07-20 Paul Eggert <eggert@cs.ucla.edu>
11167
11168 Fix more problems reported by twlevo@xs4all.nl.
11169 * tests/cxx-type.at: Don't pipe output of ./types through sed to
11170 remove trailing spaces. This loses the exit status of ./types,
11171 and isn't needed since ./types shouldn't be emitting trailing
11172 spaces.
11173 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
11174 as the stack isn't valid in that case.
11175
11176 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
11177 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
11178 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
11179 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
11180 is used.
11181 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
11182 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
11183 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
11184 Likewise.
11185
11186 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
11187 overly-picky compilers that reject 'char *foo = "bar";'.
11188
11189 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
11190 to FILE * parameter, not to stderr. This fixes a typo introduced
11191 in the 2005-07-12 change.
11192
11193 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
11194 warnings from GCC 4.
11195
11196 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
11197 (yyglrShiftDefer, yysplitStack):
11198 Remove unused parameters b4_pure_formals. All uses changed.
11199 (yyglrShift): Remove unused parameters b4_user_formals.
11200 All uses changed.
11201 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
11202
6100a9aa
PE
112032005-07-18 Paul Eggert <eggert@cs.ucla.edu>
11204
258b75ca
PE
11205 Destructor cleanups and regularization among the three skeletons.
11206 * NEWS: Document the behavior changes.
11207 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
11208 stack before failing, as the cleanup code will do it for us now.
11209 * data/lalr1.cc (yyerrlab): Likewise.
11210 * data/glr.c (yyparse): Pop everything off the stack before
11211 freeing it, so that destructors get called properly.
11212 * data/lalr1.cc (yyreturn): Likewise.
11213 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
11214 This is more consistent.
11215 * doc/bison.texinfo (Destructor Decl): Mention more reasons
11216 why destructors might be called. 1.875 -> 2.1.
11217 (Destructor Decl, Decl Summary, Table of Symbols):
11218 Some English-language cleanups for %destructor.
11219 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11220 Add output line for destructor of start symbol.
11221 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
11222 because of that same extra output line.
11223
1a059451
PE
11224 * NEWS: Document minor wording changes in diagnostics of
11225 Bison-generated parsers.
11226 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
11227 Remove unused formals. All uses changed.
11228 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
11229 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
11230 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
11231 Rename yyoverflowab to yyexhaustedlab.
11232 When memory exhaustion occurs during syntax-error reporting,
11233 report it separately rather than in a single diagnostic; this
11234 eases translation.
11235 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
11236 (Memory Exhausted): Renamed from Parser Stack Overflow.
11237 Revamp wording slightly to prefer "memory exhaustion".
11238 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
11239
97460c78
PE
11240 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
11241
30757c8c
PE
11242 Add i18n support to the GLR skeleton. Partially fix the C++
11243 skeleton; a C++ expert needs to finish this. Remove debugging
11244 msgids; there's little point to having them translated, since they
11245 can be understood only by someone who can read the
11246 (English-language) source code.
11247
11248 Generate runtime-po/bison-runtime.pot automatically, so that we
11249 don't have to worry about garbage getting in that file. We'll
11250 make sure after the next official release that old msgids don't
11251 get lost. See
11252 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
11253
11254 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
11255 Now auto-generated.
11256 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
11257 Fix typos in explanations of the runtime file.
11258 * bootstrap: Change gettext keyword from YYI18N to YY_.
11259 Use standard Makefile.in.in in runtime-po, since we'll arrange
11260 for backward-compatible bison-runtime.po files in a different way.
11261 * data/glr.c (YY_): New macro, from yacc.c.
11262 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
11263 Translate messages intended for users.
11264 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
11265 the wording in the other skeletons. We don't know that the memory
11266 is virtual.
11267 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
11268 Use same method that yacc.c uses.
11269 Don't translate debugging messages.
11270 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
11271 it doesn't work (yet), and requires C++ expertise to fix.
11272 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
11273 Move defn to a more logical place, to be consistent with other
11274 skeletons.
11275 Don't translate debugging messages.
11276 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
11277 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
11278 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
11279 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
11280
ac8c5689
PE
11281 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
11282 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
11283 void, not int.
11284 * tests/glr-regression.at (Badly Collapsed GLR States):
11285 Likewise.
11286 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11287 yylex should return 0 at EOF rather than aborting.
11288
6100a9aa
PE
11289 Improve tests for stack overflow in GLR parser.
11290 Problem reported by twlevo@xs4all.nl.
11291 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
11292 All uses removed.
11293 (yyStackOverflow): Just longjmp, but with value 2 so that caller
11294 can handle the problem.
11295 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
11296 (yyparse): New local variable yyresult to record the result.
11297 Use result of setjmp to set it, rather than storing itinto
11298 struct.
11299 (yyDone): Remove label.
11300 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
11301 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
11302 if YYABORT is used).
11303 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
11304 yyparse status; put status > 1 into diagnostic.
11305 Check that status==2 works.
11306 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
11307 Use exit status 3 for failure to open (which shouldn't happen).
11308
15f40952
PE
113092005-07-17 Paul Eggert <eggert@cs.ucla.edu>
11310
67fd79c4
PE
11311 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
11312 1 on syntax error; just let yyparse do its thing.
11313 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
11314 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
11315 (Exploding the Stack Size with Alloca):
11316 (Exploding the Stack Size with Malloc):
11317 Expect exit status 2, not 1, since the parser is supposed to blow
11318 its stack. Problem reported by twlevo@xs4all.nl.
11319
15f40952
PE
11320 * data/glr.c (yyparse): Don't assume that the initial calls
11321 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
11322 Print a stack-overflow message and fail instead.
11323 Initialize the line-number information before creating the stack,
11324 so that the stack-overflow message can report line zero safely.
11325
f32c66b5
PE
113262005-07-14 Paul Eggert <eggert@cs.ucla.edu>
11327
a22ff96f 11328 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
11329 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
11330 (yyuserMerge): Provide a default case if b4_mergers is empty.
11331 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
11332 * tests/glr-regression.at
11333 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 11334 Add casts to pacify C++ compilers.
1beb0b24
PE
11335 * tests/glr-regression.at (Improper merging of GLR delayed action
11336 sets): Declare yylex before using it.
f32c66b5 11337 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
11338 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
11339 test for valgrind; valgrind is independent of g++.
11340 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
11341 for compatibility with POSIX 1003.1-2001 (if running coreutils).
11342 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
11343 Use a destructor, so that we can expand the stack. Change
11344 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 11345
d741bd1b
PE
113462005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11347
11348 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
11349 a valgrind failure. Problem reported by twlevo@xs4all.nl.
11350
0410a6e0
PE
113512005-07-13 Paul Eggert <eggert@cs.ucla.edu>
11352
11353 * PACKAGING: New file, suggested by Bruno Haible and taken from
11354 similar wording in gettext's PACKAGING file.
11355 * NEWS: Mention PACKAGING.
11356 * Makefile.am (EXTRA_DIST): Add PACKAGING.
11357
f7ab6a50
PE
113582005-07-12 Paul Eggert <eggert@cs.ucla.edu>
11359
baf785db 11360 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
11361 * bootstrap: Get runtime translations into runtime-po.
11362 Create runtime-po files automatically, if possible.
11363 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
11364 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
11365 does not infringe on the user's name space.
11366 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
11367 * doc/bison.texinfo (Internationalization): Revamp the English
11368 and Texinfo syntax a bit, to try to make it clearer.
11369 (Bison Options, Option Cross Key): Mention --print-localedir.
11370 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
11371 YYENABLE_NLS. Quote a bit more.
11372 * runtime-po/.cvsignore: New file.
11373 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
11374 * runtime-po/Rules-quot: Remove; now created by bootstrap.
11375 * runtime-po/quot.sed: Likewise.
11376 * runtime-po/boldquot.sed: Likewise.
11377 * runtime-po/en@quot.header: Likewise.
11378 * runtime-po/en@boldquot.header: Likewise.
11379 * runtime-po/insert-header.sin: Likewise.
11380 * runtime-po/remove-potcdate.sin: Likewise.
11381 * runtime-po/Makevars: Likewise.
11382 * runtime-po/LINGUAS: Likewise.
11383 * runtime-po/de.po: Likewise; we will rely on the translation project
11384 to maintain this, so "bootstrap" should get it.
0410a6e0 11385 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
11386 its value.
11387 * src/main.c (main): Bind the bison-runtime domain, too.
11388
113892005-07-12 Bruno Haible <bruno@clisp.org>
11390
11391 * data/yacc.c: Include <libintl.h> when NLS is enabled.
11392 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
11393 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
11394 * runtime-po: New directory.
11395 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
11396 $(DOMAIN).pot-update rule, so that old messages are never dropped.
11397 * runtime-po/Rules-quot: New file, copied from po/.
11398 * runtime-po/quot.sed: Likewise.
11399 * runtime-po/boldquot.sed: Likewise.
11400 * runtime-po/en@quot.header: Likewise.
11401 * runtime-po/en@boldquot.header: Likewise.
11402 * runtime-po/insert-header.sin: Likewise.
11403 * runtime-po/remove-potcdate.sin: Likewise.
11404 * runtime-po/Makevars: New file.
11405 * runtime-po/POTFILES.in: New file.
11406 * runtime-po/LINGUAS: New file.
11407 * runtime-po/bison-runtime.pot: New file.
11408 * runtime-po/de.po: New file.
11409 * m4/bison.m4: New file.
11410 * Makefile.am (SUBDIRS): Add runtime-po.
11411 (aclocaldir, aclocal_DATA): New variables.
11412 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
11413 Define aclocaldir.
11414 * src/getargs.c (usage): Document --print-localedir option.
11415 (PRINT_LOCALEDIR_OPTION): New enum item.
11416 (long_options): Add --print-localedir option.
11417 (getargs): Handle --print-localedir option.
11418 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
11419 (Internationalization): New section.
11420
22dda0f0
AD
114212005-07-12 Akim Demaille <akim@epita.fr>
11422
11423 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
11424 for consistency with the rest of the code.
11425 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
11426 Add separators.
11427
82b248ad
AD
114282005-07-12 Akim Demaille <akim@epita.fr>
11429
11430 * src/parse-gram.y: Use %printer instead of YYPRINT.
11431
fa0e9314
AD
114322005-07-12 Akim Demaille <akim@epita.fr>
11433
867a3e00
AD
11434 * src/symtab.h, src/symtab.c (symbol_print): New.
11435 * src/symlist.h, src/symlist.c (symbol_list_print): New.
11436 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
11437
114382005-07-12 Akim Demaille <akim@epita.fr>
11439
11440 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
11441 b4_at_dollar and b4_dollar_dollar.
11442
e054b190
PE
114432005-07-11 Paul Eggert <eggert@cs.ucla.edu>
11444
11445 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
11446 and Pennello's paper.
11447
34160ec4
PE
114482005-07-09 Paul Eggert <eggert@cs.ucla.edu>
11449
407d4a75
PE
11450 * data/yacc.c (yyparse): Undo previous patch. Instead,
11451 set yylsp[0] and yyvsp[0] only if the initial action
11452 sets yylloc and yylval, respectively.
11453
34160ec4
PE
11454 * data/yacc.c (yyparse): In the initial action, set
11455 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
11456 This avoids the use of undefined variables if the initial
11457 action does not set yylloc and/or yylval.
11458
c3d5a4a7
PE
114592005-07-07 Paul Eggert <eggert@cs.ucla.edu>
11460
b34d96c1
PE
11461 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
11462 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
11463 Remove from CVS. These files are automatically generated.
11464 * examples/extexi: Clarify that this file is now part of Bison,
11465 not GNU M4, and that it works with any POSIX-compatible Awk.
11466 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
11467 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
11468 so that we also get calc++-parser.yy. Geneate it.
11469 Use $(AWK), not gawk, since any conforming Awk will do.
11470 Put comment before action, since older 'make' can't handle comment
11471 in action.
11472 $(BUILT_SOURCES): List all built sources, not just some of them.
11473 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
11474 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
11475 $($(calc_sources_generated)): Remove unnecessary test for existence
11476 of target. (This had a shell syntax error anyway; a stray "x".)
11477 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
11478 calc++-parser.yy.
11479 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
11480
c3d5a4a7
PE
11481 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
11482 implied by the other modules.
11483
828c373b
AD
114842005-07-06 Akim Demaille <akim@epita.fr>
11485
11486 Bind examples/calc++ to the package.
11487 * examples/calc++/Makefile: Remove, replaced by...
11488 * examples/calc++/Makefile.am: ... this new file.
11489 * examples/calc++/test: Remove input.
11490 * examples/calc++/compile: Remove.
11491 * examples/Makefile.am: New.
11492 * configure.ac, Makefile.am: Adjust.
11493 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
11494
63cb01d6
PE
114952005-07-05 Paul Eggert <eggert@cs.ucla.edu>
11496
fd2df2ed
PE
11497 * data/glr.c (yyFail): Drastically simplify; since the format argument
11498 never had any % directives, we can simply pass it to yyerror.
11499 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
11500 be modified later, as that is the usual style in glr.c.
11501 Problems reported by Paul Hilfinger.
11502
63cb01d6
PE
11503 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
11504 and size overflow errors.
11505 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
11506 in case the user prolog sets feature-test macros like _GNU_SOURCE.
11507 (YYSIZEMAX): New macro.
11508 (yystpcpy): New function, taken from yacc.c.
11509 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
11510 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
11511 so that we don't have to maintain their signatures.
11512 (yyFail): Check for buffer overflow, by using vsnprintf rather
11513 than vsprintf. Allocate a bigger buffer if possible.
11514 Report an error if buffer allocation fails.
11515 (yyStackOverflow): New function.
11516 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
11517 the initialization was successful. It might fail if storage was
11518 exhausted.
11519 (yyexpandGLRStack): Add more checks for storage allocation failure.
11520 Use yyStackOverflow to report failures.
11521 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
11522 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
11523 Don't assume stack number fits in int.
11524 (yysplitStack): Check for storage allocation failure.
11525 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
11526 can print diagnostics on storage allocation failure. All callers
11527 changed.
11528 (yyresolveValue): Use yybool for boolean.
11529 (yyreportSyntaxError): Check for size-calculation overflow.
11530 This code is taken from yacc.c.
11531 (yyparse): Check for storage allocation errors when allocating
11532 the initial stack.
11533
1c59e0a1
AD
115342005-07-05 Akim Demaille <akim@epita.fr>
11535
11536 Extract calc++ from the documentation.
11537 * doc/bison.texinfo (Calc++): Add the extraction marks.
11538 * examples/extexi: New, from the aborted GNU Programming 2E.
11539 Separate the different paragraph of a file with empty lines.
11540 * examples/Makefile: Use it to extract the whole calc++ example.
11541
8a0adb01
AD
115422005-06-24 Akim Demaille <akim@epita.fr>
11543
11544 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
11545 class typedefs.
11546
12545799
AD
115472005-06-22 Akim Demaille <akim@epita.fr>
11548
11549 * doc/bison.texinfo (C++ Language Interface): First stab.
11550 (C++ Parsers): Remove.
11551
99be0235
AD
115522005-06-22 Akim Demaille <akim@epita.fr>
11553
11554 * data/lalr1.cc (yylex_): Honor %lex-param.
11555
0ffd4fd1
AD
115562005-06-22 Akim Demaille <akim@epita.fr>
11557
11558 Start a set of simple examples.
11559 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
11560 * examples/calc++/calc++-driver.hh,
11561 * examples/calc++/calc++-parser.yy,
11562 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
11563 * examples/calc++/compile, examples/calc++/test: New.
11564
0925ebb4
PE
115652005-06-09 Paul Eggert <eggert@cs.ucla.edu>
11566
11567 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
11568 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
11569 which stems from the 2005-05-27 patch.
11570
43d3b664
PH
115712005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11572
11573 * data/glr.c: Modify treatment of unused parameters to permit use
11574 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
11575
3062864d
PE
115762005-05-30 Paul Eggert <eggert@cs.ucla.edu>
11577
11578 Fix infringement on user name space reported by Janos Zoltan Szabo.
11579 * data/yacc.c (yyparse): strlen -> yystrlen.
11580
989b5b8e
AD
115812005-05-30 Akim Demaille <akim@epita.fr>
11582
11583 * data/lalr1.cc (_): New.
11584 Translate the various messages.
11585
bedf57f5
PE
115862005-05-27 Paul Eggert <eggert@cs.ucla.edu>
11587
11588 Fix infringement on user name space reported by Bruno Haible.
11589 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
11590 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
11591 the user's name space.
11592 (alloca): Include <stdlib.h> to get it, if it's not built in.
11593 (YYMALLOC, YYFREE): Define only if needed.
11594 (malloc, free): Declare, but only if needed, as this infringes on
11595 the user name space.
11596
4d1801f1
PE
115972005-05-25 Paul Eggert <eggert@cs.ucla.edu>
11598
11599 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
11600 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
11601 with %d format.
11602 * lib/ebitset.c (min, max): Undef before defining.
11603 * lib/vbitset.c (min, max): Likewise.
11604 * lib/subpipe.c (create_subpipe): Save local variables in case
11605 vfork clobbers them.
11606
116072005-05-24 Bruno Haible <bruno@clisp.org>
11608
11609 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
11610 error message syntax used by gcc-4.0.
11611
b94a9e1e
PE
116122005-05-23 Paul Eggert <eggert@cs.ucla.edu>
11613
85ac3861
PE
11614 * README: Mention m4 1.4.3. Remove obsolete advice about
11615 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
11616
b94a9e1e
PE
11617 * bootstrap: Remove workaround for problem I encountered with
11618 gettext 0.14.1; it seems to be fixed now.
11619
51c30d21
PE
116202005-05-22 Paul Eggert <eggert@cs.ucla.edu>
11621
009ce67d
PE
11622 * NEWS: Version 2.0a.
11623
f2a97c62
PE
11624 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
11625 the previous change.
11626
c8775f93
PE
11627 Various maintainer cleanups.
11628 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
11629 conftest*, for benefit of CVS commands run at the same time as
11630 "configure". Add build-aux, since "bootstrap" now creates it and
11631 its subfiles.
11632 * Makefile.cfg (move_if_change): Remove.
11633 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
11634 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
11635 (po_repo, do-po-update, po-update, wget_files, get-targets):
11636 (config.guess-url_prefix, config.sub-url_prefix):
11637 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
11638 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
11639 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
11640 Remove.
11641 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
11642 this is now the recommended name.
11643 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
11644 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
11645 ylwrap. These files now go into build-aux.
11646 * config/move-if-change: Remove.
11647 * config/prev-version.txt: Bump from 1.75 to 2.0.
11648
3ea5f0ec
PE
11649 * bootstrap: Add stdio-safer, unistd-safer modules.
11650 Remove m4/glibc2.m4 (introduced by latest gnulib, but
11651 we don't need it).
11652 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
11653 fopen-safer.c, stdio-safer.h, unistd-safer.h.
11654 * lib/subpipe.c: Include "unistd-safer.h".
11655 (create_subpipe): Make sure all the newly-created
11656 file descriptors are > 2, so that diagnostics don't
11657 get sent down them (which might cause Bison to hang, in theory).
11658 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
11659 * src/files.c (xfopen): Use fopen_safer, not fopen.
11660
51c30d21
PE
11661 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
11662 yesterday's yacc.c fix.
11663
cea1469d
PE
116642005-05-21 Paul Eggert <eggert@cs.ucla.edu>
11665
3ea5f0ec
PE
11666 * data/glr.c, data/lalr1.cc: Update copyright date.
11667
cea1469d
PE
11668 Fix a destructor bug reported by Wolfgang Spraul in
11669 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
11670 * data/yacc.c (yyabortlab): Don't call destructor, and
11671 don't set yychar to EMPTY.
11672 (yyoverflowlab): Don't call destructor.
11673 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
11674 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
11675 since we no longer output the message "discarding lookahead token
11676 end of input ()".
11677
5e6f62f2
PH
116782005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11679
11680 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
11681 fix a small glitch in debugging output.
11682 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
11683 after YY_SYMBOL_PRINT where needed.
11684
11685 (struct yyGLRState): Add some comments.
11686 (struct yySemanticOption): Add some comments.
11687 (union yyGLRStackItem): Add comment.
11688
11689 (yymergeOptionSets): Correct this to properly perform the union,
11690 avoiding infinite reported by Michael Rosien.
11691 Update comment.
11692
11693 * tests/glr-regression.at: Add test for GLR merging error reported
11694 by M. Rosien.
cea1469d 11695
0fb669f9
PE
116962005-05-13 Paul Eggert <eggert@cs.ucla.edu>
11697
11698 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
11699 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
11700 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
11701 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
11702 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
11703 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
11704 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
11705 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
11706 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
11707 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
11708 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
11709 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
11710 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
11711 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
11712 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
11713 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
11714 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
11715 src/derives.h, src/files.c, src/files.h, src/getargs.c,
11716 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
11717 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
11718 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
11719 src/output.h, src/parse-gram.c, src/parse-gram.h,
11720 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
11721 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
11722 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
11723 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
11724 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
11725 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
11726 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
11727 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
11728 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
11729 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
11730 tests/reduce.at, tests/regression.at, tests/sets.at,
11731 tests/synclines.at, tests/testsuite.at, tests/torture.at:
11732 Update FSF postal mail address.
11733
51f4735e
PE
117342005-05-11 Paul Eggert <eggert@cs.ucla.edu>
11735
11736 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
11737 Problem reported by Ralf Menzel.
11738
80ce3401
PE
117392005-05-01 Paul Eggert <eggert@cs.ucla.edu>
11740
11741 * tests/actions.at: Test that stack overflow invokes destructors.
11742 From Marcus Holland-Moritz.
11743 * data/yacc.c (yyerrlab): Move the code that destroys the stack
11744 from here....
11745 (yyreturn): to here. That way, destructors are called properly
11746 even if the stack overflows, or the user calls YYACCEPT or
11747 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
11748 (yyoverflowlab): Destroy the lookahead.
11749
117502005-04-24 Paul Eggert <eggert@cs.ucla.edu>
11751
11752 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
11753
72f000b0
PE
117542005-04-17 Paul Eggert <eggert@cs.ucla.edu>
11755
11756 * NEWS: Bison-generated C parsers no longer quote literal strings
11757 associated with tokens.
11758 * src/output.c (prepare_symbols): Don't escape strings,
11759 since users don't want to see C escapes.
11760 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
11761 in diagnostics.
c19683bb 11762 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
11763 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
11764
1094323f
PE
117652005-04-16 Paul Eggert <eggert@cs.ucla.edu>
11766
11767 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
11768 the data size is known to be too small and we can't increase it.
11769 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
11770
ca407bdf
PE
117712005-04-15 Paul Eggert <eggert@cs.ucla.edu>
11772
11773 * src/parse-gram.y: Include quotearg.h.
11774 (string_as_id): Quote $1 before using it as a key, since the
11775 lexer no longer quotes it for us.
11776 (string_content): Don't strip quotes, since lexer no longer
11777 quotes it for us.
11778 * src/scan-gram.l: Include quotearg.h.
11779 ("\""): Omit quote.
11780 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
11781 a key, since the rest of the lexer doesn't quote it.
11782 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
11783 * tests/regression.at (Token definitions): Check for backslashes
11784 in token strings.
11785
11786 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
11787 (YYSIZE_T): Define to unsigned long int when using an older compiler.
11788 (yyparse): Revamp code to generate long syntax error message, to
11789 make it easier to translate, and to avoid problems with arithmetic
11790 overflow. Change "virtual memory" to "memory" in diagnostic, since
11791 we don't know whether the memory is virtual.
11792
1ce59070
PE
117932005-04-13 Paul Eggert <eggert@cs.ucla.edu>
11794
11795 * NEWS: Bison-generated C parsers now use the _ macro to
11796 translate strings.
11797 * data/yacc.c (_) [!defined _]: New macro.
11798 All English strings wrapped inside this macro.
11799 * doc/bison.texinfo (Bison Parser): Document _.
11800 * po/POTFILES.in: Include src/parse-gram.c, since it now
11801 includes translateable strings that parse-gram.y doesn't.
11802
a749a695
PE
118032005-04-12 Paul Eggert <eggert@cs.ucla.edu>
11804
11805 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
11806 reverting the 2004-10-11 change to this function.
11807 (symbol_check_alias_consistency): Don't call symbol_type_set
11808 if the type name is already correct.
11809 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
11810
8fb1053b
PE
118112005-03-25 Paul Eggert <eggert@cs.ucla.edu>
11812
11813 * tests/regression.at (Token definitions): Don't use a token named
11814 c, as that generates a "#define c ..." that runs afoul of buggy
11815 stdlib.h that uses the identifier c as a member of struct
11816 drand48_data. Problem reported by Horst Wente.
11817
ff498c4a
PE
118182005-03-21 Paul Eggert <eggert@cs.ucla.edu>
11819
11820 * bootstrap: Change translation URL from
11821 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
11822 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
11823 redirection glitches. Problem reported by twlevo@xs4all.nl.
11824
65211d70
PE
118252005-03-20 Paul Eggert <eggert@cs.ucla.edu>
11826
11827 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
11828 after operands; POSIX says this isn't portable for the c99 command.
11829
9577fb1f
PE
118302005-03-18 Paul Eggert <eggert@cs.ucla.edu>
11831
11832 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
11833 immediately if a data overrun has occurred; this may help us track
11834 down what may be a spurious failure on MacOS.
11835
78b178f7
PE
118362005-03-17 Paul Eggert <eggert@cs.ucla.edu>
11837
a2599d0f
PE
11838 Respond to problems reported by twlevo@xs4all.nl.
11839
11840 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
11841
78b178f7
PE
11842 * src/vcg.h: Comment fix.
11843 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
11844 (G_CMAX): Change to -1 instead of INT_MAX.
11845
11846 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 11847
7296e729
PE
118482005-03-15 Paul Eggert <eggert@cs.ucla.edu>
11849
11850 * src/tables.c (state_number_to_vector_number): Put it inside an
11851 "#if 0", since it's not currently used. Problem reported by
11852 Roland McGrath.
11853
05ac60f3
PE
118542005-03-06 Paul Eggert <eggert@cs.ucla.edu>
11855
11856 * src/output.c (escaped_output): Renamed from
11857 escaped_file_name_output, since we now use it for symbol tags as
11858 well. All uses changed.
11859 (symbol_destructors_output, symbol_printers_output):
11860 Escape symbol tags too.
11861 Problem reported by Matyas Forstner in
11862 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
11863
11864 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
11865 not needed.
11866 * src/output.c (user_actions_output, token_definitions_output,
11867 symbol_destructors_output, symbol_printers_output): Likewise.
11868 * src/reader.c (prologue_augment): Likewise.
11869 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
11870
11871 * src/vcg.c (output_edge): Don't quote linestyle arg.
11872 Problem reported by twlevo@xs4all.nl.
11873
7eb453ac
PE
118742005-02-28 Paul Eggert <eggert@cs.ucla.edu>
11875
11876 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
11877 example, reported by Derek M Jones. Also, make the example even
11878 more outrageous, to better illustrate how bad the problem is.
11879
4c04c52a
PE
118802005-02-24 Paul Eggert <eggert@cs.ucla.edu>
11881
11882 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
11883 putsym. Typo reported by Sebastian Piping.
11884
a61e1620
PE
118852005-02-23 Paul Eggert <eggert@cs.ucla.edu>
11886
11887 * doc/bison.texinfo (Language and Grammar): some -> same
11888 (Epilogue): int he -> in the
11889 Typos reported by Sebastian Piping via Justin Pence.
11890
9ec93868
PE
118912005-02-07 Paul Eggert <eggert@cs.ucla.edu>
11892
11893 * tests/glr-regression.at (Improper handling of embedded actions
11894 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
11895 embedded actions and $-N in GLR parsers", work around an Autoconf bug
11896 with dollar signs in test names.
11897 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
11898 for a similar reason.
11899
73ce7e7e
PE
119002005-01-28 Paul Eggert <eggert@cs.ucla.edu>
11901
11902 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
11903 wants to redefine G_VIEW.
11904
2e72b98e
PE
119052005-01-27 Paul Eggert <eggert@cs.ucla.edu>
11906
11907 * src/vcg.c (get_view_str): Remove case for normal_view.
11908 Problem reported by twlevo@xs4all.nl.
11909
e0d634e5
PE
119102005-01-24 Paul Eggert <eggert@cs.ucla.edu>
11911
ccf830a4
PE
11912 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
11913 Problem reported by twlevo@xs4all.nl.
11914
e0d634e5
PE
11915 * doc/bison.texinfo: Change @dircategory from "GNU programming
11916 tools" to "Software development". Requested by Richard Stallman
11917 via Karl Berry.
11918
7bbc8cb0
PE
119192005-01-23 Paul Eggert <eggert@cs.ucla.edu>
11920
11921 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
11922 Problem reported by twlevo@xs4all.nl.
11923
08b770bc
PE
119242005-01-21 Paul Eggert <eggert@cs.ucla.edu>
11925
11926 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
11927 keyword; it's not needed with modern compilers, and it doesn't
11928 affect correctness with older compilers. Suggested by
11929 twlevo@xs4all.nl.
11930
95f22ad2
PE
119312005-01-17 Paul Eggert <eggert@cs.ucla.edu>
11932
11933 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
11934 gcc -Wswitch-default.
11935 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11936 * data/yacc.c (yyparse): Likewise.
11937
d229d15c
PE
119382005-01-12 Paul Eggert <eggert@cs.ucla.edu>
11939
11940 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
11941 already. Let config.h define any nonstandard values.
11942
ecadd90f
PE
119432005-01-10 Paul Eggert <eggert@cs.ucla.edu>
11944
11945 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
11946 for the benefit of slower hosts. Problem reported by
11947 Nelson H. F. Beebe.
11948
213744b5
PE
119492005-01-07 Paul Eggert <eggert@cs.ucla.edu>
11950
11951 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
11952 being defined and not used.
11953 * data/lalr1.cc (yyparse): Likewise.
11954 Use "if (false)" rather than "if (0)".
11955
249d3236
PE
119562005-01-05 Paul Eggert <eggert@cs.ucla.edu>
11957
11958 * TODO: Mention that we should allow NUL bytes in tokens.
11959
987cc1fb
PE
119602005-01-02 Paul Eggert <eggert@cs.ucla.edu>
11961
11962 * src/scan-skel.l (<<EOF>>): Don't close standard output.
11963 Problem reported by Hans Aberg.
11964
08fe02d9
PE
119652005-01-01 Paul Eggert <eggert@cs.ucla.edu>
11966
11967 * src/getargs.c (version): Happy new year; update overall
11968 program copyright date from 2004 to 2005.
11969
11970 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
11971 Problem reported by Hans Aberg.
11972 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
11973 (Output file names.): Add a test for the case when standard output
11974 is closed.
11975
010c0266
PE
119762004-12-26 Paul Eggert <eggert@cs.ucla.edu>
11977
11978 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
11979 to fix an oversight in the Bison 2.0 manual.
11980
da12206a
PE
119812004-12-25 Paul Eggert <eggert@cs.ucla.edu>
11982
11983 * NEWS: Version 2.0. Reformat the existing news items since
11984 1.875, so that related items are grouped together.
3a4734aa 11985 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
11986 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
11987
c935d934
PE
11988 * tests/torture.at (Exploding the Stack Size with Alloca): Set
11989 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
11990 otherwise, we're not testing alloca. Unfortunately there's no
11991 simple way to consult HAVE_ALLOCA here.
11992
da12206a
PE
11993 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
11994 for yymsg, too.
11995
11996 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
11997 hand. This avoids a warning about comparing int to size_t when
11998 GCC warnings are enabled.
11999
0a2c5137
PE
120002004-12-22 Paul Eggert <eggert@cs.ucla.edu>
12001
d7e14fc0
PE
12002 * NEWS: Bison-generated parsers no longer default to using the
12003 alloca function (when available) to extend the parser stack, due
12004 to widespread problems in unchecked stack-overflow detection.
12005 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
12006 responsibility to set it to a positive value. This lets the user
12007 specify a value that is not a preprocessor constant.
12008 * data/yacc.c (YYMAXDEPTH): Likewise.
12009 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
12010 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
12011 to be a compile-time constant. However, explain the constraints on it.
12012 Also, explain the constraints on YYINITDEPTH.
12013 (Table of Symbols): Explain that alloca is no longer the default.
12014 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
12015 to 1.
12016
0a2c5137
PE
12017 * doc/bison.texinfo (Location Default Action): Mention that n must
12018 be zero when k is zero. Suggested by Frank Heckenbach.
12019
e019c247
AD
120202004-12-22 Akim Demaille <akim@epita.fr>
12021
12022 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
12023 (parser::state_type, parser::semantic_type, parser::location_type):
12024 Private, not public.
12025 (parser::parse): Return ints, not bool.
12026 Returning a bool introduces a problem: 0 corresponds to false, and
12027 it seems weird to return false on success. Returning true changes
12028 the conventions for yyparse.
12029 Alternatively we could return void and send an exception.
12030 There is no clear consensus (yet?).
12031 (state_stack, semantic_stack, location_stack): Rename as...
12032 (state_stack_type, semantic_stack_type, location_stack_type): these.
12033 Private, not public.
12034 * tests/c++.at: New.
12035 * tests/testsuite.at, tests/Makefile.am: Adjust.
12036
72731bb7
AD
120372004-12-21 Akim Demaille <akim@epita.fr>
12038
12039 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
12040
9a0d8bec
AD
120412004-12-21 Akim Demaille <akim@epita.fr>
12042
12043 Don't impose std::string for filenames.
12044
12045 * data/lalr1.cc (b4_filename_type): New.
12046 (position::filename): Use it.
12047 (parser.hh): Move the inclusion of stack.hh and location.hh below
12048 the user code, so that needed headers for the filename type can be
12049 included first.
72731bb7
AD
12050 Forward declare them before the user code.
12051 * tests/Makefile.am (check-local, installcheck-local): Pass
12052 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 12053
99880de5
AD
120542004-12-20 Akim Demaille <akim@epita.fr>
12055
12056 Use more STL like names: my_class instead of MyClass.
12057
12058 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
12059 (SemanticStack, SemanticType, StateStack, StateType)
12060 (TokenNumberType, Stack, Slice, Traits, Parser::location)
12061 (Parser::value): Rename as...
12062 (location_stack, location_type, rhs_number_type, semantic_stack)
12063 (semantic_type, state_stack, state_type, token_number_type, stack)
12064 (slice, traits, parser::yylloc, parser::yylval): these.
12065
12066 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
12067
9bec482e
PE
120682004-12-19 Paul Eggert <eggert@cs.ucla.edu>
12069
12070 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
12071 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12072
f6fbd3da
PE
120732004-12-17 Paul Eggert <eggert@cs.ucla.edu>
12074
12075 Remove uses of 'short int' and 'unsigned short int'. This raises
12076 some arbitrary limits. It uses more memory but nowadays that's
12077 not much of an issue.
12078
12079 This change does not affect the generated parsers; that's a different
12080 task, as some users will want to conserve memory there.
12081
12082 Ideally we should use size_t to represent all object counts, and
12083 something like ptrdiff_t to represent signed differences of object
12084 counts; but that will require more code-cleanup than I have the
12085 time to do right now.
12086
12087 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
12088 Use size_t, not int or short int, to count objects.
12089 * src/closure.c (nritemset, closure): Likewise.
12090 * src/closure.h (nritemset, closure): Likewise.
12091 * src/nullable.c (nullable_compute): Likewise.
12092 * src/print.c (print_core): Likewise.
12093 * src/print_graph.c (print_core): Likewise.
12094 * src/state.c (state_compare, state_hash): Likewise.
12095 * src/state.h (struct state): Likewise.
12096 * src/tables.c (default_goto, goto_actions): Likewise.
12097
12098 * src/gram.h (rule_number, rule): Use int, not short int.
12099 * src/output.c (prepare_rules): Likewise.
12100 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
12101 errs, reductions): Likewise.
12102 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
12103 Likewise.
12104 * src/tables.c (vector_number, tally, action_number,
12105 ACTION_NUMBER_MINIMUM): Likewise.
12106 * src/output.c (muscle_insert_short_int_table): Remove.
12107
efeed023
AD
121082004-12-17 Akim Demaille <akim@epita.fr>
12109
12110 * data/lalr1.cc: Extensive Doxygenation.
12111 (error_): Rename as...
12112 (error): this, since it is visible to the user.
12113 Adjust callers.
12114 (Parser::message): Now an automatic variable from...
12115 (Parser::yyreport_syntax_error_): here.
12116 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
12117 Parser::error.
12118 * tests/input.at: Escape $.
12119
bc82c5a5
PE
121202004-12-16 Paul Eggert <eggert@cs.ucla.edu>
12121
12122 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
12123 Parenthesize rhs to avoid obscure problems with mistakes like
12124 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
12125 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
12126 b4_rhs_location): Likewise.
12127 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
12128 b4_rhs_location): Likewise.
12129
fd19f271
AD
121302004-12-16 Akim Demaille <akim@epita.fr>
12131
12132 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
12133 yacc.c: be sure to stay within yycheck_.
12134 * tests/actions.at: Re-enable C++ tests.
12135
10454ea4
AD
121362004-12-16 Akim Demaille <akim@epita.fr>
12137
12138 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
12139 real.
12140
c5b95ccf
AD
121412004-12-16 Akim Demaille <akim@epita.fr>
12142
12143 Use #define to handle the %name-prefix.
12144
12145 * data/glr.c, data/yacc.c: Comment changes.
12146 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
12147 so that one can refer to yylex in the parser file, and have it
12148 renamed, as is the case with other skeletons.
12149
617a8f12
AD
121502004-12-16 Akim Demaille <akim@epita.fr>
12151
12152 Move lalr1.cc internals into yy*.
12153
12154 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
12155 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
12156 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
12157 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
12158 (empty_, final_, terror_, errcode_, ntokens_)
12159 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
12160 (looka_, ilooka_, error_range_, nerrs_):
12161 Rename as...
12162 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
12163 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
12164 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
12165 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
12166 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
12167 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
12168 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
12169 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
12170 these.
12171
1e547e6e
PE
121722004-12-15 Paul Eggert <eggert@cs.ucla.edu>
12173
12174 Fix some problems reported by twlevo at xs4all.
12175 * src/symtab.c (symbol_new): Report an error if the input grammar
12176 contains too many symbols. This is better than calling abort() later.
12177 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
12178 (struct node, struct graph):
12179 Rename member expand to stretch. All uses changed.
12180 (struct graph): Remove member layoutalgorithm. All uses removed.
12181 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
12182 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
12183 All uses changed.
12184 (N_STRETCH): Rename from N_EXPAND. All uses changed.
12185
735d6bd4
AD
121862004-12-15 Akim Demaille <akim@epita.fr>
12187
12188 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
12189 Add more Doxygen comments.
12190 (symprint_, stack_print_, reduce_print_, destruct_, pop)
12191 (report_syntax_error_, translate_): Rename as...
12192 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
12193 (yypop_, yyreport_syntax_error_, yytranslate_): this.
12194
2e1f5829
AD
121952004-12-15 Akim Demaille <akim@epita.fr>
12196
12197 * data/lalr1.cc (lex_): Rename as...
12198 (yylex_): this.
12199 Move the trace here.
12200 Take the %name-prefix into account.
12201 Reported by Alexandre Duret-Lutz.
12202
a3cb6248
AD
122032004-12-15 Akim Demaille <akim@epita.fr>
12204
12205 Simplify the C++ parser constructor.
12206
12207 * data/lalr1.cc (debug_): Rename as...
12208 (yydebug_): so that the parser's internals are always in the yy*
12209 pseudo namespace.
12210 Adjust uses.
12211 (b4_parse_param_decl): Remove the leading comma as it is now only
12212 called as unique argument list.
12213 (Parser::Parser): Remove the constructor accepting a location and
12214 an initial debugging level.
12215 Remove from the other ctor the argument for the debugging level.
12216 (debug_level_type, debug_level, set_debug_level): New.
12217
12218 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
12219 constructor calls.
12220
07fed891
AD
122212004-12-15 Akim Demaille <akim@epita.fr>
12222
12223 Remove b4_root related material: failure experiment
a3cb6248 12224 (which goal was to allow to derive from a class).
07fed891
AD
12225
12226 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
12227 definitions and uses.
12228
e603eaa5
PE
122292004-12-14 Paul Eggert <eggert@cs.ucla.edu>
12230
12231 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
12232 not 2, since it's not portable to subtract 1 from the start of an
12233 array. The new item 0 is never set or used. All uses changed.
12234
12235 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
12236 the default definition of YYLLOC_DEFAULT. Problem reported
12237 by Frank Heckenbach.
12238
fafb007d
PE
122392004-12-12 Paul Eggert <eggert@cs.ucla.edu>
12240
12241 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
12242 the normal case and one for the error case. Just use the
12243 first one uniformly. Problem reported by Frank Heckenbach.
12244 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
12245 use exactly the same macro in both places.
12246 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
12247 so that the normal-case YYRHSLOC works for the error case too.
12248 All uses changed.
12249 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
12250 (YYLLOC_DEFAULT): Use the same macro as glr.c.
12251 * doc/bison.texinfo (Location Default Action): Don't claim that
12252 we have an array of locations. Use the same macro for both glr
12253 and lalr parsers. Mention YYRHSLOC. Mention what happens when
12254 the index is 0.
12255
48814dcd
PE
122562004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12257
a4e1a53b
PE
12258 * HACKING: Update email addresses to send announcements to.
12259
48814dcd
PE
12260 * configure.ac (AC_INIT): Bump version to 1.875f.
12261
337116ba
PE
122622004-12-10 Paul Eggert <eggert@cs.ucla.edu>
12263
12264 * NEWS: Version 1.875e.
12265 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
12266
12267 * src/scan-skel.l: Include "complain.h", for "fatal".
12268
12269 * src/relation.h (relation_print, relation_digraph):
12270 Relation sizes are of type relation_node, not size_t (this is
12271 merely a doc fix, since the two types are equivalent).
12272 (relation_transpose): Relation sizes are of type relation_node,
12273 not int.
12274 * src/relation.c: Likewise.
12275 (top, infinity): Now of type relation_node, not int.
12276 (traverse, relation_transpose): Use relation_node, not int.
12277
12278 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
12279 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
12280 (yyparse): Remove unused local introduced in 2004-10-25 patch.
12281
12282 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 12283 specifying whether the test should be skipped. Use it tp
337116ba 12284 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 12285 fail on some hosts, and should be skipped.
337116ba 12286
da2a7671
PE
122872004-12-08 Paul Eggert <eggert@cs.ucla.edu>
12288
12289 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
12290 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
12291 unless otherwise specified below.
12292
12293 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
12294 to allocate kernel_base, kernel_items, kernel_size, since
12295 they needn't be initialized to 0.
12296 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
12297 * src/closure.c (new_closure): Likewise, for itemset.
12298 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
12299 * src/lalr.c (set_goto_map): Likewise, for temp_map.
12300 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
12301 (build_relations): Likewise for edge, states1, includes.
12302 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
12303 * src/reader.c (packgram): Likewise, for ritem, rules.
12304 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
12305 * src/relation.c (relation_digraph): Likewise for VERTICES.
12306 (relation_transpose): Likewise for new_R, end_R.
12307 * src/symtab.c (symbols_token_translations_init): Likewise for
12308 token_translations.
12309 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
12310 (token_actions): Likewise for yydefact, actrow, conflrow,
12311 conflict_list.
12312 (save_column): Likewise for froms[symno], tos[symno].
12313 (goto_actions): Likewise for state_count.
12314 (pack_table): Likewise for base, pos, check.
12315 (tables_generate): Likewise for width.
12316
12317 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
12318 for initial core. Just have a separate core, so we needn't worry
12319 about whether kernel_size and kernel_base are initialized.
12320
12321 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
12322 kernel_size, kernel_items): Remove unnecessary initialization.
12323 * src/conflicts.c (conflicts): Likewise.
12324 * src/derives.c (derives): Likewise.
12325 * src/muscle_tablc (muscle_insert): Likewise.
12326 * src/relation.c (relation_digraph): Likewise.
12327 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
12328 conflrow, conflict_table, conflict_list, table, check):
12329 Likewise.
12330
12331 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
12332 This is because all callers pass unsigned int.
12333 * src/closure.h (new_closure): Likewise.
12334
12335 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
12336 (build_relations): Initialize includes[i] in all cases.
12337 * src/reader.c (packgram): Always initialize rules[ruleno].prec
12338 and rules[ruleno].precsym. Initialize members in order.
12339 * src/relation.c (relation_transpose): Always initialize new_R[i]
12340 and end_R[i].
12341 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
12342
12343 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
12344 conflict_list[0] was always 0, but now it isn't initialized.
12345
12346 * src/table.c (table_grow): When conflict_table grew, the grown
12347 area wasn't cleared. Fix this.
12348
12349 * lib/.cvsignore: Add strdup.c, strdup.h.
12350 * m4/.cvsignore: Add strdup.m4.
12351
00baeeac
PE
123522004-12-07 Paul Eggert <eggert@cs.ucla.edu>
12353
12354 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
12355 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
12356 GOTO_NUMBER_MAXIMUM, since we occasionally compute
12357 ngotos + 1 without checking for overflow.
12358 (build_relations): Use END_NODE, not -1, to denote end of edges.
12359 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
12360 build_relations): Use goto_number, not int, for goto numbers.
12361 * src/tables.c (save_column, default_goto): Likewise.
12362
be3d9d42
AD
123632004-11-23 Akim Demaille <akim@epita.fr>
12364
12365 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
12366 of #defining from yystype.
12367 Don't typedef yystype, C++ does not need it.
12368 This lets it possible to forward declare it as union.
12369
78e526d5
PE
123702004-11-23 Paul Eggert <eggert@cs.ucla.edu>
12371
12372 * bootstrap (gnulib_modules): Add extensions.
12373 Problem reported by Jim Meyering.
12374
afbb696d
PE
123752004-11-22 Paul Eggert <eggert@cs.ucla.edu>
12376
12377 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
12378 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
12379 src/system.h, src/tables.c: XFREE -> free, to accommodate
12380 recent change to gnulib xalloc.h.
78e526d5 12381 Problem reported by Jim Meyering.
afbb696d 12382
c1f8f16a
AD
123832004-11-17 Akim Demaille <akim@epita.fr>
12384
12385 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
12386
db7e5eb5 123872004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
12388 Alexandre Duret-Lutz <adl@gnu.org>
12389
12390 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
12391 changes.
12392 (YYCDEBUG): Adjust.
12393 Use it instead of cdebug_.
12394 (Parser::debug_stream, Parser::set_debug_stream): New.
12395 (Parser::symprint_): Define cdebug_ for temporary backward
12396 compatibility.
12397 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
12398 debug_stream ().
12399
68e11668
AD
124002004-11-17 Akim Demaille <akim@epita.fr>
12401
12402 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
12403 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
12404 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
12405 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12406
97cbc73e
PE
124072004-10-27 Paul Eggert <eggert@cs.ucla.edu>
12408
12409 * data/glr.c (yyloc_default): Remove; not used.
12410 Problem reported by Frank Heckenbach.
12411
e342c3be
AD
124122004-10-25 Akim Demaille <akim@epita.fr>
12413
12414 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
12415 Introduce another definition to address simple location arrays.
12416 (yyGLRStack): New member: yyerror_range.
12417 (yyrecoverSyntaxError, yyparse): Update it.
12418 (yyrecoverSyntaxError): Use it when shifting the error token to
12419 have an accurate range, equivalent to the one computed by both
12420 yacc.c and lalr1.cc.
12421 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
12422 that column numbers start at column 0, as per GNU Coding
12423 Standards, the others tests, and the doc.
12424 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
12425 Adjust to the above change (first column is 0).
12426 And adjust the location of the "<error>", now covering the whole
12427 line.
12428
93602feb 124292004-10-22 Akim Demaille <akim@epita.fr>
04098407 12430 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
12431
12432 Remove some arbitrary limits on goto numbers and relations.
12433 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
12434 initial values, since they're never used.
12435 (set_goto_map): ngotos is now unsigned, so test for overflow
12436 by seeing whether it wraps around to zero.
12437 * src/lalr.h (goto_number): Now size_t, not short int.
12438 (GOTO_NUMBER_MAXIMUM): Remove.
12439 * src/relation.c (relation_print, traverse, relation_transpose):
12440 Check for END_NODE rather than looking at sign.
12441 * src/relation.h (END_NODE): New macro.
12442 (relation_node): Now size_t, not short int.
12443
dba08b04
PE
124442004-10-22 Paul Eggert <eggert@cs.ucla.edu>
12445
12446 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
12447 keyword, not an identifier. Problem reported by Baron Schwartz in
12448 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
12449
df09ef2e
AD
124502004-10-11 Akim Demaille <akim@epita.fr>
12451
12452 * src/symtab.c (symbol_check_alias_consistency): Also check
12453 type names, destructors, and printers.
12454 Reported by Alexandre Duret-Lutz.
12455 Recode the handling of associativity and precedence in terms
12456 of symbol_precedence_set.
12457 Accept no redeclaration at all, not even equal to the previous
12458 value.
12459 (redeclaration): New.
12460 Use it to factor redeclaration complaints.
12461 (symbol_make_alias): Don't set the type of the alias, let
12462 symbol_check_alias_consistency do it as for other features.
12463 * src/symtab.h (symbol): Add new member prec_location, and
12464 type_location.
12465 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
12466 * tests/input.at (Incompatible Aliases): New.
12467
146bc99d
PE
124682004-10-09 Paul Eggert <eggert@cs.ucla.edu>
12469
12470 .cvsignore fixes to accommodate gnulib changes,
12471 and the practice of naming build directories "_build".
12472 * .cvsignore: Add "_*". Sort.
12473 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
12474 * m4/.cvsignore: Add "*_gl.m4".
12475
e503aa60
AD
124762004-10-06 Akim Demaille <akim@epita.fr>
12477
12478 * src/parse-gram.y (add_param): Fix the truncation of trailing
12479 spaces.
12480
b4a20338
AD
124812004-10-05 Akim Demaille <akim@epita.fr>
12482
12483 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
12484 whether the reducion was empty or not. This leaves room to
12485 improve the use of YYLLOC_DEFAULT in such a case.
12486 lalr1.cc is still experimental, so changing this is acceptable.
12487 And finally, there are probably not many users who changed the
12488 handling of locations in GLR, so changing is admissible too.
12489
12490 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
12491 empty reduction, set @$ to an empty location ending the previously
12492 stacked symbol.
12493 Adjust uses to make sure the code is triggered on empty
12494 reductions.
12495 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
12496 expected output: empty reductions have empty locations.
12497
f85a5e6f
AD
124982004-09-29 Akim Demaille <akim@epita.fr>
12499
12500 * data/lalr1.cc: Move towards a more standard C++ coding style
12501 for templates: Class < T > -> Class<T>.
12502
b203fc2c
AD
125032004-09-29 Akim Demaille <akim@epita.fr>
12504
12505 * data/lalr1.cc: Reinstall the former ctor, for sake of
12506 compatibility, but warn it will be removed.
12507 Move towards a more standard C++ coding style (i.e., type *var ->
12508 type* var).
12509
5b7e1e73
PE
125102004-09-27 Paul Eggert <eggert@cs.ucla.edu>
12511
3fee967f
PE
12512 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
12513 since it's less likely to work if NULs are involved in the future.
5b7e1e73 12514
0dcca5c2
AD
125152004-09-27 Akim Demaille <akim@epita.fr>
12516
12517 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
12518
6dde1c82
AD
125192004-09-27 Akim Demaille <akim@epita.fr>
12520
12521 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 12522 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
12523 and argument names.
12524 (b4_cc_constructor_call): Likewise.
12525
b233d555
AD
125262004-09-24 Akim Demaille <akim@epita.fr>
12527
12528 * src/parse-gram.y (add_param): Strip the leading and trailing
12529 blanks from a formal argument declaration.
12530 (YY_LOCATION_PRINT): New.
12531
619404e3
AD
125322004-09-24 Akim Demaille <akim@epita.fr>
12533
12534 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
12535 after the location.
12536
dd8d9022
AD
125372004-09-24 Akim Demaille <akim@epita.fr>
12538
12539 * doc/bison.texinfo (Table of Symbols): Sort.
12540
0092f063
AD
125412004-09-21 Akim Demaille <akim@epita.fr>
12542
12543 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
12544 the useless parentheses.
12545 Suggested by Paul Eggert.
12546
451364ed
AD
125472004-09-20 Akim Demaille <akim@epita.fr>
12548
12549 Let the initial-action act on the look-ahead, and use it for the
12550 "initial push" (corresponding to an hypothetical beginning-of-file).
12551 And let lalr1.cc honor %initial-action.
12552
12553 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
12554 example.
12555 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
12556 (Parser::Parser): Remove the ctor that used to initialize it.
12557 (Parser::parse): Like in the other skeletons, issue the "starting
12558 parse" message before any action.
12559 Honor %initial-action.
12560 Initialize the stacks with the lookahead.
12561 * data/yacc.c: Let $$ and @$ in %initial-action designate the
12562 look-ahead.
12563 Push them in the stacks.
12564 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
12565
18d192f0
AD
125662004-09-20 Akim Demaille <akim@epita.fr>
12567
12568 * doc/bison.texinfo (Initial Action Decl): New.
12569
b8458aa5
AD
125702004-09-20 Akim Demaille <akim@epita.fr>
12571
12572 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
12573 clearer criterion to define it.
12574 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
12575 When reducing on an empty RHS, use the latest stacked location as
12576 location.
12577 yylloc is not always available.
12578 * data/glr.c: Likewise.
12579 Also, honor initial-actions.
12580
3fc16193
AD
125812004-09-20 Akim Demaille <akim@epita.fr>
12582
12583 * data/yacc.c (YY_LOCATION_PRINT): New.
12584 Define when we know YYLTYPE's structure, i.e., when the default
12585 YYLLOC_DEFAULT is used.
12586 * data/c.m4 (b4_yysymprint_generate): Use it.
12587 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
12588 value of the result.
12589 (error_start_): Replace with...
12590 (error_range_): this location array.
12591 This allows to replace code relying on the implementation of
12592 locations by portable code.
12593 * data/yacc.c (yylerrsp): Replace with...
12594 (yyerror_range): this.
12595 Every time a token is popped, update yyerror_range[0], to have an
12596 accurate location for the error token.
12597 * data/glr.c (YY_LOCATION_PRINT): New.
12598 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
12599 deference a pointer.
12600 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
12601 report the location in %printers.
12602
12603 * src/scan-skel.l: Instead of abort, report error messages to ease
12604 understanding skeleton scanning failures.
12605
ecfe33e7
AD
126062004-09-16 Akim Demaille <akim@epita.fr>
12607
12608 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
12609 (iterator, const_iterator): these, to be more in the C++ spirit.
12610 Also, return reverse iterators so that when displaying the stack
12611 we display its bottom first.
12612 (Parser::stack_print_, Parser::reduce_print_): Match the messages
12613 from yacc.c.
12614 We should probably use vector here though.
12615
1576d44d
AD
126162004-09-16 Akim Demaille <akim@epita.fr>
12617
12618 Have more complete shift traces.
12619
12620 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
12621 to report Shifts instead of ad hoc YYDPRINTF invocations,
12622 including for the error token.
12623 * data/lalr1.cc (symprint_): Output the location.
12624 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
12625 output the location within the %printer.
12626 Activate GLR tests, at least to make sure they compile properly.
12627 They still don't pass though.
12628 * tests/calc.at: Adjust expect verbose output, since now "Entering
12629 state..." is on a different line than the "Shifting" message.
12630
9c66f418
AD
126312004-09-08 Akim Demaille <akim@epita.fr>
12632
12633 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
12634 Bison directive from the Bison file to the invocation of this
12635 macro, so that these directives are passed to
12636 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
12637 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
12638 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
12639 the extra Bison directives instead of the whole series.
12640 Change the grammar so that there are recoverable errors, and
12641 unrecoverable errors. Now we can have the parser give up before
12642 consuming the whole input. As a result we now can observe that
12643 the lookahead is freed when needed.
12644 Change the parser source to parse argv[1] instead of a hard coded
12645 string.
12646 Simplify yylex, and give a value and location to EOF.
12647 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
12648 passed directives already coded in the file.
12649 Add some tests to check the location of "error".
12650 For some tests, the C++ parser is correct, and not yacc.c.
12651 For other tests, they provide different, but unsatisfying, values,
12652 so keep the C++ value so that at least one parser is "correct"
12653 according to the test suite.
12654 (Actions after errors): Remove, this is subsumed by the
12655 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
12656
52d5733f
AD
126572004-09-06 Akim Demaille <akim@epita.fr>
12658
12659 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 12660 (Parser::pop): New.
52d5733f
AD
12661 Use it.
12662
a0e68930
AD
126632004-09-06 Akim Demaille <akim@epita.fr>
12664
12665 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
12666 argument, an informative message.
12667 Call YY_SYMBOL_PRINT.
12668 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
12669 * data/lalr1.cc (destruct_): Likewise.
12670 In addition, no longer depend on b4_yysymprint_generate and
12671 b4_yydestruct_generate to generate these functions, do it "by
12672 hand".
12673
e757bb10
AD
126742004-09-03 Akim Demaille <akim@epita.fr>
12675
12676 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
12677 invoked, yydestruct the lookahead.
12678 * tests/calc.at (Calculator $1): Update the expected lengths of
12679 traces: there is an added line for the discarded lookahead.
12680 * doc/bison.texinfo (Destructor Decl): Some rewording.
12681 Define "discarded" symbols.
12682
0fe1f06d
AD
126832004-09-02 Akim Demaille <akim@epita.fr>
12684
12685 * data/lalr1.cc (translate_, destruct_): No reason to be static.
12686
284acc8b
AD
126872004-09-02 Akim Demaille <akim@epita.fr>
12688
12689 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
12690 (YYDSYMPRINTF): Rename as...
12691 (YY_SYMBOL_PRINT): this.
12692 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
12693 two.
12694 Use it instead of direct symprint_ calls.
12695 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
12696 one.
12697
a5eb1ed2
AD
126982004-09-02 Akim Demaille <akim@epita.fr>
12699
b7c72fe1
AD
12700 * data/lalr1.cc (b4_yysymprint_generate): New.
12701 (symprint_): New member function, defined when YYDEBUG.
12702 Use it consistently instead of token/nterm debugging output by
12703 hand.
a5eb1ed2
AD
12704 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
12705 %printer calls to use cdebug_ when using lalr1.cc.
12706
417141dd
AD
127072004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
12708
12709 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
12710 with #ifdef YYDEBUG.
12711
2fa09258
AD
127122004-08-26 Akim Demaille <akim@epita.fr>
12713
12714 * doc/bison.texinfo (Implementing Loops): Rename as...
12715 (Implementing Gotos/Loops): this.
12716
9378b508
PE
127172004-08-13 Paul Eggert <eggert@cs.ucla.edu>
12718
12719 Adjust to latest gnulib.
12720 * bootstrap (gnulib_modules): Add xalloc-die.
12721 Set LC_ALL=C so that file names sort consistently.
12722 Prefer the gnulib copies of gettext.m4, glibc21.m4,
12723 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
12724 uintmax_t.m4, ulonglong.m4.
12725 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
12726 po.m4 since we are now using _gl.m4 instead.
12727
87a8ad5c
PE
127282004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
12729
12730 * src/scan-action.l: Remove. Scanning of semantic actions is
12731 handled in scan-gram.l.
12732
dca81a78
PE
127332004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
12734
12735 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
12736
12737 * src/location.h (struct): The file member is a uniqstr.
12738 (equal_boundaries): Use UNIQSTR_EQ for comparison.
12739
c9cbf7c5
PE
127402004-07-22 Paul Eggert <eggert@cs.ucla.edu>
12741
12742 Fix bug with non-%union parsers that have printers or destructors,
12743 which led to a Bison core dump. Reported by Peter Fales in
12744 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 12745
c9cbf7c5
PE
12746 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
12747 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
12748 not to our own type.
12749 * src/output.c (symbol_destructors_output, symbol_printers_output):
12750 Don't assume %union.
12751 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
12752 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
12753 UNION-FLAG. All callers changed.
12754 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
12755 Use type char, not unsigned int, when declaring an array of char;
12756 this lets us remove a cast.
12757 (Printers and Destructors): Add non-%union test cases.
12758
fa7e68c3
PE
127592004-06-21 Paul Eggert <eggert@cs.ucla.edu>
12760
12761 * doc/bison.texinfo: Minor editorial changes, mostly to the new
12762 GLR writeups. E.g., avoid frenchspacing and the future tense,
12763 change "lookahead" to "look-ahead", and change "wrt" to "with
12764 respect to".
2fa09258 12765
fa7e68c3
PE
127662004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12767
12768 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
12769 New sections, split off from the GLR Parsers section. Put the new
12770 Simple GLR Parser near the start of the GLR section, for clarity.
12771 Rewrite connective text.
12772
99a9344e
PE
127732004-06-21 Frank Heckenbach <frank@g-n-u.de>
12774
12775 * doc/bison.texinfo (Simple GLR Parsers): New section.
12776
8dd162d3
PE
127772004-06-21 Paul Eggert <eggert@cs.ucla.edu>
12778
12779 * NEWS, TODO, doc/bison.texinfo:
12780 Use "look-ahead" instead of "lookahead", to be consistent.
12781 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
12782 while we're fixing "look-ahead".
12783 * src/conflicts.c (shift_set): Renamed from shiftset.
12784 (look_ahead_set): Renamed from lookaheadset.
12785 * src/print.c: Likewise.
12786 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
12787 name for "lookahead".
12788 (report_types, usage): Likewise.
12789 * src/getargs.h (report_look_ahead_tokens): Renamed from
12790 report_lookaheads.
12791 * src/lalr.c (compute_look_ahead_tokens): Renamed from
12792 compute_lookaheads.
12793 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
12794 (look_ahead_tokens_print): Renamed from lookaheads_print.
12795 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
12796 state_rule_lookaheads_print.
12797 * src/state.h: Likewise.
12798 (reductions.look_ahead_tokens): Renamed from lookaheads.
12799 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
12800 AT_DATA_LOOKAHEADS_GRAMMAR.
12801
57a90331
PE
128022004-06-03 Paul Eggert <eggert@cs.ucla.edu>
12803
12804 * README: Update location of patched M4 distribution.
12805
8ed3234a
PE
128062004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
12807
12808 Don't assume the C++ compiler takes the same arguments as the C compiler
12809 (trivial change).
12810 * configure.ac (O0CXXFLAGS): New var.
12811 * tests/atlocal.in (CXXFLAGS): Use it.
12812
07971983
PE
128132004-05-29 Paul Eggert <eggert@cs.ucla.edu>
12814
12815 Fix some "make check" problems with C++ reported by
12816 Albert Chin-A-Young for Tru64 C++ in this thread:
12817 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
12818
12819 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
12820 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
12821 Output to a .cc file for C++, not to a .c file.
12822 * tests/calc.at (AT_CHECK_CALC): Likewise.
12823 * tests/regression.at (AT_CHECK_DANCER): Likewise.
12824 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
12825
29058652
PE
128262004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
12827
12828 * tests/calc.at, tests/actions.at: Workaround for SGI
12829 C++ compiler. (trivial change)
12830
62cb8a99
PE
128312004-05-27 Paul Eggert <eggert@cs.ucla.edu>
12832
fd418816
PE
12833 Spent a few hours checking out which prerequisite versions the
12834 current sources actually require. I went all the way back to
12835 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
12836 a seemingly endless set of combinations of versions more recent
12837 than that. The bottom line is that the current sources require
12838 fairly recent versions of the build tools, and it'll be some work
12839 to change this.
12840 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
12841 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
12842 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
12843 Add comments explaining why those particular versions are
12844 currently needed.
2fa09258 12845
62cb8a99
PE
12846 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
12847 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 12848 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
12849
12850 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
12851 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
12852
caa52c10
PE
128532004-05-26 Paul Eggert <eggert@cs.ucla.edu>
12854
12855 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
12856 0.11.5. Suggested by Bruno Haible.
12857 * bootstrap: Remove gettext version checking.
12858
12859 * doc/bison.texinfo (Decl Summary): Also mention that %union
12860 can depend on prerequisite types. Problem reported by Tim
12861 Van Holder.
12862
4bfd5e4e
PE
128632004-05-25 Paul Eggert <eggert@cs.ucla.edu>
12864
2cef3017
PE
12865 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
12866 * README-alpha: Don't tell people not to package this.
12867
b9c85d5c
PE
12868 * bootstrap: Don't assume $(...) works; use `...` instead.
12869 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
12870 gettext better.
12871
4bfd5e4e
PE
12872 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
12873 put into the -d output file, and mention what to do if YYSTYPE is
12874 defined as a macro.
12875
6a36ff94
PE
128762004-05-24 Paul Eggert <eggert@cs.ucla.edu>
12877
6712933e
PE
12878 Undo change made earlier today: it caused autopoint to not bring
12879 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
12880 autopoint's.
12881
12882 * bootstrap: Check that gettext version matches what's in
12883 configure.ac. Warn users to ignore robots.txt ERROR 404.
12884 * bootstrap: Undo today's earlier change (logged below).
12885 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 12886
6a36ff94
PE
12887 The gettext version checking is causing more trouble than it's
12888 curing; remove it. Problem reported by Paul Hilfinger.
12889
12890 * bootstrap: Issue a warning that one can expect a message
12891 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
12892 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
12893
209ea708
PE
128942004-05-23 Paul Eggert <eggert@cs.ucla.edu>
12895
12896 Ensure that the C++ compiler used for testing actually works on a
12897 simple test program; if not, skip the C++-related tests. Problem
12898 reported by Vin Shelton in:
161a71f3 12899 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
12900
12901 * m4/cxx.m4: New file.
12902 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
12903 * tests/atlocal.in (BISON_CXX_WORKS): Add.
12904 * tests/local.at (AT_COMPILE_CXX): Use it.
12905
41ca2549
PE
129062004-05-21 Paul Eggert <eggert@cs.ucla.edu>
12907
383e69dc
PE
12908 * data/glr.c (yylloc): Output this macro even if locations are not
12909 being generated, as the GLR parser needs it even in that case.
12910 Problem reported by Troy A. Johnson
12911 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
12912
41ca2549
PE
12913 * configure.ac (AC_INIT): Update to 1.875e.
12914
e476c87d
PE
129152004-05-21 Paul Eggert <eggert@cs.ucla.edu>
12916
12917 * NEWS: Version 1.875d.
12918 * configure.ac (AC_INIT): Likewise.
12919 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
12920
12921 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
12922 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
12923 lalr1.cc runs afoul of the first, and the last two are no longer
12924 supported by GCC 3.4.0.
12925 * README: Mention GNU m4 1.4 or later; mention m4 patches.
12926 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
12927
233a88ad
PE
129282004-05-06 Paul Eggert <eggert@cs.ucla.edu>
12929
12930 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
12931 unsigned int, for compatibility with latest gnulib hash module.
12932 * src/state.c (state_hash, state_hasher): Likewise.
12933 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
12934 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 12935
12ffdd28
PE
129362004-05-03 Paul Eggert <eggert@cs.ucla.edu>
12937
12938 * NEWS: Unescaped newlines are no longer allowed in char & strings.
12939
12940 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
12941 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
12942 character and string literals.
12943 (unexpected_end): New function.
12944 (unexpected_eof): Use it.
12945 (unexpected_newline): New function.
12946 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
12947 actions.
e476c87d 12948
12ffdd28
PE
12949 * NEWS: Document %expect-rr.
12950
12951 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
12952 Fix typo by replacing $1 with $option.
12953 Remove more 'intl'-related files.
9668e2be 12954 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
12955
12956 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
12957 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
12958 strtoul.c.
12959 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
12960 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
12961 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
12962 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
12963 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
12964 * src/.cvsignore: Add *.output.
12965
12966 * src/parse-gram.y: Put copyright notice inside %{ %} so it
12967 gets copied to the output file.
e476c87d 12968
1f65350a
PE
129692004-04-28 Paul Eggert <eggert@twinsun.com>
12970
12971 Get files from the gnulib and po repositories, instead of relying
12972 on them being in our CVS. Upgrade to latest versions of gnulib
12973 and Automake.
12974
12975 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
12976 * bootstrap: Bootstrap from gnulib and po repositories.
12977 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
12978 * README-cvs: Document these changes. Remove version numbers from
12979 mentions of build tools, since they change so often. Mention Flex.
12980
12981 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
12982 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
12983 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
12984 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 12985 does this for us.
12ffdd28
PE
12986 (AC_ISC_POSIX): Remove; we no longer support this
12987 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
12988 (AC_HEADER_STDC): Remove: we now assume C89 or better.
12989 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
12990 Do not check for C89 headers, except for locale.h which is used
12991 by the Yacc library and must port to K&R hosts.
12992 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
12993 Do not check for C89 functions, except for setlocale which is
12994 used by the Yacc library.
12995 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
12996 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
12997 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
12998 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
12999 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
13000 AM_GNU_GETTEXT): Remove; now done by:
13001 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
13002 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
13003 for us.
13004
13005 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
13006 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
13007 Define to empty, as gnulib.mk will do the rest for us.
13008 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
13009 for us.
13010 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
13011 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
13012
13013 * src/files.c: Include gnulib's xstrndup.h.
13014
13015 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
13016 (REALLOC): Use xnrealloc, for likewise.
13017 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
13018 (strnlen, memrchr): Remove decls; functions no longer used.
13019 Include <stpcpy.h>.
13020
13021 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
13022 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13023 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
13024 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
13025 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
13026 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
13027 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
13028 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
13029 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
13030 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
13031 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
13032 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13033 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
13034 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
13035 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
13036 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
13037 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
13038 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
13039 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
13040 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
13041 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
13042 Remove, as these files are now generated automatically
13043 by bootstrap or automake.
13044
13045 * po/ChangeLog: Remove: all but one entry was a duplicate
13046 of this file, and I moved that 2000-11-02 entry here.
13047
13048 * config/.cvsignore: Add Makefile, depcomp, install-sh.
13049 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
13050 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
13051 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
13052 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
13053 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
13054 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
13055 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
13056 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
13057 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
13058 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
13059 xstrndup.h.
13060 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
13061 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
13062 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
13063 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
13064 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
13065 * src/.cvsignore: Remove *_.c.
13066
13067
13068 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
13069 support it. (The latest stable gzip doesn't.)
13070
130712004-04-27 Paul Eggert <eggert@twinsun.com>
13072
13073 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
13074 case, as stos_ is now used by destructors due to the 2004-02-09
13075 change.
13076
13077 Remove more K&R C support.
13078 * lib/libiberty.y (PARAMS): Remove. All uses removed.
13079 * lib/subpipe.c (errno): Remove decl.
13080 Include <stdlib.h> unconditionally.
13081 (EXIT_FAILURE): Remove macro.
13082 * src/complain.c (vfprintf, strerror): Remove.
13083 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
13084 unconditionally.
13085 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
13086 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
13087 (strchr, strspn, memchr): Remove decls.
13088 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
13089 unconditionally. Do not declare perror.
13090 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
13091 unconditionally.
13092
13093 * src/complain.c (_): Remove useless defn, as system.h defines this.
13094
13095 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
13096 with latest obstack.h.
13097 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
13098 to procedure types, as obstack.h now does that for us.
13099 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
13100
13101 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
13102 so that this include file can stand alone.
13103 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
13104 does this now. Include subpipe.h first after config.h, to
13105 test whether it can stand alone.
13106
13107 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
13108 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
13109 unused declaration.
13110
13111 * tests/synclines.at (%union synch line): Put a dummy member in
13112 the union, because empty unions aren't allowed in C. Caught
13113 by GCC 3.4.0.
13114
4f16766c
PE
131152004-04-13 Jim Meyering <jim@meyering.net>
13116
13117 * src/conflicts.c (conflicts_print): Correct format string typo:
13118 use `%%' to produce literal `%'. (trivial change)
13119
779e7ceb
PE
131202004-03-30 Paul Eggert <eggert@twinsun.com>
13121
13122 * src/getargs.c (version): Update copyright year to 2004.
13123
13124 * data/c.m4 (b4_int_type): Use 'short int' rather than
13125 'short', and similarly for 'long', 'unsigned', etc.
13126 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
13127 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
13128 yy_yypstack, yydumpstack): Likewise.
13129 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
13130 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
13131 Likewise.
13132 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
13133 yy_stack_print, yyparse): Likewise.
13134 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
13135 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
13136 * lib/bitset.c (bitset_print): Likewise.
13137 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
13138 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13139 * lib/bitsetv.c (bitsetv_dump): Likewise.
13140 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
13141 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
13142 Likewise.
13143 * src/LR0.c (allocate_itemsets): Likewise.
13144 * src/gram.h (rule_number, rule): Likewise.
13145 * src/lalr.h (goto_number): Likewise.
13146 * src/nullable.c (nullable_compute): Likewise.
13147 * src/output.c (prepare_rules): Likewise.
13148 * src/relation.c (relation_print, relation_digraph): Likewise.
13149 * src/relation.h (relation_node): Likewise.
13150 * src/state.h (state_number, transitions, errs, reductions,
13151 struct state): Likewise.
13152 * src/symtab.h (symbol_number, struct symbol): Likewise.
13153 * src/tables.c (vector_number, tally, action_number,
13154 default_goto, goto_actions): Likewise.
13155 * tests/existing.at (GNU Cim Grammar): Likewise.
13156 * tests/regression.at (Web2c Actions): Likewise.
13157
13158 * src/output.c (muscle_insert_short_int_table): Renamed from
13159 muscle_insert_short_table. All uses changed.
13160
d6328241
PH
131612004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
13162
13163 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
13164 (declaration): Replace expected_conflicts with expected_sr_conflicts.
13165 Add %expect-rr rule.
4f16766c 13166
d6328241
PH
13167 * src/scan-gram.l: Recognize %expect-rr.
13168
4f16766c 13169 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 13170 expected_conflicts.
4f16766c 13171 (expected_rr_conflicts): Declare.
d6328241
PH
13172
13173 * src/conflicts.c (expected_sr_conflicts): Rename from
13174 expected_conflicts.
13175 (expected_rr_conflicts): Define.
13176 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
13177 for GLR parsers.
13178 Use expected_sr_conflicts in place of expected_conflicts.
13179 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 13180
d6328241 13181 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 13182
1452af69
PE
131832004-03-08 Paul Eggert <eggert@gnu.org>
13184
13185 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 13186 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
13187
13188 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
13189 in lalr1.cc.
13190 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
13191 * src/scan-gram.l (scan_integer): New function.
13192 ({int}): Use it.
13193 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
13194 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
13195 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
13196 Say "long int", not "long", for uniformity with GNU style.
13197
006d217d
PE
131982004-02-25 Paul Eggert <eggert@twinsun.com>
13199
13200 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
13201 compilers. This fixes a problem with Intel's C++ compiler being
13202 chatty, reported by Guido Trentalancia in
161a71f3 13203 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 13204
c2729758
ADL
132052004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
13206
13207 Support %destructor and merge error locations in lalr1.cc.
13208
13209 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
13210 (Parser::stos_): Define unconditionally.
13211 (Parser::destruct_): New method. Generate its body with
13212 b4_yydestruct_generate.
13213 (Parser::error_start_): New attribute.
13214 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
13215 token which are discarded.
13216 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
13217 error_start_ when erroneous token are discarded.
13218 (Parser::parse) <yyerrlab1>: Compute the location of the error
13219 token so that it covers all the discarded tokens.
13220 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
13221 it can be called with `%skeleton "lalr1.cc"', and do that.
13222
dd0e0635
PE
132232004-02-02 Paul Eggert <eggert@twinsun.com>
13224
13225 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
13226 $(top_srcdir)/lib and ../lib. This fixes a bug reported
13227 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
13228 There's no need to mention top_builddir since Automake does that
13229 for us.
13230 (INCLUDES): Remove, as Automake says it's obsolescent.
13231 Contents migrated into AM_CPPFLAGS as described above.
13232 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
13233
132342004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13235
13236 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
13237 (yyreportSyntaxError): Handle case where lookahead token is
13238 YYEMPTY.
13239
be16239b
PH
132402004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13241
13242 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
13243 resulting parsers are compilable with C++.
13244
5fa90832
PE
132452003-12-23 Paul Eggert <eggert@twinsun.com>
13246
13247 * config/depcomp, config/install-sh: Sync with Automake 1.8.
13248 * src/output.c (output_skeleton): Rename local var.
13249 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
13250 Bison tokens, as this runs afoul of the 2003-10-07 change that
13251 disallowed NUL bytes in character constants or string literals.
13252
13253 * tests/local.at: Require Autoconf 2.59's Autotest.
13254 * tests/testsuite.at: Don't include local.at, since we now assume
13255 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
13256 including it.
13257 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
13258 multiple inclusion warnings.
dd0e0635 13259
b165c324
AD
132602003-12-02 Akim Demaille <akim@epita.fr>
13261
13262 * doc/bison.texinfo (How Can I Reset the Parser): More about start
13263 conditions.
13264 From Bruno Haible.
13265
26e06a21
ADL
132662003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
13267
13268 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
13269
92ac3705
PE
132702003-10-07 Paul Eggert <eggert@twinsun.com>
13271
6a5ecb38
PE
13272 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
13273 if testsuite doesn't exist.
13274
92ac3705
PE
13275 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
13276 literals, unfortunately.
13277 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
13278 Complain about NUL bytes in character constants or string literals.
13279
91d2c560
PE
132802003-10-05 Paul Eggert <eggert@twinsun.com>
13281
13282 * NEWS: Don't document %no-default-prec, as it's still
13283 too experimental.
13284 * doc/bison.texinfo: Document %no-default-prec only if
13285 the defaultprec flag is set. Normally it's not.
13286
0cc3da3a
PE
132872003-10-04 Paul Eggert <eggert@twinsun.com>
13288
13289 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
13290 non-modifiable lvalue, instead of a modifiable one.
13291 * doc/bison.texinfo (Actions): Document that $$ can
13292 be assigned to. Do not claim that $$ and $N are
13293 array element references: user code should not rely on this.
13294
22fccf95
PE
132952003-10-01 Paul Eggert <eggert@twinsun.com>
13296
13297 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
13298 (grammar_declaration): Use it.
13299 * src/scan-gram.l: New token %no-default-prec.
13300 * tests/conflicts.at: Revamp tests to use %no-default-prec.
13301 * NEWS, doc/bison.texinfo: Document the above.
13302
fc8f2965
AD
133032003-10-01 Akim Demaille <akim@epita.fr>
13304
13305 VCG no longer supports long_straight_phase.
13306
13307 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
13308 * src/print_graph.c (print_graph): Adjust.
13309
39a06c25
PE
133102003-09-30 Frank Heckenbach <frank@g-n-u.de>
13311 and Paul Eggert <eggert@twinsun.com>
13312
13313 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
13314 Table of Symbols): Document %default-prec.
13315 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
13316 (grammar_declaration): Set default_prec on %default-prec.
13317 * src/scan-gram.l (%default-prec): New token.
13318 * src/reader.h (default_prec): New flag.
13319 * src/reader.c: Likewise.
13320 (packgram): Handle it.
13321 * tests/conflicts.at (%default-prec without %prec,
13322 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 13323
39a06c25
PE
133242003-09-30 Paul Eggert <eggert@twinsun.com>
13325
13326 * tests/testsuite.at: Include local.at, not input.at, fixing
13327 a typo in the 2003-08-25 patch.
13328
62b6aef9
AD
133292003-08-27 Akim Demaille <akim@epita.fr>
13330
13331 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
13332 GCC warnings.
13333
89e1cc61
AD
133342003-08-26 Akim Demaille <akim@epita.fr>
13335
13336 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
13337 "<\#" to avoid magic from Gnus when posting parts of this script.
13338
a08460b0
AD
133392003-08-26 Akim Demaille <akim@epita.fr>
13340
13341 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
13342 (Parser::parse): here.
13343 Adjust: nerrs and errstatus is now replaced by...
13344 (Parser::nerrs_, Parser::errstatus_): New.
13345
603f1cfd
AD
133462003-08-25 Akim Demaille <akim@epita.fr>
13347
13348 * config/announce-gen, Makefile.cfg: New.
13349 * Makefile.am: Adjust.
13350 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
13351 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
13352
cd3684cf
AD
133532003-08-25 Akim Demaille <akim@epita.fr>
13354
13355 When reducing initial empty rules, Bison parser read an initial
13356 location that is not defined. This results in garbage, and that
13357 affects Bison's own parser. Therefore we need (i) to extend Bison
13358 to support a means to initialize this location, and (ii) to use
13359 this CVS Bison to fix CVS Bison's parser.
13360
13361 * src/reader.h, reader.c (epilogue_augment): Remove, replace
13362 with...
13363 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
13364 * src/parse-gram.y: Adjust.
13365 (%initial-action): New.
13366 (%error-verbose): Since we require CVS Bison, there is no reason
13367 not to use it.
13368 * src/scan-gram.l: Adjust.
13369 * src/Makefile.am (YACC): New, to make sure we use our own parser.
13370 * data/yacc.c (yyparse): Use b4_initial_action.
13371
4e03e201
AD
133722003-08-25 Akim Demaille <akim@epita.fr>
13373
13374 * doc/bison.texinfo: Don't promote stdout for error messages.
13375
8c182d05
AD
133762003-08-25 Akim Demaille <akim@epita.fr>
13377
13378 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
13379 From Alexandre Duret-Lutz.
13380
6a60c4cf
PE
133812003-08-25 Akim Demaille <akim@epita.fr>
13382
13383 Version 1.875c.
13384
25f66e1a
AD
133852003-08-25 Akim Demaille <akim@epita.fr>
13386
13387 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
13388 Use them.
13389
5348bfbe
AD
133902003-08-25 Akim Demaille <akim@epita.fr>
13391
13392 * data/lalr1.cc (Parser::reduce_print_): New.
13393 Use it.
13394
47301314
AD
133952003-08-25 Akim Demaille <akim@epita.fr>
13396
13397 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
13398 error recovery loops. This patch is based on
161a71f3 13399 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
13400 Also, augment the similarity between lalr1.cc and yacc.c.
13401 Note: the locations of error recovery rules are not correct yet.
13402
13403 * data/lalr1.cc: Comment changes to augment the similarity between
13404 lalr1.cc and yacc.c.
13405 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
13406 (yyerrlab1): Remove, but where it used to be (now the bottom part of
13407 yyerrlab), when hitting EOF, pop the whole stack here instead of
13408 merely falling thru the default error handling mechanism.
13409 (yyerrorlab): New label, with the old contents of YYERROR,
13410 plus the following change: pop the stack of rhs corresponding
13411 to the production that invoked YYERROR. That is how Yacc
13412 behaves (required by POSIX).
13413 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
13414 fail.
13415
1f7a61ff
AD
134162003-08-25 Akim Demaille <akim@epita.fr>
13417
13418 Tune local.at so that people can "autom4te -l autotest calc.at -o
13419 calc" for instance, to extract a sub test suite.
13420
13421 * tests/testsuite.at: Move the initialization, Autotest version
13422 requirement, and AT_TESTED invocation into...
13423 * tests/local.at: here.
13424 * tests/testsuite.at: Include it for compatibility with Autoconf
13425 2.57.
13426 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
13427 be ignore.
13428
327b5b56
PE
134292003-08-04 Paul Eggert <eggert@twinsun.com>
13430
13431 Rework code slightly to avoid gcc -Wtraditional warnings.
13432 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
13433 The returned value is now stored in *YY0. All callers changed.
13434 * src/output.c (merge_output): Adjust to the above change.
13435
0051e3ed
PE
134362003-07-26 Paul Eggert <eggert@twinsun.com>
13437
13438 * data/glr.c (YYASSERT): New macro.
13439 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
13440 yyresolveStates, yyprocessOneStack):
13441 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
13442 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 13443
137437c6
PE
134442003-07-25 Paul Eggert <eggert@twinsun.com>
13445
5b620e06
PE
13446 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
13447 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 13448 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
13449 by Frank Heckenbach, though I have omitted the structure-initialization
13450 part of his glr-knr.diff patch since I recall that the Portable
13451 C Compiler didn't require that change.
13452
137437c6
PE
13453 Let the user specify how to allocate and free memory.
13454 Derived from a suggestion by Frank Heckenbach in
161a71f3 13455 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
13456 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
13457 All uses of free, malloc, realloc changed to use these macros,
13458 and unnecessary casts removed.
13459 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
13460
ddb85ca5
PE
134612003-07-06 Matthias Mann <MatthiasMann@gmx.de>
13462
13463 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
13464 use s.empty() rather than s == "" to test for empty string; see
161a71f3 13465 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
13466 (trivial change)
13467
39910e09
AD
134682003-06-25 Akim Demaille <akim@epita.fr>
13469
13470 * config/depcomp, config/install-sh: Update from masters.
13471
0ae99356
PE
134722003-06-20 Paul Eggert <eggert@twinsun.com>
13473
13474 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
13475 and return properly parenthesized result.
13476 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
13477 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
13478 Remove unnecessary parentheses from uses.
13479 * doc/bison.texinfo (Location Default Action): Describe the
13480 conventions for parentheses.
13481
cd05d13c
PE
134822003-06-19 Paul Eggert <eggert@twinsun.com>
13483
81fd08ca
PE
13484 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
13485 yyreportTree): Do not assume that size_t is the same width as int,
13486 when printing sizes. Print sizes using an unsigned format.
13487 Problem reported by Frank Heckenbach in
161a71f3 13488 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 13489
cd05d13c
PE
13490 Port to Forte Developer 7 C compiler.
13491 * data/glr.c (struct YYLTYPE): If locations are not being used,
13492 declare a single dummy member, as empty structs do not conform
13493 to the C standard.
13494 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
13495 the Forte Developer 7 C compiler complains that end-of-loop
13496 code is not reached.
13497
4dcf140b
PE
134982003-06-17 Paul Eggert <eggert@twinsun.com>
13499
13500 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
13501 avoid warnings from picky compilers about redefinition of PARAMS.
13502
8dd76bee
PE
135032003-06-17 Paul Eggert <eggert@twinsun.com>
13504
13505 Version 1.875b.
13506
13507 * NEWS: Document 1.875b.
13508
13509 * lib/bbitset.h: Do not include config.h; that's the includer's job.
13510 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
13511 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
13512 Don't use 'index' in comments, as it's a builtin fn on some hosts.
13513 * lib/bitset_stats.c: Include gettext.h unconditionally, as
13514 per recent gettext manual's suggestion.
13515 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
13516 Use prototypes, not old-style definitions.
13517 * lib/lbitset.c (lbitset_unused_clear): Likewise.
13518 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
13519 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
13520 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
13521 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
13522 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
13523 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
13524 vbitset_or_and_cmp, vbitset_copy): Likewise.
13525
13526 * lib/libiberty.h: Do not include config.h; that's the includer's job.
13527 Do not include <stdlib.h>.
13528 (PARAMS): Define unconditionally for C89.
13529 (ATTRIBUTE_NORETURN): Remove.
13530 (ATTRIBUTE_UNUSED): Define unconditionally.
13531
13532 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 13533 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
13534 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
13535 * lib/vbitset.c, lib/vbitset.h: New files.
13536 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13537 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
13538 from libbitset.
13539
13540 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
13541 `How Can I Reset @code{yyparse}', since texinfo does not allow
13542 arbitrary @ in node names.
13543
13544 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
13545 shouldn't be needed according to the gettext 0.12.1 documentation
13546 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 13547 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 13548 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 13549 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 13550
8dd76bee
PE
13551 * lib/.cvsignore: Add stdbool.h.
13552 * m4/.cvsignore: Add nls.m4, po.m4.
13553
13554 Upgrade to CVS gnulib.
13555 * stdbool_.h: File renamed from stdbool.h.in.
13556 * configure.ac (AM_STDBOOL_H): Invoke this instead of
13557 AC_HEADER_STDBOOL.
13558 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
13559 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
13560 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
13561 (MOSTLYCLEANFILES): New var.
13562 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
13563 (stdbool.h): New rule.
13564 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
13565 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
13566 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
13567 m4/quote.m4: Upgrade to today's gnulib.
13568
13569 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
13570 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
13571 the tests right now.
13572 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
13573 yyerror are declared before use; C99 requires this.
13574
25005f6a
PH
135752003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13576
13577 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
13578 first.
13579 (yyrecoverSyntaxError): Correct the logic for setting and testing
13580 yyerrState.
13581 Correct comment on handling EOF.
13582 Allow states with only a default reduction, rather than failing
8dd76bee 13583 (I can't quite reconstruct why these were not allowed before).
25005f6a 13584
137437c6 13585 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 13586 buffer overruns, corrupting state.
8dd76bee
PE
13587
13588 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
13589 definition.
13590 * src/reader.h (max_left_semantic_context): New variable declaration.
13591 * src/scan-gram.l (max_left_semantic_context): Define.
13592 (handle_action_dollar): Update max_left_semantic_context.
13593 * data/glr.c (YYMAXLEFT): New definition.
13594 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
13595 (yyresolveAction): Ditto.
13596
13597 Fixes to problems with location handling in GLR parsers reported by
13598 Frank Heckenbach (2003/06/05).
13599
13600 * data/glr.c (YYLTYPE): Make trivial if locations not used.
13601 (YYRHSLOC): Add parentheses, and define only if locations used.
13602 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
13603 locations not used.
13604 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
13605 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 13606
25005f6a
PH
13607 * tests/cxx-type.at: Exercise location information; update tests
13608 to differentiate output with and without locations.
8dd76bee 13609 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
13610 because default YYLTYPE not yet defined.
13611 Change semantic actions to compute strings, rather than printing
13612 them directly (to test proper passing of semantics values). Change
13613 output to prefix notation and update test data and expected results.
13614 (yylex): Track locations.
13615 (stmtMerge): Return value rather than printing, and include arguments
13616 in value.
8dd76bee 13617
711f40b7
PE
136182003-06-03 Paul Eggert <eggert@twinsun.com>
13619
13620 Avoid warnings generated by GCC 2.95.4 when Bison is
13621 configured with --enable-gcc-warnings.
13622 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
13623 yy::]b4_parser_class_name[::translate_,
13624 yy::Stack::operator[] (unsigned),
13625 yy::Stack::operator[] (unsigned) const,
13626 yy::Slice::operator[] (unsigned),
13627 yy::Slice::operator[] (unsigned) const):
13628 Rename local vars to avoid warnings.
13629 * tests/glr-regression.at (Improper handling of embedded actions
13630 and $-N in GLR parsers): Remove unused local variable from yylex.
13631 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
13632 (void) as arg when not pure, since we now assume C89 when building
13633 Bison. Pacify GCC by using parameter.
13634
ac695f7d
PE
136352003-06-02 Paul Eggert <eggert@twinsun.com>
13636
13637 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
13638 yy::Location::lines, yy::Location::columns): Rename arguments
13639 to avoid shadowing; this removes a warning generated by GCC 3.3.
13640
26ec81e0
PE
136412003-06-01 Paul Eggert <eggert@twinsun.com>
13642
13643 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
13644 to g++, as GCC 3.3 complains if you do it.
13645 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
13646 everything that WARNING_CFLAGS has, except omit warnings
13647 not suitable for C++.
13648 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
13649 * tests/atlocal.in (CXXFLAGS): New var.
13650 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
13651
13652 Fix a GLR parser bug I reported in February; see
161a71f3 13653 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
13654 The problem was that GLR parsers did not conform to the C standard,
13655 because actions like { $1 = $2 + $3; } expanded to expressions
13656 that invoked YYFILL in separate subexpressions, and YYFILL assigned
13657 to a local variable. The C standard says that expressions
13658 like (var = f ()) + (var = f ()) have undefined behavior.
13659 Another problem was that GCC sometimes issues warnings that
13660 yyfill and its parameters are unused.
13661
13662 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
13663 as possibly unused.
13664 (yyfill): New function.
13665 (YYFILL): Use it.
13666 (yyuserAction): Change type of yynormal to bool, so that it matches
13667 the new yyfill signature. Mark it as possibly unused.
13668
13669
13670 Follow up on a bug I reported in February, where a Bison-generated
13671 parser can loop. Provide a test case and a fix for yacc.c. I
13672 don't have a fix for lalr1.cc or for glr.c, unfortunately.
13673 The original bug report is in:
161a71f3 13674 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
13675
13676 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
13677 macro's size was becoming unwieldy.
13678 (yyerrlab): Do not discard an empty lookahead symbol, as this
13679 might destroy garbage.
13680 (yyerrorlab): New label, with the old contents of YYERROR,
13681 plus the following change: pop the stack of rhs corresponding
13682 to the production that invoked YYERROR. That is how Yacc
13683 behaves, and POSIX requires this behavior.
13684 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
13685 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
13686 Define 'alarm' to do nothing if unistd.h is not available.
13687 Add a new rule "exp: '-' error;" to test the above change to
13688 data/yacc.c. Use 'alarm' to abort any test taking longer than
13689 10 seconds, as it's probably looping.
13690 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
13691 Also, the new yacc.c generates two fewer diagnostics for an
13692 existing test.
13693
d0829076
PE
136942003-05-24 Paul Eggert <eggert@twinsun.com>
13695
c6ae27df
PE
13696 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
13697 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
13698 This fixes a problem reported by John Bowman when the Compaq/HP
13699 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
13700 -ansi -Wall -gall).
13701 * data/yacc.c (union yyalloc): Likewise.
13702 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 13703
d0829076
PE
13704 Switch from 'int' to 'bool' where that makes sense.
13705
13706 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
13707 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
13708 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
13709 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
13710 Return or accept bool, not int. All callers changed.
13711 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
13712 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
13713 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
13714 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
13715 bitset_or_and_cmp_): Likewise.
13716 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
13717 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
13718 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
13719 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
13720 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
13721 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
13722 bitset_stats_or_and_cmp): Likewise.
13723 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
13724 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
13725 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
13726 ebitset_xor_cmp): Likewise.
13727 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
13728 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
13729 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
13730 lbitset_xor_cmp): Likewise.
13731 * lib/bbitset.h: Include <stdbool.h>.
13732 (struct bitset_vtable): The following members now return bool, not
13733 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
13734 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
13735 or_and_cmp).
13736 * src/conflicts.c (count_rr_conflicts): Likewise.
13737 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
13738 All uses changed.
13739 * lib/ebitset.c (ebitset_obstack_init): Likewise.
13740 * lib/lbitset.c (lbitset_obstack_init): Likewise.
13741 * src/getargs.c (debug_flag, defines_flag, locations_flag,
13742 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
13743 graph_flag): Likewise.
13744 * src/getargs.h (debug_flag, defines_flag, locations_flag,
13745 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
13746 graph_flag): Likewise.
13747 * src/output.c (error_verbose): Likewise.
13748 * src/output.h (error_verbose): Likewise.
13749 * src/reader.c (start_flag, typed): Likewise.
13750 * src/reader.h (typed): Likewise.
13751 * src/getargs.c (LOCATIONS_OPTION): New constant.
13752 (long_options, getargs): Use it.
13753 * src/lalr.c (build_relations): Use bool, not int.
13754 * src/nullable.c (nullable_compute): Likewise.
13755 * src/print.c (print_reductions): Likewise.
13756 * src/tables.c (action_row, pack_vector): Likewise.
13757 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
13758 * src/output.c (prepare): Use it.
13759 * src/output.c (token_definitions_output,
13760 symbol_destructors_output, symbol_destructors_output): Use string,
13761 not boolean integer, to keep track of whether to output separator.
13762 * src/print_graph.c (print_core): Likewise.
13763 * src/state.c (state_rule_lookaheads_print): Likewise.
13764
13765 * config/install-sh: Sync from automake 1.7.5.
13766
6b2584b7
PE
137672003-05-14 Paul Eggert <eggert@twinsun.com>
13768
13769 * src/parse-gram.y (rules_or_grammar_declaration): Require a
13770 semicolon after a grammar declaration, in the interest of possible
13771 future changes to the Bison input language.
13772 Do not allow a stray semicolon at the start of the grammar.
13773 (rhses.1): Allow one or more semicolons after any rule, including
13774 just before "|" as required by POSIX.
13775 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
13776 grammar.
13777
caf37a36
ADL
137782003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
13779
13780 %parse-param support for lalr1.cc.
13781
13782 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
13783 b4_cc_constructor_calls, b4_cc_constructor_call,
13784 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
13785 definitions.
13786 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
13787 parse-param arguments.
13788 (yy::b4_parser_class_name): Declare instance variables to
13789 hold parse-param arguments.
13790 * tests/calc.at: s/value/semantic_value/ because value clashes
13791 with a member of yy::b4_parser_class_name. Adjust C++ code
13792 to handle %parse-param. Enable %parse-param test in C++.
13793
3ab37077
PE
137942003-05-12 Paul Eggert <eggert@twinsun.com>
13795
13796 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
13797 English a bit. Fix fclose typo. Change "const char" to "char
13798 const", and use ANSI C rather than K&R for "main". Suggest
13799 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
13800 and suggest yy_switch_to_buffer.
13801
138022003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
13803
13804 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
13805 C89. This avoids a diagnostic on compilers that define __STDC__
13806 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 13807 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 13808
e743727f
PE
138092003-05-03 Paul Eggert <eggert@twinsun.com>
13810
13811 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
13812 Do not overrun array bounds.
13813 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 13814 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 13815
916708d5
AD
138162003-04-29 Akim Demaille <akim@epita.fr>
13817
13818 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
13819 * src/getargs.c, src/getargs.h: here, as bool, not int.
13820 (nondeterministic_parser): New.
13821 * src/parse-gram.y, src/scan-gram.l: Support
13822 %nondeterministic-parser.
13823 * src/output.c (prepare): Use nondeterministic_parser instead
13824 of glr_parser where appropriate.
13825 * src/tables.c (conflict_row, action_row, save_row)
13826 (token_actions, token_actions, pack_vector): Ditto.
13827
a06ea4aa
AD
138282003-04-29 Akim Demaille <akim@epita.fr>
13829
13830 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
13831
211074ca
AD
138322003-04-29 Akim Demaille <akim@epita.fr>
13833
13834 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
13835 with %pure-parser and %locations to exercise the patch from Yakov
13836 Markovitch below.
13837
6175ffe3
PE
138382003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
13839
13840 * data/yacc.c: (b4_lex_param): Corrected for the case where
13841 %lex-param is provided and %pure-parser isn't.
13842
b1e95857
PE
138432003-04-27 Paul Eggert <eggert@twinsun.com>
13844
13845 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 13846 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
13847 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
13848 if it is not defined.
13849 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
13850
acda9df6
PE
138512003-04-26 Paul Eggert <eggert@twinsun.com>
13852
3470c57b
PE
13853 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
13854 Declare to be of type suitable for the ninf value itself, not of
13855 type suitable for the corresponding table, since the latter might
13856 be unsigned but the ninf value might be negative. This fixes a
13857 bug reported by Alexandre Duret-Lutz in
161a71f3 13858 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 13859
acda9df6
PE
13860 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
13861 invokes it. We shouldn't invoke it twice because it will attempt
13862 to put error.o in the archive twice. This fixes a glitch reported
13863 by Martin Mokrejs in
161a71f3 13864 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 13865
b5250f26
PE
138662003-04-21 Paul Eggert <eggert@twinsun.com>
13867
13868 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
13869 to gnulib.
13870
089ac0f1
PE
138712003-04-21 Yakov Markovitch <Markovitch@iso.ru>
13872
13873 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
13874 Fix obvious typo that results in uncompilable GLR parsers
13875 when both %pure-parser and %locations are used. (trivial change)
13876
5ededac6
PE
138772003-04-17 Paul Eggert <eggert@twinsun.com>
13878
1b8f2fff
PE
13879 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
13880 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
13881 Do not insert the expected token via unput, as this runs afoul
13882 of a POSIX-compatibility bug in flex 2.5.31.
13883 All uses changed to BEGIN the parent state,
13884 since we no longer insert the expected token via unput.
13885 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
13886 that is no longer emitted after the above change.
13887
5ededac6
PE
13888 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
13889 the first one. This change is from Paul Hilfinger, and it fixes
13890 regression reported by Werner Lemberg in
161a71f3 13891 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
13892
13893 (resolve_sr_conflict): Don't invoke state_errs_set
13894 unless one or more tokens have been explicitly made errors.
13895 Otherwise, the above change causes Bison to abort.
13896
13897 * tests/existing.at (GNU pic Grammar): New test case, taken from
13898 Lemberg's email.
13899
b8be9132
AD
139002003-03-31 Akim Demaille <akim@epita.fr>
13901
13902 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
13903
d423d460
AD
139042003-03-31 Akim Demaille <akim@epita.fr>
13905
13906 * src/output.c (prepare_symbols): Avoid trailing spaces in the
13907 output.
13908
c7e441b4
AD
139092003-03-31 Akim Demaille <akim@epita.fr>
13910
13911 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
13912 From Paul Hilfinger.
13913
231897ad
AD
139142003-03-29 Akim Demaille <akim@epita.fr>
13915
13916 * m4/error.m4: Do not put under dynamic conditions some code which
13917 expansion is under static control.
13918
5b066063
AD
139192003-03-29 Akim Demaille <akim@epita.fr>
13920
13921 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
13922
22a74fec
AD
139232003-03-29 Akim Demaille <akim@epita.fr>
13924
13925 * doc/bison.texinfo (Strings are Destroyed): New.
13926
0eee27e7
PE
139272003-03-13 Paul Eggert <eggert@twinsun.com>
13928
13929 * .cvsignore: Add configure.lineno.
13930 * src/.cvsignore: Add yacc.
13931 * tests/.cvsignore: Add testsuite.log.
13932 * doc/fdl.texi: Sync with latest FSF version.
13933
f61aad93
PE
139342003-03-12 Paul Eggert <eggert@twinsun.com>
13935
537636c7
PE
13936 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
13937 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
13938 cursor, instead of leaving it undefined. This fixes a bug
13939 reported by Tim Van Holder in
161a71f3 13940 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
13941 * tests/input.at (Torturing the Scanner): Test the scanner on
13942 an empty input file, which was Tim Van Holder's test case.
13943
13944 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
13945 <sys/resource.h> can be included, include sys/time.h and
13946 sys/times.h first, if available. This works around the SunOS
13947 4.1.4 porting bug reported by Bruce Becker in
161a71f3 13948 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
13949
13950 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
13951 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
13952 AC_HEADER_SYS_WAIT.
13953
f61aad93
PE
13954 Merge changes from gnulib. This was prompted because the CVS
13955 snapshot didn't build on Solaris 7 due to strnlen problems.
13956
13957 These changes need to be merged back into gnulib:
13958 * lib/hash.c: Include <stdbool.h> unconditionally.
13959 * m4/onceonly.m4 (m4_quote): New macro.
13960 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
13961 Quote AC_FOREACH variable-expansions properly.
13962 The 2003-01-03 obstack.h change also needs merging.
13963 {end of changes requiring merging}
5b066063 13964
f61aad93
PE
13965 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13966 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
13967 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
13968 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
13969 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
13970 New files, imported from gnulib.
13971 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
13972 above.
13973
13974 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
13975 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
13976 gnulib sources.
13977
13978 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
13979 Add.
13980 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
13981 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
13982 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
13983 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
13984 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
13985 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
13986 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
13987 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
13988 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
13989 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
13990 (jm_PREREQ_ARGMATCH): Remove.
13991 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
13992 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
13993
13994 * src/system.h: Include <stdbool.h> unconditionally.
13995
13996 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
13997 assuming at least C89 in the bitset code for some time now.
13998
d2ffe116
AD
139992003-03-03 Akim Demaille <akim@epita.fr>
14000
14001 * ro.po: New.
14002
052826fd
AD
140032003-03-02 Akim Demaille <akim@epita.fr>
14004
14005 * doc/bison.texinfo (Table of Symbols): Reactivate the
14006 documentation for %lex-param, and %parse-param.
14007
c4749565
AD
140082003-03-02 Akim Demaille <akim@epita.fr>
14009
14010 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
14011 generate verbose error messages.
14012 Use the number of tokens as an upper bound in yytname, as it
14013 cannot be a non terminal.
14014
d5286af1
AD
140152003-03-02 Akim Demaille <akim@epita.fr>
14016
14017 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
14018 message.
14019
22e304a6
AD
140202003-03-02 Akim Demaille <akim@epita.fr>
14021
22e304a6
AD
14022 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
14023 Use them to exercise yycheck overrun.
14024 Based on Andrew Suffield's grammar.
14025
67a25fed
AD
140262003-03-02 Akim Demaille <akim@epita.fr>
14027
14028 Create tests/local.at for Bison generic testing macros.
14029
14030 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
14031 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
14032 This new file.
14033 * tests/calc.at (AT_CHECK_CALC): Adjust.
14034 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
14035 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
14036 * tests/local.at: here.
14037 (AT_COMPILE_CXX): Tags the tests using it as c++.
14038 Ignore the test if CXX is not functional.
14039
9c2b381f
PE
140402003-03-01 Paul Eggert <eggert@twinsun.com>
14041
14042 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
14043 not loc->end, since loc->end might contain garbage and this leads
14044 to undefined behavior on some platforms.
14045 (id_loc, token_start): Use (IF_LINTed) initial values that do not
14046 depend on *loc, so that the reader doesn't give the the false
14047 impression that *loc is initialized.
14048 (<INITIAL>"%%"): Do not bother setting code_start, since its value
14049 does not survive the return.
14050
0433ba88
AD
140512003-03-01 Akim Demaille <akim@epita.fr>
14052
14053 * src/scan-gram.l (code_start): Always initialize it when entering
14054 into yylex, as SC_EPILOGUE is activated *before* the corresponding
14055 yylex invocation. An alternative would be making it static, but
14056 then it starts with the second %%'s beginning, instead of its end.
14057
b305ea69
PE
140582003-02-28 Paul Eggert <eggert@twinsun.com>
14059
14060 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
14061 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 14062 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 14063
c3d25e01
PE
140642003-02-26 Paul Eggert <eggert@twinsun.com>
14065
14066 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
14067 Remove Sequent/Pyramid discussion (nobody uses them any more).
14068 Merge VMS and MS-DOS discussion; these ports may well be dead
14069 but let's keep mentioning them for now. Put <> around email
14070 addresses. Add copyright notice.
14071
c267ffbc
PE
140722003-02-24 Paul Eggert <eggert@twinsun.com>
14073
14074 * data/glr.c (yy_reduce_print): yylineno -> yylno,
14075 to avoid collision with flex use of yylineno.
14076 Problem reported by Bruce Lilly in
161a71f3 14077 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
14078 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
14079 * data/yacc.c (yy_reduce_print): Likewise.
14080
14081 * config/depcomp: Sync with Automake 1.7.3.
14082
f939fc12
AD
140832003-02-21 Akim Demaille <akim@epita.fr>
14084
14085 * data/lalr1.cc: Use temporary variables instead of casts to
14086 change integer types.
14087 Suggested by Paul Eggert.
14088
95923bd6
AD
140892003-02-21 Akim Demaille <akim@epita.fr>
14090
14091 * doc/bison.texinfo: Use "location" consistently to refer to @n,
14092 to avoid confusions with lalr1.cc's notion of Position.
14093 Suggested by Paul Eggert.
14094
2cdc240e
AD
140952003-02-20 Akim Demaille <akim@epita.fr>
14096
14097 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
14098 before initial_columns.
14099 (location.hh): Use consistent variable names when defining the
14100 operator<<.
14101 Use "last" so that we subtract from Positions, not from unsigned.
14102
5d003116
AD
141032003-02-20 Akim Demaille <akim@epita.fr>
14104
14105 * data/lalr1.cc (position.hh): New subfile, including the extended
14106 and Doxygen'ed documentation of class Position.
14107 (location.hh): Use it.
14108 Document a` la Doxygen.
ba1ecc07 14109 With the help of Benoit Perrot.
5d003116 14110
d02b25f9
AD
141112003-02-20 Akim Demaille <akim@epita.fr>
14112
14113 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
14114 AT_YACC_IF.
14115 Redefine AT_YYERROR_SEES_LOC_IF using it.
14116 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
14117 not defined.
14118 Don't use the location in yy::Parser::error_ and
14119 yy::Parser::print_ when not %locations.
14120 Activate more lalr1.cc tests.
14121
0d1c3a04
AD
141222003-02-19 Akim Demaille <akim@epita.fr>
14123
14124 * data/lalr1.cc: When displaying a line number, be sure to make it
14125 an int.
14126
60a777aa
AD
141272003-02-19 Akim Demaille <akim@epita.fr>
14128
14129 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
14130 Remove, useless.
14131 (YYABORT, YYACCEPT, YYERROR): New.
14132 * tests/calc.at: Renable the lalr1.cc test.
14133
0b86fc41
AD
141342003-02-19 Akim Demaille <akim@epita.fr>
14135
14136 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
14137 error recovery, mixing with/without pops and discarding of the
14138 lookahead.
14139 Exercise YYERROR.
14140 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
14141
da99a5dc
PE
141422003-02-17 Paul Eggert <eggert@twinsun.com>
14143
14144 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
14145 * tests/testsuite.at (AT_COMPILE): Use them.
14146 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 14147 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 14148
93b8c255
PE
141492003-02-12 Paul Eggert <eggert@twinsun.com>
14150
14151 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
14152 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 14153 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
14154 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
14155 Check for malloc failure, for consistency with yacc.c.
14156 (yytname_size): Remove, for consistency with yacc.c.
14157
14158 The bug still remains in data/lalr1.cc, as I didn't have time
14159 to fix it there.
14160
7548fed2
AD
141612003-02-06 Akim Demaille <akim@epita.fr>
14162
14163 * configure.ac (GXX): Rename as...
14164 (CXX): this, to keep the original Autoconf semantics.
14165 Require 2.57.
14166 * data/lalr1.cc: Fix b4_copyright invocations.
14167 If YYDEBUG is not defined, don't depend upon name_ being defined.
14168 (location.hh): Include string and iostream.
14169 (Position::filename): New member.
14170 (Position::Position ()): New.
14171 (operator<< (Position)): New.
14172 (operator- (Position, int)): New.
14173 (Location::first, Location::last): Rename as...
14174 (Location::begin, Location::end): these, to mock the conventional
14175 iterator names.
14176 (operator<< (Location)): New.
14177 * tests/atlocal.in (CXX): New.
14178 * tests/testsuite.at (AT_COMPILE_CXX): New.
14179 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
14180 locations in a more synthetic way.
14181 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
14182 lalr1.cc is used.
14183 Adjust the C locations to match those from Emacs: first column is
14184 column 0.
14185 Change all the expected results.
14186 Conform to the GCS: simplify the locations when applicable.
14187 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
14188 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
14189 these CPP macros with the m4 macros new defined by...
14190 (AT_CHECK_PUSHDEFS): this, i.e.:
14191 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 14192 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
14193 New macros.
14194 (AT_CHECK_POPDEFS): Undefine them.
14195 (AT_CHECK_CALC_LALR1_CC): New.
14196 Use it for the first lalr1.cc test.
14197
43a176ef
AD
141982003-02-04 Akim Demaille <akim@epita.fr>
14199
14200 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
14201 Location as is defined.
14202
fc049e9c
AD
142032003-02-04 Akim Demaille <akim@epita.fr>
14204
14205 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
14206 name_ being defined.
14207
a737b216
PE
142082003-02-03 Paul Eggert <eggert@twinsun.com>
14209
14210 * src/gram.h (start_symbol): Remove unused decl.
14211
14212 Use more-consistent naming conventions for local vars.
14213
14214 * src/derives.c (derives_compute): Change type of local var from
14215 int to rule_number.
14216 * src/gram.c (grammar_rules_partial_print): Likewise.
14217 * src/print.c (print_core): Likewise.
14218 * src/reduce.c (reduce_grammar_tables): Likewise.
14219
14220 * src/gram.c (grammar_dump): Change name of item_number *
14221 local var from r to rp.
14222 * src/nullable.c (nullable_compute): Likewise.
14223
14224 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
14225
14226 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
14227 for symbol or symbol_number var.
14228 * src/reader.c (grammar_start_symbol_set): Likewise.
14229 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
14230 Likewise.
14231 * src/state.c (transitions_to): Likewise.
14232 * src/state.h: Likewise.
14233 * src/tables.c (symbol_number_to_vector_number): Likewise.
14234
14235 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
14236 char * var.
14237
14238 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
14239 var.
14240
14241 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
14242 var.
14243
14244 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
14245 Use str, not s, for char * var. Use ch, not c, for character var.
14246 Use size for size var.
14247
14248 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
14249 char * var.
14250 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
14251 uniqstr var.
14252 * src/uniqstr.h: Likewise.
14253
14254 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14255 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14256 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
14257 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
14258 param to have same name as that of enum, so that we don't use
14259 "s" to stand for a non-state.
14260
68e93ad5
AD
142612003-02-02 Akim Demaille <akim@epita.fr>
14262
14263 * src/scan-skel.l: Scan more than one inert character per yylex
14264 invocation.
14265
92898986
PE
142662003-02-01 Paul Eggert <eggert@twinsun.com>
14267
14268 Version 1.875a.
14269
1d9d5d71
PE
14270 * po/LINGUAS: Add ms.
14271
0435d061
AD
142722003-01-30 Akim Demaille <akim@epita.fr>
14273
14274 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
14275
6029a57f
PH
142762003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14277
14278 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
14279 of $1.
0435d061
AD
14280
14281 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 14282 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 14283 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 14284
6029a57f
PH
14285 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
14286 (b4_rhs_location): Ditto.
0435d061 14287 (yyfill): New function to copy from stack tree into array
6029a57f 14288 incrementally.
0435d061
AD
14289 (yyuserAction): Modify to allow incremental move of semantic values
14290 to rhs array when in GLR mode.
14291 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
14292 as needed.
14293 Remove dummy use of yystack, as there is now a guaranteed use.
14294 (yydoAction): Modify to allow incremental move of semantic values
14295 to rhs array when in GLR mode.
14296 (yyresolveAction): Ditto.
14297 (yyglrShiftDefer): Update comment.
0435d061 14298 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
14299 (yyglrReduce): Ditto.
14300 (yydoAction): Ditto
0435d061 14301
6029a57f
PH
14302 * tests/glr-regr1.at: Rename to ...
14303 * tests/glr-regression.at: Add new regression test for the problems
14304 described above (adapted from S. Eken).
14305 Update copyright notice.
14306 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
14307 * tests/Makefile.am: Ditto.
14308
6cee6297
PE
143092003-01-28 Paul Eggert <eggert@twinsun.com>
14310
14311 * data/lalr1.cc: Do not use @output_header_name@ unless
14312 b4_defines_flag is set. This fixes two bugs reported by
14313 Tim Van Holder in
161a71f3
PE
14314 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
14315 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 14316
b2a836b5
PE
143172003-01-21 Paul Eggert <eggert@twinsun.com>
14318
14319 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
14320 we don't need to worry about yyerrlab1 being reported as an
14321 "unused label" by non-GCC C compilers. The downside is that if
14322 locations are used then a couple of statements are duplicated each
14323 time YYERROR is invoked, but the upside is that the warnings
14324 should vanish.
14325 (yyerrlab1): Move code to YERROR.
14326 (yyerrlab2): Remove. Change uses back to yyerrlab1.
14327 This reverts some of the 2002-12-27 change.
14328
4196b931
PE
143292003-01-17 Paul Eggert <eggert@twinsun.com>
14330
14331 * src/output.c (symbol_printers_output): Fix typo that led
14332 to core dump. Problem reported by Antonio Rus in
161a71f3 14333 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 14334
3ae831b4
AD
143352003-01-13 Akim Demaille <akim@epita.fr>,
14336 Quoc Peyrot <chojin@lrde.epita.fr>,
14337 Robert Anisko <anisko_r@lrde.epita.fr>
14338
14339 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
14340 when the stacks contain one element, as the loop would otherwise
14341 free the last state, and then use the top state (the one we just
14342 popped). This means that the initial elements will not be freed
14343 explicitly, as is the case in yacc.c; it is not a problem, as
14344 these elements have fake values.
14345
e3aa65c5
PE
143462003-01-11 Paul Eggert <eggert@twinsun.com>
14347
14348 * NEWS: %expect-violations are now just warnings, reverting
14349 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
14350 bootstrapping problem reported by Matthias Klose; see
161a71f3 14351 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
14352 * src/conflicts.c (conflicts_print): Likewise.
14353 * tests/conflicts.at (%expect not enough, %expect too much,
14354 %expect with reduce conflicts): Likewise.
14355 * doc/bison.texinfo (Expect Decl): Document this. Also mention
14356 that the warning is enabled if the number of conflicts changes
14357 (not necessarily increases).
14358
14359 * src/getargs.c (version): Update copyright year.
14360
f0057011
AD
143612003-01-09 Akim Demaille <akim@epita.fr>
14362
14363 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
14364
1ee6d2a0
PE
143652003-01-08 Paul Eggert <eggert@twinsun.com>
14366
14367 * Makefile.maint (WGETFLAGS):
14368 New macro, containing "-C off" to disable proxy caches.
14369 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
14370 (rel-check): Use $(WGET) instead of wget.
14371
d4fd77c4
PE
143722003-01-06 Paul Eggert <eggert@twinsun.com>
14373
14374 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
14375 the GLR paper of Scott, Johnstone and Hussain.
14376
464c6927
PE
143772003-01-04 Paul Eggert <eggert@twinsun.com>
14378
d600ee67
PE
14379 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
14380 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
14381 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
14382 (EXTRA_LIBRARIES): New var, for liby.a.
14383 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
14384 (EXTRA_SCRIPTS): New var, for yacc.
14385
464c6927
PE
14386 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
14387 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
14388 Problem reported by Nelson H. F. Beebe.
14389
143902003-01-03 Paul Eggert <eggert@twinsun.com>
14391
14392 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
14393 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
14394 when compiling Bison 1.875's `bitset bset = obstack_alloc
14395 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
14396
14397 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
14398 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
14399 grow to a huge size with typical invocation.
d600ee67 14400
464c6927
PE
14401 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
14402 Use the pattern recommended by Autoconf 2.57, except also protect
14403 against double-definition.
14404 * src/system.h: Likewise.
14405 Portability issues reported by Nelson H. F. Beebe.
d600ee67 14406
464c6927
PE
14407 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
14408 All uses changed. Provide a definition in both C and C++.
14409 (yytrue, yyfalse): Define even if defined (__cplusplus).
14410
14411 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
14412 Reported by Nelson H. F. Beebe.
d600ee67 14413
464c6927
PE
14414 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
14415
0f42c7d5
PE
144162003-01-02 Paul Eggert <eggert@twinsun.com>
14417
14418 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
14419 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
14420 Bug reported by Nelson H. F. Beebe.
14421
dc546b0f
PE
144222003-01-01 Paul Eggert <eggert@twinsun.com>
14423
14424 * Version 1.875.
14425
2c09b6a7
PE
144262002-12-30 Paul Eggert <eggert@twinsun.com>
14427
14428 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
14429 Moved here from...
14430 (<INITIAL>","): Here. This causes stray "," to be treated
14431 more uniformly.
14432
dc546b0f 14433 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
14434 last brace in braced code when not in Yacc mode, for compatibility
14435 with Bison 1.35. This resurrects the 2001-12-15 patch to
14436 src/reader.c.
14437
14438 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
14439 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
14440
535c0f63
PE
144412002-12-28 Paul Eggert <eggert@twinsun.com>
14442
14443 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
14444 that of SYM's type. This fixes Debian bug 168069, reported by
14445 Thomas Olsson.
d600ee67 14446
963fcc17
PE
144472002-12-28 Paul Eggert <eggert@twinsun.com>
14448
14449 Version 1.75f.
14450
14451 Switch back to the Yacc style of conflict reports, undoing some
14452 of the 2002-07-30 change.
14453 * doc/bison.texinfo (Understanding): Use Yacc style for
14454 conflict reports. Also, use new way of locating rules.
14455 * src/conflicts.c (conflict_report):
14456 Renamed from conflict_report_yacc, removing the old
14457 'conflict_report'. Translate the entire conflict report at once,
14458 so that we don't assume that "," has the same interpretation in
14459 all languages.
14460 (conflicts_output): Use Yacc-style conflict report for each state,
14461 instead of our more-complicated style.
14462 (conflicts_print): Use Yacc-style conflict report, except print
14463 the input file name when not emulating Yacc.
14464 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
14465 Conflicted Reduction, %expect not enough, %expect too much,
14466 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
14467 * tests/existing.at (GNU Cim Grammar): Likewise.
14468 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
14469
14470 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
14471 fatal): Don't invoke fflush; it's not needed and it might even be
14472 harmful for stdout, as stdout might not be open.
14473 * src/reduce.c (reduce_print): Likewise.
14474
b1efe548
PE
144752002-12-27 Paul Eggert <eggert@twinsun.com>
14476
14477 Fix a bug where error locations were not being recorded correctly.
14478 This problem was originally reported by Paul Hilfinger in
161a71f3 14479 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
14480
14481 * data/yacc.c (yyparse): New local var yylerrsp, to record the
14482 top of the location stack's error locations.
14483 (yyerrlab): Set it. When discarding a token, push its location
14484 onto yylerrsp so that we don't lose track of the error's end.
14485 (yyerrlab1): Now is only the target of YYERROR, so that we can
14486 properly record the location of the action that failed. For GCC
14487 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
14488 GCC warning about yyerrlab1 being unused if YYERROR is unused.
14489 (yyerrlab2): New label, which yyerrlab now falls through to.
14490 Compute the error's location by applying YYLLOC_DEFAULT to
14491 the locations of all the symbols that went into the error.
14492 * doc/bison.texinfo (Location Default Action): Mention that
14493 YYLLOC_DEFAULT is also invoked for syntax errors.
14494 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
14495 Error locations include the locations of all the tokens that were
14496 discarded, not just the last token.
d600ee67 14497
983c5c2c
PE
144982002-12-26 Paul Eggert <eggert@twinsun.com>
14499
b1efe548
PE
14500 * src/files.c: Include quote.h.
14501 (compute_output_file_names): Warn if we detect conflicting
14502 outputs to the same file. This should catch the misunderstanding
14503 exemplified by Debian Bug 165349, reported by Bruce Stephens..
14504
14505 * src/conflicts.c (conflicts_print): If the user specifies
14506 "%expect N", report an error if there are any reduce/reduce
14507 conflicts. This is what the manual says should happen.
14508 This fixes Debian bug 130890, reported by Anthony DeRobertis.
14509 * tests/conflicts.at (%expect with reduce conflicts): New test.
14510
983c5c2c
PE
14511 Don't use m4_include on relative file names, as it doesn't work as
14512 desired if there happens to be a file with that name under ".".
d600ee67 14513
983c5c2c
PE
14514 * m4sugar/version.m4: Remove; it was included but it wasn't used.
14515 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
14516 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
14517 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
14518 * src/output.c (output_skeleton): Use full path names when
14519 specifying a file to include; don't rely on include path, as
14520 it's unreliable when the working file contains a file with
14521 that name.
d600ee67 14522
983c5c2c
PE
145232002-12-25 Paul Eggert <eggert@twinsun.com>
14524
14525 Remove obsolete references to bison.simple and bison.hairy.
14526 Problem mentioned by Aubin Mahe in
161a71f3 14527 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
14528 * data/glr.c: Comment fix.
14529 * doc/bison.1: Remove references. Also, mention "yacc".
14530
14531 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
14532 with -g option.
14533
14534 * src/parse-gram.y (declaration): Use enum "report_states" rather
14535 than its numeric value 1.
14536
14537 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
14538 opening a new one. This fixes Debian bug 165349, reported by
14539 Bruce Stephens.
14540
23f2d9dc
PE
145412002-12-24 Paul Eggert <eggert@twinsun.com>
14542
14543 Version 1.75e.
14544
14545 * Makefile.maint (cvs-update): Don't assume that the shell
14546 supports $(...), as Solaris sh doesn't.
14547
14548 * src/parse-gram.y (lloc_default): Remove test for empty
14549 nonterminals at the end, since it didn't change the result.
14550
145512002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
14552
14553 If the user does not define YYSTYPE as a macro, Bison now declares it
14554 using typedef instead of defining it as a macro. POSIX requires this.
14555 For consistency, YYLTYPE is also declared instead of defined.
14556
14557 %union directives can now have a tag before the `{', e.g., the
14558 directive `%union foo {...}' now generates the C code
14559 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
14560 The default union tag is `YYSTYPE', for compatibility with Solaris 9
14561 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
14562 instead of `yyltype'.
14563
14564 `yystype' and `yyltype' are now obsolescent macros instead of being
14565 typedefs or tags; they are no longer documented and will be
14566 withdrawn in a future release.
14567
14568 * data/glr.c (b4_location_type): Remove.
14569 (YYSTYPE): Renamed from yystype.
14570 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
14571 (struct YYLTYPE): Renamed from struct yyltype.
14572 (YYLTYPE): Renamed from yyltype.
14573 (yyltype, yystype): New (and obsolescent) macros,
14574 for backward compatibility.
14575 * data/yacc.c: Likewise.
14576
14577 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
14578 does not specify a union tag. This is for compatibility with
14579 Solaris 9 yacc.
14580
14581 * src/parse-gram.y (add_param): 2nd arg is now char * not char
14582 const *, since it is now modified by stripping surrounding { }.
14583 (current_braced_code): Remove.
14584 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
14585 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
14586 trailing " {...}". Now of type <chars>.
14587 (grammar_declaration): Adjust to bundled tokens.
14588 (code_content): Remove; stripping is now done by add_param.
14589 (print_token_value): Print contents of bundled tokens.
14590 (token_name): New function.
14591
14592 * src/reader.h (braced_code, current_braced_code): Remove.
14593 (token_name): New decl.
14594
14595 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
14596 token_type, not braced_code code_kind. All uses changed.
14597 (SC_PRE_CODE): New state, for scanning after a keyword that
14598 has (or usually has) an immediately-following braced code.
14599 (token_type): New local var, to keep track of which token type
14600 to return when scanning braced code.
14601 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 14602 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
14603 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
14604 instead of returning a token type immediately.
14605 (<INITIAL>"{"): Set token type.
14606 (<SC_BRACED_CODE>"}"): Use it.
14607 (handle_action_dollar, handle_action_at): Now returns bool
14608 indicating success. Fail if ! current_rule; this prevents a core dump.
14609 (handle_symbol_code_dollar, handle_symbol_code_at):
14610 Remove; merge body into caller.
14611 (handle_dollar, handle_at): Complain in invalid contexts.
14612
14613 * NEWS, doc/bison.texinfo: Document the above.
14614 * NEWS: Fix years and program names in copyright notice.
14615
879ca4f8
PE
146162002-12-17 Paul Eggert <eggert@twinsun.com>
14617
14618 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
14619 Reporting, Table of Symbols): Omit mentions of %lex-param and
14620 %parse-param from the documentation for now.
14621
1c5fe69d
PE
146222002-12-15 Paul Eggert <eggert@twinsun.com>
14623
14624 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
14625 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
14626 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
14627 disagreed with the Bison documentation. Bug
14628 reported by Andrew Walrond.
d600ee67 14629
1c5fe69d
PE
14630 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
14631 as the caller now does that.
14632 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
14633 (YYEMPTY): Parenthesize right hand side, since others use it.
14634 (yyparse): Don't assume that our generated code is the only code
14635 that sets yychar.
14636
d1de5372
PE
146372002-12-13 Paul Eggert <eggert@twinsun.com>
14638
14639 Version 1.75d.
14640
14641 POSIX requires a "yacc" command.
14642 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
14643 (MOSTLYCLEANFILES): Add yacc.
14644 (yacc): New rule.
1c5fe69d 14645 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
14646 as an alias for bison y.
14647
14648 * po/LINGUAS: Add da.
d600ee67 14649
d1de5372
PE
14650 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
14651 problem with latest <getopt.h>.
14652 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
14653
14654 * doc/fdl.texi: Upgrade to 1.2.
14655 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
14656 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
14657 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
14658 gnulib.
14659 * config/install-sh: Sync with autotools.
14660
14661 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 14662 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
14663 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
14664 locations are requested.
14665 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
14666 locations are requested.
14667
d0f3fe23
PE
146682002-12-12 Paul Eggert <eggert@twinsun.com>
14669
14670 Remove unportable casts and storage allocation tricks.
14671 While we're at it, remove almost all casts, since they
14672 usually aren't needed and are a sign of trouble.
14673
14674 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
14675
14676 * src/derives.c (derives_compute): Do not subtract NTOKENS from
14677 the pointer DSET returned by malloc; this isn't portable.
14678 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
14679 Similarly for DERIVES.
14680 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
14681 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
14682 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
14683
14684 * src/derives.c (derives_compute): Do not bother invoking
14685 int_of_rule_number, since rule numbers are integers.
14686
14687 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
14688 rather than XMALLOC (char, N).
14689
14690 * src/files.c (filename_split): Rewrite to avoid cast.
14691
14692 * src/gram.h (symbol_number_as_item_number,
14693 item_number_as_symbol_number, rule_number_as_item_number,
14694 item_number_as_rule_number):
14695 Now inline functions rather than macros, to avoid casts.
14696 * src/state.h (state_number_as_int): Likewise.
14697 * src/tables.c (state_number_to_vector_number,
14698 symbol_number_to_vector_number): Likewise.
14699
14700 * src/gram.h (int_of_rule_number): Remove; no longer used.
14701
14702 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
14703 since the resulting storage is always stored into.
14704
14705 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
14706 where it's needed.
14707
14708 * src/muscle_tab.c (muscle_m4_output):
14709 Now inline. Return bool, not int.
14710 * src/state.c (state_compare): Likewise.
14711 * src/symtab.c (symbol_check_defined,
14712 symbol_check_alias_consistency, symbol_pack, symbol_translation,
14713 hash_compare_symbol, hash_symbol):
14714 Likewise.
14715 * src/uniqstr.c (uniqstr_print): Likewise.
14716 * src/muscle_tab.c (muscle_m4_output_processor):
14717 New function, to avoid casts.
14718 * src/state.c (state_comparator, stage_hasher): Likewise.
14719 * src/symtab.c (symbol_check_defined_processor,
14720 symbol_check_alias_consistency_processor, symbol_pack_processor,
14721 symbol_translation_processor, hash_symbol_comparator,
14722 hash_symbol_hasher): Likewise.
14723 * src/uniqstr.c (uniqstr_print_processor): Likewise.
14724 * src/muscle_tab.c (muscles_m4_output):
14725 Use new functions instead of casting old functions unportably.
14726 * src/state.c (state_hash_new): Likewise.
14727 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
14728 symbols_token_translations_init):
14729 Likewise.
14730 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
14731
14732 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
14733 var instead of casting to long, to avoid casts.
14734 (prepare_states): Use MALLOC rather than alloca, so that we don't
14735 have to worry about alloca.
14736 * src/state.c (state_hash_lookup): Likewise.
14737
14738 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
14739 local var instead of casting to unsigned char, to avoid casts.
14740
14741 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
14742 STATE_ALLOC): Remove.
14743 (transitions_new, errs_new, reductions_new, state_new): Use malloc
14744 rather than calloc, and use offsetof to avoid allocating slightly
14745 too much storage.
14746 (state_new): Initialize all members.
14747
14748 * src/state.c (state_hash): Use unsigned accumulator, not signed.
14749
14750 * src/symtab.c (symbol_free): Remove; unused.
14751 (symbol_get): Remove cast in lhs of assignment.
14752 (symbols_do): Now static. Accept generic arguments, not
14753 hashing-related ones.
14754
14755 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
14756 (symbol_processor): Remove.
14757 (symbols_do): Remove decl; now static.
14758
14759 * src/system.h (alloca): Remove; decl no longer needed.
14760 (<stddef.h>): Include, for offsetof.
14761 (<inttypes.>, <stdint.h>): Include if available.
14762 (uintptr_t): New type, if system lacks it.
14763 (CALLOC, MALLOC, REALLOC): New macros.
14764 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
14765 new macros.
14766
14767 * src/tables.c (table_size): Now int, to pacify GCC.
14768 (table_grow, table_ninf_remap): Use signed table size.
14769 (save_row): Don't bother initializing locals when not needed.
14770 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
14771 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
14772
14773 * src/vcg.h: Correct misspellings.
14774
14775 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
14776
14777
14778 * src/getargs.c (getargs): Don't assume EOF == -1.
14779
26b4a969
PE
147802002-12-09 Paul Eggert <eggert@twinsun.com>
14781
14782 Change identifier spellings to avoid collisions with names
14783 that are reserved by POSIX.
14784
14785 Don't use names ending in _t, since POSIX reserves them.
14786 For consistency, remove _e and _s endings -- they're weren't
14787 needed to remove ambiguity. All uses changed.
14788 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
14789 turn was just renamed from struniq_t.
14790 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
14791 which in turn was just renamed from struniq_processor_t.
14792 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
14793 in turn was renamed from hash_compare_struniq_t.
14794 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
14795 (state_list): Renamed from state_list_t.
14796 * src/assoc.h (assoc): Renamed from assoc_t.
14797 * src/conflicts.c (enum conflict_resolution): Renamed from
14798 enum conflict_resolution_e.
14799 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
14800 (rule_list): Renamed from rule_list_t.
14801 * src/getargs.h (enum trace): Renamed from enum trace_e.
14802 (enum report): Renamed from enum report_e.
14803 * src/gram.h (item_number): Renamed from item_number_t.
14804 (rule_number): Renamed from rule_number_t.
14805 (struct rule_s): Remove the "rule_s" part; not used.
14806 (rule): Renamed from rule_t.
14807 (rule_filter): Renamed from rule_filter_t.
14808 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
14809 (goto_list): Renamed from goto_list_t.
14810 * src/lalr.h (goto_number): Renamed from goto_number_t.
14811 * src/location.h (location): Renamed from location_t.
14812 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
14813 and moved here from:
14814 * src/muscle_tab.h (muscle_entry_t): here.
14815 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
14816 (rule_list): Renamed from rule_list_t.
14817 * src/print_graph.c (static_graph): Renamed from graph.
14818 * src/reader.h (braced_code): Renamed from braced_code_t.
14819 Remove brace_code_e tag.
14820 * src/relation.h (relation_node): Renamed from relation_node_t.
14821 (relation_nodes): Renamed from relation_nodes_t.
14822 (relation): Renamed from relation_t.
14823 * src/state.h (state_number): Renamed from state_number_t.
14824 (struct state): Renamed from struct state_s.
14825 (state): Renamed from state_t.
14826 (transitions): Renamed from transitions_t. Unused (and
14827 misspelled) transtion_s tag removed.
14828 (errs): Renamed from errs_t. Unused errs_s tag removed.
14829 (reductions): Renamed from reductions_t. Unused tag
14830 reductions_s removed.
14831 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
14832 (struct symbol_list): Renamed from struct symbol_list_s.
14833 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
14834 (struct symbol): Renamed from struct symbol_s.
14835 (symbol): Renamed from symbol_t.
14836 * src/tables.c (vector_number): Renamed from vector_number_t.
14837 (action_number): Renamed from action_t.
14838 * src/tables.h (base_number): Renamed from base_t.
14839 * src/vcg.h (enum color): Renamed from enum color_e.
14840 (enum textmode): Renamed from enum textmode_e.
14841 (enum shape): Renamed from enum shape_e.
14842 (struct colorentry): Renamed from struct colorentry_s.
14843 (struct classname): Renamed from struct classname_s.
14844 (struct infoname): Renamed from struct infoname_s.
14845 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
14846 (enum decision): Renamed from enum decision_e.
14847 (enum orientation): Renamed from enum orientation_e.
14848 (enum alignment): Renamed from enum alignment_e.
14849 (enum arrow_mode): Renamed from enum arrow_mode_e.
14850 (enum crossing_type): Renamed from enum crossing_type_e.
14851 (enum view): Renamed from enum view_e.
14852 (struct node): Renamed from struct node_s.
14853 (node): Renamed from node_t.
14854 (enum linestyle): Renamed from enum linestyle_e.
14855 (enum arrowstyle): Renamed from enum arrowstyle_e.
14856 (struct edge): Renamed from struct edge.
14857 (edge): Renamed from edge_t.
14858 (struct graph): Renamed from struct graph_s.
14859 (graph): Renamed from graph_t.
14860 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
14861 Rename value_t -> value.
14862 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
14863 value_t_as_yystype -> value_as_yystype.
14864
14865 Don't include <errno.h> in the mainstream code, since it
14866 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
14867 * lib/get-errno.c, lib/get-errno.h: New files.
14868 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
14869 get-errno.c.
14870 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
14871 * src/output.c (output_skeleton): Likewise.
14872 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
14873 instead of errno.
14874 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
14875 Likewise.
14876 (handle_action_dollar, handle_action_at): Likewise.
14877 * src/system.h: Do not include <errno.h>.
14878 (TAB_EXT): Renamed from EXT_TAB.
14879 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
14880
14881 Avoid str[a-z]*, since <string.h> reserves that name space.
14882 Change all instances of "struniq" in names to "uniqstr", and
14883 likewise for "STRUNIQ" and "UNIQSTR".
14884 * src/uniqstr.c: Renamed from src/struniq.c.
14885 * src/uniqstr.h: Renamed from src/struniq.h.
14886 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
14887 * src/files.c (strsuffix): Remove; unused.
14888 (concat2): Renamed from stringappend. Now static.
14889 * src/files.h (strsuffix, stringappend): Remove; unused.
14890 * src/parse-gram.y (<chars>): Renamed from <string>.
14891 (<uniqstr>): Renamed from <struniq>.
14892 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
14893 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
14894 (struct graph_s.expand): Renamed from struct graph_s.stretch.
14895 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
14896 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
14897 (N_EXPAND): Renamed from N_STRETCH.
14898
14899 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
14900 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
14901 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
14902 Remove; unused.
14903 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
14904 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
14905 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
14906 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
14907 (BASE_MAXIMUM): Renamed from BASE_MAX.
14908 (BASE_MINIMUM): Renamed from BASE_MIN.
14909 (ACTION_MAX): Remove; unused.
14910 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
14911 Unnecessary casts removed from above defines.
14912
14913
14914 Fix misspelling in names.
14915 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
14916 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
14917 G_NODE_ALIGNEMENT.
14918
14919
14920 * lib/timevar.c (timevar_report): Renamed from time_report,
14921 for consistency with other names.
14922 * lib/timevar.h (timevar_report): New decl.
14923 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
14924
14925
14926 Sort include-file uses.
14927
14928 Reorder all include files under src to be in the order "system.h".
14929 then the ../lib include files in angle brackets (alphabetized),
14930 then the . include files in double-quotes (alphabetized). Fix
14931 dependency breakages encountered in this process, as follows:
14932 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
14933 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
14934 * src/state.h: Include "symtab.h".
14935
996b1c7e
PE
149362002-12-08 Paul Eggert <eggert@twinsun.com>
14937
14938 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
14939 since this causes problems when __file__ contains character
14940 sequences like "@" that are treated specially by src/scan-skel.l.
14941 Instead, just use the file's basename. This fixes the bug
14942 reported by Martin Mokrejs in
161a71f3 14943 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 14944
e19c4e5d
PE
149452002-12-06 Paul Eggert <eggert@twinsun.com>
14946
14947 Add support for rules that do not have trailing semicolons, as
14948 POSIX requires. Improve the quality of locations in Bison
14949 diagnostics.
26b4a969 14950
e19c4e5d
PE
14951 * src/location.c: Include <quotearg.h>.
14952 (empty_location): Now const.
14953 (location_print): New function. Follow the recommendation of the
14954 GNU Coding Standards for locations that span file boundaries.
14955 * src/location.h: Do not include <quotearg.h>; no longer needed.
14956 (boundary): New type.
14957 (location_t): Use it. This allows locations to span file boundaries.
14958 All member uses changed: file -> start.file or end.file (as needed),
14959 first_line -> start.line, first_column -> start.column,
14960 last_line -> end.line, last_column -> end.column.
14961 (equal_boundaries): New function.
14962 (LOCATION_RESET, LOCATION_STEP): Remove.
14963 (LOCATION_PRINT): Remove. All callers changed to use location_print.
14964 (empty_location): Now const.
14965 (location_print): New decl.
14966 * src/parse-gram.y (lloc_default): New function, which handles
14967 empty locations more accurately.
14968 (YYLLOC_DEFAULT): Use it.
14969 (%token COLON): Remove.
14970 (%token ID_COLON): New token.
26b4a969 14971 (rules): Use it.
e19c4e5d
PE
14972 (declarations, rules): Remove trailing semicolon.
14973 (declaration, rules_or_grammar_declaration):
14974 Allow empty (";") declaration.
14975 (symbol_def): Remove empty actions; no longer needed.
14976 (rules_or_grammar_declaration): Remove trailing semicolon.
14977 (semi_colon.opt): Remove.
14978 * src/reader.h: Include location.h.
14979 (scanner_cursor): New decl.
14980 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
14981 rolling our own.
14982 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
14983 of *loc.
14984 (STEP): Remove. No longer needed, now that adjust_location does
14985 the work. All uses removed.
14986 (scanner_cursor): New var.
14987 (adjust_location): Renamed from extend_location. It now sets
14988 *loc and adjusts the scanner cursor. All uses changed.
14989 Don't bother testing for CR.
14990 (handle_syncline): Remove location arg; now updates scanner cursor.
14991 All callers changed.
14992 (unexpected_end_of_file): Now accepts start boundary of token or
14993 comment, not location. All callers changed. Update scanner cursor,
14994 not the location.
14995 (SC_AFTER_IDENTIFIER): New state.
14996 (context_state): Renamed from c_context. All uses changed.
14997 (id_loc, code_start, token_start): New local vars.
14998 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
14999 processing of Yacc white space and equivalents here.
15000 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
15001 instead of returning ID immediately, since we need to search for
15002 a subsequent colon.
15003 (<INITIAL>"'", "\""): Save token_start.
15004 (<INITIAL>"%{", "{", "%%"): Save code_start.
15005 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
15006 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
15007 BEGIN context_state at end, not INITIAL.
15008 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
15009 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
15010 Return correct token start.
15011 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
15012 the start of a character, string or multiline comment is found.
15013 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
15014 Reduction): Adjust reported locations to match the more-precise
15015 results now expected.
15016 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
15017 * tests/reduce.at (Useless Rules, Reduced Automaton,
15018 Underivable Rules): Likewise.
15019 * tests/regression.at (Invalid inputs): No longer `expecting ";"
15020 or "|"' now that so many other tokens are allowed by the new grammar.
15021
15022 * src/complain.h (current_file): Remove duplicate decl;
15023 current_file is now owned by files.h.
15024 * src/complain.c, src/scan-gram.l: Include files.h.
15025
150262002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 15027
e19c4e5d
PE
15028 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
15029 promotes to int; it might be unsigned int.
15030 * data/yacc.c (yy_reduce_print): Likewise.
15031
15032 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
15033 be #defined in the prologue, not in the Bison declarations.
15034 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 15035
b64755e3
PE
150362002-12-02 Paul Eggert <eggert@twinsun.com>
15037
15038 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
15039 * lib/strtoul.c: New file, from gnulib.
15040 This fixes a porting bug reported by Peter Klein in
161a71f3 15041 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 15042
6e746484
PE
150432002-11-30 Paul Eggert <eggert@twinsun.com>
15044
b64755e3
PE
15045 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
15046 and put only a forward declaration in the prologue. This is for
15047 consistency with the other scanner helper functions.
15048
6ba55592
PE
15049 Type clashes now generate warnings, not errors, since it
15050 appears that POSIX may allow some grammars with type clashes.
15051 * src/reader.c (grammar_current_rule_check): Warn about
15052 type clashes instead of complaining.
15053 * tests/input.at (Type Clashes): Expect warnings, not complaints.
15054
6e746484
PE
15055 Add Yacc library, since POSIX requires it.
15056 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
15057 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
15058 * lib/main.c, lib/yyerror.c: New files.
15059
15060 gram_error can be static; it need not be extern.
15061 * src/reader.h (gram_error): Remove decl.
15062 * src/parse-gram.y (gram_error): Now static. Add static decl.
15063 (print_token_value): Omit parameter names from forward decl,
15064 for consistency.
15065
88510f9c
PE
150662002-11-29 Paul Eggert <eggert@twinsun.com>
15067
6e746484
PE
15068 * doc/bison.texinfo: Emphasize that yylex and yyerror must
15069 be declared before being used. E.g., one should typically
15070 declare them in the prologue. Use GNU coding style in examples.
15071 Put "const" consistently after the type it modifies. Mention
15072 that C99 supports "inline". Mention that yyerror traditionally
15073 returns "int".
15074
88510f9c
PE
15075 %parse-param and %lex-param now take just one argument, the
15076 declaration; the argument name is deduced from the declaration.
15077
15078 * doc/bison.texinfo (Parser Function, Pure Calling, Error
15079 Reporting, Table of Symbols): Document this.
15080 * src/parse-gram.y (add_param): New function.
15081 (COMMA): Remove.
15082 (declaration): Implement new rule for %parse-param and %lex-param.
15083 * src/scan-gram.l: "," now elicits a warning, rather than being
15084 a token; this is more compatible with byacc.
15085 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
15086
bb92250c
PE
150872002-11-27 Paul Eggert <eggert@twinsun.com>
15088
15089 Rename identifiers to avoid real and potential collisions.
15090
15091 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
15092 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 15093 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
15094 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
15095 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
15096 * src/parse-gram.y (print_token_value): Renamed from yyprint.
15097 All uses changed.
15098 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
15099 The name "yycontrol" violates the name space rules, and this stuff
15100 wasn't being used anyway.
15101 (input): Remove action; this stuff wasn't being used.
15102 (gram_error): Rename local variable yylloc -> loc.
15103 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
15104 (YY_DECL): Don't use "yy" at start of local variables.
15105 All uses changed, e.g., yylloc -> loc.
15106 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
15107 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
15108 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
15109 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
15110
15111 * src/parse-gram.y (gram_error): loc is now const *.
15112 * src/reader.h (gram_error): Likewise.
15113
3af4feb2
PE
151142002-11-24 Paul Eggert <eggert@twinsun.com>
15115
15116 Version 1.75c.
15117
15118 * tests/actions.at (Actions after errors): Use an output format
15119 more similar to that of the Printers and Destructors test.
15120 Test the position of the ';' token too.
15121 (Printers and Destructors): Likewise.
15122 (Printers and Destructors: %glr-parser): Remove for now, to avoid
15123 unnecessarily alarming people when the test fails.
15124
15125 * data/yacc.c (yyerrlab1): Move this label down, so that the
15126 parser does not discard the lookahead token if the user code
15127 invokes YYERROR. This change is required for POSIX conformance.
15128
15129 * lib/error.c: Sync with gnulib.
15130
151312002-11-22 Paul Eggert <eggert@twinsun.com>
15132
15133 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
15134 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
15135 * lib/xmalloc.c: Likewise.
26b4a969 15136
58004308
PE
151372002-11-20 Paul Eggert <eggert@twinsun.com>
15138
15139 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
15140
151412002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 15142
58004308
PE
15143 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
15144 should use `if (! x) abort ();' rather than `assert (x);', and
15145 anyway it's one less thing to worry about configuring.
15146
15147 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
15148 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
15149 and replace all instances of assert with abort.
15150 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
15151 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
15152
15153 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
15154 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
15155 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
15156 hash_find_entry, hash_rehash, hash_insert): Likewise.
15157 * src/conflicts.c (resolve_sr_conflict): Likewise.
15158 * src/lalr.c (set_goto_map, map_goto): Likewise.
15159 * src/nullable.c (nullable_compute): Likewise.
15160 * src/output.c (prepare_rules, token_definitions_output): Likewise.
15161 * src/reader.c (packgram, reader): Likewise.
15162 * src/state.c (state_new, state_free, state_transitions_set,
15163 state_reduction_find): Likewise.
15164 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
15165 symbol_pack): Likewise.
15166 * src/tables.c (conflict_row, pack_vector): Likewise.
15167 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
15168 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
15169 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
15170 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
15171
15172 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
15173 (ARGMATCH_CONSTRAINT): New macro.
15174 (ARGMATCH_ASSERT): Use it.
15175
15176 * src/system.h (verify): New macro.
15177 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
15178 rather than assert.
15179 * src/tables.c (tables_generate): Likewise.
15180
15181 * src/struniq.c (struniq_assert): Now returns void, and aborts
15182 if the assertion is false.
15183 (struniq_assert_p): Remove.
15184 * src/struniq.h: Likewise.
15185
76ae8198
PE
151862002-11-18 Paul Eggert <eggert@twinsun.com>
15187
15188 * data/glr.c (yygetLRActions): Replace `yyindex' with
15189 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
15190 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 15191 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 15192
d3c4e709
AD
151932002-11-18 Akim Demaille <akim@epita.fr>
15194
15195 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
15196 space.
15197 From Tim Van Holder.
15198
8d8a7238
PE
151992002-11-17 Paul Eggert <eggert@twinsun.com>
15200
15201 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
15202 to "SyntaxError" for consistency with my 2002-11-15 change.
15203
15204 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
15205 not define to {}, since this breaks the common use of `YYDPRINTF
15206 ((...));' if a single statement is desired (e.g. before `else').
15207 Work around GCC warnings by surrounding corresponding calls with
15208 {} if needed.
15209 (yyhasResolvedValue): Remove unused function.
15210 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
15211 loop body.
15212 (yyreportSyntaxError): Renamed from yyreportParseError.
15213 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
15214 All uses changed.
15215 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
15216 extern when possible. Remove unused initializations.
15217
b0937b22
AD
152182002-11-16 Akim Demaille <akim@epita.fr>
15219
15220 Augment the similarity between GLR and LALR traces.
15221
15222 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
15223 (YY_REDUCE_PRINT): New.
15224 (yyparse): Use them.
15225 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
15226 YYDPRINT here.
15227 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
15228 state reached after the reduction/recovery, since...
15229 (yyparse, yyprocessOneStack): Report the state we are entering in.
15230
c5e3e510
AD
152312002-11-16 Akim Demaille <akim@epita.fr>
15232
15233 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
15234 Add support for --trace=skeleton.
15235 * src/scan-skel.l: %option debug.
15236 Scan strings of non-@ or \n instead of character by character.
15237 (scan_skel): Handle trace_skeleton.
15238 (QPUTS): New.
15239 (@output_parser_name@, @output_header_name@): ``Restore'' their
15240 support (used to be M4 macros).
15241 * data/yacc.c: Quote larger chunks, a la glr.c.
15242 * data/lalr1.cc: Likewise.
15243 The header guards are no longer available, so use some other
15244 string than `YYLSP_NEEDED'.
15245
4c6cc1db
AD
152462002-11-16 Akim Demaille <akim@epita.fr>
15247
15248 Make the ``Printers and Destructors'' test more verbose, taking
15249 `yacc.c''s behavior as (possibly wrong) reference.
15250
15251 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
15252 instead of fprint on stdout.
15253 Set and report the last_line of the symbols.
15254 Consistently display values and locations.
15255
6d9e8019
PE
152562002-11-16 Paul Eggert <eggert@twinsun.com>
15257
15258 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
15259
6e649e65
PE
152602002-11-15 Paul Eggert <eggert@twinsun.com>
15261
b25d88f6
PE
15262 * tests/actions.at (Actions after errors): New test case.
15263
6e649e65
PE
15264 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
15265 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
15266 tests/action.at, tests/calc.at, tests/conflicts.at,
15267 tests/cxx-type.at, tests/regression.at:
15268 "parse error" -> "syntax error" for POSIX compatibility.
15269 "parsing stack overflow..." -> "parser stack overflow" so
15270 that code matches Bison documentation.
15271
0f39aab9
AD
152722002-11-15 Akim Demaille <akim@epita.fr>
15273
15274 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
15275 take two BRACED_CODE, not two string_content.
15276 Free the scanner's obstack when we are done.
15277 (code_content): New.
15278 * tests/calc.at: Adjust.
15279 * doc/bison.texinfo: Adjust.
15280 Also, make sure to include the `,' for these declarations.
15281
761c1926
AD
152822002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
15283
15284 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
15285 definition; avoids potential autoreconf problems.
15286
b0f98b10
AD
152872002-11-15 Akim Demaille <akim@epita.fr>
15288
15289 Always check the value returned by yyparse.
15290
15291 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
15292 returned by yyparse.
15293 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
15294 Adjust calls.
15295 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
15296 returned by yyparse.
15297
970785f1
PH
152982002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15299
15300 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
15301 on input.at test.
15302
8fcc7db1
PE
153032002-11-14 Paul Eggert <eggert@twinsun.com>
15304
7ec1b48e
PE
15305 * src/output.c (output_skeleton): Call xfopen instead of
15306 duplicating xfopen's body.
15307
cfff7583 15308 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 15309 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 15310
8fcc7db1
PE
15311 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
15312 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
15313 Group compiler. Instead, use "$CC -E bar.c". Include the .h
15314 file twice in the grammar, as an extra check.
15315
15316 * tests/input.at (Torturing the Scanner): Surround the
15317 backslash-newline tests with "#if 0", to make it less likely that
15318 we'll run into compiler bugs. Bring back solitary \ inside
15319 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 15320 test backslash-newline in C character constant.
8fcc7db1 15321
4e8d992c
AD
153222002-11-14 Akim Demaille <akim@epita.fr>
15323
15324 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
15325 status of the compiler.
f32b346d 15326 Calling `exit 1' is no longer needed.
4e8d992c
AD
15327 Reported by Nelson H. F. Beebe.
15328
9501dc6e
AD
153292002-11-14 Akim Demaille <akim@epita.fr>
15330
15331 * tests/atlocal.in (CPPFLAGS): We have config.h.
15332 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
15333 New.
15334 * tests/actions.at, tests/calc.at, tests/conflicts.at,
15335 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
15336 * tests/regression.at, tests/torture.at: Use them for all the
15337 grammars that are to be compiled.
15338 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
15339 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
15340 * doc/bison.texinfo (GLR Parsers): Document `inline'.
15341
18b519c0
AD
153422002-11-14 Akim Demaille <akim@epita.fr>
15343
15344 * doc/bison.texinfo: Various formatting changes (alignments in
15345 samples, additional @group/@end group, GCS in samples.
15346 Use @deffn instead of simple @table to define the directives,
15347 macros, variables etc.
15348
9a86cdb9
PE
153492002-11-13 Paul Eggert <eggert@twinsun.com>
15350
daa33def 15351 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 15352 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 15353
daa33def 15354 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 15355 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
15356 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
15357 * tests/headers.at (export YYLTYPE): Likewise.
15358
15359 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 15360 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 15361
9a86cdb9
PE
15362 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
15363 comments, since they're not portable. Use GNU coding style.
15364
9c1e26bd
AD
153652002-11-13 Akim Demaille <akim@epita.fr>
15366
15367 * data/yacc.c: Leave bigger chunks of quoted text.
15368 (YYDSYMPRINTF): New.
15369 Use it to report symbol activities.
15370 * data/glr.c (YYDSYMPRINTF): New.
15371 Use it.
15372
87f721cc
PE
153732002-11-12 Paul Eggert <eggert@twinsun.com>
15374
15375 Version 1.75b.
15376
15377 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
15378 (yyglrReduce): Return yyok, not 0.
15379 This should avoid the enumerated-type warnings reported
464c6927 15380 by Nelson H. F. Beebe in
161a71f3 15381 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
15382
15383 * lib/bbitset.h (BITSET_INLINE): Remove.
15384 * lib/bitset.h [! BITSET_INLINE]: Remove.
15385 (bitset_set, bitset_reset, bitset_test): Rename local vars
15386 to avoid shadowing warnings by GCC.
15387
15388 * data/glr.c (inline): Remove #define. It's the user's
15389 responsibility to #define it away, just like 'const'.
464c6927 15390 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 15391 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 15392
87f721cc
PE
15393 * Makefile.maint (po-check): Scan .l and .y files instead of the
15394 .c and the .h files that they generate. This fixes the bug
15395 reported by Tim Van Holder in:
161a71f3 15396 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
15397 Look for N_ as well as for _. Try to avoid matching #define for
15398 N_ and _.
15399 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
15400 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
15401 * src/scan-gram.l: Revamp regular expressions so that " and '
15402 do not confuse xgettext.
15403
15404 * src/struniq.h (struniq_new): Do not declare the return type
15405 to be 'const'; this violates the C standard.
15406 * src/struniq.c (struniq_new): Likewise.
15407
be14ade5
AD
154082002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
15409
15410 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
15411 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
15412 linker.
15413
05291fbc
AD
154142002-11-12 Akim Demaille <akim@epita.fr>
15415
15416 * Makefile.maint: Sync with Autoconf:
15417 (local_updates): New.
15418
1f5fd52e
AD
154192002-11-12 Akim Demaille <akim@epita.fr>
15420
15421 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
15422
283f1e64
AD
154232002-11-12 Akim Demaille <akim@epita.fr>
15424
15425 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
15426 locations.
15427
886b69d1
AD
154282002-11-12 Akim Demaille <akim@epita.fr>
15429
15430 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
15431 not yyvalue.
15432
3df37415
AD
154332002-11-12 Akim Demaille <akim@epita.fr>
15434
15435 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
15436 Use it to test the GLR parser.
15437
7bd6c77e
AD
154382002-11-12 Akim Demaille <akim@epita.fr>
15439
15440 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
15441 defines it.
15442 * data/glr.c (yystos): New.
15443 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
15444 (YYDSYMPRINT): New.
15445 (yyval): Don't define it, it is handled via M4.
15446 (yyrecoverParseError): Free verbosely the discarded symbols.
15447 * data/yacc.c (yysymprint): Remove, rather...
15448 (b4_yysymprint_generate): invoke.
15449 * data/c.m4 (b4_yysymprint_generate): New.
15450 Accept pointers as arguments, as opposed to the version from
15451 yacc.c.
15452 (b4_yydestruct_generate): Likewise.
15453 * tests/cations.at (Printers and Destructors): Use Bison directives
15454 instead of CPP macros.
15455 Don't rely on internal details.
15456
b0400cc6
AD
154572002-11-12 Akim Demaille <akim@epita.fr>
15458
15459 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
15460 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
15461 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
15462 it against YYEMPTY and so forth), work on yytoken (i.e., set
15463 it to YYEMPTY etc.).
15464 (yydestruct): Replace with a b4_yydestruct_generate invocation.
15465 (b4_symbol_actions): Remove.
15466 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
15467 for 0, end-of-input.
15468
72f889cc
AD
154692002-11-12 Akim Demaille <akim@epita.fr>
15470
15471 * doc/bison.texinfo (Destructor Decl): New.
15472
b1ae9233
AD
154732002-11-12 Akim Demaille <akim@epita.fr>
15474
15475 * src/tables.c (tables_generate): Use free for pointers that
15476 cannot be NULL, not XFREE.
15477 (pack_vector): Use assert, not fatal, for bound violations.
15478 * src/state.c (state_new): Likewise.
15479 * src/reader.c (reader): Likewise.
15480 * src/lalr.c (set_goto_map): Likewise.
72f889cc 15481 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
15482 the file name.
15483
7ec2d4cd
AD
154842002-11-12 Akim Demaille <akim@epita.fr>
15485
15486 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
15487 Restore.
15488 * src/scan-gram.l (last_string): Is global to the file, not to
15489 yylex.
15490 * src/parse-gram.y (input): Don't append the epilogue here,
15491 (epilogue.opt): do it here, and free the scanner's obstack.
15492 * src/reader.c (epilogue_set): Rename as...
15493 (epilogue_augment): this.
15494 * data/c.m4 (b4_epilogue): Defaults to empty.
15495
573a6cd3
AD
154962002-11-12 Akim Demaille <akim@epita.fr>
15497
15498 * src/getargs.c (long_options): Remove duplicates.
15499 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
15500 Remove.
15501 * doc/bison.rnh: Remove.
15502 * doc/bison.texinfo (VMS Invocation): Remove.
15503
95612cfa
AD
155042002-11-12 Akim Demaille <akim@epita.fr>
15505
15506 * src/struniq.h, src/struniq.c (struniq_t): Is const.
15507 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
15508
15509 Use struniq for symbols.
15510
15511 * src/symtab.h (symbol_t): The tag member is a struniq.
15512 (symbol_type_set): Adjust.
15513 * src/symtab.c (symbol_new): Takes a struniq.
15514 (symbol_free): Don't free the tag member.
15515 (hash_compare_symbol_t, hash_symbol_t): Rename as...
15516 (hash_compare_symbol, hash_symbol): these.
15517 Use the fact that tags as struniqs.
15518 (symbol_get): Use struniq_new.
15519 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
15520 Returns a strniq.
15521 * src/reader.h (merger_list, grammar_currentmerge_set): The name
15522 and type members are struniqs.
15523 * src/reader.c (get_merge_function)
15524 (grammar_current_rule_merge_set): Adjust.
15525 (TYPE, current_type): Are struniq.
15526
15527 Use struniq for file names.
15528
15529 * src/files.h, src/files.c (infile): Split into...
15530 (grammar_file, current_file): these.
15531 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
15532 * src/reduce.c (reduce_print): Likewise.
15533 * src/getargs.c (getargs): Likewise.
15534 * src/complain.h, src/complain.c: Likewise.
15535 * src/main.c (main): Call struniqs_new early enough to use it for
15536 file names.
15537 Don't free the input file name.
15538
3e6656f9
AD
155392002-11-12 Akim Demaille <akim@epita.fr>
15540
15541 * src/symtab.c (symbol_free): Remove dead deactivated code:
15542 type_name are properly removed.
15543 Don't use XFREE to free items that cannot be NULL.
15544 * src/struniq.h, src/struniq.c: New.
15545 * src/main.c (main): Initialize/free struniqs.
15546 * src/parse-gram.y (%union): Add astruniq member.
15547 (yyprint): Adjust.
15548 * src/scan-gram.l (<{tag}>): Return a struniq.
15549 Free the obstack bit that used to store it.
15550 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
15551
7672019c
PE
155522002-11-11 Paul Eggert <eggert@twinsun.com>
15553
15554 Revamp to fix many (but not all) of the C- and M4-related quoting
15555 problems. Among other things, this fixes the Bison bug reported
15556 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 15557 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
15558
15559 Use new @ escapes consistently. Represent brackets with @{ and @}
15560 rather than @<:@ and @:>@, since this works a bit better with dumb
15561 editors like vi. Represent @ with @@, since @ is now consistently
15562 an escape. Use @oline@ and @ofile@ rather than __oline__ and
15563 __ofile__, to avoid unexpected expansions. Similarly, use @output
15564 rather than #output.
15565
15566 * data/c.m4 (b4_copyright): Omit file name from comment, since
15567 the file name could contain "*/".
15568 (b4_synclines_flag): Don't quote the 2nd argument; it should already
15569 be quoted. All uses changed.
15570
15571 * data/glr.c: Use new @ escapes consistently.
15572 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
15573 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
15574 Remove, since they couldn't handle arbitrary characters in file
15575 names.
15576 * data/lalr1.cc: Likewise.
15577 * data/yacc.c: Likewise.
15578
15579 * src/files.c (output_infix): Remove; all uses removed.
15580 * src/files.h: Likewise.
15581
15582 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
15583 mishandled funny characters in file names, and anyway it isn't
15584 needed any more.
15585 * data/yacc.c: Likewise.
15586 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
15587
15588 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
15589 * data/yacc.c: Likewise.
15590
15591 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
15592 strings now.
15593 (muscle_init): Quote filename as a C string.
15594 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
15595 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
15596 * src/output.c (escaped_file_name_output): New function.
15597 (prepare_symbols): Quote tokens for M4.
15598 (prepare): Don't insert output_infix, output_prefix,
15599 output_parser_name, output_header_name; this is now down by scan-skel.
15600 Insert skeleton as a C string.
15601
15602 * src/output.c (user_actions_output, symbol_destructors_output,
15603 symbol_printers_output): Quote filenames for C and M4.
15604 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15605
15606 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
15607 escapes other than \\ and \'; this simplifies the code.
15608 (<SC_STRING>): Likewise, for \\ and \".
15609 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
15610 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
15611 Use new escapes @{ and @} for [ and ].
15612
15613 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
15614 them with auto vars.
15615 Switch to new escape scheme, where @ is the escape character uniformly.
15616 Abort if a stray escape character is found. Avoid unbounded input
15617 buffer when parsing non-escaped text.
15618
15619 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
15620 __oline__, #output, $@, and @{ do not have unintended meanings.
15621
acea4f3b
PE
156222002-11-09 Paul Eggert <eggert@twinsun.com>
15623
15624 Fix the test failure due to GCC warnings described in
161a71f3 15625 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
15626 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
15627 evaluate to 0 if it's impossible for NINF to be in the respective
15628 table.
15629 (yygetLRActions, yyrecoverParseError): Use them.
15630
15631 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
15632 counted in the token inserted at end of file. Now takes
15633 location_t *, not location_t, so that the location can be
15634 adjusted. All uses changed.
15635
15636 * tests/regression.at (Invalid inputs): Adjust wording in
15637 diagnostic to match the new behavior.
15638
15639 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
15640 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
15641 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
15642 abort ();'. This reduces the runtime of the "Many lookaheads"
15643 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
15644 GCC 3.2.
15645
20ef1ad5
PE
156462002-11-07 Paul Eggert <eggert@twinsun.com>
15647
15648 * src/parse-gram.y (CHARACTER): Remove unused token.
15649 All uses removed.
15650
15651 * src/scan-gram.l: Remove stack option. We no longer use the
15652 stack, since the stack was never deeper than 1; instead, use the
15653 new auto var c_context to record the stacked value.
15654
15655 Remove nounput option. At an unexpected end of file, we now unput
15656 the minimal input necessary to end cleanly; this simplifies the
15657 code.
15658
15659 Avoid unbounded token sizes where this is easy.
15660
15661 (unexpected_end_of_file): New function.
15662 Use it to systematize the error message on unexpected EOF.
15663 (last-string): Now auto, not static.
15664 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
15665 (scanner_last_string_free): Remove; not used.
15666 (percent_percent_count): Move decl to just before use.
15667 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
15668 not the (never otherwised-used) CHARACTER.
15669
93724f13
AD
156702002-11-07 Akim Demaille <akim@epita.fr>
15671
15672 Let yyerror always receive the msg as last argument, so that
15673 yyerror can be variadic.
15674
15675 * data/yacc.c (b4_yyerror_args): New.
15676 Use it when calling yyerror.
15677 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
15678 Use it when calling yyerror.
15679 * doc/bison.texinfo (Error Reporting): Adjust.
15680 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
15681 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
15682
6e40b4eb
AD
156832002-11-06 Akim Demaille <akim@epita.fr>
15684
15685 #line should have quoted strings.
15686 Ideally, this should be done by m4_quotearg.
15687
15688 * src/scan-skel.l: Include quotearg.h.
15689 Quote __ofile__.
15690 * src/output.c (symbol_printers_output)
15691 (symbol_destructors_output): Quote the file name.
15692
2dfbfc12
AD
156932002-11-06 Akim Demaille <akim@epita.fr>
15694
15695 * tests/regression.at (Invalid inputs): Adjust to the recent
15696 messages.
15697
437c2d80
AD
156982002-11-06 Akim Demaille <akim@epita.fr>
15699
15700 Restore --no-lines.
15701 Reported by Jim Kent.
15702
15703 * data/c.m4 (b4_syncline): New.
15704 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
15705 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
15706 * src/output.c (user_actions_output): Likewise.
15707 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 15708 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 15709
900c5db5
AD
157102002-11-06 Akim Demaille <akim@epita.fr>
15711
15712 * src/main.c (main): Free `infile'.
15713 * src/scan-gram.l (handle_syncline): New.
15714 Recognize `#line'.
15715 * src/output.c (user_actions_output, symbol_destructors_output)
15716 (symbol_printers_output): Use the location's file name, not
15717 infile.
15718 * src/reader.c (prologue_augment, epilogue_set): Likewise.
15719
e183b123 157202002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 15721
e183b123 15722 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 15723 either has GLR conflict entries.
e183b123 15724
193eb6b7
PE
157252002-11-05 Paul Eggert <eggert@twinsun.com>
15726
e183b123
PE
15727 * src/scan-gram.l: Use more accurate diagnostics, e.g.
15728 "integer out of range" rather than "invalid value".
15729 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
15730 accordingly.
15731
193eb6b7
PE
15732 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
15733 Also, remove one static variable in the scanner.
15734
15735 * src/scan-gram.l (braces_level): Now auto, not static.
15736 Initialize to zero if the compiler is being picky.
15737 (INITIAL): Clear braces_level instead of incrementing it.
15738 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
15739 as POSIX 1003.1-2001 requires.
15740 * src/system.h (IF_LINT): New macro, taken from coreutils.
15741 * configure.ac: Define "lint" if --enable-gcc-warnings.
15742
29c01725
AD
157432002-11-05 Akim Demaille <akim@epita.fr>
15744
15745 * src/scan-gram.l: When it starts with `%', complain about the
15746 whole directive, not just that `invalid character: %'.
15747
8aeac3ca
AD
157482002-11-04 Akim Demaille <akim@epita.fr>
15749
15750 * Makefile.maint: Update from Autoconf.
15751 (update, cvs-update, po-update, do-po-update): New.
15752
793a58bb
AD
157532002-11-04 Akim Demaille <akim@epita.fr>
15754
15755 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
15756 and yyerror.
15757 Have yyerror `use' its arguments.
15758 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
15759 returns true when location & yacc & pure & parse-param.
15760 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
15761
c4d720cd
AD
157622002-11-04 Akim Demaille <akim@epita.fr>
15763
15764 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
15765 clashes.
15766 * src/scan-gram.l: Use [\'] instead of ['] to pacify
15767 font-lock-mode.
15768 Use complain_at.
15769 Use quote, not quote_n since LOCATION_PRINT no longer uses the
15770 slot 0.
15771
613a0dc5
PE
157722002-11-03 Paul Eggert <eggert@twinsun.com>
15773
15774 * src/reader.c (get_merge_function, grammar_current_rule_check):
15775 Use consistent diagnostics for reporting type name clashes.
15776 Quote the types with <>, for consistency with Yacc.
15777 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
15778
2a8d363a
AD
157792002-11-03 Akim Demaille <akim@epita.fr>
15780
15781 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
15782 New.
15783 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
15784 (b4_parse_param): Remove.
15785 Use b4_identification.
15786 Propagate b4_pure_args where needed to pass them to yyerror.
15787 * data/glr.m4 (b4_parse_param): Remove.
15788 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
15789 (b4_lpure_formals): New.
15790 Use b4_identification.
15791 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
15792 b4_user_formals and b4_user_args.
15793 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
15794 (yyreportAmbiguity): When using a pure parser, also need
15795 the location, and the parse-params.
15796 Adjust callers.
15797 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
15798 When using a pure parser, also need the parse-params.
15799 Adjust callers.
15800 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
15801 (%pure-parser + %parse-param) LALR and GLR parsers.
15802 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
15803 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
15804 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
15805 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
15806 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
15807 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
15808 * doc/bison.texinfo: Untabify the whole file.
15809 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
15810 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
15811 (Error Reporting): Adjust to these new directives.
15812 Document %error-verbose, deprecate YYERROR_VERBOSE.
15813
9e32add8
AD
158142002-11-03 Akim Demaille <akim@epita.fr>
15815
15816 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
15817 AT_CHECK_CALC_GLR invocations to use % directives, instead of
15818 command line options.
15819 * tests/cxx-type.at: Formatting changes.
15820
b02d90a5
PE
158212002-11-03 Paul Eggert <eggert@twinsun.com>
15822
15823 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
15824 to count columns correctly, and to check for invalid inputs.
9e32add8 15825
b02d90a5
PE
15826 Use mbsnwidth to count columns correctly. Account for tabs, too.
15827 Include mbswidth.h.
15828 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
15829 (extend_location): New function.
15830 (YY_LINES): Remove.
15831
15832 Handle CRLF in C code rather than in Lex code.
15833 (YY_INPUT): New macro.
15834 (no_cr_read): New function.
15835
15836 Scan UCNs, even though we don't fully handle them yet.
15837 (convert_ucn_to_byte): New function.
15838
15839 Handle backslash-newline correctly in C code.
15840 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
15841 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
15842 all uses changed.
15843 (tag, splice): New EREs. Do not allow NUL or newline in tags.
15844 Use {splice} wherever C allows backslash-newline.
15845 YY_STEP after space, newline, vertical-tab.
15846 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 15847
b02d90a5
PE
15848 (letter, id): Don't assume ASCII; e.g., spell out a-z.
15849
15850 ({int}, handle_action_dollar, handle_action_at): Check for integer
15851 overflow.
9e32add8 15852
b02d90a5
PE
15853 (YY_STEP): Omit trailing semicolon, so that it's more like C.
15854
15855 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
15856 as well as \000. Check for UCHAR_MAX, not 255.
15857 Allow \x with an arbitrary positive number of digits, as in C.
15858 Check for overflow here.
15859 Allow \? and UCNs, for compatibility with C.
15860
15861 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
15862 with quote slot used by complain_at.
15863
15864 * tests/input.at: Add tests for backslash-newline, m4 quotes
15865 in symbols, long literals, and funny escapes in strings.
15866
15867 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
15868 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
15869 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
15870 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
15871 * m4/mbswidth.m4: New file, from GNU coreutils.
15872
15873 * doc/bison.texinfo (Grammar Outline): Document // comments.
15874 (Symbols): Document that trigraphs have no special meaning in Bison,
15875 nor is backslash-newline allowed.
15876 (Actions): Document that trigraphs have no special meaning.
15877
15878 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
15879 no longer used.
15880
158812002-11-02 Paul Eggert <eggert@twinsun.com>
15882
15883 * src/reader.c: Don't include quote.h; not needed.
15884 (get_merge_function): Reword warning to be consistent with
15885 type clash diagnostic in grammar_current_rule_check.
15886
15887 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
15888 bug in trigraph handling.
15889
15890 * src/output.c (prepare_symbols): When printing token names,
15891 escape "[" as "@<:@" and likewise for "]".
15892
15893 * src/system.h (errno): Remove declaration, as we are now
15894 assuming C89 or better, and C89 guarantees errno.
15895
762b212b
PE
158962002-10-30 Paul Eggert <eggert@twinsun.com>
15897
15898 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
15899 Check for close failures.
15900 * src/files.h (xfclose): Return void, not int, since it always
15901 returned zero.
15902 * src/files.c (xfclose): Likewise. Report I/O error if ferror
15903 indicates one.
15904 * src/output.c (output_skeleton): Use xfclose rather than fclose
15905 and ferror. xfclose now checks ferror.
15906
15907 * data/glr.c (YYLEFTMOST_STATE): Remove.
15908 (yyreportTree): Use a stack-based leftmost state. This avoids
15909 our continuing battles with bogus warnings about initializers.
15910
56100c60
AD
159112002-10-30 Akim Demaille <akim@epita.fr>
15912
15913 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
15914 #if.
15915
51b4a04c
PH
159162002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15917
15918 * tests/glr-regr1.at: New test for reported regressions.
15919 * tests/testsuite.at: Add glr-regr1.at test.
15920 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 15921
bf1ebda2
PE
159222002-10-24 Paul Eggert <eggert@twinsun.com>
15923
5c16c6b1
PE
15924 Version 1.75a.
15925
bf1ebda2
PE
15926 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
15927 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
15928 we use malloc. Don't assume 'A' through 'Z' are contiguous.
15929 Don't assume strdup exists; POSIX says its an XSI extension.
15930 Check for buffer overflow on input.
15931
b526ee61
AD
159322002-10-24 Akim Demaille <akim@epita.fr>
15933
15934 * src/output.c (output_skeleton): Don't disable M4sugar comments
15935 too soon: it results in comments being expanded.
15936 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
15937 first output.
15938
f1886bb2
AD
159392002-10-24 Akim Demaille <akim@epita.fr>
15940
15941 * data/yacc.c (m4_int_type): New.
15942 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
15943 char' as only yacc.c wants K&R portability.
15944 * data/glr.c (yysigned_char): Remove.
15945 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
15946 Reported by Quoc Peyrot.
15947
c5576256
PE
159482002-10-23 Paul Eggert <eggert@twinsun.com>
15949
15950 * src/main.c (main): With --trace=time, report times even if a
15951 non-fatal error occurs. Formerly, the times were reported in some
15952 such cases but not in others.
15953 * src/reader.c (reader): Just return if a complaint has been issued,
15954 instead of exiting, so that 'main' can report times.
15955
27b0ffea
AD
159562002-10-22 Akim Demaille <akim@epita.fr>
15957
15958 * src/system.h: Include sys/types.
15959 Reported by Bert Deknuydt.
15960
223a7883
PE
159612002-10-23 Paul Eggert <eggert@twinsun.com>
15962
15963 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
15964 Suggested by Art Haas.
15965
159662002-10-22 Paul Eggert <eggert@twinsun.com>
15967
15968 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
15969 decl; not needed any more.
15970 * src/main.c (main): Use return to exit, undoing yesterday's change.
15971 The last OS that we could find where this wouldn't work is
15972 SunOS 3.5, and that's too old to worry about now.
15973
15974 * data/glr.c (struct yyltype): Define members even when not
15975 doing locations. This is more consistent with yacc.c, and it
15976 works around the following bug reports:
161a71f3
PE
15977 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
15978 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 15979
223a7883
PE
15980 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
15981 @acronym consistently. Standardize on "Yacc" instead of "YACC",
15982 "Algol" instead of "ALGOL". Give a bit more history about BNF.
15983
8b76775a
AD
159842002-10-22 Akim Demaille <akim@epita.fr>
15985
15986 * data/README: New.
15987
6db10d14
PE
159882002-10-21 Paul Eggert <eggert@twinsun.com>
15989
15990 Be consistent about 'bool'; the old code used an enum in one
15991 module and an int in another, and this violates the C standard.
15992 * m4/stdbool.m4: New file, from coreutils 4.5.3.
15993 * configure.ac (AC_HEADER_STDBOOL): Add.
15994 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
15995 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
15996 * src/symtab.c (hash_compare_symbol_t): Likewise.
15997 * src/system.h (bool, false, true): Use a definition consistent
15998 with ../lib/hash.c. All uses changed.
15999
16000 * src/complain.c (warning_issued): Renamed from warn_message_count,
16001 so that we needn't worry about integer overflow (!).
16002 Now of type bool. All uses changed.
16003 (complaint_issued): Renamed from complain_message_count; likewise.
16004
16005 * src/main.c (main): Use exit to exit with failure.
27b0ffea 16006
6db10d14
PE
16007 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
16008 rather than 1 and 0.
16009 * src/main.c (main): Likewise.
16010 * src/getargs.c (getargs): Likewise.
16011 * src/reader.c (reader): Likewise.
16012
16013 * src/getarg.c (getargs): Remove duplicate code for
16014 "Try `bison --help'".
16015
16016 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
16017 What was that "2" for?
16018
16019 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
16020 * src/getargs.c (usage): Likewise.
16021
16022 * src/getargs.c (getargs): When there are too few operands, report
16023 the last one. When there are too many, report the first extra
16024 one. This is how diffutils does it.
16025
92a060fd
PE
160262002-10-20 Paul Eggert <eggert@twinsun.com>
16027
16028 Remove K&R vestiges.
16029 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
16030 * src/complain.c (VA_START): Remove. Assume prototypes.
16031 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
16032 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
16033 fatal): Assume prototypes.
16034 * src/complain.h: Assume prototypes.
16035 * src/system.h (PARAMS): Remove.
16036 Include <limits.h> unconditionally, since it's guaranteeed even
16037 for a freestanding C89 compiler.
16038 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
16039 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 16040
e7cb57c0
AD
160412002-10-20 Akim Demaille <akim@epita.fr>
16042
16043 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
16044 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
16045 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
16046 (yyresolveStates, yyresolveAction, yyresolveStack)
16047 (yyprocessOneStack): Use them.
16048 (yy_reduce_print): New.
16049 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
16050
0245f82d
AD
160512002-10-20 Akim Demaille <akim@epita.fr>
16052
16053 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
16054 arguments and output `void'.
16055 (b4_c_function): Rename as...
16056 (b4_c_function_def): this.
16057 (b4_c_function_decl, b4_c_ansi_function_def)
16058 (b4_c_ansi_function_decl): New.
16059 Change the interpretation of the arguments: before `int, foo', now
16060 `int foo, foo'.
16061 * data/yacc.c (yyparse): Prototype and define thanks to these.
16062 Adjust b4_c_function_def uses.
16063 * data/glr.c (yyparse): Likewise, but ANSI only.
16064
39912f52
AD
160652002-10-20 Akim Demaille <akim@epita.fr>
16066
16067 * src/output.c (prepare): Move the definition of `tokens_number',
16068 `nterms_number', `undef_token_number', `user_token_number_max'
16069 to...
16070 (prepare_tokens): Here.
16071 (prepare_tokens): Rename as...
16072 (prepare_symbols): this.
16073 (prepare): Move the definition of `rules_number' to...
16074 (prepare_rules): here.
16075 (prepare): Move the definition of `last', `final_state_number',
16076 `states_number' to...
16077 (prepare_states): here.
16078 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
16079
20c1e2ad
AD
160802002-10-20 Akim Demaille <akim@epita.fr>
16081
16082 * src/tables.h, src/tables.c, src/output.c: Comment changes.
16083
21964f43
AD
160842002-10-20 Akim Demaille <akim@epita.fr>
16085
16086 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
16087 * data/c.m4: here.
16088
66d30cd4
AD
160892002-10-20 Akim Demaille <akim@epita.fr>
16090
16091 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
16092 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
16093 `pair'.
16094 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
16095 `name' to...
16096 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
16097 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
16098 These.
16099
95f2c9fe
PE
161002002-10-19 Paul Eggert <eggert@twinsun.com>
16101
16102 Do not create a temporary file, as that involves security and
16103 cleanup headaches. Instead, use a pair of pipes.
16104 Derived from a suggestion by Florian Krohm.
16105 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
16106 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
16107 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
16108 (BISON_PREREQ_SUBPIPE): Add.
16109 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
16110 Add subpipe.h, subpipe.c.
16111 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
16112 * po/POTFILES.in: Add lib/subpipe.c.
16113 * src/output.c: Include "subpipe.h".
16114 (m4_invoke): Remove decl.
16115 (scan_skel): New decl.
16116 (output_skeleton): Use pipe rather than temporary file for m4 input.
16117 Check that m4sugar.m4 is readable, to avoid deadlock.
16118 Check for pipe I/O error.
16119 * src/scan-skel.l (readpipe): Remove decl.
16120 (scan_skel): New function, to be used in place of m4_invoke.
16121 Read from stream rather than file.
66d30cd4 16122
95f2c9fe
PE
16123 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
16124 float, as this generates a warning on Solaris 8 + GCC 3.2 with
16125 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
16126 this generates a more-accurate value anyway.
16127
16128 * lib/timevar.c (timervar_accumulate): Rename locals to
16129 avoid confusion with similarly-named more-global.
16130 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
16131
16132 * src/output.c (prepare): Use xstrdup to convert char const *
16133 to char *, to avoid GCC warning.
16134
c19988b7
AD
161352002-10-19 Akim Demaille <akim@epita.fr>
16136
16137 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
16138 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
16139 Use them to have `calc.y' ready for %pure-parser.
16140 * data/yacc.c (YYLEX): Pass a yylex return type to
16141 b4_c_function_call.
16142
ae7453f2
AD
161432002-10-19 Akim Demaille <akim@epita.fr>
16144
16145 Prototype support of %lex-param and %parse-param.
16146
16147 * src/parse-gram.y: Add the definition of the %lex-param and
16148 %parse-param tokens, plus their rules.
16149 Drop the `_' version of %glr-parser.
16150 Add the "," token.
16151 * src/scan-gram.l (INITIAL): Scan them.
16152 * src/muscle_tab.c: Comment changes.
16153 (muscle_insert, muscle_find): Rename `pair' as `probe'.
16154 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
16155 (muscle_entry_s): The `value' member is no longer const.
16156 Adjust all dependencies.
16157 * src/muscle_tab.c (muscle_init): Adjust: use
16158 MUSCLE_INSERT_STRING.
16159 Initialize the obstack earlier.
16160 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
16161 (muscle_pair_list_grow): New.
16162 * data/c.m4 (b4_c_function_call, b4_c_args): New.
16163 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
16164 * tests/calc.at: Use %locations, not --locations.
16165 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
16166
0e575721
AD
161672002-10-19 Akim Demaille <akim@epita.fr>
16168
16169 * src/getargs.c (usage): Take status as argument and exit
16170 accordingly.
16171 Report the traditional `Try ... --help' message when status != 0.
16172 (usage, version): Don't take a FILE * as arg, it is pointless.
16173 (getargs): When there is an incorrect number of arguments, make it
16174 an error, and report it GNUlically thanks to `usage ()'.
16175
724ce7f5
PE
161762002-10-18 Paul Eggert <eggert@twinsun.com>
16177
3a781eb2
PE
16178 * data/glr.c (yyreportParseError): Don't assume that sprintf
16179 yields the length of the printed string, as this is not true
16180 on SunOS 4.1.4. Reported by Peter Klein.
16181
724ce7f5
PE
16182 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
16183 * tests/conflicts.at (%nonassoc and eof): Likewise.
16184 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
16185
473d0a75
AD
161862002-10-17 Akim Demaille <akim@epita.fr>
16187
16188 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
16189 * src/getargs.c (trace_types, trace_args): Adjust.
16190 * src/reader.c (grammar_current_rule_prec_set)
16191 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
16192 Standardize error messages.
16193 And s/@prec/%prec/!
16194 (reader): Use trace_flag to enable scanner/parser debugging,
16195 instead of an adhoc scheme.
16196 * src/scan-gram.l: Remove trailing debugging code.
16197
e76d2469
PE
161982002-10-16 Paul Eggert <eggert@twinsun.com>
16199
93e2236a
PE
16200 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
16201 MUSCLE_TAB_H.
16202
e76d2469
PE
16203 * NEWS: Officially drop support for building Bison with K&R C,
16204 since it didn't work anyway and it's not worth worrying about.
16205 * Makefile.maint (wget_files): Remove ansi2knr.c.
16206 (ansi2knr.c-url_prefix): Remove.
16207 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
16208 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16209 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16210
5bd1c419
PE
162112002-10-15 Paul Eggert <eggert@twinsun.com>
16212
16213 Stop using the "enum_" trick for K&R-style function definitions;
16214 it confused me, and I was the author! Instead, assume that people
16215 who want to use K&R C compilers (when using these modules in GCC,
16216 perhaps?) will run ansi2knr.
16217
16218 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
16219 All uses of "enum_" changed to "enum ".
16220 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16221 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 16222
5bd1c419
PE
16223 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
16224 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
16225 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
16226 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
16227 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
16228 abitset_not, abitset_ones, abitset_or, abitset_or_and,
16229 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
16230 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
16231 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
16232 Use function prototypes; this removes the need for declaring
16233 static functions simply to provide their prototypes.
16234 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
16235 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
16236 bitset_count_, bitset_create, bitset_dump, bitset_first,
16237 bitset_free, bitset_init, bitset_last, bitset_next,
16238 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
16239 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
16240 bitset_print, bitset_release_memory, bitset_toggle_,
16241 bitset_type_choose, bitset_type_get, bitset_type_name_get,
16242 debug_bitset): Likewise.
16243 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
16244 * lib/bitset_stats.c (bitset_log_histogram_print,
16245 bitset_percent_histogram_print, bitset_stats_and,
16246 bitset_stats_and_cmp, bitset_stats_and_or,
16247 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
16248 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
16249 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
16250 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
16251 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
16252 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
16253 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
16254 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
16255 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
16256 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
16257 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
16258 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
16259 bitset_stats_zero): Likewise.
16260 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16261 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16262 bitsetv_dump, debug_bitsetv): Likewise.
16263 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
16264 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
16265 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
16266 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
16267 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
16268 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
16269 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
16270 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
16271 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
16272 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
16273 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
16274 Likewise.
16275 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
16276 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
16277 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
16278 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
16279 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
16280 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
16281 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
16282 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
16283 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
16284 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
16285 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 16286
ae26e1f0
AD
162872002-10-14 Akim Demaille <akim@epita.fr>
16288
16289 Version 1.75.
16290
d43baf71
AD
162912002-10-14 Akim Demaille <akim@epita.fr>
16292
16293 * tests/Makefile.am (maintainer-check-posix): New.
16294
7ebc83e3
AD
162952002-10-14 Akim Demaille <akim@epita.fr>
16296
16297 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
16298 member.
16299
05846dae
AD
163002002-10-14 Akim Demaille <akim@epita.fr>
16301
16302 * src/tables.c (table_ninf_remap): base -> tab.
16303 Reported by Matt Rosing.
16304
1318e37d
PE
163052002-10-14 Paul Eggert <eggert@twinsun.com>
16306
447fbb17
PE
16307 * tests/action.at, tests/calc.at, tests/conflicts.at,
16308 tests/cxx-type.at, tests/headers.at, tests/input.at,
16309 tests/regression.at, tests/synclines.at, tests/torture.at:
16310 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
16311 so that the tests still work even if POSIXLY_CORRECT is set.
16312 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 16313
1318e37d
PE
16314 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
16315 for portability to K&R hosts. Fix typo: signed char is guaranteed
16316 only to 127, not to 128.
16317 * data/glr.c (yysigned_char): New type.
16318 * data/yacc.c (yysigned_char): Likewise.
16319 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
16320
cc0f0794
PE
163212002-10-13 Paul Eggert <eggert@twinsun.com>
16322
5038f418
PE
16323 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
16324 true due to limited range of data type" warning from GCC.
16325
cc0f0794
PE
16326 * data/c.m4 (b4_token_defines): Protect against double-inclusion
16327 by wrapping enum yytokentype's definition inside #ifndef
16328 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
16329
6fed0802
AD
163302002-10-13 Akim Demaille <akim@epita.fr>
16331
16332 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
16333 Un yy- yyrhs to avoid the name clash with the global YYRHS.
16334
32f0598d
AD
163352002-10-13 Akim Demaille <akim@epita.fr>
16336
16337 * Makefile.maint: Update from Autoconf 2.54.
16338 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
16339
7ea9a33f
AD
163402002-10-13 Akim Demaille <akim@epita.fr>
16341
16342 * src/print.c (print_state): Separate the list of solved conflicts
16343 from the other items.
16344 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
16345
ea99527d
AD
163462002-10-13 Akim Demaille <akim@epita.fr>
16347
16348 Let nondeterministic skeletons be usable with deterministic
16349 tables.
16350
16351 With the patch, GAWK compiled by GCC without -O2 passes its test
16352 suite using a GLR parser driven by LALR tables. It fails with -O2
16353 because `struct stat' gives two different answers on my machine:
16354 88 (definition of an auto var) and later 96 (memset on this var).
16355 Hence the stack is badly corrumpted. The headers inclusion is to
16356 blame: if I move the awk.h inclusion before GLR's system header
16357 inclusion, the two struct stat have the same size.
16358
16359 * src/tables.c (pack_table): Always create conflict_table.
16360 (token_actions): Always create conflict_list.
16361 * data/glr.c (YYFLAG): Remove, unused.
16362
f377f69f
AD
163632002-10-13 Akim Demaille <akim@epita.fr>
16364
16365 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
16366 (O0FLAGS): New.
16367 (VALGRIND, GXX): New.
16368 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
16369 * tests/bison.in: Run $PREBISON a pre-command.
16370 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
16371 (maintainer-check-g++): New.
16372 * Makefile.am (maintainer-check): New.
16373
2a1fe6ed
AD
163742002-10-13 Akim Demaille <akim@epita.fr>
16375
16376 * data/glr.c: Formatting changes.
16377 Tweak some trace messages to match yacc.c's.
16378
f50adbbd
AD
163792002-10-13 Akim Demaille <akim@epita.fr>
16380
16381 GLR parsers sometimes raise parse errors instead of performing the
16382 default reduction.
16383 Reported by Charles-Henry de Boysson.
16384
16385 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 16386 check the length of the traces when %glr.
f50adbbd
AD
16387 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
16388 GLR's traces.
16389 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
16390 Test GLR parsers.
16391 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
16392 (yyltype): Remove the yy prefix from the member names.
16393 (yytable): Complete its comment.
16394 (yygetLRActions): Map error action number from YYTABLE from
16395 YYTABLE_NINF to 0.
16396 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
16397 (which was a bug: it should have been YYTABEL_NINF, and yet it was
16398 not satisfying as we could compare an YYACTION computed from
16399 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
16400 only value for error actions.
16401 (yyreportParseError): In verbose parse error messages, don't issue
16402 `error' in the list of expected tokens.
16403 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
16404 next action to perform to match glr.c's decoding.
16405 (yytable): Complete its comment.
16406
bcbad5b9
PE
164072002-10-13 Paul Eggert <eggert@twinsun.com>
16408
16409 Fix problem reported by Henrik Grubbstroem in
161a71f3 16410 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
16411 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
16412 because the Bison parser reads the second action before reducing
16413 the first one.
16414 * src/scan-gram.l (rule_length): New static var.
16415 Use it to keep track of the rule length in the scanner, since
16416 we can't expect the parser to be in lock-step sync with the scanner.
16417 (handle_action_dollar, handle_action_at): Use this var.
16418 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 16419
14904b89
PE
164202002-10-12 Paul Eggert <eggert@twinsun.com>
16421
1fe611e5
PE
16422 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
16423 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
16424 Include <sys/time.h> when checking for clock_t and struct tms.
16425 Use same include order as source.
16426 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 16427 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 16428
1fe611e5
PE
16429 * lib/timevar.c: Update copyright date and clarify comments.
16430 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 16431
1fe611e5
PE
16432 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
16433 GCC version as of today, then merge Bison's changes.
16434 Change "GCC" to "Bison" in copyright notice. timevar.def's
16435 author is Akim, so change that too.
16436
98194095
PE
16437 * src/reader.c (grammar_current_rule_check):
16438 Don't worry about the default action if $$ is untyped.
16439 Prevents bogus warnings reported by Jim Gifford in
161a71f3 16440 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 16441
14904b89
PE
16442 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
16443 * data/glr.c, data/lalr1.cc, data/yacc.c:
16444 Output token definitions before the first part of user declarations.
16445 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 16446 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 16447
ff6dca18
PE
164482002-10-11 Paul Eggert <eggert@twinsun.com>
16449
16450 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
16451 (yyparse): here. This undoes some of the 2002-07-25 change.
16452 Compatibility problem reported by Ralf S. Engelschall with
16453 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
16454
eb714592
AD
164552002-10-11 Akim Demaille <akim@epita.fr>
16456
16457 * tests/regression.at Characters Escapes): New.
16458 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
16459 characters.
16460 Reported by Jan Nieuwenhuizen.
16461
b7195100
AD
164622002-10-11 Akim Demaille <akim@epita.fr>
16463
16464 * po/id.po: New.
16465
f28a0f2d
PE
164662002-10-10 Paul Eggert <eggert@twinsun.com>
16467
16468 Portability fixes for bitsets; this also avoids several GCC
16469 warnings.
16470
16471 * lib/abitset.c: Include <stddef.h>, for offsetof.
16472 * lib/lbitset.c: Likewise.
16473
16474 * lib/abitset.c (abitset_bytes): Return a size that is aligned
16475 properly for vectors of objects. Do not assume that adding a
16476 header size to a multiple of a word size yields a value that is
16477 properly aligned for the whole union.
16478 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16479
16480 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
16481 unique names for structures.
16482 * lib/ebitset.c (ebitset_bytes): Likewise.
16483 * lib/lbitset.c (lbitset_bytes): Likewise.
16484
16485 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
16486 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
16487 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
16488 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
16489 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
16490 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
16491 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
16492 to improve the type-checking that GCC can do.
16493 * lib/bitset.c (bitset_op4_cmp): Likewise.
16494 * lib/bitset_stats.c (bitset_stats_count,
16495 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
16496 bitset_stats_copy, bitset_stats_disjoint_p,
16497 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
16498 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
16499 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
16500 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
16501 bitset_stats_and_or_cmp, bitset_stats_andn_or,
16502 bitset_stats_andn_or_cmp, bitset_stats_or_and,
16503 bitset_stats_or_and_cmp): Likewise.
16504 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
16505 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
16506 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
16507 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
16508
16509 * lib/abitset.h: Include bitset.h, not bbitset.h.
16510 * lib/ebitset.h: Likewise.
16511 * lib/lbitset.h: Likewise.
16512
16513 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
16514 All instances of parameters of type enum bitset_opts are now of
16515 type enum_bitset_opts, to conform to the C Standard, and similarly
16516 for enum_bitset_type.
16517 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
16518 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
16519
16520 Do not use "struct bitset_struct" to mean different things in
16521 different modules. Not only is this confusing, it violates
16522 the C Standard, which requires that structure types in different
16523 modules must be compatible if one is to be passed to the other.
16524 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
16525 All instances of "struct bitset_struct *" replaced with "bitset".
16526 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
16527 (union bitset_union, struct abitset_struct, struct ebitset_struct,
16528 struct lbitset_struct, struct bitset_stats_struct): New types.
16529 All uses of struct bitset_struct changed to union bitset_union,
16530 etc.
ba0fe3c7 16531 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
16532 struct bitset_struct): Remove.
16533 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
16534 struct bitset_struct): Remove.
16535 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
16536 bitset_struct): Remove.
16537 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
16538 Likewise.
16539
16540 Do not call a function of type T using a call that assumes the
16541 function is of a different type U. Standard C requires that a
16542 function must be called with a type that is compatible with its
16543 definition.
16544 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16545 New decls.
16546 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
16547 New functions.
16548 * lib/ebitset.c (PFV): Remove.
16549 * lib/lbitset.c (PFV): Likewise.
16550 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
16551 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
16552 decls.
16553 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
16554 (ebitset_vtable): Use them.
16555 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
16556 lbitset_xor): New functions.
16557 (lbitset_vtable): Use them.
16558
16559 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
16560 Declare.
16561
16562 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
16563 GCC warning.
16564 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
16565 Use offsetof, for simplicity.
16566
6fbe4984
PE
165672002-10-06 Paul Eggert <eggert@twinsun.com>
16568
16569 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
16570 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 16571 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
16572 which was inadvertently undone by the 2002-09-30 patch.
16573 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
16574 the same width as int.
16575
420f93c8
PE
165762002-10-04 Paul Eggert <eggert@twinsun.com>
16577
16578 Version 1.50.
16579
16580 * configure.ac (AC_INIT), NEWS: Increment version number.
16581
16582 * doc/bison.texinfo: Minor spelling, grammar, and white space
16583 fixes.
16584 (Symbols): Mention that any negative value returned from yylex
16585 signifies end-of-input. Warn about negative chars. Mention
16586 the portable Standard C character set.
16587
16588 The GNU coding standard says CFLAGS and YFLAGS are reserved
16589 for the installer to set.
16590 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
16591 * src/Makefile.am (AM_CFLAGS): Likewise.
16592 (AM_YFLAGS): Renamed from YFLAGS.
16593
16594 Fix some MAX and MIN problems.
16595 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
16596 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
16597 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
16598 * src/reader.c (reader): Use it.
16599
16600 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
16601 POSIX 1003.1-2001 has removed fgrep.
16602
166032002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
16604
16605 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
16606 interpreted as signed.
16607 * lib/ebitset.c (ebitset_list): Fix bug.
16608
ff68026d
PE
166092002-10-01 Paul Eggert <eggert@twinsun.com>
16610
16611 More fixes for 64-bit hosts and large bitsets.
16612
16613 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
16614 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
16615 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
16616 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
16617 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
16618 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
16619 bitset_count_): Likewise.
16620 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
16621 bitset_first, bitset_last): Likewise.
16622 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
16623 bitset_stats_list_reverse, bitset_stats_size,
16624 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
16625 Likewise.
16626 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16627 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
16628 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
16629 bitsetv_reflexive_transitive_closure): Likewise.
16630 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
16631 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
16632 Likewise.
16633 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
16634 Likewise.
420f93c8 16635
ff68026d
PE
16636 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
16637 Use size_t, not unsigned int, to count bytes.
16638 * lib/abitset.h (abitset_bytes): Likewise.
16639 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
16640 Likewise.
16641 * lib/bitset.h (bitset_bytes): Likewise.
16642 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
16643 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
16644 * lib/bitsetv.c (bitsetv_alloc): Likewise.
16645 * lib/ebitset.c (ebitset_bytes): Likewise.
16646 * lib/ebitset.h (ebitset_bytes): Likewise.
16647 * lib/lbitset.c (lbitset_bytes): Likewise.
16648 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 16649
ff68026d
PE
16650 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
16651 abitset_subset_p, abitset_disjoint_p, abitset_and,
16652 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
16653 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
16654 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
16655 abitset_or_and, abitset_or_and_cmp):
16656 Use bitset_windex instead of unsigned int.
16657 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16658 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
16659 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
16660 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
16661 Likewise.
16662 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 16663
ff68026d
PE
16664 * lib/bitset.c (bitset_print):
16665 Use proper printf formats for widths of integer types.
16666 * lib/bitset_stats.c (bitset_percent_histogram_print,
16667 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
16668 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
16669 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
16670 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 16671
ff68026d
PE
16672 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
16673 BITSET_SIZE_MAX): New macros.
16674 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
16675 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
16676 to BITSET_WINDEX_MAX.
16677
16678 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
16679 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
16680 since we now return the bitset_bindex type (not int).
16681
16682 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
16683 when computing sizes.
16684 * lib/ebitset.c (ebitset_elts_grow): Likewise.
16685
16686 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
16687 and avoid cast to unsigned.
16688
6aa452a6
AD
166892002-09-30 Akim Demaille <akim@epita.fr>
16690
16691 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
16692 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
16693 Updates from Michael Hayes.
16694
927f7817
AD
166952002-09-30 Art Haas <ahaas@neosoft.com>
16696
16697 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
16698 invocations.
16699 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
16700 defined.
16701
9738f41e
AD
167022002-09-27 Akim Demaille <akim@epita.fr>
16703
16704 Version 1.49c.
16705
a5c75d7f
AD
167062002-09-27 Akim Demaille <akim@epita.fr>
16707
16708 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
16709 (Because of AC_LIBSOURCE).
16710
8280e179
AD
167112002-09-27 Akim Demaille <akim@epita.fr>
16712
16713 Playing with Autoscan.
16714
16715 * configure.ac: Remove the old LIBOBJ tweaks.
16716 (AC_REPLACE_FUNCS): Add strrchr and strtol.
16717 * lib/strrchr.c: New.
16718 * lib/strtol.c: New, from the Coreutils 4.5.1.
16719
ae64af35
AD
167202002-09-27 Akim Demaille <akim@epita.fr>
16721
16722 Playing with Autoscan.
16723
16724 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
16725 * lib/Makefile.am (libbison_a_SOURCES): No longer include
16726 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
16727 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
16728 Coreutils 4.5.1.
16729
d1a1114f
AD
167302002-09-24 Akim Demaille <akim@epita.fr>
16731
16732 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
16733 (Frequently Asked Questions, Parser Stack Overflow): New.
16734
b906441c
AD
167352002-09-13 Akim Demaille <akim@epita.fr>
16736
16737 Playing with autoscan.
16738
16739 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
16740 * src/files.c (skeleton_find): Remove, unused.
16741 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
16742 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
16743
bd701811
AD
167442002-09-13 Akim Demaille <akim@epita.fr>
16745
16746 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
16747 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
16748
e0a13e7b
AD
167492002-09-13 Akim Demaille <akim@epita.fr>
16750
16751 * configure.ac: Require 2.54.
16752 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
16753 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
16754 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
16755 Remove, provided by Autoconf macros.
16756
c97011bf
AD
167572002-09-12 Akim Demaille <akim@epita.fr>
16758
16759 * m4/prereq.m4: Update, from Coreutils 4.5.1.
16760
d862b1be
AD
167612002-09-12 Akim Demaille <akim@epita.fr>
16762
16763 * m4/prereq.m4: Update, from Fileutils 4.1.5.
16764 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
16765 Reported by Martin Mokrejs.
16766
3d38c03a
AD
167672002-09-10 Akim Demaille <akim@epita.fr>
16768
16769 * src/parse-gram.y: Associate a human readable string to each
16770 token type.
16771 * tests/regression.at (Invalid inputs): Adjust.
16772
b6347355
AD
167732002-09-10 Gary V. Vaughan <gary@gnu.org>
16774
16775 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
16776 with an Autoconf-2.5x style configure.ac.
16777
09ba4ab2
PE
167782002-09-06 Paul Eggert <eggert@twinsun.com>
16779
16780 * doc/bison.texinfo (Conditions): Make explicit that the GPL
16781 exception applies only to yacc.c. This is a modification of a
16782 patch originally suggested by Akim Demaille.
16783
21846f69
AD
167842002-09-06 Akim Demaille <akim@epita.fr>
16785
09ba4ab2
PE
16786 * data/c.m4 (b4_copyright): Move the GPL exception comment from
16787 here to...
16788 * data/yacc.c: here.
16789
21846f69
AD
16790 * data/lalr1.cc (struct yyltype): Don't define it, since we use
16791 LocationType.
16792 (b4_ltype): Default to yy::Location from location.hh.
16793
c0ad8bf3
AD
167942002-09-04 Jim Meyering <jim@meyering.net>
16795
16796 * data/yacc.c: Guard the declaration of yytoknum also with
16797 `#ifdef YYPRINT', so it is declared only when used.
16798
3a93251e
AD
167992002-09-04 Akim Demaille <akim@epita.fr>
16800
16801 * configure.in: Rename as...
16802 * configure.ac: this.
16803 Bump to 1.49c.
16804
427c0dda
AD
168052002-09-04 Akim Demaille <akim@epita.fr>
16806
16807 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
16808 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
16809 translate maintainer only messages.
16810
6a254321
PE
168112002-08-12 Paul Eggert <eggert@twinsun.com>
16812
645e30d1
PE
16813 Version 1.49b.
16814
6a254321
PE
16815 * Makefile.am (SUBDIRS): Remove intl.
16816 (DISTCLEANFILES): Remove.
16817 * NEWS: Mention that GNU M4 is now required. Clarify what is
16818 meant by "larger grammars". Mention the pt_BR translation.
16819 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
16820 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
16821 Bump version from 0.11.2 to 0.11.5.
16822 (BISON_PREREQ_STAGE): Remove.
16823 (AM_GNU_GETTEXT): Use external gettext.
16824 (AC_OUTPUT): Remove intl/Makefile.
16825
16826 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
16827
16828 * data/glr.c: Include string.h, for strlen.
16829 (yyreportParseError): Use size_t for yysize.
16830 (yy_yypstack): No longer nested inside yypstates, as nested
16831 functions are not portable. Do not assume size_t is the
16832 same width as int.
16833 (yypstates): Do not assume that ptrdiff_t is the same width
16834 as int, and similarly for yyposn and YYINDEX.
16835
16836 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
16837
16838 * lib/Makefile.am (INCLUDES): Do not include from the intl
16839 directory, which has been removed.
16840 * src/Makefile.am (INCLUDES): Likewise.
16841
16842 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
16843 (bitsets_sources, additional_bitsets_sources, timevars_sources):
16844 New vars.
16845
16846 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
16847 * tests/Makefile.am (EXTRA_DIST): Likewise.
16848
16849 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
16850 Do not assume that bitset_windex is the same width as unsigned.
16851
16852 * lib/abitset.c (abitset_unused_clear): Do not assume that
16853 bitset_word is the same width as int.
16854 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
16855 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
16856 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
16857 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
16858 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
16859
16860 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
16861 portability to one's complement hosts!).
16862 * lib/ebitset.c (ebitset_op1): Likewise.
16863 * lib/lbitset.c (lbitset_op1): Likewise.
16864
16865 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
16866 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
16867 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
16868 Sync with fileutils.
16869 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
16870 lib/gettext.h: Sync with diffutils.
16871
16872 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
16873 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
16874
16875 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
16876 PROTOTYPES to check for prototypes, and "defined __STDC__" to
16877 check for void *.
16878
16879 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
16880 size_t; the old version tried to do this but casted improperly.
16881 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
16882 (bitset_test): Now returns int, not unsigned long.
16883
16884 * lib/bitset_stats.c: Include "gettext.h".
16885 (_): New macro.
16886 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
16887 name locals "index", as it generates unnecessary warnings on some
16888 hosts that have an "index" function.
16889
16890 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
16891 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
16892 they need translation.
16893 * src/LR0.c (state_list_append, new_itemsets, get_state,
16894 append_states, generate_states): Likewise.
16895 * src/assoc.c (assoc_to_string): Likewise.
16896 * src/closure.c (print_closure, set_firsts, closure): Likewise.
16897 * src/gram.c (grammar_dump): Likewise.
16898 * src/injections.c (injections_compute): Likewise.
16899 * src/lalr.c (lookaheads_print): Likewise.
16900 * src/relation.c (relation_transpose): Likewise.
16901 * src/scan-gram.l: Likewise.
16902 * src/tables.c (table_grow, pack_vector): Likewise.
16903
16904 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
16905 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
16906 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
16907 * m4/mbstate_t.m4: Sync with fileutils.
16908 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
16909
16910 * po/LINGUAS: Add pt_BR.
16911 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
16912 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
16913 lib/timevar.c.
16914 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
16915 manual recommends.
16916 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
16917
16918 * src/complain.c (strerror_r): Remove decl; not needed.
16919 (strerror): Use same pattern as ../lib/error.c.
16920
16921 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
16922
16923 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
16924
16925 * src/main.c (main): Cast result of bindtextdomain and textdomain
16926 to void, to avoid a GCC warning when --disable-nls is in effect.
16927
16928 * src/scan-gram.l: Use strings rather than escapes when possible,
16929 to minimize the number of warnings from xgettext.
16930 (handle_action_dollar, handle_action_at): Don't use isdigit,
16931 as it mishandles negative chars and it may not work as expected
16932 outside the C locale.
16933
16934 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
16935 this is a GCC extension and is not portable to other compilers.
16936
16937 * src/system.h (alloca): Use same pattern as ../lib/error.c.
16938 Do not include <ctype.h>; no longer needed.
16939 Do not include <malloc.h>; no longer needed (and generates
16940 warnings on OpenBSD 3.0).
16941
16942 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
16943 it's not portable.
16944
16945 * tests/regression.at: Do not use 'cc -c input.c -o input';
16946 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
16947
16948 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
16949 exit status as failure, not just exit status 1. Sun C exits
16950 with status 2 sometimes.
16951
16952 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
16953 Use it for the two large tests.
16954
c8f002c7
AD
169552002-08-02 Akim Demaille <akim@epita.fr>
16956
16957 * src/conflicts.c (conflicts_output): Don't output rules never
16958 reduced here, since anyway that computation doesn't work.
16959 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
16960 (rule_useless_p, rule_never_reduced_p): New.
16961 (grammar_rules_partial_print): Use a filter instead of a range.
16962 Display the title only if needed.
16963 (grammar_rules_print): Adjust.
16964 (grammar_rules_never_reduced_report): New.
16965 * src/tables.c (action_row): Move the computation of rules never
16966 reduced to...
16967 (token_actions): here.
16968 * src/main.c (main): Make the parser before making the report, so
16969 that rules never reduced are computed.
16970 Call grammar_rules_never_reduced_report.
16971 * src/print.c (print_results): Report rules never reduced.
16972 * tests/conflicts.at, tests/reduce.at: Adjust.
16973
cd08e51e
AD
169742002-08-01 Akim Demaille <akim@epita.fr>
16975
16976 Instead of attaching lookaheads and duplicating the rules being
16977 reduced by a state, attach the lookaheads to the reductions.
16978
16979 * src/state.h (state_t): Remove the `lookaheads',
16980 `lookaheads_rule' member.
16981 (reductions_t): Add a `lookaheads' member.
16982 Use a regular array for the `rules'.
16983 * src/state.c (reductions_new): Initialize the lookaheads member
16984 to 0.
16985 (state_rule_lookaheads_print): Adjust.
16986 * src/state.h, src/state.c (state_reductions_find): New.
16987 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
16988 (count_rr_conflicts): Adjust.
16989 * src/lalr.c (LArule): Remove.
16990 (add_lookback_edge): Adjust.
16991 (state_lookaheads_count): New.
16992 (states_lookaheads_initialize): Merge into...
16993 (initialize_LA): this.
16994 (lalr_free): Adjust.
16995 * src/main.c (main): Don't free nullable and derives too early: it
16996 is used by --verbose.
16997 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
16998
bb0027a9
AD
169992002-08-01 Akim Demaille <akim@epita.fr>
17000
17001 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
17002 `rule_number_t**'.
17003 (set_derives, free_derives): Rename as...
17004 (derives_compute, derives_free): this.
17005 Adjust all dependencies.
17006 * src/nullable.c (set_nullable, free_nullable): Rename as...
17007 (nullable_compute, nullable_free): these.
17008 (rule_list_t): Store rule_t *, not rule_number_t.
17009 * src/state.c (state_rule_lookaheads_print): Directly compare rule
17010 pointers, instead of their numbers.
17011 * src/main.c (main): Call nullable_free, and derives_free earlier,
17012 as they were lo longer used.
17013
3325ddc4
AD
170142002-08-01 Akim Demaille <akim@epita.fr>
17015
17016 * lib/timevar.c (get_time): Include children time.
17017 * src/lalr.h (LA, LArule): Don't export them: used with the
17018 state_t.
17019 * src/lalr.c (LA, LArule): Static.
17020 * src/lalr.h, src/lalr.c (lalr_free): New.
17021 * src/main.c (main): Call it.
17022 * src/tables.c (pack_vector): Check whether loc is >= to the
17023 table_size, not >.
17024 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
17025 (tables_generate): do it, since that's also it which allocates
17026 them.
17027 Don't free LA and LArule, main does.
17028
c6f1a33c
AD
170292002-07-31 Akim Demaille <akim@epita.fr>
17030
17031 Separate parser tables computation and output.
17032
17033 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
17034 (conflict_list, conflict_list_cnt, table, check, table_ninf)
17035 (yydefgoto, yydefact, high): Move to...
17036 * src/tables.h, src/tables.c: here.
17037 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17038 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17039 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
17040 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
17041 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
17042 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
17043 (action_row, save_row, token_actions, save_column, default_goto)
17044 (goto_actions, sort_actions, matching_state, pack_vector)
17045 (table_ninf_remap, pack_table, prepare_actions): Move to...
17046 * src/tables.c: here.
17047 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
17048 * src/output.c (token_actions, output_base, output_conflicts)
17049 (output_check): Merge into...
17050 (prepare_actions): this.
17051 (actions_output): Rename as...
17052 (user_actions_output): this.
17053 * src/main.c (main): Call tables_generate and tables_free.
17054
1509d42f
AD
170552002-07-31 Akim Demaille <akim@epita.fr>
17056
17057 Steal GCC's --time-report support.
17058
17059 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
17060 stolen/adjusted from GCC.
17061 * m4/stage.m4: Remove time related checks.
17062 * m4/timevar.m4: New.
17063 * configure.in: Adjust.
17064 * src/system.h: Adjust to using timevar.h.
17065 * src/getargs.h, src/getargs.c: Support trace_time for
17066 --trace=time.
17067 * src/main.c (stage): Remove.
17068 (main): Replace `stage' invocations with timevar calls.
17069 * src/output.c: Insert pertinent timevar calls.
17070
273a74fa
AD
170712002-07-31 Akim Demaille <akim@epita.fr>
17072
17073 Let --trace have arguments.
17074
17075 * src/getargs.h (enum trace_e): New.
17076 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
17077 (long_options, short_options): --trace/-T takes an optional
17078 argument.
17079 Change all the uses of trace_flag to reflect the new flags.
17080 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
17081
17082 Strengthen `stage' portability.
17083
17084 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
17085 * configure.in: Use it.
17086 Don't check for malloc.h and sys/times.h.
17087 * src/system.h: Include them when appropriate.
17088 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
17089 times and struct tms are available.
17090
217598da
AD
170912002-07-30 Akim Demaille <akim@epita.fr>
17092
17093 In verbose parse error message, don't report `error' as an
17094 expected token.
17095 * tests/actions.at (Printers and Destructors): Adjust.
17096 * tests/calc.at (Calculator $1): Adjust.
17097 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
17098 error message, do not report the parser accepts the error token in
17099 that state.
17100
52489d44
AD
171012002-07-30 Akim Demaille <akim@epita.fr>
17102
17103 Normalize conflict related messages.
17104
17105 * src/complain.h, src/complain.c (warn, complain): New.
17106 * src/conflicts.c (conflicts_print): Use them.
17107 (conflict_report_yacc): New, extracted from...
17108 (conflicts_print): here.
17109 * tests/conflicts.at, tests/existing.at: Adjust.
17110
e8832397
AD
171112002-07-30 Akim Demaille <akim@epita.fr>
17112
17113 Report rules which are never reduced by the parser: those hidden
17114 by conflicts.
17115
17116 * src/LR0.c (save_reductions): Don't make the final state too
17117 different: save its reduction (accept) instead of having a state
17118 without any action (no shift or goto, no reduce).
17119 Note: the final state is now a ``regular'' state, i.e., the
17120 parsers now contain `reduce 0' as default reduction.
17121 Nevertheless, since they decide to `accept' when yystate =
17122 final_state, they still will not reduce rule 0.
17123 * src/print.c (print_actions, print_reduction): Adjust.
17124 * src/output.c (action_row): Track reduced rules.
17125 (token_actions): Report rules never reduced.
17126 * tests/conflicts.at, tests/regression.at: Adjust.
17127
caf23d24
AD
171282002-07-30 Akim Demaille <akim@epita.fr>
17129
17130 `stage' was accidently included in a previous patch.
17131 Initiate its autoconfiscation.
17132
17133 * configure.in: Look for malloc.h and sys/times.h.
17134 * src/main.c (stage): Adjust.
17135 Report only when trace_flag.
17136
640748ee
AD
171372002-07-29 Akim Demaille <akim@epita.fr>
17138
17139 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
17140 state_number_t.
17141 (errs_t): symbol_t*, not symbol_number_t.
17142 (reductions_t): rule_t*, not rule_number_t.
17143 (FOR_EACH_SHIFT): New.
17144 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
17145 * src/print.c, src/print_graph.c: Adjust.
17146
88bce5a2
AD
171472002-07-29 Akim Demaille <akim@epita.fr>
17148
17149 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
17150
17151 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
17152 (endtoken, accept): these.
17153 * src/reader.c (reader): Set endtoken's default tag to "$end".
17154 Set undeftoken's tag to "$undefined" instead of "$undefined.".
17155 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
17156 Adjust.
17157
1bfb97db
AD
171582002-07-29 Akim Demaille <akim@epita.fr>
17159
17160 * src/reduce.c (reduce_grammar): When the language is empty,
17161 complain about the start symbol, not the axiom.
17162 Use its location.
17163 * tests/reduce.at (Empty Language): New.
17164
fc5734fe
AD
171652002-07-26 Akim Demaille <akim@epita.fr>
17166
17167 * src/reader.h, src/reader.c (gram_error): ... can't get
17168 yycontrol without making too strong assumptions on the parser
17169 itself.
17170 * src/output.c (prepare_tokens): Use the real 0th value of
17171 token_translations instead of `0'.
17172 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
17173 visible here.
17174 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
17175 for the time being: %locations ought to provide it to yyerror.
17176
3650b4b8
AD
171772002-07-25 Akim Demaille <akim@epita.fr>
17178
17179 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
17180 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
17181 * tests/regression.at (Web2c Actions): Adjust.
17182
4b3d3a8e
AD
171832002-07-25 Akim Demaille <akim@epita.fr>
17184
17185 Stop storing rules from 1 to nrules + 1.
17186
17187 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
17188 * src/nullable.c, src/output.c, src/print.c, src/reader.c
17189 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
17190 Iterate from 0 to nrules.
17191 Use rule_number_as_item_number and item_number_as_rule_number.
17192 Adjust to `derive' now containing possibly 0.
17193 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
17194 Handle the `- 1' part in rule numbers from/to item numbers.
17195 * src/conflicts.c (log_resolution): Fix the message which reversed
17196 shift and reduce.
17197 * src/output.c (action_row): Initialize default_rule to -1.
17198 (token_actions): Adjust.
17199 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
17200 expected output.
17201 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
17202
4a2a22f4
AD
172032002-07-25 Akim Demaille <akim@epita.fr>
17204
17205 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
17206 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
17207 (b4_c_knr_arg_decl): New.
17208 * data/yacc.c: Use it to define yysymprint, yydestruct, and
17209 yyreport_parse_error.
17210
b8df3223
AD
172112002-07-25 Akim Demaille <akim@epita.fr>
17212
17213 * data/yacc.c (yyreport_parse_error): New, extracted from...
17214 (yyparse): here.
17215 (yydestruct, yysymprint): Move above yyparse.
17216 Be K&R compliant.
17217
a762e609
AD
172182002-07-25 Akim Demaille <akim@epita.fr>
17219
17220 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
17221 replace...
17222 (b4_sint_type, b4_uint_type): these.
17223 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
17224 * tests/regression.at (Web2c Actions): Adjust.
17225
12b0043a
AD
172262002-07-25 Akim Demaille <akim@epita.fr>
17227
17228 * src/gram.h (TIEM_NUMBER_MAX): New.
17229 (item_number_of_rule_number, rule_number_of_item_number): Rename
17230 as...
17231 (rule_number_as_item_number, item_number_as_rule_number): these.
17232 Adjust dependencies.
17233 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17234 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17235 (symbol_number_to_vector_number): New.
17236 (order): Of vector_number_t* type.
17237 (base_t, BASE_MAX, BASE_MIN): New.
17238 (froms, tos, width, pos, check): Of base_t type.
17239 (action_number_t, ACTION_MIN, ACTION_MAX): New.
17240 (actrow): Of action_number_t type.
17241 (conflrow): Of unsigned int type.
17242 (table_ninf, base_ninf): New.
17243 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
17244 (muscle_insert_int_table, muscle_insert_base_table)
17245 (muscle_insert_rule_number_table): New.
17246 (prepare_tokens): Output `toknum' as int_table.
17247 (action_row): Returns a rule_number_t.
17248 Use ACTION_MIN, not SHRT_MIN.
17249 (token_actions): yydefact is rule_number_t*.
17250 (table_ninf_remap): New.
17251 (pack_table): Use it for `base' and `table'.
17252 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
17253 replaced with...
17254 (YYPACT_NINF, YYTABLE_NINF): these.
17255 (yypact, yytable): Compute their types instead of hard-coded
17256 `short'.
17257 * tests/regression.at (Web2c Actions): Adjust.
17258
5dde258a
AD
172592002-07-19 Akim Demaille <akim@epita.fr>
17260
17261 * src/scan-gram.l (id): Can start with an underscore.
17262
a945ec39
AD
172632002-07-16 Akim Demaille <akim@epita.fr>
17264
17265 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
17266 Adjust all former `associativity' dependencies.
17267 * src/symtab.c (symbol_new): Default associativity is `undef', not
17268 `right'.
17269 (symbol_check_alias_consistence): Adjust.
17270
fae437e8
AD
172712002-07-09 Akim Demaille <akim@epita.fr>
17272
17273 * doc/bison.texinfo: Properly set the ``header'' part.
17274 Use @dircategory ``GNU programming tools'' as per Texinfo's
17275 documentation.
17276 Use @copying.
17277
1a715ef2
AD
172782002-07-09 Akim Demaille <akim@epita.fr>
17279
17280 * lib/quotearg.h: Protect against multiple inclusions.
17281 * src/location.h (location_t): Add a `file' member.
17282 (LOCATION_RESET, LOCATION_PRINT): Adjust.
17283 * src/complain.c (warn_at, complain_at, fatal_at): Drop
17284 `error_one_per_line' support.
17285
a5d50994
AD
172862002-07-09 Akim Demaille <akim@epita.fr>
17287
17288 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
17289 * src/reader.c (lineno): Remove.
17290 Adjust all dependencies.
17291 (get_merge_function): Take a location and use complain_at.
17292 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
17293 * tests/regression.at (Invalid inputs, Mixing %token styles):
17294 Adjust.
17295
b275314e
AD
172962002-07-09 Akim Demaille <akim@epita.fr>
17297
17298 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
17299 recovery rule, and forbid extensions when --yacc.
17300 (gram_error): Use complain_at.
17301 * src/reader.c (reader): Exit if there were parse errors.
17302
865b9df1
AD
173032002-07-09 Akim Demaille <akim@epita.fr>
17304
17305 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
17306 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
17307 Reported by R Blake <blakers@mac.com>.
17308
c76e14da
AD
173092002-07-09 Akim Demaille <akim@epita.fr>
17310
17311 * data/yacc.c: Output the copyright notive in the header.
17312
7db2ed2d
AD
173132002-07-03 Akim Demaille <akim@epita.fr>
17314
17315 * src/output.c (froms, tos): Are state_number_t.
17316 (save_column): sp, sp1, and sp2 are state_number_t.
17317 (prepare): Rename `final' as `final_state_number', `nnts' as
17318 `nterms_number', `nrules' as `rules_number', `nstates' as
17319 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
17320 unused.
17321 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
17322 * data/lalr1.cc (nsym_): Remove, unused.
17323
e68e0410
AD
173242002-07-03 Akim Demaille <akim@epita.fr>
17325
17326 * src/lalr.h, src/lalr.c (goto_number_t): New.
17327 * src/lalr.c (goto_list_t): New.
17328 Propagate them.
17329 * src/nullable.c (rule_list_t): New.
17330 Propagate.
17331 * src/types.h: Remove.
17332
e1a4f3a4
AD
173332002-07-03 Akim Demaille <akim@epita.fr>
17334
17335 * src/closure.c (print_fderives): Use rule_rhs_print.
17336 * src/derives.c (print_derives): Use rule_rhs_print.
17337 (rule_list_t): New, replaces `shorts'.
17338 (set_derives): Add comments.
17339 * tests/sets.at (Nullable, Firsts): Adjust.
17340
536545f3
AD
173412002-07-03 Akim Demaille <akim@epita.fr>
17342
17343 * src/output.c (prepare_actions): Free `tally' and `width'.
17344 (prepare_actions): Allocate and free `order'.
17345 * src/symtab.c (symbols_free): Free `symbols'.
17346 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
17347 * src/output.c (m4_invoke): Move to...
17348 * src/scan-skel.l: here.
17349 (<<EOF>>): Close yyout, and free its name.
17350
8b752b00
AD
173512002-07-03 Akim Demaille <akim@epita.fr>
17352
17353 Fix some memory leaks, and fix a bug: state 0 was examined twice.
17354
17355 * src/LR0.c (new_state): Merge into...
17356 (state_list_append): this.
17357 (new_states): Merge into...
17358 (generate_states): here.
17359 (set_states): Don't ensure a proper `errs' state member here, do it...
17360 * src/conflicts.c (conflicts_solve): here.
17361 * src/state.h, src/state.c: Comment changes.
17362 (state_t): Rename member `shifts' as `transitions'.
17363 Adjust all dependencies.
17364 (errs_new): For consistency, also take the values as argument.
17365 (errs_dup): Remove.
17366 (state_errs_set): New.
17367 (state_reductions_set, state_transitions_set): Assert that no
17368 previous value was assigned.
17369 (state_free): New.
17370 (states_free): Use it.
17371 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
17372 temporary storage: use `errs' and `nerrs' as elsewhere.
17373 (set_conflicts): Allocate and free this `errs'.
17374
613f5e1a
AD
173752002-07-02 Akim Demaille <akim@epita.fr>
17376
17377 * lib/libiberty.h: New.
17378 * lib: Update the bitset implementation from upstream.
17379 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
17380 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
17381 * src/main.c: Adjust bitset stats calls.
17382
26e0cadc
PE
173832002-07-01 Paul Eggert <eggert@twinsun.com>
17384
17385 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
17386 char, so that negative chars don't collide with $.
17387
1154cced
AD
173882002-06-30 Akim Demaille <akim@epita.fr>
17389
17390 Have the GLR tests be `warning' checked, and fix the warnings.
17391
17392 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
17393 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
17394 (yyremoveDeletes): `yyi' and `yyj' are size_t.
17395 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
17396 (yyaddDeferredAction): static.
17397 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
17398 (yyreportParseError): yyprefix is const.
17399 yytokenp is used only when verbose.
17400 (yy__GNUC__): Replace with __GNUC__.
17401 (yypdumpstack): yyi is size_t.
17402 (yypreference): Un-yy local variables and arguments, to avoid
17403 clashes with `yyr1'. Anyway, we are not in the user name space.
17404 (yytname_size): be an int, as is compared with ints.
17405 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
17406 Use them.
17407 * tests/cxx-gram.at: Use quotation to protect $1.
17408 Use AT_COMPILE to enable warnings hunts.
17409 Prototype yylex and yyerror.
17410 `Use' argc.
17411 Include `string.h', not `strings.h'.
17412 Produce and prototype stmtMerge only when used.
17413 yylex takes a location.
17414
97650f4e
AD
174152002-06-30 Akim Demaille <akim@epita.fr>
17416
17417 We spend a lot of time in quotearg, in particular when --verbose.
17418
17419 * src/symtab.c (symbol_get): Store a quoted version of the key.
17420 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
17421 Adjust all callers.
17422
d2576365
AD
174232002-06-30 Akim Demaille <akim@epita.fr>
17424
17425 * src/state.h (reductions_t): Rename member `nreds' as num.
17426 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
17427 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
17428
ccaf65bc
AD
174292002-06-30 Akim Demaille <akim@epita.fr>
17430
17431 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
17432 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
17433 (shifts_to): Rename as...
17434 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
17435 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
17436 (TRANSITION_IS_DISABLED, transitions_to): these.
17437
87675353
AD
174382002-06-30 Akim Demaille <akim@epita.fr>
17439
17440 * src/print.c (print_shifts, print_gotos): Merge into...
17441 (print_transitions): this.
17442 (print_transitions, print_errs, print_reductions): Align the
17443 lookaheads columns.
17444 (print_core, print_transitions, print_errs, print_state,
17445 print_grammar): Output empty lines separator before, not after.
17446 (state_default_rule_compute): Rename as...
17447 (state_default_rule): this.
17448 * tests/conflicts.at (Defaulted Conflicted Reduction),
17449 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
17450 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
17451
ce4ccb4b
AD
174522002-06-30 Akim Demaille <akim@epita.fr>
17453
17454 Display items as we display rules.
17455
17456 * src/gram.h, src/gram.c (rule_lhs_print): New.
17457 * src/gram.c (grammar_rules_partial_print): Use it.
17458 * src/print.c (print_core): Likewise.
17459 * tests/conflicts.at (Defaulted Conflicted Reduction),
17460 (Unresolved SR Conflicts): Adjust.
17461 (Unresolved SR Conflicts): Adjust and rename as...
17462 (Resolved SR Conflicts): this, as was meant.
17463 * tests/regression.at (Web2c Report): Adjust.
17464
bc933ef1
AD
174652002-06-30 Akim Demaille <akim@epita.fr>
17466
17467 * src/print.c (state_default_rule_compute): New, extracted from...
17468 (print_reductions): here.
17469 Pessimize, but clarify the code.
17470 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
17471
53d4308d
AD
174722002-06-30 Akim Demaille <akim@epita.fr>
17473
17474 * src/output.c (action_row): Let default_rule be always a rule
17475 number.
17476
574fb2d5
AD
174772002-06-30 Akim Demaille <akim@epita.fr>
17478
17479 * src/closure.c (print_firsts, print_fderives, closure):
17480 Use BITSET_EXECUTE.
17481 * src/lalr.c (lookaheads_print): Likewise.
17482 * src/state.c (state_rule_lookaheads_print): Likewise.
17483 * src/print_graph.c (print_core): Likewise.
17484 * src/print.c (print_reductions): Likewise.
17485 * src/output.c (action_row): Likewise.
17486 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
17487
05811fd7
AD
174882002-06-30 Akim Demaille <akim@epita.fr>
17489
17490 * src/print_graph.c: Use report_flag.
17491
0e4d5753
AD
174922002-06-30 Akim Demaille <akim@epita.fr>
17493
17494 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
17495 to...
17496 * src/relation.h, src/relation.c (traverse, relation_digraph)
17497 (relation_print, relation_transpose): New.
17498
24c7d800
AD
174992002-06-30 Akim Demaille <akim@epita.fr>
17500
17501 * src/state.h, src/state.c (shifts_to): New.
17502 * src/lalr.c (build_relations): Use it.
17503
9222837b
AD
175042002-06-30 Akim Demaille <akim@epita.fr>
17505
17506 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
17507 (item_number_of_rule_number, rule_number_of_item_number): New.
17508 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
17509 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
17510 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
17511 Propagate their use.
17512 Much remains to be done, in particular wrt `shorts' from types.h.
17513
260008e5
AD
175142002-06-30 Akim Demaille <akim@epita.fr>
17515
17516 * src/symtab.c (symbol_new): Initialize the `printer' member.
17517
8a731ca8
AD
175182002-06-30 Akim Demaille <akim@epita.fr>
17519
17520 * src/LR0.c (save_reductions): Remove, replaced by...
17521 * src/state.h, src/state.c (state_reductions_set): New.
17522 (reductions, errs): Rename as...
17523 (reductions_t, errs_t): these.
17524 Adjust all dependencies.
17525
32e1e0a4
AD
175262002-06-30 Akim Demaille <akim@epita.fr>
17527
17528 * src/LR0.c (state_list_t, state_list_append): New.
17529 (first_state, last_state): Now symbol_list_t.
17530 (this_state): Remove.
17531 (new_itemsets, append_states, save_reductions): Take a state_t as
17532 argument.
17533 (set_states, generate_states): Adjust.
17534 (save_shifts): Remove, replaced by...
17535 * src/state.h, src/state.c (state_shifts_set): New.
17536 (shifts): Rename as...
17537 (shifts_t): this.
17538 Adjust all dependencies.
17539 * src/state.h (state_t): Remove the `next' member.
17540
e5fb6710
AD
175412002-06-30 Akim Demaille <akim@epita.fr>
17542
17543 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
17544 escaped in slot 0.
17545
c7ca99d4
AD
175462002-06-30 Akim Demaille <akim@epita.fr>
17547
17548 Use hash.h for the state hash table.
17549
17550 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
17551 (allocate_storage): Use state_hash_new.
17552 (free_storage): Use state_hash_free.
17553 (new_state, get_state): Adjust.
17554 * src/lalr.h, src/lalr.c (states): Move to...
17555 * src/states.h (state_t): Remove the `link' member, no longer
17556 used.
17557 * src/states.h, src/states.c: here.
17558 (state_hash_new, state_hash_free, state_hash_lookup)
17559 (state_hash_insert, states_free): New.
17560 * src/states.c (state_table, state_compare, state_hash): New.
17561 * src/output.c (output_actions): Do not free states now, since we
17562 still need to know the final_state number in `prepare', called
17563 afterwards. Do it...
17564 * src/main.c (main): here: call states_free after `output'.
17565
df0e7316
AD
175662002-06-30 Akim Demaille <akim@epita.fr>
17567
17568 * src/state.h, src/state.c (state_new): New, extracted from...
17569 * src/LR0.c (new_state): here.
17570 * src/state.h (STATE_ALLOC): Move to...
17571 * src/state.c: here.
17572 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
17573 * src/state.h, src/state.c: here.
17574
39f41916
AD
175752002-06-30 Akim Demaille <akim@epita.fr>
17576
17577 * src/reader.c (gensym): Rename as...
17578 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
17579 (getsym): Rename as...
17580 (symbol_get): this.
17581
d57650a5
AD
175822002-06-30 Akim Demaille <akim@epita.fr>
17583
17584 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
17585 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
17586 * src/output.c, src/print.c, src/print_graph.c: Propagate.
17587 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
17588
5a08f1ce
AD
175892002-06-30 Akim Demaille <akim@epita.fr>
17590
17591 Make the test suite pass with warnings checked.
17592
17593 * tests/actions.at (Printers and Destructors): Improve.
17594 Avoid unsigned vs. signed issues.
17595 * tests/calc.at: Don't exercise the scanner here, do it...
17596 * tests/input.at (Torturing the Scanner): here.
17597
720623af
PH
175982002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17599
88e7e941 17600 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
17601 reorganize first lines parallel to yacc.c.
17602
fb8135fa
AD
176032002-06-28 Akim Demaille <akim@epita.fr>
17604
17605 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
17606 (b4_token_enum, b4_token_defines): New, factored from...
17607 * data/lalr1.cc, data/yacc.c, glr.c: here.
17608
41442480
AD
176092002-06-28 Akim Demaille <akim@epita.fr>
17610
17611 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
17612 unused variables.
17613 * src/output.c (merger_output): static.
17614
e0e5bf84
AD
176152002-06-28 Akim Demaille <akim@epita.fr>
17616
ba0fe3c7 17617 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
17618 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
17619 pacify GCC.
17620 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 17621
676385e2
PH
176222002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17623
17624 Accumulated changelog for new GLR parsing features.
17625
6a254321 17626 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
17627 conflicts_total_count.
17628 * src/conflicts.h: Ditto.
17629 * src/output.c (token_actions): Use the new name.
17630 (output_conflicts): Change conflp => conflict_list_heads, and
17631 confl => conflict_list for better readability.
17632 * data/glr.c: Use the new names.
17633 * NEWS: Add self to GLR announcement.
e0e5bf84 17634
676385e2
PH
17635 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
17636
17637 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
17638 Akim Demaille.
17639
17640 * data/bison.glr: Change name to glr.c
17641 * data/glr.c: Renamed from bison.glr.
17642 * data/Makefile.am: Add glr.c
e0e5bf84
AD
17643
17644 * src/getargs.c:
17645
676385e2 17646 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 17647 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 17648
676385e2
PH
17649 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17650
17651 * data/bison.glr: Be sure to restore the
17652 current #line when returning to the skeleton contents after having
17653 exposed the input file's #line.
17654
17655 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17656
17657 * data/bison.glr: Bring up to date with changes to bison.simple.
17658
17659 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17660
17661 * data/bison.glr: Correct definitions that use b4_prefix.
17662 Various reformatting.
17663 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
17664 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
17665 yytokenp argument; now part of stack.
17666 (yychar): Define to behave as documented.
17667 (yyclearin): Ditto.
e0e5bf84 17668
676385e2
PH
17669 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17670
17671 * src/reader.h: Add declaration for free_merger_functions.
17672
17673 * src/reader.c (merge_functions): New variable.
17674 (get_merge_function): New function.
17675 (free_merger_functions): New function.
17676 (readgram): Check for %prec that is not followed by a symbol.
17677 Handle %dprec and %merge declarations.
17678 (packgram): Initialize dprec and merger fields in rules array.
17679
17680 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
17681 conflict_list_cnt, conflict_list_free): New variables.
17682 (table_grow): Also grow conflict_table.
e0e5bf84 17683 (prepare_rules): Output dprec and merger tables.
676385e2 17684 (conflict_row): New function.
e0e5bf84 17685 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
17686 default reduction in conflicted states for GLR parser so that there
17687 are spaces for the conflict lists.
17688 (save_row): Also save conflict information.
17689 (token_actions): Allocate conflict list.
17690 (merger_output): New function.
17691 (pack_vector): Pack conflict table, too.
17692 (output_conflicts): New function to output yyconflp and yyconfl.
17693 (output_check): Allocate conflict_tos.
17694 (output_actions): Output conflict tables, also.
17695 (output_skeleton): Output b4_mergers definition.
17696 (prepare): Output b4_max_rhs_length definition.
17697 Use 'bison.glr' as default skeleton for GLR parsers.
17698
17699 * src/gram.c (glr_parser): New flag.
17700 (grammar_free): Call free_merger_functions.
17701
17702 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
17703 all pairs of conflicting reductions, rather than just all tokens
17704 causing conflicts. Needed to size conflict tables.
e0e5bf84 17705 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
17706 interface.
17707 (conflicts_print): Ditto.
17708 (count_total_conflicts): New function.
17709
17710 * src/reader.h (merger_list): New type.
17711 (merge_functions): New variable.
17712
17713 * src/lex.h (tok_dprec, tok_merge): New token types.
17714
17715 * src/gram.h (rule_s): Add dprec and merger fields.
17716 (glr_parser): New flag.
17717
17718 * src/conflicts.h (count_total_conflicts): New function.
17719
17720 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
17721
17722 * doc/bison.texinfo (Generalized LR Parsing): New section.
17723 (GLR Parsers): New section.
17724 (Language and Grammar): Mention GLR parsing.
17725 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
17726 Correct typo ("tge" -> "the").
17727
17728 * data/bison.glr: New skeleton for GLR parsing.
17729
17730 * tests/cxx-gram.at: New tests for GLR parsing.
17731
17732 * tests/testsuite.at: Include cxx-gram.at.
17733
17734 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 17735
676385e2
PH
17736 * src/parse-gram.y:
17737
17738 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
17739
17740 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 17741
b5480d74 177422002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
17743
17744 * src/options.h, src/options.c: Remove.
17745 * src/getargs.c (short_options, long_options): New.
17746
60491a94
AD
177472002-06-27 Akim Demaille <akim@epita.fr>
17748
17749 * data/bison.simple, data/bison.c++: Rename as...
17750 * data/yacc.c, data/lalr1.cc: these.
17751 * doc/bison.texinfo (Environment Variables): Remove.
17752
9be0c25b
AD
177532002-06-25 Raja R Harinath <harinath@cs.umn.edu>
17754
17755 * src/getargs.c (report_argmatch): Initialize strtok().
17756
1ae72863
AD
177572002-06-20 Akim Demaille <akim@epita.fr>
17758
17759 * data/bison.simple (b4_symbol_actions): New, replaces...
17760 (b4_symbol_destructor, b4_symbol_printer): these.
17761 (yysymprint): Be sure to call YYPRINT only for tokens, and using
17762 user token numbers.
17763
87542d29
AD
177642002-06-20 Akim Demaille <akim@epita.fr>
17765
17766 * data/bison.simple (yydestructor): Rename as...
17767 (yydestruct): this.
17768
1a31ed21
AD
177692002-06-20 Akim Demaille <akim@epita.fr>
17770
17771 * src/symtab.h, src/symtab.c (symbol_type_set)
17772 (symbol_destructor_set, symbol_precedence_set): The location is
17773 the last argument.
17774 Adjust all callers.
17775
e776192e
AD
177762002-06-20 Akim Demaille <akim@epita.fr>
17777
17778 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
17779 internals.
17780 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
17781 Takes a location.
17782 * src/symtab.h, src/symtab.c (symbol_class_set)
17783 (symbol_user_token_number_set): Likewise.
17784 Adjust all callers.
17785 Promote complain_at.
17786 * tests/input.at (Type Clashes): Adjust.
17787
5c1180b3
AD
177882002-06-20 Akim Demaille <akim@epita.fr>
17789
17790 * data/bison.simple (YYLEX): Fix the declaration when
17791 %pure-parser.
17792
e3170060
AD
177932002-06-20 Akim Demaille <akim@epita.fr>
17794
17795 * data/bison.simple (yysymprint): Don't print the token number,
17796 just its name.
17797 * tests/actions.at (Destructors): Rename as...
17798 (Printers and Destructors): this.
17799 Also exercise %printer.
17800
253862fd
AD
178012002-06-20 Akim Demaille <akim@epita.fr>
17802
17803 * data/bison.simple (YYDSYMPRINT): New.
17804 Use it to remove many of the #if YYDEBUG/if (yydebug).
17805
366eea36
AD
178062002-06-20 Akim Demaille <akim@epita.fr>
17807
17808 * src/symtab.h, src/symtab.c (symbol_t): printer and
17809 printer_location are new members.
17810 (symbol_printer_set): New.
17811 * src/parse-gram.y (PERCENT_PRINTER): New token.
17812 Handle its associated rule.
17813 * src/scan-gram.l: Adjust.
17814 (handle_destructor_at, handle_destructor_dollar): Rename as...
17815 (handle_symbol_code_at, handle_symbol_code_dollar): these.
17816 * src/output.c (symbol_printers_output): New.
17817 (output_skeleton): Call it.
17818 * data/bison.simple (yysymprint): New. Cannot be named yyprint
17819 since there are already many grammar files with a user `yyprint'.
17820 Replace the calls to YYPRINT to calls to yysymprint.
17821 * tests/calc.at: Adjust.
17822 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
17823 taking advantage of parser very internal details (stack size!).
17824
4f25ebb0
AD
178252002-06-20 Akim Demaille <akim@epita.fr>
17826
17827 * src/scan-gram.l: Complete the scanner with the missing patterns
17828 to pacify Flex.
17829 Use `quote' and `symbol_tag_get' where appropriate.
17830
93b68a0e
AD
178312002-06-19 Akim Demaille <akim@epita.fr>
17832
17833 * tests/actions.at (Destructors): Augment to test locations.
17834 * data/bison.simple (yydestructor): Pass it the current location
17835 if locations are enabled.
17836 Prototype only when __STDC__ or C++.
17837 Change the argument names to move into the yy name space: there is
17838 user code here.
17839
58612f1d
AD
178402002-06-19 Akim Demaille <akim@epita.fr>
17841
74310291
AD
17842 * data/bison.simple (b4_pure_if): New.
17843 Use it instead of #ifdef YYPURE.
17844
178452002-06-19 Akim Demaille <akim@epita.fr>
17846
17847 * data/bison.simple (b4_location_if): New.
58612f1d
AD
17848 Use it instead of #ifdef YYLSP_NEEDED.
17849
f25bfb75
AD
178502002-06-19 Akim Demaille <akim@epita.fr>
17851
17852 Prepare @$ in %destructor, but currently don't bind it in the
17853 skeleton, as %location use is not cleaned up yet.
17854
17855 * src/scan-gram.l (handle_dollar, handle_destructor_at)
17856 (handle_action_at): New.
17857 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
17858 a braced_code_t and a location as additional arguments.
17859 (handle_destructor_dollar): Instead of requiring `b4_eval', just
17860 unquote one when outputting `b4_dollar_dollar'.
17861 Adjust callers.
17862 * data/bison.simple (b4_eval): Remove.
17863 (b4_symbol_destructor): Adjust.
17864 * tests/input.at (Invalid @n): Adjust.
17865
c732d2c6
AD
178662002-06-19 Zack Weinberg <zack@codesourcery.com>
17867
17868 * doc/bison.texinfo: Document ability to have multiple
17869 prologue sections.
17870
8c165d89
AD
178712002-06-18 Akim Demaille <akim@epita.fr>
17872
17873 * src/files.c (compute_base_names): When computing the output file
17874 names from the input file name, strip the directory part.
17875
ca98bf57
AD
178762002-06-18 Akim Demaille <akim@epita.fr>
17877
17878 * data/bison.simple.new: Comment changes.
17879 Reported by Andreas Schwab.
17880
0bfb02ff
AD
178812002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
17882
17883 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
17884 there are no `label `yyoverflowlab' defined but not used' warnings
17885 when yyoverflow is defined.
17886
24c0aad7
AD
178872002-06-18 Akim Demaille <akim@epita.fr>
17888
17889 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
17890 new member.
17891 (symbol_destructor_set): Adjust.
17892 * src/output.c (symbol_destructors_output): Output the destructor
17893 locations.
17894 Output the symbol name.
17895 * data/bison.simple (b4_symbol_destructor): Adjust.
17896
5719c109
AD
178972002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
17898 and Akim Demaille <akim@epita.fr>
17899
17900 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
17901 what's left on the stack when the error recovery hits EOF.
17902 * tests/actions.at (Destructors): Complete to exercise this case.
17903
9280d3ef
AD
179042002-06-17 Akim Demaille <akim@epita.fr>
17905
17906 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
17907 arguments is really empty, not only equal to `[]'.
17908 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
17909 member.
17910 (symbol_destructor_set): New.
17911 * src/output.c (symbol_destructors_output): New.
17912 * src/reader.h (brace_code_t, current_braced_code): New.
17913 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
17914 (handle_dollar): Rename as...
17915 (handle_action_dollar): this.
17916 (handle_destructor_dollar): New.
17917 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
17918 (grammar_declaration): Use it.
17919 * data/bison.simple (yystos): Is always defined.
17920 (yydestructor): New.
17921 * tests/actions.at (Destructors): New.
17922 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
17923
dafdc66f
AD
179242002-06-17 Akim Demaille <akim@epita.fr>
17925
17926 * src/symlist.h, src/symlist.c (symbol_list_length): New.
17927 * src/scan-gram.l (handle_dollar, handle_at): Compute the
17928 rule_length only when needed.
17929 * src/output.c (actions_output, token_definitions_output): Output
17930 the full M4 block.
17931 * src/symtab.c: Don't access directly to the symbol tag, use
17932 symbol_tag_get.
17933 * src/parse-gram.y: Use symbol_list_free.
17934
56c47203
AD
179352002-06-17 Akim Demaille <akim@epita.fr>
17936
17937 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
17938 (symbol_list_prepend, get_type_name): Move to...
17939 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
17940 (symbol_list_prepend, symbol_list_n_type_name_get): here.
17941 Adjust all callers.
17942 (symbol_list_free): New.
17943 * src/scan-gram.l (handle_dollar): Takes a location.
17944 * tests/input.at (Invalid $n): Adjust.
17945
1e0bab92
AD
179462002-06-17 Akim Demaille <akim@epita.fr>
17947
17948 * src/reader.h, src/reader.c (symbol_list_new): Export it.
17949 (symbol_list_prepend): New.
17950 * src/parse-gram.y (%union): `list' is a new member.
17951 (symbols.1): New, replaces...
17952 (terms_to_prec.1, nterms_to_type.1): these.
17953 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
17954 Take a location as additional argument.
17955 Adjust all callers.
17956
04e60654
AD
179572002-06-15 Akim Demaille <akim@epita.fr>
17958
17959 * src/parse-gram.y: Move %token in the declaration section so that
17960 we don't depend upon CVS Bison.
17961
10e5b8bd
AD
179622002-06-15 Akim Demaille <akim@epita.fr>
17963
17964 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
17965 * src/print.c (print_core): Use it.
17966
9801d40c
AD
179672002-06-15 Akim Demaille <akim@epita.fr>
17968
17969 * src/conflicts.c (log_resolution): Accept the rule involved in
17970 the sr conflicts instead of the lookahead number that points to
17971 that rule.
17972 (flush_reduce): Accept the current lookahead vector as argument,
17973 instead of the index in LA.
17974 (resolve_sr_conflict): Accept the current number of lookahead
17975 bitset to consider for the STATE, instead of the index in LA.
17976 (set_conflicts): Adjust.
17977 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
17978
c0263492
AD
179792002-06-15 Akim Demaille <akim@epita.fr>
17980
17981 * src/state.h (state_t): Replace the `lookaheadsp' member, a
17982 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
17983 Adjust all dependencies.
17984 * src/lalr.c (initialize_lookaheads): Split into...
17985 (states_lookaheads_count, states_lookaheads_initialize): these.
17986 (lalr): Adjust.
17987
9757c359
AD
179882002-06-15 Akim Demaille <akim@epita.fr>
17989
17990 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
17991 out of...
17992 (grammar_rules_print): here.
17993 * src/reduce.c (reduce_output): Use it.
17994 * tests/reduce.at (Useless Rules, Reduced Automaton)
17995 (Underivable Rules): Adjust.
17996
6b98e4b5
AD
179972002-06-15 Akim Demaille <akim@epita.fr>
17998
17999 Copy BYacc's nice way to report the grammar.
18000
18001 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
18002 New.
18003 Don't print the rules' location, it is confusing and useless.
18004 (rule_print): Use grammar_rhs_print.
18005 * src/print.c (print_grammar): Use grammar_rules_print.
18006
6b98e4b5
AD
180072002-06-15 Akim Demaille <akim@epita.fr>
18008
18009 Complete and rationalize `useless thing' warnings.
18010
18011 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
18012 (symbol_tag_print): New.
18013 Use them everywhere in place of accessing directly the tag member.
18014 * src/gram.h, src/gram.c (rule_print): New.
18015 Use it where a rule used to be printed `by hand'.
18016 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
18017 (reduce_grammar_tables): Report the useless rules.
18018 (reduce_print): Useless things are a warning, not an error.
18019 Report it as such.
18020 * tests/reduce.at (Useless Nonterminals, Useless Rules):
18021 (Reduced Automaton, Underivable Rules): Adjust.
18022 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
18023 * tests/conflicts.at (Unresolved SR Conflicts)
18024 (Solved SR Conflicts): Adjust.
18025
ee000ba4
AD
180262002-06-15 Akim Demaille <akim@epita.fr>
18027
18028 Let symbols have a location.
18029
18030 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
18031 (getsym): Adjust.
18032 Adjust all callers.
18033 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
18034 Use location_t, not int.
18035 * src/symtab.c (symbol_check_defined): Take advantage of the
18036 location.
18037 * tests/regression.at (Invalid inputs): Adjust.
18038
8efe435c
AD
180392002-06-15 Akim Demaille <akim@epita.fr>
18040
18041 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
18042 (input): Don't try to initialize yylloc here, do it in the
18043 scanner.
18044 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
18045 * src/gram.h (rule_t): Change line and action_line into location
18046 and action_location, of location_t type.
18047 Adjust all dependencies.
18048 * src/location.h, src/location.c (empty_location): New.
18049 * src/reader.h, src/reader.c (grammar_start_symbol_set)
18050 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
18051 (grammar_current_rule_symbol_append)
18052 (grammar_current_rule_action_append): Expect a location as argument.
18053 * src/reader.c (grammar_midrule_action): Adjust to attach an
18054 action's location as dummy symbol location.
18055 * src/symtab.h, src/symtab.c (startsymbol_location): New.
18056 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
18057 the line numbers.
18058
1921f1d7
AD
180592002-06-14 Akim Demaille <akim@epita.fr>
18060
18061 Grammar declarations may be found in the grammar section.
18062
18063 * src/parse-gram.y (rules_or_grammar_declaration): New.
18064 (declarations): Each declaration may end with a semicolon, not
18065 just...
18066 (grammar_declaration): `"%union"'.
18067 (grammar): Branch to rules_or_grammar_declaration.
18068
4515534c
AD
180692002-06-14 Akim Demaille <akim@epita.fr>
18070
18071 * src/main.c (main): Invoke scanner_free.
18072
f958596b
AD
180732002-06-14 Akim Demaille <akim@epita.fr>
18074
18075 * src/output.c (m4_invoke): Extracted from...
18076 (output_skeleton): here.
18077 Free tempfile.
18078
2c569025
AD
180792002-06-14 Akim Demaille <akim@epita.fr>
18080
18081 * src/parse-gram.y (directives, directive, gram)
18082 (grammar_directives, precedence_directives, precedence_directive):
18083 Rename as...
18084 (declarations, declaration, grammar, grammar_declaration)
18085 (precedence_declaration, precedence_declarator): these.
18086 (symbol_declaration): New.
18087
592e8d4d
AD
180882002-06-14 Akim Demaille <akim@epita.fr>
18089
18090 * src/files.c (action_obstack): Remove, unused.
18091 (output_obstack): Remove it, and all its dependencies, as it is no
18092 longer needed.
18093 * src/reader.c (epilogue_set): Build the epilogue in the
18094 muscle_obstack.
18095 * src/output.h, src/output.c (muscle_obstack): Move to...
18096 * src/muscle_tab.h, src/muscle_tab.h: here.
18097 (muscle_init): Initialize muscle_obstack.
18098 (muscle_free): New.
18099 * src/main.c (main): Call it.
18100
0c15323d
AD
181012002-06-14 Akim Demaille <akim@epita.fr>
18102
18103 * src/location.h: New, extracted from...
18104 * src/reader.h: here.
18105 * src/Makefile.am (noinst_HEADERS): Merge into
18106 (bison_SOURCES): this.
18107 Add location.h.
18108 * src/parse-gram.y: Use location_t instead of Bison's.
18109 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
18110 Use location_t instead of ints.
18111
e96c9728
AD
181122002-06-14 Akim Demaille <akim@epita.fr>
18113
18114 * data/bison.simple, data/bison.c++: Be sure to restore the
18115 current #line when returning to the skeleton contents after having
18116 exposed the input file's #line.
18117
75d1fe16
AD
181182002-06-12 Akim Demaille <akim@epita.fr>
18119
18120 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
18121 eager.
18122 * tests/actions.at (Exotic Dollars): New.
18123
6c35d22c
AD
181242002-06-12 Akim Demaille <akim@epita.fr>
18125
18126 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
18127 ['"/] too eagerly.
18128 * tests/input.at (Torturing the Scanner): New.
18129
1d6412ad
AD
181302002-06-11 Akim Demaille <akim@epita.fr>
18131
18132 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
18133 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
18134 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
18135 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
18136 * src/reader.c (reader): Use it.
18137
4cdb01db
AD
181382002-06-11 Akim Demaille <akim@epita.fr>
18139
18140 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
18141 Adjust all callers.
18142 (scanner_last_string_free): New.
18143
44995b2e
AD
181442002-06-11 Akim Demaille <akim@epita.fr>
18145
18146 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
18147 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
18148 (last_string, YY_OBS_FREE): New.
18149 Use them when returning an ID.
18150
e9955c83
AD
181512002-06-11 Akim Demaille <akim@epita.fr>
18152
18153 Have Bison grammars parsed by a Bison grammar.
18154
18155 * src/reader.c, src/reader.h (prologue_augment): New.
18156 * src/reader.c (copy_definition): Remove.
18157
18158 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
18159 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
18160 (grammar_current_rule_prec_set, grammar_current_rule_check)
18161 (grammar_current_rule_symbol_append)
18162 (grammar_current_rule_action_append): Export.
18163 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
18164 (symbol_list_action_append): Remove.
18165 Hook the routines from reader.
18166 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
18167 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
18168
18169 * src/reader.c (read_declarations): Remove, unused.
18170
18171 * src/parse-gram.y: Handle the epilogue.
18172 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
18173 (grammar_start_symbol_set): this.
18174 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
18175 * src/reader.c (readgram): Remove, unused.
18176 (reader): Adjust to insert eoftoken and axiom where appropriate.
18177
18178 * src/reader.c (copy_dollar): Replace with...
18179 * src/scan-gram.h (handle_dollar): this.
18180 * src/parse-gram.y: Remove `%thong'.
18181
18182 * src/reader.c (copy_at): Replace with...
18183 * src/scan-gram.h (handle_at): this.
18184
18185 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
18186 New.
18187
18188 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
18189 time being.
18190
18191 * src/reader.h, src/reader.c (grammar_rule_end): New.
18192
18193 * src/parse.y (current_type, current_class): New.
18194 Implement `%nterm', `%token' support.
18195 Merge `%term' into `%token'.
18196 (string_as_id): New.
18197 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
18198 type name.
18199
18200 * src/parse-gram.y: Be sure to handle properly the beginning of
18201 rules.
18202
18203 * src/parse-gram.y: Handle %type.
18204 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
18205
18206 * src/parse-gram.y: More directives support.
18207 * src/options.c: No longer handle source directives.
18208
18209 * src/parse-gram.y: Fix %output.
18210
18211 * src/parse-gram.y: Handle %union.
18212 Use the prologue locations.
18213 * src/reader.c (parse_union_decl): Remove.
18214
18215 * src/reader.h, src/reader.c (epilogue_set): New.
18216 * src/parse-gram.y: Use it.
18217
18218 * data/bison.simple, data/bison.c++: b4_stype is now either not
18219 defined, then default to int, or to the contents of %union,
18220 without `union' itself.
18221 Adjust.
18222 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
18223
18224 * src/output.c (actions_output): Don't output braces, as they are
18225 already handled by the scanner.
18226
18227 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
18228 characters to themselves.
18229
18230 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
18231 that the epilogue has a proper #line.
18232
18233 * src/parse-gram.y: Handle precedence/associativity.
18234
18235 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
18236 a terminal.
18237 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
18238 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
18239 at all to define terminals that cannot be emitted.
18240
18241 * src/scan-gram.l: Escape M4 characters.
18242
18243 * src/scan-gram.l: Working properly with escapes in user
18244 strings/characters.
18245
18246 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
18247 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
18248 grammar.
18249 Use more modest sizes, as for the time being the parser does not
18250 release memory, and therefore the process swallows a huge amount
18251 of memory.
18252
18253 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
18254 stricter %token grammar.
18255
18256 * src/symtab.h (associativity): Add `undef_assoc'.
18257 (symbol_precedence_set): Do nothing when passed an undef_assoc.
18258 * src/symtab.c (symbol_check_alias_consistence): Adjust.
18259
18260 * tests/regression.at (Invalid %directive): Remove, as it is now
18261 meaningless.
18262 (Invalid inputs): Adjust to the new error messages.
18263 (Token definitions): The new grammar doesn't allow too many
18264 eccentricities.
18265
18266 * src/lex.h, src/lex.c: Remove.
18267 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
18268 (copy_character, copy_string2, copy_string, copy_identifier)
18269 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
18270 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
18271 (parse_action): Remove.
18272 * po/POTFILES.in: Adjust.
18273
2e047461
AD
182742002-06-11 Akim Demaille <akim@epita.fr>
18275
cd05d13c 18276 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
18277 rule's action member: return the action as a string.
18278 Don't require `rule_length' as an argument: compute it.
18279 (grammar_current_rule_symbol_append)
18280 (grammar_current_rule_action_append): New, eved out from
18281 (readgram): here.
18282 Remove `action_flag', `rulelength', unused now.
18283
9af3fbce
AD
182842002-06-11 Akim Demaille <akim@epita.fr>
18285
18286 * src/reader.c (grammar_current_rule_prec_set).
18287 (grammar_current_rule_check): New, eved out from...
18288 (readgram): here.
18289 Remove `xaction', `first_rhs': useless.
18290 * tests/input.at (Type clashes): New.
18291 * tests/existing.at (GNU Cim Grammar): Adjust.
18292
1485e106
AD
182932002-06-11 Akim Demaille <akim@epita.fr>
18294
18295 * src/reader.c (grammar_midrule_action): New, Eved out from
18296 (readgram): here.
18297
da4160c3
AD
182982002-06-11 Akim Demaille <akim@epita.fr>
18299
18300 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
18301 New.
18302 (readgram): Use them as replacement of inlined code, crule and
18303 crule1.
18304
f6d0f937
AD
183052002-06-11 Akim Demaille <akim@epita.fr>
18306
18307 * src/reader.c (grammar_end, grammar_symbol_append): New.
18308 (readgram): Use them.
18309 Make the use of `p' as local as possible.
18310
69078d4b
AD
183112002-06-10 Akim Demaille <akim@epita.fr>
18312
18313 GCJ's parser requires the tokens to be defined before the prologue.
18314
18315 * data/bison.simple: Output the token definition before the user's
18316 prologue.
18317 * tests/regression.at (Braces parsing, Duplicate string)
18318 (Mixing %token styles): Check the output from bison.
18319 (Early token definitions): New.
18320
5e424082
AD
183212002-06-10 Akim Demaille <akim@epita.fr>
18322
18323 * src/symtab.c (symbol_user_token_number_set): Don't complain when
18324 assigning twice the same user number to a token, so that we can
18325 use it in...
18326 * src/lex.c (lex): here.
18327 Also use `symbol_class_set' instead of hand written code.
18328 * src/reader.c (parse_assoc_decl): Likewise.
18329
44536b35
AD
183302002-06-10 Akim Demaille <akim@epita.fr>
18331
18332 * src/symtab.c, src/symtab.c (symbol_class_set)
18333 (symbol_user_token_number_set): New.
18334 * src/reader.c (parse_token_decl): Use them.
18335 Use a switch instead of ifs.
18336 Use a single argument.
18337
8b9f2372
AD
183382002-06-10 Akim Demaille <akim@epita.fr>
18339
18340 Remove `%thong' support as it is undocumented, unused, duplicates
18341 `%token's job, and creates useless e-mail traffic with people who
18342 want to know what it is, why it is undocumented, unused, and
18343 duplicates `%token's job.
18344
18345 * src/reader.c (parse_thong_decl): Remove.
18346 * src/options.c (option_table): Remove "thong".
18347 * src/lex.h (tok_thong): Remove.
18348
3ae2b51f
AD
183492002-06-10 Akim Demaille <akim@epita.fr>
18350
18351 * src/symtab.c, src/symtab.c (symbol_type_set)
18352 (symbol_precedence_set): New.
18353 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
18354 (value_components_used): Remove, unused.
18355
2f1afb73
AD
183562002-06-09 Akim Demaille <akim@epita.fr>
18357
18358 Move symbols handling code out of the reader.
18359
18360 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
18361 (axiom): Move to...
18362 * src/symtab.h, src/symtab.c: here.
18363
18364 * src/gram.c (start_symbol): Remove: use startsymbol->number.
18365 * src/reader.c (startval): Rename as...
18366 * src/symtab.h, src/symtab.c (startsymbol): this.
18367 * src/reader.c: Adjust.
18368
18369 * src/reader.c (symbol_check_defined, symbol_make_alias)
18370 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18371 (token_translations_init)
18372 Move to...
18373 * src/symtab.c: here.
18374 * src/reader.c (packsymbols): Move to...
18375 * src/symtab.h, src/symtab.c (symbols_pack): here.
18376 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
18377 argument.
18378
e9bca3ad
AD
183792002-06-03 Akim Demaille <akim@epita.fr>
18380
18381 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
18382 then statements.
18383
86eff183
AD
183842002-06-03 Akim Demaille <akim@epita.fr>
18385
18386 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
18387 structs with non literals.
18388 * src/scan-skel.l: never-interactive.
18389 * src/conflicts.c (enum conflict_resolution_e): No trailing
18390 comma.
18391 * src/getargs.c (usage): Split long literal strings.
18392 Reported by Hans Aberg.
18393
717be197
AD
183942002-05-28 Akim Demaille <akim@epita.fr>
18395
18396 * data/bison.c++: Use C++ ostreams.
18397 (cdebug_): New member.
18398
670ddffd
AD
183992002-05-28 Akim Demaille <akim@epita.fr>
18400
18401 * src/output.c (output_skeleton): Be sure to allocate enough room
18402 for `/' _and_ for `\0' in full_skeleton.
18403
769b430f
AD
184042002-05-28 Akim Demaille <akim@epita.fr>
18405
18406 * data/bison.c++: Catch up with bison.simple:
18407 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18408 and Paul Eggert <eggert@twinsun.com>: `error' handing.
18409 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
18410 and popping traces.
18411
7067cb36
PH
184122002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18413
18414 * src/output.c (output_skeleton): Put an explicit path in front of
18415 the skeleton file name, rather than relying on the -I directory,
18416 to partially alleviate effects of having a skeleton file lying around
18417 in the current directory.
769b430f 18418
4a713ec2
PH
184192002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18420
769b430f 18421 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
18422 obstack_printf should be obstack_fgrow1.
18423
b408954b
AD
184242002-05-26 Akim Demaille <akim@epita.fr>
18425
18426 * src/state.h (state_t): `solved_conflicts' is a new member.
18427 * src/LR0.c (new_state): Set it to 0.
18428 * src/conflicts.h, src/conflicts.c (print_conflicts)
18429 (free_conflicts, solve_conflicts): Rename as...
18430 (conflicts_print, conflicts_free, conflicts_solve): these.
18431 Adjust callers.
18432 * src/conflicts.c (enum conflict_resolution_e)
18433 (solved_conflicts_obstack): New, used by...
18434 (log_resolution): this.
18435 Adjust to attach the conflict resolution to each state.
18436 Complete the description with the precedence/associativity
18437 information.
18438 (resolve_sr_conflict): Adjust.
18439 * src/print.c (print_state): Output its solved_conflicts.
18440 * tests/conflicts.at (Unresolved SR Conflicts)
18441 (Solved SR Conflicts): Exercise --report=all.
18442
a49aecd5
AD
184432002-05-26 Akim Demaille <akim@epita.fr>
18444
18445 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18446 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18447 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
18448 (token_number_t, item_number_as_token_number)
18449 (token_number_as_item_number, muscle_insert_token_number_table):
18450 Rename as...
18451 (symbol_number_t, item_number_as_symbol_number)
18452 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
18453 these, since it is more appropriate.
18454
5504898e
AD
184552002-05-26 Akim Demaille <akim@epita.fr>
18456
18457 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
18458 `Error:' lines.
18459 * data/bison.simple (yystos) [YYDEBUG]: New.
18460 (yyparse) [YYDEBUG]: Display the symbols which are popped during
18461 error recovery.
18462 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
18463
ec3bc396
AD
184642002-05-25 Akim Demaille <akim@epita.fr>
18465
18466 * doc/bison.texinfo (Debugging): Split into...
18467 (Tracing): this new section, its former contents, and...
18468 (Understanding): this new section.
18469 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
18470 by...
18471 (report_flag): this.
18472 Adjust all dependencies.
18473 (report_args, report_types, report_argmatch): New.
18474 (usage, getargs): Report/support -r, --report.
18475 * src/options.h
18476 (struct option_table_struct): Rename as..,
18477 (struct option_table_s): this.
18478 Rename the `set_flag' member to `flag' to match with getopt_long's
18479 struct.
18480 * src/options.c (option_table): Split verbose into an entry for
18481 %verbose, and another for --verbose.
18482 Support --report/-r, so remove -r from the obsolete --raw.
18483 * src/print.c: Attach full item sets and lookaheads reports to
18484 report_flag instead of trace_flag.
18485 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
18486
78df8250
PE
184872002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18488 and Paul Eggert <eggert@twinsun.com>
769b430f 18489
78df8250
PE
18490 * data/bison.simple (yyparse): Correct error handling to conform to
18491 POSIX and yacc. Specifically, after syntax error is discovered,
18492 do not reduce further before shifting the error token.
18493 Clean up the code a bit by removing the labels yyerrdefault,
18494 yyerrhandle, yyerrpop.
18495 * NEWS: Document the above.
18496
c0c9ea05
PH
184972002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18498
18499 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
18500 type; it isn't always big enough, since it doesn't necessarily
18501 include non-terminals.
769b430f 18502 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
18503 the latter can be removed.
18504 (yy_token_number_type): Remove, only one use.
18505 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
18506 don't use TokenNumberType as element type.
769b430f 18507
c0c9ea05
PH
18508 * tests/regression.at: Modify expected output to agree with change
18509 to yyr1 and yytranslate.
769b430f 18510
6390a83f
FK
185112002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
18512
18513 * src/reader.c (parse_action): Use copy_character instead of
18514 obstack_1grow.
18515
db7c8e9a
AD
185162002-05-13 Akim Demaille <akim@epita.fr>
18517
18518 * tests/regression.at (Token definitions): Prototype yylex and
18519 yyerror.
18520
fcc61800
PH
185212002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18522
158c687b 18523 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
18524 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
18525 32-bit arithmetic.
18526 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
18527
5683e9b2
AD
185282002-05-07 Akim Demaille <akim@epita.fr>
18529
18530 * tests/synclines.at: Be sure to prototype yylex and yyerror to
18531 avoid GCC warnings.
18532
0c2d3f4c
AD
185332002-05-07 Akim Demaille <akim@epita.fr>
18534
18535 Kill GCC warnings.
18536
18537 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
18538 over the RHS of each rule.
18539 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
18540 * src/state.h (state_t): Member `nitems' is unsigned short.
18541 * src/LR0.c (get_state): Adjust.
18542 * src/reader.c (packgram): Likewise.
18543 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
18544 `Type'.
18545 (muscle_insert_int_table): Remove, unused.
18546 (prepare_rules): Remove `max'.
18547
1565b720
AD
185482002-05-06 Akim Demaille <akim@epita.fr>
18549
18550 * src/closure.c (print_firsts): Display of the symbol tags.
18551 (bitmatrix_print): Move to...
18552 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
18553 here.
18554 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
18555
cfaee611
AD
185562002-05-06 Akim Demaille <akim@epita.fr>
18557
18558 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
18559 hash_do_for_each.
18560
458be8e0
AD
185612002-05-06 Akim Demaille <akim@epita.fr>
18562
18563 * src/LR0.c (new_state, get_state): Instead of using the global
18564 `kernel_size' and `kernel_base', have two new arguments:
18565 `core_size' and `core'.
18566 Adjust callers.
18567
a900a624
AD
185682002-05-06 Akim Demaille <akim@epita.fr>
18569
18570 * src/reader.c (packgram): No longer end `ritem' with a 0
18571 sentinel: it is not used.
18572
d4e7d3a1
AD
185732002-05-05 Akim Demaille <akim@epita.fr>
18574
18575 New experimental feature: display the lookaheads in the report and
18576 graph.
18577
18578 * src/print (print_core): When --trace-flag, display the rules
18579 lookaheads.
18580 * src/print_graph.c (print_core): Likewise.
18581 Swap the arguments.
18582 Adjust caller.
18583
39ceb25b
AD
185842002-05-05 Akim Demaille <akim@epita.fr>
18585
18586 * tests/torture.at (Many lookaheads): New test.
18587
5372019f
AD
185882002-05-05 Akim Demaille <akim@epita.fr>
18589
18590 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
18591 (GENERATE_MUSCLE_INSERT_TABLE): this.
18592 (output_int_table, output_unsigned_int_table, output_short_table)
18593 (output_token_number_table, output_item_number_table): Replace with...
18594 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
18595 (muscle_insert_short_table, muscle_insert_token_number_table)
18596 (muscle_insert_item_number_table): these.
18597 Adjust all callers.
18598 (prepare_tokens): Don't free `translations', since...
18599 * src/reader.h, src/reader.c (grammar_free): do it.
18600 Move to...
18601 * src/gram.h, src/gram.c (grammar_free): here.
18602 * data/bison.simple, data/bison.c++: b4_token_number_max is now
18603 b4_translate_max.
18604
5df5f6d5
AD
186052002-05-05 Akim Demaille <akim@epita.fr>
18606
18607 * src/output.c (output_unsigned_int_table): New.
18608 (prepare_rules): `i' is unsigned.
18609 `prhs', `rline', `r2' are unsigned int.
18610 Rename muscle `rhs_number_max' as `rhs_max'.
18611 Output muscles `prhs_max', `rline_max', and `r2_max'.
18612 Free rline and r1.
18613 * data/bison.simple, data/bison.c++: Adjust to use these muscles
18614 to compute types instead of constant types.
18615 * tests/regression.at (Web2c Actions): Adjust.
18616
b87f8b21
AD
186172002-05-04 Akim Demaille <akim@epita.fr>
18618
18619 * src/symtab.h (SALIAS, SUNDEF): Rename as...
18620 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
18621 Adjust dependencies.
18622 * src/output.c (token_definitions_output): Be sure not to output a
18623 `#define 'a'' when fed with `%token 'a' "a"'.
18624 * tests/regression.at (Token definitions): New.
18625
8bb936e4
PE
186262002-05-03 Paul Eggert <eggert@twinsun.com>
18627
18628 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
18629 for K&R C.
18630
186312002-05-03 gettextize <bug-gnu-gettext@gnu.org>
18632
18633 * Makefile.am (SUBDIRS): Remove intl.
18634 (EXTRA_DIST): Add config/config.rpath.
18635
53c71a12
AD
186362002-05-03 Akim Demaille <akim@epita.fr>
18637
18638 * data/bison.simple (m4_if): Don't output empty enums.
18639 And actually, output valid enum definitions :(.
18640
289dd0cf
AD
186412002-05-03 Akim Demaille <akim@epita.fr>
18642
18643 * configure.bat: Remove, completely obsolete.
18644 * Makefile.am (EXTRA_DIST): Adjust.
18645 Don't distribute config.rpath...
18646 * config/Makefile.am (EXTRA_DIST): Do it.
18647
db85e524
AD
186482002-05-03 Akim Demaille <akim@epita.fr>
18649
18650 * configure.in (GETTEXT_VERSION): New.
18651 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
18652
83ccf991
AD
186532002-05-03 Akim Demaille <akim@epita.fr>
18654
18655 * data/bison.simple (b4_token_enum): New.
18656 (b4_token_defines): Use it to output tokens both as #define and
18657 enums.
18658 Suggested by Paul Eggert.
18659 * src/output.c (token_definitions_output): Don't output spurious
18660 white spaces.
18661
1f418995
AD
186622002-05-03 Akim Demaille <akim@epita.fr>
18663
18664 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18665
45119f04
RA
186662002-05-02 Robert Anisko <robert@lrde.epita.fr>
18667
18668 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
18669 Update the stack class, give a try to deque as the default container.
18670
b2d52318
AD
186712002-05-02 Akim Demaille <akim@epita.fr>
18672
18673 * data/bison.simple (yyparse): Do not implement @$ = @1.
18674 (YYLLOC_DEFAULT): Adjust to do it.
18675 * doc/bison.texinfo (Location Default Action): Fix.
18676
3a8b4109
AD
186772002-05-02 Akim Demaille <akim@epita.fr>
18678
18679 * src/reader.c (parse_braces): Merge into...
18680 (parse_action): this.
18681
84614e13
AD
186822002-05-02 Akim Demaille <akim@epita.fr>
18683
18684 * configure.in (ALL_LINGUAS): Remove.
18685 * po/LINGUAS, hr.po: New.
18686
fdbcd8e2
AD
186872002-05-02 Akim Demaille <akim@epita.fr>
18688
18689 Remove the so called hairy (semantic) parsers.
18690
18691 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
18692 * src/gram.h, src/gram.c (semantic_parser): Remove.
18693 (rule_t): Remove the guard and guard_line members.
18694 * src/lex.h (token_t): remove tok_guard.
18695 * src/options.c (option_table): Remove %guard and %semantic_parser
18696 support.
18697 * src/output.c, src/output.h (guards_output): Remove.
18698 (prepare): Adjust.
18699 (token_definitions_output): Don't output the `T'
18700 tokens (???).
18701 (output_skeleton): Don't output the guards.
18702 * src/files.c, src/files.c (attrsfile): Remove.
18703 * src/reader.c (symbol_list): Remove the guard and guard_line
18704 members.
18705 Adjust dependencies.
18706 (parse_guard): Remove.
18707 * data/bison.hairy: Remove.
18708 * doc/bison.texinfo (Environment Variables): Remove occurrences of
18709 BISON_HAIRY.
18710
82b6cb3f
AD
187112002-05-02 Akim Demaille <akim@epita.fr>
18712
18713 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
18714 (parse_guard): Rename the formal argument `stack_offset' as
18715 `rule_length', which is more readable.
18716 Adjust callers.
18717 (copy_at, copy_dollar): Instead of outputting the hard coded
18718 values of $$, $n and so forth, output invocation to b4_lhs_value,
18719 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
18720 Note: this patch partially drops `semantic-parser' support: it
18721 always does `rule_length - n', where semantic parsers ought to
18722 always use `-n'.
82b6cb3f
AD
18723 * data/bison.simple, data/bison.c++ (b4_lhs_value)
18724 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
18725
6cbfbcc5
AD
187262002-05-02 Akim Demaille <akim@epita.fr>
18727
18728 * configure.in (AC_INIT): Bump to 1.49b.
18729 (AM_INIT_AUTOMAKE): Short invocation.
18730
b8548114
AD
187312002-05-02 Akim Demaille <akim@epita.fr>
18732
18733 Version 1.49a.
18734
c20cd1fa
AD
187352002-05-01 Akim Demaille <akim@epita.fr>
18736
18737 * src/skeleton.h: Remove.
18738
8a9566d4
AD
187392002-05-01 Akim Demaille <akim@epita.fr>
18740
18741 * src/skeleton.h: Fix the #endif.
18742 Reported by Magnus Fromreide.
18743
8c6d399a
PE
187442002-04-26 Paul Eggert <eggert@twinsun.com>
18745
18746 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
18747 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 18748 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 18749
2b7ed18a
RA
187502002-04-25 Robert Anisko <robert@lrde.epita.fr>
18751
18752 * src/scan-skel.l: Postprocess quadrigraphs.
18753
18754 * src/reader.c (copy_character): New function, used to output
18755 single characters while replacing `[' and `]' with quadrigraphs, to
18756 avoid troubles with M4 quotes.
18757 (copy_comment): Output characters with copy_character.
18758 (read_additionnal_code): Likewise.
18759 (copy_string2): Likewise.
18760 (copy_definition): Likewise.
18761
18762 * tests/calc.at: Exercise M4 quoting.
18763
34a89c50
AD
187642002-04-25 Akim Demaille <akim@epita.fr>
18765
18766 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
18767 between `!' and the command.
18768 Reported by Paul Eggert.
18769
0dd1580a
RA
187702002-04-24 Robert Anisko <robert@lrde.epita.fr>
18771
18772 * tests/calc.at: Exercise prologue splitting.
18773
18774 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
18775 `b4_post_prologue' instead of `b4_prologue'.
18776
18777 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
18778 muscles.
18779 (output): Free pre_prologue_obstack and post_prologue_obstack.
18780 * src/files.h, src/files.c (attrs_obstack): Remove.
18781 (pre_prologue_obstack, post_prologue_obstack): New.
18782 * src/reader.c (copy_definition): Add a parameter to specify the
18783 obstack to fill, instead of using attrs_obstack unconditionally.
18784 (read_declarations): Pass pre_prologue_obstack to copy_definition if
18785 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
18786
83c1796f
PE
187872002-04-23 Paul Eggert <eggert@twinsun.com>
18788
18789 * data/bison.simple: Remove unnecessary commentary and white
18790 space differences from 1_29-branch.
18791 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
18792
18793 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
18794 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
18795 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
18796 constructors or destructors.
18797
18798 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
18799
1207eeac
AD
188002002-04-23 Akim Demaille <akim@epita.fr>
18801
18802 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
18803 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
18804 location with columns.
18805 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
18806 All reported by Paul Eggert.
18807
78ab8f67
AD
188082002-04-22 Akim Demaille <akim@epita.fr>
18809
18810 * src/reduce.c (dump_grammar): Move to...
18811 * src/gram.h, src/gram.c (grammar_dump): here.
18812 Be sure to separate long item numbers.
18813 Don't read the members of a rule's prec if its nil.
18814
133c20e2
AD
188152002-04-22 Akim Demaille <akim@epita.fr>
18816
18817 * src/output.c (table_size, table_grow): New.
18818 (MAXTABLE): Remove, replace uses with table_size.
18819 (pack_vector): Instead of dying when the table is too big, grow it.
18820
9515e8a7
AD
188212002-04-22 Akim Demaille <akim@epita.fr>
18822
18823 * data/bison.simple (yyr1): Its type is that of a token number.
18824 * data/bison.c++ (r1_): Likewise.
18825 * tests/regression.at (Web2c Actions): Adjust.
18826
23c5a174
AD
188272002-04-22 Akim Demaille <akim@epita.fr>
18828
18829 * src/reader.c (token_translations_init): 256 is now the default
18830 value for the error token, i.e., it will be assigned another
18831 number if the user assigned 256 to one of her tokens.
18832 (reader): Don't force 256 to error.
18833 * doc/bison.texinfo (Symbols): Adjust.
18834 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
18835 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
18836 etc. instead of 10, 20, 30 (which was used to `jump' over error
18837 (256) and undefined (2)).
18838
5fbb0954
AD
188392002-04-22 Akim Demaille <akim@epita.fr>
18840
18841 Propagate more token_number_t.
18842
18843 * src/gram.h (token_number_as_item_number)
18844 (item_number_as_token_number): New.
18845 * src/output.c (GENERATE_OUTPUT_TABLE): New.
18846 Use it to create output_item_number_table and
18847 output_token_number_table.
18848 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
18849 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
18850 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
18851 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
18852
4f940944
AD
188532002-04-22 Akim Demaille <akim@epita.fr>
18854
18855 * src/output.h, src/output.c (get_lines_number): Remove.
18856
3ded9a63
AD
188572002-04-19 Akim Demaille <akim@epita.fr>
18858
18859 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
18860 as Lex/Flex'.
18861 (Debugging): More details about enabling the debugging features.
18862 (Table of Symbols): Describe $$, $n, @$, and @n.
18863 Suggested by Tim Josling.
18864
e0c471a9
AD
188652002-04-19 Akim Demaille <akim@epita.fr>
18866
18867 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
18868
fecc10cd
AD
188692002-04-10 Akim Demaille <akim@epita.fr>
18870
18871 * src/system.h: Rely on HAVE_LIMITS_H.
18872 Suggested by Paul Eggert.
18873
51dec47b
AD
188742002-04-09 Akim Demaille <akim@epita.fr>
18875
18876 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
18877 full stderr, and strip it according to the bison options, instead
18878 of composing the error message from different bits.
18879 This makes it easier to check for several error messages.
18880 Adjust all the invocations.
18881 Add an invocation exercising the error token.
18882 Add an invocation demonstrating a stupid error message.
18883 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
18884 Adjust the tests.
18885 Error message are for stderr, not stdout.
18886
007a50a4
AD
188872002-04-09 Akim Demaille <akim@epita.fr>
18888
18889 * src/gram.h, src/gram.c (error_token_number): Remove, use
18890 errtoken->number.
18891 * src/reader.c (reader): Don't specify the user token number (2)
18892 for $undefined, as it uselessly prevents using it.
18893 * src/gram.h (token_number_t): Move to...
18894 * src/symtab.h: here.
18895 (state_t.number): Is a token_number_t.
18896 * src/print.c, src/reader.c: Use undeftoken->number instead of
18897 hard coded 2.
18898 (Even though this 2 is not the same as above: the number of the
18899 undeftoken remains being 2, it is its user token number which
18900 might not be 2).
18901 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
18902 `user_token_number_max'.
18903 Output `undef_token_number'.
18904 * data/bison.simple, data/bison.c++: Use them.
18905 Be sure to map invalid yylex return values to
18906 `undef_token_number'. This saves us from gratuitous SEGV.
18907
18908 * tests/conflicts.at (Solved SR Conflicts)
18909 (Unresolved SR Conflicts): Adjust.
18910 * tests/regression.at (Web2c Actions): Adjust.
18911
06446ccf
AD
189122002-04-08 Akim Demaille <akim@epita.fr>
18913
18914 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
18915 Adding #line.
18916 Remove the duplicate `typedefs'.
18917 (RhsNumberType): Fix the declaration and various other typos.
18918 Use __ofile__.
18919 * data/bison.simple: Use __ofile__.
18920 * src/scan-skel.l: Handle __ofile__.
18921
62a3e4f0
AD
189222002-04-08 Akim Demaille <akim@epita.fr>
18923
18924 * src/gram.h (item_number_t): New, the type of item numbers in
18925 RITEM. Note that it must be able to code symbol numbers as
18926 positive number, and the negation of rule numbers as negative
18927 numbers.
18928 Adjust all dependencies (pretty many).
18929 * src/reduce.c (rule): Remove this `short *' pointer: use
18930 item_number_t.
18931 * src/system.h (MINSHORT, MAXSHORT): Remove.
18932 Include `limits.h'.
18933 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
18934 (shortcpy): Remove.
18935 (MAXTABLE): Move to...
18936 * src/output.c (MAXTABLE): here.
18937 (prepare_rules): Use output_int_table to output rhs.
18938 * data/bison.simple, data/bison.c++: Adjust.
18939 * tests/torture.at (Big triangle): Move the limit from 254 to
18940 500.
18941 * tests/regression.at (Web2c Actions): Ajust.
18942
18943 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
18944 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
18945 passes, but produces negative #line number, once fixed, GCC is
18946 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
18947 C), it passes.
18948 * src/state.h (state_h): Code input lines on ints, not shorts.
18949
bb88b0fc
AD
189502002-04-08 Akim Demaille <akim@epita.fr>
18951
18952 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
18953 and then the grammar.
18954
9a636f47
AD
189552002-04-08 Akim Demaille <akim@epita.fr>
18956
18957 * src/system.h: No longer using strndup.
18958
680e8701
AD
189592002-04-07 Akim Demaille <akim@epita.fr>
18960
18961 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
18962 * src/output.c (output_table_data): Return the longest number.
18963 (prepare_tokens): Output `token_number_max').
18964 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
18965 New.
18966 Use them to define yy_token_number_type/TokenNumberType.
18967 Use this type for yytranslate.
18968 * tests/torture.at (Big triangle): Push the limit from 124 to
18969 253.
18970 * tests/regression.at (Web2c Actions): Adjust.
18971
817e9f41
AD
189722002-04-07 Akim Demaille <akim@epita.fr>
18973
18974 * tests/torture.at (Big triangle): New.
18975 (GNU AWK Grammar, GNU Cim Grammar): Move to...
18976 * tests/existing.at: here.
18977
5123689b
AD
189782002-04-07 Akim Demaille <akim@epita.fr>
18979
18980 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
18981 nritems.
18982 Adjust dependencies.
18983
f3849179
AD
189842002-04-07 Akim Demaille <akim@epita.fr>
18985
18986 * src/reader.c: Normalize increments to prefix form.
18987
bd02036a
AD
189882002-04-07 Akim Demaille <akim@epita.fr>
18989
18990 * src/reader.c, symtab.c: Remove debugging code.
18991
db8837cb
AD
189922002-04-07 Akim Demaille <akim@epita.fr>
18993
18994 Rename all the `bucket's as `symbol_t'.
18995
18996 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
18997 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
18998 * src/symtab.c, src/symtab.h (bucket): Rename as...
18999 (symbol_t): this.
19000 (symbol_list_new, bucket_check_defined, bucket_make_alias)
19001 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
19002 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19003 (buckets_new, buckets_free, buckets_do): Rename as...
19004 (symbol_list_new, symbol_check_defined, symbol_make_alias)
19005 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
19006 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
19007 (symbols_new, symbols_free, symbols_do): these.
19008
72a23c97
AD
190092002-04-07 Akim Demaille <akim@epita.fr>
19010
19011 Use lib/hash for the symbol table.
19012
19013 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
19014 EOF.
19015 * src/lex.c (lex): Set the `number' member of new terminals.
19016 * src/reader.c (bucket_check_defined, bucket_make_alias)
19017 (bucket_check_alias_consistence, bucket_translation): New.
19018 (reader, grammar_free, readgram, token_translations_init)
19019 (packsymbols): Adjust.
19020 (reader): Number the predefined tokens.
19021 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
19022 for predefined tokens.
19023 * src/symtab.h (bucket): Remove all the hash table related
19024 members.
19025 * src/symtab.c (symtab): Replace by...
19026 (bucket_table): this.
19027 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19028 (buckets_new, buckets_do): New.
19029
280a38c3
AD
190302002-04-07 Akim Demaille <akim@epita.fr>
19031
19032 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
19033 (start_symbol, max_user_token_number, semantic_parser)
19034 (error_token_number): Initialize.
19035 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
19036 Initialize.
19037 (reader): Don't.
19038 (errtoken, eoftoken, undeftoken, axiom): Extern.
19039
03b31c0c
AD
190402002-04-07 Akim Demaille <akim@epita.fr>
19041
19042 * src/gram.h (rule_s): prec and precsym are now pointers
19043 to the bucket giving the priority/associativity.
19044 Member `associativity' removed: useless.
19045 * src/reduce.c, src/conflicts.c: Adjust.
19046
8b3df748
AD
190472002-04-07 Akim Demaille <akim@epita.fr>
19048
19049 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
19050 Properly escape the symbols' TAG when outputting them.
19051
e601aa1d
AD
190522002-04-07 Akim Demaille <akim@epita.fr>
19053
19054 * src/lalr.h (LA): Is a bitsetv, not bitset*.
19055
b0299a2e
AD
190562002-04-07 Akim Demaille <akim@epita.fr>
19057
19058 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
19059 (LArule): this, which is an array to rule_t*.
19060 * src/print.c, src/conflicts.c: Adjust.
19061
d7e1f00c
AD
190622002-04-07 Akim Demaille <akim@epita.fr>
19063
19064 * src/gram.h (rule_t): Rename `number' as `user_number'.
19065 `number' is a new member.
19066 Adjust dependencies.
19067 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
19068
cc9305dd
AD
190692002-04-07 Akim Demaille <akim@epita.fr>
19070
19071 As a result of the previous patch, it is no longer needed
19072 to reorder ritem itself.
19073
19074 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
19075
b0940840
AD
190762002-04-07 Akim Demaille <akim@epita.fr>
19077
19078 Be sure never to walk through RITEMS, but use only data related to
19079 the rules themselves. RITEMS should be banished.
19080
19081 * src/output.c (output_token_translations): Rename as...
19082 (prepare_tokens): this.
19083 In addition to `translate', prepare the muscles `tname' and
19084 `toknum', which were handled by...
19085 (output_rule_data): this.
19086 Remove, and move the remainder of its outputs into...
19087 (prepare_rules): this new routines, which also merges content from
19088 (output_gram): this.
19089 (prepare_rules): Be sure never to walk through RITEMS.
19090 (output_stos): Rename as...
19091 (prepare_stos): this.
19092 (output): Always invoke prepare_states, after all, just don't use it
19093 in the output if you don't need it.
19094
643a5994
AD
190952002-04-07 Akim Demaille <akim@epita.fr>
19096
19097 * src/LR0.c (new_state): Display `nstates' as the name of the
19098 newly created state.
19099 Adjust to initialize first_state and last_state if needed.
19100 Be sure to distinguish the initial from the final state.
19101 (new_states): Create the itemset of the initial state, and use
19102 new_state.
19103 * src/closure.c (closure): Now that the initial state has its
19104 items properly set, there is no need for a special case when
19105 creating `ruleset'.
19106
19107 As a result, now the rule 0, reducing to $axiom, is visible in the
19108 outputs. Adjust the test suite.
19109
19110 * tests/conflicts.at (Solved SR Conflicts)
19111 (Unresolved SR Conflicts): Adjust.
19112 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
19113 * tests/conflicts.at (S/R in initial): New.
19114
b4c4ccc2
AD
191152002-04-07 Akim Demaille <akim@epita.fr>
19116
19117 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
19118 the RHS of the rules.
19119 * src/output.c (output_gram): Likewise.
19120
bba97eb2
AD
191212002-04-07 Akim Demaille <akim@epita.fr>
19122
19123 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
19124 bucket.
19125 Adjust all dependencies.
19126 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
19127 `number' of the buckets too.
19128 * src/gram.h: Include `symtab.h'.
19129 (associativity): Move to...
19130 * src/symtab.h: here.
19131 No longer include `gram.h'.
19132
c3b407f4
AD
191332002-04-07 Akim Demaille <akim@epita.fr>
19134
19135 * src/gram.h, src/gram.c (rules_rhs_length): New.
19136 (ritem_longest_rhs): Use it.
19137 * src/gram.h (rule_t): `number' is a new member.
19138 * src/reader.c (packgram): Set it.
19139 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
19140 the end of `rules', and count them out of `nrules'.
19141 (reduce_output, dump_grammar): Adjust.
19142 * src/print.c (print_grammar): It is no longer needed to check for
19143 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
19144 * tests/reduce.at (Reduced Automaton): New test.
19145
11652ab3
AD
191462002-04-07 Akim Demaille <akim@epita.fr>
19147
19148 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
19149 lacking `+ 1' to nrules, Bison reported as useless a token if it
19150 was used solely to set the precedence of the last rule...
19151
26b23c1a
AD
191522002-04-07 Akim Demaille <akim@epita.fr>
19153
19154 * data/bison.c++, data/bison.simple: Don't output the current file
19155 name in #line, to avoid useless diffs between two identical
19156 outputs under different names.
19157
18bcecb0
AD
191582002-04-07 Akim Demaille <akim@epita.fr>
19159
19160 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
19161 Normalize loops to using `< nrules + 1', not `<= nrules'.
19162
fa770c86
AD
191632002-04-07 Akim Demaille <akim@epita.fr>
19164
19165 * TODO: Update.
19166
d9b739c3
AD
191672002-04-07 Akim Demaille <akim@epita.fr>
19168
19169 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
19170 bucket.value as bucket.number.
19171
99013900
AD
191722002-04-07 Akim Demaille <akim@epita.fr>
19173
19174 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
19175 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
19176 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
19177 RHS, instead of being an index in RITEMS.
19178
e966383b
PE
191792002-04-04 Paul Eggert <eggert@twinsun.com>
19180
19181 * doc/bison.texinfo: Update copyright date.
19182 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
19183 (Symbols): Warn about running Bison in one character set,
19184 but compiling and/or running in an incompatible one.
19185 Warn about character code 256, too.
19186
191872002-04-03 Paul Eggert <eggert@twinsun.com>
19188
19189 * src/bison.data (YYSTACK_ALLOC): Depend on whether
19190 YYERROR_VERBOSE is nonzero, not whether it is defined.
19191
19192 Merge changes from bison-1_29-branch.
c307773e 19193
8d6c48b9
PE
191942002-03-20 Paul Eggert <eggert@twinsun.com>
19195
19196 Merge fixes from Debian bison_1.34-1.diff.
19197
19198 * configure.in (AC_PREREQ): 2.53.
19199
e53c6322
AD
192002002-03-20 Akim Demaille <akim@epita.fr>
19201
19202 * src/conflicts.c (log_resolution): Argument `resolution' is const.
19203
9ffbeca7
PE
192042002-03-19 Paul Eggert <eggert@twinsun.com>
19205
21db0b2a
PE
19206 * src/bison.simple (YYCOPY): New macro.
19207 (YYSTACK_RELOCATE): Use it.
19208 Remove Type arg; no longer needed. All callers changed.
19209 (yymemcpy): Remove; no longer needed.
19210
9ffbeca7
PE
19211 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
19212 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
19213
642cb8f8
AD
192142002-03-19 Akim Demaille <akim@epita.fr>
19215
19216 Test and fix the #line outputs.
19217
19218 * tests/atlocal.at (GCC): New.
19219 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 19220 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
19221 (Action synch line, Epilogue synch line): New tests.
19222 * src/reader.c (parse_union_decl): Define the muscle stype_line.
19223 * data/bison.simple, data/bison.c++: Use it.
19224
3c31a486
AD
192252002-03-19 Akim Demaille <akim@epita.fr>
19226
19227 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
19228 (Solved SR Conflicts, %expect not enough, %expect right)
19229 (%expect too much): Move to...
19230 * tests/conflicts.at: this new file.
19231
0d8bed56
AD
192322002-03-19 Akim Demaille <akim@epita.fr>
19233
19234 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
19235 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
19236 that we can move to enums for instance.
19237 * src/output.c (token_definitions_output): Output a list of
19238 `token-name, token-number' instead of the #define.
19239 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
19240
9208d17f
AD
192412002-03-14 Akim Demaille <akim@epita.fr>
19242
19243 Use Gettext 0.11.1.
19244
af27eacb
RA
192452002-03-09 Robert Anisko <robert@lrde.epita.fr>
19246
19247 * data/bison.c++: Make the user able to add members to the generated
19248 parser by subclassing.
19249
9101a310
RA
192502002-03-05 Robert Anisko <robert@lrde.epita.fr>
19251
19252 * src/reader.c (read_additionnal_code): `c' should be an integer, not
19253 a character.
19254 Reported by Nicolas Tisserand and Nicolas Burrus.
19255
fff9bf0b
RA
192562002-03-04 Robert Anisko <robert@lrde.epita.fr>
19257
19258 * src/reader.c: Warn about lacking semi-colons, do not complain.
19259
64dba31e
RA
192602002-03-04 Robert Anisko <robert@lrde.epita.fr>
19261
19262 * data/bison.c++: Remove a debug line.
19263
374f5a14
RA
192642002-03-04 Robert Anisko <robert@lrde.epita.fr>
19265
19266 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
19267 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
19268 provide a default implementation.
19269
bfcf1f3a
AD
192702002-03-04 Akim Demaille <akim@epita.fr>
19271
19272 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
19273 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
19274 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
19275 * tests/semantic.at (Parsing Guards): Similarly.
19276 * src/reader.at (readgram): Complain if the last rule is not ended
19277 with a semi-colon.
19278
65ccf9fc
AD
192792002-03-04 Akim Demaille <akim@epita.fr>
19280
19281 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
19282 * src/closure.c: here.
19283 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
19284 RTC.
19285 * src/warshall.h, src/warshall.c: Remove.
19286 * tests/sets.at (Broken Closure): Adjust.
19287
d0039cbc
AD
192882002-03-04 Akim Demaille <akim@epita.fr>
19289
19290 * src/output.c (output_skeleton): tempdir is const.
19291 bytes_read is unused.
19292
345cea78
AD
192932002-03-04 Akim Demaille <akim@epita.fr>
19294
19295 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19296 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
19297 Update.
19298 From Michael Hayes.
19299
564801f7
AD
193002002-03-04 Akim Demaille <akim@epita.fr>
19301
19302 * src/closure.c (closure): `r' is unused.
19303
e5352bc7
AD
193042002-03-04 Akim Demaille <akim@epita.fr>
19305
19306 * tests/sets.at (Broken Closure): Add the ending `;'.
19307 * src/reader.at (readgram): Complain if a rule is not ended with a
19308 semi-colon.
19309
914feea9
AD
193102002-03-04 Akim Demaille <akim@epita.fr>
19311
19312 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
19313 (count_sr_conflicts): Use bitset_count.
19314 * src/reduce.c (inaccessable_symbols): Ditto.
19315 (bits_size): Remove.
19316 * src/warshall.h, src/warshall.c: Convert to bitsetv.
19317
f0250de6
AD
193182002-03-04 Akim Demaille <akim@epita.fr>
19319
19320 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
19321 * src/reduce.c: Remove the `bitset_zero's following the
19322 `bitset_create's, as now it is performed by the latter.
19323
ef017502
AD
193242002-03-04 Akim Demaille <akim@epita.fr>
19325
19326 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
19327 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
19328 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
19329 latest sources from Michael.
19330
76514394
AD
193312002-03-04 Akim Demaille <akim@epita.fr>
19332
19333 * src/output.c (output): Don't free the grammar.
19334 * src/reader.c (grammar_free): New.
19335 * src/main.c (main): Call it and don't free symtab here.
19336
55024580
AD
193372002-03-04 Akim Demaille <akim@epita.fr>
19338
19339 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
19340 before returning.
19341 Reported by Benoit Perrot.
19342
f9abaa2c
AD
193432002-03-04 Akim Demaille <akim@epita.fr>
19344
19345 Use bitset operations when possible, not loops over bits.
19346
19347 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
19348 bitset_or.
19349 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
19350 * src/reduce.c (useless_nonterminals): Formatting changes.
19351 * src/warshall.c (TC): Use bitset_or.
19352
0e721e75
AD
193532002-03-04 Akim Demaille <akim@epita.fr>
19354
19355 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
19356 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
19357 Ditto.
19358
0fb1ffb1
AD
193592002-03-04 Akim Demaille <akim@epita.fr>
19360
19361 * src/lalr.c (F): Now a bitset*.
19362 Adjust all dependencies.
19363
b86796bf
AD
193642002-03-04 Akim Demaille <akim@epita.fr>
19365
19366 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
19367 Adjust all dependencies.
19368
602bbf31
AD
193692002-03-04 Akim Demaille <akim@epita.fr>
19370
19371 * src/L0.c, src/LR0.h (nstates): Be size_t.
19372 Adjust comparisons (signed vs unsigned).
19373 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
19374 bitset*.
19375 Adjust all dependencies.
19376
d8a0245c
AD
193772002-03-04 Akim Demaille <akim@epita.fr>
19378
19379 * src/closure.c (firsts): Now, also a bitset.
19380 Adjust all dependencies.
19381 (varsetsize): Remove, now unused.
19382 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
19383
34ba9743
AD
193842002-03-04 Akim Demaille <akim@epita.fr>
19385
19386 * src/print.c: Convert to use bitset.h, not hand coded iterations
19387 over ints.
19388
ed86e78c
AD
193892002-03-04 Akim Demaille <akim@epita.fr>
19390
19391 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
19392
dfdb1797
AD
193932002-03-04 Akim Demaille <akim@epita.fr>
19394
19395 * src/closure.c (ruleset): Be a bitset.
19396 (rulesetsize): Remove.
19397
7086e707
AD
193982002-03-04 Akim Demaille <akim@epita.fr>
19399
19400 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
19401 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
19402 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
19403 * src/closure.c (fderives): Be an array of bitsets.
19404
98254360
RA
194052002-02-28 Robert Anisko <robert@lrde.epita.fr>
19406
19407 * data/bison.c++: Merge the two generated headers. Insert a copyright
19408 notice in each output file.
19409
a75c057f
AD
194102002-02-28 Akim Demaille <akim@epita.fr>
19411
19412 * data/bison.c++: Copy the prologue of bison.simple to fetch
19413 useful M4 definitions, such as b4_header_guard.
19414
06b00abc
AD
194152002-02-25 Akim Demaille <akim@epita.fr>
19416
19417 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
19418 translator friendly scheme for the bgr
19419 copyright notice.
06b00abc 19420
70e7d534
AD
194212002-02-25 Akim Demaille <akim@epita.fr>
19422
19423 * src/output.c (header_output): Remove, now handled completely via
19424 M4.
19425
abe017f6
AD
194262002-02-25 Akim Demaille <akim@epita.fr>
19427
19428 * m4/m4.m4: New, from CVS Autoconf.
19429 * configure.in: Invoke it.
19430 * src/output.c (output_skeleton): Use its result instead of the
19431 hard coded name.
19432
381fb12e
AD
194332002-02-25 Akim Demaille <akim@epita.fr>
19434
19435 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
19436 Fileutils 4.1.5.
19437 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
19438 * src/output.c (output_skeleton): Use mkstemp to create a real
19439 temporary file.
19440 Move the filling of `skeleton' and its muscle to...
19441 (prepare): here.
19442 (output): Move the definition of the prologue muscle to...
19443 (prepare): here.
19444 * src/system.h (DEFAULT_TMPDIR): New.
19445
6f38107f
PE
194462002-02-14 Paul Eggert <eggert@twinsun.com>
19447
19448 Remove the support for C++ namespace cleanliness; it was
19449 causing more problems than it was curing, since it didn't work
19450 properly on some nonstandard C++ compilers. This can wait
19451 for a proper C++ parser.
19452
19453 * NEWS: Document this.
19454 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
19455 of C++, as it's treated like C now.
19456 * src/bison.simple (YYSTD): Remove.
19457 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
19458 Treat C++ just like Standard C instead of trying to support
19459 namespace cleanliness.
19460
80cce3da
AD
194612002-02-14 Akim Demaille <akim@epita.fr>
19462
19463 * tests/regression.at (else): Adjust to Andreas' change.
19464
842e8679
AD
194652002-02-14 Akim Demaille <akim@epita.fr>
19466
19467 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
19468
4bda3f10
AD
194692002-02-13 Andreas Schwab <schwab@suse.de>
19470
19471 * src/output.c (output_rule_data): Don't output NULL, it might
19472 not be defined yet.
19473
4162fa07 194742002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 19475
4162fa07
RA
19476 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
19477 (Copyright notice): Update.
b418ecd8 19478
bd16a5dc
AD
194792002-02-11 Akim Demaille <akim@epita.fr>
19480
19481 * tests/regression.at (%nonassoc and eof): Don't include
19482 nonportable headers.
19483
8d69a1a3
RA
194842002-02-08 Robert Anisko <robert@lrde.epita.fr>
19485
19486 * data/bison.c++: Correct error recovery. Make the user able to
19487 initialize the starting location.
19488
9b2d0677
AD
194892002-02-07 Akim Demaille <akim@epita.fr>
19490
19491 * tests/input.at: New.
19492
69e2658b
RA
194932002-02-07 Robert Anisko <robert@lrde.epita.fr>
19494
19495 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 19496 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
19497 directives around tables only needed for debugging.
19498
4aacc3a7
RA
194992002-02-07 Robert Anisko <robert@lrde.epita.fr>
19500
19501 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
19502 C++ parsers.
19503 (yy::b4_name::parse): Use print_.
19504
762a801e
RA
195052002-02-07 Robert Anisko <robert@lrde.epita.fr>
19506
19507 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
19508
4bb2bc3f
RA
195092002-02-07 Robert Anisko <robert@lrde.epita.fr>
19510
19511 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
19512 C++ parsers.
19513 (yy::b4_name::parse): Build verbose error messages, and use error_.
19514
6b45a3ca
RA
195152002-02-06 Robert Anisko <robert@lrde.epita.fr>
19516
19517 * data/bison.c++: Fix m4 quoting in comments.
19518
50997c6e
RA
195192002-02-06 Robert Anisko <robert@lrde.epita.fr>
19520
19521 * data/bison.c++: Adjust the parser code. Fix some muscles that were
19522 not expanded by m4.
19523
3f3eed27
AD
195242002-02-05 Akim Demaille <akim@epita.fr>
19525
19526 * data/bison.c++: Adjust to the M4 back end.
19527 More is certainly needed.
19528
be2a1a68
AD
195292002-02-05 Akim Demaille <akim@epita.fr>
19530
19531 Give a try to M4 as a back end.
19532
19533 * lib/readpipe.c: New, from wdiff.
19534 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
19535 BISON_HAIRY.
19536 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
19537 specific values. Now it is m4 that performs the lookup.
19538 * src/parse-skel.y: Remove.
19539 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
19540 * src/output.c (actions_output, guards_output)
19541 (token_definitions_output): No longer keeps track of the output
19542 line number, hence remove the second argument.
19543 (guards_output): Check against the guard member of a rule, not the
19544 action member.
19545 Adjust callers.
19546 (output_skeleton): Don't look for the skeleton location, let m4 do
19547 that.
19548 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
19549 file will be used.
19550 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
19551 (prepare): Given that for the time being changesyntax is not
19552 usable in M4, rename the muscles using `-' to `_'.
19553 Define `defines_flag', `output_parser_name' and `output_header_name'.
19554 * src/output.h (actions_output, guards_output)
19555 (token_definitions_output): Adjust prototypes.
19556 * src/scan-skel.l: Instead of scanning the skeletons, it now
19557 processes the output of m4: `__oline__' and `#output'.
19558 * data/bison.simple: Adjust to be used by M4(sugar).
19559 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
19560 to date.
19561 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
19562 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
19563 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
19564 shamelessly stolen from CVS Autoconf.
19565
beda758b
AD
195662002-02-05 Akim Demaille <akim@epita.fr>
19567
19568 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
19569 * configure.in: Check for the declarations of free and malloc.
19570 * src/muscle_tab.c: Adjust.
19571
5ece6d43
AD
195722002-02-05 Akim Demaille <akim@epita.fr>
19573
19574 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
19575 which have no values.
19576
5bb18f9a
AD
195772002-02-05 Akim Demaille <akim@epita.fr>
19578
19579 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
19580 * data/: here.
19581
894dd62e
PE
195822002-01-29 Paul Eggert <eggert@twinsun.com>
19583
19584 * src/bison.simple (YYSIZE_T): Do not define merely because
19585 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
19586 On some platforms, <alloca.h> does not declare YYSTD (size_t).
19587
82841af7
AD
195882002-01-27 Akim Demaille <akim@epita.fr>
19589
19590 Fix `%nonassoc and eof'.
19591
19592 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
19593 which were not properly copied! Replace
19594 memcpy (res->errs, src->errs, src->nerrs);
19595 with
19596 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
19597 !!!
19598 * tests/regression.at (%nonassoc and eof): Adjust to newest
19599 Autotest: `.' is not in the PATH.
19600
318b76e9
AD
196012002-01-27 Akim Demaille <akim@epita.fr>
19602
19603 * tests/sets.at (AT_EXTRACT_SETS): New.
19604 (Nullable): Use it.
19605 (Firsts): New.
19606
30d2f3d5
AD
196072002-01-26 Akim Demaille <akim@epita.fr>
19608
19609 * tests/actions.at, tests/calc.at, tests/headers.at,
19610 * tests/torture.at: Adjust to the newest Autotest which no longer
19611 forces `.' in the PATH.
19612
30f8c395
AD
196132002-01-25 Akim Demaille <akim@epita.fr>
19614
19615 * tests/regression.at (%nonassoc and eof): New.
19616 Suggested by Robert Anisko.
19617
29ae55f1
AD
196182002-01-24 Akim Demaille <akim@epita.fr>
19619
19620 Bison dumps core when trying to complain about broken input files.
19621 Reported by Cris van Pelt.
19622
19623 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
19624 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
19625 into...
19626 (Invalid inputs): Strengthen: exercise parse_percent_token.
19627
2b548aa6
RA
196282002-01-24 Robert Anisko <robert.anisko@epita.fr>
19629
19630 * src/Makefile.am: Add bison.c++.
19631 * src/bison.c++: New skeleton.
19632
bb0146c2
AD
196332002-01-21 Paolo Bonzini <bonzini@gnu.org>
19634
19635 * po/it.po: New.
19636
bec30531
AD
196372002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
19638
19639 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
19640
fc6edc45
MA
196412002-01-20 Marc Autret <marc@gnu.org>
19642
19643 * src/files.c (compute_output_file_names): Fix
19644
5e5d5415
MA
196452002-01-20 Marc Autret <marc@gnu.org>
19646
19647 * tests/output.at: New test.
19648 * src/files.c (compute_base_names): Don't map extensions when
19649 the YACC flag is set, use defaults.
19650 Reported by Evgeny Stambulchik.
19651
44ea3fbd
MA
196522002-01-20 Marc Autret <marc@gnu.org>
19653
ba0fe3c7
PE
19654 * src/system.h: Need to define __attribute__ away for non-GCC
19655 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
19656 Suggested by Albert Chin-A-Young.
19657
338963d1
TVH
196582002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
19659
19660 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
19661 canonical definition.
19662 * src/system.h: Use the canonical definition for PARAMS (avoids
19663 a conflict with the macro from lib/hash.h).
19664
c57b2479
AD
196652002-01-11 Akim Demaille <akim@epita.fr>
19666
19667 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 19668 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 19669
b85810ae
AD
196702002-01-09 Akim Demaille <akim@epita.fr>
19671
19672 * src/files.c, src/files.h (output_infix): New.
19673 (tab_extension): Remove.
19674 (compute_base_names): Compute the former, drop the latter.
19675 * src/output.c (prepare): Insert the muscles `output-infix', and
19676 `output-suffix'.
19677 * src/parse-skel.y (string, string.1): New.
19678 (section.header): Use it.
19679 (section.yacc): Remove.
19680 (prefix): Remove too.
19681 * src/scan-skel.l: Adjust.
19682 * src/bison.simple, src/bison.hairy: Adjust.
19683
cae60122
AD
196842002-01-09 Akim Demaille <akim@epita.fr>
19685
19686 * configure.in (WERROR_CFLAGS): Compute it.
19687 * src/Makefile.am (CFLAGS): Pass it.
19688 * tests/atlocal.in (CFLAGS): Idem.
19689 * src/files.c: Fix a few warnings.
19690 (get_extension_index): Remove, unused.
19691
ae404801
AD
196922002-01-08 Akim Demaille <akim@epita.fr>
19693
19694 * src/getargs.c (AS_FILE_NAME): New.
19695 (getargs): Use it to convert DOSish file names.
19696 * src/files.c (base_name): Rename as full_base_name to avoid
19697 clashes with `base_name ()'.
19698 (filename_split): New.
19699 (compute_base_names): N-th rewrite, using filename_split.
19700
22312b71
AD
197012002-01-08 Akim Demaille <akim@epita.fr>
19702
19703 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
19704 New, stolen from the Fileutils 4.1.
19705 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19706 * configure.in: Check for the presence of memrchr, and of its
19707 prototype.
19708
a67cef01
TVH
197092002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
19710
19711 * lib/hash.h (__P): Added definition for this macro.
19712 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
19713 BUILT_SOURCES, to ensure they are generated first.
19714 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
19715 %error-verbose to allow bootstrapping with bison 1.30x.
19716
2b25d624
AD
197172002-01-06 Akim Demaille <akim@epita.fr>
19718
19719 * src/reader.c (parse_braces): Don't fetch the next char, the
19720 convention is to fetch on entry.
19721 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
19722 'switch' without a following semicolon.
19723 * tests/regression.at (braces parsing): New.
19724
3460813b
AD
197252002-01-06 Akim Demaille <akim@epita.fr>
19726
19727 Bison is dead wrong in its RR conflict reports.
19728
19729 * tests/torture.at (GNU Cim Grammar): New.
19730 * src/conflicts.c (count_rr_conflicts): Fix.
19731
73784c64
AD
197322002-01-06 Akim Demaille <akim@epita.fr>
19733
19734 Creating package.m4 from configure.ac causes too many problems.
19735
19736 * tests/Makefile.am (package.m4): Create it by hand,
19737 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
19738
25d81090
AD
197392002-01-06 Akim Demaille <akim@epita.fr>
19740
19741 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
19742 skeleton.h.
19743
a9b8959e
PE
197442002-01-04 Paul Eggert <eggert@twinsun.com>
19745
19746 * doc/bison.texinfo (Debugging):
19747 Remove YYSTDERR; it's no longer defined or used.
19748 Also, s/cstdio.h/cstdio/.
19749
25d81090
AD
197502002-01-03 Akim Demaille <akim@epita.fr>
19751
19752 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
19753
1109455c
AD
197542002-01-03 Akim Demaille <akim@epita.fr>
19755
19756 * src/parse-skel.y (process_skeleton): Don't bind the parser's
19757 tracing code to --trace, wait for a better --trace option, with
19758 args.
19759
7ea5e977
AD
197602002-01-03 Akim Demaille <akim@epita.fr>
19761
19762 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
19763 The ISO C++ standard is extremely clear about it: stderr is
19764 considered a macro, not a regular symbol (see table 94 `Header
19765 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
19766 Therefore std:: does not apply to it. It still does with fprintf.
19767 Also, s/cstdio.h/cstdio/.
19768
fab5b110
AD
197692002-01-03 Akim Demaille <akim@epita.fr>
19770
19771 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
19772 for non system headers.
19773
aed7fd9b
AD
197742002-01-02 Akim Demaille <akim@epita.fr>
19775
19776 Equip the skeleton chain with location tracking, runtime trace,
19777 pure parser and scanner.
19778
19779 * src/parse-skel.y: Request a pure parser, locations, and prefix
19780 renaming.
19781 (%union): Having several members with the same type does not help
19782 type mismatches, simplify.
19783 (YYPRINT, yyprint): New.
19784 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
19785 (skel_error): this.
19786 Handle locations.
19787 * src/scan-skel.l: Adjust to these changes.
19788 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
19789 (LOCATION_PRINT, skel_control_t): New.
19790
24fad99e
AD
197912001-12-30 Akim Demaille <akim@epita.fr>
19792
19793 * src/parse-skel.y: Get rid of the shift/reduce conflict:
19794 replace `gb' with BLANKS.
19795 * src/scan-skel.l: Adjust.
19796
a4b36db4
AD
197972001-12-30 Akim Demaille <akim@epita.fr>
19798
19799 * src/system.h: We don't need nor want bcopy.
19800 Throw away MS-DOS crap: we don't need getpid.
19801 * configure.in: We don't need strndup. It was even causing
19802 problems: because Flex includes the headers *before* us,
19803 _GNU_SOURCE is not defined by config.h, and therefore strndup was
19804 not visible.
19805 * lib/xstrndup.c: New.
19806 * src/scan-skel.l: Use it.
19807 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
19808 * src/parse-skel.y: Use %directives instead of #defines.
19809
1239777d
AD
198102001-12-30 Akim Demaille <akim@epita.fr>
19811
19812 * src/skeleton.h: New.
19813 * src/output.c (output_parser, output_master_parser): Remove, dead
19814 code.
19815 * src/output.h (get_lines_number, actions_output, guards_output)
19816 (token_definitions_output): Prototype them.
19817 * src/parse-skel.y: Add the license notice.
19818 Include output.h and skeleton.h.
19819 (process_skeleton): Returns void, and takes a single parameter.
19820 * src/scan-skel.l: Add the license notice.
19821 Include skeleton.h.
19822 Don't use %option yylineno: it seems that then Flex imagines
19823 REJECT has been used, and therefore it won't reallocate its
19824 buffers (which makes no other sense to me than a bug). It results
19825 in warnings for `unused: yy_flex_realloc'.
19826
9b3add5b
RA
198272001-12-30 Robert Anisko <robert.anisko@epita.fr>
19828
19829 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
19830 (MUSCLE_INSERT_PREFIX): ...to there.
19831 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
19832 (MUSCLE_INSERT_PREFIX): Move from here...
19833
19834 * src/bison.hairy: Add a section directive. Put braces around muscle
19835 names. This parser skeleton is still broken, but Bison should not
19836 choke on a bad muscle 'syntax'.
19837 * src/bison.simple: Add a section directive. Put braces around muscle
19838 names.
19839
19840 * src/files.h (strsuffix, stringappend): Add declarations.
19841 (tab_extension): Add declaration.
19842 (short_base_name): Add declaration.
19843
19844 * src/files.c (strsuffix, stringappend): No longer static. These
19845 functions are used in the skeleton parser.
19846 (tab_extension): New.
19847 (compute_base_names): Use the computations done in this function
fab5b110 19848 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
19849 names.
19850 (short_base_name): No longer static.
19851
19852 * src/output.c (output_skeleton): New.
19853 (output): Disable call to output_master_parser, and give a try to
19854 a new skeleton handling system.
19855 (guards_output, actions_output): No longer static.
19856 (token_definitions_output, get_lines_number): No longer static.
19857
19858 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
19859
fab5b110 19860 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
19861 parse-skel.y.
19862
19863 * src/parse-skel.y: New file.
19864 * src/scan-skel.l: New file.
19865
b5b61c61
AD
198662001-12-29 Akim Demaille <akim@epita.fr>
19867
19868 %name-prefix is broken.
19869
19870 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
19871 Adjust all dependencies.
19872 * tests/headers.at (export YYLTYPE): Strengthen this test: use
19873 %name-prefix.
19874
19875 Renaming yylval but not yylloc is not consistent. Now we do.
19876
19877 * src/bison.simple: Prefix yylloc if used.
19878 * doc/bison.texinfo (Decl Summary): Document that.
19879
8c9a50be
AD
198802001-12-29 Akim Demaille <akim@epita.fr>
19881
19882 * doc/bison.texinfo: Promote `%long-directive' over
19883 `%long_directive'.
19884 Remove all references to fixed-output-files, yacc is enough.
19885
d99361e6
AD
198862001-12-29 Akim Demaille <akim@epita.fr>
19887
19888 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
19889 user prologue. These are defaults.
19890 * tests/actions.at (Mid-rule actions): Make sure the user can
19891 define YYDEBUG and YYERROR_VERBOSE.
19892
b9cecb91
AD
198932001-12-29 Akim Demaille <akim@epita.fr>
19894
19895 * src/output.c (header_output): Don't forget to export YYLTYPE and
19896 yylloc.
19897 * tests/headers.at (export YYLTYPE): New, make sure it does.
19898 * tests/regression.at (%union and --defines, Invalid CPP headers):
19899 Move to...
19900 * tests/headers.at: here.
19901
aea13e97
AD
199022001-12-29 Akim Demaille <akim@epita.fr>
19903
19904 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
19905
931394cb
AD
199062001-12-29 Akim Demaille <akim@epita.fr>
19907
19908 * tests/actions.at (Mid-rule actions): Output on a single line
19909 instead of several.
19910
704a47c4
AD
199112001-12-29 Akim Demaille <akim@epita.fr>
19912
19913 * doc/bison.texinfo: Formatting changes.
19914
091e20bb
AD
199152001-12-29 Akim Demaille <akim@epita.fr>
19916
19917 Don't store the token defs in a muscle, just be ready to output it
19918 on command. Now possible via `symbols'. Fixes a memory leak.
19919
19920 * src/output.c (token_definitions_output): New.
19921 (output_parser, header_output): Use it.
19922 * src/reader.c (symbols_save): Remove.
19923
cce71710
AD
199242001-12-29 Akim Demaille <akim@epita.fr>
19925
19926 * src/bison.simple: Do not provide a default for YYSTYPE and
19927 YYLTYPE before the user's prologue. Otherwise it's hardly... a
19928 default.
19929
82c035a8
AD
199302001-12-29 Akim Demaille <akim@epita.fr>
19931
19932 Mid-rule actions are simply... ignored!
19933
19934 * src/reader.c (readgram): Be sure to attach mid-rule actions to
19935 the empty-rule associated to the dummy symbol, not to the host
19936 rule.
19937 * tests/actions.at (Mid-rule actions): New.
19938
8419d367
AD
199392001-12-29 Akim Demaille <akim@epita.fr>
19940
19941 Memory leak.
19942
19943 * src/reader.c (reader): Free grammar.
19944
375d5806
AD
199452001-12-29 Akim Demaille <akim@epita.fr>
19946
19947 Memory leak.
19948
19949 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
19950 since it allocates it for each state, although only one is needed.
19951 (allocate_storage): Do it here.
19952
f51cb8ff
AD
199532001-12-29 Akim Demaille <akim@epita.fr>
19954
19955 * src/options.h, src/options.c (create_long_option_table): Rename
19956 as...
19957 (long_option_table_new): this, with a clearer prototype.
19958 (percent_table): Remove, unused,
19959 * src/getargs.c (getargs): Adjust.
19960
29e88316
AD
199612001-12-29 Akim Demaille <akim@epita.fr>
19962
19963 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
19964 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
19965 as states.
19966
b9f71f19
AD
199672001-12-29 Akim Demaille <akim@epita.fr>
19968
19969 * src/lalr.c (build_relations): Rename `states' as `states1'.
19970 Sorry, I don't understand exactly what it is, no better name...
19971
1a2b5d37
AD
199722001-12-29 Akim Demaille <akim@epita.fr>
19973
19974 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
19975 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
19976 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
19977 as rules.
19978
1cca533e
AD
199792001-12-29 Akim Demaille <akim@epita.fr>
19980
19981 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
19982 ago.
19983
c03ae966
AD
199842001-12-29 Akim Demaille <akim@epita.fr>
19985
19986 * src/reader.c, src/reader.h (user_toknums): Remove.
19987 Adjust all users to use symbols[i]->user_token_number.
19988
5a670b1e
AD
199892001-12-29 Akim Demaille <akim@epita.fr>
19990
19991 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
19992 Adjust all users to use symbols[i]->prec or ->assoc.
19993
ad949da9
AD
199942001-12-29 Akim Demaille <akim@epita.fr>
19995
19996 * src/reader.c, src/reader.h (tags): Remove.
19997 Adjust all users to use symbols[i]->tag.
19998
0e78e603
AD
199992001-12-29 Akim Demaille <akim@epita.fr>
20000
20001 * src/gram.h, src/gram.c (symbols): New, similar to state_table
20002 and rule_table.
20003 * src/reader.c (packsymbols): Fill this table.
20004 Drop sprec.
20005 * src/conflicts.c (resolve_sr_conflict): Adjust.
20006 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
20007 single table.
20008 Use symbols[i]->tag instead of tags[i].
20009
213e640e
AD
200102001-12-29 Akim Demaille <akim@epita.fr>
20011
20012 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
20013 In addition, put a comment in there, to replace...
20014 * tests/regression.at (%union and C comments): Remove.
20015
e7b8bef1
AD
200162001-12-29 Akim Demaille <akim@epita.fr>
20017
20018 * tests/regression.at (Web2c Actions): Blindly move the actual
20019 output as expected output. The contents *seem* right to me, but I
20020 can't pretend reading perfectly parser tables... Nonetheless, all
20021 the other tests pass correctly, the table look OK, even though the
20022 presence of `$axiom' is to be noted: AFAICS it is useless (but
20023 harmless).
20024
b68e7744
AD
200252001-12-29 Akim Demaille <akim@epita.fr>
20026
20027 * src/reader.c (readgram): Don't add the rule 0 if there were no
20028 rules read. In other words, add it _after_ having performed
20029 grammar sanity checks.
20030 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
20031
78d5bae9
AD
200322001-12-29 Akim Demaille <akim@epita.fr>
20033
20034 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
20035 visible, and some states have now a different number.
20036
ff442794
AD
200372001-12-29 Akim Demaille <akim@epita.fr>
20038
20039 * src/reader.c (readgram): Bind the initial rule's lineno to that
20040 of the first rule.
20041 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
20042 (Solved SR Conflicts): Adjust rule 0's line number.
20043
610ab194
AD
200442001-12-29 Akim Demaille <akim@epita.fr>
20045
20046 Fix the `GAWK Grammar' failure.
20047
20048 * src/LR0.c (final_state): Initialize to -1 so that we do compute
20049 the reductions of the first state which was mistakenly confused
20050 with the final state because precisely final_state was initialized
20051 to 0.
20052 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
20053 now noticed by Bison.
20054 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
20055 have a reduction on $default.
20056
29d29c8f
AD
200572001-12-29 Akim Demaille <akim@epita.fr>
20058
20059 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
20060 rule line numbers.
20061 * src/closure.c (print_closure): Likewise.
20062 * src/derives.c (print_derives): Likewise.
20063 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
20064 now.
20065
7c6b64d0
AD
200662001-12-29 Akim Demaille <akim@epita.fr>
20067
20068 * src/lalr.c (lookaheads_print): New.
20069 (lalr): Call it when --trace-flag.
20070 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
20071 are dumped.
20072
3d4daee3
AD
200732001-12-29 Akim Demaille <akim@epita.fr>
20074
20075 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
20076 when walking through ritem, even via rule->rhs.
20077 * src/reduce.c (dump_grammar, useful_production, reduce_output)
20078 (useful_production, useless_nonterminals): Likewise.
20079 (reduce_grammar_tables): Likewise, plus update nritems.
20080 * src/nullable.c (set_nullable): Likewise.
20081 * src/lalr.c (build_relations): Likewise.
20082 * tests/sets.at (Nullable): Adjust.
20083 Fortunately, now, the $axiom is no longer nullable.
20084
9e7f6bbd
AD
200852001-12-29 Akim Demaille <akim@epita.fr>
20086
20087 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
20088 the 0-sentinel.
20089 * src/gram.c (ritem_longest_rhs): Likewise.
20090 * src/reduce.c (nonterminals_reduce): Likewise.
20091 * src/print_graph.c (print_graph): Likewise.
20092 * src/output.c (output_rule_data): Likewise.
20093 * src/nullable.c (set_nullable): Likewise.
20094
255ef638
AD
200952001-12-29 Akim Demaille <akim@epita.fr>
20096
20097 * src/output.c: Comment changes.
20098
0d8a7363
AD
200992001-12-27 Paul Eggert <eggert@twinsun.com>
20100
20101 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
20102 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
20103 Sparc, as they were causing more porting problems than the
20104 (minor) performance improvement was worth.
20105
20106 Also, catch up with 1.31's YYSTD.
20107
3db472b9
AD
201082001-12-27 Akim Demaille <akim@epita.fr>
20109
20110 * src/output.c (output_gram): Rely on nritems, not the
20111 0-sentinel. See below.
20112 Use -1 as separator, not 0.
20113 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
20114 Rely on -1 as separator in yyrhs, instead of 0.
20115 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
20116 twice `Now at end of input', therefore there are two lines less to
20117 expect.
20118
b365aa05
AD
201192001-12-27 Akim Demaille <akim@epita.fr>
20120
20121 * tests/regression.at (Unresolved SR Conflicts):
20122 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
20123 below.
20124
30171f79
AD
201252001-12-27 Akim Demaille <akim@epita.fr>
20126
20127 * src/LR0.c (new_state): Recognize the final state by the fact it
20128 is reached by eoftoken.
20129 (insert_start_shifting_state, insert_eof_shifting_state)
20130 (insert_accepting_state, augment_automaton): Remove, since now
20131 these states are automatically computed from the initial state.
20132 (generate_states): Adjust.
20133 * src/print.c: When reporting a rule number to the user, substract
20134 1, so that the axiom rule is rule 0, and the first user rule is 1.
20135 * src/reduce.c: Likewise.
20136 * src/print_graph.c (print_core): For the time being, just as for
20137 the report, depend upon --trace-flags to dump the full set of
20138 items.
20139 * src/reader.c (readgram): Once the grammar read, insert the rule
20140 0: `$axiom: START-SYMBOL $'.
20141 * tests/set.at: Adjust: rule 0 is now displayed, and since the
20142 number of the states has changed (the final state is no longer
20143 necessarily the last), catch up.
20144
75142d45
AD
201452001-12-27 Akim Demaille <akim@epita.fr>
20146
20147 Try to make the use of the eoftoken valid. Given that its value
20148 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
20149 is used instead of > 0 where appropriate, (ii), depend upon nritems
20150 instead of the 0-sentinel.
20151
20152 * src/gram.h, src/gram.c (nritems): New.
20153 Expected to be duplication of nitems, but for the time being...
20154 * src/reader.c (packgram): Assert nritems and nitems are equal.
20155 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
20156 * src/closure.c (print_closure, print_fderives): Likewise.
20157 * src/gram.c (ritem_print): Likewise.
20158 * src/print.c (print_core, print_grammar): Likewise.
20159 * src/print_graph.c: Likewise.
20160
b7c49edf
AD
201612001-12-27 Akim Demaille <akim@epita.fr>
20162
20163 * src/main.c (main): If there are complains after grammar
20164 reductions, then output the report anyway if requested, then die.
20165 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
20166 * src/reader.c (eoftoken): New.
20167 (parse_token_decl): If the token being defined has value `0', it
20168 is the eoftoken.
20169 (packsymbols): No longer hack `tags' to insert `$' by hand.
20170 Be sure to preserve the value of the eoftoken.
20171 (reader): Make sure eoftoken is defined.
20172 Initialize nsyms to 0: now eoftoken is created just like the others.
20173 * src/print.c (print_grammar): Don't special case the eof token.
20174 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
20175 lie anyway, albeit pleasant.
20176 * tests/calc.at: Exercise error messages with eoftoken.
20177 Change the grammar so that empty input is invalid.
20178 Adjust expectations.
20179 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
20180
ec2da99f
AD
201812001-12-27 Akim Demaille <akim@epita.fr>
20182
20183 * configure.in: Check the protos of strchr ans strspn.
20184 Replace strchr if needed.
20185 * src/system.h: Provide the protos of strchr, strspn and memchr if
20186 missing.
20187 * lib/strchr.c: New.
20188 * src/reader.c (symbols_save): Use strchr.
20189
8adfa272
AD
201902001-12-27 Akim Demaille <akim@epita.fr>
20191
20192 * src/print.c, src/print_graph.c (escape): New.
20193 Use it to quote the TAGS outputs.
20194 * src/print_graph.c (print_state): Now errors are in red, and
20195 reductions in green.
20196 Prefer high to wide: output the state number on a line of its own.
20197
80dac38c
AD
201982001-12-27 Akim Demaille <akim@epita.fr>
20199
20200 * src/state.h, src/state.c (reductions_new): New.
20201 * src/LR0.c (set_state_table): Let all the states have a
20202 `reductions', even if reduced to 0.
20203 (save_reductions): Adjust.
20204 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
20205 * src/print.c (print_reductions, print_actions): Adjust.
20206 * src/output.c (action_row): Adjust.
20207
2cec70b9
AD
202082001-12-27 Akim Demaille <akim@epita.fr>
20209
20210 * src/state.h, src/state.c (errs_new, errs_dup): New.
20211 * src/LR0.c (set_state_table): Let all the states have an errs,
20212 even if reduced to 0.
20213 * src/print.c (print_errs, print_reductions): Adjust.
20214 * src/output.c (output_actions, action_row): Adjust.
20215 * src/conflicts.c (resolve_sr_conflict): Adjust.
20216
13ca549a
AD
202172001-12-27 Akim Demaille <akim@epita.fr>
20218
20219 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
20220
5092aba5
AD
202212001-12-27 Akim Demaille <akim@epita.fr>
20222
20223 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
20224 * src/print.c: here.
20225 (lookaheadset, shiftset): New, used as additional storage by
20226 print_reductions.
20227 (print_results): Adjust.
20228 (print_shifts, print_gotos, print_errs): New, extracted from...
20229 (print_actions): here.
20230 * src/print_graph.c (print_actions): Remove dead code.
20231
11e2beca
AD
202322001-12-27 Akim Demaille <akim@epita.fr>
20233
20234 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
20235 `$n' and `@n'.
20236
dac3c910
AD
202372001-12-27 Akim Demaille <akim@epita.fr>
20238
20239 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
20240 (build_relations): Adjust.
20241
d0b0fefa
AD
202422001-12-27 Akim Demaille <akim@epita.fr>
20243
20244 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
20245 duplication.
20246
adc8c848
AD
202472001-12-27 Akim Demaille <akim@epita.fr>
20248
20249 * src/reader.c (packgram): Catch nitems overflows.
20250
14d293ac
AD
202512001-12-27 Akim Demaille <akim@epita.fr>
20252
20253 * src/files.c, src/files.h (guard_obstack): Remove.
20254 * src/output.c (output): Adjust.
20255 * src/reader.c (parse_braces): New, factoring...
20256 (copy_action, copy_guard): these two which are renamed as...
20257 (parse_action, parse_guard): these.
20258 As a voluntary consequence, using braces around guards is now
20259 mandatory.
20260
f499b062
AD
202612001-12-27 Akim Demaille <akim@epita.fr>
20262
20263 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
20264 * src/reader.c (symbol_list): `guard' and `guard_line' are new
20265 members.
20266 (symbol_list_new): Adjust.
20267 (copy_action): action_line is the first line, not the last.
20268 (copy_guard): Just as for actions, store the `action' only, not
20269 the switch/case/break flesh.
20270 Don't parse the user action that might follow the guard, let...
20271 (readgram): do it, i.e., now, there can be an action after a
20272 guard.
20273 In other words the guard is just explicitly optional.
20274 (packgram): Adjust.
20275 * src/output.c (guards_output): New.
20276 (output_parser): Call it when needed.
20277 (output): Also free the guard and attrs obstacks.
20278 * src/files.c, src/files.h (obstack_save): Remove.
20279 (output_files): Remove.
20280 As a result, if one needs the former `.act' file, using an
20281 appropriate skeleton which requires actions and guards is now
20282 required.
20283 * src/main.c (main): Adjust.
20284 * tests/semantic.at: New.
20285 * tests/regression.at: Use `input.y' as input file name.
20286 Avoid 8+3 problems by requiring input.c when the test needs the
20287 parser.
20288
d945f5cd
AD
202892001-12-27 Akim Demaille <akim@epita.fr>
20290
20291 * src/reader.c (symbol_list_new): Be sure to initialize all the
20292 fields.
20293
d200e455
AD
202942001-12-27 Akim Demaille <akim@epita.fr>
20295
20296 All the hacks using a final pseudo state are now useless.
20297
20298 * src/LR0.c (set_state_table): state_table holds exactly nstates.
20299 * src/lalr.c (nLA): New.
20300 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
20301 instead of lookaheadsp from the pseudo state (nstate + 1).
20302
f9507c28
AD
203032001-12-27 Akim Demaille <akim@epita.fr>
20304
20305 * src/output.c (action_row, token_actions): Use a state_t instead
20306 of a integer, and nlookaheads instead of the following state's
20307 lookaheadsp.
20308
065fbd27
AD
203092001-12-27 Akim Demaille <akim@epita.fr>
20310
20311 * src/conflicts.c (log_resolution, flush_shift)
20312 (resolve_sr_conflict, set_conflicts, solve_conflicts)
20313 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
20314 (conflicts_print, print_reductions): Use a state_t instead of an
20315 integer when referring to a state.
20316 As much as possible, depend upon nlookaheads, instead of the
20317 `lookaheadsp' member of the following state (since lookaheads of
20318 successive states are successive, the difference between state n + 1
20319 and n served as the number of lookaheads for state n).
20320 * src/lalr.c (add_lookback_edge): Likewise.
20321 * src/print.c (print_core, print_actions, print_state)
20322 (print_results): Likewise.
20323 * src/print_graph.c (print_core, print_actions, print_state)
20324 (print_graph): Likewise.
20325 * src/conflicts.h: Adjust.
20326
1b177bd7
AD
203272001-12-27 Akim Demaille <akim@epita.fr>
20328
20329 * src/bison.hairy: Formatting/comment changes.
20330 ANSIfy.
20331 Remove `register' indications.
20332 Add plenty of `static'.
20333
7742ddeb
AD
203342001-12-27 Akim Demaille <akim@epita.fr>
20335
20336 * src/output.c (prepare): Drop the muscle `ntbase' which
20337 duplicates ntokens.
20338 * src/bison.simple: Formatting/comment changes.
20339 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
20340 is an undocumented synonym.
20341
1fa14068
AD
203422001-12-22 Akim Demaille <akim@epita.fr>
20343
20344 * src/output.c (output_table_data): Change the prototype to use
20345 `int' for array ranges: some invocations do pass an int, not a
20346 short.
20347 Reported by Wayne Green.
20348
b9752825
AD
203492001-12-22 Akim Demaille <akim@epita.fr>
20350
20351 Some actions of web2c.y are improperly triggered.
20352 Reported by Mike Castle.
20353
20354 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
20355 * tests/regression.at (Web2c): Rename as...
20356 (Web2c Report): this.
20357 (Web2c Actions): New.
20358
776209d6
AD
203592001-12-22 Akim Demaille <akim@epita.fr>
20360
20361 Reductions in web2c.y are improperly reported.
20362 Reported by Mike Castle.
20363
20364 * src/conflicts.c (print_reductions): Fix.
20365 * tests/regression.at (Web2c): New.
20366
275fc3ad
AD
203672001-12-18 Akim Demaille <akim@epita.fr>
20368
20369 Some host fail on `assert (!"foo")', which expands to
20370 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
20371 Reported by Nelson Beebee.
20372
20373 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
20374 `#define it_succeeded 0' and `assert (it_succeeded)'.
20375
897668ee
MA
203762001-12-17 Marc Autret <autret_m@epita.fr>
20377
20378 * src/bison.simple: Don't hard code the skeleton line and filename.
20379 * src/output.c (output_parser): Rename 'line' as 'output_line'.
20380 New line counter 'skeleton_line' (skeleton-line muscle).
20381
ab3399e0
PE
203822001-12-17 Paul Eggert <eggert@twinsun.com>
20383
20384 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
20385 YYDEBUG must be defined to a nonzero value.
20386
20387 * src/bison.simple (yytname): Do not assume that the user defines
20388 YYDEBUG to a properly parenthesized expression.
20389
3877f72b
AD
203902001-12-17 Akim Demaille <akim@epita.fr>
20391
20392 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
20393 nlookaheads is a new member.
20394 Adjust all users.
20395 * src/lalr.h (nlookaheads): Remove this orphan declaration.
20396 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
20397 state.
776209d6 20398
331dbc1b
AD
203992001-12-17 Akim Demaille <akim@epita.fr>
20400
20401 * src/files.h, src/files.c (open_files, close_files): Remove.
20402 * src/main.c (main): Don't open/close files, nor invoke lex_free,
20403 let...
20404 * src/reader.c (reader): Do it.
776209d6 20405
be750e4c
AD
204062001-12-17 Akim Demaille <akim@epita.fr>
20407
20408 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 20409
709ae8c6
AD
204102001-12-17 Akim Demaille <akim@epita.fr>
20411
20412 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
20413 (flush_reduce): New.
20414 (resolve_sr_conflict): Adjust.
776209d6 20415
f87685c3
AD
204162001-12-17 Akim Demaille <akim@epita.fr>
20417
20418 * src/output.c (output_obstack): Be static and rename as...
20419 (format_obstack): this, to avoid any confusion with files.c's
20420 output_obstack.
20421 * src/reader.h (muscle_obstack): Move to...
20422 * src/output.h: here, since it's defined in output.c.
20423
837491d8
AD
204242001-12-17 Akim Demaille <akim@epita.fr>
20425
20426 * src/output.c (action_row, save_column, default_goto)
20427 (sort_actions, matching_state, pack_vector): Better variable
20428 locality.
20429
796d61fb
AD
204302001-12-17 Akim Demaille <akim@epita.fr>
20431
20432 * src/output.c: Various formatting changes.
776209d6 20433
64d15509
AD
204342001-12-17 Akim Demaille <akim@epita.fr>
20435
20436 * src/files.c (output_files): Free the output_obstack.
20437 * src/main.c (main): Call print and print_graph conditionally.
20438 * src/print.c (print): Work unconditionally.
20439 * src/print_graph.c (print_graph): Work unconditionally.
20440 * src/conflicts.c (log_resolution): Output only if verbose_flag.
20441
fbc8ecb7
MA
204422001-12-16 Marc Autret <autret_m@epita.fr>
20443
20444 * src/output.c (actions_output): Fix. When we use %no-lines,
20445 there is one less line per action.
20446
f0440388
MA
204472001-12-16 Marc Autret <autret_m@epita.fr>
20448
20449 * src/bison.simple: Remove a useless #line directive.
20450 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
20451 * src/output.c (get_lines_number): New.
776209d6 20452 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
20453 output muscles.
20454 Fix line numbering.
20455 (actions_output): Computes the number of lines taken by actions.
20456 (output_master_parser): Insert new skeleton which is the name of
20457 the output parser file name.
20458
a79986b8
MA
204592001-12-15 Marc Autret <autret_m@epita.fr>
20460
20461 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
20462
4ec8e00f
MA
204632001-12-15 Marc Autret <autret_m@epita.fr>
20464
20465 * src/output.c (output_gram): Keep track of the hairy one.
20466
1a4648ff
AD
204672001-12-15 Akim Demaille <akim@epita.fr>
20468
20469 Make `make distcheck' work.
20470
20471 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
20472 system.h which uses libgettext.h.
20473
9c2c67e6
AD
204742001-12-15 Akim Demaille <akim@epita.fr>
20475
20476 * src/nullable.c (set_nullable): Useless rules must be skipped,
20477 otherwise, since we range over their symbols, we might look at a
20478 nonterminal which no longer ``exists'', i.e., it is not counted in
20479 `nvars', hence we overflow our arrays.
20480
93ede233
AD
204812001-12-15 Akim Demaille <akim@epita.fr>
20482
20483 The header can also be produced directly, without any obstack!
20484 Yahoo!
20485
20486 * src/files.c, src/files.h (defines_obstack): Remove.
20487 (compute_header_macro): Global.
20488 (defines_obstack_save): Remove.
20489 * src/reader.c (parse_union_decl): No longer output to
20490 defines_obstack: its content can be found in the `stype' muscle
20491 anyway.
20492 (output_token_translations): Merge into...
20493 (symbols_output): this.
20494 Rename as...
20495 (symbols_save): this.
20496 (reader): Adjust.
20497 * src/output.c (header_output): New.
20498 (output): Call it.
20499
2666f928
AD
205002001-12-15 Akim Demaille <akim@epita.fr>
20501
20502 * src/reader.c (parse_union_decl): Instead of handling two obstack
20503 simultaneously, use one to define the `stype' muscle, and use the
20504 value of the latter to fill defines_obstack.
20505 (copy_comment): Remove.
20506 (copy_comment2): Work for a single obstack.
20507 Rename as...
20508 (copy_comment): this.
20509
428046f8
AD
205102001-12-15 Akim Demaille <akim@epita.fr>
20511
20512 * src/lex.c, src/lex.h (xgetc): No longer static.
20513 * src/reader.c (parse_union_decl): Revamp.
20514
ea52d706
AD
205152001-12-15 Akim Demaille <akim@epita.fr>
20516
20517 Still making progress in separating Bison into (i) input, (ii)
20518 process, (iii) output: now we can directly output the parser file
20519 without using table_obstack at all.
20520
20521 * src/files.c, src/files.h (table_obstack): Bye bye.
20522 (parser_file_name): New.
20523 * src/files.c (compute_output_file_names): Compute it.
20524 * src/output.c (actions_output, output_parser)
20525 (output_master_parser): To a file instead of an obstack.
20526
3f96f4dc
AD
205272001-12-15 Akim Demaille <akim@epita.fr>
20528
20529 Attach actions to rules, instead of pre-outputting them to
20530 actions_obstack.
20531
20532 * src/gram.h (rule_t): action and action_line are new members.
20533 * src/reader.c (symbol_list): Likewise.
20534 (copy_action): Save the actions within the rule.
20535 (packgram): Save them in rule_table.
20536 * src/output.c (actions_output): New.
20537 (output_parser): Use it on `%%actions'.
20538 (output_rule_data): Don't free rule_table.
20539 (output): Do it.
20540 (prepare): Don't save the `action' muscle.
20541 * src/bison.simple: s/%%action/%%actions/.
20542
51576fb3
AD
205432001-12-15 Akim Demaille <akim@epita.fr>
20544
20545 * src/reader.c (copy_action): When --yacc, don't append a `;'
20546 to the user action: let it fail if lacking.
dee049eb 20547 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 20548
2648a72d
AD
205492001-12-14 Akim Demaille <akim@epita.fr>
20550
20551 * src/lex.c (literalchar): Simply return the char you decoded, non
20552 longer mess around with obstacks and int pointers.
20553 Adjust all callers.
20554
92790e5b
AD
205552001-12-14 Akim Demaille <akim@epita.fr>
20556
20557 * src/lex.c (literalchar): Don't escape the special characters,
20558 just decode them, and keep them as char (before, eol was output as
20559 the 2 char string `\n' etc.).
20560 * src/output.c (output_rule_data): Use quotearg to output the
20561 token strings.
20562
927c1557
PE
205632001-12-13 Paul Eggert <eggert@twinsun.com>
20564
20565 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
20566 Do not infringe on the global user namespace when using C++.
20567 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
20568 All uses of `fprintf' and `stderr' changed.
20569
20570 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
20571
ed8e1f68
AD
205722001-12-13 Akim Demaille <akim@epita.fr>
20573
20574 The computation of nullable is broken: it doesn't handle empty
20575 RHS's properly.
20576
20577 * tests/torture.at (GNU AWK Grammar): New.
20578 * tests/sets.at (Nullable): New.
20579 * src/nullable.c (set_nullable): Instead of blindly looping over
20580 `ritems', loop over the rules, and then over their rhs's.
20581
20582 Work around Autotest bugs.
20583
20584 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
20585 frame, because Autotest understand lines starting with a `+' as
20586 traces from the shell. Then, they are not processed properly.
20587 Admittedly an Autotest bug, but we don't have time to wait for
20588 Autotest to catch up.
20589 * tests/regression.at (Broken Closure): Adjust to the new table
20590 frames.
20591 Move to...
20592 * tests/sets.at: here.
20593
cb581495
AD
205942001-12-13 Akim Demaille <akim@epita.fr>
20595
20596 * src/closure.c (closure): Use nrules instead of playing tricks
20597 with BITS_PER_WORD.
20598
2e729273
AD
205992001-12-13 Akim Demaille <akim@epita.fr>
20600
20601 * src/print.c (print_actions): Output the handling of `$' as the
20602 traces do: shifting the token EOF. Before EOF was treated as a
20603 nonterminal.
20604 * tests/regression.at: Adjust some tests.
20605 * src/print_graph.c (print_core): Complete the set of items via
20606 closure. The next-to-final and final states are still unsatisfying,
20607 but that's to be addressed elsewhere.
20608 No longer output the rule numbers, but do output the state number.
20609 A single loop for the shifts + gotos is enough, but picked a
20610 distinct color for each.
20611 (print_graph): Initialize and finalize closure.
20612
107f7dfb
AD
206132001-12-13 Akim Demaille <akim@epita.fr>
20614
20615 * src/reader.c (readgram): Remove dead code, an strip useless
20616 braces.
20617 (get_type): Remove, unused.
20618
9b53a24f
AD
206192001-12-12 Akim Demaille <akim@epita.fr>
20620
20621 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
20622 on that of lib/error.c.
20623
dbfb6dcd
AD
206242001-12-12 Akim Demaille <akim@epita.fr>
20625
20626 Some hosts don't like `/' in includes.
20627
20628 * src/system.h: Include libgettext.h without qualifying the path.
20629 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
20630 $(top_srcdir).
20631
c25fb648
MA
206322001-12-11 Marc Autret <autret_m@epita.fr>
20633
20634 * src/output.c (output_parser): Remove useless muscle.
20635
710ddc4f
MA
206362001-12-11 Marc Autret <autret_m@epita.fr>
20637
20638 * src/bison.simple: Remove #line just before %%epilogue. It
20639 is now handled in ...
20640 * src/reader.c (read_additionnal_code): Add the output of a
20641 #line for the epilogue.
20642
e83d80b8
MA
206432001-12-10 Marc Autret <autret_m@epita.fr>
20644
927c1557 20645 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
20646 replace precedent remove.
20647 * src/bison.simple: Remove #line before %%prologue because
20648 %%input-line is wrong at this time.
20649
971d5158
MA
206502001-12-10 Marc Autret <autret_m@epita.fr>
20651
20652 * src/reader.c (symbols_output): Clean up.
927c1557 20653 * src/output.c (output_gram, output): Clean up.
971d5158 20654
5edafffd
AD
206552001-12-10 Akim Demaille <akim@epita.fr>
20656
20657 * src/lalr.c (initialize_lookaheads): New. Extracted from...
20658 * src/LR0.c (set_state_table): here.
20659 * src/lalr.c (lalr): Call it.
20660
0279f8e9
AD
206612001-12-10 Akim Demaille <akim@epita.fr>
20662
20663 * src/state.h (shifts): Remove the `number' member: shifts are
20664 attached to state, hence no longer need to be labelled with a
20665 state number.
20666
190c4f5f
AD
206672001-12-10 Akim Demaille <akim@epita.fr>
20668
20669 Now that states have a complete set of members, the linked list of
20670 shifts is useless: just fill directly the state's shifts member.
20671
20672 * src/state.h (shifts): Remove the `next' member.
20673 * src/LR0.c (first_state, last_state): Remove.
20674 Adjust the callers.
20675 (augment_automaton): Don't look for the shifts that must be added
20676 a shift on EOF: it is those of the state we looked for! But now,
20677 since shifts are attached, it is no longer needed to looking
20678 merely by its id: its number.
20679
2a73b93d
AD
206802001-12-10 Akim Demaille <akim@epita.fr>
20681
20682 * src/LR0.c (augment_automaton): Better variable locality.
20683 Remove an impossible branch: if there is a state corresponding to
20684 the start symbol being shifted, then there is shift for the start
20685 symbol from the initial state.
20686
74392f6a
AD
206872001-12-10 Akim Demaille <akim@epita.fr>
20688
20689 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
20690 only when appropriate: when insert_start_shifting_state' is not
20691 invoked.
20692 * tests/regression.at (Rule Line Numbers): Adjust.
20693
37c82725
AD
206942001-12-10 Akim Demaille <akim@epita.fr>
20695
20696 * src/LR0.c (augment_automaton): Now that all states have shifts,
20697 merge the two cases addition shifts to the initial state.
20698
6a164e0c
AD
206992001-12-10 Akim Demaille <akim@epita.fr>
20700
20701 * src/lalr.c (set_state_table): Move to...
20702 * src/LR0.c: here.
20703 * src/lalr.c (lalr): Don't call it...
20704 * src/LR0.c (generate_states): do it.
20705 * src/LR0.h (first_state): Remove, only the table is used.
20706
7215de24
AD
207072001-12-10 Akim Demaille <akim@epita.fr>
20708
20709 * src/LR0.h (first_shift, first_reduction): Remove.
20710 * src/lalr.c: Don't use first_shift: find shifts through the
20711 states.
20712
80e25d4d
AD
207132001-12-10 Akim Demaille <akim@epita.fr>
20714
20715 * src/LR0.c: Attach shifts to states as soon as they are
20716 computed.
20717 * src/lalr.c (set_state_table): Instead of assigning shifts to
20718 state, just assert that the mapping was properly done.
20719
0ab3728b
AD
207202001-12-10 Akim Demaille <akim@epita.fr>
20721
20722 * src/LR0.c (insert_start_shift): Rename as...
20723 (insert_start_shifting_state): this.
20724 (insert_eof_shifting_state, insert_accepting_state): New.
20725 (augment_automaton): Adjust.
20726 Better locality of the variables.
20727 When looking if the start_symbol is shifted from the initial
20728 state, using `while (... symbol != start_symbol ...)' sounds
20729 better than `while (... symbol < start_symbol ...)': If fail
20730 to see how the order between symbols could be relevant!
20731
78af9bbc
AD
207322001-12-10 Akim Demaille <akim@epita.fr>
20733
20734 * src/getargs.h: Don't declare `spec_name_prefix' and
20735 `spec_file_prefix', declared by src/files.h.
20736 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
20737 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
20738 * src/output.c (prepare): Adjust.
20739 * src/reader.c (symbols_output): Likewise.
20740 * src/vmsgetargs.c: Vaguely adjust, but who cares?
20741
bdef2a41
AD
207422001-12-10 Akim Demaille <akim@epita.fr>
20743
20744 * src/muscle_tab.c (muscle_init): NULL is a better default than
20745 `"0"'.
20746
3735969c
AD
207472001-12-10 Akim Demaille <akim@epita.fr>
20748
20749 * src/reader.c (reader): Calling symbols_output once is enough.
20750
49701457
AD
207512001-12-10 Akim Demaille <akim@epita.fr>
20752
20753 Now that states have a complete set of members, the linked list of
20754 reductions is useless: just fill directly the state's reductions
20755 member.
20756
20757 * src/state.h (struct reductions): Remove member `number' and
20758 `next'.
20759 * src/LR0.c (first_reduction, last_reduction): Remove.
20760 (save_reductions): Don't link the new reductions, store them in
20761 this_state.
20762 * src/lalr.c (set_state_table): No need to attach reductions to
20763 states, it's already done.
20764 * src/output.c (output_actions): No longer free the shifts, then
20765 the reductions, then the states: free all the states and their
20766 members.
20767
0edad749
AD
207682001-12-10 Akim Demaille <akim@epita.fr>
20769
20770 * src/options.c (OPTN, DRTV, BOTH): New.
20771 (option_table): Use them.
20772
0edad749
AD
20773 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
20774 the job of system.h.
20775 * src/options.c: Don't include stdio.h and xalloc.h for the same
20776 reasons.
20777
5449dd0f
AD
207782001-12-10 Akim Demaille <akim@epita.fr>
20779
20780 * src/output.c (output, prepare): Make sure the values of the
20781 muscles `action' and `prologue' are 0-terminated.
20782
a870c567
AD
207832001-12-10 Akim Demaille <akim@epita.fr>
20784
20785 Clean up GCC warnings.
20786
20787 * src/reader.c (copy_action): `buf' is not used.
20788 (parse_skel_decl): Be static.
20789 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
20790 * src/options.h (create_long_option_table): Have a real prototype.
20791 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
20792 (hash_delete_at): Return const void *.
20793 Adjust casts to preserve the const.
20794
80df8768
AD
207952001-12-10 Akim Demaille <akim@epita.fr>
20796
20797 * configure.in: Require 2.52g.
20798 M4 is not needed, but AUTOM4TE is.
20799 * m4/m4.m4: Remove.
20800 * tests/Makefile.am: Adjust.
20801
f693ad14
AD
208022001-12-10 Akim Demaille <akim@epita.fr>
20803
20804 One structure for states is enough, even though theoretically
20805 there are LR(0) states and LALR(1) states.
20806
20807 * src/lalr.h (state_t): Remove.
20808 (state_table): Be state_t **, not state_t *.
20809 * src/state.h (core, CORE_ALLOC): Rename as...
20810 (state_t, STATE_ALLOC): this.
20811 Add the LALR(1) members: shifts, reductions, errs.
20812 * src/LR0.c (state_table): Rename as...
20813 (state_hash): this, to avoid name clashes with the global
20814 `state_table'.
20815 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
20816 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
20817
74ffbcb6
AD
208182001-12-10 Akim Demaille <akim@epita.fr>
20819
20820 Bison dumps core on bash.y.
20821 Reported by Pascal Bart.
20822
20823 * src/warshall.c (bitmatrix_print): New.
20824 (TC): Use it.
ba0fe3c7 20825 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
20826 j must be the outer loop.
20827 * tests/regression.at (Broken Closure): New.
20828
07708e19
AD
208292001-12-05 Akim Demaille <akim@epita.fr>
20830
20831 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
20832 its argument.
ba1ecc07 20833 Reported by Peter Hamorsky.
07708e19 20834
92b16366
AD
208352001-12-05 Akim Demaille <akim@epita.fr>
20836
20837 * src/conflicts.c (err_table): Remove.
20838 (resolve_sr_conflict): Adjust.
20839 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
20840 Rename as...
20841 (state_t.reductions, state_t.shifts): this.
20842
076ab033
AD
208432001-12-05 Akim Demaille <akim@epita.fr>
20844
20845 * src/reduce.c (reduce_grammar_tables): No longer disable the
20846 removal of useless rules via CPP but via `if (0)', so that the
20847 compiler still check the code is valid.
20848 For instance, it should have noticed `rline' no longer exists: use
20849 the `line' member of rule_t.
20850 * src/gram.c (dummy, rline): Remove, unused.
20851
3843c413
AD
208522001-12-05 Akim Demaille <akim@epita.fr>
20853
20854 * src/output.c (pack_vector): Use assert, not berror.
20855 * src/main.c (berror): Remove, unused.
20856
43168960
AD
208572001-12-05 Akim Demaille <akim@epita.fr>
20858
20859 New experimental feature: if --verbose --trace output all the
20860 items of a state, not only its kernel.
20861
20862 * src/print.c (print_core): If `trace_flag', then invoke closure
20863 before outputting the items of the state (print_core is no longer
20864 a correct name them).
20865 (print_results): Invoke new_closure/free_closure if needed.
20866
b2872512
AD
208672001-12-05 Akim Demaille <akim@epita.fr>
20868
20869 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
20870 * src/closure.c, src/closure.h (itemsetsize): Rename as...
20871 (nitemset): for consistency with the rest of the project.
20872
23cbcc6c
AD
208732001-12-05 Akim Demaille <akim@epita.fr>
20874
20875 * src/closure.c (print_closure): Improve.
20876 (closure): Use it for printing input and output.
20877
03ec521c
AD
208782001-12-05 Akim Demaille <akim@epita.fr>
20879
20880 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
20881 indexed by nonterminals.
20882
3a7456dd
AD
208832001-12-05 Akim Demaille <akim@epita.fr>
20884
20885 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
20886 what it was!).
20887 * src/warshall.h: Remove accidental duplication of the content.
20888
1cbcf2e7
AD
208892001-12-05 Akim Demaille <akim@epita.fr>
20890
20891 * src/closure.c (set_fderives): De-obfuscate.
20892
84182270
AD
208932001-12-05 Akim Demaille <akim@epita.fr>
20894
20895 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
20896
3f6f053c
AD
208972001-12-05 Akim Demaille <akim@epita.fr>
20898
20899 * src/closure.c (set_firsts): De-obfuscate.
20900
7a5350ba
AD
209012001-12-05 Akim Demaille <akim@epita.fr>
20902
20903 * src/output.c (action_row): De-obfuscate
20904 using the good o' techniques: arrays not pointers, variable
20905 locality, BITISSET, RESETBIT etc.
20906
d954473d
AD
209072001-12-05 Akim Demaille <akim@epita.fr>
20908
20909 Pessimize the code to simplify it: from now on, all the states
20910 have a valid SHIFTS, which NSHIFTS is possibly 0.
20911
20912 * src/LR0.c (shifts_new): Be global and move to..
20913 * src/state.c, src/state.h: here.
20914 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
20915 * src/print_graph: Adjust.
20916
9839bbe5
AD
209172001-12-05 Akim Demaille <akim@epita.fr>
20918
20919 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
20920 * src/conflicts.c: Use it.
20921 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
20922 incorrectly ``simplified''.
20923
9f136c07
AD
209242001-12-05 Akim Demaille <akim@epita.fr>
20925
20926 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
20927 using the good o' techniques: arrays not pointers, variable
20928 locality, BITISSET, RESETBIT etc.
20929
b608206e
AD
209302001-12-05 Akim Demaille <akim@epita.fr>
20931
20932 * src/state.h (SHIFT_SYMBOL): New.
20933 * src/conflicts.c: Use it to deobfuscate.
20934
52afa962
AD
209352001-12-05 Akim Demaille <akim@epita.fr>
20936
20937 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
20938 (print_reductions): De-obfuscate using the good o' techniques:
20939 arrays not pointers, variable locality, BITISSET.
20940
e74dc321
AD
209412001-12-05 Akim Demaille <akim@epita.fr>
20942
20943 * src/conflicts.c (print_reductions): Arrays, not pointers.
20944 Use BITISSET.
20945
768fca83
AD
209462001-12-05 Akim Demaille <akim@epita.fr>
20947
20948 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20949
a17e599f
AD
209502001-12-05 Akim Demaille <akim@epita.fr>
20951
20952 * src/conflicts.c (print_reductions): Improve variable locality.
20953
a04bc341
AD
209542001-12-05 Akim Demaille <akim@epita.fr>
20955
20956 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20957
c8ea038e
AD
209582001-12-05 Akim Demaille <akim@epita.fr>
20959
20960 * src/conflicts.c (print_reductions): Improve variable locality.
20961
aa2aab3c
AD
209622001-12-05 Akim Demaille <akim@epita.fr>
20963
20964 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
20965 * src/lalr.c: Use them.
20966
b178c8cc
AD
209672001-12-05 Akim Demaille <akim@epita.fr>
20968
20969 * src/LR0.c (augment_automaton): Formatting changes.
20970 Better variable locality.
20971
f67d13aa
AD
209722001-12-05 Akim Demaille <akim@epita.fr>
20973
20974 * src/lalr.c (matrix_print): New.
20975 (transpose): Use it.
20976 Use arrays instead of pointers.
20977
c2713865
AD
209782001-12-05 Akim Demaille <akim@epita.fr>
20979
20980 * src/lalr.c (maxrhs): Move to...
20981 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
20982 * src/lalr.c (build_relations): Adjust.
20983
9887c18a
AD
209842001-12-05 Akim Demaille <akim@epita.fr>
20985
20986 * src/lalr.c (transpose): Free the memory allocated to the
20987 argument, as it is replaced by the results by the unique caller.
20988 (build_relations): Merely invoke transpose: it handles the memory
20989 deallocation.
20990 Improve variable locality.
20991 Avoid variables used as mere abbreviations.
20992 (compute_lookaheads): Use arrays instead of pointers.
20993
4d4f699c
AD
209942001-12-05 Akim Demaille <akim@epita.fr>
20995
20996 * src/lalr.c (initialize_F): Improve variable locality.
20997 Avoid variables used as mere abbreviations.
20998
80a69750
AD
209992001-12-05 Akim Demaille <akim@epita.fr>
21000
21001 * src/derives.c (print_derives): Display the ruleno.
21002 * src/lalr.c (initialize_F, transpose): Better variable locality
21003 to improve readability.
21004 Avoid variables used as mere abbreviations.
21005
fe961097
AD
210062001-12-05 Akim Demaille <akim@epita.fr>
21007
21008 * src/lalr.c (traverse): Use arrays instead of pointers.
21009
e3e4e814
AD
210102001-12-05 Akim Demaille <akim@epita.fr>
21011
21012 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
21013 the handling of squeue.
21014 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21015
630e182b
AD
210162001-12-05 Akim Demaille <akim@epita.fr>
21017
21018 Because useless nonterminals are now kept alive (instead of being
21019 `destroyed'), we now sometimes examine them, and store information
21020 related to them. Hence we need to know their number, and adjust
21021 memory allocations.
21022
21023 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
21024 static.
21025 * src/LR0.c (allocate_itemsets): The memory allocated to
21026 `symbol_count' was used for two different purpose: once to count
21027 the number of occurrences of each symbol, and later reassigned to
21028 `shift_symbol', containing the symbol that can be shifted from a
21029 given state.
21030 Deobfuscate, i.e., allocate, use and free `symbol_count' here
21031 only, and...
21032 (new_itemsets): Allocate `shift_symbol' here.
21033 (allocate_itemsets): symbol_count includes useless nonterminals.
21034 Make room for them.
21035 (free_storage): Use `free', not `XFREE', for pointers that cannot
21036 be null.
21037
81b51460
AD
210382001-12-05 Akim Demaille <akim@epita.fr>
21039
21040 * src/nullable.c (set_nullable): Deobfuscate the handling of
21041 ritem.
21042 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21043
3067fbef
AD
210442001-12-05 Akim Demaille <akim@epita.fr>
21045
21046 * src/gram.c, src/gram.h (ritem_print): New.
21047 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
21048 (This useless function was defined only to work around VMS linkers
21049 that can't handle compilation units with variables only).
21050 * src/reduce.c (dump_grammar): Use it to trace the construction of
21051 ritem.
21052
c2bea5f9
PE
210532001-12-04 Paul Eggert <eggert@twinsun.com>
21054
7d27c823
PE
21055 * src/bison.simple (union yyalloc): Change member names
21056 to be the same as the stack names.
21057 (yyparse): yyptr is now union yyalloc *, not char *.
21058 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
21059 and may generate better code on some machines.
c2bea5f9
PE
21060 (yystpcpy): Use prototype if __STDC__ is defined, not just
21061 if __cplusplus is defined.
35687a9d 21062
2c8a9dfa
AD
210632001-11-30 Akim Demaille <akim@epita.fr>
21064
21065 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
21066 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
21067 Gettext doesn't compile cleanly, and dies with -Werror.
21068 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
21069 Include WARNING_CFLAGS here.
21070 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
21071 before being defined.
21072
f4e421e6
AD
210732001-11-27 Paul Eggert <eggert@twinsun.com>
21074
21075 * lib/quotearg.h (quotearg_n, quotearg_n_style):
21076 First arg is int, not unsigned.
21077 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
21078 (SIZE_MAX, UINT_MAX): New macros.
21079 (quotearg_n_options): Abort if N is negative.
21080 Avoid overflow check on hosts where size_t is 64 bits and int
21081 is 32 bits, as overflow is impossible there.
21082 Fix off-by-one typo that caused unnecessary reallocation.
21083
7093d0f5
AD
210842001-11-29 Paul Eggert <eggert@twinsun.com>
21085
21086 Name space cleanup in generated parser.
21087
21088 * doc/bison.texinfo (Bison Parser): Discuss system headers
21089 and their effect on the user name space.
21090
21091 * src/bison.simple:
21092 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
21093 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
21094 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
21095
21096 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
21097 on user names when possible.
21098
21099 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
21100 Simplify test for whather <alloca.h> exists.
21101
21102 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
21103
21104 (<stdio.h>): Include if YYDEBUG.
21105
21106 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
21107 ! defined (yyoverflow) && ! defined (yymemcpy).
21108
21109 (yymemcpy, yyparse): Rename local variables as needed so that
21110 they all begin with 'yy'.
21111
21112 (yystrlen, yystpcpy): New functions.
21113
21114 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
21115 All uses changed.
21116
21117 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
21118 instead of relying on string.h functions. Use YYSTACK_ALLOC
21119 and YYSTACK_FREE instead of malloc and free.
21120
fd51e5ff
AD
211212001-11-30 Akim Demaille <akim@epita.fr>
21122
21123 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
21124 before their first uses.
21125 (YYBISON, YYPURE): Move to the top of the output.
21126
7d13ff5f
AD
211272001-11-30 Akim Demaille <akim@epita.fr>
21128
21129 * tests/reduce.at (Useless Nonterminals): Fix.
21130
892a3995
AD
211312001-11-30 Akim Demaille <akim@epita.fr>
21132
21133 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
21134 if body instead of `;' to pacify GCC's warnings.
21135
68f1e3ed
AD
211362001-11-30 Akim Demaille <akim@epita.fr>
21137
21138 Instead of mapping the LHS of unused rules to -1, keep the LHS
21139 valid, but flag the rules as invalid.
21140
21141 * src/gram.h (rule_t): `useful' is a new member.
21142 * src/print.c (print_grammar): Adjust.
21143 * src/derives.c (set_derives): Likewise.
21144 * src/reader.c (packgram, reduce_output): Likewise.
21145 * src/reduce.c (reduce_grammar_tables): Likewise.
21146 * tests/reduce.at (Underivable Rules, Useless Rules): New.
21147
d2d1b42b
AD
211482001-11-30 Akim Demaille <akim@epita.fr>
21149
21150 * src/reduce.c (reduce_output): Formatting changes.
21151 * src/print.c (print_results, print_grammar): Likewise.
21152 * tests/regression.at (Rule Line Numbers)
21153 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
21154
760b53a8
AD
211552001-11-30 Akim Demaille <akim@epita.fr>
21156
21157 * src/reduce.c (nonterminals_reduce): Instead of throwing away
21158 useless nonterminals, move them at the end of the symbol arrays.
21159 (reduce_output): Adjust.
21160 * tests/reduce.at (Useless Nonterminals): Adjust.
21161
00238958
AD
211622001-11-30 Akim Demaille <akim@epita.fr>
21163
21164 * src/reduce.c: Various comment/formatting changes.
21165 (nonterminals_reduce): New, extracted from...
21166 (reduce_grammar_tables): here.
21167 (reduce_grammar): Call nonterminals_reduce.
21168
396452de
PE
211692001-11-29 Paul Eggert <eggert@twinsun.com>
21170
21171 * src/bison.simple (YYSTACK_REALLOC): Remove.
21172 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
21173 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
21174 New macros.
21175 (union yyalloc): New type.
21176 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
21177 an arbitrary restriction on hosts where size_t is wider than int.
21178
21179 (yyparse): Don't dump core if alloca or malloc fails; instead, report
21180 a parser stack overflow. Allocate just one block of memory for all
21181 three stacks, instead of allocating three blocks; this typically is
21182 faster and reduces fragmentation.
21183
21184 Do not limit the number of items in the stack to a value that fits
21185 in 'int', as this is an arbitrary limit on hosts with 64-bit
21186 size_t and 32-bit int.
21187
147e184c
MA
211882001-11-29 Marc Autret <autret_m@epita.fr>
21189
21190 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
21191 of defining YYERROR_VERBOSE.
21192 [AT_DATA]: $4 is now out of C declarations in the prologue.
21193
426cf563
MA
211942001-11-28 Marc Autret <autret_m@epita.fr>
21195
21196 * src/reader.c (parse_dquoted_param): New.
21197 (parse_skel_decl): Use it.
21198 * src/lex.h: Add its prototype.
21199 * src/lex.c (literalchar): Become not static.
21200
c7925b99
MA
212012001-11-28 Marc Autret <autret_m@epita.fr>
21202
21203 * src/output.h: And put its extern declaration here.
21204 * src/output.c (error_verbose): Define here.
21205 (prepare): Echo name modification.
21206 * src/getargs.h: Clean its extern declaration.
21207 * src/getargs.c (error_verbose_flag): Remove.
21208 (getargs): Remove case 'e'.
21209 * src/options.c (option_table): 'error-verbose' is now seen as simple
21210 percent option.
21211 Include output.h.
21212
21213 * src/reader.c (read_declarations): Remove case tok_include.
21214 (parse_include_decl): Remove.
21215 * src/lex.h (token_t): Remove tok_include.
21216 * src/options.c (option_table): 'include' is now a simple command line
21217 option.
21218
5b5d1929
MA
212192001-11-28 Marc Autret <autret_m@epita.fr>
21220
21221 * src/bison.simple: Adjust muscle names.
21222 * src/muscle_tab.c (muscle_init): Also rename the muscles.
21223 * src/output.c (prepare): s/_/-/ for the muscles names.
21224 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
21225
8850be4b
MA
212262001-11-28 Marc Autret <autret_m@epita.fr>
21227
21228 * src/bison.simple: Fix debug.
21229 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
21230
4a38e613
AD
212312001-11-28 Akim Demaille <akim@epita.fr>
21232
21233 * src/LR0.c (shifts_new): New.
21234 (save_shifts, insert_start_shift, augment_automaton): Use it.
21235
4b35e1c1
AD
212362001-11-28 Akim Demaille <akim@epita.fr>
21237
21238 * src/closure.c (closure): `b' and `ruleno' denote the same value:
21239 keep ruleno only.
21240
d2b04478
AD
212412001-11-28 Akim Demaille <akim@epita.fr>
21242
21243 * src/closure.c (closure): Instead of looping over word in array
21244 then bits in words, loop over bits in array.
21245
2c4c30aa
AD
212462001-11-28 Akim Demaille <akim@epita.fr>
21247
21248 * src/closure.c (closure): No longer optimize the special case
21249 where all the bits of `ruleset[r]' are set to 0, to make the code
21250 clearer.
21251
576890b7
AD
212522001-11-28 Akim Demaille <akim@epita.fr>
21253
21254 * src/closure.c (closure): `r' and `c' are new variables, used to
21255 de-obfuscate accesses to RULESET and CORE.
21256
cb487d7d
AD
212572001-11-28 Akim Demaille <akim@epita.fr>
21258
21259 * src/reduce.c (reduce_print): Use ngettext.
21260 (dump_grammar): Improve the trace accuracy.
21261
6013d43f
AD
212622001-11-28 Akim Demaille <akim@epita.fr>
21263
21264 * src/reduce.c (dump_grammar): Don't translate trace messages.
21265
cb4956ee
AD
212662001-11-28 Akim Demaille <akim@epita.fr>
21267
21268 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
21269 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
21270 as all tags are free'ed afterwards.
21271 From Enrico Scholz.
21272
648185ab
PE
212732001-11-27 Paul Eggert <eggert@twinsun.com>
21274
21275 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
21276 use alloca when we didn't want to, and vice versa.
21277
68254a03
MA
212782001-11-27 Marc Autret <autret_m@epita.fr>
21279
9113b58f
AD
21280 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
21281 initialization.
68254a03
MA
21282 * src/output.c (prepare): Remove its update.
21283
04d843a2
MA
212842001-11-27 Marc Autret <autret_m@epita.fr>
21285
21286 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
21287 Use %error-verbose.
21288
d2079671 212892001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
21290
21291 * src/bison.simple: Remove YYERROR_VERBOSE using.
21292 Use %%error_verbose.
21293 (yyparse): Likewise.
21294 * src/output.c (prepare): Give its final value.
21295 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
21296 * src/getargs.h: Add its extern declaration.
21297 * src/getargs.c (error_verbose_flag): New int.
21298 (getargs): Update to catch new case.
21299 * src/options.c (option_table): 'error-verbose' is a new option.
21300 (shortopts): Update.
21301
e0327bc8
AD
213022001-11-27 Akim Demaille <akim@epita.fr>
21303
21304 * src/system.h: Use intl/libgettext.h.
21305 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
21306
000f1a3c
AD
213072001-11-27 Akim Demaille <akim@epita.fr>
21308
21309 * tests/torture.at (Exploding the Stack Size with Malloc):
21310 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
21311
26cfe0be
AD
213122001-11-27 Akim Demaille <akim@epita.fr>
21313
21314 * src/files.c: Include error.h.
21315 Reported by Hans Aberg.
21316
f6bd5427
MA
213172001-11-26 Marc Autret <autret_m@epita.fr>
21318
d2079671 21319 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
21320 (read_declarations): Add case tok_include.
21321 * src/getargs.h (include): Add its extern definition.
21322 * src/getargs.c (include): New const char *.
21323 (getargs): Add case '-I'.
21324 * src/options.c (option_table): Add include as command line and
21325 percent option.
21326 * src/lex.h (token_t): Add tok_include.
21327
2ca209c1
AD
213282001-11-26 Akim Demaille <akim@epita.fr>
21329
21330 * src/reader.c (readgram): Make sure rules for mid-rule actions
21331 have a lineno equal to that of their host rule.
21332 Reported by Hans Aberg.
21333 * tests/regression.at (Rule Line Numbers): New.
21334
0e41b407
AD
213352001-11-26 Akim Demaille <akim@epita.fr>
21336
21337 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
21338 size_ts.
21339
213402001-11-26 Akim Demaille <akim@epita.fr>
21341
21342 * src/complain.c, src/complain.h (error): Remove, provided by
21343 lib/error.[ch].
21344
e0c40012
AD
213452001-11-26 Akim Demaille <akim@epita.fr>
21346
21347 * src/reader.c (read_declarations): Don't abort on tok_illegal,
21348 issue an error message.
21349 * tests/regression.at (Invalid %directive): New.
21350 Reported by Hans Aberg.
21351
5e147124
AD
213522001-11-26 Akim Demaille <akim@epita.fr>
21353
21354 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
21355 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
21356
a034c8b8
AD
213572001-11-26 Akim Demaille <akim@epita.fr>
21358
21359 * src/conflicts.c (conflicts_print): Don't complain at all when
21360 there are no reduce/reduce conflicts, and as many shift/reduce
21361 conflicts as expected.
21362 * tests/regression.at (%expect right): Adjust.
21363
c64a20f3
AD
213642001-11-23 Akim Demaille <akim@epita.fr>
21365
21366 * lib/alloca.c: Update, from fileutils.
21367
5b0d29bb
AD
213682001-11-23 Akim Demaille <akim@epita.fr>
21369
21370 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
21371
722c4bfe
AD
213722001-11-23 Akim Demaille <akim@epita.fr>
21373
21374 * src/system.h: Include alloca.h.
21375 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
21376
6255b435
AD
213772001-11-23 Akim Demaille <akim@epita.fr>
21378
21379 * src/print_graph.c (print_actions): Remove `rule', unused.
21380 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
21381 pacify GCC's signed < unsigned warnings.
21382 * src/closure.c (itemsetsize): Likewise.
21383 * src/reader.c (symbol_list_new): Static.
21384
b29b2ed5
AD
213852001-11-23 Akim Demaille <akim@epita.fr>
21386
21387 Attaching lineno to buckets is stupid, since only one copy of each
21388 symbol is kept, only the line of the first occurrence is kept too.
21389
21390 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
21391 * src/reader.c (rline_allocated): Remove, unused.
21392 (symbol_list): Have a `line' member.
21393 (symbol_list_new): New.
21394 (readgram): Use it.
21395 * src/print.c (print_grammar): Output the rule line numbers.
21396 * tests/regression.at (Solved SR Conflicts)
21397 (Unresolved SR Conflicts): Adjust.
21398 Reported by Hans Aberg.
21399
a81b1d4a
MA
214002001-11-22 Marc Autret <autret_m@epita.fr>
21401
21402 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
21403
c1ecb3c1
MA
214042001-11-22 Marc Autret <autret_m@epita.fr>
21405
21406 * src/muscle_tab.c (muscle_init): Remove initialization of
21407 skeleton muscle.
21408 * src/output.c (output_master_parser): Do it here.
21409
fbe01355
AD
214102001-11-20 Akim Demaille <akim@epita.fr>
21411
21412 * po/sv.po: New.
21413 * configure.in (ALL_LINGUAS): Adjust.
21414 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
21415 longer contains strings to translate.
21416
81e895c0
AD
214172001-11-19 Akim Demaille <akim@epita.fr>
21418
21419 * src/conflicts.c (conflicts_print): Add a missing \n.
21420
6bb1878b
AD
214212001-11-19 Akim Demaille <akim@epita.fr>
21422
21423 * src/nullable.c (nullable_print): New.
21424 (set_nullable): Call it when tracing.
21425 Better locality of variables.
21426
d9ec2d07
AD
214272001-11-19 Akim Demaille <akim@epita.fr>
21428
21429 * src/print.c (print_actions): Better locality of variables.
21430
720e5c1b
AD
214312001-11-19 Akim Demaille <akim@epita.fr>
21432
21433 * src/derives.c (print_derives): Fix and enrich.
21434 * src/closure.c (print_fderives): Likewise.
21435
fb908786
AD
214362001-11-19 Akim Demaille <akim@epita.fr>
21437
21438 * src/closure.c (itemsetend): Remove, replaced with...
21439 (itemsetsize): new.
21440
125ecb56
AD
214412001-11-19 Akim Demaille <akim@epita.fr>
21442
21443 * src/LR0.c (kernel_end): Remove, replaced with...
21444 (kernel_size): new.
21445
d8cf039f
AD
214462001-11-19 Akim Demaille <akim@epita.fr>
21447
21448 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
21449 to clarify.
21450
7bec0760
AD
214512001-11-19 Akim Demaille <akim@epita.fr>
21452
21453 * src/closure.c (closure): Use arrays instead of pointers to clarify.
21454
c87d4863
AD
214552001-11-19 Akim Demaille <akim@epita.fr>
21456
21457 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
21458 trace messages.
21459 * src/LR0.c: Likewise.
21460 (allocate_itemsets): Use arrays instead of pointers to clarify.
21461
9bfe901c
AD
214622001-11-19 Akim Demaille <akim@epita.fr>
21463
21464 * src/getargs.c (statistics_flag): Replace with...
21465 (trace_flag): New.
21466 (longopts): Accept --trace instead of --statistics.
21467 * src/getargs.h, src/options.c: Adjust.
21468 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
21469 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
21470
97db7bd4
AD
214712001-11-19 Akim Demaille <akim@epita.fr>
21472
cc72668c 21473 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
21474 pointers to clarify the code.
21475 (save_reductions, save_shifts): Factor common parts of alternatives.
21476
2c5f66ed
AD
214772001-11-19 Akim Demaille <akim@epita.fr>
21478
21479 * src/LR0.c (new_state, get_state): Complete TRACE code.
21480 * src/closure.c: Include `reader.h' to get `tags', needed by the
21481 trace code.
21482 Rename the conditional DEBUG as TRACE.
21483 Output consistently TRACEs to stderr, not stdout.
21484 * src/derives.c: Likewise.
21485 * src/reduce.c: (inaccessable_symbols): Using if is better style
21486 than goto.
21487 Use `#if TRACE' instead of `#if 0' for tracing code.
21488
300f275f
AD
214892001-11-19 Akim Demaille <akim@epita.fr>
21490
21491 * src/system.h (LIST_FREE, shortcpy): New.
21492 * src/LR0.c: Use them.
21493 * src/output.c (free_itemsets, free_reductions, free_shifts):
21494 Remove, replaced by LIST_FREE.
21495
f59c437a
AD
214962001-11-19 Akim Demaille <akim@epita.fr>
21497
21498 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
21499 (REDUCTIONS_ALLOC): New.
21500 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
21501 allocation.
21502
6986fd9e
AD
215032001-11-19 Akim Demaille <akim@epita.fr>
21504
21505 * src/LR0.c (new_state): Complete trace code.
21506 * src/nullable.c (set_nullable): Don't translate traces.
21507
4bc30f78
AD
215082001-11-19 Akim Demaille <akim@epita.fr>
21509
21510 * src/print_graph.c (print_core): Better locality of variables.
21511 * src/print.c (print_core): Likewise.
21512
08a946e0
AD
215132001-11-19 Akim Demaille <akim@epita.fr>
21514
21515 * src/vcg.c: You do the output, so you are responsible of the
21516 handling of VCG syntax, in particular: use quotearg.
21517 * src/print_graph.c: Don't.
21518 (print_actions): Don't output the actions as part of the nodes,
21519 since that's the job of the edges.
21520 (print_state): Don't output by hand: fill the node description,
9bfe901c 21521 and ask for its output.
08a946e0 21522
f0473484
AD
215232001-11-19 Akim Demaille <akim@epita.fr>
21524
cc72668c
AD
21525 * src/bison.simple (yyparse): When verbosely reporting an error,
21526 no longer put additional quotes around token names.
f0473484
AD
21527 * tests/calc.at: Adjust.
21528
e41dc700
AD
215292001-11-19 Akim Demaille <akim@epita.fr>
21530
21531 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
21532 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
21533 * src/output.c: Adjust.
21534
652a871c
AD
215352001-11-19 Akim Demaille <akim@epita.fr>
21536
21537 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
21538 (rule_t): this.
21539 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
21540
b2ed6e58
AD
215412001-11-19 Akim Demaille <akim@epita.fr>
21542
21543 * src/gram.h (rule_t): New.
21544 (rule_table): New.
21545 (rrhs, rlhs): Remove, part of state_t.
21546 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
21547 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
21548 * src/reader.c, src/reduce.c: Adjust.
21549
edad7067
AD
215502001-11-19 Akim Demaille <akim@epita.fr>
21551
21552 * src/reader.c (symbols_output): New, extracted from...
21553 (packsymbols): Here.
21554 (reader): Call it.
21555
3feec034
AD
215562001-11-19 Akim Demaille <akim@epita.fr>
21557
21558 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
21559 (maxrhs): this new function.
21560
ddcd5fdf
AD
215612001-11-19 Akim Demaille <akim@epita.fr>
21562
cc72668c 21563 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
21564 Adjust.
21565
bb527fc2
AD
215662001-11-19 Akim Demaille <akim@epita.fr>
21567
cc72668c 21568 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
21569 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21570 * src/lalr.c: Adjust.
21571
a845a697
AD
215722001-11-19 Akim Demaille <akim@epita.fr>
21573
21574 * src/lalr.c (initialize_LA): Only initialize LA. Let...
21575 (set_state_table): handle the `lookaheads' members.
21576
f004bf6a
AD
215772001-11-19 Akim Demaille <akim@epita.fr>
21578
cc72668c
AD
21579 * src/lalr.h (lookaheads): Removed array, whose contents is now
21580 a member of...
f004bf6a
AD
21581 (state_t): this structure.
21582 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21583 Adjust.
21584
de326cc0
AD
215852001-11-19 Akim Demaille <akim@epita.fr>
21586
cc72668c
AD
21587 * src/lalr.h (consistent): Removed array, whose contents is now
21588 a member of...
de326cc0
AD
21589 (state_t): this structure.
21590 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21591 Adjust.
21592
90b4416b
AD
215932001-11-19 Akim Demaille <akim@epita.fr>
21594
cc72668c
AD
21595 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
21596 contents are now members of...
90b4416b
AD
21597 (state_t): this structure.
21598 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
21599 Adjust.
21600
9703cc49
AD
216012001-11-19 Akim Demaille <akim@epita.fr>
21602
21603 * src/lalr.h (state_t): New.
21604 (state_table): Be a state_t * instead of a core **.
21605 (accessing_symbol): Remove, part of state_t.
21606 * src/lalr.c: Adjust.
21607 (set_accessing_symbol): Merge into...
21608 (set_state_table): this.
21609 * src/print_graph.c, src/conflicts.c: Adjust.
21610
d803322e
AD
216112001-11-14 Akim Demaille <akim@epita.fr>
21612
21613 * tests/calc.at, tests/output.at, tests/regression.at,
21614 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
21615 now the tests are run in private dirs, therefore AC_CLEANUP and
21616 family can be simplified to 0-ary.
21617 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
21618 use abs. path to find config.h.
21619 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
21620 stderr, there can be way too much random noise.
21621 Instead pass -Werror to GCC and rely on the exit status.
21622 Reported by Wolfram Wagner.
21623
3d76b07d
AD
216242001-11-14 Akim Demaille <akim@epita.fr>
21625
21626 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
21627 defined only if yyoverflow is defined, to avoid `warning: unused
21628 variable `yyvs1''.
21629 Reported by The Test Suite.
21630
09b503c8
AD
216312001-11-14 Akim Demaille <akim@epita.fr>
21632
21633 * src/print.c: Include reduce.h.
21634 Reported by Hans Aberg.
21635
216362001-11-14 Akim Demaille <akim@epita.fr>
21637
21638 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
21639 Revert a previous patch: these are really const.
21640 * src/conflicts.c (conflict_report): Additional useless pair of
21641 braces to pacify GCC's warnings for `if () if () {} else {}'.
21642 * src/lex.c (parse_percent_token): Replace equal_offset with
21643 arg_offset.
21644 arg is const.
21645 Be sure to strdup `arg' when used, since there is no reason for
21646 token_buffer not to change.
21647
0f37a994
AD
216482001-11-14 Akim Demaille <akim@epita.fr>
21649
21650 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
21651 definition.
21652 * src/main.c (main): Use them.
21653 Suggested by Hans Aberg.
21654
d39d93b8
AD
216552001-11-12 Akim Demaille <akim@epita.fr>
21656
21657 * src/system.h (ngettext): Now that we use ngettext, be sure to
21658 provide a default definition when NLS are not used.
21659
9edcd895
AD
216602001-11-12 Akim Demaille <akim@epita.fr>
21661
21662 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
21663 Use @kbd to denote user input.
21664 (Language and Grammar): ANSIfy the example.
21665 Adjust its layout for info/notinfo.
21666 (Location Tracking Calc): Output error messages to stderr.
21667 Output locations in a more GNUtically correct way.
21668 Fix a couple of Englishos.
21669 Adjust @group/@end group pairs.
21670
7da99ede
AD
216712001-11-12 Akim Demaille <akim@epita.fr>
21672
e3aa65c5 21673 %expect was not functioning at all.
7da99ede
AD
21674
21675 * src/conflicts.c (expected_conflicts): Set to -1.
21676 (conflict_report): Use ngettext.
21677 (conflicts_print): Check %expect and make its violation an error.
21678 * doc/bison.texinfo (Expect Decl): Adjust.
21679 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
21680 * tests/regression.at (%expect not enough, %expect right)
21681 (%expect too much): New.
21682
ba9dda1a
AD
216832001-11-12 Akim Demaille <akim@epita.fr>
21684
21685 * tests/regression.at (Conflicts): Rename as...
21686 (Unresolved SR Conflicts): this.
21687 (Solved SR Conflicts): New.
21688
337c5bd1
AD
216892001-11-12 Akim Demaille <akim@epita.fr>
21690
21691 * src/reduce.c (print_results): Rename as...
21692 (reduce_output): This.
21693 Output to OUT, passed as argument, instead of output_obstack.
21694 (dump_grammar): Likewise.
21695 (reduce_free): New.
21696 Also free V1.
21697 (reduce_grammar): No longer call reduce_output, since...
21698 * src/print.c (print_results): do it.
21699 * src/main.c (main): Call reduce_free;
21700
c73a41af
AD
217012001-11-12 Akim Demaille <akim@epita.fr>
21702
21703 * src/conflicts.c (print_reductions): Accept OUT as argument.
21704 Output to it, not to output_obstack.
21705 * src/print.c (print_actions): Adjust.
21706
0df87bb6
AD
217072001-11-12 Akim Demaille <akim@epita.fr>
21708
21709 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
21710 the result instead of using...
21711 (src_total, rrc_total, src_count, rrc_count): Remove.
21712 (any_conflicts): Remove.
21713 (print_conflicts): Split into...
21714 (conflicts_print, conflicts_output): New.
21715 * src/conflicts.h: Adjust.
21716 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 21717 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
21718 * tests/regression.at (Conflicts): New.
21719 Reported by Tom Lane.
21720
e4d3d4de
AD
217212001-11-12 Akim Demaille <akim@epita.fr>
21722
21723 * tests/regression.at (Invalid input): Remove, duplicate with
21724 ``Invalid input: 1''.
21725
6d7d248e
AD
217262001-11-12 Akim Demaille <akim@epita.fr>
21727
21728 * tests/torture.at (AT_DATA_STACK_TORTURE)
21729 (Exploding the Stack Size with Alloca)
21730 (Exploding the Stack Size with Malloc): New.
21731
e9e4c321
AD
217322001-11-12 Akim Demaille <akim@epita.fr>
21733
21734 * src/bison.simple (YYSTACK_REALLOC): New.
21735 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 21736 Reported by Per Allansson.
e9e4c321 21737
5f7e0832
AD
217382001-11-12 Pascal Bart <pascal.bart@epita.fr>
21739
21740 * src/bison.simple: Define type yystype instead of YYSTYPE, and
21741 define CPP macro, which substitute YYSTYPE by yystype.
21742 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
21743 with yyltype/YYLTYPE. This allows inclusion of the generated
21744 header within the parser if the compiler, such as GGC, accepts
21745 multiple equivalent #defines.
21746 From Akim.
21747
e3f1699f
AD
217482001-11-05 Akim Demaille <akim@epita.fr>
21749
21750 * src/reader.c (symbols_output): New, extracted from...
21751 (packsymbols): here.
21752 (reader): Adjust.
21753
65be0866
AD
217542001-11-05 Akim Demaille <akim@epita.fr>
21755
21756 * src/lex.c (parse_percent_token): s/quotearg/quote/.
21757
e4d910bf
AD
217582001-11-05 Akim Demaille <akim@epita.fr>
21759
21760 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
21761 pattern.
21762
951366c1
AD
217632001-11-05 Akim Demaille <akim@epita.fr>
21764
21765 * src/options.h (struct option_table_struct): set_flags is void*.
21766 * src/options.c (longopts): Support `--output' and `%output'.
21767 (usage): Adjust.
21768 * src/lex.h (tok_setopt): Remove, replaced with...
21769 (tok_intopt, tok_stropt): these new guys.
21770 * src/lex.c (getopt.h): Not needed.
21771 (token_buffer, unlexed_token_buffer): Not const.
21772 (percent_table): Promote `-' over `_' in directive names.
21773 Active `%name-prefix', `file-prefix', and `output'.
21774 (parse_percent_token): Accept possible arguments to directives.
21775 Promote `-' over `_' in directive names.
21776
d8988b2f
AD
217772001-11-04 Akim Demaille <akim@epita.fr>
21778
21779 * doc/bison.texinfo (Decl Summary): Split the list into
21780 `directives for grammars' and `directives for bison'.
21781 Sort'em.
21782 Add description of `%name-prefix', `file-prefix', and `output'.
21783 Promote `-' over `_' in directive names.
21784 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
21785 Simplify the description of `--name-prefix'.
21786 Promote `-' over `_' in directive names.
21787 Promote `--output' over `--output-file'.
21788 Fix the description of `--defines'.
21789 * tests/output.at: Exercise %file-prefix and %output.
21790
6468d18e
AD
217912001-11-02 Akim Demaille <akim@epita.fr>
21792
21793 * doc/refcard.tex: Update.
21794
6b7e85b9
AD
217952001-11-02 Akim Demaille <akim@epita.fr>
21796
21797 * src/symtab.h (SUNDEF): New.
21798 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
21799 stand for `uninitialized', instead of 0.
21800 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
21801 * src/lex.c (lex): Adjust.
21802
21803 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
21804 Number it 0.
21805 Let yylex return it instead of a plain 0.
21806 Reported by Dick Streefland.
21807
cd5aafcf
AD
218082001-11-02 Akim Demaille <akim@epita.fr>
21809
21810 * tests/regression.at (Mixing %token styles): New test.
21811
037ca2f1
AD
218122001-11-02 Akim Demaille <akim@epita.fr>
21813
21814 * src/reader.c (parse_thong_decl): Formatting changes.
21815 (token_translations_init): New, extracted from...
21816 (packsymbols): Here.
21817 Adjust.
21818
270a173c
AD
218192001-11-01 Akim Demaille <akim@epita.fr>
21820
21821 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
21822 Check that `9foo.y' produces correct cpp guards.
21823 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
21824 guards.
21825 Reported by Wwp.
21826
561f9a30
AD
218272001-11-01 Akim Demaille <akim@epita.fr>
21828
21829 * tests/regression.at (Invalid input: 2): New.
21830 * src/lex.c (unlexed_token_buffer): New.
21831 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
21832 too.
21833 Reported by Wwp.
21834
f987e9d2
AD
218352001-11-01 Akim Demaille <akim@epita.fr>
21836
21837 * tests/calc.at: Catch up with 1.30.
21838 * configure.in: Bump to 1.49a.
21839 Adjust to newer Autotest.
21840
0846f581
PB
218412001-10-19 Pascal Bart <pascal.bart@epita.fr>
21842
21843 * src/conflicts.c: Move global variables rrc_total and src_total ...
21844 (print_conflicts): here.
21845 * src/output.c (output): Free global variable user_toknums.
21846 * src/lex.c (token_obstack): Become static.
21847
3c1a79b3
AD
218482001-10-18 Akim Demaille <akim@epita.fr>
21849
21850 * tests/atlocal.in (GCC): Add.
21851 * tests/calc.at: s/m4_match/m4_bmatch/.
21852 s/m4_patsubst/m4_bpatsubst/.
21853 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
21854 * configure.in: AC_SUBST(GCC).
21855
5d52e7d0
MA
218562001-10-14 Marc Autret <autret_m@epita.fr>
21857
21858 * src/options.c (create_long_option_table): Fix.
21859
631aa1d3
AD
218602001-10-10 Akim Demaille <akim@epita.fr>
21861
21862 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
21863
f6ec6d13
AD
218642001-10-04 Akim Demaille <akim@epita.fr>
21865
21866 * src/reader.c (parse_union_decl): Push the caracters in
21867 union_obstack, not attrs_obstack.
21868
342b8b6e
AD
218692001-10-04 Akim Demaille <akim@epita.fr>
21870
21871 Merge in the branch 1.29.
21872
21873 * src/reader.c (packsymbols): Use a temporary obstack for
21874 `%%tokendef', since output_stack is already used elsewhere.
21875
21876 2001-10-02 Akim Demaille <akim@epita.fr>
21877
21878 Bump 1.29d.
21879
21880 2001-10-02 Akim Demaille <akim@epita.fr>
21881
21882 Version 1.29c.
21883
21884 2001-10-02 Akim Demaille <akim@epita.fr>
21885
21886 * tests/regression.at (Invalid CPP headers): New.
21887 From Alexander Belopolsky.
21888 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
21889
21890 2001-10-02 Akim Demaille <akim@epita.fr>
21891
21892 * tests/regression.at (Invalid input): New.
21893 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
21894 Reported by Shura.
21895
21896 2001-10-02 Akim Demaille <akim@epita.fr>
21897
21898 * tests/calc.at: Now that --debug works, the tests must be adjusted.
21899
21900 2001-10-02 Akim Demaille <akim@epita.fr>
21901
21902 * src/output.c (output_parser): Assert `skeleton'.
21903 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
21904 systems.
21905 From Shura.
21906
21907 2001-10-01 Marc Autret <autret_m@epita.fr>
21908
21909 * src/lex.h: Echo modifications.
21910 * src/lex.c (unlex): Parameter is now token_t.
21911 From Hans Aberg.
21912
21913 2001-10-01 Marc Autret <autret_m@epita.fr>
21914
21915 * src/main.c: Include lex.h.
21916 From Hans Aberg.
21917
21918 2001-09-29 Akim Demaille <akim@epita.fr>
21919
21920 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
21921
21922 2001-09-28 Akim Demaille <akim@epita.fr>
21923
21924 * tests/testsuite.at: Update to newer Autotest.
21925 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
21926
21927 2001-09-27 Akim Demaille <akim@epita.fr>
21928
21929 Position independent wrapper.
21930
21931 * tests/bison: Remove.
21932 * tests/bison.in: New.
21933 * configure.in: Adjust.
21934
21935 2001-09-27 Paul Eggert <eggert@twinsun.com>
21936
21937 Port quotearg fixes from tar 1.13.24.
21938
21939 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
21940 tm to be declared.
21941 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
21942 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
21943
21944 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
21945 * m4/mbrtowc.m4: New file.
21946 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
21947 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
21948
21949 2001-09-27 Akim Demaille <akim@epita.fr>
21950
21951 Bump to 1.29c.
21952
21953 2001-09-27 Akim Demaille <akim@epita.fr>
21954
21955 Version 1.29b.
21956
21957 2001-09-25 Akim Demaille <akim@epita.fr>
21958
21959 * src/system.h: Include `xalloc.h'.
21960 Remove it from the C files.
21961 * src/files.c (output_files): Free the obstacks.
21962 * src/lex.c (init_lex): Rename as...
21963 (lex_init): this.
21964 (lex_free): New.
21965 * src/main.c (main): Use it.
21966
21967 2001-09-24 Marc Autret <autret_m@epita.fr>
21968
21969 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
21970 to output informations in fout (FILE*).
21971 (open_graph, close_graph): Likewise.
21972 (output_graph, output_edge, output_node): Likewise.
21973 * src/vcg.h: Update function prototypes.
21974 * src/print_graph.c (print_graph): Open output graph file.
21975 (print_actions): Adjust.
21976 * src/files.h: Remove extern declaration.
21977 * src/files.c: Remove graph_obstack declaration.
21978 (open_files): Remove graph_obstack initialization.
21979 (output_files): Remove graph_obstack saving.
21980
21981 2001-09-24 Marc Autret <autret_m@epita.fr>
21982
21983 * src/files.c (compute_output_file_names): Fix.
21984
21985 2001-09-24 Marc Autret <autret_m@epita.fr>,
21986 Akim Demaille <akim@epita.fr>
21987
21988 * src/reader.c (reader): Remove call to free_symtab ().
21989 * src/main.c (main): Call it here.
21990 Include symtab.h.
21991 * src/conflicts.c (initialize_conflicts): Rename as...
21992 (solve_conflicts): this.
21993 * src/print.c (print_core, print_actions, print_state)
21994 (print_grammar): Dump to a file instead a `output_obstack'.
21995 (print_results): Dump `output_obstack', and then proceed with the
21996 FILE *.
21997 * src/files.c (compute_output_file_names, close_files): New.
21998 (output_files): Adjust.
21999 * src/main.c (main): Adjust.
22000
22001 2001-09-23 Marc Autret <autret_m@epita.fr>
22002
22003 * src/files.c (compute_header_macro): Computes header macro name
22004 from spec_defines_file when given.
22005
22006 2001-09-23 Marc Autret <autret_m@epita.fr>
22007
22008 * src/files.c (output_files): Add default extensions.
22009
22010 2001-09-22 Akim Demaille <akim@epita.fr>
22011
22012 * src/conflicts.c (finalize_conflicts): Rename as...
22013 (free_conflicts): this.
22014
22015 2001-09-22 Akim Demaille <akim@epita.fr>
22016
22017 * src/gram.c (gram_free): Rename back as...
22018 (dummy): this.
22019 (output_token_translations): Free `token_translations'.
22020 * src/symtab.c (free_symtab): Free the tag field.
22021
22022 2001-09-22 Akim Demaille <akim@epita.fr>
22023
22024 Remove `translations' as it is always set to true.
22025
22026 * src/gram.h: Adjust.
22027 * src/reader.c (packsymbols, parse_token_decl): Adjust
22028 * src/print.c (print_grammar): Adjust.
22029 * src/output.c (output_token_translations): Adjust.
22030 * src/lex.c (lex): Adjust.
22031 * src/gram.c: Be sure the set pointers to NULL.
22032 (dummy): Rename as...
22033 (gram_free): this.
22034
22035 2001-09-22 Akim Demaille <akim@epita.fr>
22036
22037 * configure.in: Invoke AM_LIB_DMALLOC.
22038 * src/system.h: Use dmalloc.
22039 * src/LR0.c: Be sure to have pointers initialized to NULL.
22040 (allocate_itemsets): Allocate kernel_items only if needed.
22041
22042 2001-09-22 Akim Demaille <akim@epita.fr>
22043
22044 * configure.in: Bump to 1.29b.
22045 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
22046 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
22047 need xmalloc.c in calc.y.
22048 From Pascal Bart.
22049
22050 2001-09-21 Akim Demaille <akim@epita.fr>
22051
22052 Version 1.29a.
22053 * Makefile.maint, config/config.guess, config/config.sub,
22054 * config/missing: Update from masters.
22055 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
22056 upon package.m4.
22057 * configure.in (ALL_LINGUAS): Add `tr'.
22058
22059 2001-09-21 Akim Demaille <akim@epita.fr>
22060
22061 * tests/Makefile.am (package.m4): Move to...
22062 ($(srcdir)/$(TESTSUITE)): here.
22063
22064 2001-09-20 Akim Demaille <akim@epita.fr>
22065
22066 * src/complain.c: No longer try to be standalone: use system.h.
22067 Don't assume __STDC__ is defined to 1. Just test if it is defined.
22068 * src/complain.h: Likewise.
22069 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
22070 Remove the unused variable `n'.
22071 From Albert Chin-A-Young.
22072
22073 2001-09-18 Marc Autret <autret_m@epita.fr>
22074
22075 * doc/bison.1: Update.
22076 * doc/bison.texinfo (Bison Options): Update --defines and --graph
22077 descriptions.
22078 (Option Cross Key): Update.
22079 Add --graph.
22080
22081 2001-09-18 Marc Autret <autret_m@epita.fr>
22082
22083 * tests/regression.at: New test (comment in %union).
22084
22085 2001-09-18 Marc Autret <autret_m@epita.fr>
22086
22087 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
22088 do that.
22089 Reported by Keith Browne.
22090
22091 2001-09-18 Marc Autret <autret_m@epita.fr>
22092
22093 * tests/output.at: Add tests for --defines and --graph.
22094
22095 2001-09-18 Marc Autret <autret_m@epita.fr>
22096
22097 * tests/output.at: Removes tests of %{header,src}_extension features.
22098
22099 2001-09-18 Akim Demaille <akim@epita.fr>
22100
22101 * tests/Makefile.am (package.m4): New.
22102 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
22103 (_AT_CHECK_CALC_ERROR): Likewise.
22104 Factor the `, ' part of verbose error messages.
22105
22106 2001-09-18 Marc Autret <autret_m@epita.fr>
22107
22108 * src/getargs.c (longopts): Declare --defines and --graph as options
22109 with optional arguments.
22110 * src/files.h: Add extern declarations.
22111 * src/files.c (spec_graph_file, spec_defines_file): New.
22112 (output_files): Update.
22113 Remove CPP-outed code.
22114
22115 2001-09-18 Marc Autret <autret_m@epita.fr>
22116
22117 Turn off %{source,header}_extension feature.
22118
22119 * src/files.c (compute_exts_from_gf): Update.
22120 (compute_exts_from_src): Update.
22121 (output_files): CPP-out useless code.
22122 * src/files.h: Remove {header,source}_extension extern declarations.
22123 * src/reader.c (parse_dquoted_param): CPP-out.
22124 (parse_header_extension_decl): Remove.
22125 (parse_source_extension_decl): Remove.
22126 (read_declarations): Remove cases tok_{hdrext,srcext}.
22127 * src/lex.c (percent_table): Remove {header,source}_extension entries.
22128 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
22129
22130 2001-09-10 Akim Demaille <akim@epita.fr>
22131
22132 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
22133 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
22134 (AT_CHECK_OUTPUT): this.
22135 Merely check ls' exit status, its output is useless.
22136
22137 2001-09-10 Akim Demaille <akim@epita.fr>
22138
22139 * tests/calc.at: Use m4_match.
22140 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
22141
22142 2001-09-10 Marc Autret <autret_m@epita.fr>,
22143 Akim Demaille <akim@epita.fr>
22144
22145 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
22146 enum color_e.
22147 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
22148 to `normal'.
22149 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
22150 * src/lex.h: Adjust prototype.
22151 (token_t): Add `tok_undef'.
22152 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
22153 (parse_percent_token): Now returns token_t.
22154 Add default statement in switch.
22155 (lex): Separate `c' as an input variable, from the token_t result
22156 part.
22157 (unlexed): Is a token_t.
22158
22159 2001-09-10 Akim Demaille <akim@epita.fr>
22160
22161 * configure.in: Bump to 1.29a.
22162
22163 2001-09-07 Akim Demaille <akim@epita.fr>
22164
22165 Version 1.29.
22166
22167 2001-08-30 Akim Demaille <akim@epita.fr>
22168
22169 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
22170 * m4/atconfig.m4: Remove.
22171 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
22172 * tests/bison: New.
22173 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
22174 m4_if, m4_patsubst, and m4_regexp.
22175 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
22176 `input' file instead of echo.
22177
22178 2001-08-29 Akim Demaille <akim@epita.fr>
22179
22180 Bump to 1.28e.
22181
22182 2001-08-29 Akim Demaille <akim@epita.fr>
22183
22184 Version 1.28d.
22185
22186 2001-08-29 Paul Eggert <eggert@twinsun.com>
22187
22188 * src/bison.simple (yyparse): Don't take the address of an
22189 item before the start of an array, as that doesn't conform to
22190 the C Standard.
22191
22192 2001-08-29 Robert Anisko <anisko_r@epita.fr>
22193
22194 * doc/bison.texinfo (Location Tracking Calc): New node.
22195
22196 2001-08-29 Paul Eggert <eggert@twinsun.com>
22197
22198 * src/output.c (output): Do not define const, as this now
22199 causes more problems than it cures.
22200
22201 2001-08-29 Akim Demaille <akim@epita.fr>
22202
22203 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
22204 the nodes.
22205 Be sure to tag the `detailmenu'.
22206
22207 2001-08-29 Akim Demaille <akim@epita.fr>
22208
22209 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
22210 download in a tmp dir.
22211
22212 2001-08-28 Marc Autret <autret_m@epita.fr>
22213
22214 * config/depcomp: New file.
22215
22216 2001-08-28 Marc Autret <autret_m@epita.fr>
22217
22218 * doc/bison.1 (mandoc): Adjust.
22219 From Juan Manuel Guerrero.
22220
22221 2001-08-28 Marc Autret <autret_m@epita.fr>
22222
22223 * src/print_graph.c (print_state): Fix.
22224
22225 2001-08-27 Marc Autret <autret_m@epita.fr>
22226
22227 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
22228 char * members.
22229 Echo modifications to the functions prototypes.
22230 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
22231
22232 2001-08-27 Marc Autret <autret_m@epita.fr>
22233
22234 * src/vcg.c: Include `xalloc.h'.
22235 (add_colorentry): New.
22236 (add_classname): New.
22237 (add_infoname): New.
22238 * src/vcg.h: Add new prototypes.
22239
22240 2001-08-27 Akim Demaille <akim@epita.fr>
22241
22242 * Makefile.maint: Sync. again with CVS Autoconf.
22243
22244 2001-08-27 Akim Demaille <akim@epita.fr>
22245
22246 * Makefile.maint: Formatting changes.
22247 (po-update, cvs-update, update): New targets.
22248 (AMTAR): Remove.
22249
22250 2001-08-27 Akim Demaille <akim@epita.fr>
22251
22252 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22253 * Makefile.maint: Sync. with CVS Autoconf.
22254
22255 2001-08-27 Marc Autret <autret_m@epita.fr>
22256
22257 * src/vcg.h (struct infoname_s): New.
22258 (struct colorentry_s): New.
22259 (graph_s): New fields {vertical,horizontal}_order in structure.
22260 Add `infoname' field.
22261 Add `colorentry' field;
22262 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
22263 (G_HORIZONTAL_ORDER): New.
22264 (G_INFONAME): New.
22265 (G_COLORENTRY): New.
22266 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
22267 Add output of `infoname'.
22268 Add output of `colorentry'.
22269
22270 2001-08-27 Marc Autret <autret_m@epita.fr>
22271
22272 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
22273 This one shadowed a global parameter.
22274
22275 2001-08-24 Marc Autret <autret_m@epita.fr>
22276
22277 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
22278 instead of `unsigned'.
22279 (print_state): Do not call obstack_object_size () in obstack_grow ()
22280 to avoid macro variables shadowing.
22281
22282 2001-08-23 Marc Autret <autret_m@epita.fr>
22283
22284 * src/lex.c (percent_table): Typo: s/naem/name/.
22285 Add graph option.
22286 Normalize new options declarations.
22287
22288 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
22289
22290 * tests/suite.at: Exercise %header_extension and %source_extension.
22291
22292 2001-08-16 Marc Autret <autret_m@epita.fr>
22293
22294 * src/reader.c (parse_dquoted_param): New.
22295 (parse_header_extension_decl): Use it.
22296 (parse_source_extension_decl): Likewise.
22297
22298 2001-08-16 Marc Autret <autret_m@epita.fr>
22299
22300 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
22301 (get_xxxx_str): Use assert () instead of complain ().
22302 Remove return invokations in default cases.
22303 (get_decision_str): Modify default behaviour. Remove second argument.
22304 Echo modifications on calls.
22305 (output_graph): Fix.
22306
22307 2001-08-16 Marc Autret <autret_m@epita.fr>
22308
22309 * src/getargs.c (usage): Update with ``-g, --graph''.
22310
22311 2001-08-16 Marc Autret <autret_m@epita.fr>
22312
22313 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
22314 (Option Cross Key): Likewise.
22315 * doc/bison.1: Update.
22316
1c8c2190
PB
223172001-09-25 Pascal Bart <pascal.bart@epita.fr>
22318
22319 * src/output.c (output_master_parser): Don't finish action_obstack.
22320 (output_parser): Don't care about the muscle action, here.
22321 (prepare): Copy the action_obstack in the action muscle.
22322 (output): Free action_obstack.
22323
180d45ba
PB
223242001-09-23 Pascal Bart <pascal.bart@epita.fr>
22325
22326 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
22327 will contain `%union' declaration.
22328 (parse_union_decl): Delete #line directive output.
22329 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
22330 informations about %union.
22331 (parse_union_decl): Copy the union_obstack in the muscle stype.
22332 * src/bison.simple: Add new #line directive.
22333 Add typdef %%stype YYSTYPE.
22334
c51d1a19
PB
223352001-09-23 Pascal Bart <pascal.bart@epita.fr>
22336
22337 * src/bison.simple: Add new `#line' directive.
22338
6f9344da
PB
223392001-09-22 Pascal Bart <pascal.bart@epita.fr>
22340
22341 * src/bison.simple: New `#line' directive.
22342 * src/output.c (output_parser): Support new dynamic muscle input_line.
22343
652def80
MA
223442001-09-22 Marc Autret <autret_m@epita.fr>
22345
22346 * src/output.c (output_master_parser): New.
22347 (output_parser): Be more re-entrant.
22348
25b222fa
MA
223492001-09-21 Marc Autret <autret_m@epita.fr>
22350
22351 * src/reader.c (copy_definition, parse_union_decl): Update and use
22352 `linef' muscle.
22353 (copy_action): Likewise.
22354 Use obstack_1grow ().
22355 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
22356
6bc35ae5
MA
223572001-09-21 Marc Autret <autret_m@epita.fr>
22358
22359 * src/options.c (option_table): Adjust.
22360 * src/lex.c (parse_percent_token): Fix.
22361
c0629aa1
PB
223622001-09-20 Pascal Bart <pascal.bart@epita.fr>
22363
22364 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 22365
82b6d266
PB
223662001-09-20 Pascal Bart <pascal.bart@epita.fr>
22367
22368 * src/lex.c (parse_percent_token): Change type of variable `tx', which
22369 is now an option_table_struct*.
22370 (option_strcmp): New function option_strcmp.
22371 (parse_percent_token): Call option_strcmp.
22372 * src/getargs.c (xalloc.h, options.h): Include it.
22373 (getargs): Call create_long_option_table.
22374 (getargs): Free longopts at the end of the function.
22375 (shortopts): Move in options.c.
22376 * src/options.c (create_long_option_table): New function. Convert
22377 information from option_table to option structure.
22378 * src/reader.c (options.h): Include it.
22379
22380 * src/Makefile.am: Adjust.
22381 * src/options.c (option_table): Create from longopts and percent_table.
22382 * src/getargs.c (longopts): Delete.
22383 * src/lex.c (struct percent_table_struct): Delete.
22384 (percent_table): Delete.
22385 (options.h): Include it.
22386 * src/options.c: Create.
22387 * src/options.h: Create.
22388 Declare enum opt_access_e.
22389 Define struct option_table_struct.
22390
75f5aaea
MA
223912001-09-20 Marc Autret <autret_m@epita.fr>
22392
22393 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
22394 sections of Bison.
22395
f508cb0a
PB
223962001-09-19 Pascal Bart <pascal.bart@epita.fr>
22397
22398 * src/bison.simple: s/%%filename/%%skeleton.
22399 * src/muscle_tab.c (getargs.h): Include it.
22400 (muscle_init): Insert new muscle skeleton.
22401
13105fc1
PB
224022001-09-18 Pascal Bart <pascal.bart@epita.fr>
22403
22404 * src/output.c (output_parser): Delete unused variable actions_dumped.
22405
b0c4483e
PB
224062001-09-07 Pascal Bart <pascal.bart@epita.fr>
22407
22408 * src/output.c (output): Delete call to reader_output_yylsp.
22409 * src/reader.c (reader): Likewise.
ba0fe3c7 22410 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 22411
11d82f03
MA
224122001-09-02 Marc Autret <autret_m@epita.fr>
22413
22414 * src/reader.c: Include muscle_tab.h.
22415 (parse_union_decl): Update.
22416 (parse_macro_decl): Rename parse_muscle_decl.
22417 Update to use renamed functions and variable.
22418 (read_declarations, copy_action, read_additionnal_code, : Updated
22419 with correct variables and functions names.
22420 (packsymbols, reader): Likewise.
342b8b6e 22421
11d82f03 22422 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 22423
11d82f03
MA
22424 * src/output.c: Include muscle_tab.h
22425 In all functions using macro_insert, change by using muscle_insert ().
22426 (macro_obstack): Rename muscle_obstack.
22427 Echo modifications in the whole file.
22428 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
22429 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
22430 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
22431
22432 * src/muscle_tab.h: Update double inclusion macros.
22433 (macro_entry_s): Rename muscle_entry_s.
22434 Update prototypes.
342b8b6e 22435
11d82f03
MA
22436 * src/muscle_tab.c: Include muscle_tab.h.
22437 Rename macro_tabble to muscle_table.
22438 (mhash1, mhash2, mcmp): Use muscle_entry.
22439 (macro_init): Rename muscle_init. Update.
22440 (macro_insert): Rename muscle_insert. Update.
22441 (macro_find): Rename muscle_find. Update.
22442
22443 * src/main.c: Include muscle_tab.h.
22444 (main): Call muscle_init ().
22445 * src/Makefile.am (bison_SOURCES): Echo modifications.
22446
93a37297
MA
224472001-09-02 Marc Autret <autret_m@epita.fr>
22448
f753cd62 22449 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 22450
f753cd62
MA
22451 * src/muscle_tab.c, src/muscle_tab.h: Add files.
22452
224532001-09-02 Marc Autret <autret_m@epita.fr>
22454
22455 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 22456
682d48cd
PB
224572001-09-01 Pascal Bart <pascal.bart@epita.fr>
22458
342b8b6e 22459 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
22460 filename.
22461
087c8fda
MA
224622001-09-01 Marc Autret <autret_m@epita.fr>
22463
22464 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
22465 to an explicit value to activate the feature. We do it here.
22466
dda680cb
PB
224672001-08-31 Pascal Bart <pascal.bart@epita.fr>
22468
22469 * src/output.c (prepare): Delete the `filename' muscule insertion.
22470 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
22471 (parse_union_decl): Likewise.
22472 * src/macrotab.c (macro_init): Initialize filename by infile.
22473
9e644e64
MA
224742001-08-31 Marc Autret <autret_m@epita.fr>
22475
22476 * src/bison.simple (YYLSP_NEEDED): New definition.
22477 * src/output.c (prepare): Add macro insertion of `locations_flag'
22478
17da6427
PB
224792001-08-31 Pascal Bart <pascal.bart@epita.fr>
22480
22481 * src/output.c (prepare): Delete insertion of previous muscles,
22482 and insert the `prefix' muscles.
22483 * src/macrotab.c (macro_init): Likewise.
22484 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 22485 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
22486 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
22487 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 22488 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
22489 name_prefix.
22490
e8cb70b9
PB
224912001-08-31 Pascal Bart <pascal.bart@epita.fr>
22492
22493 * src/main.c (main): Standardize.
22494 * src/output.c (output_table_data, output_parser): Likewise.
22495 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
22496
63c2d5de
MA
224972001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
22498
342b8b6e 22499 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
22500 %%epilogue.
22501 * src/output.c (output): Rename %%declarations to %%prologue.
22502 * src/bison.simple: Echo modifications.
342b8b6e 22503
d8cb5183
MA
225042001-08-31 Marc Autret <autret_m@epita.fr>
22505
22506 * src/reader.c (readgram): CleanUp.
22507 (output_token_defines): Likewise.
22508 (packsymbols): Likewise.
22509 (reader): Likewise.
22510 * src/output.c (output): CPP-out useless code.
22511
6c686258
PB
225122001-08-31 Pascal Bart <pascal.bart@epita.fr>
22513
342b8b6e 22514 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
22515 output_trailers and output_headers.
22516 * src/output.h: Remove obsolete functions prototypes of output_headers
22517 and output_trailers.
22518
8f451ef7
PB
225192001-08-30 Pascal Bart <pascal.bart@epita.fr>
22520
22521 * src/main.c: Include macrotab.h.
342b8b6e 22522 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
22523 Adjust functions prototypes.
22524 * src/macrotab.c (macro_insert): Constify key and value.
22525 (macro_find): Constify key.
22526 (macro_insert): Include 'xalloc.h'
22527 (macro_insert): Use XMALLOC.
22528 (macro_find): Constify return value.
22529 * src/output.c (output_table_data): Rename table to table_data.
22530 (output_parser): Constify macro_key, macro_value.
22531
997b6fd0 225322001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
22533
22534 * src/reader.c (parse_skel_decl): New.
342b8b6e 22535 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
22536 * src/lex.h (token_t): New token `tok_skel'.
22537 * src/lex.c (percent_table): Add skeleton option entry.
22538 Standardize.
22539
ff48177d
MA
225402001-08-29 Marc Autret <autret_m@epita.fr>
22541
22542 * src/bison.simple: Add %%user_code directive at the end.
22543 * src/reader.c (read_additionnal_code): New.
22544 (reader): Use it.
22545 * src/output.c (output_program): Remove.
22546 (output): Update.
22547
b33160bf
MA
225482001-08-28 Marc Autret <autret_m@epita.fr>
22549
22550 * src/output.c (output_actions): Clean up.
4e5caae2 22551 (output_gram): CPP-out useless code.
b33160bf
MA
22552 * src/reader.c (reader): Clean up, CPP-out useless code.
22553
d1a2daf7
PB
225542001-08-28 Pascal Bart <pascal.bart@epita.fr>
22555
342b8b6e 22556 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 22557 directive.
d1a2daf7
PB
22558 * src/bison.simple: Add `%%definitions'.
22559
2b763dfe
MA
225602001-08-28 Marc Autret <autret_m@epita.fr>
22561
22562 * config/depcomp: New file.
22563
f1a87ef6
PE
225642001-08-27 Paul Eggert <eggert@twinsun.com>
22565
22566 * src/bison.simple (yyparse): Don't take the address of an
22567 item before the start of an array, as that doesn't conform to
22568 the C Standard.
22569
82e236e2
RA
225702001-08-27 Robert Anisko <robert.anisko@epita.fr>
22571
f1a87ef6 22572 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
22573 obstack. It was done too late here.
22574
22575 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
22576 completely wrong.
22577 (reader): Initialize the macro obstack here, since we need it to grow
22578 '%define' directives.
22579
22580 * src/reader.h: Declare the macro obstack as extern.
22581
b0cfa28a
RA
225822001-08-27 Robert Anisko <robert.anisko@epita.fr>
22583
22584 * src/output.c (output_parser): Fix. Store single '%' characters in
22585 the output obstack instead of throwing them away.
22586
6fc74234
AD
225872001-08-27 Akim Demaille <akim@epita.fr>
22588
22589 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
22590
9c76d118
RA
225912001-08-25 Robert Anisko <robert.anisko@epita.fr>
22592
22593 * lib/Makefile.am: Adjust.
22594
a8289c62
RA
225952001-08-25 Robert Anisko <robert.anisko@epita.fr>
22596
22597 * src/bison.simple: Update and add '%%' directives.
22598
b6610515
RA
225992001-08-25 Robert Anisko <robert.anisko@epita.fr>
22600
22601 * src/reader.c (reader): Remove calls to 'output_headers' and
22602 'output_trailers'. Remove some C output.
22603 (readgram): Disable a piece of code that was writing a default
22604 definition for 'YYSTYPE'.
22605 (reader_output_yylsp): Remove.
22606 (packsymbols): Output token defintions to a macro.
22607 (copy_definition): Disable C output.
6fc74234 22608
b6610515
RA
22609 * src/reader.c (parse_macro_decl): New function used to parse macro
22610 declarations.
22611 (copy_string2): Put the body of copy_string into this new function.
22612 Add a parameter to let the caller choose whether he wants to copy the
22613 string delimiters or not.
22614 (copy_string): Be a simple call to copy_string2 with the last argument
22615 bound to true.
22616 (read_declarations): Add case for macro definition.
22617 (copy_identifier): New.
6fc74234 22618 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
22619 rather than lex.
22620
26f609ff
RA
226212001-08-25 Robert Anisko <robert.anisko@epita.fr>
22622
22623 * src/output.c (prepare): Add prefixed names.
22624 (output_parser): Output semantic actions.
22625 (output_parser): Fix bug on '%%line' directives.
6fc74234 22626
26f609ff
RA
22627 * src/output.c (output_headers): Remove. The C code printed by this
22628 function should now be in the skeletons.
22629 (output_trailers): Remove.
22630 (output): Disable call to 'reader_output_yylsp'.
22631 (output_rule_data): Do not output tables to the table obstack.
22632
22633 * src/output.c: Remove some C dedicated output.
22634 Improve the use of macro and output obstacks.
22635 (output_defines): Remove.
6fc74234 22636
26f609ff
RA
22637 * src/output.c (output_token_translations): Associate 'translate'
22638 table with a macro. No output to the table obstack.
22639 (output_gram): Same for 'rhs' and 'prhs'.
22640 (output_stos): Same for 'stos'.
22641 (output_rule_data): Same for 'r1' and 'r2'.
22642 (token_actions): Same for 'defact'.
22643 (goto_actions): Same for 'defgoto'.
22644 (output_base): Same for 'pact' and 'pgoto'.
22645 (output_table): Same for 'table'.
22646 (output_check): Same for 'check'.
6fc74234 22647
26f609ff
RA
22648 * src/output.c (output_table_data): New function.
22649 (output_short_table): Remove.
22650 (output_short_or_char_table): Remove.
6fc74234 22651
26f609ff
RA
22652 * src/output.c (output_parser): Replace most of the skeleton copy code
22653 with something new. Skeletons are now processed character by character
22654 rather than line by line, and Bison looks for '%%' macros. This is the
22655 first step in making Bison's output process (a lot) more flexible.
22656 (output_parser): Use the macro table.
22657
6f43b113
RA
226582001-08-25 Robert Anisko <robert.anisko@epita.fr>
22659
22660 * src/main.c (main): Initialize the macro table.
22661
dd3127cf
RA
226622001-08-25 Robert Anisko <robert.anisko@epita.fr>
22663
22664 * src/lex.c (percent_table): Add tok_define.
22665 * src/lex.h: Add tok_define.
22666
aa321494
RA
226672001-08-25 Robert Anisko <robert.anisko@epita.fr>
22668
22669 * src/macrotab.c: New file.
22670 * src/macrotab.h: New file.
22671 * src/Makefile.am: Update.
22672
68bd3b6b
RA
226732001-08-25 Robert Anisko <robert.anisko@epita.fr>
22674
22675 * lib/hash.c: New file.
22676 * lib/hash.h: New file.
22677 * lib/Makefile.am: Update.
22678
45f8dd1e
AD
226792001-08-15 Akim Demaille <akim@epita.fr>
22680
22681 Version 1.28c.
22682
40a64a7a 226832001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
22684
22685 * src/reader.c (readgram): Indent output macro YYSTYPE.
22686 (packsymbols): Likewise.
22687 (output_token_defines): Likewise.
22688 * src/files.c: Standardize.
22689 (compute_header_macro): New.
22690 (defines_obstack_save): New. Use compute_header_macro.
22691 (output_files): Update. Use defines_obstack_save.
22692
f9a8293a
AD
226932001-08-15 Akim Demaille <akim@epita.fr>
22694
22695 * doc/bison.texinfo (Table of Symbols): Document
22696 YYSTACK_USE_ALLOCA.
22697
150ca7a7
AD
226982001-08-15 Akim Demaille <akim@epita.fr>
22699
22700 * missing: Update from CVS Automake.
22701 * config/config.guess, config/config.sub, config/texinfo.tex:
22702 Update from gnu.org.
22703
69b5cec4
AD
227042001-08-15 Akim Demaille <akim@epita.fr>
22705
22706 * Makefile.maint: Sync with CVS Autoconf.
22707
f2b5126e
PB
227082001-08-14 Pascal Bart <pascal.bart@epita.fr>
22709
69b5cec4 22710 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
22711 `fdl.texi'.
22712 * doc/fdl.texi: Add to package.
22713
4ecbf796
MA
227142001-08-14 Marc Autret <autret_m@epita.fr>
22715
22716 Turn on %{source,header}_extension features.
22717
69b5cec4 22718 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
22719 source_extension.
22720 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 22721 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
22722 between options.
22723
95fb5662
MA
227242001-08-14 Marc Autret <autret_m@epita.fr>
22725
22726 * src/files.c (compute_base_names): Add extensions computing when
22727 `--file-prefix' used.
22728 Standardize function calls.
22729
78d09da9
MA
227302001-08-13 Marc Autret <autret_m@epita.fr>
22731
69b5cec4 22732 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
22733 defining it (defined but null disables alloca).
22734
5a009f2c
MA
227352001-08-13 Marc Autret <autret_m@epita.fr>
22736
22737 * src/bison.simple (_yy_memcpy): CPP reformat.
22738
1e41465a
PB
227392001-08-13 Pascal Bart <pascal.bart@epita.fr>
22740
22741 * tests/atconfig.in (CPPFLAGS): Fix.
22742
c67a198d
PB
227432001-08-10 Pascal Bart <pascal.bart@epita.fr>
22744
79282c6c 22745 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
22746 `gpl.texi'.
22747 * doc/gpl.texi: Add to package.
22748
09a6de7e
MA
227492001-08-10 Marc Autret <autret_m@epita.fr>
22750
22751 * src/print_graph.h: Fix.
22752 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
22753
b77b9ee0
AD
227542001-08-10 Akim Demaille <akim@epita.fr>
22755
22756 * src/system.h: Provide default declarations for stpcpy, strndup,
22757 and strnlen.
22758
3e259915
MA
227592001-08-10 Robert Anisko <anisko_r@epita.fr>
22760
22761 * doc/bison.texinfo (Locations): Update @$ stuff.
22762
ca96bc2d
MA
227632001-08-09 Robert Anisko <anisko_r@epita.fr>
22764
22765 * src/bison.simple (YYLLOC_DEFAULT): Update.
22766 (yyparse): Adjust.
22767
fdc6758b
MA
227682001-08-08 Marc Autret <autret_m@epita.fr>
22769
b77b9ee0 22770 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
22771 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
22772 Reported by Fabrice Bauzac.
957d4dbf 22773
600cad3b
MA
227742001-08-08 Marc Autret <autret_m@epita.fr>
22775
22776 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
22777 * src/vcg.c (output_node): Fix.
22778 * src/vcg.h: Cleanup.
22779 * src/print_graph.c: Add comments.
b77b9ee0 22780 (node_output_size): New global variable. Simplify the formatting of
600cad3b 22781 the VCG graph output.
b77b9ee0 22782 (print_actions): Unused code is now used. It notifies the final state
600cad3b 22783 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 22784 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
22785 blue.
22786 Get the current node name and node_obstack by argument.
22787 (node_obstack): New variable.
22788 (print_state): Manage node_obstack.
22789 (print_core): Use node_obstack given by argument.
22790 A node is not only computed here but in print_actions also.
22791 (print_graph): CPP out useless code instead of commenting it.
22792
976e528f
AD
227932001-08-07 Pascal Bart <pascal.bart@epita.fr>
22794
22795 * tests/atconfig.in (CPPFLAGS): Fix.
22796
20e8e5ca
AD
227972001-08-07 Akim Demaille <akim@epita.fr>
22798
22799 * src/print_graph.c (quote): New.
22800 (print_core): Use it.
22801
957d4dbf 228022001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 22803
3e3da797
AD
22804 * src/vcg.c (complain.h): Include it.
22805 Unepitaize `return' invocations.
c4b66126 22806 [NDEBUG] (main): Remove.
79282c6c 22807 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
22808 * src/files.c (open_files): Initialize graph_obstack.
22809 * src/print_graph.c (print_actions): CPP out useless code.
22810 (print_core): Don't output the last `\n' in labels.
22811 Use `quote'.
22812 * src/files.c (output_files): Output the VCG file.
22813 * src/main.c (main): Invoke print_graph ();
3e3da797 22814
957d4dbf 228152001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
22816
22817 Automaton VCG graph output.
22818 Using option ``-g'' or long option ``--graph'', you can generate
22819 a gram_filename.vcg file containing a VCG description of the LALR (1)
22820 automaton of your grammar.
22821
22822 * src/main.c: Call to print_graph() function.
22823 * src/getargs.h: Update.
22824 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
22825 (graph_flag): New flag.
22826 (longopts): Update.
22827 (getargs): Add case `g'.
22828 * src/files.c (graph_obstack): New obstack struct.
22829 (open_files): Initialize new obstack.
22830 (output_files): Saves graph_obstack if required.
22831 * src/files.h (graph_obstack): New extern declaration.
22832 * src/Makefile.am: Add new source files.
22833
927c1557 228342001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
22835
22836 * src/print_graph.c, src/print_graph.h (graph): New.
22837 * src/vcg.h: New file.
22838 * src/vcg.c: New file, VCG graph handling.
22839
7333d403
AD
228402001-08-06 Marc Autret <autret_m@epita.fr>
22841
22842 Add of %source_extension and %header_extension which specify
22843 the source or/and the header output file extension.
22844
22845 * src/files.c (compute_base_names): Remove initialisation of
22846 src_extension and header_extension.
22847 (compute_exts_from_gf): Update.
22848 (compute_exts_from_src): Update.
22849 (output_files): Update.
22850 * src/reader.c (parse_header_extension_decl): New.
22851 (parse_source_extension_decl): New.
22852 (read_declarations): New case statements for the new tokens.
22853 * src/lex.c (percent_table): Add entries for %source_extension
22854 and %header_extension.
22855 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
22856
84163231
AD
228572001-08-06 Marc Autret <autret_m@epita.fr>
22858
22859 * configure.in: Bump to 1.28c.
22860 * doc/bison.texinfo: Texinfo thingies.
22861
8303fc42
AD
228622001-08-04 Pascal Bart <pascal.bart@epita.fr>
22863
22864 * tests/atconfig.in (CPPFLAGS): Add.
22865 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
22866
70a84437
AD
228672001-08-03 Akim Demaille <akim@epita.fr>
22868
22869 Version 1.28b.
22870
2ce10144
AD
228712001-08-03 Akim Demaille <akim@epita.fr>
22872
22873 * tests/Makefile.am (check-local): Ship testsuite.
22874 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
22875 Include `string.h'.
22876
1e3e4bc1
AD
228772001-08-03 Akim Demaille <akim@epita.fr>
22878
22879 * configure.in: Try using -Wformat when compiling.
22880
42b45b7f
AD
228812001-08-03 Akim Demaille <akim@epita.fr>
22882
22883 * configure.in: Bump to 1.28b.
22884
8f13fe33
AD
228852001-08-03 Akim Demaille <akim@epita.fr>
22886
22887 * src/complain.c: Adjust strerror_r portability issues.
22888
b37ba92c
AD
228892001-08-03 Akim Demaille <akim@epita.fr>
22890
22891 Version 1.28a.
22892
b0ce6046
AD
228932001-08-03 Akim Demaille <akim@epita.fr>
22894
22895 * src/getargs.c, src/getarg.h (skeleton)): Constify.
22896 * src/lex.c (literalchar): Avoid name clashes on `buf'.
22897 * src/getargs.c: Include complain.h.
22898 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
22899 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
22900
d01c415b
AD
229012001-08-03 Akim Demaille <akim@epita.fr>
22902
22903 * src/reader.c (readgram): Display hidden chars in error messages.
22904
459dd1a6
AD
229052001-08-03 Akim Demaille <akim@epita.fr>
22906
22907 Update to gettext 0.10.39.
22908
53b74c0c
AD
229092001-08-03 Akim Demaille <akim@epita.fr>
22910
22911 * lib/strspn.c: New.
22912
234a3be3
AD
229132001-08-01 Marc Autret <autret_m@epita.fr>
22914
22915 * doc/bison.texinfo: Update.
22916 * doc/bison.1 (mandoc): Update.
22917 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
22918 * src/files.c: Support output files extensions computing.
22919 (src_extension): New static variable.
22920 (header_extension): New static variable.
22921 (tr): New function.
22922 (get_extension_index): New function, gets the index of an extension
22923 filename in a string.
22924 (compute_exts_from_gf): New function, computes extensions from the
22925 grammar file extension.
22926 (compute_exts_from_src): New functions, computes extensions from the
22927 C source file extension, file given by ``-o'' option.
22928 (compute_base_names): Update.
22929 (output_files): Update.
22930
847bf1f5
AD
229312001-08-01 Robert Anisko <anisko_r@epita.fr>
22932
d995fee7 22933 * doc/bison.texi: Document @$.
847bf1f5
AD
22934 (Locations): New section.
22935
d074a105
AD
229362001-07-18 Akim Demaille <akim@epita.fr>
22937
22938 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
22939 * config/prev-version.txt, config/move-if-change: New.
22940 * Makefile.am: Adjust.
22941
3419715d
AD
229422001-07-08 Pascal Bart <pascal.bart@epita.fr>
22943
22944 * src/bison.simple (yyparse): Suppress warning `comparaison
22945 between signed and unsigned'.
22946
62ab6972
AD
229472001-07-05 Pascal Bart <pascal.bart@epita.fr>
22948
22949 * src/getargs.h (raw_flag): Remove.
22950 * src/getargs.c: Die on `-r'/`--raw'.
22951 * src/lex.c (parse_percent_token): Die on `%raw'.
22952 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
22953 * tests/calc.at: Suppress test with option `--raw'.
22954
1e24cc5b
AD
229552001-07-14 Akim Demaille <akim@epita.fr>
22956
22957 * config/: New.
22958 * configure.in: Require Autoconf 2.50.
22959 Update to gettext 0.10.38.
22960
32dfccf8
AD
229612001-03-16 Akim Demaille <akim@epita.fr>
22962
22963 * doc/bison.texinfo: ANSIfy the examples.
22964
cd5bd6ac
AD
229652001-03-16 Akim Demaille <akim@epita.fr>
22966
22967 * getargs.c (skeleton): New variable.
22968 (longopts): --skeleton is a new option.
22969 (shortopts, getargs): -S is a new option.
22970 * getargs.h: Declare skeleton.
22971 * output.c (output_parser): Use it.
22972
5141b016
AD
229732001-03-16 Akim Demaille <akim@epita.fr>
22974
22975 * m4/strerror_r.m4: New.
22976 * m4/error.m4: Run AC_FUNC_STRERROR_R.
22977 * lib/error.h, lib/error.c: Update.
22978
447992b9
AD
229792001-03-16 Akim Demaille <akim@epita.fr>
22980
22981 * src/getargs.c (longopts): Clean up.
22982
274d42ce
AD
229832001-02-21 Akim Demaille <akim@epita.fr>
22984
22985 * src/reader.c (gensym): `gensym_count' is your own.
22986 Use a static buf to create the symbol name, as token_buffer is no
22987 longer a buffer.
22988
22c821f3
AD
229892001-02-08 Akim Demaille <akim@epita.fr>
22990
22991 * src/conflicts.c (conflict_report): Be sure not to append to res
22992 between two calls, which could happen if both first sprintf were
22993 skipped, but not the first cp += strlen.
22994
18569462
AD
229952001-02-08 Akim Demaille <akim@epita.fr>
22996
22997 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
22998 New, from fileutils 4.0.37.
22999 * configure.in: Require Autoconf 2.49c. I took some time before
23000 making this decision. This is the only way out for portability
23001 issues in Bison, it would mean way too much duplicate effort to
23002 import in Bison features implemented in 2.49c since 2.13.
23003 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
23004
0d8f3c8a
AD
230052001-02-02 Akim Demaille <akim@epita.fr>
23006
23007 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 23008 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 23009
f17bcd1f
AD
230102001-01-19 Akim Demaille <akim@epita.fr>
23011
23012 Get rid of the ad hoc handling of token_buffer in the scanner: use
23013 the obstacks.
23014
23015 * src/lex.c (token_obstack): New.
23016 (init_lex): Initialize it. No longer call...
23017 (grow_token_buffer): this. Remove it.
23018 Adjust all the places which used it to use the obstack.
23019
511e79b3
AD
230202001-01-19 Akim Demaille <akim@epita.fr>
23021
23022 * src/lex.h: Rename all the tokens:
23023 s/\bENDFILE\b/tok_eof/g;
23024 s/\bIDENTIFIER\b/tok_identifier/g;
23025 etc.
23026 Let them be enums, not #define, to ease debugging.
23027 Adjust all the code.
23028
0d6508ef
AD
230292001-01-18 Akim Demaille <akim@epita.fr>
23030
23031 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
23032 * src/lex.c (maxtoken, grow_token_buffer): Static.
23033
6deb4447
AD
230342001-01-18 Akim Demaille <akim@epita.fr>
23035
23036 Since we now use obstacks, more % directives can be enabled.
23037
23038 * src/lex.c (percent_table): Also accept `%yacc',
23039 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
23040 `%debug'.
23041 Handle the actions for `%semantic_parser' and `%pure_parser' here,
23042 instead of returning a token.
23043 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
23044 * src/reader.c (read_declarations): Adjust.
23045 * src/files.c (open_files): Don't call `compute_base_names', don't
23046 compute `attrsfile' since they depend upon data which might be
23047 *in* the input file now.
23048 (output_files): Do it here.
23049 * src/output.c (output_headers): Document the fact that this patch
23050 introduces a guaranteed SEGV for semantic parsers.
23051 * doc/bison.texinfo: Document them.
23052 * tests/suite.at: Exercise these %options.
23053
ff4423cc
AD
230542000-12-20 Akim Demaille <akim@epita.fr>
23055
23056 Also handle the output file (--verbose) with obstacks.
23057
23058 * files.c (foutput): Remove.
23059 (output_obstack): New.
23060 Adjust all dependencies.
23061 * src/conflicts.c: Return a string.
23062 * src/system.h (obstack_grow_string): Rename as...
23063 (obstack_sgrow): this. Be ready to work with non literals.
23064 (obstack_fgrow4): New.
23065
956dba3a
AD
230662000-12-20 Akim Demaille <akim@epita.fr>
23067
23068 * src/files.c (open_files): Fix the computation of short_base_name
23069 in the case of `-o foo.tab.c'.
23070
337bab46
AD
230712000-12-20 Akim Demaille <akim@epita.fr>
23072
23073 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
23074 (copy_dollar): Now that everything uses obstacks, get rid of the
23075 FILE * parameters.
23076
5d3214b8
AD
230772000-12-20 Akim Demaille <akim@epita.fr>
23078
23079 * src/files.c (open_files): Actually the `.output' file is based
23080 on the short_base_name, not base_name.
23081 * tests/suite.at (Checking output file names): Adjust.
23082
29092a57
AD
230832000-12-20 Akim Demaille <akim@epita.fr>
23084
23085 * src/bison.s1: Remove, we now use directly...
23086 * src/bison.simple: this.
23087 * src/Makefile.am: Use pkgdata instead of data.
23088
ea5607fd
AD
230892000-12-20 Akim Demaille <akim@epita.fr>
23090
23091 * src/files.c (guard_obstack): New.
23092 (open_files): Initialize it.
23093 (output_files): Dump it...
23094 * src/files.h: Export it.
23095 * src/reader.c (copy_guard): Use it.
23096
27110317
AD
230972000-12-19 Akim Demaille <akim@epita.fr>
23098
23099 * src/files.c (outfile, defsfile, actfile): Removed as global
23100 vars.
23101 (open_files): Don't compute them.
23102 (output_files): Adjust.
23103 (base_name, short_base_name): Be global.
23104 Adjust dependencies.
23105
19c50364
AD
231062000-12-19 Akim Demaille <akim@epita.fr>
23107
23108 * src/files.c (strsuffix): New.
23109 (stringappend): Be just like strcat but allocate.
23110 (base_names): Eve out from open_files.
23111 Try to simplify the rather hairy computation of base_name and
23112 short_base_name.
23113 (open_files): Use it.
23114 * tests/suite.at (Checking output file names): New test.
23115
573c1d9f
AD
231162000-12-19 Akim Demaille <akim@epita.fr>
23117
23118 * src/system.h (obstack_grow_literal_string): Rename as...
23119 (obstack_grow_string): this.
23120 * src/output.c (output_parser): Recognize `%% actions' instead of
23121 `$'.
23122 * src/bison.s1: s/$/%% actions/.
23123 * src/bison.hairy: Likewise.
23124
ef7ddedd
AD
231252000-12-19 Akim Demaille <akim@epita.fr>
23126
23127 * src/output.c (output_parser): Compute the `#line' lines when
23128 there are.
23129 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
23130 Suggested by Hans Aberg.
23131
ff61dabd
AD
231322000-12-19 Akim Demaille <akim@epita.fr>
23133
23134 Let the handling of the skeleton files be local to the procedures
23135 that use it.
23136
23137 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
23138 longer static.
23139 (fparser, open_extra_files): Remove.
23140 (open_files, output_files): Don't take care of fparser.
23141 * src/files.h: Adjust.
23142 * src/output.c (output_parser): Open and close the file to the
23143 skeleton.
23144 * src/reader.c (read_declarations): When %semantic_parser, open
23145 fguard.
23146
55b96341
AD
231472000-12-19 Akim Demaille <akim@epita.fr>
23148
23149 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
23150 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
23151
358c15b7
AD
231522000-12-19 Akim Demaille <akim@epita.fr>
23153
23154 * src/files.c (open_files): Yipee! We no longer need all the code
23155 looking for `/tmp' since we have no tmp file.
23156
7de3329e
AD
231572000-12-19 Akim Demaille <akim@epita.fr>
23158
23159 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
23160 New macros.
23161 * src/files.c (open_files): Less dependency on MSDOS etc.
23162
3abcd459
AD
231632000-12-14 Akim Demaille <akim@epita.fr>
23164
23165 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
23166 Provide a default definition.
23167 Use it when executing the default @ action.
23168 * src/reader.c (reader_output_yylsp): No longer include
23169 `timestamp' and `text' in the default YYLTYPE.
23170
2a91a95e
AD
231712000-12-12 Akim Demaille <akim@epita.fr>
23172
23173 * src/reader.c (copy_definition, parse_union_decl, copy_action)
23174 (copy_guard): Quote the file names.
23175 Reported by Laurent Mascherpa.
23176
14d3eb9b
AD
231772000-12-12 Akim Demaille <akim@epita.fr>
23178
23179 * src/output.c (output_headers, output_program, output): Be sure
23180 to escape special characters when outputting filenames.
23181 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
23182 (output_headers): Don't depend on them, Use ACTSTR.
23183
d7045ec6
AD
231842000-11-17 Akim Demaille <akim@epita.fr>
23185
23186 * lib/obstack.h: Formatting changes.
23187 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
23188 prevents type checking.
23189 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
23190 cast the value to (void *): assigning a `foo *' to a `void *'
23191 variable is valid.
23192 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
23193 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
23194 append characters.
23195
6fd54b73
AD
231962000-11-17 Akim Demaille <akim@epita.fr>
23197
23198 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
23199 as...
23200 (suite.m4, regression.m4, calc.m4): these.
23201 * tests/atgeneral.m4: Update from CVS Autoconf.
23202
4c50eae6
AD
232032000-11-17 Akim Demaille <akim@epita.fr>
23204
23205 * tests/regression.m4 (%union and --defines): New test,
23206 demonstrating a current bug in the obstack implementation.
23207
a35f64ea
AD
232082000-11-17 Akim Demaille <akim@epita.fr>
23209
23210 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
23211 macros.
23212 Use them to declare the variables which are global or local to
23213 `yyparse'.
23214
7de23534
AD
232152000-11-17 Akim Demaille <akim@epita.fr>
23216
23217 * acconfig.h: Remove, no longer used.
23218
aa7815f5
AD
232192000-11-07 Akim Demaille <akim@epita.fr>
23220
23221 * src: s/Copyright (C)/Copyright/g.
23222
5af1f549
AD
232232000-11-07 Akim Demaille <akim@epita.fr>
23224
23225 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
23226 defining.
23227 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
23228
553e2b22
AD
232292000-11-07 Akim Demaille <akim@epita.fr>
23230
23231 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
23232 Merge in a single CPP if/else.
23233
8a4f41d6
AD
232342000-11-07 Akim Demaille <akim@epita.fr>
23235
23236 * src/output.c (output): Remove useless variables.
23237 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
23238 argument `data' for consistency with the prototypes.
23239 Qualify it `const'.
23240 (obstack_copy, obstack_copy0): Rename the second argument as
23241 `address' for consistency. Qualify it `const'.
23242 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
23243 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
23244 `const' their input argument (`data' or `address').
23245 Adjust the corresponding macros to include `const' in casts.
23246
095a3fb5
AD
232472000-11-03 Akim Demaille <akim@epita.fr>
23248
23249 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
23250 s/PFILE1/BISON_HAIRY/.
23251 Adjust dependencies.
23252
d1cdce7c
AD
232532000-11-03 Akim Demaille <akim@epita.fr>
23254
090c5ebf 23255 For some reason, this was not applied.
d1cdce7c
AD
23256
23257 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23258 `unlink': it's no longer used.
23259
9311529b
AD
232602000-11-03 Akim Demaille <akim@epita.fr>
23261
23262 * src/files.c (skeleton_find): New function, eved out of...
23263 (open_files, open_extra_files): here.
23264
d8880f69
AD
232652000-11-03 Akim Demaille <akim@epita.fr>
23266
23267 Don't use `atexit'.
23268
23269 * src/files.c (obstack_save): New function.
23270 (done): Rename as...
23271 (output_files): this.
23272 Use `obstack_save'.
23273 * src/main.c (main): Don't use `atexit' to register `done', since
23274 it no longer has to remove tmp files, just call `output_files'
23275 when there are no errors.
23276
0dbb648e
AD
232772000-11-02 Akim Demaille <akim@epita.fr>
23278
23279 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
23280 `unlink': it's no longer used.
23281 * src/files.h: Formatting changes.
23282
896fe5c1
AD
232832000-11-02 Akim Demaille <akim@epita.fr>
23284
23285 Remove the last uses of mktemp and unlink/delete.
23286
23287 * src/files.c (fdefines, ftable): Removed.
23288 (defines_ostack, table_obstack): New.
23289 Adjust dependencies of the former into uses of the latter.
23290 * src/output.c (output_short_or_char_table, output_short_table):
23291 Convert to using obstacks.
23292 * src/reader.c (copy_comment2): Accept one FILE * and two
23293 obstacks.
23294 (output_token_defines, reader_output_yylsp): Use obstacks.
23295 * src/system.h (obstack_fgrow3): New.
1f65350a 23296 * po/POTFILES.in: Adjust.
896fe5c1 23297
dd60faec
AD
232982000-11-01 Akim Demaille <akim@epita.fr>
23299
23300 Change each use of `fattrs' into a use of `attrs_obstack'.
23301
23302 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
23303 * src/files.c (fattrs): Remove.
23304 (attrs_obstack): New.
23305 Adjust all dependencies.
23306 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
23307
8c7ebe49
AD
233082000-11-01 Akim Demaille <akim@epita.fr>
23309
23310 Introduce obstacks.
23311 Change each use of `faction' into a use of `action_obstack'.
23312
23313 * lib/obstack.h, lib/obstack.c: New files.
23314 * src/files.c (faction): Remove.
23315 (action_obstack): New.
23316 Adjust all dependencies.
23317
77aee789
AD
233182000-10-20 Akim Demaille <akim@epita.fr>
23319
23320 * lib/quote.h (PARAMS): New macro. Use it.
23321
43591cec
AD
233222000-10-16 Akim Demaille <akim@epita.fr>
23323
23324 * src/output.c (output_short_or_char_table): New function.
23325 (output_short_table, output_token_translations): Use it.
23326 (goto_actions): Use output_short_table.
23327
1e9798d5
AD
233282000-10-16 Akim Demaille <akim@epita.fr>
23329
23330 * src/symtab.c (bucket_new): New function.
23331 (getsym): Use it.
23332
23333 * src/output.c (output_short_table): New argument to display the
23334 comment associated with the table.
23335 Adjust dependencies.
23336 (output_gram): Use it.
23337 (output_rule_data): Nicer output layout for YYTNAME.
23338
f282676b
AD
233392000-10-16 Akim Demaille <akim@epita.fr>
23340
23341 * src/lex.c (read_typename): New function.
23342 (lex): Use it.
23343 * src/reader.c (copy_dollar): Likewise.
23344
550a72a3
AD
233452000-10-16 Akim Demaille <akim@epita.fr>
23346
23347 * src/reader.c (copy_comment2): Expect the input stream to be on
23348 the `/' which is suspected to open a comment, instead of being
23349 called after `//' or `/*' was read.
23350 (copy_comment, copy_definition, parse_union_decl, copy_action)
23351 (copy_guard): Adjust.
23352
131e2fef
AD
233532000-10-16 Akim Demaille <akim@epita.fr>
23354
23355 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
23356 `read_signed_integer'.
23357
79282c5a
AD
233582000-10-16 Akim Demaille <akim@epita.fr>
23359
23360 * src/reader.c (copy_dollar): New function.
23361 (copy_guard, copy_action): Use it.
23362
ff4a34be
AD
233632000-10-16 Akim Demaille <akim@epita.fr>
23364
23365 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
23366 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
23367 New files, from Fileutils 4.0.27.
23368 * src/main.c (printable_version): Remove.
23369 * src/lex.c, src/reader.c: Use `quote'.
23370
233712000-10-04 Akim Demaille <akim@epita.fr>
23372
23373 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
23374
14ded682
AD
233752000-10-04 Akim Demaille <akim@epita.fr>
23376
23377 * doc/bison.texinfo: Various typos spotted by Neil Booth.
23378
8e03724b
AD
233792000-10-04 Akim Demaille <akim@epita.fr>
23380
23381 When a literal string is used to define two different tokens,
23382 `bison -v' segfaults.
23383 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
23384
23385 * tests/regression.m4: New file.
23386 Include the core of the sample provided by Piotr Gackiewicz.
23387 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
23388 properly.
23389
a9e64249
AD
233902000-10-04 Akim Demaille <akim@epita.fr>
23391
23392 * src/reader.c (parse_expect_decl): Keep `count' within the size
23393 of `buffer'.
23394 From Neil Booth.
23395
da9abf43
AD
233962000-10-02 Paul Eggert <eggert@twinsun.com>
23397
23398 * bison.s1 (yyparse): Assign the default value
23399 unconditionally, to avoid a GCC warning and make the parser a
23400 tad smaller.
23401
c33638bb
AD
234022000-10-02 Akim Demaille <akim@epita.fr>
23403
23404 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
23405 options.
23406
444c570a
AD
234072000-10-02 Akim Demaille <akim@epita.fr>
23408
23409 * src/derives.c, src/print.c, src/reduce.c: To ease the
23410 translation, move some `\n' out of the translated strings.
23411
89cab50d
AD
234122000-10-02 Akim Demaille <akim@epita.fr>
23413
23414 The location tracking mechanism is precious for parse error
23415 messages. Nevertheless, it is enabled only when `@n' is used in
23416 the grammar, which is a different issue (you can use it in error
23417 message, but not in the grammar per se). Therefore, there should
23418 be another means to enable it.
23419
23420 * src/getargs.c (getargs): Support `--locations'.
23421 (usage): Report it.
23422 * src/getargs.h (locationsflag): Export it.
23423 * src/lex.c (percent_table): Support `%locations'.
23424 * src/reader.c (yylsp_needed): Remove this variable, now replaced
23425 with `locationsflag'.
23426 * doc/bison.texinfo: Document `--locations' and `%locations'.
23427 Sort the options.
23428 * tests/calc.m4: Test it.
23429
23430 For regularity of the names, replace each
23431 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
23432 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
23433 In addition replace each `flag' with `_flag'.
23434
d6c2cba0
AD
234352000-10-02 Akim Demaille <akim@epita.fr>
23436
23437 Also test parse error messages, including with YYERROR_VERBOSE.
23438
23439 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
23440 associative).
23441 Use it to check the computations.
23442 Use it to check `nonassoc' is honored.
23443 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
23444 `--yyerror-verbose'.
23445 (_AT_CHECK_CALC): Adjust to this option.
23446 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
23447
5a35a6cb
AD
234482000-10-02 Akim Demaille <akim@epita.fr>
23449
23450 Test also `--verbose', `--defines' and `--name-prefix'. Testing
23451 the latter demonstrates a flaw in the handling of non debugging
23452 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
23453 was used in order to simplify:
23454
23455 #if YYDEBUG
23456 if (yydebug)
23457 {
23458 ...
23459 }
23460 #endif
23461
23462 into
23463
23464 if (yydebug)
23465 {
23466 ...
23467 }
23468
23469 unfortunately this leads to a CPP conflict when
23470 `--name-prefix=foo' is used since it produces `#define yydebug
23471 foodebug'.
23472
23473 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
23474 (YYDPRINTF): New macro.
23475 Spread its use.
23476 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
23477 the bison options.
23478 Also test `--verbose', `--defines' and `--name-prefix'.
23479
71da9eea
AD
234802000-10-02 Akim Demaille <akim@epita.fr>
23481
23482 Improve the readability of the produced parsers.
23483
23484 * src/bison.s1: Formatting changes.
23485 Improve the comment related to the `$' mark.
23486 (yydefault): Don't fall through to `yyresume': `goto' there.
23487 * src/output.c (output_parser): When the `$' is met, skip the end
23488 of its line.
23489 New variable, `number_of_dollar_signs', to check there's exactly
23490 one `$' in the parser skeleton.
23491
95e36146
AD
234922000-10-02 Akim Demaille <akim@epita.fr>
23493
23494 * lib/xstrdup.c: New file, from the fileutils.
23495 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
23496 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
23497 instead of strlen + xmalloc + strcpy.
23498 * src/symtab.c (copys): Remove, use xstrdup instead.
23499
d7020c20
AD
235002000-10-02 Akim Demaille <akim@epita.fr>
23501
23502 * src/gram.h (associativity): New enum type which replaces the
23503 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
23504 `right_assoc', `left_assoc' and `non_assoc'.
23505 Adjust all dependencies.
23506 * src/reader.c: Formatting changes.
23507 (LTYPESTR): Don't define it, use it as a literal in
23508 `reader_output_yylsp'.
23509 * src/symtab.h (symbol_class): New enum type which replaces the
23510 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
23511 `sunknown', `stoken and `snterm'.
23512
1916f98e
AD
235132000-10-02 Akim Demaille <akim@epita.fr>
23514
23515 * src/getargs.c (fixed_outfiles): Rename as...
23516 (yaccflag): for consistency and accuracy.
23517 Adjust dependencies.
23518
d7913476
AD
235192000-10-02 Akim Demaille <akim@epita.fr>
23520
23521 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
23522 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
23523 difficult and introduced a lot of core dump. It turns out that
23524 Bison used an implementation of `xmalloc' based on `calloc', and
23525 at various places it does depend upon the initialization to 0. I
23526 have not tried to isolate the pertinent places, and all the former
23527 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
23528 someone should address this issue.
23529
23530 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
23531 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
23532 files.
23533 Adjust dependencies.
23534 * src/warshall.h: New file.
23535 Propagate.
23536
340ef489
AD
235372000-10-02 Akim Demaille <akim@epita.fr>
23538
23539 Various anti-`extern in *.c' changes.
23540
23541 * src/system.h: Include `assert.h'.
23542
b2ca4022
AD
235432000-10-02 Akim Demaille <akim@epita.fr>
23544
23545 * src/state.h (nstates, final_state, first_state, first_shift)
23546 (first_reduction): Move their exportation from here...
23547 * src/LR0.h: to here.
23548 Adjust dependencies.
23549 * src/getargs.c (statisticsflag): New variable.
23550 Add support for `--statistics'.
23551 Adjust dependencies.
23552
23553 Remove a lot of now useless `extern' statements in most files.
23554
403b315b
AD
235552000-10-02 Akim Demaille <akim@epita.fr>
23556
23557 * src/LR0.h: New file.
23558 Propagate its use.
23559
07a58c13
AD
235602000-10-02 Akim Demaille <akim@epita.fr>
23561
23562 * src/print.h: New file.
23563 Propagate its use.
23564 * src/print.c: Formatting and ordering changes.
23565 (verbose, terse): Replace with...
23566 (print_results): this new function.
23567 Adjust dependencies.
23568
0619caf0
AD
235692000-10-02 Akim Demaille <akim@epita.fr>
23570
23571 * src/conflicts.c (conflict_report): New function.
23572 (conflict_log, verbose_conflict_log): Replace with...
23573 (print_conflicts): this function.
23574 Adjust dependencies.
23575 * src/conflicts.h: New file.
23576 Propagate its inclusion.
23577
3519ec76
AD
235782000-10-02 Akim Demaille <akim@epita.fr>
23579
23580 * src/nullable.h: New file.
23581 Propagate its inclusion.
23582 * src/nullable.c: Formatting changes.
23583
015acc48
AD
235842000-10-02 Akim Demaille <akim@epita.fr>
23585
23586 * src/reduce.h: New file.
23587 Propagate its inclusion.
23588 * src/reduce.c: Topological sort and other formatting changes.
23589 (bool, TRUE, FALSE): Move their definition to...
23590 * src/system.h: here.
23591
8963a27b
AD
235922000-10-02 Akim Demaille <akim@epita.fr>
23593
23594 * src/files.c: Formatting changes.
23595 (tryopen, tryclose, openfiles): Rename as...
23596 (xfopen, xfclose, open_files): this.
23597 (stringappend): static.
23598 * src/files.h: Complete the list of exported symbols.
23599 Propagate its use.
23600
a70083a3
AD
236012000-10-02 Akim Demaille <akim@epita.fr>
23602
23603 * src/reader.h: New file.
23604 Propagate its use instead of tedious list of `extern' and
23605 prototypes.
23606 * src/reader.c: Formatting changes, topological sort,
23607 s/register//.
23608
abadc117
AD
236092000-10-02 Akim Demaille <akim@epita.fr>
23610
23611 * src/lex.h: Prototype `lex.c' exported functions.
23612 * src/reader.c: Adjust.
23613 * src/lex.c: Formatting changes.
23614 (safegetc): Rename as...
23615 (xgetc): this.
23616
720d742f
AD
236172000-10-02 Akim Demaille <akim@epita.fr>
23618
23619 * src/lalr.h: New file.
23620 Propagate its inclusion instead of prototypes and `extern'.
23621 * src/lalr.c: Formatting changes, topological sorting etc.
23622
f2acea59
AD
236232000-10-02 Akim Demaille <akim@epita.fr>
23624
23625 * src/output.c (token_actions): Introduce a temporary array,
23626 YYDEFACT, that makes it possible for this function to use
23627 output_short_table.
23628
d019d655
AD
236292000-10-02 Akim Demaille <akim@epita.fr>
23630
23631 `user_toknums' is output as a `short[]' in `output.c', while it is
23632 defined as a `int[]' in `reader.c'. For consistency with the
23633 other output tables, `user_toknums' is now defined as a table of
23634 shorts.
23635
23636 * src/reader.c (user_toknums): Be a short table instead of an int
23637 table.
23638 Adjust dependencies.
23639
23640 Factor the short table outputs.
23641
23642 * src/output.c (output_short_table): New function.
23643 * src/output.c (output_gram, output_stos, output_rule_data)
23644 (output_base, output_table, output_check): Use it.
23645
6c89f1c1
AD
236462000-10-02 Akim Demaille <akim@epita.fr>
23647
23648 * src/output.c (output): Topological sort of the functions, in
23649 order to get rid of the `static' prototypes.
23650 No longer use `register'.
23651 * src/output.h: New file.
23652 Propagate its inclusion in files explicitly prototyping functions
23653 from output.c.
23654
d9efd181
AD
236552000-09-21 Akim Demaille <akim@epita.fr>
23656
23657 * src/atgeneral.m4: Update from Autoconf.
23658
c29240e7 236592000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
23660
23661 * src/closure.h: New file.
23662 * src/closure.c: Formatting changes, topological sort over the
23663 functions, use of closure.h.
23664 (initialize_closure, finalize_closure): Rename as...
23665 (new_closure, free_closure): these. Adjust dependencies.
23666 * src/LR0.c: Formatting changes, topological sort, use of
23667 cloture.h.
23668 (initialize_states): Rename as...
23669 (new_states): this.
23670 * src/Makefile.am (noinst_HEADERS): Adjust.
23671
499daa50
AD
236722000-09-20 Akim Demaille <akim@epita.fr>
23673
23674 * src/acconfig.h: Don't protect config.h against multiple
23675 inclusion.
23676 Don't define PARAMS.
23677 * src/system.h: Define PARAMS.
23678 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
23679 purpose of config.h. system.h must not try to fix wrong
23680 definitions in config.h.
23681
cc84fd5d
AD
236822000-09-20 Akim Demaille <akim@epita.fr>
23683
23684 * src/derives.h: New file.
23685 * src/main.c, src/derives.h: Use it.
23686 Formatting changes.
23687 * src/Makefile.am (noinst_HEADERS): Adjust.
23688
db5b3a89
AD
236892000-09-20 Akim Demaille <akim@epita.fr>
23690
23691 * tests/atgeneral.m4: Update from Autoconf.
23692 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
23693 (AT_CHECK_CALC): New macros.
23694 Use these macros to test bison with options `', `--raw',
23695 `--debug', `--yacc', `--yacc --debug'.
23696
ceed8467
AD
236972000-09-19 Akim Demaille <akim@epita.fr>
23698
23699 * src/output.c: Formatting changes.
23700 * src/machine.h: Remove, leaving its contents in...
23701 * src/system.h: here.
23702 Include stdio.h.
23703 Adjust all dependencies on stdio.h and machine.h.
23704 * src/getargs.h: New file.
23705 Let all `extern' declarations about getargs.c be replaced with
23706 inclusion of `getargs.h'.
23707 * src/Makefile.am (noinst_HEADERS): Adjust.
23708
23709 * tests/calc.m4 (yyin): Be initialized in main, not on the global
23710 scope.
23711 (yyerror): Returns void, not int.
23712 * doc/bison.texinfo: Formatting changes.
23713
05a1d24b
AD
237142000-09-19 Akim Demaille <akim@epita.fr>
23715
23716 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
23717 portable.
23718
cbd25751
AD
237192000-09-18 Akim Demaille <akim@epita.fr>
23720
23721 * configure.in: Append WARNING_CFLAGS to CFLAGS.
23722 * src/Makefile.am (INCLUDES): Don't.
23723 Be ready to fetch headers in lib/.
23724
13863333
AD
237252000-09-18 Akim Demaille <akim@epita.fr>
23726
23727 * doc/bison.texinfo: Update the copyright.
23728 ANSIfy and GNUify the examples.
23729 Remove the old menu.
23730
0d533154
AD
237312000-09-18 Akim Demaille <akim@epita.fr>
23732
23733 First set of tests: use the `calc' example from the documentation.
23734
23735 * src/bison.s1 (yyparse): Condition the code using `yytname' which
23736 is defined only when YYDEBUG is.
23737 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
23738 * src/files.c (tryopen, tryclose): Formatting changes.
23739 Move to the top and be static.
23740 * src/reader.c (read_signed_integer): Likewise.
23741 * tests/calc.m4: New file.
23742 * Makefile.am, suite.m4: Adjust.
23743 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
23744
e79137ac
AD
237452000-09-18 Akim Demaille <akim@epita.fr>
23746
23747 Add support for an Autotest test suite for Bison.
23748
23749 * m4/m4.m4, m4/atconfig.m4: New files.
23750 * m4/Makefile.am (EXTRA_DIST): Adjust.
23751 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
23752 files.
23753 * src/getargs.c: Display a more standard --version message.
23754 * src/reader.c (reader): Formatting changes.
23755 No longer depend upon VERSION_STRING.
23756 * configure.in: No longer use `dnl'.
23757 Set up the test suite and the new directory `tests/.
23758 (VERSION_STRING): Remove.
23759
27821bff
AD
237602000-04-14 Akim Demaille <akim@epita.fr>
23761
23762 * src/reader.c (copy_comment2): New function, same as former
23763 `copy_comment', but outputs into two FILE *.
23764 (copy_comment): Use it.
23765 (parse_union_decl): Use it.
23766 (get_type, parse_start_decl): Use the same `invalid' message.
23767 (parse_start_decl, parse_union_decl): Use the same `multiple'
23768 message.
23769 (parse_union_decl, copy_guard, copy_action): Use the same
23770 `unmatched' message.
23771 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
23772
cfe5fbc0
AD
237732000-03-31 Akim Demaille <akim@epita.fr>
23774
23775 * src/files.c (tryopen, tryclose): Move to the top.
23776 Be static.
23777
cb7db13e
AD
237782000-03-31 Akim Demaille <akim@epita.fr>
23779
23780 * src/main.c (main): Don't call `done', exit does it.
23781
a0f6b076
AD
237822000-03-31 Akim Demaille <akim@epita.fr>
23783
36281465
AD
23784 * allocate.c: s/return (foo)/return foo/.
23785 * lalr.c: Likewise.
23786 * LR0.c: Likewise.
23787 * output.c: Likewise.
23788 * reader.c: Likewise.
23789 * symtab.c: Likewise.
23790 * vmsgetargs.c: Likewise.
23791
237922000-03-31 Akim Demaille <akim@epita.fr>
23793
23794 Clean up the error reporting functions.
a0f6b076
AD
23795
23796 * src/report.c: New file.
23797 * src/report.h: Likewise.
23798 * src/Makefile.am: Adjust.
23799 * m4/error.m4: New file.
23800 * m4/Makefile.am: Adjust.
23801 * configure.in (jm_PREREQ_ERROR): Call it.
23802 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
23803 Remove.
23804 (fatal, fatals): Remove. All callers use complain.c::fatal.
23805 (warn, warni, warns, warnss, warnss): Remove. All callers use
23806 complain.c::complain.
23807 (toomany): Remove, use fatal instead.
23808 * src/files.c (done): No argument, use complain_message_count.
23809 * src/main.c (main): Register `done' to `atexit'.
23810
23811 * src/getargs.c (usage): More `fputs', less `fprintf'.
23812
18539825
AD
238132000-03-28 Akim Demaille <akim@epita.fr>
23814
23815 * lib/: New directory.
23816 * Makefile.am (SUBDIRS): Adjust.
23817 * configure.in: Adjust.
23818 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
23819 useless.
23820 * src/alloca.c: Moved to lib/.
23821 * src/getopt.c: Likewise.
23822 * src/getopt1.c: Likewise.
23823 * src/getopt.h: Likewise.
23824 * src/ansi2knr.c: Likewise.
23825 * src/ansi2knr.1: Likewise.
23826 * src/Makefile.am: Adjust.
23827 * lib/Makefile.am: New file.
23828
9f306f2a
AD
238292000-03-28 Akim Demaille <akim@epita.fr>
23830
23831 * src/getargs.c (usage): Refresh the help message.
23832
0ba347b6
AD
238332000-03-17 Akim Demaille <akim@epita.fr>
23834
23835 * src/getopt1.c: Updated from textutils 2.0e
23836 * src/getopt.c: Likewise.
23837 * src/getopt.h: Likewise.
23838
dbe7f271
AD
238392000-03-17 Akim Demaille <akim@epita.fr>
23840
23841 * src/Makefile.am (bison.simple): Fix the awk program: quote only
23842 the file name, not the whole `#line LINE FILE'.
23843
75bbe78d
AD
238442000-03-17 Akim Demaille <akim@epita.fr>
23845
23846 On syntax errors, report the token on which we choked.
23847
aa5fd0ee
AD
23848 * src/bison.s1 (yyparse): In the label yyerrlab, when
23849 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 23850
7b306f52
AD
238512000-03-17 Akim Demaille <akim@epita.fr>
23852
aa5fd0ee 23853 * src/reader.c (copy_at): New function.
7b306f52
AD
23854 (copy_guard): Use it.
23855 (copy_action): Use it.
23856
e87b5700
AD
238572000-03-17 Akim Demaille <akim@epita.fr>
23858
23859 Be kind to translators, save some useless translations.
23860
aa5fd0ee 23861 * src/main.c (banner): New function.
e87b5700
AD
23862 (fatal_banner): Use it.
23863 (warn_banner): Use it.
23864
ae3c3164
AD
238652000-03-17 Akim Demaille <akim@epita.fr>
23866
aa5fd0ee
AD
23867 * src/reader.c (copy_definition): Use copy_string and
23868 copy_comment. Removed now unused `match', `ended',
23869 `cplus_comment'.
ae3c3164
AD
23870 (copy_comment, copy_string): Moved, to be visible from
23871 copy_definition.
23872
4dc58e7c
AD
238732000-03-17 Akim Demaille <akim@epita.fr>
23874
aa5fd0ee
AD
23875 * src/reader.c (copy_string): Declare `static inline'. No
23876 problems with inline, since it is checked by configure.
4dc58e7c
AD
23877 (copy_comment): Likewise.
23878
0a6384c4
AD
238792000-03-17 Akim Demaille <akim@epita.fr>
23880
aa5fd0ee 23881 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 23882
3cef001a
AD
238832000-03-17 Akim Demaille <akim@epita.fr>
23884
aa5fd0ee 23885 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
23886 (copy_action): Use it. Removed now unused `match', `ended',
23887 `cplus_comment'.
23888 (copy_guard): Likewise.
23889
ca36d2ef
AD
238902000-03-17 Akim Demaille <akim@epita.fr>
23891
aa5fd0ee 23892 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
23893 (copy_action): Use it.
23894 (copy_guard): Likewise.
23895
6666f98f
AD
238962000-03-17 Akim Demaille <akim@epita.fr>
23897
23898 Change the handling of @s so that they behave exactly like $s.
23899 There is now a pseudo variable @$ (readble and writable), location
23900 of the lhs of the rule (by default ranging from the location of
23901 the first symbol of the rhs, to the location of the last symbol,
23902 or, if the rhs is empty, YYLLOC).
23903
23904 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
23905 yyval.
23906 (yyparse): When providing a default semantic action, provide a
23907 default location action.
23908 (after the $): No longer change `*YYLSP', just stack YYLOC the
23909 same way you stack YYVAL.
23910 * src/reader.c (read_declarations): Use warns.
23911 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
23912 (copy_action, case '@'): Likewise.
23913 Use a standard error message, to save useless work from
23914 translators.
23915
41aca2e0
AD
239162000-03-17 Akim Demaille <akim@epita.fr>
23917
aa5fd0ee
AD
23918 * src/bison.s1: Formatting and cosmetics changes.
23919 * src/reader.c: Likewise.
41aca2e0
AD
23920 Update the Copyright notice.
23921
dc08c1d5
AD
239222000-03-17 Akim Demaille <akim@epita.fr>
23923
aa5fd0ee
AD
23924 * src/bison.s1 (#line): All set to `#line' only, since the
23925 Makefile now handles them.
dc08c1d5 23926
9ee3c97b
AD
239272000-03-16 Akim Demaille <akim@epita.fr>
23928
23929 * src/output.c (output_rule_data): Output the documentation of
23930 some of the tables.
23931 (Copyright notice): Update.
23932 Formatting changes.
23933
0de741ca
AD
239342000-03-16 Akim Demaille <akim@epita.fr>
23935
23936 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
23937 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
23938 One `#if YYDEBUG' remains, since it uses variables which are
23939 defined only if `YYDEBUG != 0'.
23940
bb10be54
AD
239412000-03-16 Akim Demaille <akim@epita.fr>
23942
23943 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
23944 and related variables so that the similarities are highlighted.
23945
b07b484a
AD
239462000-03-16 Akim Demaille <akim@epita.fr>
23947
23948 * src/bison.s1: Properly indent CPP directives.
23949
361f60b3
AD
239502000-03-16 Akim Demaille <akim@epita.fr>
23951
23952 * src/bison.s1: Properly indent the `alloca' CPP section.
23953
8c44d3ec
AD
239542000-03-16 Akim Demaille <akim@epita.fr>
23955
23956 Do not hard code values of directories in `configure.in'.
23957 Update the `configure' tool chain.
23958
23959 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
23960 src/makefile.am.
23961 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
23962 (AC_OUTPUT): Add m4/Makefile.
23963 Bump to bison 1.28a, 1.29 has never been released.
23964 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
23965 handled via src/Makefile.am.
23966 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
23967 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
23968 autoheader.
23969 * Makefile.am (SUBDIRS): Add m4.
23970 (ACLOCAL_AM_FLAGS): New variable.
23971 (AUTOMAKE_OPTIONS): Add check-news.
23972 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
23973 the proper line number and file name.
23974 (DEFS): Propagate the location of bison library files and of the
23975 locale files.
23976 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
23977 builddir.
23978 * acinclude.m4: Remove, replaced by the directory m4.
23979 * m4/Makefile.am (EXTRA_DIST): New variable.
23980 * m4/gettext.m4: New file, from the fileutils.
23981 * m4/lcmessage.m4: Likewise
23982 * m4/progtest.m4: Likewise.
23983 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
23984
f95997e7
AD
239852000-03-10 Akim Demaille <akim@epita.fr>
23986
23987 * src/closure.c:
23988 Formatting changes of various comments.
23989 Respect the GNU coding standards at various places.
23990 Don't use `_()' when no translation is needed.
23991
239921999-12-13 Jesse Thilo <jthilo@gnu.org>
23993
23994 * src/files.c:
23995 OS/2 honors TMPDIR environment variable.
23996
239971999-12-13 Jesse Thilo <jthilo@gnu.org>
23998
23999 * doc/bison.texinfo: Tweaked spelling and grammar.
24000 Updated ISBN.
24001 Removed reference to price of printed copy.
24002 Mention BISON_SIMPLE and BISON_HAIRY.
24003
240041999-12-13 Jesse Thilo <jthilo@gnu.org>
24005
24006 * configure.in, NEWS:
24007 Bison 1.29 released.
24008
240091999-10-27 Jesse Thilo <jthilo@gnu.org>
24010
24011 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
24012 Added reference card.
24013
240141999-07-26 Jesse Thilo <jthilo@gnu.org>
24015
24016 * po/ru.po: Added Russian translation.
24017
240181999-07-26 Jesse Thilo <jthilo@gnu.org>
24019
24020 * configure.in: Added Russian translation.
24021
240221999-07-06 Jesse Thilo <jthilo@gnu.org>
24023
24024 * configure.in, NEWS, README:
24025 Released version 1.28.
24026
240271999-06-14 Jesse Thilo <jthilo@gnu.org>
24028
24029 * src/system.h:
24030 Squashed redefinition warning on some systems.
24031
24032 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
24033 Have configure build version string instead of relying on ANSI string
24034 concatentation.
24035
240361999-06-14 Jesse Thilo <jthilo@gnu.org>
24037
24038 * po/POTFILES.in: Got rid of version.c.
24039
240401999-06-14 Jesse Thilo <jthilo@gnu.org>
24041
24042 * acconfig.h, configure.in:
24043 Have configure build version string instead of relying on ANSI string
24044 concatentation.
24045
240461999-06-08 Jesse Thilo <jthilo@gnu.org>
24047
24048 * doc/bison.1:
24049 Dropped mention of `+' for long-named options.
24050
240511999-05-30 Jesse Thilo <jthilo@gnu.org>
24052
24053 * src/files.c: Added <unistd.h> for unlink().
24054
24055 * src/Makefile.am, src/system.h:
24056 I18n fixes.
24057
240581999-05-30 Jesse Thilo <jthilo@gnu.org>
24059
24060 * README: Added a FAQ list.
24061
24062 * configure.in, acconfig.h:
24063 I18n fixes.
24064
240651999-05-30 Jesse Thilo <jthilo@gnu.org>
24066
24067 * doc/FAQ, doc/Makefile.am:
24068 Added a FAQ list.
24069
240701999-05-19 Jesse Thilo <jthilo@gnu.org>
24071
24072 * src/alloc.h, src/symtab.h, src/version.c:
24073 Protected inclusion of "config.h" with HAVE_CONFIG_H.
24074
240751999-04-18 Jesse Thilo <jthilo@gnu.org>
24076
24077 * src/.cvsignore, src/Makefile.am:
24078 Reorganized: sources in `src', documentation in `doc'.
24079
24080 * src/lex.c (literalchar):
24081 fixed the code for escaping double quotes (thanks
24082 Jonathan Czisny.)
24083
240841999-04-18 Jesse Thilo <jthilo@gnu.org>
24085
24086 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
24087 Adjusted paths to reflect directory reorganization.
24088
240891999-04-18 Jesse Thilo <jthilo@gnu.org>
24090
24091 * doc/.cvsignore, doc/Makefile.am:
24092 Reorganized: sources in `src', documentation in `doc'.
24093
240941999-04-18 Jesse Thilo <jthilo@gnu.org>
24095
24096 * configure.in:
24097 Updated AC_INIT file to reflect directory reorganization.
24098
24099 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
24100 Reorganized: sources in `src', documentation in `doc'.
24101
241021999-04-13 Jesse Thilo <jthilo@gnu.org>
24103
24104 * src/allocate.c:
24105 Don't declare calloc() and realloc() if not necessary.
24106
241071999-04-13 Jesse Thilo <jthilo@gnu.org>
24108
24109 * configure.in, acconfig.h, acinclude.m4:
24110 Don't declare calloc() and realloc() if not necessary.
24111
241121999-03-23 Jesse Thilo <jthilo@gnu.org>
24113
24114 * po/.cvsignore: Added i18n support.
24115
241161999-03-23 Jesse Thilo <jthilo@gnu.org>
24117
24118 * acconfig.h, configure.in, Makefile.am:
24119 Added i18n support.
24120
241211999-03-22 Jesse Thilo <jthilo@gnu.org>
24122
24123 * src/bison.s1: Fixed #line numbers.
24124
241251999-03-15 Jesse Thilo <jthilo@gnu.org>
24126
24127 * po/es.po, po/fr.po, po/nl.po, po/de.po:
24128 Added PO files from Translation Project.
24129
241301999-03-03 Jesse Thilo <jthilo@gnu.org>
24131
24132 * Makefile.am:
24133 Added support for non-ANSI compilers (ansi2knr).
24134
241351999-02-16 Jesse Thilo <jthilo@gnu.org>
24136
24137 * configure.in: Bumped version number to 1.27.
24138
24139 * Makefile.am:
24140 Added `bison.simple' to list of files removed by `make distclean'.
24141
241421999-02-12 Jesse Thilo <jthilo@gnu.org>
24143
24144 * src/files.c, src/files.h:
24145 Defined locations of parser files in config.h instead of Makefile.
24146
241471999-02-12 Jesse Thilo <jthilo@gnu.org>
24148
24149 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
24150 Defined locations of parser files in config.h instead of Makefile.
24151
241521999-02-09 Jesse Thilo <jthilo@gnu.org>
24153
24154 * Makefile.am:
24155 Removed inappropriate use of $< macro.
24156
241571999-02-05 Jesse Thilo <jthilo@gnu.org>
24158
24159 * po/Makefile.in.in, po/POTFILES.in:
24160 Add `po' directory skeleton.
24161
241621999-01-27 Jesse Thilo <jthilo@gnu.org>
24163
24164 * README: Document help-bison list.
24165
24166 * configure.in: Add check for mkstemp().
24167
241681999-01-20 Jesse Thilo <jthilo@gnu.org>
24169
24170 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
24171 Hush a few compiler warnings.
24172
24173 * src/files.c:
24174 Add tryclose(), which verifies that fclose was successful.
24175 Hush a couple of compiler warnings.
24176
241771999-01-20 Jesse Thilo <jthilo@gnu.org>
24178
24179 * Makefile.am, OChangeLog:
24180 ChangeLog is now automatically generated. Include the old version as
24181 OChangeLog.
24182
241831999-01-14 Jesse Thilo <jthilo@gnu.org>
24184
24185 * 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:
24186 Update FSF address.
24187
241881999-01-14 Jesse Thilo <jthilo@gnu.org>
24189
24190 * doc/bison.texinfo: Fix formatting glitch.
24191
24192 * doc/bison.texinfo: Update FSF address.
24193
241941999-01-14 Jesse Thilo <jthilo@gnu.org>
24195
24196 * acconfig.h: Update FSF address.
24197
241981999-01-08 Jesse Thilo <jthilo@gnu.org>
24199
24200 * src/system.h:
24201 Don't define PACKAGE here, since config.h defines it.
24202
242031998-12-30 Jesse Thilo <jthilo@gnu.org>
24204
24205 * src/reader.c: Update copyright date.
24206
24207 * src/main.c:
24208 Ditch sprintf to statically-sized buffers in fatal/warn functions in
24209 favor of output directly to stderr (avoids buffer overruns).
24210
24211 * src/reader.c: Some checks for premature EOF.
24212
24213 * 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:
24214 Use prototypes if the compiler understands them.
24215
24216 * src/files.c: Honor TMPDIR on Unix hosts.
24217 Use prototypes if the compiler understands them.
24218
24219 * src/reader.c:
24220 Fix a couple of buffer overrun bugs.
24221 Use prototypes if the compiler understands them.
24222
24223 * src/system.h: Include unistd.h and ctype.h.
24224 Use #ifdef instead of #if for NLS symbols.
24225
242261998-12-30 Jesse Thilo <jthilo@gnu.org>
24227
24228 * doc/bison.texinfo:
24229 Delete comment "consider using @set for edition number, etc..." since
24230 we now are doing so.
24231
242321998-12-30 Jesse Thilo <jthilo@gnu.org>
24233
24234 * configure.in:
24235 Use prototypes if the compiler understands them.
24236
24237 * NEWS: Document 1.26 highlights.
24238
24239 * Makefile.am: Require Automake 1.3 or later.
24240
24241 * acconfig.h:
24242 Use prototypes if the compiler understands them.
24243
242441998-12-29 Jesse Thilo <jthilo@gnu.org>
24245
24246 * src/version.c:
24247 Use VERSION symbol from automake for version number.
24248
242491998-12-29 Jesse Thilo <jthilo@gnu.org>
24250
24251 * acconfig.h, configure.in, version.cin:
24252 Use VERSION symbol from automake for version number.
24253
242541998-11-28 Jesse Thilo <jthilo@gnu.org>
24255
24256 * Makefile.am:
24257 Distribute original version of simple parser (bison.s1), not built
24258 version (bison.simple).
24259
242601998-11-28 Jesse Thilo <jthilo@gnu.org>
24261
24262 * doc/bison.texinfo: Add info dir entry.
24263
24264 * doc/bison.texinfo:
24265 Let automake put version number into documentation.
24266
242671998-11-26 Jesse Thilo <jthilo@gnu.org>
24268
24269 * src/bison.cld, src/build.com, src/vmshlp.mar:
24270 Add non-RCS files from /gd/gnu/bison.
24271
242721998-11-26 Jesse Thilo <jthilo@gnu.org>
24273
24274 * doc/bison.1:
24275 Document the BISON_HAIRY and BISON_SIMPLE variables.
24276
242771998-11-25 Jesse Thilo <jthilo@gnu.org>
24278
24279 * src/version.c: Build version.c automatically.
24280
24281 * src/reader.c:
24282 Fix token numbering (used to start at 258, not 257).
24283
24284 * src/system.h: Include config.h.
24285
24286 * src/getargs.c: Update bug report address.
24287
24288 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
24289 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
24290
242911998-11-25 Jesse Thilo <jthilo@gnu.org>
24292
24293 * Makefile.am:
24294 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24295
24296 * configure.in, version.cin:
24297 Build version.c automatically.
24298
24299 * AUTHORS: Add AUTHORS file.
24300
24301 * README: Update bug report address.
24302
24303 * bison.simple:
24304 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
24305
24306 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
24307 Add automake stuff.
24308
243091998-11-25 Jesse Thilo <jthilo@gnu.org>
24310
24311 * doc/bison.texinfo: Clean up some formatting.
24312
243131998-05-05 Richard Stallman <rms@gnu.org>
24314
24315 * doc/bison.texinfo:
24316 Explain better why to make a pure parser.
24317
243181998-01-05 Richard Stallman <rms@gnu.org>
24319
24320 * src/files.c (openfiles):
24321 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
24322 find a temporary directory, if possible. Do not unlink files while
24323 they are open.
24324
243251997-08-25 Richard Stallman <rms@gnu.org>
24326
24327 * src/reader.c (stack_offset;):
24328 Change some warni to warns.
24329
24330 * src/lex.c (literalchar): Use warns, not warni.
24331
243321997-06-28 Richard Stallman <rms@gnu.org>
24333
24334 * src/bison.s1: Add a Bison version comment.
24335
24336 * src/main.c (fatal, warn, berror):
24337 Use program_name.
24338
243391997-06-28 Richard Stallman <rms@gnu.org>
24340
24341 * Makefile.in (bison_version): New variable.
24342 (dist): Use that variable.
24343 (bison.s1): Substitute the Bison version into bison.simple.
24344
24345 * bison.simple: Add a Bison version comment.
24346
243471997-06-18 Richard Stallman <rms@gnu.org>
24348
24349 * src/main.c (fatal, warn, berror):
24350 Make error messages standard.
24351 (toomany): Improve error message text.
24352
24353 * 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:
24354 new.h renamed to alloc.h.
24355
243561997-06-18 Richard Stallman <rms@gnu.org>
24357
24358 * Makefile.in: new.h renamed to alloc.h.
24359
243601997-05-24 Richard Stallman <rms@gnu.org>
24361
24362 * src/lex.c (literalchar):
24363 Fix the code for escaping \, " and '.
24364
24365 (lex): Avoid trouble when there are many chars
24366 to discard in a char literal with just several chars in it.
24367
243681997-05-17 Richard Stallman <rms@gnu.org>
24369
24370 * src/bison.s1:
24371 Use malloc, if using alloca is troublesome.
24372 (YYSTACK_USE_ALLOCA): New flag macro.
24373 Define it for some systems and compilers.
24374 (YYSTACK_ALLOC): New macro.
24375 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24376 If it was malloc'd, free it.
24377
243781997-05-17 Richard Stallman <rms@gnu.org>
24379
24380 * bison.simple:
24381 Use malloc, if using alloca is troublesome.
24382 (YYSTACK_USE_ALLOCA): New flag macro.
24383 Define it for some systems and compilers.
24384 (YYSTACK_ALLOC): New macro.
24385 (yyparse): Use YYSTACK_ALLOC to allocate stack.
24386 If it was malloc'd, free it.
24387
243881997-04-23 Richard Stallman <rms@gnu.org>
24389
24390 * src/bison.s1:
24391 (alloca) [__hpux]: Always define as __builtin_alloca.
24392
243931997-04-23 Richard Stallman <rms@gnu.org>
24394
24395 * bison.simple:
24396 (alloca) [__hpux]: Always define as __builtin_alloca.
24397
243981997-04-22 Richard Stallman <rms@gnu.org>
24399
24400 * src/bison.s1:
24401 [__hpux]: Include alloca.h (right for HPUX 10)
24402 instead of declaring alloca (right for HPUX 9).
24403
24404 * src/bison.s1 (__yy_memcpy):
24405 Declare arg `count' as unsigned int.
24406 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24407
244081997-04-22 Richard Stallman <rms@gnu.org>
24409
24410 * bison.simple:
24411 [__hpux]: Include alloca.h (right for HPUX 10)
24412 instead of declaring alloca (right for HPUX 9).
24413
24414 * bison.simple (__yy_memcpy):
24415 Declare arg `count' as unsigned int.
24416 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
24417
244181997-01-03 Richard Stallman <rms@gnu.org>
24419
24420 * src/allocate.c: [__STDC__ or _MSC_VER]:
24421 Declare calloc and realloc to return void *.
24422
244231997-01-02 Richard Stallman <rms@gnu.org>
24424
24425 * src/system.h:
24426 [_MSC_VER]: Include stdlib.h and process.h.
24427 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
24428
24429 * src/main.c (main): Return FAILURE as a value.
24430 (printable_version): Declare arg as int, not char.
24431
244321997-01-02 Richard Stallman <rms@gnu.org>
24433
24434 * Makefile.in (dist):
24435 Explicitly check for symlinks, and copy them.
24436
244371996-12-19 Richard Stallman <rms@gnu.org>
24438
24439 * src/files.c:
24440 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
24441
244421996-12-18 Paul Eggert <eggert@gnu.org>
24443
24444 * src/bison.s1 (yyparse):
24445 If __GNUC__ and YYPARSE_PARAM are both defined,
24446 declare yyparse to have a void * argument.
24447
244481996-12-18 Paul Eggert <eggert@gnu.org>
24449
24450 * bison.simple (yyparse):
24451 If __GNUC__ and YYPARSE_PARAM are both defined,
24452 declare yyparse to have a void * argument.
24453
244541996-12-17 Richard Stallman <rms@gnu.org>
24455
24456 * src/reduce.c (nbits): Add some casts.
24457
244581996-08-12 Richard Stallman <rms@gnu.org>
24459
24460 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
24461
244621996-08-12 Richard Stallman <rms@gnu.org>
24463
24464 * bison.simple: Test _MSDOS as well as _MSDOS_.
24465
244661996-07-31 Richard Stallman <rms@gnu.org>
24467
24468 * src/bison.s1:
24469 [__sun && __i386]: Include alloca.h.
24470
244711996-07-31 Richard Stallman <rms@gnu.org>
24472
24473 * bison.simple:
24474 [__sun && __i386]: Include alloca.h.
24475
244761996-07-30 Richard Stallman <rms@gnu.org>
24477
24478 * src/bison.s1: Comment change.
24479
24480 * src/bison.s1: Test _MSDOS_, not MSDOS.
24481
244821996-07-30 Richard Stallman <rms@gnu.org>
24483
24484 * bison.simple: Comment change.
24485
24486 * bison.simple: Test _MSDOS_, not MSDOS.
24487
244881996-06-01 Richard Stallman <rms@gnu.org>
24489
24490 * 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:
24491 Insert `_' macro around many string constants.
24492
24493 * src/main.c:
24494 Insert `_' macro around many string constants.
24495
24496 (main): Call setlocale, bindtextdomain and textdomain.
24497
24498 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
24499 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
24500 [ENABLE_NLS]: Include libintl.h.
24501 [ENABLE_NLS] (gettext): Define.
24502 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
24503 (N_, PACKAGE, LOCALEDIR): New macros.
24504
245051996-06-01 Richard Stallman <rms@gnu.org>
24506
24507 * POTFILES.in: New file.
24508
24509 * Makefile.in (allocate.o):
24510 Define target explicitly.
24511
24512 * Makefile.in (CFLAGS): Set to @CFLAGS@.
24513 (LDFLAGS): Set to @LDFLAGS@.
24514 (configure): Run autoconf only if preceding `cd' succeeds.
24515 (bison.s1): Redirect output to temporary file then move the
24516 temporary to the target, rather than redirecting directly to bison.s1.
24517 (clean): Remove config.status and config.log.
24518 (distclean): Don't remove config.status here.
24519
245201996-05-12 Richard Stallman <rms@gnu.org>
24521
24522 * src/bison.s1:
24523 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24524
245251996-05-12 Richard Stallman <rms@gnu.org>
24526
24527 * bison.simple:
24528 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
24529
245301996-05-11 Richard Stallman <rms@gnu.org>
24531
24532 * src/bison.s1 (__yy_memcpy):
24533 Really reorder the args, as was supposedly done on Feb 14 1995.
24534 (yyparse): Calls changed accordingly.
24535
245361996-05-11 Richard Stallman <rms@gnu.org>
24537
24538 * Makefile.in (dist): Don't use $(srcdir).
24539
24540 * bison.simple (__yy_memcpy):
24541 Really reorder the args, as was supposedly done on Feb 14 1995.
24542 (yyparse): Calls changed accordingly.
24543
245441996-01-27 Richard Stallman <rms@gnu.org>
24545
24546 * src/output.c (output_rule_data):
24547 Test YYERROR_VERBOSE in the conditional
24548 around the definition of ttyname.
24549
245501995-12-29 Richard Stallman <rms@gnu.org>
24551
24552 * src/bison.s1:
24553 Fix line numbers in #line commands.
24554
245551995-12-29 Richard Stallman <rms@gnu.org>
24556
24557 * bison.simple:
24558 Fix line numbers in #line commands.
24559
245601995-12-27 Richard Stallman <rms@gnu.org>
24561
24562 * src/bison.s1 (YYPARSE_PARAM_DECL):
24563 In C++, make it always null.
24564 (YYPARSE_PARAM_ARG): New macro.
24565 (yyparse): Use YYPARSE_PARAM_ARG.
24566
245671995-12-27 Richard Stallman <rms@gnu.org>
24568
24569 * bison.simple (YYPARSE_PARAM_DECL):
24570 In C++, make it always null.
24571 (YYPARSE_PARAM_ARG): New macro.
24572 (yyparse): Use YYPARSE_PARAM_ARG.
24573
245741995-11-29 Richard Stallman <rms@gnu.org>
24575
24576 * doc/bison.texinfo:
24577 Describe literal string tokens, %raw, %no_lines, %token_table.
24578
245791995-11-29 Daniel Hagerty <hag@gnu.org>
24580
24581 * doc/bison.texinfo: Fixed update date
24582
245831995-10-16 Richard Stallman <rms@gnu.org>
24584
24585 * src/version.c: Version 1.25.
24586
245871995-10-16 Richard Stallman <rms@gnu.org>
24588
24589 * NEWS: *** empty log message ***
24590
245911995-10-16 Richard Stallman <rms@gnu.org>
24592
24593 * doc/bison.1, doc/bison.rnh:
24594 Add new options.
24595
245961995-10-15 Richard Stallman <rms@gnu.org>
24597
24598 * src/vmsgetargs.c, src/getargs.c:
24599 Added -n, -k, and -raw switches.
24600 (noparserflag, toknumflag, rawtoknumflag): New variables.
24601
24602 * src/symtab.h (SALIAS):
24603 New #define for adding aliases to %token.
24604 (struct bucket): Added `alias' field.
24605
24606 * src/reduce.c (reduce_grammar):
24607 Revise error message.
24608 (print_notices): Remove final `.' from error message.
24609
24610 * src/reader.c (reader_output_yylsp):
24611 New function.
24612 (readgram): Use `#if 0' around code that accepted %command
24613 inside grammar rules: The documentation doesn't allow it,
24614 and it will fail since the %command processors scan for the next %.
24615 (parse_token_decl): Extended the %token
24616 declaration to allow a multi-character symbol as an alias.
24617 (parse_thong_decl): New function.
24618 (read_declarations): Added %thong declarations.
24619 (read_declarations): Handle NOOP to deal with allowing
24620 % declarations as another means to specify the flags.
24621 (readgram): Allow %prec prior to semantics embedded in a rule.
24622 (skip_to_char, read_declarations, copy_definition)
24623 (parse_token_decl, parse_start_decl, parse_type_decl)
24624 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
24625 (get_type_name, copy_guard, copy_action, readgram)
24626 (get_type, packsymbols): Revised most error messages.
24627 Changed `fatal' to `warnxxx' to avoid aborting for error.
24628 Revised and use multiple warnxxx functions to avoid using VARARGS1.
24629 (read_declarations): Improve the error message for
24630 an invalid character. Do not abort.
24631 (read_declarations, copy_guard, copy_action): Use
24632 printable_version to avoid unprintable characters in printed output.
24633 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
24634 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
24635 Allow the type of a non-terminal can be given
24636 more than once, as long as all specifications give the same type.
24637
24638 * src/output.c:
24639 (output_headers, output_trailers, output, output_gram)
24640 (output_rule_data): Implement noparserflag variable.
24641 Implement toknumflag variable.
24642 (output): Call reader_output_yylsp to output LTYPESTR.
24643
24644 * src/main.c (main):
24645 If reader sees an error, don't process the grammar.
24646 (fatals): Updated to not use VARARGS1.
24647 (printable_version, int_to_string, warn, warni, warns, warnss)
24648 (warnsss): New error reporting functions. Avoid abort for error.
24649
24650 * src/lex.h:
24651 Added THONG and NOOP for alias processing.
24652 Added SETOPT for the new code that allows setting options with %flags.
24653
24654 * src/lex.c:
24655 Include getopt.h. Add some extern decls.
24656 (safegetc): New function to deal with EOF gracefully.
24657 (literalchar); new function to deal with reading \ escapes.
24658 (lex): Use literalchar.
24659 (lex): Implemented "..." tokens.
24660 (literalchar, lex, parse_percent_token): Made tokenbuffer
24661 always contain the token. This includes growing the token
24662 buffer while reading an integer.
24663 (parse_percent_token): Replaced if-else statement with percent_table.
24664 (parse_percent_token): Added % declarations as another
24665 way to specify the flags -n, -l, and -r. Also added hooks for
24666 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
24667 major changes to files.c.
24668 (lex) Retain in the incoming stream a character following
24669 an incorrect '/'.
24670 (skip_white_space, lex): Revised most error messages
24671 and changed fatal to warn to avoid aborting.
24672 (percent_table): Added %thong declarations.
24673
24674 * src/gram.h: Comment changes.
24675
24676 * src/files.c (openfiles, open_extra_files, done):
24677 Add faction flag
24678 and actfile file. Handle noparserflag. Both for -n switch.
24679
24680 * src/conflicts.c (resolve_sr_conflict):
24681 Remove use of alloca.
24682
246831995-06-01 Jim Meyering <meyering@gnu.org>
24684
24685 * doc/bison.texinfo: *** empty log message ***
24686
246871995-05-06 Richard Stallman <rms@gnu.org>
24688
24689 * src/bison.s1: Comment change.
24690
246911995-05-06 Richard Stallman <rms@gnu.org>
24692
24693 * bison.simple: Comment change.
24694
246951995-05-03 Richard Stallman <rms@gnu.org>
24696
24697 * src/version.c: Version now 1.24.
24698
24699 * src/bison.s1: Change distribution terms.
24700
24701 * src/version.c: Version now 1.23.
24702
247031995-05-03 Richard Stallman <rms@gnu.org>
24704
24705 * doc/bison.texinfo:
24706 Rewrite "Conditions for Using Bison".
24707 Update version to 1.24.
24708
247091995-05-03 Richard Stallman <rms@gnu.org>
24710
24711 * bison.simple: Change distribution terms.
24712
247131995-02-23 Richard Stallman <rms@gnu.org>
24714
24715 * src/files.c: Test __VMS_POSIX as well as VMS.
24716
247171995-02-14 Jim Meyering <meyering@gnu.org>
24718
24719 * src/bison.s1 (__yy_memcpy):
24720 Renamed from __yy_bcopy to avoid
24721 confusion. Reverse FROM and TO arguments to be consistent with
24722 those of memcpy.
24723
247241995-02-14 Jim Meyering <meyering@gnu.org>
24725
24726 * bison.simple (__yy_memcpy):
24727 Renamed from __yy_bcopy to avoid
24728 confusion. Reverse FROM and TO arguments to be consistent with
24729 those of memcpy.
24730
247311994-11-10 David J. MacKenzie <djm@gnu.org>
24732
24733 * NEWS: reformat
24734
24735 * NEWS: New file.
24736
24737 * Makefile.in (DISTFILES): Include NEWS.
24738
24739 * Makefile.in (DISTFILES):
24740 Include install-sh, not install.sh.
24741
24742 * configure.in: Update to Autoconf v2 macro names.
24743
247441994-10-05 David J. MacKenzie <djm@gnu.org>
24745
24746 * Makefile.in: fix typo
24747
24748 * Makefile.in (prefix, exec_prefix):
24749 Let configure set them.
24750
247511994-09-28 David J. MacKenzie <djm@gnu.org>
24752
24753 * Makefile.in: Set datadir to $(prefix)/share.
24754
247551994-09-15 Richard Stallman <rms@gnu.org>
24756
24757 * src/bison.s1:
24758 Update copyright notice and GPL version.
24759
247601994-09-15 Richard Stallman <rms@gnu.org>
24761
24762 * bison.simple:
24763 Update copyright notice and GPL version.
24764
247651994-07-12 Richard Stallman <rms@gnu.org>
24766
24767 * src/reduce.c, src/reader.c:
24768 entered into RCS
24769
247701994-05-05 David J. MacKenzie <djm@gnu.org>
24771
24772 * Makefile.in: entered into RCS
24773
247741994-03-26 Richard Stallman <rms@gnu.org>
24775
24776 * src/bison.s1: entered into RCS
24777
247781994-03-26 Richard Stallman <rms@gnu.org>
24779
24780 * bison.simple: entered into RCS
24781
247821994-03-25 Richard Stallman <rms@gnu.org>
24783
24784 * src/main.c: entered into RCS
24785
247861994-03-24 Richard Stallman <rms@gnu.org>
24787
24788 * src/conflicts.c: entered into RCS
24789
247901994-01-02 Richard Stallman <rms@gnu.org>
24791
24792 * Makefile.in: *** empty log message ***
24793
247941993-11-21 Richard Stallman <rms@gnu.org>
24795
24796 * src/bison.s1: *** empty log message ***
24797
247981993-11-21 Richard Stallman <rms@gnu.org>
24799
24800 * doc/bison.texinfo: entered into RCS
24801
24802 * doc/bison.texinfo: *** empty log message ***
24803
248041993-11-21 Richard Stallman <rms@gnu.org>
24805
24806 * bison.simple: *** empty log message ***
24807
248081993-10-25 David J. MacKenzie <djm@gnu.org>
24809
24810 * doc/bison.texinfo: *** empty log message ***
24811
248121993-10-19 Richard Stallman <rms@gnu.org>
24813
24814 * src/bison.s1: *** empty log message ***
24815
248161993-10-19 Richard Stallman <rms@gnu.org>
24817
24818 * bison.simple: *** empty log message ***
24819
248201993-10-14 Richard Stallman <rms@gnu.org>
24821
24822 * src/bison.s1: *** empty log message ***
24823
248241993-10-14 Richard Stallman <rms@gnu.org>
24825
24826 * bison.simple: *** empty log message ***
24827
248281993-09-14 David J. MacKenzie <djm@gnu.org>
24829
24830 * doc/bison.texinfo: *** empty log message ***
24831
248321993-09-13 Noah Friedman <friedman@gnu.org>
24833
24834 * Makefile.in: *** empty log message ***
24835
248361993-09-10 Richard Stallman <rms@gnu.org>
24837
24838 * src/conflicts.c: *** empty log message ***
24839
24840 * src/system.h: entered into RCS
24841
248421993-09-10 Richard Stallman <rms@gnu.org>
24843
24844 * doc/bison.1: entered into RCS
24845
248461993-09-06 Noah Friedman <friedman@gnu.org>
24847
24848 * src/version.c: entered into RCS
24849
248501993-09-06 Noah Friedman <friedman@gnu.org>
24851
24852 * Makefile.in: *** empty log message ***
24853
248541993-07-30 David J. MacKenzie <djm@gnu.org>
24855
24856 * Makefile.in: *** empty log message ***
24857
248581993-07-24 Richard Stallman <rms@gnu.org>
24859
24860 * src/bison.s1: *** empty log message ***
24861
248621993-07-24 Richard Stallman <rms@gnu.org>
24863
24864 * bison.simple: *** empty log message ***
24865
248661993-07-08 David J. MacKenzie <djm@gnu.org>
24867
24868 * Makefile.in: *** empty log message ***
24869
248701993-07-04 Richard Stallman <rms@gnu.org>
24871
24872 * src/bison.s1: *** empty log message ***
24873
248741993-07-04 Richard Stallman <rms@gnu.org>
24875
24876 * bison.simple: *** empty log message ***
24877
248781993-06-26 David J. MacKenzie <djm@gnu.org>
24879
24880 * src/getargs.c: entered into RCS
24881
248821993-06-26 David J. MacKenzie <djm@gnu.org>
24883
24884 * doc/bison.texinfo: *** empty log message ***
24885
24886 * doc/bison.1: New file.
24887
248881993-06-25 Richard Stallman <rms@gnu.org>
24889
24890 * src/getargs.c: New file.
24891
248921993-06-16 Richard Stallman <rms@gnu.org>
24893
24894 * src/bison.s1: *** empty log message ***
24895
248961993-06-16 Richard Stallman <rms@gnu.org>
24897
24898 * bison.simple: *** empty log message ***
24899
249001993-06-03 Richard Stallman <rms@gnu.org>
24901
24902 * src/bison.s1: New file.
24903
249041993-06-03 Richard Stallman <rms@gnu.org>
24905
24906 * doc/bison.texinfo: *** empty log message ***
24907
249081993-06-03 Richard Stallman <rms@gnu.org>
24909
24910 * bison.simple: New file.
24911
249121993-05-19 Richard Stallman <rms@gnu.org>
24913
24914 * doc/bison.texinfo: New file.
24915
249161993-05-07 Noah Friedman <friedman@gnu.org>
24917
24918 * Makefile.in: *** empty log message ***
24919
249201993-04-28 Noah Friedman <friedman@gnu.org>
24921
24922 * src/reader.c: *** empty log message ***
24923
249241993-04-23 Noah Friedman <friedman@gnu.org>
24925
24926 * src/alloc.h: entered into RCS
24927
249281993-04-20 David J. MacKenzie <djm@gnu.org>
24929
24930 * src/version.c: *** empty log message ***
24931
24932 * src/files.c, src/allocate.c:
24933 entered into RCS
24934
24935 * src/reader.c: *** empty log message ***
24936
24937 * src/lex.c: entered into RCS
24938
24939 * src/conflicts.c: New file.
24940
24941 * src/symtab.c: entered into RCS
24942
24943 * src/alloc.h: New file.
24944
24945 * src/LR0.c: entered into RCS
24946
249471993-04-18 Noah Friedman <friedman@gnu.org>
24948
24949 * src/reader.c: New file.
24950
24951 * src/version.c: *** empty log message ***
24952
249531993-04-18 Noah Friedman <friedman@gnu.org>
24954
24955 * Makefile.in: *** empty log message ***
24956
249571993-04-17 Noah Friedman <friedman@gnu.org>
24958
24959 * Makefile.in: *** empty log message ***
24960
249611993-04-15 Richard Stallman <rms@gnu.org>
24962
24963 * src/main.c, src/files.c:
24964 New file.
24965
249661993-04-15 Noah Friedman <friedman@gnu.org>
24967
24968 * configure.in: entered into RCS
24969
24970 * configure.in: *** empty log message ***
24971
24972 * configure.in: New file.
24973
249741993-04-14 Richard Stallman <rms@gnu.org>
24975
24976 * Makefile.in: New file.
24977
249781993-04-13 Richard Stallman <rms@gnu.org>
24979
24980 * src/version.c: New file.
24981
249821993-03-25 Richard Stallman <rms@gnu.org>
24983
24984 * src/output.c: entered into RCS
24985
249861992-09-25 Richard Stallman <rms@gnu.org>
24987
24988 * configure.bat: entered into RCS
24989
249901992-06-22 Richard Stallman <rms@gnu.org>
24991
24992 * src/vmsgetargs.c: entered into RCS
24993
249941992-06-22 Richard Stallman <rms@gnu.org>
24995
24996 * doc/bison.rnh: entered into RCS
24997
249981992-04-20 David J. MacKenzie <djm@gnu.org>
24999
25000 * README: entered into RCS
25001
250021992-01-22 Richard Stallman <rms@gnu.org>
25003
25004 * src/machine.h: entered into RCS
25005
250061991-12-21 Richard Stallman <rms@gnu.org>
25007
25008 * src/lalr.c, src/closure.c:
25009 entered into RCS
25010
250111991-12-20 Richard Stallman <rms@gnu.org>
25012
25013 * src/state.h: entered into RCS
25014
250151991-12-18 Richard Stallman <rms@gnu.org>
25016
25017 * src/print.c, src/nullable.c, src/derives.c:
25018 entered into RCS
25019
250201991-11-03 David J. MacKenzie <djm@gnu.org>
25021
25022 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
25023 entered into RCS
25024
250251988-09-09 Richard Stallman <rms@gnu.org>
25026
25027 * src/bison.hairy: entered into RCS
25028
250291987-12-16 Richard Stallman <rms@gnu.org>
25030
25031 * REFERENCES: entered into RCS
dc546b0f 25032
f294a2c2 25033
04098407 25034 -----
f294a2c2 25035
04098407 25036 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
e021191b
JD
25037 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
25038 2008, 2009 Free Software Foundation, Inc.
f294a2c2 25039
04098407
PE
25040 Copying and distribution of this file, with or without
25041 modification, are permitted provided the copyright notice and this
25042 notice are preserved.