]> git.saurik.com Git - bison.git/blame - ChangeLog
YYFAIL: warn about uses and remove from lalr1.java.
[bison.git] / ChangeLog
CommitLineData
62efdd2a
JD
12009-12-21 Joel E. Denny <jdenny@clemson.edu>
2
3 YYFAIL: warn about uses and remove from lalr1.java.
4 * NEWS (2.5): Document.
5 * data/lalr1.java (parser::YYStack::YYFAIL): Rename to YYERRLAB,
6 and make it private. Update all uses.
7 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
8
41d35e54
JD
92009-12-21 Joel E. Denny <jdenny@clemson.edu>
10
11 YYFAIL: deprecate.
12 * NEWS (2.4.2): Document deprecation and the phase-out plan.
13 * data/lalr1.java (parser::YYStack::YYFAIL): Add comment about
14 deprecation.
15 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
16 YYFAIL from GCC cpp's -Wunused-macros.
17 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
18 documentation.
19 (LocalWords): Remove YYFAIL.
20
692d04cb
JD
212009-12-17 Joel E. Denny <jdenny@clemson.edu>
22
23 Code cleanup.
24 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
25 function, which is no longer used.
26
34731471
JD
272009-12-16 Joel E. Denny <jdenny@clemson.edu>
28
29 Add gcc's -Wundef to test suite and fix another warning from it.
30 * NEWS (2.4.2): Update description of -Wundef fix.
31 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
32 (WARN_CFLAGS_TEST): New substitution.
33 * data/glr.c: Avoid warning about __STRICT_ANSI__.
34 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
35 WARN_CFLAGS.
36 (NO_WERROR_CFLAGS): Likewise.
37 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
38
3bba2dad
JD
392009-12-16 Joel E. Denny <jdenny@clemson.edu>
40
41 * data/yacc.c: Reformat m4 a little.
42
af2ffe5c
JD
432009-12-16 Joel E. Denny <jdenny@clemson.edu>
44
45 Document gcc -Wundef fix.
46 * NEWS (2.4.2): Here.
47 * THANKS (Jonathan Nieder): Add.
48
874ac415
JN
492009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
50
51 Simplify y.tab.c when location tracking is disabled.
52 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
53 tracking is not enabled. Instead, unconditionally define
54 YY_LOCATION_PRINT as a no-op for backward compatibility.
55
06caf0e1
JN
562009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
57
58 Avoid warnings from gcc -Wundef y.tab.c.
59 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
60 defined before using them.
61 * data/lalr1.cc: Likewise.
62 * data/yacc.c: Likewise.
63
687f011a
JD
642009-12-15 Joel E. Denny <jdenny@clemson.edu>
65
66 autoconf: update to latest for fix of M4 detection.
67 Reported by Eric Blake.
68 * submodules/autoconf: Update.
69
fb9a3976
JD
702009-12-15 Joel E. Denny <jdenny@clemson.edu>
71
72 portability: use -DGNULIB_POSIXCHECK.
73 Reported by Eric Blake. See discussions at
74 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
75 and
76 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
77 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
78 * bootstrap.conf (gnulib_modules): Add all the printf modules
79 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
80 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
81 (excluded_files): Remove m4/printf-posix.m4.
82 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
83 lib/libbison.a so gnulib libraries can be linked.
84
f1fb412c
JD
852009-12-14 Joel E. Denny <jdenny@clemson.edu>
86
87 Enable assertion output and --disable-assert for configure.
88 * bootstrap.conf (gnulib_modules): Add assert module.
89 * src/system.h (aver): Define as assert, and summarize the
90 discussion on this issue.
91
51c7ca01
JD
922009-12-14 Joel E. Denny <jdenny@clemson.edu>
93
94 Expand GLR acronym in summary of Bison.
95 Based on discussion with Akim Demaille starting at
96 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
97 * doc/bison.texinfo (Introduction): Here.
98 * src/getargs.c (usage): Here.
99
1f68dca5
AR
1002009-10-03 Alex Rozenman <rozenman@gmail.com>
101
102 Document named references.
103 * doc/bison.texinfo (Actions): Add new example and xref to
104 Using Named References node.
105 (Using Named References): New node.
106
aa01d193
JD
1072009-10-16 Joel E. Denny <jdenny@clemson.edu>
108
109 cleanup.
110 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
111 of char*.
112 (Sbitset__isEmpty): Use Sbitset instead of char*.
113 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
114 instead of char. This helps to avoid casting errors.
115 (Sbitset__or): Use Sbitset instead of char*.
116
61747047
JD
1172009-10-16 Joel E. Denny <jdenny@clemson.edu>
118
119 portability: don't assume 8-bit bytes.
120 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
121 * src/Sbitset.h (Sbitset__nbytes): Here.
122 (Sbitset__byteAddress): Here.
123 (Sbitset__bit_mask): Here.
124 (Sbitset__last_byte_mask): Here.
125 (Sbitset__ones): Here.
126 (SBITSET__FOR_EACH): Here.
127
a70596de
JD
1282009-10-11 Joel E. Denny <jdenny@clemson.edu>
129
130 portability: use va_start and va_end in the same function.
131 * src/complain.c (error_message): Move va_end from here...
132 (ERROR_MESSAGE): ... to here.
133
51f255a5
JD
1342009-10-08 Joel E. Denny <jdenny@clemson.edu>
135
136 * data/bison.m4: Update comments for rename to muscle-tab.h.
137
23ec25b7
JD
1382009-10-08 Joel E. Denny <jdenny@clemson.edu>
139
140 Rename muscle_tab.* to muscle-tab.* for consistency with master.
141 * src/Makefile.am (bison_SOURCES): Update.
142 * src/getargs.c, src/ielr.c, src/lalr.c, src/main.c,
143 src/output.c, src/parse-gram.y, src/print.c, src/reader.c,
144 src/tables.c: Update include.
145 * src/muscle_tab.c, src/muscle_tab.h: Rename to...
146 * src/muscle-tab.c, src/muscle-tab.h: ... these and update
147 include.
148
0ab402b4
JD
1492009-10-07 Joel E. Denny <jdenny@clemson.edu>
150
151 Minor code cleanup.
152 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
153 replace all uses with UNIQSTR_CONCAT.
154 * src/uniqstr.c (uniqstr_vsprintf): New function.
155 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
156 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
157 macros.
158
42ec0ae1
JD
1592009-10-04 Joel E. Denny <jdenny@clemson.edu>
160
161 Minor code cleanup.
162 * src/parse-gram.y: Clean up sorting of declarations.
163 Use types to simplify %printer declarations where possible.
164 Provide %printer for BRACKETED_ID and symbol.prec.
165 * src/symtab.c: Whitespace change.
166
9637e0ed
JD
1672009-10-04 Joel E. Denny <jdenny@clemson.edu>
168
169 tests: skip tests of file names that platform does not support.
170 Reported by Michael Raskin at
171 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
172 * THANKS (Michael Raskin): Add.
173 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
174 to fail at least for file names containing ":" or "\".
175
69a2ab11
JD
1762009-09-23 Joel E. Denny <jdenny@clemson.edu>
177
178 yysyntax_error: avoid duplicate lookahead collection.
179 Except when memory reallocation is required, this change
180 eliminates the need to invoke yysyntax_error twice and thus to
181 repeat the collection of lookaheads. It also prepares for
182 future extensions that will make those repetitions more
183 expensive and that will require additional memory management in
184 yysyntax_error. Finally, it fixes an obscure bug already
185 exercised in the test suite.
186 * data/yacc.c (yysyntax_error): Add arguments for message
187 buffer variables stored in the parser. Instead of size, return
188 status similar to yyparse status but indicating success of
189 message creation. Other than the actual reallocation of the
190 message buffer, import and clean up memory management code
191 from...
192 (yyparse, yypush_parse): ... here.
193 * tests/regression.at (%error-verbose overflow): No longer an
194 expected failure.
195
d88cf117
JD
1962009-09-23 Joel E. Denny <jdenny@clemson.edu>
197
198 yysyntax_error: test memory management more.
199 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
200 * tests/regression.at (%error-verbose and YYSTACK_USE_ALLOCA):
201 New test group.
202 (%error-verbose overflow): New test group that reveals an
203 obscure bug. Expected fail for now.
204
9da640ea
AD
2052008-12-11 Akim Demaille <demaille@gostai.com>
206
207 Pass the token type to yysyntax_error.
208 * data/yacc.c (yysyntax_error): Take the transated token instead
209 of the raw number.
210 Adjust callers.
211
d3d3628b
AD
2122008-12-11 Akim Demaille <demaille@gostai.com>
213
214 Simplify the i18n of the error messages.
215 * data/yacc.c (yysyntax_error): Rewrite, using a switch instead
216 of building dynamically the format string.
217
4c6b13f3
JD
2182009-10-03 Joel E. Denny <jdenny@clemson.edu>
219
220 Remove dead code.
221 * src/symtab.c (symbol_pack): Here because every symbol's number
222 is always defined by this time.
223
f840c05a
AR
2242009-10-03 Alex Rozenman <rozenman@gmail.com>
225
226 Add additional space after periods in NEWS.
227 * NEWS (2.5): here.
228
17a407dc
JD
2292009-09-29 Joel E. Denny <jdenny@clemson.edu>
230
231 Use the correct conversion specifier for size_t.
232 Reported by Jim Meyering.
233 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
234 because Sbitset__Index is size_t.
235 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
236
4b7a4c1b
JD
2372009-09-27 Joel E. Denny <jdenny@clemson.edu>
238
239 tests: don't abuse AT_BISON_CHECK.
240 * tests/regression.at (parse-gram.y: LALR = IELR): Move
241 additional shell commands outside of AT_BISON_CHECK.
242
873ac263
JD
2432009-09-26 Joel E. Denny <jdenny@clemson.edu>
244
245 tests: check that parse-gram.y's IELR and LALR are identical.
246 * tests/atlocal.in (abs_top_srcdir): New shell variable.
247 * tests/regression.at (parse-gram.y: LALR = IELR): New test
248 group.
249
232be91a
AD
2502009-09-16 Akim Demaille <demaille@gostai.com>
251
252 doc: comment changes.
253 * doc/bison.texinfo: Comment changes.
254
c781580d
AD
2552009-09-16 Akim Demaille <demaille@gostai.com>
256
257 doc: spell checking.
258 * doc/bison.texinfo: here.
259
348f5608
AR
2602009-09-19 Alex Rozenman <rozenman@gmail.com>
261
262 Keep sub-messages aligned. Fix strings for translation.
f840c05a
AR
263 * src/location.h (location_print): Add return value.
264 * src/location.c (location_print): Return number of printed
348f5608 265 characters.
f840c05a
AR
266 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
267 new functions.
268 * src/complain.cpp (indent_ptr): New static variable.
269 (error_message, complain_at_indent, warn_at_indent): Implement
270 the alignment mechanism.
271 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
272 for translations. Use new alignment mechanism.
273 * tests/named-ref.at: Adjust test-cases.
348f5608
AR
274 * NEWS (2.5): Add an announcement about named references.
275
d93b5f50
JD
2762009-09-13 Joel E. Denny <jdenny@clemson.edu>
277
278 tests: clean up push.at test group titles.
279 * tests/push.at: Remove "Push Parsing: " from test group titles
280 because these are already under the banner "Push Parsing Tests".
281
4c56b131
AR
2822009-09-12 Alex Rozenman <rozenman@gmail.com>
283
284 Provide an additional sub-message for clarity.
285 Add "symbol not found in production" error message when
286 an "invalid reference" is detected in named references
287 resolution.
288 * src/scan-code.l: Update "invalid reference" case.
289 * tests/named-ref.at: Adjust test-cases.
290
93d0103d
JD
2912009-09-10 Joel E. Denny <jdenny@clemson.edu>
292
293 Clean up yacc.c a little.
294 * data/yacc.c: Clean up M4 for readability, and make output
295 whitespace more consistent. For the main parse function
296 comment, instead of saying "yyparse or yypush_parse", say either
297 "yyparse" or "yypush_parse" depending on which it actually is.
298
628be6c9
JD
2992009-09-03 Joel E. Denny <jdenny@clemson.edu>
300
301 Complain about unused %define variables and %code qualifiers.
302 * NEWS (2.5): Document.
303 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
304 * doc/bison.texinfo (Decl Summary): Document complaint, and
305 improve %define documentation a little otherwise.
306 * tests/input.at (Reject unused %code qualifiers): Update.
307 (%define errors): Update.
308 (%define, --define, --force-define): Update.
309 (%define backward compatibility): Update.
310 (Unused %define api.pure): Update.
311 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
312
c842365a
JD
3132009-09-03 Joel E. Denny <jdenny@clemson.edu>
314
315 Use aver not assert.
316 * src/output.c: Don't include assert.h.
317 (output_skeleton): Use aver not assert.
318 * src/system.h (aver): In documentation of why, add links to
319 Paul Eggert's explanations in the mailing lists.
320
14e568d7
AR
3212009-09-05 Alex Rozenman <rozenman@gmail.com>
322
323 Use "Unresolved reference" error message when no symbols were found
324 in a symbolic reference resolution. Remove .expr and -expr from
325 the shown reference when the reference is unresolved.
326 * src/scan-code.l: Change the error message, adjust location columns,
327 rename variable "exact_mode" to "explicit_bracketing".
328 * tests/named-ref.at: Adjust existing tests and add a new one.
329
dac8cc0d
AD
3302009-09-03 Akim Demaille <demaille@gostai.com>
331
332 * NEWS (2.4.2): Add "Internationalization" item.
333
3710dd02
AD
3342009-09-03 Akim Demaille <demaille@gostai.com>
335
336 bootstrap: fix/improve find_tool.
337 * bootstrap (find_tool): Improve error messages.
338 Fix typo about find_tool_names.
339
9852b61c
JD
3402009-08-29 Joel E. Denny <jdenny@clemson.edu>
341
342 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
343 See
344 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
345 * src/scan-code.h (code_props_rule_action_init): Rename
346 named_ref arg to name so it doesn't shadow named_ref type. This
347 makes it consistent with the function definition in scan-code.l
348 anyway.
349
f37495f6
JD
3502009-08-28 Joel E. Denny <jdenny@clemson.edu>
351
352 %define: accept unquoted values.
353 * NEWS (2.5): Group all %define changes together, and document
354 this one. Remove quotes in IELR and canonical LR entry.
355 * doc/bison.texinfo: Remove quotes in most examples throughout.
356 (Decl Summary): Update %define documentation.
357 (Table of Symbols): Likewise.
358 * src/ielr.c (LrType): Update documentation.
359 * src/parse-gram.y (content.opt): Add production for ID.
5bf2bf7a 360 * tests/calc.at: Remove quotes in most tests.
f37495f6
JD
361 * tests/existing.at: Likewise.
362 * tests/input.at: Likewise.
363 * tests/local.at: Likewise.
364 * tests/push.at: Likewise.
365 * tests/reduce.at: Likewise.
366 * tests/torture.at: Likewise.
367
3a414bbf
JD
3682009-08-28 Joel E. Denny <jdenny@clemson.edu>
369
370 %define lr.type: make values lowercase IDs.
371 That is, "LALR" => "lalr", "IELR" => "ielr", and
372 "canonical LR" => "canonical-lr".
373 * NEWS (2.5): Update documentation.
374 * doc/bison.texinfo (Decl Summary): Likewise.
375 * src/ielr.c (ielr): Use new values.
376 * src/ielr.h (ielr): Update documentation.
377 * src/reader.c (prepare_percent_define_front_end_variables): Use
378 and validate new values.
379 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
380 grammars.
381 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
382
4bb975e1
EB
3832009-08-27 Eric Blake <ebb9@byu.net>
384
385 scan-gram: avoid portability trap with ctype usage.
386 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
387 Avoid compiler warning.
388
74baf5c9
JD
3892009-08-27 Joel E. Denny <jdenny@clemson.edu>
390
391 tests: use perl for printing special sequences to files.
392 And skip tests if perl is not available. This is better than
393 playing tricks with shell portability. Suggested by Akim
394 Demaille.
395 * tests/input.at (Bad character literals): Use it here for
396 omitting final newlines.
397 (Bad escapes in literals): Use it here for special characters.
398
d63e1279
JD
3992009-08-26 Joel E. Denny <jdenny@clemson.edu>
400
401 tests: show a use of %define lr.default-reductions "consistent"
402 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
403 prevents the omission of expected tokens for %error-verbose.
404
833d1720
AD
4052009-08-26 Akim Demaille <demaille@gostai.com>
406
407 tests: portability fix.
408 * tests/input.at (Bad escapes in literals): Don't expect "echo
409 '\0'" to output \ then 0.
410
e4bcae3c
JD
4112009-08-26 Joel E. Denny <jdenny@clemson.edu>
412
413 Actually handle the yytable zero value correctly this time.
414 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Don't
415 mention zero values in the YYTABLE comments.
416 * data/glr.c (yytable_value_is_error): Don't check for zero
417 value.
418 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
419 * data/yacc.c (yytable_value_is_error): Likewise.
420 * data/lalr1.java (yy_table_value_is_error_): Likewise.
421 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
422 * src/tables.h: In header comments, explain why it's useless to
423 check for a zero value in yytable.
424
d5eb0826
JD
4252009-08-25 Joel E. Denny <jdenny@clemson.edu>
426
427 More fixes related to last two patches.
428 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
429 defined.
430 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Fix
431 yytable comments: zero indicates syntax error not default
432 action.
433 * data/glr.c (yyis_pact_ninf): Rename to...
434 (yypact_value_is_default): ... this.
435 (yyisDefaultedState): Update for rename.
436 (yyis_table_ninf): Rename to...
437 (yytable_value_is_error): ... this, and check for value zero
438 besides just YYTABLE_NINF.
439 (yygetLRActions): Check for default value from yypact. It
440 appears that this check is always performed before this function
441 is invoked, and so adding the check here is probably redundant.
442 However, the code may evolve after this subtlety is forgotten.
443 Also, update for rename to yytable_value_is_error. Because that
444 macro now checks for zero, a different but equivalent branch of
445 the if-then-else here is evaluated.
446 (yyreportSyntaxError): Update for rename to
447 yytable_value_is_error. The zero condition was mishandled
448 before.
449 (yyrecoverSyntaxError): Update for renames. No behavioral
450 changes.
451 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
452 New function.
453 (yy_table_value_is_error_): New function.
454 (parse): Use new functions where possible. No behavioral
455 changes.
456 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
457 The zero condition was mishandled before.
458 * data/yacc.c (yyis_pact_ninf): Rename to...
459 (yypact_value_is_default): ... this.
460 (yyis_table_ninf): Rename to...
461 (yytable_value_is_error): ... this, and check for value zero
462 besides just YYTABLE_NINF.
463 (yysyntax_error): Update for rename to yytable_value_is_error.
464 The zero condition was mishandled before.
465 (yyparse): Update for renames. No behavioral changes.
466 * src/tables.h: Improve comments about yypact, yytable, etc.
467 more. Most importantly, say yytable value of zero means syntax
468 error not default action.
469
1fa30307
JD
4702009-08-25 Joel E. Denny <jdenny@clemson.edu>
471
472 Fix %error-verbose for conflicts resolved by %nonassoc.
473 * NEWS (2.5): Document.
474 * data/glr.c (yyreportSyntaxError): Fix this by checking
475 yyis_table_ninf.
476 * data/yacc.c (yysyntax_error): Likewise.
477 * data/lalr1.cc (yysyntax_error_): Fix this by checking
478 yytable_ninf_.
479 * data/lalr1.java (yysyntax_error): Likewise.
480 * tests/conflicts.at (%nonassoc and eof): Update expected output
481 and remove FIXME.
482
77373efa
JD
4832009-08-25 Joel E. Denny <jdenny@clemson.edu>
484
485 Some code and documentation improvements.
486 * data/c.m4 (b4_table_value_equals): New macro to capture
487 some repeated code.
488 * data/glr.c (yyis_pact_ninf): Use it here.
489 (yyis_table_ninf): Likewise.
490 (yyreportSyntaxError): Improve internal comments.
491 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
492 Use it everywhere possible.
493 (yyis_table_ninf): Likewise.
494 (yysyntax_error): Improve internal comments.
495 * data/lalr1.cc (yysyntax_error_): Likewise.
496 * data/lalr1.java (yysyntax_error): Likewise.
497 * src/tables.h: Improve comments about yypact, yytable, etc.
498
890ab17c
JD
4992009-08-21 Joel E. Denny <jdenny@clemson.edu>
500
501 Use locale when quoting.
502 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
503 quote rather than implementing quoting here.
504
c5196098
EB
5052009-08-20 Eric Blake <ebb9@byu.net>
506
aa50ba7b
EB
507 Make previous patch more robust.
508 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
509 argmatch.h.
510 (output_skeleton): Use it.
511 Suggested by Akim Demaille.
512
c5196098
EB
513 Import latest m4/m4.m4.
514 * submodules/autoconf: Update to autoconf 2.64.
515 * configure.ac (M4_GNU_OPTION): New define.
516 * src/output.c (output_skeleton): Use it to resolve FIXME.
517 * NEWS: Mention this.
518
39fb7e62
JD
5192009-08-19 Joel E. Denny <jdenny@clemson.edu>
520
521 Fix complaints about escape sequences.
522 Discussed starting at
523 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
524 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
525 For a \0 and similar escape sequences meaning the null
526 character, report an invalid escape sequence instead of an
527 invalid null character because the latter does not actually
528 appear in the user's input.
529 In all escape sequence complaints, don't escape the initial
530 backslash, and don't quote when the sequence appears at the end
531 of the complaint line unless there's whitespace that quotearg
532 won't escape.
533 Consistently say "invalid" not "unrecognized".
534 Consistently prefer "empty character literal" over "extra
535 characters in character literal" warning for invalid escape
536 sequences; that is, consistently discard those sequences.
537 * tests/input.at (Bad escapes in literals): New.
538
c33bc800
AD
5392009-08-19 Akim Demaille <demaille@gostai.com>
540
541 doc: fixes.
542 * doc/bison.texinfo: Fix minor Texinfo errors.
543
8fbbeba2
AD
5442009-08-19 Akim Demaille <demaille@gostai.com>
545
546 doc: %initial-action to initialize yylloc.
547 Reported by Bill Allombert.
548 * doc/bison.texinfo: Set fill-column to 76.
549 (Location Type): Document the use of %initial-action to initialize
550 yylloc.
551
1874a474
JD
5522009-08-18 Joel E. Denny <jdenny@clemson.edu>
553
554 maint: update for gnulib's recent update-copyright changes
555 * gnulib: Update.
556 * .x-update-copyright (COPYING): Add as it's no longer implied
557 when .x-update-copyright is present.
558 * cfg.mk (update-copyright-local): Remove, now ignored.
559 (update-copyright): Declare update-b4-copyright as a dependency.
560
f4bfd5a9
AD
5612009-08-17 Akim Demaille <demaille@gostai.com>
562
563 build: require gettext 0.17.
564
565 Suggested by Bruno Haible.
566 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
567 * configure.ac: require gettext 0.17 to ensure compatibility with
568 gnulib.
569
2509eba6
AD
5702009-08-17 Akim Demaille <demaille@gostai.com>
571
572 build: lower gettext requirements.
573
574 Bison was uselessly requiring the formatstring macros from
575 gettext, which resulted in mo files not being installed on systems
576 that perfectly supported Bison mo files. Lower the requirement.
577 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
578
aa50ba7b
EB
579 * configure.ac: Require need-ngettext instead of
580 need-formatstring-macros.
581 Reported by Martin Jabocs.
582 Suggested by Bruno Haible.
583 * INSTALL: Restructure.
584 (Internationalization): New.
2509eba6 585
314542f9
JD
5862009-08-14 Joel E. Denny <jdenny@clemson.edu>
587
588 maint: fix use of copyright year intervals.
589 * gnulib: Update.
590 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
591 as now recommended in gnulib/NEWS.
592 * build-aux/update-b4-copyright: Fix.
593 * cfg.mk (update-copyright-env): Configure update-copyright.
594
24985964
JD
5952009-08-13 Joel E. Denny <jdenny@clemson.edu>
596
597 Make it easier to write deterministic tests.
598 Continues Akim's work from his 2009-06-10 commits.
599 * src/reader.c (check_and_convert_grammar): Don't add any
600 symbols after the first symbols_do invocation.
601 * src/symtab.c (symbols_sorted): New static global.
602 (user_token_number_redeclaration): Update comments.
603 (symbol_from_uniqstr): If a new symbol is being created, assert
604 that symbols_sorted hasn't been allocated yet.
605 (symbols_free): Free symbols_sorted.
606 (symbols_cmp, symbols_cmp_qsort): New functions.
607 (symbols_do): Sort symbol_table into symbols_sorted on first
608 invocation.
609 * tests/input.at (Numbered tokens): Recombine tests now that the
610 output should be deterministic across multiple numbers.
611
47076da5
AD
6122009-08-12 Akim Demaille <demaille@gostai.com>
613
614 distcheck: fix.
615
aa50ba7b 616 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
47076da5 617
36dfe466
JD
6182009-08-10 Joel E. Denny <jdenny@clemson.edu>
619
620 * tests/Makefile.am (TESTSUITE_AT): Add named-refs.at.
621
07c0db18
JD
6222009-08-10 Joel E. Denny <jdenny@clemson.edu>
623
624 Miscellaneous code readability improvements.
625
626 * src/reader.c (reader): Move %define front-end variable
627 defaults and checking into...
628 (prepare_percent_define_front_end_variables): ... this new
629 function.
630
631 * src/scan-gram.l (INITIAL): For consistency with string
632 literals, don't store open quote on character literal. It's
633 discarded before returning anyway.
634 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
635 Make length test more readable, and make the character stored
636 for an empty literal more obvious while consistent with the
637 previous behavior.
638
639 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
640 USER_NUMBER_HAS_STRING_ALIAS throughout.
641 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
642 that is repeated in symtab.h. Improve argument names to make it
643 clear which side of the symbol-string alias pair is which.
644 (symbol_check_alias_consistency): Improve local variable names
645 for the same purpose.
646 * src/symtab.h (struct symbol): Make comments about aliases
647 clearer.
648 (symbol_make_alias): Improve comments and argument name.
649 * src/output.c (token_definitions_output): Update for rename to
650 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
651
1a323c2f
AR
6522009-08-08 Alex Rozenman <rozenman@gmail.com>
653
654 Convert "misleading reference" messages to warnings.
655 * src/scan-code.l: New function 'show_sub_messages', more
656 factoring.
657 * tests/named-ref.at: Adjust tests.
658
38609c34
JD
6592009-08-06 Joel E. Denny <jdenny@clemson.edu>
660
661 maint: run "make update-copyright"
662
642f240e
JD
6632009-08-06 Joel E. Denny <jdenny@clemson.edu>
664
665 maint: make update-b4-copyright easier to use
666 * build-aux/update-b4-copyright: In warnings, report line
667 numbers rather than character positions.
668 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
669 that update-copyright runs it.
670 * gnulib: Update.
671
d0caad01
JD
6722009-08-05 Joel E. Denny <jdenny@clemson.edu>
673
674 maint: clean up update-b4-copyright code
675 * build-aux/update-b4-copyright: Do not accept 2-digit
676 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
677 Don't accept a `[' in a b4_copyright argument.
678 Format code more consistently.
679 Don't assume b4*copyright never occurs.
680
ac2def56
JD
6812009-08-04 Joel E. Denny <jdenny@clemson.edu>
682
683 maint: automate b4_copyright updates.
684 * Makefile.am (update-b4-copyright): New target rule.
685 * build-aux/Makefile.am (EXTRA_DIST): Add update-b4-copyright.
686 * build-aux/update-b4-copyright: New.
687 * data/yacc.c: Remove stray characters around b4_copyright
688 invocations.
689
dbbb64f0
JD
6902009-08-04 Joel E. Denny <jdenny@clemson.edu>
691
692 maint: automate annual package-wide copyright-year update.
693 * .x-update-copyright: New.
694 * Makefile.am (EXTRA_DIST): Remove maint.mk.
695 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
696 update-copyright. Remove gnumakefile, which is implied by
697 maintainer-makefile.
698 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
699 * gnulib: Update.
700 * maint.mk: Remove, now copied from gnulib.
701 * examples/extexi: Add missing "(C)" in copyright statement so
702 update-copyright can recognize it.
703 * src/LR0.h: Likewise.
704 * src/print.h: Likewise.
705 * src/print_graph.h: Likewise.
706 * src/gram.c: Add missing comma in copyright statement.
707 * src/gram.h: Likewise.
708
bfa018d4
JD
7092009-08-04 Joel E. Denny <jdenny@clemson.edu>
710
711 Fix "make distcheck".
712 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
713 of just calc.stamp.
714
4521fcdf
JD
7152009-08-01 Joel E. Denny <jdenny@clemson.edu>
716
717 Pacify "gcc -Wunused" for the input function from Flex.
718 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
719 and later.
720 * src/scan-code.l: Add "%option noinput", which I cannot find in
721 the Flex manual, but which Flex has supported since at least as
722 far back as 2.5.4. However, if any of our developers still use
723 Flex 2.5.4, they'll need to stop configuring with
724 --enable-gcc-warnings because "%option noinput" didn't work
725 correctly until Flex 2.5.6.
726 * src/scan-gram.l: Likewise.
727 * src/scan-skel.l: Likewise.
728
992e874a
AR
7292009-07-31 Alex Rozenman <rozenman@gmail.com>
730
731 Fix --enable-gcc-warnings problems.
732 * src/reader.c: Adjust variable names.
733 * src/scan-code.l: Fix prototypes and adjust names.
734 * src/named-ref.c: Remove redundant "if".
735
a1ed2b71
JD
7362009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
737
738 Fix a --enable-gcc-warnings problem.
739 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
740 variable.
741
cbc6a70e 7422009-07-24 Alex Rozenman <rozenman@gmail.com>
1e20ad11
AR
743
744 Fix some memory leaks.
745 * src/named-ref.c: Add a pointer check (named_ref_free).
746 * src/scan-code.l: New function (variant_table_free). Called in
747 code_scanner_free.
748 * src/symlist.c: Call to named_ref_free (symbol_list_free).
749
ac9b0e95
JD
7502009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
751
752 Warn about character literals not of length one.
753 * NEWS (2.5): Document.
754 * src/scan-gram.l (INITIAL): Remove comment that we don't check
755 the length.
756 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
757 * tests/input.at (Bad character literals): New test group.
758
2de160e1
JD
7592009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
760
761 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
762
cba97506
JD
7632009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
764
765 Some M4 cleanup in the testsuite.
766 Suggested by Eric Blake at
767 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
768 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
769 complicate the code by distinguishing between a missing value
770 and an empty string value for an optional argument. This fix is
771 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
772 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
773 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
774 arguments are not needed because of the following changes.
775 Fix stale comments.
776 Bison developers should use GNU M4 and should not use
777 POSIXLY_CORRECT when building the test suite, so do not
778 complicate the code by avoiding $10 and above.
779 Do not quote an empty string value for an optional argument, and
780 do not distinguish between a missing value and an empty string
781 value.
782
62eb2d1b
JD
7832009-07-21 Joel E. Denny <jdenny@ces.clemson.edu>
784
785 * m4/m4.m4: Make it a sym link to submodules/autoconf/m4/m4.m4.
786
620b2e36
JD
7872009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
788
789 Revert unnecessary column realignment in --help output.
790 Reported by Akim Demaille at
791 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
792 * src/getargs.c (usage): Here.
793
cbc6a70e 7942009-07-04 Alex Rozenman <rozenman@gmail.com>
dad6544d
AR
795
796 Alphabetical order in src/Makefile.am.
797 * src/Makefile.am: Adjust.
798
cbc6a70e 7992009-07-04 Alex Rozenman <rozenman@gmail.com>
d5e8574b
AR
800
801 Style changes and factoring.
802 * src/named-ref.h: Add comments.
803 * src/parse-gram.y: Readability and style changes.
804 * src/reader.c: Factoring: assign_named_ref function.
805 * src/scan-code.l: Factoring and style changes. Rename
806 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
807 Use "unsigned" type for variant index. Improve readablity.
808 * src/scan-gram.l: Change error messages and add comments.
809 * src/symlist.h: symbol_list_null: New function decl.
810 * src/symlist.c: symbol_list_null: Implement here.
811 * tests/named-refs.at: Adjust for new error messages.
812
ae09ec85
EB
8132009-06-29 Eric Blake <ebb9@byu.net>
814
815 scan-code: avoid compiler warnings
816 * src/scan-code.l (parse_named_ref): Use correct specifiers.
817
80d653fd
AD
8182009-06-29 Akim Demaille <demaille@gostai.com>
819
820 build: avoid concurrent extraction of calc++.
821 * examples/calc++/Makefile.am (calc.stamp): New.
822 Depend on it to create the sources of calc++ so that concurrent
823 builds don't launch several "extexi" in parallel.
824 Not only this is inefficient, this also builds incorrect sources
825 with several extractions mixed together.
826
7685e2f7
AR
8272009-06-27 Alex Rozenman <rozenman@gmail.com>
828
829 Implement support for named symbol references.
830 * src/parse-gram.y: Add new syntax (named_ref.opt).
831 * src/reader.c: Store named refs in symbol lists.
832 * src/reader.h: New argument for symbol_append and
833 action_append functions.
834 * src/scan-code.h: Add new field (named_ref) into
835 code_props data structure. Keeps named ref of midrule
836 actions.
837 * src/scan-code.l: Support for named refs in semantic
838 action code. New function 'parse_named_ref'.
839 * src/scan-gram.l: Support bracketed id.
840 * src/symlist.c: Store named refs in symbol lists.
841 * src/symlist.h: New field in symbol list: named_ref.
842 * src/named-ref.h: New file, a struct for named_ref.
843 * src/named-ref.cp: New file, named_ref_new function.
844 * src/local.mk: Add two new files.
845 * tests/testsuite.at: Include new test group:
846 * tests/named-refs.at: this new file.
847
67f8cf51
AD
8482009-06-25 Akim Demaille <demaille@gostai.com>
849
850 hash: check insertion for memory exhaustion.
851 * src/uniqstr.c (uniqstr_new): New.
852
83b66ddd
AD
8532009-06-11 Akim Demaille <demaille@gostai.com>
854
855 style changes.
856 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
857 * src/print-xml.c: Style changes.
858 * tests/conflicts.at: Comment changes.
859
517cb0ad
AD
8602009-06-11 Akim Demaille <demaille@gostai.com>
861
862 xml: beware of user strings used to give a %prec to rules.
863 * tests/conflicts.at (%prec with user strings): New.
864 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
865 XML output.
866
75c7a52a
AD
8672009-06-11 Akim Demaille <demaille@gostai.com>
868
869 hash: check insertion for memory exhaustion.
870 * src/muscle-tab.c (muscle_insert, muscle_grow)
871 * src/state.c (state_hash_insert): Check the return value of
872 hash_insert.
873
66ed9753
AD
8742009-06-10 Akim Demaille <demaille@gostai.com>
875
876 deterministic test suite.
877 Some consistency checks on symbols are performed after all the
878 symbols were read, by an iteration over the symbol table. This
879 traversal is nondeterministic, which can be a problem for test
880 cases.
881 Avoid this.
882 Addresses another form of nondeterminism reported by Joel E. Denny.
883 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
884
885 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
886 test in two.
887 Use different file names for the three tests to make the
888 maintenance easier.
889
ed15d907
AD
8902009-06-10 Akim Demaille <demaille@gostai.com>
891
95d176ff
AD
892 deterministic user-token-number redeclaration errors.
893 Address nondeterminism reported by Joel E. Denny.
894 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
895
896 * src/uniqstr.h: Comment changes.
897 * src/location.h (boundary_cmp, location_cmp): New.
898 * src/symtab.c (user_token_number_redeclaration): New.
899 (symbol_translation): Use it.
900 * tests/input.at (Numbered tokens): Adjust the expected output.
901
9022009-05-25 Akim Demaille <demaille@gostai.com>
903
ed15d907 904 gnulib: update.
aa50ba7b
EB
905 * gnulib: Update to latest.
906 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
907 * m4/.gitignore: Regen.
908 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
909 Call xalloc_die on hash_insert failures.
910 Requested by the new __warn_unused_result__ attribute of
911 hash_insert.
ed15d907 912
e3a33f7c
JD
9132009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
914
915 Convert multiple variable definition warnings to complaints.
916 * NEWS (2.5): Add a new entry for that change.
917 * doc/bison.texinfo (Decl Summary): Update %define entry.
918 (Bison Options): Update -D/--define/-F/--force-define entry.
919 * src/muscle_tab.c (muscle_percent_define_insert): Implement.
920 * src/muscle_tab.h (muscle_percent_define_insert): Update
921 comments.
922 * tests/input.at (`%define errors'): Update.
923 (`%define, --define, --force-define'): Update.
924
34d41938
JD
9252009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
926
927 -F/--force-define and relative %define/-D/--define priorities.
928 * NEWS (2.5): Add documentation to -D/--define entry.
929 * build-aux/cross-options.pl: Hard-code association of
930 --force-define with %define.
931 * doc/bison.texinfo (Decl Summary): In %define entry,
932 cross-reference command-line options.
933 (Bison Options): Add documentation to -D/--define entry.
934 (Option Cross Key): Widen column for --force-define row.
935 * src/getargs.c (usage): Document -F/--force-define. Realign
936 options in output.
937 (short_options, long_options, getargs): Parse -F/--force-define,
938 and update muscle_percent_define_insert invocation.
939 * src/muscle_tab.h (muscle_percent_define_how): New enum type.
940 (muscle_percent_define_insert): Add argument with that type.
941 * src/muscle_tab.c (muscle_percent_define_insert): Implement
942 -F/--force-define behavior and priorities.
943 * src/parse-gram.y (prologue_declaration): Update
944 muscle_percent_define_insert invocations.
945 * tests/input.at (`%define, --define'): Rename to...
946 (`%define, --define, --force-define'): ... this and extend.
947
246c4efa
JD
9482009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
949
950 Update some comments to make sense for -D.
951 * data/bison.m4 (b4_check_user_names): In header comments, say
952 "user occurrence" instead of "grammar occurrence".
953 * src/muscle_tab.h (muscle_percent_define_insert): Likewise.
954 (muscle_percent_code_grow): Likewise just for consistency.
955
531683e7
JD
9562009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
957
958 * data/c++.m4: Update copyright year.
959
e7bfa8b7
JD
9602009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
961
962 * data/c++.m4 (b4_namespace_close): Simplify slightly.
963
8c221795
JD
9642009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
965
966 Handle a trailing `:' in a user-supplied C++ namespace better.
967 * data/c++.m4 (b4_namespace_close): Don't let it be printed
968 among the closing braces here. This fix might make the
969 generated code easier to debug, but otherwise it should be
970 insignificant because a trailing `:' is a C++ error already.
971
c8bf65f0
AD
9722009-05-19 Akim Demaille <demaille@gostai.com>
973
974 remove useless variable.
975 * src/getargs.c (skeleton_arg): Remove now useless variable.
976 Should help the compiler see that this printf-like call is sane.
977
7ac45a46
AD
9782009-05-11 Akim Demaille <demaille@gostai.com>
979
980 doc: use C++ headers.
981 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
982 headers.
983
601bdfab
AD
9842009-05-05 Akim Demaille <demaille@gostai.com>
985
986 fix hexadecimal token number support.
987 * src/scan-gram.l: Catch incorrect ids after hexadecimal numbers.
988
d19123e6
AD
9892009-05-05 Akim Demaille <demaille@gostai.com>
990
991 tests: check token numbers.
992 * tests/input.at (Numbered tokens): New.
993
ecdfea9a
AD
9942009-05-04 Akim Demaille <demaille@gostai.com>
995
996 bison: catch bad symbol names.
997 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
998 * tests/input.at: Adjust.
999
43e6aea5
AD
10002009-05-04 Akim Demaille <demaille@gostai.com>
1001
1002 space changes.
1003 * src/scan-gram.l: Untabify to be robust to zealous editors.
1004
c046698e
AD
10052009-05-04 Akim Demaille <demaille@gostai.com>
1006
1007 identifiers: dashes are letters.
1008 Dashes can now start identifiers (symbols and directives).
b10dd689 1009
c046698e
AD
1010 * src/scan-gram.l ({letter}): Add dash.
1011 ({id}): Remove it.
1012 * tests/input.at (Symbols): Adjust.
1013 Remove stray comment.
1014 * tests/regression.at (Invalid inputs): Adjust error message.
1015 * doc/bison.texinfo (Symbols): Update.
1016
966aba65
JD
10172009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
1018
1019 Declare %code to be a permanent feature.
1020 * NEWS (2.4.2): Here.
1021 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
1022 experimental.
1023 (Decl Summary): Likewise.
1024
812775a0
JD
10252009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1026
1027 Convert underscores to dashes in some %define variable names.
1028 For now, just api.push-pull and lr.keep-unreachable-states.
1029 Maintain old names for backward compatibility.
1030 * NEWS (2.5): Document.
1031 * data/c.m4 (b4_identification): Update comment.
1032 * data/yacc.c: Update access.
1033 * doc/bison.texinfo: Update.
1034 * etc/bench.pl.in (bench_grammar): Update use.
1035 * src/files.c (tr): Move to...
1036 * src/getargs.c, src/getargs.h (tr): ... here because I can't
1037 think of a better place to expose it. My logic is that, for all
1038 uses of tr so far, command-line arguments can be involved, and
1039 getargs.h is already included.
1040 * src/main.c (main): Update access.
1041 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
1042 variable names to new variable names before assigning value.
1043 * src/reader.c (reader): Update setting default.
1044 * tests/calc.at: Update uses.
1045 * tests/conflicts.at (Unreachable States After Conflict
1046 Resolution): Update use.
1047 * tests/input.at (%define enum variables): Update use.
1048 (%define backward compatibility): New test group.
1049 * tests/push.at: Update uses.
1050 * tests/reduce.at: Update uses.
1051 * tests/torture.at: Update uses.
1052
1c4aa81d
JD
10532009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
1054
1055 Set all front-end %define defaults in one place.
1056 * src/main.c (main): Move lr.keep_unreachable_states default...
1057 * src/reader.c (reader): ... to here.
1058
1d0f55cc
JD
10592009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1060
1061 Rename lr.default_reductions to lr.default-reductions.
1062 * NEWS (2.5): Here.
1063 * doc/bison.texinfo: Here.
1064 * src/lalr.c (initialize_LA): Here.
1065 * src/print.c (print_reductions): Here.
1066 * src/reader.c (reader): Here.
1067 * src/tables.c (action_row): Here.
1068 * tests/input.at (%define enum variables): Here.
1069 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
1070
0b593457
JD
10712009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
1072
1073 Pacify ./configure --enable-gcc-warnings.
1074 * tests/input.at (Symbols): Prototype yyerror and yylex.
1075
0939aa2d
AD
10762009-04-21 Akim Demaille <demaille@gostai.com>
1077
1078 tests: check the use of dashes and periods in symbols.
1079 * tests/input.at (Symbol): New test group.
1080
0b593457 10812009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
ae618dcc
JD
1082
1083 Document how `%define "var" "value"' is not M4-friendly.
1084 * src/parse-gram.y (variable): In comments here.
1085
0b593457 10862009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
6789b8bd
JD
1087
1088 Add copyright updates missed during previous cherry pick.
1089 * src/output.c: Here.
1090 * src/parse-gram.y: Here.
1091 * src/scan-gram.l: Here.
1092
663ce7bb
AD
10932009-04-20 Akim Demaille <demaille@gostai.com>
1094
1095 variables: accept dashes.
1096 * src/scan-gram.l ({id}): Also accept dashes after the initial
1097 letter.
1098 ({directive}): Use {id}.
1099 * src/parse-gram.y: Comment and formatting changes.
1100 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
1101 symbols.
1102 * src/complain.h, src/complain.c (yacc_at): New.
1103 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
1104 symbol names.
1105 * src/output.c (token_definitions_output): Do not #define token
1106 names with dashes.
1107
379261b3
JD
11082009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1109
1110 Clean up recent patches a little.
1111 Reported by Akim Demaille.
1112 * doc/bison.texinfo (Understanding): Fix typos.
1113 * src/print.c (print_reductions): Don't use negated variable.
1114
25029e16
JD
11152009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
1116
1117 List accepted values for a %define enum variable with an invalid value.
1118 Suggested by Akim Demaille at
1119 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
1120 * data/bison.m4 (_b4_percent_define_check_values): Implement.
1121 * src/muscle_tab.c (muscle_percent_define_check_values): Implement.
1122 * tests/input.at (%define lr.default_reductions invalid values): Merge
1123 into...
1124 (%define enum variables): ... here, and update output.
1125
620b5727
JD
11262009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
1127
1128 Rename "default rule" to "default reduction".
1129 This includes changing variable names in code, changing
1130 comments, and renaming %define lr.default_rules to %define
1131 lr.default_reductions.
1132 * NEWS (2.5): Update IELR documentation.
1133 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c:
1134 Adjust YYDEFACT and yydefact_ documentation.
1135 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
1136 and lr.type documentation. Make some other wording
1137 improvements.
1138 (Glossary): Adjust cross-references and Default Reduction
1139 definition.
1140 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
1141 Remove a confusing comment pointed out by Akim Demaille.
1142 (initialize_LA): Adjust code.
1143 * src/print-xml.c (print_reductions): Adjust code.
1144 * src/print.c (print_reductions): Adjust code.
1145 * src/reader.c (reader): Adjust code.
1146 * src/tables.c (action_row): Adjust code.
1147 (token_actions): Adjust code.
1148 * src/tables.h: Adjust YYDEFACT documentation.
1149 * tests/input.at (%define lr.default_rules invalid values):
1150 Rename test group to...
1151 (%define lr.default_reductions invalid values): ... this, and
1152 update grammar file and expected output.
1153 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
1154 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
1155
34a6c2d1
JD
11562009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1157
1158 Document %define lr.type and lr.default_rules.
1159 * NEWS (2.5): Add an entry.
1160 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
1161 besides just LALR(1) and GLR(1).
1162 * doc/bison.texinfo (Introduction): Likewise.
1163 (Language and Grammar): Bison is no longer limited to LALR(1)
1164 restrictions.
1165 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
1166 when trying to distinguish from GLR. Talk about LR(1) grammars
1167 rather than LALR(1) grammars.
1168 (Decl Summary): In %define api.push_pull entry, say it applies
1169 to deterministic parsers in C rather than LALR(1) parsers in C.
1170 Add lr.default_rules entry.
1171 Add lr.type entry.
1172 (Mystery Conflicts): Bison is no longer limited to LALR(1)
1173 restrictions.
1174 (Generalized LR Parsing): Same changes as for the previous GLR
1175 section.
1176 (Memory Management): Say deterministic rather than LALR(1).
1177 (Understanding): Correct some bison output.
1178 Index discussion of "accepting state".
1179 Say deterministic rather than LALR(1).
1180 (Bison Options): In --yacc entry, say deterministic rather than
1181 LALR(1).
1182 In --report, --graph, and --xml entries, just don't mention
1183 LALR(1).
1184 (C++ Parsers): Say deterministic rather than LALR(1).
1185 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
1186 (Glossary): Add Accepting State, Consistent State, Default Rule,
1187 and IELR(1) definitions.
1188 In Generalized LR (GLR) definition, make same changes as in
1189 previous GLR sections.
1190 In LALR(1) definition, say Bison uses LALR(1) by default rather
1191 than implying Bison is limited to LALR(1).
1192 (LocalWords): Add IELR.
1193
f805dfcb
JD
11942009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1195
1196 Finish implementing %define lr.type.
1197 Its value can be "LALR", "IELR", or "canonical LR".
1198 * lib/timevar.def (TV_IELR_PHASE1): New var.
1199 (TV_IELR_PHASE2): New var.
1200 (TV_IELR_PHASE3): New var.
1201 (TV_IELR_PHASE4): New var.
1202 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
1203 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
1204 Sbitset.h, ielr.h, and ielr.c.
1205 * src/getargs.h, src/getargs.c (enum trace, trace_args,
1206 trace_types): Add trace_ielr.
1207 * src/lalr.h, src/lalr.c (ngotos): Export it.
1208 (F): Rename to...
1209 (goto_follows): ... this, update all uses, and export it.
1210 (set_goto_map): Export it.
1211 (map_goto): Export it.
1212 (compute_lookahead_tokens): Don't free goto_follows yet. Now
1213 handled in ielr.
1214 (initialize_LA): Export it. Move lookback allocation to...
1215 (lalr): ... here because, for canonical LR, initialize_LA must
1216 be invoked but lookback and much of the rest of LALR isn't
1217 needed.
1218 * main.c (main): Instead of lalr, invoke ielr, which invokes
1219 lalr.
1220 * src/reader.c (reader): Default lr.type to "LALR".
1221 Default lr.default_rules to "accepting" if lr.type is "canonical
1222 LR". Leave the default as "all" otherwise.
1223 Check for a valid lr.type value.
1224 * src/state.h, src/state.c (struct state_list): Add state_list
1225 member.
1226 (state_new): Initialize state_list member to NULL.
1227 (state_new_isocore): New function, exported.
1228 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
1229 exercises all values of lr.type.
1230 (GNU AWK Grammar): Rename test group to...
1231 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
1232 AT_TEST_EXISTING_GRAMMAR.
1233 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
1234 (GNU pic Grammar): Rename test group to...
1235 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
1236 AT_TEST_EXISTING_GRAMMAR.
1237 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
1238 all values of lr.type.
1239 (Single State Split): New test groups using AT_TEST_LR_TYPE.
1240 (Lane Split): Likewise.
1241 (Complex Lane Split): Likewise.
1242 (Split During Added Lookahead Propagation): Likewise.
1243
166366b2
JD
12442009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1245
1246 Add new files for IELR and canonical LR implementation.
1247 * src/AnnotationList.c: New.
1248 * src/AnnotationList.h: New.
1249 * src/InadequacyList.c: New.
1250 * src/InadequacyList.h: New.
1251 * src/Sbitset.c: New.
1252 * src/Sbitset.h: New.
1253 * src/ielr.c: New.
1254 * src/ielr.h: New.
1255
03c07b03
JD
12562009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1257
1258 Implement %define lr.default_rules.
1259 Its value describes the states that are permitted to contain
1260 default rules: "all", "consistent", or "accepting".
1261 * src/reader.c (reader): Default lr.default_rules to "all".
1262 Check for a valid lr.default_rules value.
1263 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
1264 is "accepting", then only mark the accepting state as
1265 consistent.
1266 (initialize_LA): Tell state_lookahead_tokens_count whether
1267 lr.default_rules is "accepting".
1268 * src/tables.c (action_row): If lr.default_rules is not "all",
1269 then disable default rules in inconsistent states.
1270 * src/print.c (print_reductions): Use this opportunity to
1271 perform some assertions about whether lr.default_rules was
1272 obeyed correctly.
1273 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
1274 helps with checking the parser tables for a grammar.
1275 * tests/input.at (%define lr.default_rules invalid values): New
1276 test group.
1277 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
1278 AT_TEST_TABLES_AND_PARSE.
1279 (`no %define lr.default_rules'): New test group generated by
1280 AT_TEST_LR_DEFAULT_RULES.
1281 (`%define lr.default_rules "all"'): Likewise.
1282 (`%define lr.default_rules "consistent"'): Likewise.
1283 (`%define lr.default_rules "accepting"'): Likewise.
1284
44c124a3
AD
12852009-04-20 Akim Demaille <demaille@gostai.com>
1286
1287 Consistently refer to Yacc, not YACC.
1288 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
1289
42660736
JD
12902009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
1291
1292 Pacify make maintainer-check-posix.
1293 * tests/input.at (%define, --define): Move bison command-line
1294 options before grammar file name.
1295
a2d05674
JD
12962009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1297
1298 Document semicolon warnings.
1299 * NEWS (2.5): Here.
1300
c4fae1ef
AD
13012008-12-08 Akim Demaille <demaille@gostai.com>
1302
1303 Fix portability issue in the test suite.
1304 * tests/local.at (AT_MATCHES_CHECK): New.
1305 Based on Perl instead of Sed. Sed has too many portability
1306 pitfalls, not ever Sed is GNU Sed.
1307 * tests/actions.at (Fix user actions without a trailing semicolon):
1308 Use it.
1309
42f4393a
DJ
13102008-12-07 Di-an Jan <dianj@freeshell.org>
1311
1312 Implement the FIXME that ends an user action with a semicolon
1313 if it seems necessary.
1314 * src/scan-code.l (flex rules section): Flag cpp directive from
1315 any `#' to the first unescaped end-of-line. Semicolon is not
1316 needed after `;', `{', '}', or cpp directives and is needed after
1317 any other token (whitespaces and comments have no effect).
1318 * tests/actions.at (Fix user actions without a trailing semicolon):
1319 New test.
1320 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
1321 to make user actions complete statements.
1322 Adjust column numbers in error messages.
1323 * tests/regression.at (Fix user actions without a trailing semicolon):
1324 Remove. Covered by new test.
1325
bd5df716
AD
13262009-04-14 Akim Demaille <demaille@gostai.com>
1327
1328 doc: minor fixes.
1329 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
1330 (Table of Symbols): Remove duplicate entry for %debug.
1331
7ba0d59d
EB
13322009-04-10 Eric Blake <ebb9@byu.net>
1333
1334 submodules: update to latest
1335 * submodules/autoconf: Use latest upstream Autoconf.
1336
b4d71a96
EB
13372009-04-06 Eric Blake <ebb9@byu.net>
1338
1339 Work around autoconf 2.63b bug in testsuite.
1340 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
1341 autoconf bug related to # in test.
1342
4ecd3681
JD
13432009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1344
1345 * NEWS (2.5): Describe new -D/--define feature.
1346
c65e5292
AD
13472008-11-10 Akim Demaille <demaille@gostai.com>
1348
1349 --trace=muscles
1350 * src/getargs.h, src/getargs.c (trace_muscle): New.
1351 (trace_types, trace_args): Support it.
1352 * src/output.c (output_skeleton): Use it.
1353
96002de2
AD
13542008-11-10 Akim Demaille <demaille@gostai.com>
1355
1356 muscles_output.
1357 * src/output.c (muscles_output): New, extracted from...
1358 (output_skeleton): here.
1359 Adjust.
1360
fadb13b5
AD
13612008-11-21 Akim Demaille <demaille@gostai.com>
1362
1363 Display the changes in cross-options.texi.
1364 * build-aux/cross-options.pl ($sep): New, to separate items.
1365 * doc/Makefile.am ($(srcdir)/cross-options.texi): Use diff to display
1366 the changes.
1367
72183df4
DJ
13682008-11-20 Di-an Jan <dianj@freeshell.org>
1369
1370 Improves options in the manual.
1371 * doc/bison.texinfo (-g, -x): Add space before argument.
1372 (Option Cross Key): Implement FIXME: listing directives also.
1373 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
1374 (Short Option): Special case -d. Put arguments inside @option.
fadb13b5 1375 (Bison Directive): Add column, automatically extracted from
72183df4
DJ
1376 src/scan-gram.l (actual name passed as the first argument)
1377 with special case for %define.
1378 * doc/Makefile.am (doc/cross-options.texi): Pass src/scan-gram.l
1379 to build-aux/cross-options.pl.
1380 * src/getargs.c (usage): Document limitations of cross-options.pl.
1381 * src/scan-gram.l: Likewise.
1382
e80b068c
AD
13832009-02-25 Akim Demaille <demaille@gostai.com>
1384
1385 Copyright years.
1386 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
1387
e3ee30b8
AD
13882008-12-08 Akim Demaille <demaille@gostai.com>
1389
1390 Install autoconf as a submodule to get m4sugar.
1391 * .gitmodules: Add submodules/autoconf.
1392 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
1393 submodules/autoconf.
1394
c4eb1e84
JD
13952008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1396
1397 Simplify last patch slightly.
1398 * src/getargs.c (getargs): Here.
1399
10fa0146
JD
14002008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1401
1402 Fix last warning from --enable-gcc-warnings.
1403 * src/getargs.c (getargs): Don't assign const address to non-const
1404 pointer.
1405
6f5be1ab
DJ
14062008-11-17 Di-an Jan <dianj@freeshell.org>
1407
1408 Handle --enable-gcc-warnings.
1409 * src/getargs.c (command_line_location): Set parameters to void.
1410
11c4e57d
AD
14112008-11-11 Akim Demaille <demaille@gostai.com>
1412
1413 AT_FULL_COMPILE.
1414 * tests/actions.at, tests/regression.at: Use it.
1415
e186a284
AD
14162008-11-07 Akim Demaille <demaille@gostai.com>
1417
1418 Pass command line location to skeleton_arg and language_argmatch.
1419 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
1420 The location argument is now mandatory.
1421 Adjust all dependencies.
1422 (getargs): Use command_line_location.
1423
e14c6831
AD
14242008-11-07 Akim Demaille <demaille@gostai.com>
1425
1426 -D, --define.
1427 * src/getargs.c (usage): Document -D.
1428 Fix help string for --locations.
1429 (command_line_location): New.
1430 (short_options, long_options, getargs): Support -D, --define.
1431 (getargs): Move -d support at the right place.
1432 * doc/bison.texinfo (Bison Options): Update.
1433 * tests/input.at (%define, --define): New.
1434
75c21b61
AD
14352008-11-07 Akim Demaille <demaille@gostai.com>
1436
1437 Initialize the muscle table before parsing the command line.
1438 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
1439 (getargs): Define file_name.
1440 * src/main.c (main): Initialize muscle_tab before calling
1441 getargs.
1442 * src/muscle_tab.c (muscle_init): No longer define file_name, as
1443 its value is not available yet.
1444
33d2a860
AD
14452008-11-09 Akim Demaille <demaille@gostai.com>
1446
1447 Require the generation of parse-gram.output.
1448 * src/Makefile.am (YACC): Pass --report=all.
1449
006faedf
JD
14502009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1451
1452 * NEWS (2.5): New stub.
1453
ecd1b61c
JD
14542009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
1455
1456 Fix options documentation.
1457 * build-aux/cross-options.pl: As in --help output, write optional
1458 arguments as [=ARG] not =[ARG].
1459 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
1460
f67c4037
AD
14612008-11-07 Akim Demaille <demaille@gostai.com>
1462
1463 Fix --help.
1464 * src/getargs.c (usage): Fix help string for -W.
1465
0213d651
AD
14662008-11-07 Akim Demaille <demaille@gostai.com>
1467
1468 Handle more general types of option arguments.
1469 * build-aux/cross-options.pl: The argument ends at the first
1470 space, not the first non-symbol character.
1471 Use @var for each word appearing the argument description.
1472
c19178bf
JD
14732009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1474
1475 Remove spurious initial empty lines.
1476 * data/location.cc: End the @output lines with an @.
1477
0d2b2ab0
AD
14782008-11-04 Akim Demaille <demaille@gostai.com>
1479
1480 Remove spurious initial empty lines.
1481 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1482 * data/yacc.c: End the @output lines with an @.
1483
8ba62e3e
JD
14842009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
1485
1486 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
1487 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
1488 requirements for a correct m4 are stricter.
1489 * m4/m4.m4: Replace with Autoconf 2.63's m4/m4.m4.
1490 * configure.ac: Update to use AC_PROG_GNU_M4.
1491 Reported by Eric Blake.
1492
5bc993d9
JD
14932009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1494
1495 Help with updating web manual.
1496 * HACKING: Incorporate instructions from gnulib/doc/README.
1497 * bootstrap.conf (gnulib_modules): Add gendocs.
1498
580c075d
JD
14992009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1500
1501 Fix strange %define locations for default values.
1502 Reported by Akim Demaille at
1503 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
1504 and discussed again starting at
1505 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
1506 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
1507 because location information is bogus.
1508 Use angle brackets to delimit fake file name because square brackets
1509 look like underexpanded m4. Choose a better fake file name.
1510 Use negative line numbers.
1511 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
1512 * src/location.c (location_print): If line for a boundary is negative,
1513 only print that boundary's file name.
1514 * src/location.h: Document that.
1515 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1516 defaults): Update output.
1517
5d3a1ecb
AD
15182008-11-07 Akim Demaille <demaille@gostai.com>
1519
1520 Locations without columns for command line arguments.
1521 * src/location.c (location_print): Don't display negative columns.
1522 * src/location.h: Document this.
1523
015e86a7
JD
15242009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
1525
1526 Add reminder about uploading public key to keys.gnupg.net.
1527 * HACKING (Release Procedure): Here.
1528
c1455bab
AD
15292009-03-31 Akim Demaille <demaille@gostai.com>
1530
1531 bootstrap: --help to stdout.
1532 * bootstrap (usage): Don't send --help to stderr.
1533 Use a here doc instead of a long string.
1534
2075a82a
AD
15352009-03-31 Akim Demaille <demaille@gostai.com>
1536
1537 bootstrap: README-hacking no longer exists
1538 * bootstrap (checkout_only_file): Set to HACKING.
1539
26fccd4d
AD
15402009-03-26 Akim Demaille <demaille@gostai.com>
1541
1542 doc: merge HACKING and README-hacking.
1543 Two files is confusing.
1544 Reported by Alexandre Duret-Lutz.
5bc993d9 1545
26fccd4d
AD
1546 * README-hacking: Merge into...
1547 * HACKING (Working from the repository): here.
1548
6469c4d7
AD
15492009-03-26 Akim Demaille <demaille@gostai.com>
1550
1551 doc: update README-hacking.
1552 * README-hacking: We now use git and git submodules.
1553 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
1554
b328890a
AD
15552009-03-26 Akim Demaille <demaille@gostai.com>
1556
1557 lalr1.cc: avoid GCC 4.3 warnings.
1558 GCC 4.3 now warns about "a || b && c" and asks for explicit
1559 parentheses.
1560 Reported by Alexandre Duret-Lutz.
1561 * data/location.cc: Update copyright years.
1562 (Position::operator==): Use parens to make precedence explicit.
1563 Compare lines and columns first, as they are more likely to be
1564 different, and they are faster to compare.
1565
f3079439
AD
15662009-03-26 Akim Demaille <demaille@gostai.com>
1567
1568 gnulib: update.
1569 * gnulib: Update to latest.
1570 * lib/Makefile.am (AM_CPPFLAGS): It is now defined by gnulib, so
1571 use +=.
1572
8defe11b
AD
15732009-01-08 Akim Demaille <demaille@gostai.com>
1574
1575 Fix grep portability issues.
1576 Grep on Solaris does not support -q.
1577 Reported by Summum Bonum.
5bc993d9 1578
8defe11b
AD
1579 * NEWS: Add a stub for 2.4.2.
1580 * THANKS: Add Summum Bonum.
1581 * tests/atlocal.in (EGREP): New.
1582 (CC, CXX, XSLTPROC): Make it possible to override them via
1583 envvars.
1584 * tests/java.at: Use $EGREP instead of egrep.
1585 Use AT_CHECK's ignore instead of grep's -q.
1586
41930e7a
JD
15872008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1588
1589 Version 2.4.1.
1590 * NEWS: Set version and date.
1591 * lib/Makefile.am: Update copyright year.
1592 * tests/atlocal.in: Update copyright year.
1593
d07932ef
JD
15942008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1595
1596 Semicolon feature removal is not about future language support.
1597 * NEWS: The semicolon feature is no longer active for newer languages,
1598 so don't claim that it causes trouble for them.
1599
0364b334
JD
16002008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1601
1602 * gnulib: Update submodule to HEAD.
1603
876fd835
AD
16042008-12-09 Akim Demaille <demaille@gostai.com>
1605
1606 Update data/README.
1607 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
1608
bee1df15
EB
16092008-12-05 Eric Blake <ebb9@byu.net>
1610
1611 Build testsuite with newer autoconf.
1612 * tests/output.at (m4_expand): Don't override in newer autoconf,
1613 where the underlying implementation changed.
1614 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
1615 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
1616 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
1617 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
1618 since some of them contain unbalanced ')'.
1619
7e6d1e22
JD
16202008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
1621
1622 * NEWS: Clarify a little.
1623
a957d06c
JD
16242008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
1625
1626 * NEWS: Update for recent changes.
1627
462503f8
JD
16282008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1629
1630 Fix unexpanded macros in GLR defines file.
1631 Reported by Csaba Raduly at
1632 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
1633 * THANKS (Csaba Raduly): Add.
1634 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
1635 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
1636 lexer in a separate module that includes the defines file.
1637 (AT_CHECK_CALC): Use AT_FULL_COMPILE and request compilation of lexer
1638 source.
1639 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
1640 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
1641 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
1642 (AT_DATA_SOURCE_PROLOGUE): New.
1643 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
1644 (AT_DATA_SOURCE): New.
1645 (AT_FULL_COMPILE): New, copied from master branch and extended to
1646 support an additional source file.
1647
bf151b75
JD
16482008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1649
1650 Don't let maintainer-*-check targets force a version update.
1651 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
1652 handled.
1653
f56274a8
DJ
16542008-11-17 Di-an Jan <dianj@freeshell.org>
1655
1656 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
1657 Align menus. Adjust word wrapping. Use node names for menu names.
1658 (Examples): Don't abbreviate node names.
1659 (LocalWords): Remove abbreviations.
1660 (Copying): Make description a sentence.
bf151b75 1661 (Java Action Features): Remove period to match the rest of menu.
f56274a8 1662
b5775a81
PB
16632008-11-11 Paolo Bonzini <bonzini@gnu.org>
1664
1665 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
1666 * configure.ac: Adjust usage.
1667 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1668 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1669 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
1670
7ed73f82
JD
16712008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1672
1673 Don't add a semicolon to actions for %skeleton or %language.
1674 It breaks Java test cases as reported by Akim Demaille.
1675 * src/scan-code.l: Implement.
1676
4b1ebc49
JD
16772008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1678
1679 Clean up %skeleton and %language priority implementation.
1680 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
1681 remove static qualifier because others will soon need to see it.
1682 (language_prio): Likewise.
1683 (getargs): Use command_line_prio rather than 0.
1684 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
1685 enum fields.
1686 (skeleton_prio): Extern it.
1687 (language_prio): Extern it.
1688 * src/parse-gram.y: Use grammar_prio rather than 1.
1689
738cde3e
AD
16902008-11-04 Akim Demaille <demaille@gostai.com>
1691
1692 * NEWS: Mention the trailing semicolon in action.
1693
d6fb461d
AD
16942008-11-04 Akim Demaille <demaille@gostai.com>
1695
1696 Reformat NEWS.
1697 * NEWS: Use more outline-mode markup.
1698 Suggested by Jim Meyering.
1699
14da0cdd
JD
17002008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
1701
1702 Fix user actions without a trailing semicolon.
1703 Reported by Sergei Steshenko at
1704 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
1705 * THANKS (Sergei Steshenko): Add.
1706 * src/scan-code.l (SC_RULE_ACTION): Fix it.
1707 * tests/regression.at (Fix user actions without a trailing semicolon):
1708 New test case.
1709
c9ba9e59
JD
17102008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1711
1712 Initiate further development.
1713 * NEWS: Create an empty section for new entries.
1714 * gnulib: Update submodule to HEAD.
1715
bfb40910
JD
17162008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1717
1718 * NEWS: Version 2.4.
1719
241fda7a
JD
17202008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1721
1722 Prepare for next release.
1723 * NEWS: Briefly mention changes since 2.3b.
1724 * README: Say GNU m4 1.4.6, which we've been requiring in release
1725 announcements already, not 1.4.3, which breaks the build.
1726
ed4d67dc
JD
17272008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1728
1729 Say %language is experimental.
1730 We're thinking of extending it's effect on output file naming. See the
1731 thread at
1732 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1733 * NEWS: Say it's experimental.
1734 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1735 recommend it over %skeleton for now.
1736 (Bison Options): Likewise.
1737 (C++ Bison Interface): Use %skeleton not %language.
1738 (Calc++ Parser): Use %skeleton not %language.
1739 * src/getargs.c (usage): Say it's experimental.
1740
e254a580
DJ
17412008-11-01 Di-an Jan <dianj@freeshell.org>
1742 Paolo Bonzini <bonzini@gnu.org>
1743
1744 Support all Java parser class modifiers.
1745 * data/java.m4 (b4_percent_define_get3): New.
1746 (b4_final_if, b4_strictfp_if): New.
1747 * data/lalr1.java (final, strictfp, extends, implements): Support.
1748 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1749 documentation.
1750 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1751 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1752 (AT_CHECK_JAVA_GREP): New.
1753 (Java parser class modifiers): New test.
1754 (Java parser class extends and implements): New test.
1755
1756 Model exception propagation better with throws and lex_throws.
1757 * data/java.m4 (b4_list2): New.
1758 (throws): Change default.
1759 * data/lalr1.java (yyaction): Add throws.
1760 (parse): Add lex_throws in addition to throws.
1761 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1762 * tests/java.at (Java throws specifications): New test.
1763
1764 Improve documentation for Java parsers.
1765 * doc/bison.texinfo (Java Parsers): Add subsections.
1766 Don't quote first argument of %define.
1767 (Java Bison Interface): Document output files. Move documentation
1768 of parser class and merge into Java Parser Interface. Document
1769 features that error out. Document directives with no effect.
1770 Move note about Javadoc higher.
1771 (Java Semantic Values): Explicitly mention stype.
1772 Document that generic types cannot be used.
1773 (Java Location Values): Use @deftypeivar. Document constructors.
1774 Correct return value for toString.
1775 (Java Parser Interface): List undocumented constants/fields.
1776 Move documentation of fields added by %parse-param closer to list
1777 of members. Document that token names are added as fields.
1778 Document constructors accurately. Remove error method.
1779 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1780 Interface. Describe %code lexer and yylex accutately.
1781 Remove documentation that does not match the code.
1782 (Java Action Features): New.
1783 (Java Differences): Add reference. Add item on semantic values.
1784 Add note about @{ ... @}. Clarify %% epilogue placement.
1785 (Java Declarations Summary): New.
1786
1787 Fix Java skeleton.
1788 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1789 (b4_remove_comma): Quote test argument.
1790 (b4_identification): Remove "bison" field.
1791 * tests/java.at (Java parser class and package names): New test.
1792 (Java %parse-param and %lex-param): New test.
1793 (Java stype, position_class and location_class): New test.
1794
f259e4e6
PB
17952008-10-31 Di-an Jan <dianj@freeshell.org>
1796
1797 * data/lalr1.jave: Update copyright years.
1798 (YYParser): Correct name of "generated from" file in Javadoc:
1799 use b4_file_name instead of @ofile@.
1800 (Location constructor): Correct Javadoc parameter name.
1801 (yylloc): Add missing opening m4 quote after b4_location_if.
1802 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1803 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1804 (YYParser constructor): Correct Javadoc parameter name.
1805
cae5057f
JD
18062008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1807
1808 Always put auxiliary code files in the same dir as other output files.
1809 * src/files.c (compute_file_name_parts): When the user specifies
1810 --output but not --file-prefix, extract the directory prefix from the
1811 file prefix not from the grammar file name. This affects the location
1812 of files like location.hh generated by the C++ skeleton. The includes
1813 in the other output files require this fix.
1814 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1815 for expected output files.
1816 (Output files): Add a test for the above.
1817
4af432ba
JD
18182008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1819
1820 * gnulib: Update submodule to HEAD.
1821
e26d4e43
JD
18222008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1823
1824 Update copyright year.
1825 * src/files.c: Here.
1826
c0ee9e21
DJ
18272008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1828
1829 Don't overwrite the input file.
1830 * src/files.c (output_file_name_check): Fatal error if using input file
1831 for output.
1832 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1833 argument.
1834 (Conflicting output files): Add test.
1835
482dc52f
AD
18362008-10-28 Akim Demaille <demaille@gostai.com>
1837
1838 Space changes.
1839 * data/lalr1.cc: Formatting changes.
1840
52cbbe84
AD
18412008-10-28 Akim Demaille <demaille@gostai.com>
1842
1843 Don't define debugging functions when !YYDEBUG.
1844 * data/lalr1.cc (debug_stream, set_debug_stream)
1845 (debug_level_type, debug_level, set_debug_level): Don't
1846 declare them when YYDEBUG is not defined.
1847 The implementation are already YYDEBUG-aware.
1848
0925d5bf
AD
18492008-10-28 Akim Demaille <demaille@gostai.com>
1850
1851 Prefer "continue" for empty loop bodies.
1852 * etc/bench.pl.in: Use "continue" instead of {}.
1853
cf98343c
AD
18542008-10-28 Akim Demaille <demaille@gostai.com>
1855
1856 Space and comments changes.
1857 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1858 * data/c.m4, data/lalr1.cc: Space changes.
1859
9f467b7d
AD
18602008-10-28 Akim Demaille <demaille@gostai.com>
1861
1862 Make gnulib a submodule.
1863 * gnulib: New.
1864 * .gitmodules (gnulib): New.
1865
0f0e1ace
JD
18662008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1867
1868 Fix yyerror_range for user-defined location type in C++. Reported by
1869 Georg Sauthoff at
1870 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1871 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1872 * THANKS (Georg Sauthoff): Add.
1873
548e2104
JD
18742008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1875
1876 Update several administrative files mainly to facilitate releasing.
1877 * HACKING (Administrivia): Make the git-merge-changelog notes more
1878 helpful.
1879 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1880 (Release Procedure): Update for git and add numerous details that were
1881 previously missing.
1882 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1883 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1884 that announcements don't claim we bootstrapped with whatever bison
1885 happened to be in PATH. Add flex as a bootstrap tool.
1886 * Makefile.maint: Remove, previously replaced by maint.mk.
1887 * Makefile.cfg: Remove, and migrate settings to...
1888 * cfg.mk: ... here for the sake of `make announcement'.
1889 * bootstrap.conf (gnulib_modules): Add announce-gen.
1890 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1891 Berry.
1892
ddf17a6e
PB
18932008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1894
1895 Small but important bugfixes for the Java skeleton.
1896 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1897 (yy_symbol_print): Call toString on yyvaluep.
1898
e1145ad8
AD
18992008-08-29 Akim Demaille <demaille@gostai.com>
1900
1901 Clarify UPDATED use.
bee1df15 1902 * doc/bison.texinfo: It refers to the last edition of this file,
e1145ad8 1903 not to the release date of Bison.
bee1df15 1904 Reported by Joel E. Denny.
e1145ad8 1905
0df72d78
AD
19062008-08-29 Akim Demaille <demaille@gostai.com>
1907
1908 * README: Update FAQ pointer.
1909 Reported by Joel E. Denny.
1910
9a90b6bb
EB
19112008-08-27 Eric Blake <ebb9@byu.net>
1912
1913 Resync m4sugar from autoconf.
1914 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
1915 (m4_init): Adjust to latest m4.git changes.
1916 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
1917 effects.
1918 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
1919 (_m4_list_cmp): Reduce side effects.
1920
65015668
AD
19212008-08-27 Akim Demaille <demaille@gostai.com>
1922
1923 Check yyerrok in calc.at.
bee1df15
EB
1924 * tests/calc.at (calc.y): Use yyerrok on "( error )".
1925 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
1926 expected.
65015668 1927
98e26a92
AD
19282008-08-27 Akim Demaille <demaille@gostai.com>
1929
1930 Support yyerrok in lalr1.cc.
1931 YYBACKUP is still to import back into lalr1.cc.
bee1df15 1932 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
98e26a92 1933
86c0e784
JD
19342008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1935
1936 For maintainer-check*, don't recompile for a $(VERSION) update.
1937 * cfg.mk: New file.
1938 (_is-dist-target): Override the one in GNUmakefile.
1939 * Makefile.am (EXTRA_DIST): Add cfg.mk.
1940
88511166
JD
19412008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1942
1943 Update for recent change to gnulib.
1944 * src/parse-gram.y: Don't include strverscmp.h. It comes from
1945 string.h now.
1946
6bbb2ed5
EB
19472008-08-15 Eric Blake <ebb9@byu.net>
1948
d67c52e8
EB
1949 Remaining m4sugar merge from autoconf.
1950 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
1951 * data/m4sugar/foreach.m4: New file, copied from autoconf.
1952 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
1953 * src/output.c (output_skeleton): Tell m4 how to find it.
1954
6bbb2ed5
EB
1955 Partial m4sugar merge from autoconf: m4_map.
1956 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
1957 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
1958 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
1959 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
1960 for empty list.
1961 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
1962 Likewise.
1963 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
1964 declares it.
1965
8dce3875
JD
19662008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
1967
1968 Keep .version and PACKAGE_VERSION in sync.
1969 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
1970 dependency, and add comments justifying this in more detail. Discussed
1971 starting at
1972 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
1973
882a1fbf
EB
19742008-08-06 Eric Blake <ebb9@byu.net>
1975
a3764451
EB
1976 Partial m4sugar merge from autoconf: m4_shiftn.
1977 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
1978 (m4_shift2, m4_shift3): New macros.
1979 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
1980 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
1981 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
1982 * data/java.m4 (b4_remove_comma): Likewise.
1983
882a1fbf
EB
1984 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
1985 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
1986 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
1987 (m4_init): Consolidate wrapped text into single m4_wrap.
1988 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
1989 in wrapped text.
1990
a30e920d
EB
19912008-08-05 Eric Blake <ebb9@byu.net>
1992
dfcc5959
EB
1993 Partial m4sugar merge from autoconf: builtins, version.m4.
1994 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
1995 (m4_prepend): Remove, as it is unused and inherently quadratic,
1996 whereas m4_append is linear in newer m4.
1997 (m4_mkstemp): New builtin.
1998 (m4_symbols): Make rename conditional.
1999 (m4_version_prereq): Ensure fatal error if used in bison, which
2000 intentionally lacks version.m4.
2001
a30e920d
EB
2002 Fix comments in m4sugar.
2003 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
2004
445b7470
JD
20052008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
2006
2007 Update for recent .gitignore fix in Gnulib.
2008 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
2009 anchored .gitignore entries.
2010
a1e50014
JD
20112008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
2012
2013 Set gnu or gnits strictness.
2014 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
2015 development and gnits strictness for releases. Based on Eric Blake's
2016 suggestion at
2017 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
2018
d43f77e7
PB
20192008-07-31 Paolo Bonzini <bonzini@gnu.org>
2020
2021 * NEWS: Clarify documentation of %language.
2022
fee2ed87
PB
20232008-07-31 Paolo Bonzini <bonzini@gnu.org>
2024
2025 Support usage of git-merge-changelog.
2026 * .gitattributes: New.
2027 * HACKING: Document usage of git-merge-changelog.
2028 * bootstrap: Install git-merge-changelog entries in .git/config
2029 if appropriate.
2030
78029cd5
JD
20312008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2032
2033 Remove remaining dependence on CVS Id keyword.
2034 * ChangeLog: For the sake of people still using CVS, don't use dollars
2035 when mentioning Id.
2036 * data/xslt/bison.xsl: Remove Id from header comments, where it was
2037 unusual anyway.
2038 * data/xslt/xml2dot.xsl: Likewise.
2039 * data/xslt/xml2text.xsl: Likewise.
2040 * data/xslt/xml2xhtml.xsl: Likewise.
2041 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
2042 * doc/Makefile.am (neutralize): Remove, no longer needed.
2043 (.x.1): Don't use neutralize.
2044 (edit): Don't substitute for ID.
2045 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
2046
c53d18b1
JD
20472008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2048
2049 Fix dependence on computed configure variables.
2050 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
2051 $(top_srcdir)/configure.ac so that changes to computed variables, such
2052 as PACKAGE_VERSION, are seen.
2053 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
2054
5523ac79
JD
20552008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
2056
2057 Update copyright dates for recent changes.
2058 * Makefile.am: Here.
2059 * src/Makefile.am: Here.
2060 * src/reduce.c: Here.
2061 * tests/reduce.at: Here.
2062
8fa36911
JD
20632008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
2064
2065 Use git-version-gen for version names between releases.
2066 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
2067 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
2068 * .prev-version: New.
2069 * .version.in: Remove.
78029cd5 2070 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
2071 revision.
2072 * GNUmakefile: Remove, now copied from Gnulib.
2073 * Makefile.am: Add code suggested by comments in
2074 build-aux/git-version-gen.
2075 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
2076 .prev-version, and .version.
2077 * NEWS (2.3b+): Rename to...
2078 (?.?): ... this because we're dropping the "+" version naming scheme,
2079 but, in general, we still can't be sure of our next release name.
2080 * bootstrap: Add a quick hack to remove from .gitignore the
2081 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
2082 entry. This should really be fixed in gnulib instead.
2083 * bootstrap.conf (gnulib_modules): Add gnumakefile.
2084 * configure.ac (AC_INIT): Set version name by invoking
2085 build-aux/git-version-gen.
2086 (AC_CONFIG_FILES): Remove .version, now generated by
2087 build-aux/git-version-gen.
2088 * maint.mk: New, copied from coreutils.
2089 * doc/.cvsignore (bison.1): Add.
2090 * doc/.gitignore (/bison.1): Add.
2091 * doc/bison.1: Remove, generated.
2092 * src/.cvsignore (revision.c): Remove.
2093 * src/.gitignore (/revision.c): Remove.
2094 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
2095 (BUILT_SOURCES): Remove revision.c.
2096 (revision.c): Remove.
2097 * src/getargs.c (version): Don't print revision after the VERSION.
2098 * src/revision.h: Remove.
2099
bcf07cb7
JD
21002008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2101
2102 Fix untranslatable composition of sentences. Reported by Goran
2103 Uddeborg at
2104 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
2105 * THANKS (Goran Uddeborg): Add.
2106 * src/reduce.c (reduce_print): Report the number of nonterminals and
2107 rules useless in the grammar in separate sentences.
2108 * tests/reduce.at (Useless Rules): Update output.
2109 (Reduced Automaton): Likewise.
2110 (Underivable Rules): Likewise.
2111 (Empty Language): Likewise.
2112
9aacab9a
JD
21132008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
2114
2115 Fix some .gitignore and .cvsignore problems.
2116 * bootstrap (insert_sorted_if_absent): Replace all uses with...
2117 (insert_vc_ignore): ... this new function, which prepends `/' to all
2118 .gitignore entries before passing them to insert_sorted_if_absent.
2119 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
2120 .cvsignore files are maintained even though Bison developers run
2121 bootstrap while using Git.
2122 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
2123 unneeded by Bison.
2124 (gnulib): Add.
2125 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
2126 unneeded. Reported by Eric Blake.
2127 * lib/.gitignore (/*~): Add.
2128 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
2129 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
2130 Blake.
2131 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
2132
a9fc7990
JD
21332008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
2134
2135 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
2136 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
2137 * bootstrap.conf (gnulib_modules): Add unsetenv.
2138 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
2139 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
2140 (/setenv.m4): Add.
2141 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
2142 the first argument because it may become position-dependent, and unset
2143 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
2144 Add comments explaining these issues in more detail.
2145
0f1d6f10
JD
21462008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
2147
2148 Add .gitignore everywhere based on .cvsignore.
2149 * .gitignore: New.
2150 * build-aux/.gitignore: New.
2151 * data/.gitignore: New.
2152 * doc/.gitignore: New.
2153 * etc/.gitignore: New.
2154 * examples/.gitignore: New.
2155 * examples/calc++/.gitignore: New.
2156 * lib/.gitignore: New.
2157 * m4/.gitignore: New.
2158 * po/.gitignore: New.
2159 * runtime-po/.gitignore: New.
2160 * src/.gitignore: New.
2161 * tests/.gitignore: New.
2162
7bd1665a
JD
21632008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2164
2165 * NEWS (2.3b+): New section, empty for now.
2166 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
2167
72c5b982
JD
21682008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2169
2170 * NEWS (2.3b): Update release date since there has been a delay in
2171 getting the announcements and tarballs out.
2172
bd02cd5d
JD
21732008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
2174
2175 * NEWS: Version 2.3b.
2176 * configure.ac (AC_INIT): Likewise.
2177 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
2178
9126263e
JD
21792008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
2180
2181 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
2182 been doing it for years.
2183 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
2184 (Release Procedure): Add FIXME about make alpha being unmaintained.
2185
fa6aa7b3
JD
21862008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
2187
2188 * data/yacc.c: Reformat m4 a little for readability.
2189 * src/lalr.c (build_relations): Correct comment.
2190
d30b312d
JMG
21912008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2192
2193 DJGPP specific issue.
2194 * djgpp/config.sed: Fixes required to run configure scripts generated
2195 by autoconf 2.62.
2196
138d4cd9
JD
21972008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2198
2199 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
2200 coordinator@translationproject.org.
2201
8f7e2e1f
JD
22022008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2203
2204 * THANKS: Add Eric Blake.
2205
f55efa38
JD
22062008-04-23 Eric Blake <ebb9@byu.net>
2207
2208 Revert prior patch, by working around autoconf regression.
2209 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
2210 ("Output file name: ("): Uncomment test.
2211 ("Output file name: )"): Likewise.
2212 Based on an idea from Noah Misch.
2213
096c9f9d
JD
22142008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2215
2216 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
2217 2.61. Reported by Juan Manuel Guerrero at
2218 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
2219 * tests/output.at ("Output file name: ("): Comment out test case for
2220 now.
2221 ("Output file name: )"): Likewise.
2222
0f664b89
JD
22232008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2224
2225 * GNUmakefile: Update git-version-gen invocation so make dist
2226 succeeds.
2227
1cfe6375
JD
22282008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2229
2230 Update to the current gnulib CVS repository, and fix trigraph handling
2231 in Bison.
2232 * bootstrap: Update gnulib CVS repository URL.
2233 (symlink_to_dir): Encapsulate the code that guarantees the destination
2234 directory exists into...
2235 (check_dst_dir): ... this new function, and...
2236 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
2237 fail when copying files into lib/uniwidth/.
2238 * src/output.c (prepare_symbols): When writing yytname muscles, where
2239 symbol names will be encoded in C-string literals, tell quotearg to
2240 escape trigraphs. This used to be the default in gnulib.
2241 * tests/regression.at (Token definitions): Because of the change in
2242 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
2243 escapes trigraphs in symbol names. Thus, yytname no longer has
2244 trigraphs unnecessarily doubly escaped. Update test case output.
2245 Extend test case to be sure Bison's own error messages will no longer
2246 have trigraphs in symbol names unnecessarily escaped once.
2247
74c52fc8
JD
22482008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2249
2250 Fix make dist infinite loop reported by Juan Manuel Guerrero at
2251 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
2252 * .cvsignore: Add .version.
2253 * .version.in: New.
2254 * bootstrap.conf (gnulib_modules): Add git-version-gen.
2255 * configure.ac (AC_CONFIG_FILES): Add .version.
2256 * build-aux/.cvsignore: Add git-version-gen.
2257
8e55b3aa
JD
22582008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
2259
2260 * NEWS (2.3a+): Mention that -g now takes an argument.
2261 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
2262 consistency. Update the -g and -x entries now that they take
2263 arguments. Use brackets to indicate optional arguments.
2264 * src/getargs.c (usage): Explain the relationship between arguments of
2265 long and short options more completely. Document --defines and -d
2266 separately since the former takes an argument but, for POSIX Yacc, the
2267 latter does not.
2268 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 2269 (getargs): Sort cases.
8e55b3aa 2270
59c5ac72
AD
22712008-02-28 Akim Demaille <demaille@gostai.com>
2272
2273 * doc/bison.texinfo: Fix a few typos.
2274
118d4978
AD
22752008-02-28 Akim Demaille <akim@epita.fr>
2276
2277 * doc/bison.texinfo (Bison Options): Document -W.
2278 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
2279
7020f1e9
AD
22802008-02-28 Akim Demaille <akim@epita.fr>
2281
2282 * src/getargs.c (short_options): Split and sort for readability.
2283 -g and -x take optional arguments, just like their long options.
2284 * build-aux/cross-options.pl: Use /x to make the regexp easier to
2285 understand.
2286 Fix the handling of $opt which resulted in all the argument to be
2287 considered as optional.
2288
59da312b
JD
22892008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
2290
2291 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
2292 say its interface is experimental.
2293 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
2294 Java.
2295 (Bison Options): In the -L and --language entry, mention Java.
2296 (Java Bison Interface): Say the interface is experimental.
2297 * src/getargs.c (usage): Mention -L and --language.
2298
2299 * NEWS (2.3a+): Say the push parsing interface is experimental.
2300 * doc/bison.texinfo (Push Decl): Likewise.
2301 (Decl Summary): Likewise in the "%define api.push_pull" entry.
2302 (Push Parser Function): Likewise.
2303 (Pull Parser Function): Likewise.
2304 (Parser Create Function): Likewise.
2305 (Parser Delete Function): Likewise.
2306 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
2307 yypull_parse, and yypush_parse entries.
2308
2309 * NEWS (2.3a+): Mention XML support, and say the schema is
2310 experimental.
2311 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
2312 * src/getargs.c (usage): Say the XML schema is experimental.
2313
2314 * NEWS (2.3a+): Say option instead of flag.
2315
2bb3ebec
WP
23162008-02-21 Wojciech Polak <polak@gnu.org>
2317
2318 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
2319 text.
2320
333e670c
JD
23212008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
2322
2323 Fix impure push parser compile error reported by Bob Rossi at
2324 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
2325 * data/yacc.c: Clean up whitespace in the output a little.
2326 (yypstate_allocated): Define for impure push parsers regardless of
2327 whether the pull interface is also requested.
2328 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
2329 check impure push parsers without the pull interface.
2330
2331 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
2332 yyerror takes arguments specified by %parse-param while yypstate_new
2333 does not.
2334 * doc/bison.texinfo (Parser Create Function): Document that
2335 yypstate_new returns 0 for multiple impure parser instances.
2336 * tests/push.at (Push Parsing: Multiple impure instances): Update
2337 expected stderr output.
2338
798096e1
JD
23392008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2340
2341 * runtime-po/POTFILES.in (push.c): Remove.
2342
9ca7f077
JD
23432008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2344
2345 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
2346 * data/push.c: Rename to...
2347 * data/yacc.c: ... this, overwriting it.
2348 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
2349 `%push-pull-parser' -> `%define api.push_pull "both"'.
2350 Remove old yacc.c tests, and update push.c tests to yacc.c.
2351
42ee26bb
JD
23522008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2353
2354 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
2355 `"%code top" blocks' instead of `%code "top" blocks'.
2356 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
2357 Clean up whitespace in the output a little.
2358
b1cc23c4
JD
23592008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2360
2361 Fix documentation problems reported by Tim Josling at
2362 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
2363 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
2364 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
2365 integers. Explain the effect of literal string aliases on error
2366 messages. Copy token 0 documentation from the C++ skeleton
2367 documentation.
2368
ab7f29f8
JD
23692008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2370
2371 Accept a token number in a %left, %right, or %nonassoc for POSIX
2372 conformance. Reported by Tim Josling at
2373 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
2374 * NEWS (2.3a+): Mention.
2375 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
2376 and code numbers are treated by precedence declarations.
2377 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
2378 of symbols.1.
2379 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
2380 of symbol.
2381 (symbol.prec): New, just like symbol but allows INT.
2382 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
2383 longer holds.
2384 * tests/regression.at (Token number in precedence declaration): New
2385 test case.
2386
a924ef36
JMG
23872008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2388
2389 DJGPP specific issues.
2390 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
2391 be changed. Copyright timestamp adjusted.
2392 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
2393 be changed. Copyright timestamp adjusted.
2394 * djgpp/config.site: Copyright timestamp adjusted.
2395 * djgpp/config_h.sed: Copyright timestamp adjusted.
2396 * djgpp/djunpack.bat: Copyright timestamp adjusted.
2397 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
2398 filename translation list.
2399 * djgpp/subpipe.c (init_subpipe): Check the environment variables
2400 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
2401 files shall be created. Before trying to use the temp dir where the
2402 environment variable points to check that the dir really exists. If
2403 not default to the cwd as temp dir. Copyright timestamp adjusted.
2404 * djgpp/subpipe.h: Copyright timestamp adjusted.
2405 * djgpp/testsuite.sed: Copyright timestamp adjusted.
2406
389c8cfd
PE
24072008-01-30 Paul Eggert <eggert@cs.ucla.edu>
2408
2409 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
2410
5d1cfef4
PE
24112008-01-09 Paul Eggert <eggert@cs.ucla.edu>
2412
2413 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
2414 Problem reported by Claudio Saavedra in
2415 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
2416
e2dcf996
WP
24172008-01-05 Wojciech Polak <polak@gnu.org>
2418
2419 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
2420 document's title with the input grammar file name.
2421
da730230
JD
24222007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
2423
2424 Automate regression testing of the XML/XSLT implementation. Discussed
2425 starting at
2426 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
2427 * configure.ac (XSLTPROC): New substitution.
2428 * Makefile.am (maintainer-xml-check): New phony target invoking...
2429 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
2430 invoking make maintainer-check with BISON_TEST_XML=1.
2431 * tests/atlocal.in (XSLTPROC): New.
2432 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
2433 not to report reachable memory when Bison is expected to have a
2434 non-zero exit status and (2) to compare XML/XSLT output with --graph
2435 and --report=all output for every working grammar when
2436 BISON_TEST_XML=1.
2437 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
2438 (AT_BISON_CHECK_XML): New.
2439 (AT_QUELL_VALGRIND): New.
2440 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
2441 (AT_CHECK): ... don't redefine this since this was the old way to
2442 quell Valgrind.
2443 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
2444 AT_BISON_CHECK invocations.
2445 * tests/c++.at: Likewise.
2446 * tests/calc.at: Likewise.
2447 * tests/conflicts.at: Likewise.
2448 * tests/cxx-type.at: Likewise.
2449 * tests/existing.at: Likewise.
2450 * tests/glr-regression.at: Likewise.
2451 * tests/headers.at: Likewise.
2452 * tests/input.at: Likewise.
2453 * tests/java.at: Likewise.
2454 * tests/output.at: Likewise.
2455 * tests/push.at: Likewise.
2456 * tests/reduce.at: Likewise.
2457 * tests/regression.at: Likewise.
2458 * tests/sets.at: Likewise.
2459 * tests/skeletons.at: Likewise.
2460 * tests/synclines.at: Likewise.
2461 * tests/torture.at: Likewise.
2462 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
2463 tends to hang xsltproc.
2464 (Big horizontal): Likewise.
2465
408476bc
JD
24662007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2467
2468 In XML output, remove redundant class attribute on symbol element.
2469 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
2470 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
2471 look up a symbol to determine whether it's a nonterminal or terminal.
2472 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
2473 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
2474
2475 Add prec/assoc information to XML output.
2476 * src/gram.c (grammar_rules_print_xml): For each rule that has a
2477 %prec, add a percent_prec attribute.
2478 * src/print-xml.c (print_grammar): For each terminal that has a
2479 precedence or associativity, add a prec or assoc attribute.
2480 (xml_indent): New.
2481 (xml_puts): Use xml_indent.
2482 (xml_printf): Use xml_indent.
2483 * src/print-xml.h (xml_indent): Prototype.
2484
2485 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
2486 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
2487
d4a26c48
JD
24882007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2489
2490 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
2491 (bison:ruleByNumber): ... this for clarity.
2492 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
2493 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
2494 (xsl:template match="reduction"): Update.
2495 (xsl:template match="item"): Update.
2496 (xsl:template match="reduction"): Update.
2497
2498 In the XML output, don't print the list of rules where symbols appear.
2499 Compute it in XSLT instead. Discussed at
2500 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
2501 * data/xslt/bison.xsl (bison:ruleByLhs): New.
2502 (bison:ruleByRhs): New.
2503 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
2504 bison:ruleByRhs.
2505 (xsl:template match="terminal/rule"): Remove.
2506 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2507 bison:ruleByRhs.
2508 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2509 Remove.
2510 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
2511 bison:ruleByRhs and mode="number-link" for rule template.
2512 (xsl:template match="terminal/rule"): Remove.
2513 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2514 bison:ruleByRhs and mode="number-link" for rule template.
2515 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2516 Rewrite as...
2517 (xsl:template match="rule" mode="number-link"): ... this.
2518 * src/print-xml.c (print_grammar): Don't print the list of rules.
2519
ef1b4273
JD
25202007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
2521
2522 Don't let --report affect XML output; always print all information.
2523 Discussed at
2524 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
2525 * src/conflicts.c (log_resolution): Implement.
2526 * src/print-xml.c (print_core): Implement.
2527 (print_state): Implement.
2528 (print_xml): Implement.
2529
2530 * NEWS (2.3a+): Fix quotes.
2531 * src/parse-gram.y (prologue_declaration): For consistency with -v,
2532 don't let %verbose clear the list specified by --report.
2533
0f6cd9e3
AD
25342007-11-26 Akim Demaille <akim@epita.fr>
2535
2536 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
2537
d80fb37a
JD
25382007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
2539
2540 In the XML output, list useless and unused symbols and rules with the
2541 useful ones and add a "usefulness" attribute. Discussed starting at
2542 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
2543 * src/gram.c (grammar_rules_partial_print_xml): Remove.
2544 (grammar_rules_print_xml): Print all rules instead of just those
2545 useful in the grammar, and add a "usefulness" attribute.
2546 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
2547 * src/print-xml.c (print_rules_useless_in_parser): Remove.
2548 (print_grammar): Print all nonterminals instead of just useful ones,
2549 and add a "usefulness" attribute to nonterminals and terminals.
2550 (print_xml): Don't print a separate "reductions" or
2551 "rules-useless-in-parser" element.
2552 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
2553 (reduce_xml): Remove.
2554 (reduce_token_unused_in_grammar): New.
2555 (reduce_nonterminal_useless_in_grammar): New.
2556 * src/reduce.h (reduce_xml): Remove prototype.
2557 (reduce_token_unused_in_grammar): Add prototype.
2558 (reduce_nonterminal_useless_in_grammar): Add prototype.
2559 * data/xslt/xml2text.xsl: Update for XML changes.
2560 * data/xslt/xml2xhtml.xsl: Update for XML changes.
2561 * tests/reduce.at (Useless Terminals): Update output.
2562 (Useless Rules): Update output.
2563 (Reduced Automaton): Update output.
2564
2565 Say "Terminals unused in grammar" instead of "Unused terminals".
2566 * NEWS (2.3a+): Update.
2567 * doc/bison.texinfo (Understanding): Update example output.
2568 * src/reduce.c (reduce_output): Implement.
2569 * data/xslt/xml2text.xsl: Implement.
2570 * data/xslt/xml2xhtml.xsl: Implement.
2571
1bb2bd75
JD
25722007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2573
2574 Accept --report-file=FILE to override the default `.output' filename.
2575 * NEWS (2.3a+): Mention.
2576 * doc/bison.texinfo (Bison Options): Add an entry.
2577 * src/files.c (compute_output_file_names): Don't override
2578 spec_verbose_file if already set.
2579 * src/getargs.c (usage): Document --report-file.
2580 (REPORT_FILE_OPTION): New anonymous enum member.
2581 (long_options): Add entry for it.
2582 (getargs): Add case for it setting spec_verbose_file.
2583
2584 * build-aux/cross-options.pl: Don't record a short option just because
2585 there's an arg.
2586 * doc/.cvsignore: Add yacc.1.
2587
a005a9c4
AD
25882007-11-14 Akim Demaille <akim@epita.fr>
2589
2590 * doc/yacc.1.in: New.
2591 * configure.ac, doc/Makefile.am: Adjust.
2592 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2593 config.h symbol.
2594 Use AC_SUBST for assignments too.
2595 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2596
cff03fb2
JD
25972007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2598
2599 * src/gram.c: Remove comments that duplicate comments in gram.h.
2600
2601 When reporting useless rules and nonterminals, say "useless in grammar"
2602 instead of "useless", and say "useless in parser" instead of "never
2603 reduced". Discussed starting at
2604 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2605 * NEWS (2.3a+): Mention this change.
2606 * data/xslt/xml2text.xsl: Update output text and expected input XML
2607 element names to match changes below.
2608 * data/xslt/xml2xhtml.xsl: Likewise.
2609 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2610 Contents: "Rules useless in parser due to conflicts".
2611 * doc/bison.texinfo (Decl Summary): Reword a little.
2612 (Understanding): Update example output for changes below.
2613 * src/gram.c: (rule_useful_p): Rename to...
2614 (rule_useful_in_grammar_p): ... this.
2615 (rule_useless_p): Rename to...
2616 (rule_useless_in_grammar_p): ... this.
2617 (rule_never_reduced_p): Rename to...
2618 (rule_useless_in_parser_p): ... this.
2619 (grammar_rules_print): Update for renames.
2620 (grammar_rules_print_xml): Update for renames.
2621 (grammar_rules_never_reduced_report): Rename to...
2622 (grammar_rules_useless_report): ... this since it is used for either
2623 kind of useless rule.
2624 * src/gram.h: Reword comments and update function names in prototypes.
2625 * src/main.c (main): Say "rule useless in parser due to conflicts".
2626 * src/print-xml.c (print_rules_never_reduced): Rename to...
2627 (print_rules_useless_in_parser): ... this, and rename output XML
2628 element "rules-never-reduced" to "rules-useless-in-parser".
2629 (print_xml): Update for rename.
2630 * src/print.c (print_results): Say "Rules useless in parser due to
2631 conflicts".
2632 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2633 (nonterminals_reduce): Say "nonterminal useless in grammar".
2634 (reduce_output): Say "Nonterminals useless in grammar".
2635 Say "Rules useless in grammar".
2636 (reduce_xml): Rename output XML element "useless" to
2637 "useless-in-grammar".
2638 (reduce_print): Don't report the count of grammatically useless rules
2639 as "rules never reduced" just because %yacc is specified.
2640 In the correct report of this count, say nonterminal(s) and rule(s)
2641 "useless in grammar".
2642 * tests/conflicts.at (S/R in initial): Update expected output.
2643 (Defaulted Conflicted Reduction): Likewise.
2644 (Unreachable States After Conflict Resolution): Likewise.
2645 * tests/existing.at (GNU pic Grammar): Likewise.
2646 * tests/reduce.at (Useless Nonterminals): Likewise.
2647 (Useless Rules): Likewise.
2648 (Reduced Automaton): Likewise.
2649 (Underivable Rules): Likewise.
2650 (Empty Language): Likewise.
2651
66f0441d
JD
26522007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2653
2654 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2655 here document and before the EOF so that BSD's implementation of Bourne
2656 shell doesn't parse the delimiter as part of the here document.
2657 * doc/.cvsignore: Add cross-options.texi.
2658 * src/getargs.c (usage): Add a blank line after the warning categories.
2659
d0ee4105
PB
26602007-11-08 Paolo Bonzini <bonzini@gnu.org>
2661
2662 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2663
e8b1fb9b
AD
26642007-11-05 Akim Demaille <akim@epita.fr>
2665
2666 Remove Id: from bison.1.
2667 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2668 (perl -0777 -pi -e 's/\.PP\nId): New.
2669 (.x.1): Use it to ignore the version control revision.
2670
2f7a96b5
AD
26712007-11-05 Akim Demaille <demaille@gostai.com>
2672
2673 * build-aux/Makefile.am: Ship cross-options.pl.
2674 * doc/Makefile.am: Always refer to cross-options.texi with
2675 $(srcdir).
2676 (MAINTAINERCLEANFILES): Add it.
2677
f4101aa6
AD
26782007-11-04 Akim Demaille <demaille@gostai.com>
2679
2680 Generate the long/short option cross-table.
2681 * build-aux/cross-options.pl: New.
2682 * doc/Makefile.am (cross-options.texi): New.
2683 * doc/bison.texinfo: Use it.
2684
727a1401
AD
26852007-11-04 Akim Demaille <demaille@gostai.com>
2686
2687 Generate bison.1 using help2man.
2688 * doc/common.x, doc/bison.x: New.
2689 * doc/Makefile.am (bison.1, .x.1): New.
2690 The code is taken from autoconf-2.61/man/Makefile.am.
2691 * configure.ac: Look for help2man.
2692
6aeb9c57
AD
26932007-11-04 Akim Demaille <demaille@gostai.com>
2694
2695 Complete --help.
2696 * src/getargs.c (usage): Document -W, make it clear that -d,
2697 -g and -x have optional arguments.
2698
d7be4085
AD
26992007-11-04 Akim Demaille <demaille@gostai.com>
2700
2701 Find sha1sum when named gsha1sum.
2702 * bootstrap (find_tool): New.
2703 ($SHA1SUM): New.
2704
d9df47b6
JD
27052007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2706
2707 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2708 at
2709 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2710 * NEWS (2.3a+): Mention.
2711 * data/bison.m4 (b4_pure_if): Don't define it here.
2712 * data/c.m4 (b4_identification): Depend on individual skeletons to
2713 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2714 values of the %define variables api.pure or api.push_pull. Define
2715 YYPURE, YYPUSH, and YYPULL accordingly.
2716 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2717 glr.cc has already defined b4_pure_flag.
2718 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2719 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 2720 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
2721 * doc/bison.texinfo (Pure Decl): Update.
2722 (Push Decl): Update.
2723 (Decl Summary): Add api.pure to %define entry.
2724 In %pure-parser entry, say it's deprecated and reference %define.
2725 (Pure Calling): Update.
2726 (Error Reporting): Update.
2727 (C++ Scanner Interface): Update.
2728 (How Can I Reset the Parser): Update.
2729 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2730 reference %define.
2731 * src/getargs.c (pure_parser): Remove global variable.
2732 * src/getargs.h (pure_parser): Remove extern.
2733 * src/output.c (prepare): Don't define pure_flag muscle.
2734 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2735 wrapper around `%define api.pure'.
2736 * tests/calc.at (Simple LALR Calculator): Update.
2737 (Simple GLR Calculator): Update.
2738 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2739 Update.
2740 (GLR: Resolve ambiguity, pure, locations): Update.
2741 (GLR: Merge conflicting parses, pure, no locations): Update.
2742 (GLR: Merge conflicting parses, pure, locations): Update.
2743 * tests/glr-regression.at (Uninitialized location when reporting
2744 ambiguity): Update
2745 * tests/input.at (Unused %define api.pure): New test case.
2746 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2747 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2748 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2749
c373bf8b
JD
27502007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2751
2752 %define push_pull -> %define api.push_pull. Discussed starting at
2753 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2754 * data/push.c: Expect the new name.
2755 * data/yacc.c: Likewise.
2756 * doc/bison.texinfo (Push Decl): Update.
2757 (Decl Summary): Update %define entry.
2758 (Push Parser Function): Update.
2759 (Pull Parser Function): Update.
2760 (Parser Create Function): Update.
2761 (Parser Delete Function): Update.
2762 * tests/calc.at (Simple LALR Calculator): Update.
2763 * tests/input.at (%define enum variables): Update.
2764 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2765 (Push Parsing: Multiple impure instances): Update.
2766 (Push Parsing: Unsupported Skeletons): Update.
2767 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2768 (Exploding the Stack Size with Malloc): Update.
2769
2770 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2771 other entries some.
2772
32f19b6b
JD
27732007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2774
2775 For the XML output's terminal element, rename @number to @token-number,
2776 and add @symbol-number. In the nonterminal element, rename @number to
2777 @symbol-number. Discussed starting at
2778 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2779 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2780 renames.
2781 (xsl:template match="nonterminal"): Likewise.
2782 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2783 (xsl:template match="nonterminal"): Likewise.
2784 * src/print-xml.c (print_grammar): Implement.
2785
255a6b90
JD
27862007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2787
2788 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2789 2007-10-11 change, the child elements here are items not rules.
408476bc 2790 (xsl:template match="item"): New.
255a6b90
JD
2791 (xsl:template match="rule"): Update for new reduced itemset.
2792 (xsl:template match="point"): Remove.
2793 (xsl:template match="empty"): For consistency with --graph, don't
2794 output "/* empty */".
2795 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2796 line-wrap, don't pass a negative value as first-line-length since this
2797 won't work with the following changes.
2798 (xsl:template name="line-wrap"): Simplify slightly.
2799 (xsl:template name="ws-search"): Eliminate recursion.
2800 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2801 set next to an item whose dot is not at the end of the RHS even if it
2802 happens to be associated with the same rule.
2803
88c78747
JD
28042007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2805
31984206
JD
2806 Add %define lr.keep_unreachable_states.
2807 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2808 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2809 * src/main.c (main): Implement it.
2810 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2811 Extend to test it, and fix a typo.
2812
28132007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2814
2815 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
2816 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2817 the example .output text.
2818 * tests/regression.at (Extra lookahead sets in report): Improve wording
2819 of comments.
2820
b7a70162
WP
28212007-10-17 Wojciech Polak <polak@gnu.org>
2822
2823 * src/print-xml.c (print_grammar): Renamed
2824 <terminal> and <nonterminal> attributes:
2825 "type" to "number" and "symbol" to "name".
2826 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2827 Use new attribute names.
2828 (xsl:template match="nonterminal"): Likewise.
2829 * data/xslt/xml2xhtml.xsl: Likewise.
2830
a0de5091
JD
28312007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2832
2833 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2834 (Option Cross Key): Likewise.
2835
2836 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2837 next to an item whose dot is not at the end of the RHS even if it
2838 happens to be associated with the same rule.
2839 * src/print.c (print_core): Likewise.
2840 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2841 (Resolved SR Conflicts): Update output.
2842 * tests/regression.at (Extra lookahead sets in report): New test case.
2843
4c20d18d
WP
28442007-10-11 Wojciech Polak <polak@gnu.org>
2845
2846 * src/print-xml.c (print_core): Remove item set
2847 redundancy.
2848 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2849 Improve processing time. Suggested by Joel E. Denny.
2850 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2851 Write xsl:param "required" attribute as comment.
2852 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2853 (xsl:template match="rule"): Support new reduced itemset.
2854 (xsl:template match="point"): Remove.
2855 * data/xslt/xml2xhtml.xsl: Likewise.
2856
f506ad1c
JD
28572007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2858
2859 * src/getargs.c (version): Update copyright year.
2860
21f1b063
JD
28612007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2862
2863 Make xml2dot.xsl and --graph produce the same output.
2864 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
2865 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2866 escaped later.
2867 (xsl:template name="output-node"): Use the new escape template instead
2868 of the string-replace template directly.
2869 (xsl:template name="output-edge"): Likewise.
2870 (xsl:template name="escape"): New, escapes backslashes and newlines in
2871 addition to quotation marks.
2872 * src/graphviz.c (start_graph, output_node, output_edge): Add
2873 whitespace to output for legibility.
2874
2875 Make xml2text.xsl and --report produce the same output, and remove the
2876 XML "conflicts" element since a conflict summary is easily extracted
2877 from the automaton.
2878 * data/xslt/bison.xsl: New.
2879 (xsl:template match="state" mode="bison:count-conflicts): New.
2880 * data/xslt/xml2text.xsl: Import bison.xsl.
2881 (xsl:template match="bison-xml-report"): Instead of styling the
2882 "conflicts" element, style the "automaton" element with mode
2883 "conflicts". Unlike the former, the latter lists S/R and R/R
2884 conflicts for a state on the same line.
2885 (xsl:template match="conflicts"): Remove.
2886 (xsl:template match="conflict"): Remove.
2887 (xsl:template match="terminal"): Line-wrap the list of rules in which
2888 the terminal is used.
2889 (xsl:template match="nonterminal"): Likewise for nonterminals.
2890 (xsl:template match="automaton" mode="conflicts"): New.
2891 (xsl:template match="state" mode="conflicts"): New.
2892 (xsl:template name="line-wrap"): New.
2893 (xsl:template name="ws-search"): New.
2894 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2895 (xsl:template match="bison-xml-report"): Instead of styling the
2896 "conflicts" element, style the "automaton" element with mode
2897 "conflicts."
2898 (xsl:template match="conflicts"): Remove.
2899 (xsl:template match="conflict"): Remove.
2900 (xsl:template match="automaton" mode="conflicts"): New.
2901 (xsl:template match="state" mode="conflicts): New.
2902 * src/conflicts.c (conflicts_output_xml): Remove.
2903 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2904 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2905 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2906 the corresponding XSLT is easier. Also, never wrap between a word and
2907 the comma that follows it.
2908
793fbca5
JD
29092007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2910
2911 Improve C++ namespace support. Discussed starting at
2912 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
2913 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
2914 b4_namespace_close): New macros that interpret the %define variable
2915 "namespace" so its value can contain "::" to indicate nested
2916 namespaces.
2917 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
2918 the above macros.
2919 * data/lalr1.cc (b4_namespace): Likewise.
2920 * data/location.cc (b4_namespace): Likewise.
2921 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
2922 inside a new table in the general %define entry. Document `%define
2923 namespace' there as well. Point the %name-prefix entry to it since it
2924 explains it more completely in the case of C++.
2925 (C++ Bison Interface): Mention `%define namespace' instead of
2926 %name-prefix.
2927 (Table of Symbols): Remove the `%define push_pull' entry. The %define
2928 entry suffices.
2929 * tests/c++.at (Relative namespace references): New test case.
2930 (Absolute namespace references): New test case.
2931 (Syntactically invalid namespace references): New test case.
2932 * tests/input.at (C++ namespace reference errors): New test case.
2933
35b8730d
JD
29342007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2935
2936 Add syncline support and location accessor to internal %define
2937 interfaces.
2938 * data/bison.m4 (b4_percent_define_get_loc): New.
2939 (b4_percent_define_get_syncline): New.
2940 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
2941 (b4_percent_define_default): Record defining location as line 1 rather
2942 than 0 for the sake of synchronizing #line's, and define
2943 b4_percent_define_syncline(VARIABLE).
2944 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
2945 * src/muscle_tab.c (muscle_syncline_grow): New.
2946 (muscle_code_grow): Use muscle_syncline_grow.
2947 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
2948 define b4_percent_define_syncline(VARIABLE).
2949 (muscle_percent_define_get_loc): New.
2950 (muscle_percent_define_get_syncline): New.
2951 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
2952 remove some unused variables.
2953 (muscle_percent_define_default): Record defining location as line 1
2954 rather than 0 for the sake of synchronizing #line's, and define
2955 b4_percent_define_syncline(VARIABLE).
2956 (muscle_percent_define_check_values): Use
2957 muscle_percent_define_get_loc.
2958 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
2959 (muscle_percent_define_get_syncline): Prototype.
2960 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2961 defaults): Update output for location change.
2962 (Complaining during macro argument expansion): Extend to test
2963 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
2964
7dc4a694
JD
29652007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
2966
2967 Fix some error-reporting macro bugs.
2968 * data/bison.m4 (b4_cat): New.
2969 (b4_error, b4_error_at): Use b4_cat to send error directives directly
2970 to stdout so they don't become arguments to other macros. Update
2971 comments and add examples.
2972 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
2973 add examples.
2974 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
2975 after printing the error directive so that M4 doesn't report subsequent
2976 problems that are induced by this problem.
2977 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
2978 instead of just in them. Recognize @\n in both places. Both expand to
2979 the empty string. Needed by b4_cat.
2980 * tests/skeletons.at (Complaining during macro argument expansion):
2981 New test case.
2982 (Fatal errors make M4 exit immediately): New test case.
2983
d4bd2295
JD
29842007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
2985
2986 Implement --print-datadir.
2987 * src/getargs.c (usage): Mention.
2988 (PRINT_DATADIR_OPTION): New anonymous enum member.
2989 (long_options): Add entry for it.
2990 (getargs): Add case for it calling compute_pkgdatadir.
2991 * src/output.c (output_skeleton): Encapsulate data directory
2992 computation from here...
2993 (prepare): ... and from here...
2994 (compute_pkgdatadir): ... into this new function.
2995 * src/output.h (compute_pkgdatadir): Prototype.
2996
34cdeddf
JD
29972007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
2998
2999 * src/print-xml.c (escape_bufs): New static global variable
3000 replacing...
3001 (xml_escape_n): ... the static local variable buf here.
3002 (print_xml): Free memory for escape_bufs.
3003 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
3004
d782395d
JD
30052007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
3006
3007 Replace `%push-parser' and `%push-pull-parser' with
3008 `%define push_pull "push"' and `%define push_pull "both"'.
3009 `%define push_pull "pull"' is the default.
3010 * doc/bison.texinfo (Push Decl, Push Parser Function,
3011 Pull Parser Function, Parser Create Function, Parser Delete Function):
3012 Update declarations.
3013 (Decl Summary, Table of Symbols): Replace %push-parser and
3014 %push-pull-parser entries with a %define push_pull entry.
3015 * data/bison.m4 (b4_percent_define_check_values): New macro.
3016 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
3017 definitions...
3018 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
3019 definitions...
3020 * data/push.c: ... to here and compute them from the value of the
3021 %define variable push_pull.
3022 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
3023 parsing requests here...
3024 * data/yacc.c: ... hack this to switch to push.c any time
3025 b4_use_push_pull_flag or the %define variable push_pull is set. This
3026 will go away when we mv push.c yacc.c.
3027 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
3028 push parsing is not supported since unused %define variables are
3029 reported anyway.
3030 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
3031 * src/muscle_tab.h (muscle_percent_define_check_values): Update
3032 comments for consistency with b4_percent_define_check_values.
3033 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
3034 muscles.
3035 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
3036 Remove.
3037 (prologue_declaration): Remove %push-parser and %push-pull-parser
3038 rules.
3039 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
3040 * tests/calc.at: Update declarations.
3041 * tests/input.at (%define enum variables): New test case.
3042 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
3043 declaration.
3044 (Push Parsing: Multiple impure instances): Update declaration.
3045 (Push Parsing: Unsupported Skeletons): New test case.
3046 * tests/torture.at (Exploding the Stack Size with Alloca): Update
3047 declaration.
3048 (Exploding the Stack Size with Malloc): Update declaration.
3049
3f999f78
WP
30502007-09-24 Wojciech Polak <polak@gnu.org>
3051
3052 Add XSLT transformations.
3053
3054 * data/xslt/xml2dot.xsl: Transform XML into DOT.
3055 * data/xslt/xml2text.xsl: Transform XML into plain text.
3056 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
3057 * data/Makefile.am (xsltdir): New variable.
3058 (dist_xslt_DATA): Add xslt/*.xsl files.
3059
a4f75309
PE
30602007-09-23 Paul Eggert <eggert@cs.ucla.edu>
3061
3062 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
3063 Problem reported by Wojciech Polak.
3064 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
3065 (xml_printf): Undo change I made on 21 September; that is,
3066 indent 2 spaces, not 1.
3067
ad5feac4
JD
30682007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
3069
3070 Pacify ./configure --enable-gcc-warnings.
3071 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
3072 `char const *' instead of `char *'.
3073 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
3074 local variable `sep'.
3075
41d7a5f2
PE
30762007-09-21 Paul Eggert <eggert@cs.ucla.edu>
3077
3078 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
3079 elsewhere.
3080 * src/print-xml.c: Prefer "const" after types; that's more consistent.
3081 (xml_printf): Indent just 1 space for level.
3082 (e_char, xlate_char): Remove.
3083 (xml_escape_string): Rewrite to avoid undefined behavior (used
3084 storage that was freed from the stack).
3085 (xml_escape_n): Don't bother checking for subscript error.
3086
3f999f78
WP
30872007-09-21 Wojciech Polak <polak@gnu.org>
3088
3089 Add Bison XML Automaton Report.
41d7a5f2
PE
3090
3091 Add support for an -x option to generate an XML report.
3092 It is not documented yet.
3093 * src/print-xml.c: New file.
3094 * src/print-xml.h: Likewise.
3095 * lib/timevar.def (TV_XML): New var.
3096 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
3097 * src/conflicts.c: Include print-xml.h.
3098 (solved_conflicts_xml_obstack): New var.
3099 (log_resolution, conflicts_solve, conflicts_free):
3100 Add support for XML report.
3101 (conflicts_output_val): New function.
3102 * src/conflicts.h (conflicts_output_val): New decl.
3103 * src/files.c (spec_xml_file): New var.
3104 (compute_output_file_names, output_file_names_free): Add XML support.
3105 * src/files.h (spec_xml_file): New decl.
3106 * src/getargs.c (xml_flag): New var.
3107 (usage, short_options, long_options, getargs): Add XML support.
3108 * src/getargs.h (xml_flag): New decl.
3109 * src/gram.c: Include print-xml.h.
3110 (rule_lhs_print_xml, rule_rhs_print_xml):
3111 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
3112 New functions.
3113 * src/gram.h: Declare external ones.
3114 * src/main.c: Include print-xml.h.
3115 (main): Add XML support.
3116 * src/reduce.c: Include print-xml.h.
3117 (reduce_xml): New function.
3118 * src/reduce.h: Declare it.
3119 * src/state.c: Include print-xml.h.
3120 (state_new): Add XML support.
3121 (state_rule_lookahead_tokens_print_xml): New function.
3122 * src/state.h: Declare it.
3123 (struct state): New member solved_conflicts_xml.
3124 * src/symtab.c (symbol_class_get_string): New function.
3125 * src/symtab.h: Declare it.
3126
6d8e724d
PE
31272007-09-21 Paul Eggert <eggert@cs.ucla.edu>
3128
3129 * GNUmakefile: Switch to coreutils's version.
3130 * bootstrap: Likewise.
3131 * Makefile.cfg: Adjust to new GNUmakefile.
3132 * README-hacking: Likewise.
3133
3134 Import from gnulib:
3135
3136 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
3137 Bruno Haible <bruno@clisp.org>
3138
3139 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
3140 and is a script that invokes bison. Tighten the code. Add comments.
3141
922bdd7f
JD
31422007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
3143
3144 Spell "boolean" as "Boolean". Reported by Akim Demaille.
3145 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
3146 * doc/bison.texinfo (Decl Summary): Fix.
3147 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
3148 * tests/input.at (Boolean %define variables): Update output.
3149 * tests/skeletons.at (%define boolean variables: invalid skeleton
3150 defaults): Rename to...
3151 (%define Boolean variables: invalid skeleton defaults): ... this and
3152 update output.
3153
1b17b01d
JD
31542007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
3155
3156 In impure push mode, don't allow more than one yypstate to be allocated
3157 since multiple impure parsers would corrupt yynerrs.
3158 * data/push.c (yypstate_allocated): New static global variable
3159 initialized to 0.
3160 (yypull_parse): If yypstate_new returns 0, don't report it as memory
3161 exhaustion if yypstate_allocated is 1, but still return 2.
3162 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
3163 already 1. Otherwise, set it to 1.
3164 (yypstate_delete): Set it to 0.
3165 * tests/push.at (Push Parsing: Multiple impure instances): New test
3166 case.
3167
9987d1b3
JD
31682007-08-17 Bob Rossi <bob@brasko.net>
3169
3170 * doc/bison.texinfo (Push Decl): Document the push parser.
3171 (Table of Symbols): Ditto.
3172 (Pure Decl): Ditto.
3173 (Decl Summary): Ditto.
3174 (Multiple Parsers, Push Parser Function, Pull Parser Function,
3175 Parser Create Function, Parser Delete Function):
3176 Add new push parser symbols.
3177 (Table of Symbols): Document push-parser, push-pull-parser,
3178 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
3179
f16b0819
PE
31802007-08-15 Paul Eggert <eggert@cs.ucla.edu>
3181
3182 Update to GPLv3.
3183 * doc/gpl-3.0.texi: New file.
3184 * doc/gpl.texi: Remove.
3185 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
3186 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
3187 * README-hacking, TODO, bootstrap, bootstrap.conf:
3188 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
3189 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
3190 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
3191 * data/lalr1.cc, data/lalr1.java, data/location.cc:
3192 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
3193 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
3194 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
3195 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
3196 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
3197 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
3198 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
3199 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
3200 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
3201 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
3202 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
3203 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
3204 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
3205 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
3206 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
3207 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
3208 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
3209 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
3210 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
3211 * src/complain.c, src/complain.h, src/conflicts.c:
3212 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
3213 * src/files.h, src/flex-scanner.h, src/getargs.c:
3214 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
3215 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
3216 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
3217 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
3218 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
3219 * src/print.c, src/print.h, src/print_graph.c:
3220 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
3221 * src/reduce.h, src/relation.c, src/relation.h:
3222 * src/revision.h, src/scan-code.h, src/scan-code.l:
3223 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
3224 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
3225 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
3226 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
3227 * tests/Makefile.am, tests/actions.at, tests/c++.at:
3228 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
3229 * tests/existing.at, tests/glr-regression.at:
3230 * tests/headers.at, tests/input.at, tests/java.at:
3231 * tests/local.at, tests/output.at, tests/push.at:
3232 * tests/reduce.at, tests/regression.at, tests/sets.at:
3233 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
3234 * tests/torture.at:
3235 Update to GPLv3.
3236
728c4be2
JD
32372007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3238
3239 Get rid of broken %no-parser, -n, and --no-parser implementation and
3240 documentation.
3241 * TODO: Don't mention them.
3242 * doc/bison.1: Likewise.
3243 * doc/bison.texinfo (Decl Summary): Likewise.
3244 (Bison Options): Likewise.
3245 (Option Cross Key): Likewise.
3246 * src/getargs.c (no_parser_flag): Remove global variable.
3247 (usage): Don't print description of -n and --no-parser.
3248 (long_options): Remove --no-parser entry here.
3249 (getargs): Remove -n case in the switch here.
3250 * src/getargs.h (no_parser_flag): Remove extern.
3251 * tests/regression.at (Web2c Actions): Remove comment that mentions
3252 --no-parser.
3253
5d31a216
JD
32542007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3255
3256 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
3257 name user variables starting with `yy'. Just pass NULL instead of a
3258 dummy local &yylval to yypush_parse.
3259 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
3260 starting with `yy'.
3261
a2ea208d
JD
32622007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
3263
3264 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
3265 true since it's then always used regardless of whether yyoverflow is
3266 defined. Reported by Christian Burger at
3267 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
3268 * THANKS: Add Christian Burger.
3269
91661ebb
JD
3270 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3271 node names: say "Decl Summary" not "Bison Declaration Summary".
3272
cbd50549
JD
32732007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
3274
3275 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
3276 determine whether this function has already complained about an invalid
3277 value for a %define boolean variable, don't check whether Bison has
3278 ever examined the value. As written, the check was a tautology.
3279 Instead, record and check for this complaint using a separate muscle.
3280
eb1b0740
JD
32812007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3282
3283 Fix push parsing memory leak reported by Brandon Lucia at
3284 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
3285 * THANKS: Add Brandon Lucia.
3286 * data/push.c (yypstate_delete): Free the stack if it was reallocated
3287 but the parse never completed and thus freed it.
3288 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
3289 * tests/testsuite.at: Include push.at.
3290 * test/push.at: New.
3291 (Push Parsing: Memory Leak for Early Deletion): New test case.
3292
9d774aff
JD
32932007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
3294
3295 Improve handling of multiple S/R conflicts in the same state and of S/R
3296 conflicts involving multiple reductions.
3297 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
3298 set for a state here or Bison will abort if it is reassigned on a
3299 later conflicted reduction in the same state.
3300 Similarly, don't finalize and assign the solved conflicts report here
3301 or it will be lost if it is reassigned on a later conflicted reduction
3302 in the same state.
3303 (set_conflicts): Instead, assign them both here after all S/R conflicts
3304 in the state have been fully examined.
3305 * src/print.c (shift_set): Rename to...
3306 (no_reduce_set): ... this.
3307 (print_reductions): Update for rename, and add %nonassoc error action
3308 tokens to no_reduce_set so that, when printing the first remaining
3309 reduction on an error action token, the reduction is enclosed in
3310 brackets.
3311 (print_results): Update for rename.
3312 * tests/conflicts.at (Solved conflicts report for multiple reductions
3313 in a state): New test case.
3314 (%nonassoc error actions for multiple reductions in a state): New test
3315 case.
3316
3317 * src/main.c (main): Don't depend on C99 features.
3318
10159d2a
JD
33192007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3320
3321 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
3322 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
3323 uniwidth.
10159d2a 3324
953b3935
JD
33252007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
3326
3327 * bootstrap (slurp): Create target directories that don't exist.
3328 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
3329
6ce2d93a
JD
33302007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
3331
3332 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
3333 than item number.
3334 * closure.c (closure): Likewise.
3335 * state.h (reductions): Comment sorting of rules.
3336 (state): Comment sorting of items.
3337
ce3448d5
JD
33382007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
3339
3340 Fix C++ test cases after recent Gnulib changes. Discussed starting at
3341 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
3342 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
3343 definition in order to avoid Gnulib headers since we don't use config.h
3344 here.
3345 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
3346 rather than AT_DATA so that config.h is included.
3347
8a86eef0
JD
33482007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
3349
3350 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
3351 instead of fprintf. Guard these functions with #if YYDEBUG instead of
3352 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
3353 and so that YYFPRINTF is guaranteed to be defined here.
3354
b1a81613
JD
33552007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
3356
3357 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
3358 with...
3359 (muscle_percent_define_check_values): ... this more helpful function.
3360 Again, it's not used yet, but it will be.
3361 * src/muscle_tab.h: Likewise.
3362
71b61d4d
JD
3363 Improve some comments in parser table construction.
3364 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
3365 (generate_states): Don't mention ruleset, which is internal to closure.
3366 * src/closure.c (closure): Explain sorting of core and itemset, which
3367 is required for this function to behave correctly.
3368 * src/closure.h (closure): Mention sorting.
3369
2a6b783d
JD
33702007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
3371
3372 * src/lalr.c (state_lookahead_tokens_count): For code readability,
3373 move the check for disabled transitions to an aver since conflict
3374 resolution hasn't happened yet.
3375
3376 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
3377 labels a state as inconsistent just because it has error transitions.
3378 The original form of this check appeared in revision 1.1 of lalr.c,
3379 which was committed on 1991-12-21. Now (at least), changing the
3380 consistency label on such a state appears to have no useful effect in
3381 any of the places it is examined, which I enumerate below. The key
3382 point to understanding each item in this enumeration is that a state
3383 with an error transition is labelled consistent in the first place only
3384 if it has no rules, so the check cannot matter for states that have
3385 rules. (1) Labelling a state as inconsistent will cause set_conflicts
3386 to try to identify its conflicts, and a state must have *rules* to have
3387 conflicts. (2) Labelling a state as inconsistent will affect how
3388 action_row sets the default *rule* for the state. (3) Labelling a
3389 state as inconsistent will cause build_relations to add lookback edges
3390 to *rules* in that state.
3391 * src/state.h (struct state): Word the comment for member consistent
3392 more carefully.
3393
14462c2b
JD
33942007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3395
3396 Don't depend on C99 features.
3397 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
3398 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
3399 * src/reader.c (check_and_convert_grammar): Fix for-loop.
3400 * src/state.c (state_mark_reachable_states): Fix for-loop.
3401 (state_remove_unreachable_states): Fix for-loop.
3402
3403 Don't widen struct state with member reachable just to temporarily
3404 record reachability. Instead, use a local bitset.
3405 * src/state.h (struct state): Remove member.
3406 * src/state.c (state_new): Don't initialize it.
3407 (state_mark_reachable_states): Rename to...
3408 (state_record_reachable_states): ... this, and use bitset.
3409 (state_remove_unreachable_states): Use bitset.
3410
5a43d418
JD
34112007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
3412
3413 * src/Makefile.am (yacc): Quote target action commands properly so
3414 that the yacc script isn't corrupt. Reported by Hans Aberg at
3415 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
3416
0c650a20
JD
3417 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
3418 the case of pure parsers. Reported by Frans Englich at
3419 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
3420 * THANKS: Add Frans Englich.
3421
61fee93e
JD
3422 * NEWS (2.3a+): In the %code entry, reference section `Bison
3423 Declaration Summary' from the manual now since the %code summary has
3424 moved there.
3425 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
3426 in the rules section must be terminated by semicolons.
3427
f124d423
JD
34282007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
3429
3430 Extend the front-end API for %define variables to more completely
3431 mirror the back-end. This will be useful in the future.
3432 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
3433 Update comments to mention the new front-end counterparts of these
3434 macros.
3435 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
3436 for muscle_string_decode and muscle_location_decode.
3437 (muscle_string_decode): New static function.
3438 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
3439 (muscle_percent_define_get, muscle_percent_define_ifdef): New
3440 functions.
3441 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
3442 muscle_percent_define_get to mimic the b4_percent_define_flag_if
3443 implementation more closely.
3444 (muscle_percent_define_invalid_value): New function.
3445 * src/muscle_tab.h (muscle_percent_define_get,
3446 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
3447 Prototype.
3448
75ad86ee
JD
34492007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3450
3451 * NEWS (2.3a+): Mention yesterday's state-removal change.
3452 (2.3a): Remove the %language entry, which was added after 2.3a.
3453 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
3454 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
3455 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
3456 tests/existing.at: Update copyright date.
3457
5967f0cf
JD
34582007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3459
3460 If conflict resolution makes states unreachable, remove those states,
3461 report rules that are then unused, and don't report conflicts in those
3462 states.
3463 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
3464 New global function.
3465 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
3466 function.
3467 * src/main.c (main): After conflict resolution, remove the unreachable
3468 states and update all data structures that reference states by number.
3469 * src/state.c (state_new): Initialize each state's reachable member to
3470 false.
3471 (state_mark_reachable_states): New static function.
3472 (state_remove_unreachable_states): New global function.
3473 * src/state.h (struct state): Add member bool reachable.
3474 (state_remove_unreachable_states): Prototype.
3475 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3476 New test case.
3477 * tests/existing.at (GNU pic Grammar): Update test case output now that
3478 an unused rule is discovered.
3479
b09f4f48
JD
34802007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3481
3482 Minor code cleanup in parser table construction.
3483 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
3484 (new_itemsets, save_reductions): Update for rename to nitemset.
3485 * src/closure.c (nritemset): Rename to...
3486 (nitemset): ... this since the "r" appears to meaningless and isn't
3487 used in the comments.
3488 (closure): Update for rename.
3489 * src/closure.h (nritemset): Update extern to...
3490 (nitemset): ... this.
3491 * src/lalr.c (LA): Fix a typo in comments.
3492 * src/print.c (print_core): Update for rename to nitemset.
3493 * src/print_graph.c (print_graph): Likewise.
3494 * src/state.h: Fix some typos in header comments.
3495
bbb44d83
PE
34962007-04-04 Paul Eggert <eggert@cs.ucla.edu>
3497
9b33de72
PE
3498 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
3499 still sticks to ASCII. Sorry!
3500
bbb44d83
PE
3501 * README-hacking: New file, taken mostly from coreutils, with changes
3502 for Bison. Contains much of the contents of:
3503 * README-cvs: Remove.
3504 * bootstrap: Sync from gnulib.
3505 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
3506 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
3507
29553547
JD
35082007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
3509
3510 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
3511 Setzer.
3512 (Java Differences): Fix some typos.
3513 * THANKS: Add Sebastian Setzer.
3514
01b477c6
PB
35152007-03-07 Paolo Bonzini <bonzini@gnu.org>
3516
730739e4
AD
3517 * data/java.m4 (b4_single_class_if): Remove.
3518 (b4_abstract_if): Look at "%define abstract".
3519 (b4_lexer_if): New.
3520 (b4_union_name): Rename...
3521 (b4_yystype): ... to this. Map to "%define stype".
3522 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
3523 b4_maybe_throws): Fix quoting.
3524 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
3525 * data/lalr1.java (Lexer interface): Always define.
3526 (Lexer interface within parser class): Remove.
3527 (YYLexer class): New, used when "%code lexer" is present.
3528 (constructor): When "%code lexer" is used, pass %lex-param
3529 to the lexer constructor.
3530 (yylex, yyparse): Remove %lex-param from method invocations
3531 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
3532
3533 * doc/bison.texinfo (Java Bison Interface): Mention "%define
3534 abstract". Rename "%define union_name" to "%define stype".
3535 Rename method names according to previous patch.
3536 (Java Scanner Interface): Describe "%code lexer" instead of
3537 "%pure-parser" and "%define single_class".
3538 (Java Differences): Mention "%code lexer".
3539
3540 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
3541 Include scanner here, using macros from tests/local.at.
3542 (AT_DATA_CALC_Y): Remove final argument.
3543 (_AT_CHECK_JAVA_CALC): Likewise.
3544 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
3545 of %locations and %error-verbose.
3546 (main): Test with and without %lex-param.
3547 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
3548 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 3549
122bea3a
JMG
35502007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3551
3552 DJGPP spefic issue. Inhibit the use of disallowed characters for
3553 file name genertion on Win98, WinXP, etc. These are |<>":?*\
3554 and concern testsuite case 46.
3555 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
3556 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
3557 * djgpp/config.bat: Inhibit the use of disallowed characters.
3558
9611cfa2
JD
35592007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3560
3561 Miscellaneous %define and %code cleanup.
3562 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
3563 values are interpreted.
3564 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3565 documentation a little more.
3566 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3567 muscle_percent_define_insert, muscle_percent_code_grow): New
3568 functions/macros.
3569 * src/muscle_tab.h (muscle_percent_define_insert,
3570 muscle_percent_code_grow): Prototype.
3571 * src/parse-gram.y (prologue_declaration): Use
3572 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3573 %define and %code directives.
3574
3575 Make it easy to share %define boolean variables between the front-end
3576 and back-end. Though not used yet, this will be useful in the future.
3577 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3578 Bison uses of names rather than just skeleton uses of names.
3579 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3580 b4_percent_define_skeleton_variables(VARIABLE) to
3581 b4_percent_define_bison_variables(VARIABLE).
3582 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3583 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3584 b4_percent_code_bison_qualifiers(QUALIFIER).
3585 (b4_check_user_names_wrap): Update for renames.
3586 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3587 muscle_percent_define_default): New functions mimicking
3588 b4_percent_define_flag_if and b4_percent_define_default.
3589
3590 For %define variables, report locations for invalid values and
bbb44d83 3591 redefinitions.
9611cfa2
JD
3592 * data/bison.m4 (b4_percent_define_flag_if): Read
3593 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3594 value for VARIABLE.
3595 (b4_percent_define_default): Save a special location in
3596 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3597 must later be reported as invalid.
3598 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3599 functions.
3600 (muscle_percent_define_insert): Record the location of VARIABLE in
3601 muscle percent_define_loc(VARIABLE), and use it to report the previous
3602 location for a redefinition.
3603 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3604 (muscle_percent_define_default): Update like b4_percent_define_default.
3605 (muscle_grow_user_name_list): Rename to...
3606 (muscle_user_name_list_grow): ... this for consistency and use
3607 muscle_location_grow.
3608 * src/muscle_tab.h (muscle_location_grow): Prototype.
3609 * tests/input.at (%define errors): Update expected output.
3610 * tests/skeletons.at (%define boolean variables: invalid skeleton
3611 defaults): New test case.
3612
0bf92491
JD
36132007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3614
3615 * src/print.c (lookahead_set, state_default_rule): Remove.
3616 (print_reductions): Replace state_default_rule invocation with
3617 equivalent use of yydefact, which was computed in token_actions in
3618 tables.c.
3619 (print_results): Don't allocate lookahead_set.
3620
d3b12988
PB
36212007-02-27 Paolo Bonzini <bonzini@gnu.org>
3622
3623 * data/lalr1.java: Prefix all private members with yy.
3624
f57a7536
JD
36252007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3626
3627 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 3628 Sebastien Fricker at
f57a7536 3629 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 3630 * THANKS: Add Sebastien Fricker.
f57a7536
JD
3631 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3632 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3633 accept a variable number of arguments.
3634
6404a5bf
JD
36352007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3636
3637 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3638
e4e09639
JMG
36392007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3640
3641 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3642 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3643 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3644
d7e0a1a7
PE
36452007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3646
3647 Undo my 2007-02-07 change, switching back to the c-strcase module
3648 introduced in the 2007-02-03 change. Bruno Haible reported that
3649 the 2007-02-07 change would be dangerous in Turkish if we add a
3650 language whose name contains "i", since "i" is not lowercase "I"
3651 in Turkish.
3652 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3653 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3654 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3655 * m4/.cvsignore: Remove strcase.m4.
3656 * src/getargs.c: Revert 2007-02-07 change, as follows.
3657 Include c-strcase.h.
3658 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3659
deee93a1
JD
36602007-02-11 Bruno Haible <bruno@clisp.org>
3661
3662 Enable the Java related testsuite tests when the only Java compiler
3663 found is a gcj < 4.3. Discussed at
3664 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3665 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3666
574add85
JD
36672007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3668
3669 * data/Makefile.am: Update copyright date.
3670 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3671 yypstate_new returns NULL.
3672 (yypstate_new): Return NULL if malloc does.
3673 * src/reader.c (packgram): Move translation of rule actions from the
3674 beginning of packgram to...
3675 (check_and_convert_grammar): ... here right before packgram is invoked
3676 so it's easier to write more complete comments, and remove redundant
3677 code.
3678
e785ccf7
JD
36792007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3680
3681 As in semantic actions, make @$ in %initial-action, %destructor, and
3682 %printer imply %locations.
3683 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3684 scanning @$.
3685 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3686 (@$ in %initial-action implies %locations,
3687 @$ in %destructor implies %locations,
3688 @$ in %printer implies %locations): ... these new test cases.
3689
1cfe1ed7
PE
36902007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3691
3692 Undo most of the 2007-02-03 change, switching to the strcase module
3693 now that gnulib strcase has been fixed.
3694 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3695 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3696 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3697 * m4/.cvsignore: Add strcase.m4.
3698 * src/getargs.c: Revert 2007-02-03 change, as follows.
3699 Don't include c-strcase.h.
3700 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3701 strcasecmp has "unspecified behavior" outside the POSIX locale,
3702 but it works fine in practice if at least one argument is ASCII,
3703 as is the case in Bison.
3704
0049ec86
PB
37052007-02-07 Paolo Bonzini <bonzini@gnu.org>
3706
3707 * tests/java.at: Skip tests if only one of javac/java is present.
3708 Reported by Joel E. Denny.
3709 * tests/atlocal.in: Adjust copyright years.
3710
37112007-02-05 Paolo Bonzini <bonzini@gnu.org>
3712
3713 * data/lalr1.java (Stack): Work around old verifiers that disallow
3714 access to the private fields of an inner class, from the outer class.
3715 We can make Stack's fields public because user code doesn't have access
3716 to the instance of Stack used by parse(). Reported by Paul Eggert.
3717
2c2b7220
PE
37182007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3719
3720 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3721 the right spot for these files?
3722 * bootstrap.conf (gnulib_modules): Add c-strcase.
3723 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3724 c-strncasecmp.c.
3725 * src/getargs.c: Include c-strcase.h.
3726 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3727 to avoid unspecified behavior.
3728
b2b81dae
JD
37292007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3730
3731 * doc/bison.texinfo (Decl Summary): Correct typo.
3732
c1d19e10
PB
37332007-01-30 Paolo Bonzini <bonzini@gnu.org>
3734
3735 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3736 Complain if the value does not match empty, "true" or "false".
3737 * data/c++.m4: Adjust default definitions of %define variables.
3738 * data/java.m4: Adjust default definitions of %define variables.
3739 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3740 to above behavior.
3741 * tests/input.at (Boolean %define variables): Test new behavior.
3742
8405b70c
PB
37432007-01-29 Paolo Bonzini <bonzini@gnu.org>
3744
3745 * NEWS: Mention java.
3746 * TODO: Remove things that are done.
3747 * bootstrap.conf: Add javacomp-script and javaexec-script.
3748 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3749
3750 * data/Makefile.am: Add new files.
3751 * data/java-skel.m4: New.
3752 * data/java.m4: New.
3753 * data/lalr1.java: New.
3754
3755 * doc/bison.texinfo: Put "A Complete C++ Example" under
3756 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3757 under Other Languages.
3758
3759 * src/getargs.c (valid_languages): Add Java.
3760 * src/getargs.h (struct bison_language): Update size of string fields.
3761
3762 * tests/Makefile.am: Add java.at.
3763 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3764 * tests/java.at: New.
3765 * tests/testsuite.at: Include it.
3766
3eb82471
JD
37672007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3768
3769 Clean up.
3770 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3771 at_directive_argv arguments so these no longer have to be global
3772 variables. Also, update the implementation for the following changes.
3773 (fail_for_at_directive_too_many_args,
3774 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3775 (at_directive_name): Remove as at_directive_argv[0] will be used for
3776 this now.
3777 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3778 for the directive name.
3779 (at_directive_argc, at_directive_argv): Make these local within
3780 skel_lex instead of global.
3781 (INITIAL): Update directive start action for above changes.
3782 (SC_AT_DIRECTIVE_ARG): Rename to...
3783 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3784 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3785 (scan_skel): Move yylex_destroy to...
3786 (skel_scanner_free): ... here.
3787 * tests/skeletons.at (installed skeleton file name): Rename to...
3788 (installed skeleton file names): ... this.
3789
148d66d8
JD
37902007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3791
3792 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3793 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3794 Summary" not "Directives".
3795 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3796 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3797 since the former is now the more complete one.
3798 (Prologue Alternatives): Likewise and do the same for %defines.
3799 (Table of Symbols): Add summary of %code, add summary of %define, and
3800 move full %code documentation to...
3801 (Decl Summary): ... here for consistency with other entries in these
3802 sections.
3803 Move %define entry in order to keep this list alphabetized.
3804 Reword %define entry a little to put less emphasis on the skeleton
3805 concept, which most users shouldn't have to think about.
3806
665f0c24
PE
38072007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3808
3809 Adjust to recent gnulib changes.
3810 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3811 Add string.h, string_.h, unistd_.h, wchar_.h.
3812 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3813 * src/system.h: Don't include <stpcpy.h>; this is now done by
3814 <string.h>.
3815
592d0b1e
PB
38162007-01-23 Paolo Bonzini <bonzini@gnu.org>
3817
3818 Simplify implementation of unqualified %code, implement macros for
3819 uniform treatment of boolean %define flags. Document %define.
3820 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3821 b4_percent_code_ifdef): New.
3822 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3823 * data/c++.m4: Define default value for global_tokens_and_yystype.
3824 * data/glr.cc: Likewise.
3825 * data/location.cc: Use b4_percent_define_flag_if.
3826
148d66d8 3827 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
3828
3829 * src/parse-gram.y (Unqualified %code): Change muscle name to
3830 b4_percent_code().
3831 (content.opt): Default to empty.
3832
a7867f53
JD
38332007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3834
3835 Implement support for relative and absolute skeleton file names.
3836 Discussed starting at
3837 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3838 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3839 (Bison Options): Document in --skeleton entry.
3840 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3841 full_skeleton can't necessarily hold all of pkgdatadir.
3842 If the specified skeleton file name contains a `/', don't prepend
3843 pkgdatadir.
3844 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3845 file name contains a `/', prepend the grammar file directory.
3846 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3847 * skeletons.at: New file.
3848 (relative skeleton file names): New test case.
3849 (installed skeleton file names): New test case.
3850 * tests/testsuite.at: Include skeletons.at.
3851
3852 * bootstrap: Update copyright to 2007.
3853
830c9b18
PB
38542007-01-17 Paolo Bonzini <bonzini@gnu.org>
3855
3856 * bootstrap: Remove occurrences of .#bootmp from the files.
3857
a8c2e813
AD
38582007-01-17 Akim Demaille <akim@epita.fr>
3859
3860 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3861 nonterminals.
3862 Use per-type %printer.
3863
279cabb6
JD
38642007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3865
3866 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3867 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3868 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3869 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3870 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3871 tests/glr-regression.at, tests/input.at, tests/local.at,
3872 tests/output.at, tests/torture.at: Update copyright to 2007.
3873
bb32f4f2
AD
38742007-01-16 Akim Demaille <akim@epita.fr>
3875
3876 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3877 error code.
3878 (Calc++ Scanner): Exit with failure if we can't open the input
3879 file.
3880 Accept "-" standing for stdin.
3881 (Calc++ Top Level): Print the result only if the parsing was
3882 successful.
3883
7cff04b5
AD
38842007-01-16 Akim Demaille <akim@epita.fr>
3885
3886 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3887
a4e25e1d
JD
38882007-01-15 Paolo Bonzini <bonzini@gnu.org>
3889 and Joel E. Denny <jdenny@ces.clemson.edu>
3890
3891 Clean up %define and %code implementation in M4 some. Most
3892 importantly, rename all related macros to be in the b4_percent_define
3893 and b4_percent_code namespaces. Also, complete support for `.' in
3894 %define variable names and %code qualifiers.
3895 * data/bison.m4 (b4_check_user_names): Check for special
3896 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3897 m4_foreach loops.
3898 (b4_get_percent_define, b4_get_percent_code): Rename to...
3899 (b4_percent_define_get, b4_percent_code_get): ... these.
3900 Extend documentation with examples.
3901 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3902 b4_percent_define_skeleton_variables and
3903 b4_percent_code_skeleton_qualifiers.
3904 Expect any value for the %define variable `foo' to be stored in the
3905 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3906 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3907 expect any unqualified %code blocks to be stored in a macro named
3908 `b4_percent_code_unqualified'.
3909 Use m4_indir so that %define variable names and %code qualifiers can
3910 contain `.', which is allowed by the grammar parser.
3911 (b4_percent_define_default): New macro to set a default value for a
3912 %define variable.
3913 (m4_wrap): Update wrapped code, and fix some underquoting.
3914 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
3915 Expect grammar uses of %define variables and %code qualifiers to be
3916 defined in b4_percent_define_user_variables and
3917 b4_percent_code_user_qualifiers.
3918 * data/c++.m4: Use b4_percent_define_default rather than
3919 m4_define_default. Fix some underquoting. Skeleton usage of %define
3920 variable define_location_comparison now implies skeleton usage of
3921 %define variable filename_type.
3922 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3923 data/push.c, data/yacc.c: Update macro names.
3924 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
3925 muscle names.
3926
e37c665c
JMG
39272007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3928
3929 DJGPP specific issues.
3930
3931 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
3932 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
3933
7d2d521f
JD
39342007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3935
3936 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
3937 run parsers in all tests so that Valgrind is invoked during
3938 maintainer-check-valgrind.
3939 (Duplicate representation of merged trees): Free all semantic values.
3940 (Duplicated user destructor for lookahead): Likewise.
3941
e0ac9b4b
JD
39422007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3943
3944 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
3945 command-line prefix.
3946 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
3947 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
3948 miss Valgrind messages.
3949 (Exploding the Stack Size with Malloc): Likewise.
3950
78143faa
JD
39512007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3952
3953 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
3954 locals. Reported by Juan Manuel Guerrero at
3955 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
3956 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
3957 Fix some indentation also.
3958 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
3959 explaining this issue.
3960
7ecec4dd
JD
39612007-01-09 Paolo Bonzini <bonzini@gnu.org>
3962 and Joel E. Denny <jdenny@ces.clemson.edu>
3963
3964 Simplify union and prologue handling, and escape union and lex/parse
3965 params with digraphs.
3966 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
3967 values to the empty string since these are no longer guaranteed
3968 initialized by the front-end.
3969 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
3970 braces around b4_user_stype since this is no longer done by the
3971 front-end.
3972 * src/files.c, src/files.h (pre_prologue_obstack,
3973 post_prologue_obstack): Remove.
3974 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
3975 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
3976 with digraphs. This fixes lex params and parse params.
3977 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
3978 * src/output.c (prepare): Remove muscle insertion of the prologues.
3979 (output): Remove freeing of pre_prologue_obstack and
3980 post_prologue_obstack.
3981 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
3982 than prologue_augment for prologue parsing so you don't need prologue
3983 obstacks.
5c80250c
JD
3984 (grammar_declaration): For %union RHS, use `braceless' instead of
3985 "{...}" so that braces are already stripped and code is escaped with
3986 digraphs.
7ecec4dd
JD
3987 * src/reader.c (prologue_augment): Remove.
3988 (reader): Remove initialization of pre_prologue_obstack and
3989 post_prologue_obstack.
3990 * src/reader.h (prologue_augment): Remove.
3991
3992 * data/c.m4: Remove stray parenthesis.
3993
16dc6a9e
JD
39942007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3995
3996 Remove quotes from variables names in %define directives and from
3997 qualifiers in %code directives, and restrict the characters that are
3998 allowed in them to M4-friendly ones. For %define, continue to support
3999 the quoted form as a deprecated feature. Discussed starting at
4000 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
4001 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
4002 %code.
4003 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
4004 (Decl Summary): In %defines entry, update mention of `%code requires'
4005 and `%code provides'.
16dc6a9e
JD
4006 (C++ Location Values): Update %define uses.
4007 (Calc++ Parser Interface): Likewise.
4008 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 4009 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
4010 * src/parse-gram.y (prologue_declaration): For %define variables, use
4011 `variable' instead of `STRING'.
4012 (grammar_declaration): For %code qualifiers, use `ID' instead of
4013 `STRING'.
4014 (variable): New nonterminal that takes an `ID' or a `STRING'.
4015 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
4016 and %define uses.
4017 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
4018 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
4019 (%define errors): Update %define uses.
4020
e9813cd4
JD
40212007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4022
4023 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
4024 instead of muscle_insert for %define values so that M4-special
4025 characters are replaced with digraphs.
4026 * tests/input.at (%define errors): Extend to check weird values.
4027
6afc30cc
JD
40282007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
4029
4030 Instead of having skeletons declare all valid %define variables and
4031 %code qualifiers, provide macros that retrieve the associated values
4032 and build these lists automatically. Thus Bison will now warn when a
4033 variable or qualifier is not used by the skeleton in the current
4034 invocation regardless of whether it might sometimes be used by that
4035 skeleton in other invocations. Also, move all %define value macros to
4036 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
4037 form, which is replaced by %code.
4038 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
4039 (b4_check_user_names): ... this, and change the series of valid name
4040 arguments to a single list argument for names used in the skeleton
4041 similar to the existing list argument for names used in the grammar.
4042 Warn instead of complaining.
4043 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
4044 values and %code code, to format %code code properly, and to build
4045 lists of all %define variables and %code qualifiers used in the
4046 skeleton: b4_skeleton_percent_define_variables and
4047 b4_skeleton_percent_code_qualifiers.
4048 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
4049 Remove, and...
4050 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
4051 the skeleton names lists can finish building first. In place of
4052 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
4053 expect the lists b4_user_percent_define_variables and
4054 b4_user_percent_code_qualifiers.
4055 * data/c++.m4: Where setting default values for b4_parser_class_name,
4056 b4_location_type, b4_filename_type, b4_namespace, and
4057 b4_define_location_comparison, update their names to the
4058 b4_percent_define_ namespace.
4059 * data/glr.c: Don't use b4_check_percent_define_variables and
4060 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
4061 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
4062 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 4063 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
4064 * data/location.cc: Use b4_get_percent_define.
4065 * data/push.c: Don't use b4_check_percent_define_variables and
4066 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
4067 * data/yacc.c: Likewise, and don't call m4_exit in
4068 b4_use_push_for_pull_if or m4_wrap code will never execute.
4069 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
4070 Rename to...
4071 (muscle_grow_user_name_list): ... this for consistency with the
4072 terminology used in bison.m4.
4073 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
4074 %define variable names, and rename muscle used_percent_define_variables
4075 to user_percent_define_variables.
4076 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
4077 user_percent_code_qualifiers.
4078 (content): Remove.
4079 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
4080 {CODE} form is no longer accepted.
4081 * tests/input.at (Reject bad %code qualifiers): Rename to...
4082 (Reject unused %code qualifiers): ... this, and update test output.
4083 (%define error): Update test output.
4084
7eb8a0bc
JD
40852007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
4086
4087 Check for unrecognized %define variables similar to checking for
4088 unrecognized %code qualifiers. Check for redefined %define variables.
4089 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
4090 generalizes...
4091 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
4092 (b4_check_percent_define_variables): New, also wraps it.
4093 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
4094 variables using b4_check_percent_define_variables.
4095 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
4096 all those exercised in the test suite and all those listed in the
4097 `Default values' section of c++.m4. Are there others?
4098 * data/push.c, data/yacc.c: Declare no valid %define variables.
4099 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
4100 similar to muscle_find, but it works even when the muscle stores a
4101 const value.
4102 (muscle_grow_used_name_list): New function for constructing the used
4103 name list muscles that b4_check_for_unrecognized_names requires.
4104 * src/parse-gram.y (prologue_declaration): Warn if a variable is
4105 %define'd more than once. Define the b4_used_percent_define_variables
4106 muscle with muscle_grow_used_name_list.
4107 (grammar_declaration): Abbreviate %code code with
4108 muscle_grow_used_name_list.
4109 * tests/input.at (%define errors): New.
4110
3fc65ead
JD
41112007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4112
4113 Provide warn_at, complain_at, and fatal_at function callbacks to the
4114 skeletons, and use this for %code qualifier complaints.
4115 * data/bison.m4 (b4_error_at): New, invoked by...
4116 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
4117 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
4118 @fatal_at(...@) directives.
4119 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
4120 qualifiers in b4_used_percent_code_qualifiers and to use
4121 b4_complain_at.
4122 * src/location.c, src/location.h (boundary_set_from_string): New global
4123 function.
4124 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
4125 function.
4126 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
4127 to b4_used_percent_code_qualifiers.
4128 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
4129 function.
4130 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
4131 (lineno): Rename to...
4132 (out_lineno): ... this so I don't misunderstand it again.
4133 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
4134 here; these newlines are in the input but not the output file.
4135 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
4136 (at_directive_perform): ... this new static function, and add handling
4137 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
4138 directives.
4139 * tests/input.at (Reject bad %code qualifiers): Update test output with
4140 locations and extend.
4141
4142 * tests/output.at (Output file name: [, Output file name: ]): Remove
4143 bogus comment about these tests failing.
4144
1c7b7e1d
JD
41452007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
4146
4147 Clean up b4_check_percent_code_qualifiers a little.
4148 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
4149 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
4150 documentation and add examples.
4151 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
4152 qualifiers here.
4153
08af01c2
JD
41542007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
4155
4156 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
4157 unreliable -- especially when they're hidden inside another macro.
4158 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
4159 data/c.m4: Remove m4_divert(-1).
4160 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4161 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
4162 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 4163 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
4164 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
4165 pushed and popped by m4sugar, should be first on the stack.
4166
4167 Provide warn, complain, and fatal function callbacks to the skeletons.
4168 This provides more flexibility than m4_fatal, improves the error
4169 message format, and captures messages for translation. Discussed
4170 starting at
4171 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
4172 * data/bison.m4 (b4_error): New, invoked by...
4173 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
4174 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
4175 directives. Because these M4 macros might be called when the current
4176 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
4177 the previous removal of uses of m4_divert, which caused trouble.
4178 (b4_check_percent_code_qualifiers): Use b4_complain instead of
4179 m4_fatal to report unrecognized %code qualifiers.
4180 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
4181 push parser requests.
4182 * data/glr.c: Use b4_complain instead of m4_fatal to report
4183 non-deterministic push parser requests.
4184 Update @output usage to @output(...@) form.
4185 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
4186 report missing %defines. Update @output usage to @output(...@) form.
4187 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
4188 @output(...@) form.
4189 * src/main.c (main): Invoke skel_scanner_free.
4190 * src/scan-skel.h (skel_scanner_free): Prototype new function.
4191 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
4192 obstack_for_string from flex-scanner.h.
4193 (YY_DECL): Use to declare skel_lex static.
4194 (decode_at_digraphs): Remove; now handled in the new
4195 SC_AT_DIRECTIVE_ARG start condition.
4196 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
4197 functions.
4198 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
4199 at_directive_argv): New static globals.
4200 (INITIAL): Use fail_for_invalid_at.
4201 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
4202 recognize the start of a generalized `@directive(...@)' form and
4203 start...
4204 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
4205 directive args (using the new obstack_for_string), to decode the
4206 contained @ diagraphs, and to perform the directive. It recognizes
4207 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
4208 @output(...@).
4209 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
4210 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
4211 `@,'.
4212 (scan_skel): Initialize obstack_for_string on the first call.
4213 (skel_scanner_free): New function to free obstack_for_string.
4214 * tests/input.at (Reject bad %code qualifiers): Update test output.
4215
8e0a5e9e
JD
42162007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
4217
4218 Consolidate the 4 prologue alternative directives (%code, %requires,
4219 %provides, and %code-top) into a single %code directive with an
4220 optional qualifier field. Discussed at
4221 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
4222 * NEWS (2.3a+): Rewrite the existing entry for the prologue
4223 alternatives.
4224 * doc/bison.texinfo (Prologue Alternatives): Update.
4225 (Decl Summary): Update to %code "requires" and %code "provides".
4226 (Calc++ Parser): Update to %code "requires".
148d66d8 4227 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
4228 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
4229 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
4230 are replaced by b4_percent_code_provides and b4_percent_code_requires,
4231 which are skeleton-specific.
4232 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
4233 declare what %code qualifiers it supports and to complain if any other
4234 qualifiers were used in the grammar.
4235 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
4236 and b4_user_code([b4_percent_code_provides]) in place of
4237 b4_user_requires and b4_user_provides.
4238 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
4239 Add b4_user_code([b4_percent_code_top]) and
4240 b4_user_code([b4_percent_code]).
4241 Invoke b4_check_percent_code_qualifiers.
4242 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4243 PERCENT_REQUIRES): Remove.
4244 (grammar_declaration): Remove RHS's for %code-top, %provides, and
4245 %requires. Rewrite the %code RHS as the unqualified form defining the
4246 muscle b4_percent_code. Add another RHS for the qualified %code form,
4247 which defines muscles of the form b4_percent_code_QUALIFIER and the
4248 b4_used_percent_code_qualifiers muscle.
4249 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4250 PERCENT_REQUIRES): Remove.
4251 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
4252 %code "requires" and %code "provides".
4253 * tests/input.at (Reject bad %code qualifiers): New.
4254
95021767
JD
42552007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4256
4257 Use the new code_props interface for destructors and printers.
4258 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
4259 printer_location members, and change the type of the destructor and
4260 printer members to code_props.
4261 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
4262 symbol_printer_get, semantic_type_destructor_set,
4263 semantic_type_printer_set, default_tagged_destructor_set,
4264 default_tagless_destructor_set, default_tagged_printer_set,
4265 default_tagless_printer_set): Use code_props in arguments and return
4266 types in place of char const * and location.
4267 (symbol_destructor_location_get, symbol_printer_location_get): Remove
4268 since the locations are now contained in the return of
4269 symbol_destructor_get and symbol_printer_get.
4270 * src/output.c (symbol_destructors_output, symbol_printers_output):
4271 Replace with...
4272 (symbol_code_props_output): ... this to eliminate duplicate code.
4273 (output_skeleton): Update to use symbol_code_props_output.
4274 * src/reader.c (symbol_should_be_used): Update use of
4275 symbol_destructor_get.
4276 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
4277 Update uses of the various _destructor_set and _printer_set functions.
4278 * src/symtab.c: (default_tagged_destructor_location,
4279 default_tagless_destructor_location, default_tagged_printer_location,
4280 default_tagless_printer_location): Remove since we...
4281 (default_tagged_destructor, default_tagless_destructor,
4282 default_tagged_printer, default_tagless_printer): ... change the type
4283 of these to code_props.
4284 (symbol_new, semantic_type_new, symbol_destructor_set,
4285 semantic_type_destructor_set, symbol_destructor_get,
4286 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
4287 symbol_check_alias_consistency, default_tagged_destructor_set,
4288 default_tagless_destructor_set, default_tagged_printer_set,
4289 default_tagless_printer_set): Update.
4290 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
4291 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
4292 code_props members.
4293 (symbol_print): Use SYMBOL_CODE_PRINT.
4294
f6857bbf
JD
42952007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4296
4297 Use the new code_props interface for rule actions.
4298 * src/symlist.h (symbol_list): Replace action, action_location, and
4299 used members with a code_props action_props member.
4300 * src/reader.c (symbol_should_be_used, grammar_rule_check,
4301 grammar_midrule_action, grammar_current_rule_merge_set,
4302 grammar_current_rule_symbol_append, packgram): Update.
4303 * src/scan-code.h (translate_rule_action): Remove, no longer used.
4304 * src/scan-code.l (handle_action_dollar): Update.
4305 (translate_rule_action): Remove, no longer used.
4306 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
4307
7c0c6181
JD
43082007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4309
4310 Use the new code_props interface in parse-gram.y.
4311 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
4312 Update all uses of translate_* functions to use the new code_props
4313 interface and to use gram_scanner_last_string_free and
4314 code_scanner_last_string_free where possible.
4315 (grammar_declaration): symbol_list_destructor_set and
4316 symbol_list_printer_set now perform the translation, so don't do it
4317 here. Use gram_scanner_last_string_free where possible.
4318 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
4319 translate_code): Remove, no longer used.
4320 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
4321 symbol_list_printer_set): Perform code translation here rather than
4322 depending on the caller to do so.
4323
4324 * src/symlist.h (struct symbol_list): Correct some documentation typos.
4325 * src/scan-gram.h (gram_last_string): Remove declaration.
4326 * src/scan-gram.l (last_string): Declare it static.
4327
28e52c0d
JD
43282007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4329
4330 Encapsulate code properties and related functionality for the various
4331 destructors, printers, and actions into a code_props structure and
4332 interface. This patch merely implements code_props in scan-code.h and
4333 scan-code.l. Future patches will rewrite other modules to use it.
4334 Discussed starting at
4335 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
4336 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
4337 consistently initialize const structs that have an empty location
4338 field.
4339 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
4340 to ensure consistency.
4341 * src/scan-code.h (code_props): New structure.
4342 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
4343 function, macro, and const global variable for initializing a
4344 code_props with no code.
4345 (code_props_plain_init, code_props_symbol_action_init,
4346 code_props_rule_action_init, code_props_translate_code): The rest of
4347 the new code_props functional interface. Among other things, the init
4348 functions set the code_props kind field so that
4349 code_props_translate_code will know whether to behave like
4350 translate_symbol_action, translate_rule_action, or translate_code.
4351 These old translate functions must remain until all other modules are
4352 updated to use the new code_props interface.
4353 (code_scanner_last_string_free): New function similar to
4354 gram_scanner_last_string_free.
4355 (code_scanner_free): Add documentation.
4356 * src/scan-code.l: Implement the new interface.
4357 (code_lex): Make it static, add a code_props* argument, and remove the
4358 rule argument.
4359 (last_string): New static global similar to the one in scan-gram.l.
4360 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
4361 instead of rule.
4362 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
4363 code_props since Bison may one day use this information for destructors
4364 and printers.
4365 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
4366 (handle_action_dollar): Use symbol_list_n_get and set used flag
4367 directly since symbol_list_n_used_set is removed.
4368 (translate_action): Add a code_props* argument and remove the rule,
4369 action, and location arguments. Pass the code_props* on to code_lex.
4370 (translate_rule_action, translate_symbol_action, translate_code):
4371 Rewrite as wrappers around the new code_props interface.
4372 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
4373 it would eventually need to break the encapsulation of code_props.
4374
96034983
JD
43752007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4376
4377 * etc/.cvsignore: New.
4378
945e396c
JD
43792007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4380
4381 Add maintainer-push-check to run maintainer-check using push parsing in
4382 place of pull parsing where available.
4383 * Makefile.am (maintainer-push-check): New.
4384 * data/bison.m4 (b4_use_push_for_pull_if): New.
4385 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
4386 appropriately based on their existing values.
4387 (yypush_parse): Don't print push-parser-specific diagnostics if push
4388 parsing is being used in place of pull parsing.
4389 * data/yacc.c: If push parsing should replace pull parsing, redirect to
4390 push.c.
4391 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
4392 variable, and insert b4_use_push_for_pull_flag into muscles.
4393 * tests/Makefile.am (maintainer-push-check): New.
4394
7d596384
JD
43952006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4396
4397 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
4398 (whether successful or failed) so that yypush_parse can be invoked
4399 again to start a new parse using the same yypstate.
4400 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
4401 check multiple yypull_parse invocations on the same yypstate. For pull
4402 mode, extend to check multiple yyparse invocations.
4403 (Exploding the Stack Size with Alloca): Extend to try with
4404 %push-pull-parser.
4405 (Exploding the Stack Size with Malloc): Likewise.
4406
4407 * tests/calc.at (Simple LALR Calculator): Don't specify
4408 %skeleton "push.c" since %push-pull-parser implies that now.
4409 * tests/headers.at (export YYLTYPE): Don't check for the push
4410 declarations. Otherwise, this test case can't be used to see if push
4411 mode can truly emulate pull mode.
4412 * tests/input.at (Torturing the Scanner): Likewise.
4413 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
4414 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
4415 AT_YACC_IF, which now includes the case of push mode since %skeleton
4416 need not be used for push mode. This will be more intuitive once
4417 push.c is renamed to yacc.c.
4418
7172e23e
JD
44192006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4420
4421 For push mode, convert yyparse from a macro to a function, invoke yylex
4422 instead of passing a yylexp argument to yypull_parse, and don't
4423 generate yypull_parse or yyparse unless %push-pull-parser is declared.
4424 Discussed starting at
4425 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
4426 * data/bison.m4 (b4_pull_if): New.
4427 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
4428 * data/push.c: Improve M4 quoting a little.
4429 (b4_generate_macro_args, b4_parenthesize): Remove.
4430 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
4431 any time a pull parser is requested.
4432 Don't #define this as a wrapper around yypull_parse. Instead, when
4433 both push and pull are requested, make it a function that does that
4434 same thing.
4435 (yypull_parse): If there's a b4_prefix, #define this to
4436 b4_prefix[pull_parse] when both push and pull are requested.
4437 Don't define this as a function unless both push and pull are
4438 requested.
4439 Remove the yylexp argument and hard-code yylex invocation instead.
4440 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
4441 %push-parser.
4442 * src/getargs.c (pull_parser): New global initialized to true.
4443 * getargs.h (pull_parser): extern it.
4444 * src/output.c (prepare): Insert pull_flag muscle.
4445 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
4446 (prologue_declaration): Set both push_parser and pull_parser = true for
4447 %push-pull-parser. Set push_parser = true and pull_parser = false for
4448 %push-parser.
4449 * src/scan-gram.l: Don't accept %push_parser as an alternative to
4450 %push-parser since there's no backward-compatibility concern here.
4451 Scan %push-pull-parser.
4452 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
4453 instead of %push-parser.
4454 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
4455 prototype it in the module that calls yyparse.
4456 * tests/input.at (Torturing the Scanner): Likewise.
4457 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
4458
2e7944cb
JD
44592006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
4460
4461 Update etc/bench.pl. Optimize push mode a little (the yyn change
4462 deserves most of the credit).
4463 * Makefile.am (SUBDIRS): Add etc subdirectory.
4464 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
4465 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
4466 yytoken, yyval, and yyloc declarations to...
4467 (yyparse or yypush_parse): ... here to improve performance. For
4468 yypush_parse invocations after the first, be sure to assign yyn its old
4469 value again.
4470 (yypstate_new): Don't bother initializing the yyresult field since the
4471 initial value isn't used.
4472 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
4473 remove the #define that, in push mode, set it to yyps->NAME.
4474 * etc/Makefile.am: New.
4475 * etc/bench.pl: Remove and build it instead from...
4476 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
4477 "tests/bison" from the build directory by default rather than just
4478 invoking "bison" from $PATH.
4479 (calc_grammar): Update push parser code: don't declare yylval globally,
4480 don't define yyparse_wrapper, and don't #define yyparse.
4481 (bench_grammar): Update to check all working combinations of yacc.c,
4482 push.c, impure, pure, pull, and push.
4483
c3d50342
JD
44842006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4485
4486 For push mode, add pull wrappers around yypush_parse.
4487 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
4488 (yypull_parse): New function wrapping yypush_parse.
4489 (yyparse): New #define wrapping yypull_parse.
4490 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
4491 is declared.
4492 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
4493 prototype yylex in the module that calls yyparse, and don't prototype
4494 yyparse there. Otherwise, the yyparse expansion won't compile.
4495 * tests/input.at (Torturing the Scanner): Likewise.
4496
94ebeba5
JD
44972006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4498
4499 Enable push parsers to operate in impure mode. Thus, %push-parser no
4500 longer implies %pure-parser. The point of this change is to move
4501 towards being able to test the push parser code by running the entire
4502 test suite as if %push-parser had been declared.
4503 * data/push.c (yypush_parse): For impure mode, remove the
4504 yypushed_char, yypushed_val, and yypushed_loc arguments.
4505 Instead, declare these as local variables initialized to the global
4506 yychar, yylval, and yylloc.
4507 For the first yypush_parse invocation only, restore the initial values
4508 of these global variables when it's time to read a token since they
4509 have been overwritten.
4510 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
4511 %push-parser.
4512 * tests/calc.at (Simple LALR(1) Calculator): Always declare
4513 %pure-parser along with %push-parser since this test case was designed
4514 for pure push parsers.
4515 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
4516 (AT_YACC_OR_PUSH_IF): New.
4517 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
4518 add a note that it's still wrong for some cases (as it has been for a
4519 while).
4520 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
4521 %push-parser no longer implies %pure-parser.
4522
a0633178
JD
45232006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4524
4525 Remove some unnecessary differences between the pull parser code and
4526 the push parser code. This patch enables yynerrs in push mode.
4527 * data/push.c: Reformat M4 a little.
4528 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
4529 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
4530 because push mode is on. Instead, if pure mode is on, move yynerrs
4531 to...
4532 (b4_declare_parser_state_variables): ... here.
4533 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
4534 to yyps->NAME so it can be used in yypush_parse.
4535 (yypush_parse): Don't omit uses of yynerrs in push mode.
4536
8646b6a3
JD
45372006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4538
4539 Fix bug such that the first pushed token's value and location are
4540 sometimes overwritten (sometimes by %initial-action) before being used.
4541 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
4542 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
4543 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
4544 more closely mimic the pull parser logic.
4545 Don't copy the pushed token to yychar, yylval, and yylloc until it's
4546 time to read a token, which is after any initialization of yylval and
4547 yylloc.
4548 (gottoken): Rename label to...
4549 (yyread_pushed_token): ... for clarity and to avoid infringing on the
4550 user namespace.
4551
9baf4d74
JD
45522006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4553
4554 Rearrange initialization of the parser state variables so that the
4555 skeleton doesn't have to have a copy for pull mode and another for push
4556 mode. This patch also fixes at least a bug such that yylloc was not
4557 initialized (with b4_location_initial_line and
4558 b4_location_initial_column) upon calling yypush_parse. However, that
4559 initialization now overwrites the first token's location;
4560 %initial-action assigning @$ already did the same thing, and both bugs
4561 will be fixed in a later patch.
4562 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
4563 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4564 yyss, yyvs, yyls, and yystacksize.
4565 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4566 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4567 yylsp.
4568 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4569 yyps->NAME so it can be used in yypush_parse.
4570 (yyparse or yypush_parse): For yypush_parse, don't print the
4571 "Starting parse" diagnostic for invocations after the first.
4572 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4573 yypush_parse, only do it for the first invocation.
4574 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4575 initialization to occur in yypush_parse but only on the first
4576 invocation.
4577
23522164
JD
45782006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4579
4580 * data/push.c: Add CPP guards around push parser declarations in both
4581 the header and the code file.
4582 In the code file, move the push parser declarations to the same place
4583 they appear in the header file.
4584 Clean up the M4 some, especially the inconsistent underquoting in
4585 some b4_c_function_def and b4_c_function_decl uses.
4586
bb010fe5
JD
45872006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4588
4589 Encapsulate the push parser state variables into an M4 macro so the
4590 push skeleton doesn't have to list them again for pull mode's yyparse.
4591 For push mode, remove yypush_parse's local equivalents of these
4592 variables to eliminate unnecessary copying between the two sets at
4593 run-time. This patch also fixes at least a bug related to multiple
4594 %initial-action invocations in push mode.
4595 * data/push.c (b4_declare_parser_variables): Rename to...
4596 (b4_declare_scanner_communication_variables): ... this for clarity and
4597 update both uses.
4598 (b4_declare_yyparse_variables): Remove and move its contents to the one
4599 spot where it was invoked.
4600 (b4_declare_parser_state_variables): New macro containing the parser
4601 state variables required by push mode.
4602 (struct yypstate): Replace all fields but yynew with
4603 b4_declare_parser_state_variables.
4604 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4605 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4606 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4607 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4608 parser state variable declarations with
4609 b4_declare_parser_state_variables.
4610 Don't initialize parser state variables when calling yypush_parse since
4611 yypstate_new already does that.
4612 Invoke the user's initial action only upon the first yypush_parse
4613 invocation.
4614 Remove all code that copies between the local parser state variables
4615 and the yypstate.
4616
2d212f8c
JD
46172006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4618
4619 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4620 prevent a name collision in a future patch where these names will
4621 sometimes be #define'd.
4622 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4623 since it no longer has the same name as the existing argument.
4624 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4625
e6e704dc
JD
46262006-12-19 Paolo Bonzini <bonzini@gnu.org>
4627 and Joel E. Denny <jdenny@ces.clemson.edu>
4628
4629 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4630 that the argument is case-insensitive, and there's no `=' here.
4631 For the %skeleton entry, mention that %language is better.
4632 (Bison Options): Likewise for --language and --skeleton. Move the
4633 --skeleton entry so that the `Tuning the parser' section is sorted
4634 alphabetically on long options.
4635 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4636 %language directive in detail here; cross-reference the %language
4637 documentation instead.
4638 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4639 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 4640 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
4641 * examples/extexi (normalize): Instead of replacing every %require
4642 argument with the current Bison version, just substitute for
4643 `@value{VERSION}'. This guarantees that we're testing what actually
4644 appears in the documentation.
4645 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4646 rather than `@VERSION@'.
4647
0e021770
PE
46482006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4649
fd575f05
PE
4650 * NEWS: Reword the %language news a bit, and put it earlier.
4651
0e021770
PE
4652 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4653 Rewrite to simplify the logic.
4654 (language_argmatch): Likewise.
fd575f05
PE
4655 (program_name): We now own this var.
4656 * src/getargs.h (struct bison_language): Use char[] rather than
4657 const char *.
0e021770
PE
4658
4659 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4660 Java is supported.
4661 * src/complain.c (program_name): Remove decl; no longer needed.
4662 * src/main.c (program_name): Remove; now belongs to getargs.
4663
46642006-12-18 Paolo Bonzini <bonzini@gnu.org>
4665
4666 * NEWS: Document %language.
4667
4668 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4669
4670 * data/c-skel.m4, data/c++-skel.m4: New files.
4671 * data/glr.c: Complain on push parsers.
4672
4673 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4674 over %skeleton.
148d66d8 4675 (Decl Summary): Document %language and %skeleton.
0e021770
PE
4676 (Command line): Document -L.
4677
4678 * examples/extexi: Rewrite %require directive.
4679 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4680
4681 * src/files.c (compute_exts_from_gc): Look in language structure
4682 for .y extension.
4683 (compute_file_name_parts): Check whether .tab should be added.
4684 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4685 (language, skeleton_arg, language_argmatch): New.
4686 (long_options): Add --language.
4687 (getargs): Use skeleton_arg, add -L/--language.
4688 * src/getargs.h: Include location.h.
4689 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4690 * src/output.c (prepare): Pick default skeleton from struct language.
4691 Don't dispatch C skeletons here.
4692 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4693 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4694 * src/scan-gram.l ("%language"): New rule.
4695
4696 * tests/calc.at: Test %skeleton and %language.
4697 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4698 (AT_GLR_IF): Look for %skeleton "glr.cc".
4699 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4700 (AT_YACC_IF): Reject %language.
4701
5691bf57
PE
47022006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4703
db06f0ce
PE
4704 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4705 since it wasn't used; only the typedef name 'semantic_type' is needed.
4706 Also, omit trailing white space.
4707
5691bf57
PE
4708 * bootstrap: Sync from coreutils.
4709 (gnulib_extra_files): Add build-aux/announce.gen.
4710 (slurp): Adjust .gitignore files like .cvsignore files.
4711 * build-aux/announce-gen: Remove from CVS, since bootstrap
4712 now creates this.
4713
791934e4
JD
47142006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4715
4716 Make %push-parser imply %pure-parser. This fixes several bugs; see
4717 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4718 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4719 pure_parser = true.
4720 * data/push.c: Don't bother testing b4_push_if when deciding whether
4721 to expand b4_declare_parser_variables globally.
4722 (yypush_parse): Likewise in here.
4723
4724 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4725 (yy_reduce_print): Reformat M4 for readability.
4726
ee5abb37
JD
47272006-12-15 Bob Rossi <bob@brasko.net>
4728 and Joel Denny <jdenny@ces.clemson.edu>
4729
4730 * data/push.c (yypstate): Add typedef, and update all uses of
4731 struct yypstate to just yypstate.
4732 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4733
16ca01f9
JD
47342006-12-14 Bob Rossi <bob@brasko.net>
4735
4736 * data/push.c (yypush_parse): Declare prototype regardless of
4737 %locations option.
4738
ab8e7e1a
JD
47392006-12-14 Bob Rossi <bob@brasko.net>
4740
4741 * data/push.c (yyparse): Remove the prototype and the #define when in
4742 push-parser mode.
4743
9bf32be3
JD
47442006-12-13 Bob Rossi <bob@brasko.net>
4745
4746 * data/push.c (yypstate_init): Rename to...
4747 (yypstate_new): ... this and use b4_c_function_def.
4748 (yypstate_delete): New.
4749 (yypush_parse): Change parameters yynval and yynlloc to be const.
4750 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4751 yypstate_delete functions.
4752
f02e2948
JD
47532006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4754
4755 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4756 strange test case titles. Reported by Bob Rossi.
4757
38eb7751
PE
47582006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4759
4760 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4761 of potential ambiguities in GLR grammers.
4762
bd9d212b
JD
47632006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4764
4765 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4766 `bison ', use m4_index instead of m4_substr since chopping up a string
4767 containing M4-special characters causes problems here.
4768
4769 Fix a couple of bugs related to special characters in user-specified
4770 file names, and make it easier for skeletons to compute output file
4771 names with the same file name prefix as Bison-computed output file
4772 names.
4773 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4774 b4_parser_file_name and b4_spec_defines_file instead of
4775 @output_parser_name@ and @output_header_name@, which are now redundant.
4776 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4777 b4_parser_file_name, b4_spec_defines_file, and the new
4778 @basename(FILENAME@) instead of @output_parser_name@ and
4779 @output_header_name@, which inappropriately escaped the file names as
4780 C string literals.
4781 * src/files.c (all_but_ext): Remove static qualifier.
4782 (compute_output_file_names): Move `free (all_but_ext)' to...
4783 (output_file_names_free): ... here since all_but_ext is needed later.
4784 * src/files.h (all_but_ext): Extern.
4785 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4786 exactly what MUSCLE_INSERT_STRING used to do.
4787 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4788 characters are escaped properly.
4789 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4790 all_but_ext.
4791 For pkgdatadir muscle, maintain previous functionality by using
4792 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4793 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4794 digraphs would never be expanded. Hopefully no one has M4-special
4795 characters in his Bison installation path.
4796 * src/scan-skel.l: Don't parse @output_header_name@ and
4797 @output_parser_name@ anymore since they're now redundant.
4798 In @output, use decode_at_digraphs.
4799 Parse a new @basename command that invokes last_component.
4800 (decode_at_digraphs): New.
4801 (BASE_QPUTS): Remove unused.
4802 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4803 (Output file name): New tests.
4804
3f7ca628
JD
48052006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4806
4807 Warn about output files that are generated by the skeletons and that
4808 conflict with other output files.
4809 * data/glr.c: Don't generate the header file here when glr.cc does.
4810 * src/files.c (file_names, file_names_count): New static globals.
4811 (compute_output_file_names): Invoke output_file_name_check for files
4812 not generated by the skeletons and remove existing checks.
4813 (output_file_name_check): New function that warns about conflicting
4814 output file names.
4815 (output_file_names_free): Free file_names.
4816 * src/files.h (output_file_name_check): Declare.
4817 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4818 the skeletons.
4819 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4820 (Conflicting output files): New tests.
4821
178e123e
PE
48222006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4823
4824 * doc/bison.texinfo: Fix a couple of typos.
4825
48262006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
4827
4828 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4829 Rename to...
4830 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4831 update all uses.
4832 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4833 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4834 local pv.
4835 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4836 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4837
ea17f233
JD
48382006-12-07 Bob Rossi <bob@brasko.net>
4839 and Joel Denny <jdenny@ces.clemson.edu>
4840
4841 * data/push.c (yypvarsinit): Change return type from void* to struct
4842 yypvars*. No longer cast to void* on return.
4843 (struct yypvars): Remove yylen since it need not be remembered between
4844 yypushparse invocations.
4845 (yypushparse): Don't copy between yylen and pv->yylen.
4846
55a30bda
JD
48472006-12-05 Bob Rossi <bob@brasko.net>
4848
4849 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4850 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4851 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4852 (struct yypvars): Remove b4_declare_parser_variables.
4853 (yypvarsinit): Remove init code for removed variables.
4854 (global scope): Do not declare b4_declare_parser_variables if
4855 push or pure mode.
4856 (yypushparse): Add b4_declare_parser_variables.
4857 Init new local variables, and remove init code for removed
4858 yypvars variables.
4859 (yyparse): Delete.
4860 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4861 and yyparse for other modes.
4862 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4863 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4864 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4865 (AT_PURE_LEX_IF): True if pure or push parser.
4866
85894313
JD
48672006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4868
4869 Document Yacc prologue alternatives and default %destructor's and
4870 %printer's as experimental. Don't mention Java yet. Discussed at
4871 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4872 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4873 (2.3a): Annotate this entry to say the old forms of these features were
4874 also experimental.
4875 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 4876 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
4877 of Java (we'll want this back eventually).
4878
02975b9a
JD
48792006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4880
4881 Support a file name argument to %defines. Deprecate `=' in
4882 %file-prefix, %name-prefix, and %output. Discussed at
4883 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4884 * NEWS (2.3a+): Mention.
148d66d8 4885 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
4886 form of %defines, and remove `=' from entries for %file-prefix,
4887 %name-prefix, and %output.
4888 * src/parse-gram.y (prologue_declaration): Implement.
4889 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4890 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4891 all but one occurrence of %name-prefix.
4892 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4893 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4894 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4895 occurrence of each of %file-prefix and %output. Add check for %defines
4896 with argument.
4897 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4898 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4899 Remove the `=' from %output.
4900
287b314e
JD
49012006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4902
4903 Don't escape $ in test case titles since Autoconf 2.61 now does that
4904 correctly.
4905 * tests/actions.at (Default %printer and %destructor are not for error
4906 or $undefined): Here.
4907 (Default %printer and %destructor are not for $accept): Here.
4908 * tests/input.at (Invalid $n and @n): Here.
4909
3ebecc24
JD
49102006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
4911
4912 Rename <!> to <>. Discussed starting at
4913 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
4914 * NEWS (2.3a+): Update.
148d66d8 4915 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
4916 Update.
4917 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
4918 * src/scan-gram.l (INITIAL): Implement.
4919 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
4920 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
4921 comment.
4922 * tests/actions.at (Default tagless %printer and %destructor,
4923 Default tagged and per-type %printer and %destructor,
4924 Default %printer and %destructor are not for error or $undefined,
4925 Default %printer and %destructor are not for $accept,
4926 Default %printer and %destructor for mid-rule values): Update.
4927 * tests/input.at (Default %printer and %destructor redeclared,
4928 Unused values with default %destructor): Update.
4929
26b8a438
JD
49302006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4931
4932 Don't let %prec take a nonterminal.
4933 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
4934 token.
4935 * tests/input.at (%prec takes a token): New test checking that %prec
4936 won't take a nonterminal.
4937
07c39ae9
JD
49382006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4939
405d53b7
JD
4940 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
4941 it was double-quoted.
07c39ae9
JD
4942 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
4943 grammar is maintained with Bison's highest standards.
4944 * src/getargs.c: Fix some typos in Doxygen comments.
4945
580b8926
JD
49462006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4947
4948 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
4949 later. Reported by Paul Eggert in
4950 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
4951 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
4952 * src/scan-code.l (translate_action): Don't bother invoking
4953 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
4954 (code_scanner_free): Instead of invoking
4955 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
4956 which frees more.
4957 * src/scan-gram.l (gram_scanner_free): Likewise.
4958 * src/scan-skel.l (scan_skel): Likewise.
4959
4502eadc
JD
49602006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4961
4962 * src/files.c (tr): Change return type to void.
4963 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
4964 has been called previously for the same key.
4965 (muscle_find): Return storage instead of value so that
4966 --enable-gcc-warnings doesn't produce warnings that the return discards
4967 const. aver that the value and storage are the same since storage
4968 could potentially be NULL when value is not.
4969 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
4970 same as 0.
4971
7746c8f6
PE
49722006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4973
4974 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
4975 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
4976 us a slightly cleaner distribution, and also works.
4977 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
4978 gnulib changes.
4979
eb095650
PE
49802006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
4981 and Paul Eggert <eggert@cs.ucla.edu>
4982
4983 Don't let Bison leak memory except when it complains.
4984 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
4985 (spec_defines_file, dir_prefix): Now char *, not const char *,
4986 since they are freed.
4987 * src/files.c: Likewise.
4988 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
4989 Likewise.
4990 (tr): Now operates in-place. All uses changed.
4991 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
4992 values.
4993 (compute_file_name_parts, compute_output_file_names): Don't store
4994 read-only data in variables that will be freed.
4995 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
4996 src_extension, and header_extension.
4997 (output_file_names_free): New public function to free
4998 spec_verbose_file, spec_graph_file, spec_defines_file,
4999 parser_file_name, and dir_prefix.
5000 * src/getargs.c (getargs): Don't store read-only data in variables that
5001 will be freed.
5002 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
5003 (which previously existed but was unused), and quotearg_free.
5004 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
5005 * src/muscle_tab.c: Likewise.
5006 (muscle_entry): Make the value char const *,
5007 and add a new storage member that is char * and can be freed.
5008 (muscle_entry_free): New private function.
5009 (muscle_init): Use it instead of free.
5010 (muscle_insert, muscle_grow): Update and use new storage member.
5011 (muscle_code_grow): Free the string passed to muscle_grow
5012 since it's not needed anymore.
5013 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
5014 add a new `char *code' member.
5015 ("{...}"): Declare semantic type as code.
5016 * src/scan-code.h (translate_rule_action):
5017 (translate_symbol_action, translate_code, translate_action): Return
5018 `char const *' rather than `char *' since external code should not free
5019 these strings.
5020 * src/scan-code.l: Likewise.
5021 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
5022 which is "{...}" in the parser.
5023 * tests/Makefile.am (maintainer-check-valgrind): Set
5024 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
5025 Valgrind.
5026 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
5027 complain.
5028 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
5029 expecting a non-zero exit status sets --leak-check=summary and
5030 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
5031 this case, and we don't want to hear about it.
5032
ac564be4
PE
50332006-11-08 Paul Eggert <eggert@cs.ucla.edu>
5034
5035 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
5036 instead of from the template, to simplify configuration a bit.
5037 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
5038 and m4/wint_t.m4, as they are needed with the latest gnulib.
5039
17bd8a73
JD
50402006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5041
5042 Disable unset/unused mid-rule value warnings by default, and recognize
5043 --warnings=midrule-values to enable them. Discussed starting at
5044 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
5045 * NEWS (2.3a+): Mention.
5046 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
5047 warnings): Add entry for midrule-values subargument.
5048 * src/reader.c (symbol_should_be_used): Don't return true just because
5049 the value is a set/used mid-rule value unless
5050 --warnings=midrule-values was specified.
5051 * tests/input.at (Unused values, Unused values before symbol
5052 declarations): Run tests with and without --warnings=midrule-values.
5053
5054 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
5055 than LIST_FREE directly.
5056
89eb3c76
JD
50572006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5058
5059 Finish implementing --warnings=error, which should not be implied by
5060 --warnings=all (or by its synonyms -W and --warnings without
5061 subarguments).
5062 * src/complain.c (set_warning_issued): New function to report that
5063 warnings are being treated as errors and to record an error if so.
5064 Invoke...
5065 (warn_at, warn): ... here.
5066 * src/getargs.c (warnings_args, warnings_types): Reorder so that
5067 "error - warnings are errors" does not appear above "all - all of the
5068 above".
5069 (getargs): For -W and --warnings without subarguments, don't let
5070 FLAGS_ARGMATCH set warnings_error in warnings_flag.
5071 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
5072
ba7560e2
JD
50732006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
5074
5075 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
5076 empty subargument list. For example: `bison --warnings= parser.y'.
5077
31283fc3
JD
50782006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5079
5080 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
5081 the parser header file so that gcc doesn't warn.
5082
12e35840
JD
50832006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5084
5085 Split the default %destructor/%printer into two kinds: <*> and <!>.
5086 Discussed starting at
5087 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
5088 * NEWS (2.3a+): Mention.
5089 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
5090 previous change today related to mid-rules.
148d66d8 5091 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 5092 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
5093 (TYPE_TAG_ANY): Add as <*>.
5094 (TYPE_TAG_NONE): Add as <!>.
5095 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
5096 for <*> and <!>.
5097 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
5098 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
5099 * src/symlist.c (symbol_list_default_new): Split into tagged and
5100 tagless versions.
5101 (symbol_list_destructor_set, symbol_list_printer_set): Split
5102 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
5103 SYMLIST_DEFAULT_TAGLESS.
5104 * src/symlist.h: Update symbol_list_default*_new prototypes.
5105 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
5106 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
5107 * src/symtab.c (default_destructor, default_destructor_location,
5108 default_printer, default_printer_location): Split each into tagged and
5109 tagless versions.
5110 (symbol_destructor_get, symbol_destructor_location_get,
5111 symbol_printer_get, symbol_printer_location_get): Implement tagged
5112 default and tagless default cases.
5113 (default_destructor_set, default_printer_set): Split each into tagged
5114 and tagless versions.
5115 * src/symtab.h: Update prototypes.
5116 * tests/actions.at (Default %printer and %destructor): Rename to...
5117 (Default tagless %printer and %destructor): ... this, and extend.
5118 (Per-type %printer and %destructor): Rename to...
5119 (Default tagged and per-type %printer and %destructor): ... this, and
5120 extend.
5121 (Default %printer and %destructor for user-defined end token): Extend.
5122 (Default %printer and %destructor are not for error or $undefined):
5123 Update.
5124 (Default %printer and %destructor are not for $accept): Update.
5125 (Default %printer and %destructor for mid-rule values): Extend.
5126 * tests/input.at (Default %printer and %destructor redeclared): Extend.
5127 (Unused values with default %destructor): Extend.
5128
f91b1629
JD
51292006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
5130
5131 Don't apply the default %destructor/%printer to an unreferenced midrule
5132 value. Mentioned at
5133 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
5134 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
5135 like $@n instead of just @n so that the default %destructor/%printer
5136 logic doesn't see them as user-defined symbols.
5137 (symbol_is_dummy): Check for both forms of the name.
5138 * src/reader.c (packgram): Remove the `$' from each midrule symbol
5139 name for which the midrule value is referenced in any action.
5140 * tests/actions.at (Default %printer and %destructor for mid-rule
5141 values): New test.
5142 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
5143 for change to dummy symbol names.
5144
519d0004
JD
51452006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
5146
5147 Warn about unset midrule $$ if the corresponding $n is used.
5148 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
5149 $n usage.
5150 (packgram): Before invoking grammar_rule_check on any rule, make sure
5151 all actions have already been scanned in order to set `used' flags.
5152 Otherwise, checking that a midrule's $$ is set will not always work
5153 properly because the midrule check must forward-reference the midrule's
5154 parent rule.
5155 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
5156 warning.
5157
a501eca9
JD
51582006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
5159
5160 More improvements to the documentation of the prologue alternatives:
5161 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
5162 Bison manual.
5163 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
5164 some text to clarify the relative importance of the new directives and
5165 to show how these directives may be viewed as code labels.
5166
2cbe6b7f
JD
51672006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
5168
5169 Similar to the recently removed %before-header, add %code-top as the
5170 alternative to the pre-prologue. Mentioned at
5171 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
5172 Also, let the prologue alternatives appear in the grammar section.
5173 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
5174 (prologue_declaration): Move the existing prologue alternatives to...
5175 (grammar_declaration): ... here and add %code-top.
5176 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
5177
5178 Clean up and extend documentation for the prologue alternatives.
5179 * NEWS (2.3a+): Describe prologue alternatives.
5180 * doc/bison.texinfo (Prologue): Move discussion of prologue
5181 alternatives to...
5182 (Prologue Alternatives): ... this new section, and extend it to discuss
5183 all 4 directives in detail.
148d66d8
JD
5184 (Table of Symbols): Clean up discussion of prologue alternatives and
5185 add %code-top.
2cbe6b7f 5186
e557d3ea
JMG
51872006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5188
5189 DJGPP specific issues.
5190
5191 * djgpp/config.bat: config.hin has been moved to lib. Adjust
5192 config.bat accordingly.
5193 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
5194 * djgpp/config.site: Likewise.
5195
136a0f76
PB
51962006-10-16 Paolo Bonzini <bonzini@gnu.org>
5197
27bd5d67
PB
5198 Replace %*-header with %provides, %requires, %code. See discussion at
5199 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
5200
136a0f76
PB
5201 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
5202 (b4_user_start_header): Remove.
5203 * data/glr.c: Use new macros instead of b4_*start_header
5204 and b4_*end_header.
5205 * data/glr.cc: Likewise.
5206 * data/lalr1.cc: Likewise.
5207 * data/push.c: Likewise.
5208 * data/yacc.c: Likewise.
5209
5210 * doc/bison.texinfo: Remove %before-header, rename
5211 %{start,end,after}-header to %requires, %provides, %code.
5212
5213 * src/parse-gram.y: Likewise (also rename token names accordingly).
5214 * src/scan-gram.l: Likewise.
5215 * tests/actions.at: Likewise.
5216
10f429ef
PE
52172006-10-14 Paul Eggert <eggert@cs.ucla.edu>
5218
5219 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
5220 Problem reported by Joel E. Denny.
5221
52222006-10-14 Jim Meyering <jim@meyering.net>
5223
5224 (Sync from coreutils.)
5225 Work also when the working directory (with e.g. coreutils sources)
5226 is version controlled with git, rather than CVS.
5227 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
5228 rather than CVS.
5229 In messages and comments, say e.g., "checked-out sources",
5230 rather than "CVS sources".
5231 (version_controlled_file): New function. Work for git as well as
5232 for CVS. Don't use grep's -q option.
5233 (slurp): Call it here, in place of CVS-specific code.
5234
c4bd5bf7
JD
52352006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
5236
5237 Fix testsuite for ./configure --enable-gcc-warnings:
5238 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
5239 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
5240 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
5241 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
5242 * test/regression.at (Diagnostic that expects two alternatives):
5243 Likewise.
5244
46356ea4
PE
52452006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5246
231ed89a
PE
5247 * bootstrap.conf (gnulib_modules): Add config-h.
5248 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
5249 worry about HAVE_CONFIG_H.
5250 * lib/abitset.c: Likewise.
5251 * lib/bitset.c: Likewise.
5252 * lib/bitset_stats.c: Likewise.
5253 * lib/bitsetv-print.c: Likewise.
5254 * lib/bitsetv.c: Likewise.
5255 * lib/ebitset.c: Likewise.
5256 * lib/get-errno.c: Likewise.
5257 * lib/lbitset.c: Likewise.
5258 * lib/subpipe.c: Likewise.
5259 * lib/timevar.c: Likewise.
5260 * lib/vbitset.c: Likewise.
5261 * lib/bitset.c: Include "bitset.h" first, to test interface.
5262 * lib/bitset_stats.c: Include "bitset_stats.h" first.
5263 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
5264 * lib/bitsetv.c: Include "bitsetv.h" first.
5265 * lib/get-errno.c: Include "get-errno.h" first.
5266 * m4/.cvsignore: Add config-h.m4.
5267 * tests/actions.at (Default %printer and %destructor for ...):
5268 Adjust expected line numbers in output to reflect removal of #if
5269 HAVE_CONFIG_H lines.
5270 * tests/glr-regression.at (Missed %merge type warnings when ...):
5271 Likewise.
5272 * tests/regression.at (Braced code in declaration in rules section):
5273 Likewise.
5274 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
5275 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
5276 Include <config.h> unconditionally.
5277
46356ea4
PE
5278 * bootstrap: Sync from coreutils, as follows:
5279
5280 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5281
5282 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
5283 variable was sometimes used without being initialized. This
5284 messed up the installation of the INSTALL file in some cases.
5285
5286 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5287
5288 * bootstrap (usage, main program, symlink_to_gnulib): Add option
5289 --copy. Inspired by a suggestion from Bruno Haible.
5290
5291 2006-10-03 Jim Meyering <jim@meyering.net>
5292
5293 * bootstrap: Undo last change to this file, since now gnulib-tool
5294 sticks with the automake default in generating dependencies.
5295
dd4bf078
PE
52962006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5297
cf2a5f7c
PE
5298 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
5299 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
5300
5301 * doc/bison.1: Add copyright notice.
5302
5303 * data/glr.c: Don't include <stdarg.h>; not used.
5304
35fe0834
PE
5305 * NEWS: The -g and --graph options now output graphs in Graphviz
5306 DOT format, not VCG format.
5307 * doc/bison.1: Likewise.
5308 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
5309 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
5310 of this change in
5311 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
5312 * TODO: Remove Graphviz entry.
5313 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
5314 remove vcg.c, vcg.h, vcg_defaults.h.
5315 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
5316 * src/graphviz.c, src/graphviz.h: New files.
5317 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
5318 * src/files.h: Make comment more generic.
5319 * src/main.c (main): Likewise.
5320 * src/print_graph.h: Likewise.
5321 * src/getargs.c (usage): Make usage description more generic.
5322 * src/print_graph.c: Include graphviz.h rather than vcg.h.
5323 (static_graph, fgraph): Remove. All uses changed to pass
5324 arguments instead of sharing a static var.
5325 (print_core, print_actions, print_state, print_graph):
5326 Output graphviz format rather than VCG format.
5327 * tests/.cvsignore: Remove *.vcg; add *.dot.
5328 * tests/output.at: Expect *.dot files, not *.vcg files.
5329
dd4bf078
PE
5330 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
5331 accommodates the 2006-10-08 change.
5332
efdd7421
PE
53332006-10-11 Bob Rossi <bob@brasko.net>
5334
5335 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
5336 (b4_yyssa, b4_yyerror_range): New macros.
5337 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
5338 (yypvarsinit): Remove init of removed fields.
5339 (yypushparse): Remove use of removed fields; use new macros instead.
5340
96a1981a
PE
53412006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5342
5343 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
5344 in a push parser. Reindent slightly to match yacc.c better.
5345
53462006-10-11 Bob Rossi <bob@brasko.net>
5347
46356ea4
PE
5348 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
5349 yymsg_alloc fields.
5350 (yypvarsinit, yypushparse): Remove init of removed fields.
5351 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 5352
c1630a8b
PE
53532006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5354
5355 * THANKS: Add Paolo Bonzini and Bob Rossi.
5356
90b9908d
PB
53572006-10-08 Paolo Bonzini <bonzini@gnu.org>
5358
5359 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
5360 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
5361 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
5362 b4_define_user_cde and uses): Remove.
5363 (b4_comment, b4_prefix, b4_sync_start): New.
5364 * data/bison.m4: New file, with most of the content removed from c.m4.
5365 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
5366 * src/output.c (output_skeleton): Pass bison.m4.
5367 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
5368 only if specified.
5369
cf806753
PE
53702006-10-05 Paul Eggert <eggert@cs.ucla.edu>
5371
5372 Fix test failure reported by Tom Lane in
5373 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
5374 and try to make such failures easier to catch in the future.
5375 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
5376 that's now the caller's responsibility.
5377 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
5378 Set yychar = YYEOF if it's negative.
5379 * tests/actions.at (yylex): Abort if asked to read past EOF.
5380 * tests/conflicts.at (yylex): Likewise.
5381 * tests/cxx-type.at (yylex): Likewise.
5382 * tests/glr-regression.at (yylex): Likewise.
5383 * tests/input.at (yylex): Likewise.
5384 * tests/regression.at (yylex): Likewise.
5385 * tests/torture.at (yylex): Likewise.
5386
0e2f006a
PE
53872006-10-01 Paul Eggert <eggert@cs.ucla.edu>
5388
5389 Fix problems with translating English-language diagnostics.
5390 * bootstrap: Fix bug introduced in recent bootstrap changes, with
5391 respect to bison-runtime pot generation. The YY_ stuff
5392 wasn't being captured.
5393 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
5394 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
5395 * runtime-po/POTFILES.in: Add data/push.c.
5396
e3ddc1e3
PE
53972006-09-29 Paul Eggert <eggert@cs.ucla.edu>
5398
5399 Merge bootstrap changes from coreutils.
5400
5401 2006-09-28 Jim Meyering <jim@meyering.net>
5402
5403 Automatically generated dependencies are important even
5404 when all of the sources in a directory come from gnulib.
5405 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
5406 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
5407
5408 2006-09-23 Jim Meyering <jim@meyering.net>
5409
5410 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
5411
5412 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5413
5414 * bootstrap: Add support for --force.
5415 (usage): New function. Describe usage less tersely.
5416 (CVS_only_file): New var.
5417
01e972b3
PE
54182006-09-21 Paul Eggert <eggert@cs.ucla.edu>
5419
5420 * data/push.c (YYPUSH_MORE): Make it an enum instead.
5421 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
5422 Adjust white space and comments to match GNU style better.
5423
c63d3e90
PE
54242006-09-20 Bob Rossi <bob@brasko.net>
5425
5426 * data/push.c (yyresult_get): Remove function.
5427 (YYPUSH_MORE): Add #define.
5428 (yypushparse): Modify return value.
5429
e70f46d1
PE
54302006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5431
5432 * stamp-h.in: Remove; no longer needed.
5433 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
5434 Remove config.h, config.hin, intl (no longer created).
5435 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
5436 stamp-h1.
5437
5438 Sync bootstrap from coreutils, as follows:
5439
5440 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
5441
5442 * bootstrap (symlink_to_gnulib): New function.
5443 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
5444 to copies-of-gnulib.
5445 (cp_mark_as_generated, slurp, gnulib_files):
5446 Avoid making a copy if it's the same as the old version.
5447 (gnulib_files): Add support for this variable (used by Bison).
5448
a92be413
PE
54492006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5450
5451 * src/getargs.c (usage): Rework to use conventions similar to
5452 coreutils, to make translation a bit easier and the code a bit
5453 smaller. Problem reported by Tim Van Holder.
5454
4f82b42a
PE
54552006-09-15 Paul Eggert <eggert@cs.ucla.edu>
5456
3b2942e6
PE
5457 Use some of gnulib's new modules, taken from coreutils.
5458
5459 * bootstrap: Sync from coreutils, except add support for gnulib_files.
5460 * bootstrap.conf: New file.
5461 (gnulib_modules): Add configmake, inttypes, unistd.
5462 (XGETTEXT_OPTIONS): Add complain, complain_at,
5463 fatal, fatal_at, warn, warn_at, unexpected_end.
5464 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
5465 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
5466 (gl_EARLY): Add.
5467 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
5468 (gl_INIT): Add
5469 (GNULIB_AUTOCONF_SNIPPET): Remove.
5470 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
5471 the pickiest.
5472 * lib/.cvsignore: Add inttypes_.h.
5473 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
5474 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
5475 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
5476 no-longer-necessary initializations.
5477 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
5478 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
5479 use the unistd module.
5480 * src/system.h: Likewise.
5481 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
5482 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
5483 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
5484 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
5485 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
5486 * src/system.h: Include inttypes.h unconditionally, now that we
5487 use the inttypes module. Don't bother to include stdint.h, since
5488 inttypes.h now does that for us.
5489 (LOCALEDIR): Remove, now that we use the configmake module.
5490 * src/getargs.c: Include configmake.h.
5491 * src/main.c: Likewise.
5492 * src/output.c: Likewise.
5493 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
5494 not from $abs_top_builddir, since config.h moved.
5495
5496
4f82b42a
PE
5497 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
5498 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
5499
5500 * src/parse-gram.y (symbol_declaration): Don't put statements
5501 before declarations; it's not portable to C89.
5502 * src/scan-code.l (handle_action_at): Likewise.
5503
5504 * src/scan-code.l: Always initialize braces_level; the old code
5505 left it uninitialized and therefore had undefined behavior.
5506
5507 Don't attempt to redefine 'assert', since it runs afoul of
5508 systems where standard headers (mistakenly) include <assert.h>.
5509 Instead, define and use our own alternative, called 'aver'.
5510 * src/reader.c: Don't include assert.h, since we no longer
5511 use assert.
5512 * src/scan-code.l: Likewise.
5513 * src/system.h (assert): Remove, replacing with....
5514 (aver): New function, taking a bool arg. All uses changed.
5515 * src/tables.c (pack_vector): Ensure that aver arg is bool,
5516 not merely an integer.
5517
31c10e38
PE
55182006-09-15 Bob Rossi <bob@brasko.net>
5519
5520 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
5521 * data/c.m4 (YYPUSH): New.
5522 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
5523 * src/getargs.c (push_parser): New var.
5524 * src/getargs.h (push_parser): New declaration.
5525 * src/output.c (prepare): Add macro insertion of `push_flag'.
5526 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
5527 (prologue_declaration): Parse %push-parser.
5528 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
5529 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
5530 list of removed lines from the traces observed.
5531 (AT_CHECK_CALC_LALR): Added push parser tests.
5532
fa7b79c0
PE
55332006-09-13 Paul Eggert <eggert@cs.ucla.edu>
5534
21fe08ca
PE
5535 * NEWS: Version 2.3a.
5536 * configure.ac (AC_INIT): Likewise.
5537
e8ec4d9b
PE
5538 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
5539 "#define YYSTYPE int" that caused "make maintainer-check" to fail
5540 due to header ordering dependencies. I don't know why the #define
5541 was there.
5542
fa7b79c0
PE
5543 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
5544 runtime cost when YYDEBUG is not defined, and so that some tests
5545 that used to fail now work. Problem and initial suggestion by
5546 Paolo Bonzini.
5547 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
5548 * data/glr.cc (b4_parser_class_name):
5549 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
5550 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
5551 (yydebug_) [YYDEBUG]: New member.
5552 (yycdebug_): Now defined only if YYDEBUG.
5553 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
5554 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
5555 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
5556 if YYYDEBUG.
5557 (debug_stream, set_debug_stream, debug_level, set_debug_level):
5558 Define only if YYDEBUG.
5559 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
5560 set_debug_level.
5561 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
5562 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
5563 AT_CHECK_CALC_GLR_CC that are working now.
5564
4ec13d60
PE
55652006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5566
5567 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5568 We don't need them in glr.cc, and glr.c defines them.
5569 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5570 assumes that defining it to anything is the same as defining
5571 it to 1. Problem reported by Paolo Bonzini.
5572
8e1687ae
PE
55732006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5574
5575 * data/c.m4 (b4_null, b4_case): Define.
5576 * src/output.c (prepare_symbols): Use b4_null.
5577 (user_actions_output): Use b4_case.
5578
3dc5e96b
PE
55792006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5580
aef3da86
PE
5581 * data/glr.c (b4_shared_declarations): Put start-header first,
5582 before any #includes that we generate, so that feature-test
5583 macros work. Problem reported by Michael Deutschmann in
5584 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5585 * data/lalr1.cc: Likewise.
5586 * doc/bison.texinfo (Prologue): Document that feature-test macros
5587 should be defined before any Bison declarations.
5588 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5589 that depend on location.hh after, not before, Bison decls, since
5590 we now include location.hh after the first user prologue.
5591
3dc5e96b
PE
5592 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5593 Sander Brandenburg in
5594 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5595 Also, fix minor white space and comment issues.
aef3da86
PE
5596 (Prologue): Mention that it's better to define feature-test macros
5597 before Bison declarations. Problem reported by Michael Deutschmann.
5598
5599 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5600 by Jim Meyering.
5601 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5602 This adjusts to recent gnulib changes.
3dc5e96b 5603
b2a0b7ca
JD
56042006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5605
5606 Finish implementation of per-type %destructor/%printer. Discussed
5607 starting at
5608 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5609 and
5610 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5611 * NEWS (2.3+): Add a description of this feature to the default
5612 %destructor/%printer description.
5613 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5614 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5615 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5616 list node contains a semantic type.
5617 * src/symtab.c, src/symtab.h: Extend with a table that associates
5618 semantic types with their %destructor's and %printer's.
5619 (semantic_type_from_uniqstr, semantic_type_get,
5620 semantic_type_destructor_set, semantic_type_printer_set): New functions
5621 composing the public interface of that table.
5622 (symbol_destructor_get, symbol_destructor_location_get,
5623 symbol_printer_get, symbol_printer_location_get): If there's no
5624 per-symbol %destructor/%printer, look up the per-type before trying
5625 the default.
5626 * tests/actions.at (Per-type %printer and %destructor): New test case.
5627 * tests/input.at (Default %printer and %destructor redeclared):
5628 Extend to check that multiple occurrences of %symbol-default in a
5629 single %destructor/%printer declaration is an error.
5630 (Per-type %printer and %destructor redeclared, Unused values with
5631 per-type %destructor): New test cases.
5632
3be03b13
JD
56332006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5634
5635 Require default %destructor/%printer to be declared using
5636 %symbol-default instead of an empty symbol list, and start working on
5637 new per-type %destructor/%printer. Discussed at
5638 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5639 * NEWS (2.3+): Add %symbol-default to example.
5640 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 5641 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
5642 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5643 (generic_symlist, generic_symlist_item): New nonterminals for creating
5644 a list in which each item is a symbol, semantic type, or
5645 %symbol-default.
5646 (grammar_declaration): Use generic_symlist in %destructor and %printer
5647 declarations instead of symbols.1 or an empty list.
5648 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5649 for changes to symbol_list.
5650 * src/reader.c: Update for changes to symbol_list.
5651 * src/scan-code.l: Likewise.
5652 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5653 * src/symlist.c, src/symlist.h: Extend such that a list node may
5654 represent a semantic type or a %symbol-default in addition to just an
5655 ordinary symbol. Add switched functions for setting %destructor's and
5656 %printer's.
5657 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5658 %destructor/%printer declarations.
5659
3508ce36
JD
56602006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5661
5662 Whether the default %destructor/%printer applies to a particular symbol
5663 isn't a question of whether the user *declares* that symbol (in %token,
5664 for example). It's a question of whether the user by any means
5665 *defines* the symbol at all (by simply using a char token, for
5666 example). $end is defined by Bison whereas any other token with token
5667 number 0 is defined by the user. The error token is always defined by
5668 Bison regardless of whether the user declares it with %token, but we
5669 may one day let the user define error as a nonterminal instead.
5670 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5671 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5672 the meaning of "user-defined".
5673 * tests/actions.at (Default %printer and %destructor for user-declared
5674 end token): Rename to...
5675 (Default %printer and %destructor for user-defined end token): ...
5676 this.
5677
5678 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5679 computation of whether to apply the default, don't maintain a list of
5680 every Bison-defined symbol. Instead, just check for a first character
5681 of '$', which a user symbol cannot have, and check for the error token.
5682
9350499c
JD
56832006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5684
5685 Don't apply the default %destructor or %printer to the error token,
5686 $undefined, or $accept. This change fits the general rule that the
5687 default %destructor and %printer are only for user-declared symbols,
5688 and it solves several difficulties that are described in the new test
5689 cases listed below.
5690 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5691 * tests/actions.at (Default %printer and %destructor are not for error
5692 or $undefined, Default %printer and %destructor are not for $accept):
5693 New test cases.
5694
4d7370cb
JD
56952006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5696
5697 Allow %start after the first rule.
5698 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5699 when parsing the first rule.
5700 (check_and_convert_grammar): Search for it here after all grammar
5701 declarations have been parsed. Skip midrules, which have dummy LHS
5702 nonterminals.
5703 * src/symtab.c (symbol_is_dummy): New function.
5704 * src/symtab.h (symbol_is_dummy): Declare it.
5705 * tests/input.at (%start after first rule): New test.
5706
6d0ef4ec
JD
57072006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5708
5709 Redo some of the previous commit: add back the ability to use
5710 non-aliased/undeclared string literals since it might be useful to
5711 those declaring %token-table.
5712 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5713 commit: don't worry about complaints from symbols_pack.
5714 * src/symtab.c (symbol_new, symbol_class_set,
5715 symbol_check_alias_consistency): Undo changes in previous commit: count
5716 each string literal as a new symbol and token, assign it a symbol
5717 number, and don't complain about non-aliased string literals.
5718 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5719 and token counts but does still set aliased tokens to the same number,
5720 symbol_pack_processor now leaves empty slots in the symbols array.
5721 Remove those slots.
5722 * tests/regression.at (Undeclared string literal): Remove test case
5723 added in previous commit since non-aliased string literals are allowed
5724 again.
5725 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5726 remove unnecessary string literal declarations.
5727 * tests/sets.at (Firsts): Likewise.
5728
965537bc
JD
57292006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5730
5731 Don't allow an undeclared string literal, but allow a string literal to
5732 be used before its declaration.
5733 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5734 symbols_pack complained.
5735 * src/symtab.c (symbol_new): Don't count a string literal as a new
5736 symbol.
5737 (symbol_class_set): Don't count a string literal as a new token, and
5738 don't assign it a symbol number since symbol_make_alias does that.
5739 (symbol_make_alias): It's not necessary to decrement the symbol and
5740 token counts anymore. Don't assume that an alias declaration occurs
5741 before any uses of the identifier or string, and thus don't assert that
5742 one of them has the highest symbol number so far.
5743 (symbol_check_alias_consistency): Complain if there's a string literal
5744 that wasn't declared as an alias.
5745 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5746 symbol_pack asserts that every token has been assigned a symbol number
5747 although undeclared string literals have not.
5748 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 5749 string literal): New test cases.
965537bc
JD
5750 (Characters Escapes, Web2c Actions): Declare string literals as
5751 aliases.
5752 * tests/sets.at (Firsts): Likewise.
5753
47aee066
JD
57542006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5755
5756 In the grammar scanner, STRING_FINISH unclosed constructs and return
5757 them to the parser in order to improve error messages.
5758 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5759 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5760 * tests/input.at (Unclosed constructs): New test case.
5761 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5762 seen.
5763
5764 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5765 unused global.
5766
1f6b3679
JD
57672006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5768
5769 Handle string aliases for character tokens correctly.
5770 * src/symtab.c (symbol_user_token_number_set): If the token has an
5771 alias, check and set its alias's user token number instead of its own,
5772 which is set to indicate the alias. Previously, every occurrence of
5773 the character token in the grammar overwrote that alias indicator with
5774 the character code.
5775 * tests/input.at (String aliases for character tokens): New test.
5776
219741d8
JD
57772006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5778
5779 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5780
11daa4e7
PE
57812006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5782
5783 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5784 to prevent failures when building on older platforms.
5785 Check for autopoint failure.
5786 Set XGETTEXT_OPTIONS to values that check for C format strings,
5787 so that translators are warned about them (this also helps
5788 prevent core dumps).
5789
5790 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5791 function, since it simplifies our code a bit.
5792
5793 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5794 rather than -W, so we don't get bogus warnings about sign comparisons.
5795 Add -Wpointer-arith, since that warning is useful (it reports code
5796 that does not conform to C89 and that some compilers reject).
5797 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5798 since it's no longer needed.
5799
f9bfc42a
JD
58002006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5801
5802 Clean up scanners a bit.
5803 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5804 definitions so gcc won't warn when obstack_for_string is unused.
5805 * src/scan-code.l: config.h and system.h are already #include'd by
5806 scan-code-c.c, so get rid of them here.
5807 * src/scan-gram.l: Likewise.
5808 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5809 definitions rather than duplicating the rest of it.
5810 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5811
06e8700a
JD
58122006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5813
5814 Suppress signed/unsigned comparison warnings for yycheck.
5815 * data/c.m4 (b4_safest_int_type): New macro.
5816 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5817 a signed int type, cast it to b4_safest_int_type first.
5818 * data/yacc.c: Likewise.
5819 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5820 also overwritten.
5821
9c437126
PE
58222006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5823
5824 * doc/bison.texinfo: Fix some typos.
5825
284d8a13
PE
58262006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5827
5828 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5829 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5830
5831 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5832 the latest gnulib does this a different way.
5833 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5834 translation was patched, so stop omitting it.
5835
ec5479ce
JD
58362006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5837
5838 Enable declaration of default %printer/%destructor. Make the parser
5839 use these for all user-declared grammar symbols for which the user does
5840 not declare a specific %printer/%destructor. Thus, the parser uses it
5841 for token 0 if the user declares it but not if Bison generates it as
5842 $end. Discussed starting at
5843 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5844 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5845 and
5846 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5847 * NEWS (2.3+): Mention.
5848 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5849 declare a %destructor for a mid-rule's semantic value. It's just
5850 impossible to declare one specific to it.
5851 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5852 code. Describe default %destructor form.
5853 * src/parse-gram.y (grammar_declaration): Parse default
5854 %printer/%destructor declarations.
5855 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5856 and symbol_destructor_location_get rather than accessing the destructor
5857 and destructor_location members of struct symbol.
5858 (symbol_printers_output): Likewise but for %printer's.
5859 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5860 again.
5861 * src/symtab.c (default_destructor, default_destructor_location,
5862 default_printer, default_printer_location): New static global
5863 variables to record the default %destructor and %printer.
5864 (symbol_destructor_get, symbol_destructor_location_get,
5865 symbol_printer_get, symbol_printer_location_get): New functions to
5866 compute the appropriate %destructor and %printer for a symbol.
5867 (default_destructor_set, default_printer_set): New functions to set the
5868 default %destructor and %printer.
5869 * src/symtab.h: Prototype all those new functions.
5870 * tests/actions.at (Default %printer and %destructor): New test to
5871 check that the right %printer and %destructor are called, that they're
5872 not called for $end, and that $$ and @$ work correctly.
5873 (Default %printer and %destructor for user-declared end token): New
5874 test to check that the default %printer and %destructor are called for
5875 a user-declared end token.
5876 * tests/input.at (Default %printer and %destructor redeclared, Unused
5877 values with default %destructor): New tests to check related grammar
5878 warnings and errors.
5879
868d2d96
JD
58802006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5881
5882 Clean up handling of %destructor for the end token (token 0).
5883 Discussed starting at
5884 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5885 and
5886 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5887
5888 Make the skeletons consistent in how they pop the end token and invoke
5889 its %destructor.
5890 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5891 state, which has token number 0, since this would invoke the
5892 %destructor for the end token.
5893 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5894 until after shifting the end token, or else it won't be popped.
5895 * data/yacc.c (yyparse): Likewise.
5896
5897 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5898 it's the end token. Upon termination, destroy an unshifted lookahead
5899 even when it's the end token.
5900 * data/lalr1.cc (yy::parser::parse): Likewise.
5901 * data/yacc.c (yyparse): Likewise.
5902
5903 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5904 value warnings for the end token when the user gives the end token a
5905 %destructor.
5906
5907 * tests/actions.at (Printers and Destructors): Test all the above.
5908
62a9592d
PE
59092006-07-24 Paul Eggert <eggert@cs.ucla.edu>
5910
5911 Update to latest gnulib and gettext versions.
5912 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
5913 Add fopen-safer.
5914 (gnulib_files): Add m4/warning.m4. Don't worry about files
5915 overwritten by autopoint.
5916 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
5917 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
5918 rejects them.
5919 Don't use autoreconf; instead, invoke autopoint etc. by hand,
5920 so that we can remove the intl files at a better time.
5921 (intl_files_to_remove): Remove aclocal.m4, since it gets
5922 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
5923 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
5924 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5925 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
5926 Remove datarootdir hack; no longer needed.
5927 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
5928 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
5929 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
5930 strdup.h.
5931 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
5932 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
5933
10d6970f
PE
59342006-07-20 Paul Eggert <eggert@cs.ucla.edu>
5935
5936 * bootstrap: Adjust to today's change to gnulib-tool by invoking
5937 it with --assume-autoconf='latest-stable'.
5938
50a33993
JD
59392006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
5940
5941 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
5942 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
5943 YYSTYPE' and `{'.
5944 * src/muscle_tab.h (muscle_grow): Replace the header comments with
5945 those from muscle_tab.c since the old ones are misleading.
5946
2ce4ed68
AD
59472006-07-13 Akim Demaille <akim@epita.fr>
5948
5949 Support %define "KEY" {VALUE}.
5950 * src/scan-code.h, src/scan-code.l (translate_action)
5951 (translate_rule_action, translate_symbol_action, translate_code):
5952 Return char *, not const char *.
5953 * src/parse-gram.y (declaration): Rename as...
5954 (prologue_declaration): this.
5955 (string_content): Remove this nonterminal, use STRING.
5956 (braceless, content, content.opt): New nonterminal.
5957 Use them.
5958 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
5959 as value.
5960 * src/scan-gram.l (getargs.h): Don't include it.
5961
db7e5eb5
PE
59622006-07-12 Paul Eggert <eggert@cs.ucla.edu>
5963
5964 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
5965 rather than a for-loop that declares a local bool variable. This
5966 should work around a compatibility problem with a Cray x1e C++
5967 compiler reported by Hung Nguyen in
5968 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
5969 The for-loop was introduced in the 2004-11-17 change but I don't
5970 know why it was needed.
5971
a5d80ba5
AD
59722006-07-12 Akim Demaille <akim@epita.fr>
5973
5974 * data/c.m4: Comment changes.
5975
23eb2a69
AD
59762006-07-10 Akim Demaille <akim@lrde.epita.fr>
5977
5978 * src/complain.c (error_message, ERROR_MESSAGE): New.
5979 To factor...
5980 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
5981 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
5982
ddc8ede1
PE
59832006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5984
5985 * NEWS: Instead of %union, you can define and use your own union type
5986 YYSTYPE if your grammar contains at least one <type> tag.
5987 Your YYSTYPE need not be a macro; it can be a typedef.
5988 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
5989 (Union Decl, Decl Summary): Document this.
5990 * data/glr.c (YYSTYPE): Implement this.
5991 * data/glr.cc (YYSTYPE): Likewise.
5992 * data/lalr1.cc (YYSTYPE): Likewise.
5993 * data/yacc.c (YYSTYPE): Likewise.
5994 * src/output.c (prepare): Output tag_seen_flag.
5995 * src/parse-gram.y (declaration, grammar_declaration):
5996 Use 'union_seen' rather than 'typed' to determine whether
5997 %union has been seen, since grammars can now be typed without
5998 %union.
5999 (symbol_declaration, type.opt, symbol_def):
6000 Keep track of whether a tag has been seen.
6001 * src/reader.c (union_seen, tag_seen): New vars.
6002 (typed): remove.
6003 * src/reader.h (union_seen, tag_seen, typed): Likewise.
6004 * src/scan-code.l (untyped_var_seen): New variable.
6005 (handle_action_dollar): Adjust to above changes.
6006 (handle_action_dollar, handle_action_at):
6007 Improve overflow checking for outlandish numbers.
6008 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
6009 avoid new diagnostics generated by above changes.
6010 * tests/regression.at (YYSTYPE typedef): Add test to check
6011 for type tags without %union.
6012
6013 * src/symlist.c (symbol_list_length): Return int, not unsigned
6014 int, since callers expect int. This may need to get revisited
6015 once we have proper integer overflow checking.
6016
6017 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
6018 object is now static.
6019
6020 * src/getargs.c (flags_argmatch): Return void, not int,
6021 to pacify ./configure --enable-gcc-warnings.
6022
6023 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
6024 since last_string is already defined to FLEX_PREFIX (last_string).
6025
7b42569e
AD
60262006-07-09 Akim Demaille <akim@lrde.epita.fr>
6027
6028 Implement --warnings/-W.
6029 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
6030 replaced by...
6031 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
6032 Adjust callers.
6033 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
6034 (warnings_args, warnings_types): New.
6035 (getargs, short_options, long_options): Accept -W/--warnings.
6036 Sort the options by alphabetical order, upper case letter right
6037 before its lower case.
6038
3b452f4e
JD
60392006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
6040
6041 Change %merge result type clash warnings to errors. Discussed at
6042 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
6043 * src/reader.c (record_merge_function_type): Use complain_at.
6044 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6045 declared later): Update test case results.
6046
b8a41559
AD
60472006-07-09 Akim Demaille <akim@lrde.epita.fr>
6048
6049 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
6050 to be in alphabetical order.
6051 (trace_args): Spelling fixes.
6052
cd9e1ba2
PE
60532006-07-09 Paul Eggert <eggert@cs.ucla.edu>
6054
6055 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
6056 so they don't collide with user-defined macros.
6057 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
6058 this was never guaranteed, and now that we're using gnulib stdint,
6059 which defines int_fast16_t to long int, the problem is exposed.
6060
cb48f191
PE
60612006-07-08 Paul Eggert <eggert@cs.ucla.edu>
6062
b8445a15
PE
6063 * data/c.m4 (b4_basename): Simplify a bit, since we don't
6064 need the full POSIX semantics (and weren't implementing them
6065 anyway).
6066
cb48f191
PE
6067 Adjust to Autoconf 2.60 and today's gnulib.
6068 * bootstrap (gnulib_modules): Add stdint.
6069 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
6070 no longer copies it.
6071 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
6072 since stdint needs the former and wcwidth (which is now required
6073 by mbswidth) needs the latter.
6074 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
6075 work around a compatibility glitch between gettext 0.14.6 and
6076 Autoconf 2.60.
6077 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
6078 Do not check for uintptr_t, since new stdint module does the right
6079 thing.
6080 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
6081 Add stdint.h, stdint_.h, wcwidth.h.
6082 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
6083 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
6084 stdint.m4, wchar_t.m4, wcwidth.m4.
6085 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
6086 usual order for ../lib/*.h files.
6087 (file_name_split): Use last_component, not base_name, to adjust
6088 to gnulib changes.
6089 * src/parse-gram.h: Include <strverscmp.h> in the usual order
6090 for ../lib/*.h files.
6091 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
6092 Define unconditionally, since we now assume the stdint module.
6093 * src/scan-skel.l: Include <dirname.h>.
6094 (BASE_QPUTS): Use last_component, not base_name.
6095 * src/system.h: Include <unlocked-io.h> in the usual order
6096 for ../lib/*.h files. Include <stdint.h> unconditionally,
6097 since we now use the stdint module.
6098 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
6099 HAVE_UINTPTR_T, since we now use the stdint module.
6100 (base_name): Remove decl, since files now include <dirname.h>
6101 to get the decl.
6102
cd48d21d
AD
61032006-07-08 Akim Demaille <akim@lrde.epita.fr>
6104
6105 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
6106 New, default to 1.
6107 * data/yacc.c, data/glr.c, data/location.cc: Use them.
6108 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
6109 default.
6110 * tests/calc.at: Adjust.
6111
8ec0a172
AD
61122006-07-08 Akim Demaille <akim@lrde.epita.fr>
6113
b8445a15 6114 * data/c.m4 (b4_basename): New.
8ec0a172
AD
6115 (b4_syncline): Also output the location of its invocation (from
6116 the skeleton).
6117 (b4_user_action, b4_define_user_action, b4_user_actions)
6118 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
6119 (b4_user_stype): New.
6120 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
6121
4a678af8
JD
61222006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
6123
6124 In the grammar file, the first column is 1 not 0 on the first line as
6125 on every other line.
6126 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
6127 * tests/input.at (Torturing the Scanner): Update output.
6128
6129 * src/scan-gram.l (scanner_cursor): Declare it static.
6130
dd60572a
JD
61312006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
6132
6133 In warnings, say "previous declaration" rather than "first
6134 declaration".
6135 * src/symtab.c (redeclaration): Do that here.
6136 * src/reader.c (record_merge_function_type): In the case of a result
6137 type clash, report the previous declaration rather than the very first
6138 one in the grammar file.
6139 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6140 declared later): Add a third declaration to check this behavior.
6141 * tests/input.at (Incompatible Aliases): Update output.
6142
2073e1b6
AD
61432006-06-27 Akim Demaille <akim@epita.fr>
6144
6145 * doc/Doxyfile.in: New.
6146 * doc/Makefile.am: Use it.
6147 * src/lalr.h, src/symtab.h: Initial doxygenation.
6148
8ee5b538
JD
61492006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6150
6151 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
6152 declared after the %merge. This continues the effort of the previous
6153 patch.
8ee5b538
JD
6154 * src/reader.c (get_merge_function): Don't set the merger type yet.
6155 (record_merge_function_type): New function for setting the merger type
6156 and checking for clashes.
6157 (grammar_current_rule_merge_set): Set the location of the %merge for
6158 the current rule.
6159 (packgram): Invoke record_merge_function_type for each rule now that
6160 all symbol type declarations have been parsed.
6161 * src/reader.h (merger_list.type_declaration_location): New member
6162 storing the location of the first %merge from which the type for this
6163 merging function was derived.
6164 * src/symlist.h (symbol_list.merger_declaration_location): New member
6165 storing the location of a rule's %merge, if any.
6166 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6167 declared later): New test to catch the error fixed by the above patch.
6168
ffa4ba3a
JD
61692006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6170
6171 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
6172 declarations appear after the rules. Discussed at
6173 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
6174 and
6175 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
6176 Don't mistake the type of $$ in a midrule to be that of its parent
6177 rule's $$.
ffa4ba3a
JD
6178 * src/reader.c (grammar_current_rule_end): Don't invoke
6179 grammar_rule_check yet since not all symbol declarations may have been
6180 parsed yet.
6181 (grammar_midrule_action): Likewise.
6182 Don't record whether the midrule's $$ has been used yet since actions
6183 haven't been translated yet.
6184 Record the midrule's parent rule and its RHS index within the parent
6185 rule.
6186 (grammar_current_rule_action_append): Don't translate the action yet
6187 since not all symbol declarations may have been parsed yet and, thus,
6188 warnings about types for $$, $n, @$, and @n can't be reported yet.
6189 (packgram): Translate the action and invoke grammar_rule_check now that
6190 all symbol declarations have been parsed.
6191 * src/scan-code.l (handle_action_dollar): Now that this is invoked
6192 after parsing the entire grammar file, the symbol list here in the case
6193 of a midrule is actually the midrule's empty RHS, so reference its
6194 parent rule's RHS where necessary.
6195 On the other hand, now that you can already know it's a midrule, you
6196 aren't forced to think $$ has the same type as its parent rule's $$.
6197 (handle_action_at): In the case of a midrule, reference the parent rule
6198 where necessary.
6199 * src/symlist.c (symbol_list_new): Initialize new midrule-related
6200 members.
6201 (symbol_list_length): Now that this is invoked after all rules have
6202 been parsed, a NULL symbol (rather than a NULL symbol list node)
6203 terminates a rule. symbol_list_print already does this correctly.
6204 * src/symlist.h (symbol_list.midrule_parent_rule,
6205 symbol_list.midrule_parent_rhs_index): New members so that midrules can
6206 remember their relationships with their parents.
6207 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
6208 fixed by the above patch.
6209 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
6210 implementing...
6211 (Unused values): ... this old test case and...
6212 (Unused values before symbol declarations): ... this new test case.
6213 This one is the same as `Unused values' except that all symbol
6214 declarations appear after the rules in order to catch the rest of the
6215 errors fixed by the above patch.
6216
e256e17f
JD
62172006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6218
300a1930
JD
6219 More cleanup.
6220 * src/reader.c (current_rule): Declare it static since it's no longer
6221 used outside this file.
6222 (grammar_current_rule_action_append): Remove redundant arguments from
6223 translate_rule_action invocation.
6224 * src/reader.h (current_rule): Remove this unused extern.
6225 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
6226 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 6227
381ecb06
JD
62282006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
6229
6230 Clean up yesterday's patch.
6231 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
6232 to...
6233 * src/reader.c (grammar_current_rule_action_append): ... here for
6234 consistency with grammar_current_rule_symbol_append.
6235 * tests/regression.at (Braced code in declaration in rules section):
6236 Make yyerror and yylex static as usual.
6237
4210cd0b
JD
62382006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
6239
6240 Fix bug that mistakes braced code in a declaration in the rules section
6241 to be a rule action. Mentioned at
6242 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
6243 * src/scan-gram.l: Move midrule action detection from the start of the
6244 scanning of any braced code to...
6245 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
6246 action. For readability, use $2 and @2 rather than the equivalent
6247 global variables.
6248 * tests/regression.at (Braced code in declaration in rules section):
6249 New test to catch the error fixed by the above patch.
6250
6251 Work on code readability some.
6252 * src/scan-code.l (current_rule): Get rid of this misleading and
6253 redundant declaration: it's actually extern'ed in reader.h.
6254 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
6255 translate_action): Add a rule argument and use it instead of the global
6256 current_rule.
6257 (translate_rule_action): This already receives current_rule through an
6258 argument, so pass it on to translate_action instead of assigning
6259 current_rule to current_rule.
6260 (translate_symbol_action, translate_code): Pass rule = NULL to
6261 translate_action.
6262
34f98f46
JD
62632006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
6264
6265 Rename %before-definitions to %start-header and %after-definitions to
6266 %end-header. Don't use these declarations to separate pre-prologue
6267 blocks from post-prologue blocks. Add new order-independent
6268 declarations %before-header and %after-header as alternatives to the
6269 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
6270 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
6271 * NEWS (2.3+): Update for these changes.
6272 * data/glr.c (b4_before_definitions): Update to...
6273 (b4_start_header): ... this.
6274 (b4_after_definitions): Update to...
6275 (b4_end_header): ... this.
6276 * data/glr.cc: Likewise.
6277 * data/lalr1.cc: Likewise.
6278 * data/yacc.c: Likewise.
6279 * doc/bison.texinfo (The prologue): Update names, and replace remaining
6280 prologue blocks with %*-header declarations.
6281 (Calc++ Parser): Likewise.
91661ebb 6282 (Decl Summary): Update names.
148d66d8 6283 (Table of Symbols): Update description.
34f98f46
JD
6284 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
6285 (PERCENT_END_HEADER): ... this.
6286 (PERCENT_BEFORE_DEFINITIONS): Update to...
6287 (PERCENT_START_HEADER): ... this.
6288 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6289 (declaration): Update token names and m4 macro names.
6290 When parsing %end-header and %start-header, invoke translate_code
6291 before muscle_code_grow, and no longer set global booleans to remember
6292 whether these declarations have been seen.
6293 Parse new %after-header and %before-header.
6294 * src/reader.c (before_definitions, after_definitions): Remove.
6295 (prologue_augment): Accept a new bool argument to specify whether to
6296 augment the pre-prologue or post-prologue.
6297 * src/reader.h (before_definitions, after_definitions): Remove these
6298 extern's.
6299 (prologue_augment): Add new bool argument.
6300 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
6301 (PERCENT_END_HEADER): ... this.
6302 (PERCENT_BEFORE_DEFINITIONS): Update to...
6303 (PERCENT_START_HEADER): ... this.
6304 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6305 * tests/actions.at (Printers and Destructors): Update names.
6306
31b2b07e
JD
63072006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
6308
6309 Add comparison operators for C++ location classes. Discussed at
6310 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
6311 * data/c++.m4 (b4_define_location_comparison): New boolean %define
6312 declaration indicating whether filename_type has an operator==. If
6313 filename_type is `std::string', it defaults to `1', `0' otherwise.
6314 * data/location.cc: Iff b4_define_location_comparison is `1', add
6315 operator== and operator!= for class position and for class location.
6316
6317 Some minor fixes.
6318 * src/scan-action.l: Remove unused file.
6319 * src/symtab.c (symbol_printer_set): Use printer_location not
6320 destructor_location.
6321 * src/symtab.h (struct symbol): Replace incorrect source comment for
6322 printer members.
6323 * tests/input.at (Incompatible Aliases): Update output with correct
6324 printer location.
6325
9bc0dd67
JD
63262006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
6327
6328 Don't put the pre-prologue in the header file. For the yacc.c code
6329 file and the glr.c header and code files, move the pre-prologue before
6330 the token definitions. Add new %before-definitions and
6331 %after-definitions to declare code that will go in both the header file
6332 and code file. Discussed at
6333 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
6334 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
6335 and
6336 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
6337 * NEWS (2.3+): Describe these changes.
6338 * data/glr.c (b4_pre_prologue): Move from within to before...
6339 (b4_shared_declarations): ... this.
6340 Add new b4_before_definitions before b4_token_enums.
6341 Add new b4_after_definitions at the end.
6342 * data/glr.cc (b4_pre_prologue): Replace with...
6343 (b4_before_definitions): ... this in the header file.
6344 (b4_after_definitions): New near the end of the header file.
6345 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
6346 code file right before including the header file.
6347 (b4_before_definitions): New in the previous position of
6348 b4_pre_prologue in the header file.
6349 (b4_after_definitions): New near the end of the header file.
6350 * data/yacc.c: Clean up some m4 quoting especially in the header file.
6351 (b4_token_enums_defines): In the code file, move to right before
6352 YYSTYPE for consistency with the header file.
6353 (b4_before_definitions): New right before b4_token_enums_defines in
6354 both the header and code file.
6355 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
6356 header and code file.
6357 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
6358 of prologues for %union dependencies.
91661ebb
JD
6359 (Decl Summary): In %defines description, mention the effect of
6360 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
6361 (Calc++ Parser): Forward declare driver in a %before-definitions rather
6362 than in the pre-prologue so that make check succeeds.
148d66d8 6363 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
6364 %after-definitions.
6365 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
6366 %before-definitions.
6367 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
6368 (declaration): Parse those declarations and append to
6369 b4_before_definitions and b4_after_definitions, respectively.
6370 * src/reader.c (before_definitions, after_definitions): New bools to
6371 track whether those declarations have been seen.
6372 (prologue_augment): Add to the post-prologue if %union,
6373 %before-definitions, or %after-definitions has been seen.
6374 * src/reader.h (before_definitions, after_definitions): New extern's.
6375 * src/scan-gram.l: Scan the new declarations.
6376 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
6377 prologue block in a %before-definitions or a %after-definitions based
6378 on whether the %union is declared.
6379 * tests/regression.at (Early token definitions with --yacc, Early token
6380 definitions without --yacc): Move tests for token definitions into the
6381 post-prologue since token names are no longer defined in the
6382 pre-prologue.
6383
203b9274
AD
63842006-06-20 Akim Demaille <akim@epita.fr>
6385
6386 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
6387 (symbol_get): Use it.
6388 * src/parse-gram.y: Use it.
6389
a7ee59cf
JD
63902006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
6391
6392 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
6393 build succeeds when configured with --enable-gcc-warnings.
6394
5a2baae7
PE
63952006-06-19 Paul Eggert <eggert@cs.ucla.edu>
6396
33ad1a9c
PE
6397 * src/parse-gram.y (char_name): New function.
6398 (CHAR, STRING, string_content): For %printer, properly escape.
6399 (ID): Prefer fputs to fprintf.
6400 (id): Reindent to be consistent with other rules.
6401 Properly quote char.
6402
5a2baae7
PE
6403 The Translation Project changed its way of publishing translations
6404 to maintainers. I haven't received any responses to my request
6405 for supporting the old way, or for documenting the new way. I
6406 have modified 'bootstrap' to use screen scraping
6407 (in this case, HTML scraping). This is unreliable and inelegant,
6408 but I don't see any better way. Yuck.
6409 * bootstrap (TP_URL, WGET_COMMAND): New vars.
6410 (get_translations): New function, which uses HTML scraping to
6411 deduce locations of latest translations.
6412 Use this function to grab both bison and bison-runtime .po files.
6413 Don't bother priming the pump for the runtime-po domain any more,
6414 as it's now translated better than bison is.
6415
58d7a1a1
AD
64162006-06-19 Akim Demaille <akim@epita.fr>
6417
6418 * src/scan-gram.l: No longer "parse" things after `%union' until
6419 `{'. Rather, return a single "%union" token.
6420 No longer make symbols: return strings, and leave the conversion
6421 to symbols to the parser.
6422 (SC_PRE_CODE, token_type): Remove.
6423 * src/parse-gram.y (%union): New field `character'.
6424 Sort tokens.
6425 (CHAR): New token.
6426 (ID, ID_COLON): Now that the scanner no longer makes them
6427 identifiers, adjust all uses to invoke symbol_get.
6428 (id_colon): New, wraps the conversion from string to symbol.
6429 (%union): Accept a possible union_name.
6430 (symbol): Now can be a char.
6431 * data/c.m4 (b4_union_name): Leave a default value.
6432 * data/glr.c, data/yacc.c: Use it.
6433
b931235e
JD
64342006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
6435
6436 For associating token numbers with token names for "yacc.c", don't use
6437 #define statements unless `--yacc' is specified; always use enum
6438 yytokentype. Most important discussions start at:
6439 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
6440 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
6441 and
6442 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
6443 * NEWS (2.3+): Mention.
6444 * data/c.m4 (b4_yacc_if): New.
6445 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
6446 token #define's.
6447 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
6448 on token name definitions.
6449 * src/getargs.c (usage): Capitalize `Yacc' in English.
6450 * src/output.c (prepare): Define b4_yacc_flag.
6451 * tests/regression.at (Early token definitions): Test that tokens names
6452 are defined before the pre-prologue not just before the post-prologue.
6453 Remove this test case and copy to...
6454 (Early token definitions with --yacc): ... this to test #define's.
6455 (Early token definitions without --yacc): ... and this to test enums.
6456
9e6e7ed2
PE
64572006-06-11 Paul Eggert <eggert@cs.ucla.edu>
6458
6459 * NEWS: Reword the post-2.3 change to not be so optimistic about
6460 removing the old "look-ahead" spelling.
6461 Update previous look-ahead/lookahead change reports.
6462 * REFERENCES: look-ahead -> lookahead (since that's
6463 what he actually wrote).
6464 * doc/refcard.tex: look ahead -> lookahead,
6465 look-ahead -> lookahead
6466
742e4900
JD
64672006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
6468
6469 For consistency, use `lookahead' instead of `look-ahead' or
6470 `look_ahead'. Discussed starting at
6471 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
6472 and then at
6473 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
6474 * NEWS: For the next release, note the change to `--report'.
6475 * TODO, doc/bison.1: Update English.
6476 * doc/bison.texinfo: Update English.
6477 (Understanding Your Parser, Bison Options): Document as
6478 `--report=lookahead' rather than `--report=look-ahead'.
6479 * src/conflicts.c: Update English in comments.
6480 (lookahead_set): Rename from look_ahead_set.
6481 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
6482 (resolve_sr_conflict): Rename local look_ahead_tokens to
6483 lookahead_tokens, and update other uses.
6484 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
6485 count_rr_conflicts, conflicts_free): Update uses.
6486 * src/getargs.c (report_args): Move "lookahead" before alternate
6487 spellings.
6488 (report_types): Update uses.
6489 (usage): For `--report' usage description, state `lookahead' spelling
6490 rather than `look-ahead'.
6491 * src/getargs.h (report.report_lookahead_tokens): Rename from
6492 report_look_ahead_tokens.
6493 * src/lalr.c: Update English in comments.
6494 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
6495 (state_lookahead_tokens_count): Rename from
6496 state_look_ahead_tokens_count.
6497 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6498 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
6499 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6500 Update other uses.
6501 Update English in output.
6502 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
6503 * src/print.c: Update English in comments.
6504 (lookahead_set): Rename from look_ahead_set.
6505 (print_reduction): Rename argument lookahead_token from
6506 look_ahead_token.
6507 (print_core, state_default_rule, print_reductions, print_results):
6508 Update uses.
6509 * src/print_graph.c: Update English in comments.
6510 (print_core): Update uses.
6511 * src/state.c: Update English in comments.
6512 (reductions_new): Update uses.
6513 (state_rule_lookahead_tokens_print): Rename from
6514 state_rule_look_ahead_tokens_print, and update other uses.
6515 * src/state.h: Update English in comments.
6516 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
6517 (state_rule_lookahead_tokens_print): Rename from
6518 state_rule_look_ahead_tokens_print.
6519 * src/tables.c: Update English in comments.
6520 (conflict_row, action_row): Update uses.
6521 * tests/glr-regression.at
6522 (Incorrect lookahead during deterministic GLR,
6523 Incorrect lookahead during nondeterministic GLR): Rename
6524 print_look_ahead to print_lookahead.
6525 * tests/torture.at: Update English in comments.
6526 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
6527 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
6528 (Many lookahead tokens): Update uses.
6529 * data/glr.c: Update English in comments.
6530 * lalr1.cc: Likewise.
6531 * yacc.c: Likewise.
6532 * src/conflicts.h: Likewise.
6533 * src/lalr.h: Likewise.
6534 * src/main.c: Likewise.
6535 * src/output.c: Likewise.
6536 * src/parse-gram.c: Likewise.
6537 * src/tables.h: Likewise.
6538 * tests/calc.at: Likewise.
6539
3c40d0b5
JD
65402006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
6541
6542 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
6543
5d278082
PE
65442006-06-07 Paul Eggert <eggert@cs.ucla.edu>
6545
6546 * TODO: Add request from Nelson H. F. Beebe to be able to install
6547 Bison without installing the yacc script.
6548
9e668899
JD
65492006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6550
6551 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
6552 and yytext if they're already #define'd.
6553 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
6554 * src/scan-code-c.c: ... here.
6555 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
6556 <config.h>.
6557
0c8e079f
JD
65582006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6559
6560 Get Bison to build again when configured with --enable-gcc-warnings.
6561 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
6562 missing #include's.
6563 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6564 loc argument as it shadows a global.
6565 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6566 invocation.
6567
6568 * src/.cvsignore: Add scan-code.c.
6569
2346344a
AD
65702006-06-07 Akim Demaille <akim@epita.fr>
6571
6572 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6573 to...
6574 * src/scan-code.l: here.
6575 * tests/input.at (Torturing the Scanner): Fix another location
6576 error.
6577
4862bdfd
AD
65782006-06-07 Akim Demaille <akim@epita.fr>
6579
6580 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6581
e9071366
AD
65822006-06-06 Akim Demaille <akim@epita.fr>
6583
6584 Extract the parsing of user actions from the grammar scanner.
6585 As a consequence, the relation between the grammar scanner and
6586 parser is much simpler. We can also split "composite tokens" back
6587 into simple tokens.
6588 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6589 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6590 rename as...
6591 * src/location.h, src/location.c (add_column_width)
6592 (location_compute): these.
6593 Fix the column count: the initial column is 0.
6594 (location_print): Be robust to ending column being 0.
6595 * src/location.h (boundary_set): New.
6596 * src/main.c: Adjust to scanner_free being renamed as
6597 gram_scanner_free.
6598 * src/output.c: Include scan-code.h.
6599 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6600 Use boundary_set.
6601 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6602 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6603 which is now, again, a separate token.
6604 Adjust all dependencies.
6605 Whereever actions with $ and @ are used, use translate_code.
6606 (action): Remove this nonterminal which is now useless.
6607 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6608 (grammar_current_rule_action_append): Use translate_code.
6609 (packgram): Bound check ruleno, itemno, and rule_length.
6610 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6611 (last_string, last_braced_code_loc, max_left_semantic_context)
6612 (scanner_initialize, scanner_free, scanner_last_string_free)
6613 (gram_out, gram_lineno, YY_DECL_): Move to...
6614 * src/scan-gram.h: this new file.
6615 (YY_DECL): Rename as...
6616 (GRAM_DECL): this.
6617 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6618 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6619 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6620 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6621 Move these declarations, and...
6622 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6623 these to...
6624 * src/flex-scanner.h: this new file.
6625 * src/scan-gram.l (rule_length, rule_length_overflow)
6626 (increment_rule_length): Remove.
6627 (last_braced_code_loc): Rename as...
6628 (gram_last_braced_code_loc): this.
6629 Adjust to the changes of the parser.
6630 Move all the handling of $ and @ into...
6631 * src/scan-code.l: here.
6632 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6633 (handle_action_dollar, handle_action_at): Move to...
6634 * src/scan-code.l: here.
6635 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6636 scan-code.h, scan-code-c.c, scan-gram.h.
6637 (EXTRA_bison_SOURCES): Add scan-code.l.
6638 (BUILT_SOURCES): Add scan-code.c.
6639 (yacc): Be robust to white spaces.
6640
6641 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6642 * tests/regression.at: Adjust the column numbers.
6643 * tests/regression.at: Adjust the error message.
7891a7c4 6644
184e42f0
JD
66452006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6646
6647 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6648 Use Akim's wording from
6649 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6650
7891a7c4
JD
66512006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6652
6653 Between Bison releases, manually append `+' to the previous Bison
6654 release number, and use that as a signal to automatically print the
6655 ChangeLog's CVS Id keyword from --version. Discussed starting at
6656 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6657 * ChangeLog: Add Id header.
6658 * configure.ac (AC_INIT): Append `+' to `2.3'.
6659 * src/.cvsignore: Add revision.c.
6660 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6661 (BUILT_SOURCES): Add revision.c.
6662 (revision.c): New target rule. This file defines a new global variable
6663 named revision. It initializes it with either the Id from ChangeLog
6664 or, if VERSION doesn't contain `+', with the empty string.
6665 * src/getargs.c (version): Print the value of revision.
6666 * src/revision.h: Extern revision.
6667
4ad3ed84
PE
66682006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6669
6670 * NEWS: Version 2.3.
6671 * configure.ac (AC_INIT): Likewise.
6672
02103984
PE
66732006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6674
6675 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6676 with no arguments, not as an object-like macro. This is for
6677 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6678 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6679 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6680 Document this.
6681
2c08afa5
JD
66822006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6683
6684 * src/getargs.c (usage): Back out yesterday's modification of the
6685 --help output so that we don't have to wait for translation before
6686 releasing 2.3.
6687
6077da58
PE
66882006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6689
6690 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6691 Problem reported by Akim Demaille.
6692
2a26b6c2
JD
66932006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6694
6695 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6696
aefef0d6
PE
66972006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6698
6699 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6700 generated source code. Problem reported by Frans Englich in
6701 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6702
fcd8e201
PE
67032006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6704
6705 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6706 shell, not within 'make', so that 'make' by an ordinary builder
6707 (using GNU make) does not worry about configuring gzip. This also
6708 works around a bug reported independently by Keith Thompson and by
6709 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6710 stderr rather than stdout, messing up the build logs.
6711
7b5cdcbd
JD
67122006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6713
6714 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6715 to make sure that YYID will never be unused. This fixes a 'make
6716 maintainer-check' failure caused by the recent changes to the 'Trivial
6717 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6718 not used.
6719 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6720
5ad0a449
JD
67212006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6722
6723 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6724 state before an empty RHS is always resolved here. Only the location
6725 of that state is guaranteed to be resolved, and that's enough. This
6726 fixes the remaining bug reported by Derek M. Jones in
6727 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6728 * tests/glr-regression.at (Uninitialized location when reporting
6729 ambiguity): Test the above case.
6730 Also, the embedded comments in this test case claim it checks the case
6731 of an empty RHS that has inherited the initial location. However, the
6732 corresponding LHS was already resolved, so yyresolveLocations didn't
6733 actually have reason to modify it. Fix this by forcing
6734 nondeterministic operation at the beginning of the parse.
6735
50cce58e
PE
67362006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6737
6738 * data/c.m4 (b4_yy_symbol_print_generate):
6739 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6740 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6741 of the bugs reported today by Derek M Jones in
6742 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6743 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6744 defined to be a type name without parens or brackets.
6745 (Location Type): Similarly for YYLTYPE.
6746 * tests/regression.at (Trivial grammars): Put in a test for this
6747 bug that will be caught by 'make maintainer-check' (though not,
6748 alas, by 'make check' unless your compiler is picky).
6749
ab8d9dc5
PE
67502006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6751
0d2c8934 6752 * NEWS: Version 2.2.
ab8d9dc5
PE
6753 * configure.ac (AC_INIT): Likewise.
6754
9138c575
JD
67552006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6756
6757 * data/glr.c (yyreportTree): Make room in yystates for the state
6758 preceding the RHS. This fixes the segmentation fault reported by Derek
6759 M. Jones in
6760 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6761 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6762 to the user. Reported for yyreportTree by Derek M. Jones later in the
6763 same thread.
6764 * THANKS: Add Derek M. Jones.
6765 Update my email address.
6766 Fix typo in Steve Murphy's name.
6767
276f48df
PE
67682006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6769
d6645148
PE
6770 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6771 checking against YYLAST that caused the parser to miss a potential
6772 alternative in its diagnostic.
6773 Problem reported by Maria Jose Moron Fernandez in
6774 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6775 * data/lalr1.cc (yysyntax_error_): Likewise.
6776 * data/yacc.c (yysyntax_error): Likewise.
6777 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6778 tokens, in case we run into an older C compiler.
6779 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6780 Use them to check for the off-by-one error fixed above.
6781
276f48df
PE
6782 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6783 YYSIZE_T, not size_t.
6784 * tests/regression.at (Trivial grammars): New test, to catch
6785 the error fixed by the above patch.
6786
cd8b5791
AD
67872006-05-14 Akim Demaille <akim@lrde.epita.fr>
6788
6789 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6790 scheme.
6791 Reported by Steve Murphy.
6792
34376418
AD
67932006-05-14 Akim Demaille <akim@lrde.epita.fr>
6794
6795 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6796 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6797
327afc7c
AD
67982006-05-14 Akim Demaille <akim@lrde.epita.fr>
6799
6800 Implement --trace=m4.
6801 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6802 * src/output.c (output_skeleton): When set, pass -dV to m4.
6803
6804 Factor the handling of flags in m4.
6805 * src/output.c (prepare): Rename the muscle names debug, defines,
6806 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6807 * data/c.m4: Adjust.
6808 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6809 Use b4_define_flag_if to define other b4_FLAG_if macros.
6810 (b4_location_if): As a consequence, rename as...
6811 (b4_locations_if): this, for consistency.
6812 Adjust all the skeletons.
6813
ba9ecd19
AD
68142006-05-14 Akim Demaille <akim@lrde.epita.fr>
6815
6816 * etc/bench.pm: Shorten bench names.
6817
4e83ea15
AD
68182006-05-14 Akim Demaille <akim@lrde.epita.fr>
6819
6820 * src/output.h, src/output.c (error_verbose): Move to...
6821 * src/getargs.h, src/getargs.c: here.
6822 Sort the flags.
6823 Adjust dependencies.
6824
6e93d810
PE
68252006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6826
6827 * data/c.m4 (b4_copyright): Put the special exception for Bison
6828 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
6829 uses changed. Suggested by Akim Demaille. Also, wrap the
6830 copyright notice, in case it is longer than 80 columns. Replace
6831 comma by newline after title.
6e93d810 6832
eaea13f5
PE
68332006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6834
6835 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6836 incompatibility, not a bug. Mention that it wasn't fixed as of
6837 flex 2.5.33.
6838
3cf084ec
AD
68392006-05-11 Akim Demaille <akim@lrde.epita.fr>
6840
6841 * examples/extexi: Enforce the precedence of concatenation over
6842 >>.
0a9f1c7d 6843 Reported by Tommy Nordgren.
3cf084ec 6844
32c96bd7
AD
68452006-05-11 Akim Demaille <akim@lrde.epita.fr>
6846
6847 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6848 with the member "token".
f94705b2 6849 Reported by Martin Nylin.
32c96bd7 6850
eaea13f5
PE
68512006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6852
6853 * data/glr.c: Switch to Bison 2.2 special-exception language in
6854 the copyright notice. Use more-regular format for titles and
6855 copyright notices.
6856 * data/glr.cc: Likewise.
6857 * data/location.cc: Likewise.
6858 * data/yacc.cc: Likewise.
6859 * doc/bison.texinfo (Conditions): Document this.
6860 * NEWS: likewise. Upgrade version to 2.2.
6861
6e2d1146
AD
68622006-04-27 Akim Demaille <akim@lrde.epita.fr>
6863
6864 * data/glr.cc: Remove dead code.
6865
47671055
PE
68662006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6867
6868 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6869 that variable and the line breaks the bootstrap. Problem reported
6870 by Juan M. Guerrero.
6871
ed2e6384
AD
68722006-04-24 Akim Demaille <akim@lrde.epita.fr>
6873
6874 * doc/bison.texinfo (Multiple start-symbols): New.
6875
3cedc2dc
AD
68762006-04-24 Akim Demaille <akim@lrde.epita.fr>
6877
6878 * etc/README, etc/bench.pl: New.
6879
b2ddc3f3
AD
68802006-04-03 Akim Demaille <akim@lrde.epita.fr>
6881
6882 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6883 rule.
6884 Reported by Mickael Labau.
6885 * tests/input.at (Torturing the Scanner): Test it.
6886
91e3ac9a
PE
68872006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6888
6889 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6890 Problem reported by Bob Rossi.
6891
68922006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6893
6894 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6895 and didn't really work.
6896 For the index, use @ifnotinfo, not @iftex.
6897 Minor cleanups of spacing and terminology.
6898
5cf61e93
AD
68992006-03-12 Akim Demaille <akim@lrde.epita.fr>
6900
6901 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6902 of AT_NAME_PREFIX when %name-prefix is not used.
6903
aa08666d
AD
69042006-03-12 Akim Demaille <akim@lrde.epita.fr>
6905
6906 Apply --prefix to C++ skeletons too: they change the namespace.
6907 The test suite already exercize these cases.
6908 * data/c++.m4 (b4_namespace): New.
6909 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
6910 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
6911 * data/yacc.c, data/glr.c: Remove a useless `[]'.
6912 * doc/bison.texinfo: Document it.
6913 (Option Cross Key): Use @multitable in all formats. It looks
6914 nicer, even in TeX outputs.
6915 (Rules): Use the same code whatever the output type is.
6916 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
6917 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
6918 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 6919
45567173
AD
69202006-03-10 Akim Demaille <akim@lrde.epita.fr>
6921
6922 * TODO: Remove dead items.
6923
e9d8f881 69242006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
6925
6926 * doc/FAQ: Remove, merged into...
6927 * doc/bison.texinfo (FAQ): this.
6928 * doc/Makefile.am (EXTRA_DIST): Adjust.
6929
c095d689
AD
69302006-03-10 Akim Demaille <akim@lrde.epita.fr>
6931
6932 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
6933 even if empty.
6934 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
6935 * doc/bison.texinfo (Calc++ Scanner): Use it.
6936
6e0f8287
PE
69372006-03-09 Paul Eggert <eggert@cs.ucla.edu>
6938
6939 Fix two nits reported by twlevo, plus one more that I discovered.
6940
6941 * src/assoc.h (assoc_to_string): Give a name to the arg, as
6942 this is the usual Bison style.
6943 * src/location.h (location_print): Likewise.
6944
6945 * src/reader.h (token_name): Likewise.
6946
d6b771c3
PE
69472006-03-08 Paul Eggert <eggert@cs.ucla.edu>
6948
6949 Fix some nits reported by twlevo.
6950 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
6951 and "POSIX". Use more-modern syntax for URLs. Mention C++
6952 and ask for Java. Don't hardwire OS version numbers. Add
6953 copyright notice.
6954 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
6955 * src/conflicts.c (solved_conflicts_obstack): Now static.
6956
1e137b71
JD
69572006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
6958
6959 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
6960 page. Say "you can use it" not "you may use it" as on the web page;
6961 we're describing capabilities not granting permission.
6962
73f2e47e
PE
69632006-03-06 Paul Eggert <eggert@cs.ucla.edu>
6964
6d05403d
PE
6965 * data/glr.c (yyresolveLocations): Rename local variables to avoid
6966 shadowing warnings. Use usual patter for iterating through RHS.
6967 * tests/glr-regression.at
6968 (Uninitialized location when reporting ambiguity):
6969 Modify yylex so that it uses its argument, rather than trying
6970 to rely on ARGSUSED (which doesn't work for gcc with warnings).
6971 const char -> char const.
6972
73f2e47e
PE
6973 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
6974 Don't use tabs inside commands; it messes up 'ps'.
6975 Problem reported by twlevo.
6976
8710fc41
JD
69772006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
6978
6979 * tests/glr-regression.at (Uninitialized location when reporting
6980 ambiguity): New test case.
6981 * data/glr.c (yyresolveLocations): New function, which uses
6982 YYLLOC_DEFAULT.
6983 (yyresolveValue): Invoke yyresolveLocations before reporting an
6984 ambiguity.
6985 * doc/bison.texinfo (Default Action for Locations): Note
6986 YYLLOC_DEFAULT's usage for ambiguity locations.
6987 (GLR Semantic Actions): Cross-reference those notes.
6988
ae952af2
JD
69892006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
6990
6991 * tests/glr-regression.at (Leaked semantic values when reporting
6992 ambiguity): Remove unnecessary union and type declarations.
6993 (Leaked lookahead after nondeterministic parse syntax error): New test
6994 case.
6995 * data/glr.c (yyparse): Check for zero stacks remaining before
6996 attempting to shift the lookahead so that you don't lose it.
6997
35ee866a
JD
69982006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6999
7000 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
7001 * tests/glr-regression.at (Leaked semantic values when reporting
7002 ambiguity): New test case.
7003 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
7004 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
7005 now unnecessary yystackp parameter.
7006 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
7007 destructors can be called.
7008
7009 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
7010 in existing testcases.
7011
520181ab
JD
70122006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
7013
7014 Don't leak semantic values for parent RHS when a user action cuts the
7015 parser, and clean up related code a bit.
7016 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
7017 cuts parse): Rename to...
7018 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
7019 for leaked parent RHS values.
7020 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
7021 between an unresolved state (non-empty chain of semantic options) and
7022 an incomplete one (signaled by an empty chain).
ae952af2 7023 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
7024 successfully or unsuccessfully resolved yyGLRState to...
7025 (yyresolveValue): ... here so that yyresolveValue always leaves a
7026 yyGLRState with consistent data and thus is easier to understand.
7027 Remove the yyvalp and yylocp parameters since they are always just
7028 taken from the yys parameter. When reporting a discarded merged value
7029 in debugging output, note that it is incompletely merged. Document the
7030 interface.
7031 (yyresolveAction): If resolving any of the RHS states fails, destroy
7032 them all rather than leaking them. Thus, as long as user actions are
7033 written to clean up the RHS correctly, yyresolveAction always cleans up
7034 the RHS of a semantic option. Document the interface.
7035
18d9185c
PE
70362006-02-27 Paul Eggert <eggert@cs.ucla.edu>
7037
7038 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
7039 led to a segmentation fault in GNU Pascal. Problem reported
7040 by Waldek Hebisch.
7041
841a7737
JD
70422006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
7043
7044 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
7045 mid-rule action inside a nonterminal symbol in order to declare a
7046 destructor for its semantic value.
7047
fc3f467f
PE
70482006-02-16 Paul Eggert <eggert@cs.ucla.edu>
7049
7050 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
7051 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
7052 __cplusplus && ! defined _STDLIB_H && !
7053 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
7054 defined free))]: Include <stdlib.h> rather than rolling our own
7055 declarations of malloc and free, to avoid problems with
7056 incompatible declarations (using 'throw') C++'s stdlib.h. This
7057 should fix Debian bug 340012
7058 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
7059 reported by Guillaume Melquiond.
7060
a3af26dd
PE
70612006-02-13 Paul Eggert <eggert@cs.ucla.edu>
7062
4d7bc38c
PE
7063 * NEWS: Clarify symbols versus types in unused-value warnings.
7064
a3af26dd
PE
7065 * configure.ac (AC_INIT): Bump version number.
7066
4e26c69e
PE
70672006-02-13 Paul Eggert <eggert@cs.ucla.edu>
7068
7069 * NEWS: Version 2.1a.
7070 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
7071 since C99 requires this.
7072
498e897c
PE
70732006-02-11 Paul Eggert <eggert@cs.ucla.edu>
7074
7075 * m4/c-working.m4: New file.
7076 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
7077
57bb17ca
PE
70782006-02-10 Paul Eggert <eggert@cs.ucla.edu>
7079
7080 * Makefile.maint: Merge from coreutils.
7081
0be105dc
PE
70822006-02-09 Paul Eggert <eggert@cs.ucla.edu>
7083
7084 More portability fixes for problems summarized by Nelson H. F. Beebe.
7085
7086 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
7087 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
7088 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
7089 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
7090 messes up because C++ code is compiled in 32-bit mode but linked
7091 in 64-bit mode.
7092
6fc0c024
PE
70932006-02-08 Paul Eggert <eggert@cs.ucla.edu>
7094
7095 More portability fixes for problems summarized by Nelson H. F. Beebe.
7096
7870f699
PE
7097 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
7098 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
7099
6fc0c024
PE
7100 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
7101 nodist_PROGRAMS, since we don't need to actually compile the
7102 example if we're just doing a plain 'make'. This avoids bothering
7103 the installer unnecessarily about problems due to weird C++
7104 compilers.
7105
fe6c2fde
PE
71062006-02-06 Paul Eggert <eggert@cs.ucla.edu>
7107
7108 More portability fixes for problems summarized by Nelson H. F. Beebe.
7109
7110 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
7111 than #include "...", and compile with -I'.'. The old method was
7112 not portable, according to Posix and the C standard, and it does
7113 not work with Sun C 5.7, where previous #line directives affect
7114 the working directory used in later #include "..." directives.
7115
927b425b
JMG
71162006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7117
7118 Various DJGGP specific issues in /djgpp
7119
d9735e9e
PE
71202006-02-02 Paul Eggert <eggert@cs.ucla.edu>
7121
7122 More portability fixes for problems summarized by Nelson H. F. Beebe.
7123
7124 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
7125 '#include <map>' works and that you can apply ++ to iterators.
7126
5a6755af
PE
71272006-02-01 Paul Eggert <eggert@cs.ucla.edu>
7128
67a0dc4f
PE
7129 Work around portability problems summarized by Nelson H. F. Beebe in
7130 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
7131
8c86f0ef
PE
7132 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7133 that '#include <string>' works.
7134
de35dd59
PE
7135 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
7136 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
7137 "warning: sorry: semantics of inline function static data `const
7138 unsigned char translate_table[262]' are wrong (you'll wind up with
7139 multiple copies)".
7140
67a0dc4f
PE
7141 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
7142 or, xor to not_, and_, or_, and xor_, respectively. This works
7143 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
7144 random system header somewhere that includes the equivalent of
7145 <iso646.h>.
7146
5a6755af
PE
7147 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
7148 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 7149 Suite Version 2.0.
5a6755af 7150
3f001415
JD
71512006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
7152
7153 During deterministic GLR operation, user actions should be able to
7154 influence the parse by changing yychar. To make this easier to fix and
7155 to make glr.c easier to evolve in general, don't maintain yytoken in
7156 parallel with yychar; just compute yytoken when needed.
7157 * tests/glr-regression.at (Incorrect lookahead during deterministic
7158 GLR): Check that setting yychar in a user action has the intended
7159 effect.
7160 * data/glr.c (yyGLRStack): Remove yytokenp member.
7161 (yyclearin): Don't set *yytokenp.
7162 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
7163 yychar rather than *yytokenp to determine the current lookahead.
7164 Compute yytoken locally when needed.
7165 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
7166 point to.
7167
7168 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
7169 after `--report' documentation.
7170
e2a8c0f5
PE
71712006-01-30 Paul Eggert <eggert@cs.ucla.edu>
7172
7173 * src/parse-gram.y (grammar_declaration): Location of printer
7174 symbol is @1, not list->location. Bug reported by twlevo.
7175 * tests/input.at (Incompatible Aliases): Adjust to above change.
7176
6b702268
PE
71772006-01-29 Paul Eggert <eggert@cs.ucla.edu>
7178
27622431
PE
7179 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
7180 all the test at once. This makes the output easier to read in the
7181 normal case.
7182
6b702268
PE
7183 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
7184 got from <http://bro-ids.org/download.html>. The bug is that
7185 when two actions appeared in succession, the second one was
7186 scanned before the first one was added to the grammar rule
7187 as a midrule action. Bison then output the incorrect warning
7188 "parse.y:905.17-906.36: warning: unused value: $3".
7189 * src/parse-gram.y (BRACED_CODE, action): These are no longer
7190 associated with a value.
7191 (rhs): Don't invoke grammar_current_rule_action_append.
7192 (action): Invoke it here instead.
7193 * src/reader.c (grammar_midrule_action): Now extern.
7194 (grammar_current_rule_action_append): Don't invoke
7195 grammar_midrule_action; that is now the scanner's job.
7196 * src/reader.h (last_string, last_braced_code_loc):
7197 (grammar_midrule_action): New decls.
7198 * src/scan-gram.l (last_string): Now extern, sigh.
7199 (last_braced_code_loc): New extern variable.
7200 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
7201 rule already has an action.
7202 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
7203 * tests/input.at (AT_CHECK_UNUSED_VALUES):
7204 Add some tests to check that the above changes fixed the bug.
7205
d40ba6c2
PE
72062006-01-27 Paul Eggert <eggert@cs.ucla.edu>
7207
7208 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
7209 All used changed. Check whether the symbol has a destructor,
7210 not whether it is typed.
7211 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
7212 that the values are still reported as unused. All line numbers
7213 adjusted.
7214
401aace6
PE
72152006-01-23 Paul Eggert <eggert@cs.ucla.edu>
7216
7217 Work around a bug in bro 0.8, which underparenthesizes its
7218 definition of YYLLOC_DEFAULT.
7219 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
7220 their arguments.
7221 * data/lalr1.cc: Likewise.
7222 * data/yacc.cc: Likewise.
7223
06f01bc4
PE
72242006-01-22 Paul Eggert <eggert@cs.ucla.edu>
7225
401aace6
PE
7226 Work around a bug in Pike 7.0, and give the Pike folks a
7227 better way to override the usual int widths.
7228 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
7229 user can override the types.
7230 (short): #undef, to work around a bug in Pike 7.0.
7231 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
7232 (union yyalloc.yyss): Use yytype_int16 rather than short.
7233 All uses changed.
7234 (yysigned_char): Remove.
7235 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
7236 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
7237 * tests/regression.at (Web2c Actions): Adjust to above changes.
7238
7239 * src/reader.c (check_and_convert_grammar): New function.
7240 (reader): Close the input file even if something went wrong during
7241 parsing. Minor file descriptor leak reported by twlevo.
7242
06f01bc4
PE
7243 * src/assoc.c (assoc_to_string): Use a default: abort (); case
7244 to pacify gcc -Wswitch-default.
7245 * src/scan-gram.l (adjust_location): Use a default: break; case
7246 to pacify gcc -Wswitch-default.
7247 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
7248 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7249 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7250 Move these decls to scan-skel.l, since they don't need to be
7251 visible elsewhere.
7252 * src/scan-skel.l: Accept the above decls.
7253 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
7254 is used.
7255
02650b7f
PE
72562006-01-21 Paul Eggert <eggert@cs.ucla.edu>
7257
7258 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
7259 since we don't want to insist on a version number at the start
7260 of the changelog every time.
7261 * Makefile.maint: Sync from coreutils a bit better.
7262 (sc_trailing_blank): Renamed from sc_trailing_space.
7263 All uses changed.
7264 (sc_no_if_have_config_h, sc_require_config_h):
7265 (sc_prohibit_assert_without_use): New rules.
7266 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
7267 (sc_dd_max_sym_length): Fix leading spaces in rule.
7268 (sc_system_h_headers): Prefix with @.
7269 (sc_useless_cpp_parens, m4-check): Output line numbers.
7270 (changelog-check): Allow version only in head.
7271 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
7272 satisfy new Makefile.maint rule.
7273 * data/glr.c: Likewise.
7274 * data/glr.cc: Likewise.
7275 * data/lalr1.cc: Likewise.
7276 * data/yacc.c: Likewise.
7277 * lib/ebitsetv.c: Likewise.
7278 * lib/lbitset.c: Likewise.
7279 * lib/subpipe.c: Likewise.
7280 * lib/timevar.c: Likewise.
7281 * src/system.h: Likewise.
7282 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
7283 * djgpp/Makefile.maint: Add copyright notice.
7284 * djgpp/README.in: Likewise.
7285 * djgpp/config.bat: Likewise.
7286 * djgpp/config.site: Likewise.
7287 * djgpp/config_h.sed: Likewise.
7288 * djgpp/djunpack.bat: Likewise.
7289 * djgpp/config.sed: Fix copyright notice to match standard format.
7290 * djgpp/subpipe.h: Likewise.
7291 * lib/bitsetv-print.c: Likewise.
7292 * lib/bitsetv.c: Likewise.
7293 * lib/subpipe.h: Likewise.
7294 * lib/timevar.c: Likewise.
7295 * lib/timevar.h: Likewise.
7296 * djgpp/subpipe.c: Use standard recipe for config.h.
7297 * lib/abitset.c: Likewise.
7298 * lib/bitset.c: Likewise.
7299 * lib/bitset_stats.c: Likewise.
7300 * lib/bitsetv-print.c: Likewise.
7301 * lib/bitsetv.c: Likewise.
7302 * lib/ebitsetv.c: Likewise.
7303 * lib/get-errno.c: Likewise.
7304 * lib/lbitset.c: Likewise.
7305 * lib/subpipe.c: Likewise.
7306 * lib/timevar.c: Likewise.
7307 * lib/vbitset.c: Likewise.
7308 * tests/local.at: Likewise.
7309 * src/scan-gram.l: Don't include verify.h, since system.h does
7310 that for us.
7311 * .x-sc_require_config_h: New file.
7312 * .x-sc_unmarked_diagnostics: New file.
7313
287c78f6
PE
73142006-01-20 Paul Eggert <eggert@cs.ucla.edu>
7315
287c78f6
PE
7316 Be a bit more systematic about using 'abort'.
7317 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
7318 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
7319 Put 'default: abort ();' before some other case, to satisfy older
7320 pedantic compilers.
7321 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7322 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
7323 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
7324 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
7325 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
7326 (get_decision_str, get_orientation_str, get_node_alignment_str):
7327 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
7328 (get_linestyle_str, get_arrowstyle_str): Likewise.
7329 * src/conflicts.c (resolve_sr_conflict):
7330 Use a default case rather than one for the one remaining enum
7331 value, to catch invalid enum values as well.
7332 * src/lalr.c (set_goto_map, map_goto):
7333 Prefer "assert (FOO);" to "if (!FOO) abort ();".
7334 * src/nullable.c (nullable_compute, token_definitions_output):
7335 Likewise.
7336 * src/reader.c (packgram, reader): Likewise.
7337 * src/state.c (transitions_to, state_new, state_reduction_find):
7338 Likewise.
7339 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
7340 (symbol_pack): Likewise.
7341 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
7342 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
7343 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
7344 * src/system.h: Don't include <assert.h>.
7345 (assert): New macro.
7346
7347 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
7348 (Destructor Decl, Parser Function, Pure Calling):
7349 Describe rules for braces inside C code more carefully.
287c78f6 7350
c66dfadd
PE
73512006-01-19 Paul Eggert <eggert@cs.ucla.edu>
7352
c21493b8
PE
7353 Fix some porting glitches found by Nelson H. F. Beebe.
7354 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
7355 compilers that don't understand that abort () does not return.
7356 * src/state.c (transitions_to): Likewise.
7357 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7358 that '#include <cstdlib>' works.
7359 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
7360 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
7361 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
7362 for the benefit of some pre-C99 compilers.
7363
b6e3facf
PE
7364 * bootstrap: Undo changes to gnulib files that autoreconf made.
7365
c66dfadd
PE
7366 Minor fixups to get 'make maintainer-check' to work.
7367 * configure.ac: Don't use -Wnested-externs, as it's incompatible
7368 with the new verify.h implementation.
7369 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
7370 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
7371 * data/yacc.c (YYUSE): Likewise.
7372 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
7373 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
7374 * src/parse-gram.y (declaration): Don't pass a string constant
7375 to a function that expects char *, since GCC might complain
7376 about the constant value.
7377 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
7378 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
7379 before #defining them.
7380 * tests/glr-regression.at
7381 (Incorrectly initialized location for empty right-hand side in GLR):
7382 In yyerror, use the msg arg.
7383 (Corrupted semantic options if user action cuts parse):
7384 (Incorrect lookahead during deterministic GLR):
7385 (Incorrect lookahead during nondeterministic GLR):
7386 Don't name a local var 'index'; it shadows string.h's 'index'.
7387
ed94ef2a
AD
73882006-01-19 Akim Demaille <akim@epita.fr>
7389
7390 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
7391 location, not just parts of it.
7392
e9ad4aec
PE
73932006-01-18 Paul Eggert <eggert@cs.ucla.edu>
7394
d6ca7905
PE
7395 * NEWS: Document the fact that multiple %unions are now allowed.
7396 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
7397 * TODO: This feature is now implemented, so remove it from
7398 the wishlist.
d6ca7905 7399
ef1b70e0
PE
7400 * Makefile.maint: Merge with coreutils Makefile.maint.
7401 (CVS_LIST): Use build-aux version if available.
7402 (VERSION_REGEXP): New macro.
7403 (syntax-check-rules): Add sc_no_if_have_config_h,
7404 sc_prohibit_assert_without_use, sc_require_config_h,
7405 sc_useless_cpp_parens.
7406 (sc_obsolete_symbols): Check for O_NDELAY.
7407 (sc_dd_max_sym_length): Track coreutils.
7408 (sc_unmarked_diagnostics): Look in all files, not just *.c.
7409 (sc_useless_cpp_parens): New rule.
7410 (news-date-check): Look for version or today's date.
7411 (changelog-check): Don't require version number near head.
7412 (copyright-check): Use current year instead of hardwiring 2005.
7413 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
7414 (announcement): Add --gpg-key-ID.
7415
7416 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
7417 with "file system".
7418
2073ce56 7419 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
7420 array. Problem reported by twlevo.
7421 * src/reader.c (packgram): Prepend a new sentinel before ritem.
7422 * src/lalr.c (build_relations): Rely on new sentinel.
7423 * src/gram.c (gram_free): Adjust to new sentinel.
7424
b7691f15
JD
74252006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
7426
7427 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
7428 yylookaheadNeeds. All uses updated.
7429 (yysplitStack): Rename local yynewLookaheadStatuses to
7430 yynewLookaheadNeeds.
7431 * data/glr-regression.at (Incorrect lookahead during nondeterministic
7432 GLR): In comments, change `lookahead status' to `lookahead need'.
7433
ddee1b06
PH
74342006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7435
7436 * data/glr.c (yysplitStack): A little stylistic rewrite.
7437
12f4614d
PH
74382006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7439
7440 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
7441
32c29292
JD
74422006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
7443
7444 * doc/bison.texinfo: Fix some typos.
7445 (GLR Semantic Actions): New subsection discussing special
7446 considerations because GLR semantic actions might be deferred.
7447 (Actions): Mention look-ahead usage of yylval.
7448 (Actions and Locations): Mention look-ahead usage of yylloc.
7449 (Special Features for Use in Actions): Add YYEOF entry and mention it
7450 in the yychar entry.
7451 In the yychar entry, remove mention of the local yychar case (pure
7452 parser) since this is irrelevant information when writing semantic
148d66d8 7453 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
7454 yychar is otherwise described as an external variable.
7455 In the yychar entry, don't call it the `current' look-ahead since it
7456 isn't when semantic actions are deferred.
7457 In the yychar and yyclearin entries, add note about deferred semantic
7458 actions.
7459 Add yylloc and yylval entries discussing look-ahead usage.
7460 (Look-Ahead Tokens): When discussing yychar, don't call it the
7461 `current' look-ahead, and do mention yylval and yylloc.
7462 (Error Recovery): Cross-reference `Action Features' when mentioning
7463 yyclearin.
148d66d8 7464 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
7465 look-ahead.
7466 In the yylloc and yylval entries, mention look-ahead usage.
7467
de366a2f 74682006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
7469
7470 * tests/glr-regression.at: Update copyright year to 2006.
7471
bf70fa87
JD
74722006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7473
7474 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
7475 use during nondeterministic operation to track which stacks have
7476 actually needed the current lookahead.
7477 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
7478 Allocate, deallocate, resize, and otherwise shuffle space for
7479 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
7480 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
7481 appropriately during nondeterministic operation.
7482 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
7483 members to store the current lookahead to be used by the deferred
7484 user action.
7485 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
7486 from which the RHS is taken. Set the lookahead members of the new
7487 yySemanticOption according to the lookahead status for stack yyk.
7488 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
7489 yyaddDeferredAction.
7490 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
7491 members of yySemanticOption before invoking yyuserAction, and then set
7492 them back to their current values afterward.
7493 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
7494 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
7495 * tests/glr-regression.at: Remove `.' from the ends of recent test case
7496 titles for consistency.
7497 (Leaked merged semantic value if user action cuts parse): In order to
7498 suppress lint warnings, use arguments in merge function, and assign
7499 char value < 128 in main.
7500 (Incorrect lookahead during deterministic GLR): New test case.
7501 (Incorrect lookahead during nondeterministic GLR): New test case.
7502
05449a2c
JD
75032006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7504
de366a2f 7505 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
7506 !yyvaluep as signal that no semantic value is available to print.
7507 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
7508 to print a semantic value.
7509
4158e0a1 75102006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 7511
4158e0a1
JD
7512 * tests/glr-regression.at: For consistency with my newer test cases,
7513 don't thank myself.
7514
d659304d
JD
75152006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7516
7517 * data/glr.c (yyresolveValue): When merging semantic options, if at
7518 least one user action succeeds but a later one cuts the parse, then
7519 destroy the semantic value before returning rather than leaking it.
7520 (yyresolveStates): If a user action cuts the parse and thus
7521 yyresolveValue fails, ignore the (unset) semantic value rather than
7522 corrupting the yyGLRState, and empty the semantic options list since
7523 the user actions should have called all necessary destructors.
7524 Simplify code with YYCHK.
7525 * tests/glr-regression.at (Corrupted semantic options if user action
7526 cuts parse): New test case.
7527 (Undesirable destructors if user action cuts parse): New test case.
7528 Before applying any of this patch, this test case never actually failed
7529 for me... but only because the corrupted semantic options usually
7530 masked this bug.
7531 (Leaked merged semantic value if user action cuts parse): New test
7532 case.
7533
6ec2c0f2
AD
75342006-01-05 Akim Demaille <akim@epita.fr>
7535
7536 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
7537
1b9c21fb
PE
75382006-01-04 Paul Eggert <eggert@cs.ucla.edu>
7539
7540 * data/c.m4 (b4_c_modern): New macro, with a new provision for
7541 _MSC_VER. Problem reported by Cenzato Marco.
7542 (b4_c_function_def): Use it.
7543 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
7544 b4_c_modern.
7545 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
7546 than rolling our own.
7547
84866159
AD
75482006-01-04 Akim Demaille <akim@epita.fr>
7549
7550 Also warn about non-used mid-rule values.
7551 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
7552 member.
7553 (symbol_list_new): Adjust.
7554 * src/reader.c (symbol_typed_p): New.
7555 (grammar_rule_check): Use it.
7556 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
7557 Check its rule.
7558 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
7559 Use it.
7560 * tests/actions.at (Exotic Dollars): Adjust.
7561
378f4bd8
AD
75622006-01-04 Akim Demaille <akim@epita.fr>
7563
7564 * src/reader.c (grammar_midrule_action): If $$ is set in a
7565 mid-rule, move the `used' bit to its lhs.
7566 * tests/input.at (Unused values): New.
7567 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7568
e2a21b6f
PE
75692006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7570
54662697
PE
7571 * doc/bison.texinfo (Bison Options): Say more accurately what
7572 --yacc does.
7573 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7574 about declarations in the grammar when in Yacc mode, as POSIX does
7575 not require a diagnostic when the grammar uses extensions.
7576
7577 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7578
073f9288
PE
7579 Warn about dubious constructions like "%token T T".
7580 Reported by twlevo.
7581 * src/symtab.h (struct symbol.declared): New member.
7582 * src/symtab.c (symbol_new): Initialize it to false.
7583 (symbol_class_set): New arg DECLARING, specifying whether
7584 this is a declaration that we want to warn about, if there
7585 is more than one of them. All uses changed.
7586
1221b78a
PE
7587 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7588 Allow multiple %union directives, whose contents concatenate.
7589 * src/parse-gram.y (grammar_declaration): Likewise.
7590 Use muscle_code_grow, so that we don't need stype_line any more.
7591 All uses changed.
7592
7593 * src/muscle_tab.c (muscle_grow): Fix comment.
7594
e2a21b6f
PE
7595 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7596 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7597 Update copyright year to 2006.
7598
8f7e3cf9
AD
75992006-01-03 Akim Demaille <akim@epita.fr>
7600
7601 Have glr.cc pass (some of) the calc.at tests.
7602 * data/glr.cc (b4_parse_param_orig): New.
7603 (b4_parse_param): Improve its definition, and bound it more
7604 clearly in the skeleton.
7605 (b4_epilogue): Append, instead of prepending, in order to keep
7606 #line consistency.
7607 Simplify the generation of auxiliary functions: locations and
7608 purity are mandated.
7609 (b4_global_tokens_and_yystype): Honor it.
7610 * data/location.cc (c++.m4): Don't include it.
7611 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7612 and AT_SKEL_CC_IF.
7613 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7614 AT_LALR1_CC_IF.
7615 Be sure to initialize the first position's filename.
7616 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7617 mandated anyway.
7618 (AT_CHECK_CALC_GLR_CC): New.
7619 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7620
3953ed88
AD
76212006-01-02 Akim Demaille <akim@epita.fr>
7622
7623 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7624 c.m4.
0a96ba81 7625 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
7626 * data/glr.cc: Do not include stack.hh.
7627
9ecafbbf
AD
76282006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7629
7630 * data/glr.c: Reformat whitespace with tabs.
7631 (b4_lpure_formals): Remove this unused m4 macro.
7632 * tests/cxx-type.at: Reformat whitespace with tabs.
7633 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7634 since it's a member. Rename type to isNterm for clarity.
7635
c4d497a0
AD
76362005-12-29 Akim <akim@sulaco.local>
7637
7638 Let glr.cc catch up with symbol_value_print.
7639 * data/glr.cc (b4_yysymprint_generate): Replace by...
7640 (b4_yy_symbol_print_generate): this.
7641 (yy_symbol_print, yy_symbol_value_print): Declare them.
7642
4517da37
PE
76432005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7644
7645 * src/location.h (boundary): Note that a line or column equal
7646 to INT_MAX indicates an overflow.
7647 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7648 (rule_length_overflow, increment_rule_length, add_column_width):
7649 New functions.
7650 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7651 (<SC_BRACED_CODE>"}"):
7652 Use increment_rule_length rather than incrementing it by hand.
7653 (adjust_location, handle_syncline): Diagnose overflow.
7654 (handle_action_dollar, handle_action_at):
7655 Fix bug with monstrosities like $-2147483648.
7656 Remove now-unnecessary checks.
7657 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7658 (convert_ucn_to_byte): Verify assumptions.
7659 (handle_syncline): New arg LOC. All callers changed.
7660 Don't store through a value derived from char const * pointer.
7661
7662 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7663 GCC warnings.
7664
e3233bf6
PE
76652005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7666
7667 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7668 Remove unnecessary forward static decls.
7669
8f3596a6
AD
76702005-12-27 Akim Demaille <akim@epita.fr>
7671
7672 * src/reader.c (grammar_current_rule_check): Also check that $$
7673 is used.
7674 Take the rule to check as argument, hence rename as...
7675 (grammar_rule_check): this.
7676 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7677 Rename as...
7678 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7679 (grammar_midrule_action, grammar_symbol_append): Now static.
7680 * tests/torture.at (input): Don't rely on the default action
7681 being always performed.
7682 * tests/calc.at: "Set" $$ even when the action is "cut" with
7683 YYERROR or other.
7684 * tests/actions.at (Exotic Dollars): Instead of using unused
7685 values, check that the warning is issued.
7686
721be13c
PE
76872005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7688
7689 * NEWS: Improve wording for unused-value warnings.
7690
a0af42fc
AD
76912005-12-22 Akim Demaille <akim@epita.fr>
7692
7693 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7694 (b4_yysymprint_generate): Rename as...
7695 (b4_yy_symbol_print_generate): this.
7696 Generate yy_symbol_print instead of yysymprint.
7697 Generate also yy_symbol_value_print, and use it.
7698
affac613
AD
76992005-12-22 Akim Demaille <akim@epita.fr>
7700
721be13c 7701 * NEWS: Warn about unused values.
affac613
AD
7702 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7703 a `used' member.
7704 (symbol_list_n_get, symbol_list_n_used_set): New.
7705 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7706 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7707 * src/reader.c (grammar_current_rule_check): Check that values are
7708 used.
7709 * src/symtab.c (symbol_print): Accept 0.
7710 * tests/existing.at: Remove the type information.
7711 Empty the actions.
7712 Remove useless actions (beware of mid-rule actions: perl -000
7713 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7714 * tests/actions.at (Exotic Dollars): Use unused values.
7715 * tests/calc.at: Likewise.
7716 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7717 Likewise.
7718
7719 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7720 rule_useful_p.
7721
9d9b8b70
PE
77222005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7723
8bb4c753
PE
7724 Undo 2005-12-01 tentative license wording change. The wording is
7725 still being reviewed by the lawyers, and we don't want to wait for
7726 them before publishing a test release. For now, revert to the
7727 previous wording.
7728 * NEWS: Undo 2005-12-01 change.
7729 * data/glr.c: Revert to previous license wording.
7730 * data/glr.cc: Likewise.
7731 * data/lalr1.cc: Likewise.
7732 * data/location.cc: Likewise.
7733 * data/yacc.c: Likewise.
7734
9d9b8b70
PE
7735 * NEWS: Reword %destructor vs YYABORT etc.
7736 * data/glr.c: Use American spacing, for consistency.
7737 * data/glr.cc: Likewise.
7738 * data/lalr1.cc: Likewise.
7739 * data/yacc.c: Likewise.
7740 * data/yacc.c: Reformat comments slightly.
7741 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7742 for consistency. Fix some spelling errors and reword recently-included
7743 text slightly.
7744 * tests/cxx-type.at: Cast results of malloc, for C++.
7745
2c3b392a
AD
77462005-12-21 Joel E. Denny <address@hidden>
7747
7748 * tests/cxx-type.at: Construct a tree, count the parents of shared
7749 nodes, and free each node once and only once. Previously, the memory
7750 for semantic values was leaked instead.
7751
d6cff4dc
AD
77522005-12-21 Joel E. Denny <address@hidden>
7753
7754 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7755 (yylval, yylloc): If pure, #define to yystackp->yyval and
7756 yystackp->yyloc similar to yychar and yynerrs.
7757 (yyparse): If pure, remove local yylval and yylloc. Add local
7758 yystackp to accommodate pure definitions of yylval and yylloc.
7759 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7760 yylvalp and yyllocp to &yylval and &yylloc.
7761 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7762 namespace. Previously, nerrs and char were missing, but lval and lloc
7763 weren't necessary.
7764 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7765 yylvalp and yyllocp parameters since, if pure, these are now always
7766 accessible through yystackp. If not pure, they are still accessible
7767 globally.
7768 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7769 `if (YYID (N))' to pacify lint.
7770
a85284cf
AD
77712005-12-21 Akim Demaille <akim@epita.fr>
7772
7773 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7774 destroy the RHS symbols of a rule.
7775 * data/yacc.c (yylen): Initialize to 0.
7776 Keep its value to the number of items to possibly shift.
7777 In particular, a regular successful parse that ends on YYFINAL by
7778 a (internal) YYACCEPT must not have yylen != 0.
7779 (yyerrorlab, yyreturn): Pop the RHS.
7780 Reorder a bit to emphasize the `shifting' bits of code.
7781 (YYPOPSTACK): Now accept a number of items to pop.
7782 * data/lalr1.cc: Likewise.
7783 * data/glr.c: Formatting changes.
7784 Use goto instead of fall through.
7785 * doc/bison.texinfo (Destructor Decl): Complete.
7786
d508c281
JMG
77872005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7788
7789 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7790 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7791 * djgpp/config.bat: Replace every occurence of the file name
7792 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7793 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7794 * djgpp/config.sed: Replace every occurence of the file name
7795 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7796 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7797 * djgpp/djunpack.bat: DJGPP specific file.
7798 * djgpp/fnchange.lst: DJGPP specific file.
7799 * djgpp/README.in: Add new information about how to unpack the bison
7800 source on MSDOS and other systems which have 8.3 file name restrictions
7801 using djunpack.bat and fnchange.lst.
7802
3e7a2cd9
PE
78032005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7804
7805 * bootstrap (build_cvs_prefix): Remove; unused.
7806 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7807 when getting gnulib.
7808
78092005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7810
7811 * data/glr.c: Reorder typedef declarations for structs to match order
7812 of struct declarations.
7813 Rename yystack everywhere to yystackp except in yyparse where it's not
7814 a pointer.
7815 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7816 consistency.
7817 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7818 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7819 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7820 lint.
7821
877519f8
PE
78222005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7823
0eca5a39
PE
7824 * tests/sets.at (Accept): Fix typos in regular expression used to
7825 sed out the final state number.
7826
2cec9080
PE
7827 Work around portability problem on Solaris 10: flex-generated
7828 files include <stdio.h> before <config.h>, which messes up
7829 because the latter defines __EXTENSIONS__. Address the problem
7830 by creating two new little files that include <config.h> first,
7831 then include the flex-generated files. Rewrite everyone else
7832 to include <config.h> first, as well.
7833 * lib/timevar.c: Always include "config.h".
7834 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7835 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7836 (EXTRA_bison_SOURCES): New macro.
7837 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7838 * src/system.h: Don't include config.h.
7839 * src/LR0.c: Include <config.h> first.
7840 * src/assoc.c: Likewise.
7841 * src/closure.c: Likewise.
7842 * src/complain.c: Likewise.
7843 * src/conflicts.c: Likewise.
7844 * src/derives.c: Likewise.
7845 * src/files.c: Likewise.
7846 * src/getargs.c: Likewise.
7847 * src/gram.c: Likewise.
7848 * src/lalr.c: Likewise.
7849 * src/location.c: Likewise.
7850 * src/main.c: Likewise.
7851 * src/muscle_tab.c: Likewise.
7852 * src/nullable.c: Likewise.
7853 * src/output.c: Likewise.
7854 * src/parse-gram.y: Likewise.
7855 * src/print.c: Likewise.
7856 * src/print_graph.c: Likewise.
7857 * src/reader.c: Likewise.
7858 * src/reduce.c: Likewise.
7859 * src/relation.c: Likewise.
7860 * src/state.c: Likewise.
7861 * src/symlist.c: Likewise.
7862 * src/symtab.c: Likewise.
7863 * src/tables.c: Likewise.
7864 * src/uniqstr.c: Likewise.
7865 * src/vcg.c: Likewise.
7866
877519f8
PE
7867 * src/parse-gram.y: Fix minor problems uncovered by lint.
7868 (current_lhs, current_lhs_location): Now static.
7869 (current_assoc): Remove unused variable.
7870
7871 Cleanups so that Bison-generated parsers have less lint.
7872 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7873 Prepend /*ARGSUSED*/, for lint's sake.
7874 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7875 definition if 'lint' is defined.
7876 (YYID): New macro (or function, if lint).
7877 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7878 * data/yacc.c: Likewise.
7879 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7880 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7881 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7882 is C++ only.
7883 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7884 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7885 Use YYID(0) rather than 0, for lint.
7886 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7887 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7888
f5228370
PE
78892005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7890
7891 * tests/glr-regression.at
7892 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7893 Close memory leak reported by twlevo.
7894
69ce078b
PE
78952005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7896
6ff99711
PE
7897 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7898 all stacks.
7899 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
7900 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7901 New test case.
7902 (Duplicated user destructor for lookahead): This test now is expected
7903 to succeed.
7904
af3412cd
PE
79052005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7906
32b5b719 7907 * NEWS: Document the following change.
af3412cd
PE
7908 * data/yacc.c: Say "parser skeleton" rather than "file", since
7909 it's no longer just a file.
7910 * data/glr.c: Grant a special exception for C GLR parsers, that
7911 reads like the already-existing exception for C LALR(1) parsers.
7912 * data/glr.cc: Likewise.
7913 * data/lalr1.cc: Likewise.
7914 * data/location.cc: Likewise.
7915 * data/yacc.c: Reword the "written by" statement to clarify that
7916 it was the parser skeleton, not the entire output file.
7917 * data/glr.c: Written by Paul Hilfinger.
7918 * data/glr.cc: Written by Akim Demaille.
7919 * data/lalr1.cc: Likewise.
7920
035aa4a0
PE
79212005-11-18 Paul Eggert <eggert@cs.ucla.edu>
7922
d9963c85
PE
7923 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
7924 Fix typos in previous change that broke 'make check'.
7925 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
7926 supported in C.
7927 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
7928 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
7929 We can revert this once things settle down.
7930
035aa4a0
PE
7931 * src/conflicts.c (conflicts_print): Don't print file name twice
7932 when %expect fails because there were no conflicts.
7933 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
7934 change.
7935 * tests/conflicts.at (%expect not enough, %expect too much):
7936 (%expect with reduce conflicts): Adjust to new behavior.
7937
79382005-11-18 Akim Demaille <akim@epita.fr>
7939
7940 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
7941 errors.
7942 * NEWS: Document this.
7943 * doc/bison.texinfo (Expect Decl): Likewise.
7944
d1ff7a7c
AD
79452005-11-16 Akim Demaille <akim@epita.fr>
7946
7947 Generalize the display of semantic values and locations in traces.
7948 * data/glr.c (yy_reduce_print): Fix indices (again).
7949 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
7950 literal integers.
7951 * data/lalr1.cc (yyreduce_print): Rename as...
7952 (yy_reduce_print): this.
7953 Display values and locations.
7954 * data/yacc.c (yy_reduce_print): Likewise.
7955 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
7956 (yysymprint): Move higher to be visible from yy_reduce_print).
7957 (yyparse): Adjust.
7958 * tests/calc.at: Adjust the expected length of the traces.
7959
6de5398d
AD
79602005-11-14 Akim Demaille <akim@epita.fr>
7961
7962 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
7963 from 1 to N, while values and location start at 0.
7964 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
7965
a1373f55
AD
79662005-11-14 Akim Demaille <akim@epita.fr>
7967
7968 * data/glr.c (yy_reduce_print): Fix the $ number.
7969
613d8952
AD
79702005-11-14 Akim Demaille <akim@epita.fr>
7971
7972 "Use" parse parameters.
7973 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
7974 * data/glr.c, data/glr.cc: Use them.
7975 * data/glr.c (YYUSE): Have a C++ definition that supports
7976 non-pointer types.
7977
b2741627
AD
79782005-11-14 Akim Demaille <akim@epita.fr>
7979
7980 * data/glr.c (yyexpandGLRStack): Declare only if defined.
7981
5059b5c8
AD
79822005-11-14 Akim Demaille <akim@epita.fr>
7983
42249483
AD
7984 * data/glr.cc: New.
7985 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 7986
4626a15d
AD
79872005-11-12 Akim Demaille <akim@epita.fr>
7988
7989 Let position and location be PODs.
7990 * data/location.cc (position::initialize, location::initialize): New.
7991 (position::position, location::location): Define only if
7992 b4_location_constructors is defined.
7993 * data/lalr1.cc (b4_location_constructors): Define it for backward
7994 compatibility.
7995 * doc/bison.texinfo (Initial Action Decl): Use initialize.
7996
79972005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
7998
7999 * data/lalr1.cc: Move the body of the ctor and dtor into the
8000 parser file (instead of the header).
8001 Wrap the implementations in a "namespace yy".
8002
80032005-11-12 Akim Demaille <akim@epita.fr>
8004
8005 Have glr.c include its header file when created.
8006 * data/glr.c (b4_shared_declarations): New.
8007 Output them verbatim in the parser if !%defines, otherwise
8008 output then in the header file, and include it instead.
8009
1989d947
AD
80102005-11-11 Akim Demaille <akim@epita.fr>
8011
8012 * data/glr.c: Comment changes.
8013
80142005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
8015
8016 When yydebug, report semantic and location values for reductions.
8017 * data/glr.c (yy_reduce_print): Report the semantic values and the
8018 locations.
8019 (YY_REDUCE_PRINT): Adjust.
8020 (yyglrReduce): Use them.
8021 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
8022 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
8023 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
8024 traces.
8025
02998094
AD
80262005-11-10 Akim Demaille <akim@epita.fr>
8027
8028 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
8029 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
8030 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
8031
5210672f
PE
80322005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
8033
8034 * m4/cxx.m4, examples/Makefile.am: Don't build
8035 examples/calc++ if no C++ compiler is available. (trivial change)
8036
a8991a1d
AD
80372005-11-09 Akim Demaille <akim@epita.fr>
8038
8039 * src/scan-skel.l: Use a couple of asserts.
8040
36b5e963
AD
80412005-11-03 Akim Demaille <akim@epita.fr>
8042
8043 In some (weird) cases, the final state number is incorrect.
8044 Reported by Alexandre Duret-Lutz.
8045 * src/LR0.c (state_list_append): Remove the computation of
8046 final_state.
8047 (save_reductions): Do it here.
8048 (get_state): Alpha conversion.
8049 (generate_states): Use a for loop.
8050 * src/gram.h (item_number_is_rule_number)
8051 (item_number_is_symbol_number): New.
8052 * src/state.c: Use assert.
8053 * src/system.h: Include assert.h.
8054 * tests/sets.at (Accept): New.
8055
44e7ead1
PH
80562005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8057
8058 * data/glr.c (yyfill): Adjust comment.
36b5e963 8059 (yyresolveAction): Initialize default location properly
44e7ead1
PH
8060 for empty right-hand sides.
8061 (yydoAction): Ditto.
8062 Add comment explaining apparently dead code.
36b5e963
AD
8063 * tests/glr-regression.at
8064 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 8065 New test.
36b5e963 8066
e10a80ee
PE
80672005-10-30 Paul Eggert <eggert@cs.ucla.edu>
8068
8069 * bootstrap (cleanup_gnulib): New function. Use it to clean up
8070 gnulib when interrupted. This fixes some race conditions and
8071 works around some portability problems (one noted by Paul
8072 Hilfinger).
8073
067b32ee
AD
80742005-10-22 Akim <akim@epita.fr>
8075
8076 * Makefile.cfg: Adjust to config -> build-aux.
8077 Reported by twledo.
8078
4b367315
AD
80792005-10-21 Akim Demaille <akim@epita.fr>
8080
8081 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
8082 the %parse-params.
8083 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
8084 * data/yacc.c (b4_Pure_if): Rename as...
8085 (b4_yacc_pure_if): this.
8086 (YY_SYMBOL_PRINT, yyparse): Adjust.
8087 * doc/bison.texinfo: Formatting changes.
8088
24cc23d9
AD
80892005-10-21 Akim Demaille <akim@epita.fr>
8090
8091 Finish the transition config -> build-aux.
8092 * configure.ac, Makefile.am: Use build-aux.
8093 * config/prev-version, config/announce-gen, config/Makefile.am:
8094 Move to...
8095 * build-aux/prev-version, build-aux/announce-gen,
8096 * build-aux/Makefile.am: here.
8097
d4476375
AD
80982005-10-14 Akim Demaille <akim@epita.fr>
8099
8100 * examples/calc++/test: Use set -x only when VERBOSE.
8101
302c0aee
PE
81022005-10-13 Paul Eggert <eggert@cs.ucla.edu>
8103
8104 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
8105 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
8106
7625ec2c
AD
81072005-10-13 Akim Demaille <akim@epita.fr>
8108
8109 * src/scan-skel.l: Output the base name parts of the parser and
8110 header file names.
302c0aee 8111 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
8112 additional checks.
8113 Use this to exercise C++ outputs in subdirs.
8114 Reported by Oleg Smolsky.
8115
ba0fe3c7
PE
81162005-10-12 Paul Eggert <eggert@cs.ucla.edu>
8117
8118 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
8119 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
8120 Problem reported by John P. Hartmann.
8121 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
8122 already defined it.
8123
9b8a5ce0
AD
81242005-10-12 Akim Demaille <akim@epita.fr>
8125
8126 * src/parse-gram.y (version_check): Exit 63 to please missing
8127 (stands for "version mismatch).
8128 * tests/input.at, doc/bison.texinfo: Adjust.
8129
4f6e011e
PE
81302005-10-10 Paul Eggert <eggert@cs.ucla.edu>
8131
8132 Work around portability problems with Visual Age C compiler
8133 (xlc and xlC_r) reported by John P. Hartmann.
8134 * data/location.cc (initial_column, initial_line): Remove.
8135 All uses replaced by 0 and 1.
8136 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
8137 that xlc complains about.
8138 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 8139 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 8140 as __STDC__.
4d7aa45e
PE
8141 * data/yacc.c (YYMODERN_C): New macro, which also looks at
8142 __STDC_VERSION__. Use it everywhere instead of looking at
8143 __STDC__ and __cplusplus.
4f6e011e 8144
a1b3bf8c
AD
81452005-10-10 Akim Demaille <akim@epita.fr>
8146
8147 * examples/calc++/test: Be quiet unless VERBOSE.
8148
412e44aa
PE
81492005-10-05 Paul Eggert <eggert@cs.ucla.edu>
8150
2a4647a3
PE
8151 * data/c.m4 (yydestruct, yysymprint):
8152 Use YYUSE instead of casting to void.
8153 * data/glr.c (YYUSE): New macro.
8154 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
8155 Use it instead of rolling our own.
8156 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
8157 (YYCHK1):
8158 Use /*CONSTCOND*/ to suppress lint warnings.
8159 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
8160 (YY_STACK_PRINT): Use 'false' not '0'.
8161 (YYUSE): New macro.
8162 (yysymprint_, yydestruct_): Use it instead of rolling our own.
8163 * data/yacc.c (YYUSE): New macro.
8164 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
8165 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
8166 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
8167
8168
412e44aa
PE
8169 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
8170 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
8171
88c6637f
PE
81722005-10-04 Paul Eggert <eggert@cs.ucla.edu>
8173
2f4f028d
PE
8174 Undo the parts of the unlocked-I/O change that substituted
8175 putc or puts for printf. This might hurt performance a bit,
8176 but some people prefer the printf style.
8177 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
8178 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
8179 All uses replaced by YYFPRINTF and YYDPRINTF.
8180 * data/yacc.c: Likewise.
8181 * lib/bitset.c (bitset_print): Likewise.
8182 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
8183 putc and puts.
8184 * lib/lbitset.c (debug_lbitset): Likewise.
8185 * src/closure.c (print_firsts, print_fderives): Likewise.
8186 * src/gram.c (grammar_dump): Likewise.
8187 * src/lalr.c (look_ahead_tokens_print): Likewise.
8188 * src/output.c (escaped_output): Likewise.
8189 (user_actions_output): Break apart two printfs.
8190 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
8191 * src/reduce.c (reduce_print): Likewise.
8192 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
8193 * src/system.h: Include unlocked-io.h rathe than stdio.h.
8194
88c6637f
PE
8195 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
8196 Use assignments rather than casts-to-void to suppress
8197 unused-variable warnings. This pacifies 'lint'.
8198 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
8199 unused-variable warnings.
8200
fb32e373
JMG
82012005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8202
8203 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
8204
edb8f44f
PE
82052005-10-02 Paul Eggert <eggert@cs.ucla.edu>
8206
fb9c0b33
PE
8207 Use unlocked I/O for a minor performance improvement on hosts like
8208 GNU/Linux and Solaris that support unlocked I/O. The basic idea
8209 is to use the gnlib unlocked-io module, and to prefer putc and
8210 puts to printf when either will work (since the latter doesn't
8211 come in an unlocked flavor).
8212 * bootstrap (gnulib_modules): Add unlocked-io.
8213 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
8214 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
8215 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
8216 and similarly for puts and putc and printf.
8217 * data/yacc.c: Likewise.
8218 * lib/bitset.c (bitset_print): Likewise.
8219 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
8220 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
8221 to printf.
8222 * lib/lbitset.c (debug_lbitset): Likewise.
8223 * src/closure.c (print_firsts, print_fderives): Likewise.
8224 * src/gram.c (grammar_dump): Likewise.
8225 * src/lalr.c (look_ahead_tokens_print): Likewise.
8226 * src/output.c (escaped_output): Likewise.
8227 (user_actions_output): Coalesce two printfs.
2f4f028d 8228 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
8229 * src/reduce.c (reduce_print): Likewise.
8230 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 8231 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 8232
edb8f44f
PE
8233 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
8234 this confuses xgettext.
8235
b50d2359
AD
82362005-10-02 Akim Demaille <akim@epita.fr>
8237
8238 * bootstrap (gnulib_modules): Add strverscmp.
8239 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
8240 * m4/.cvsignore: Add strverscmp.m4.
8241 * src/parse-gram.y (%require): New token, new rule.
8242 (version_check): New.
8243 * src/scan-gram.l (%require): Adjust.
8244 * tests/input.at (AT_REQUIRE): New.
8245 Use it.
8246 * doc/bison.texinfo (Require Decl): New.
8247 (Calc++ Parser): Use %require.
8248
21667f64
AD
82492005-10-02 Akim Demaille <akim@epita.fr>
8250
8251 * data/location.cc: New.
8252
2b81e969
AD
82532005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
8254 Akim Demaille <akim@epita.fr>
8255
8256 Make sure -odir/foo.cc creates dir/location.hh etc.
8257 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
8258 (spec_file_prefix, spec_verbose_file, spec_graph_file)
8259 (spec_defines_file): Now const.
8260 (dir_prefix): New.
8261 (short_base_name): Remove.
8262 * src/files.c: Adjust.
8263 (dirname.h): Include.
8264 (base_name): Don't prototype it.
8265 (finput): Remove, duplicates gram_in.
8266 (full_base_name, short_base_name): Replace by...
8267 (all_but_ext, all_but_tab_ext): these.
8268 (compute_base_names): Rename as...
8269 (compute_file_name_parts): this.
8270 Update to compute the new variables, including dir_prefix.
8271 Adjust dependencies.
8272 * src/output.c (prepare): Output them.
8273 * src/reader.c: Adjust to use gram_in, not finput.
8274 * src/scan-skel.l (@dir_prefix@): New.
8275
ad6a9b97
JMG
82762005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8277
8278 * lib/subpipe.c: New function end_of_output_subpipe() added
8279 to allow support for non-posix systems. This is a no-op function
8280 for posix systems.
8281
8282 * lib/subpipe.h: New function end_of_output_subpipe() added
8283 to allow support for non-posix systems. This is a no-op function
8284 for posix systems.
8285
8286 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
8287 handle the lack of pipe/fork functionality on non-posix systems.
8288
8289 * djgpp/Makefile.maint: DJGPP specific file.
8290
8291 * djgpp/README.in: DJGPP specific file.
8292
8293 * djgpp/config.bat: DJGPP specific configuration file.
8294
8295 * djgpp/config.sed: DJGPP specific configuration file.
8296
8297 * djgpp/config.site: DJGPP specific configuration file.
8298
8299 * djgpp/config_h.sed: DJGPP specific configuration file.
8300
8301 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
8302
8303 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
8304
fc695704
AD
83052005-10-02 Akim Demaille <akim@epita.fr>
8306
8307 * data/location.cc: New, extract from...
8308 * data/lalr1.cc: here.
8309 (location.hh): Include it after the user prologue, in case the
8310 filename type is defined by the user.
8311 Forward declation location and position before the pre-prologue.
8312 (yyresult_): Rename as...
8313 (yyresult): this, it's a local variable, not an attribute.
8314 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
8315
83162005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
8317
8318 * examples/extexi: Restore the #line generation.
8319
fb9712a9
AD
83202005-09-30 Akim Demaille <akim@epita.fr>,
8321 Alexandre Duret-Lutz <adl@gnu.org>
8322
8323 Move the token type and YYSTYPE in the parser class.
8324 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
8325 (parser::token): New, from the moved free definition of tokens.
8326 (parser::semantic_value): Now a full definition instead of an
8327 indirection to YYSTYPE.
8328 (b4_post_prologue): No longer included in the header file, but
8329 in the implementation file.
8330 * doc/bison.texi (C+ Language Interface): Update.
8331 * src/parse-gram.y: Support unary %define.
8332 * tests/actions.at: Define global_tokens_and_yystype for backward
8333 compatibility until we update the tests.
8334 * tests/calc.at: Idem.
8335 (first_line, first_column, last_line, last_column): Define for lalr1.cc
8336 to simplify the code.
8337
55f0c7b1
PE
83382005-09-29 Paul Eggert <eggert@cs.ucla.edu>
8339
8340 Port to SunOS 4.1.4, which lacks strtoul and strerror.
8341 Ah, the good old days! Problem reported by Peter Klein.
8342 * bootstrap (gnulib_modules): Add strerror, strtoul.
8343 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
8344 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
8345
fb9712a9 83462005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
8347
8348 * data/c.m4 (b4_error_verbose_if): New.
8349 * data/lalr1.cc: Use it.
8350 (YYERROR_VERBOSE_IF): Remove.
8351 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
8352 parser members, replaced by...
8353 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
8354 local variables.
8355 (yysyntax_error_): Takes the state number as argument.
8356 (yyreduce_print_): Use the argument yyrule, not the former
8357 attribute yyn_.
8358
8a6f72f3
PE
83592005-09-26 Paul Eggert <eggert@cs.ucla.edu>
8360
8361 * bootstrap (gnulib_modules): Add verify.
8362 * lib/.cvsignore: Add verify.h.
8363 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
8364 * src/system.h (verify): Remove.
8365 Include verify.h instead.
8366 * src/tables.c (tables_generate): Use new API for 'verify'.
8367
0d50976f
PE
83682005-09-21 Paul Eggert <eggert@cs.ucla.edu>
8369
ebc3737e
PE
8370 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
8371 local variables whose names begin with 'yy'.
8372 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
8373 Trivial changes from Joel E. Denny.
8374
0d50976f
PE
8375 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
8376 it itself.
8377 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
8378 don't use alloca any more.
8379
8380 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
8381 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 8382 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
8383 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
8384 to match yacc.c, to test more hosts.
8385
a05b79df
PE
83862005-09-20 Paul Eggert <eggert@cs.ucla.edu>
8387
55289366
PE
8388 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
8389 doesn't affect behavior.
8390 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
8391 Solaris, AIX, MSC.
8392 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
8393 This works a bit better with glibc, if user code has already included
8394 stdlib.h.
8395 * doc/bison.texinfo (Bison Parser): Document that users can't
8396 arbitrarily use malloc and free for other purposes. Document
8397 that <alloca.h> and <malloc.h> might be included.
8398 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
8399 user must declare alloca.
8400
a05b79df
PE
8401 * HACKING (release): Forwarn the Translation Project about
8402 stable releses.
8403
3ab2ca22
AD
84042005-09-20 Akim Demaille <akim@epita.fr>
8405
8406 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
8407
a9739e7c
PE
84082005-09-19 Paul Eggert <eggert@cs.ucla.edu>
8409
a702593e
PE
8410 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
8411 (YYSTACK_ALLOC_MAXIMUM): Use it.
8412 (yysyntax_error): New function.
8413 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
8414 multiple syntax errors are reported, and alloca is being used.
8415 Instead, reallocate buffers twice as big each time, so that
8416 we waste at most half the allocated memory. Start with a small
8417 (128-byte) buffer that will suffice in most cases anyway.
8418 Use yysyntax_error to do most of the work.
8419
8420 * doc/bison.texinfo (Error Reporting, Table of Symbols):
8421 yynerrs is the number of errors reported, not the number of
8422 errors encountered.
8423
a9739e7c
PE
8424 * tests/glr-regression.at (Duplicated user destructor for lookahead):
8425 Mark it as expected to fail.
8426 Cast result of malloc; problem reported by twlevo@xs4all.nl.
8427 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
8428 Don't start user-code symbols with "yy", to avoid name space problems.
8429
f479c6c6
AD
84302005-09-19 Akim Demaille <akim@epita.fr>
8431
8432 Remove the traits, failed experiment.
8433 It never proved useful, and anyway because of the current
8434 definition, it was not possible to have several specialization of
8435 this traits, making it useless.
8436 * data/lalr1.cc (yy:traits): Remove.
8437 Inline its definitions in the parser class.
8438
e2586f82
AD
84392005-09-19 Akim Demaille <akim@epita.fr>
8440
8441 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
8442 least Mac OSX with a /usr/local install of gettext.
8443
2e8cf949
AD
84442005-09-19 Akim Demaille <akim@epita.fr>
8445
8446 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
8447 and yytoken for similarity with the other skeletons.
8448
c7fb0b90
AD
84492005-09-19 Akim Demaille <akim@epita.fr>
8450
4e26c69e 8451 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 8452
1bd0deda
PE
84532005-09-16 Paul Eggert <eggert@cs.ucla.edu>
8454
8455 * NEWS: Version 2.1.
8456
8457 * NEWS: Remove notice of yytname change, since it was never in an
8458 official release.
8459 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
8460 diagnostic.
8461 * src/output.c (prepare): Likewise.
8462 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
8463 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
8464 is not defined. This is an awful hack, but it's enough for now.
8465 All callers changed.
8466 * tests/glr-regression-at (make_value): Args are const pointers now,
8467 to avoid GCC warning.
8468 (Duplicated user destructor for lookahead): New test. Currently
8469 skipped. It fails on my host but I'm not sure it'll always fail.
8470
84712005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
8472
8473 * src/symtab.h (struct symbol): Declare the printer and destructor
8474 as const, to avoid accidental calls to free.
8475 (symbol_destructor_set, symbol_printer_set): Adjust.
8476 * src/symtab.c: Adjust.
8477
1bd0deda 84782005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
8479
8480 * data/c.m4 (b4_token_enums): New.
8481 (b4_token_defines): Rename as...
8482 (b4_token_enums_defines): this.
8483 (b4_token_defines): New, output only the #defines.
8484 * data/yacc.c, data/glr.c: Adjust.
8485 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
8486 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
8487 as default values.
8488
dbcdae2d
AD
84892005-09-16 Akim Demaille <akim@epita.fr>
8490
8491 * data/lalr1.cc (yylex_): Remove, inline its code.
8492 (yyreport_syntax_error_): Remove, replaced by...
8493 (yysyntax_error_): this which returns a string and leaves to the
8494 caller the call to the users' error function.
8495 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
8496 Move from members of the parser object...
8497 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
8498 to local variables of the parse function.
8499
70d8f291
AD
85002005-09-16 Akim Demaille <akim@epita.fr>
8501
8502 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
8503 since it's in Bison's name space.
8504
b47dbebe
PE
85052005-09-15 Paul Eggert <eggert@cs.ucla.edu>
8506
ae199bf1
PE
8507 * data/glr.c (yyresolveValue): Add default case to pacify
8508 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
8509
b47dbebe
PE
8510 * NEWS: Document when yyparse started to return 2.
8511 * doc/bison.texinfo (Parser Function): Document when yyparse
8512 returns 2.
8513
8514 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
8515 (b4_filename_type): Renamed back from b4_file_name_type. All uses
8516 changed.
8517 (class position): file_name -> filename (reverting). All uses changed.
8518
85192005-09-14 Paul Eggert <eggert@cs.ucla.edu>
8520
8521 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
8522 do anything if $@ exists. This reverts part of the 2005-07-07
8523 patch.
8524
00292f66
PE
85252005-09-11 Paul Eggert <eggert@cs.ucla.edu>
8526
8527 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
8528 contains obsolete information and isn't worth distributing as a
8529 separate file anyway.
8530 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
8531 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
8532 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
8533 (yyparse): Abort if user code uses longjmp to throw an unexpected
8534 value.
8535
a420f962
PE
85362005-09-09 Paul Eggert <eggert@cs.ucla.edu>
8537
00292f66
PE
8538 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
8539 Suggested by twlevo@xs4all.nl.
8540
127287e9
PE
8541 * data/glr.c (YYCHK1): Do not assume YYE is in range.
8542 This avoids a diagnostic from gcc -Wswitch-enum.
8543 Problem reported by twlevo@xs4all.nl.
8544
a420f962
PE
8545 * doc/bison.texinfo: Don't use "filename", as per GNU coding
8546 standards. Use "file name" or "file" or "name", depending on
8547 the context.
8548 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
8549 not to hack/foo.tab.c.
8550 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
8551 * data/glr.c: b4_filename -> b4_file_name.
8552 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
8553 All uses changed.
8554 (class position): filename -> file_name. All uses changed.
8555 * data/yacc.c: b4_filename -> b4_file_name.
8556 * lib/bitset.h: filename -> file_name in local vars.
8557 * lib/bitset_stats.c: Likewise.
8558 * src/files.c: Likewise.
8559 * src/scan-skel.l ("@output ".*\n): Likewise.
8560 * src/files.c (file_name_split): Renamed from filename_split.
8561 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
8562
85632005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8564
8565 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8566 to accommodate latest gnulib.
8567
8568 * tests/glr-regression.at (Duplicate representation of merged trees):
8569 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8570
8571 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8572 needed.
8573
42a6501d
PE
85742005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8575
8576 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8577 All uses changed. Invoke user destructor after an error during a
8578 split parse (trivial change from Joel E. Denny).
8579
8580 * tests/glr-regression.at
8581 (User destructor after an error during a split parse): New test case.
8582 Problem reported by Joel E. Denny in:
8583 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8584
ef9a1faf
PE
85852005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8586
5b4aaf78
PE
8587 * README-cvs: Give URLs for recommended tools.
8588 Mention Gzip version problem, and bootstrapping issues.
8589 Remove troubleshooting section, as it's somewhat obsolete.
8590
b5240ba5
PE
8591 * bootstrap (no_cache): New var, to accommodate different wget
8592 variants. Use it instead of '-C off'. Problem reported by
8593 twlevo@xs4all.nl.
8594
ef9a1faf
PE
8595 * data/glr.c (yydestroyStackItem): New function.
8596 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8597 debugging information. Problem reported by Joel E. Denny.
8598
e6efa9da
AD
85992005-08-25 Akim Demaille <akim@epita.fr>
8600
8601 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8602
adc90f13
PE
86032005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8604
8605 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8606 Don't invoke destructor on unresolved entries.
8607 * tests/glr-regression.at
8608 (User destructor for unresolved GLR semantic value): New test case.
8609 Problem reported by Joel E. Denny in:
8610 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8611
f9315de5
PE
86122005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8613
15d29c1f
PE
8614 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8615 Add strnlen.c.
8616 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8617 lib-prefix.m4, po.m4.
8618
dd5f2af2
PE
8619 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8620 in yydestruct diagnostic, since it might not be an error.
8621 Problem reported by Joel Denny near end of
8622 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 8623 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
8624 * data/yacc.c (yyreturn): Likewise.
8625 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8626
8627 * src/files.c: Remove obsolete FIXME comment.
8628
8629 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8630 with the other templates, and to fix bogus run-on messages such
8631 as the one reported at the end of
8632 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8633 All callers changed to avoid the newline.
8634 (yyprocessOneStack): Output two lines rather than one, to accommodate
8635 the above change. This changes the debug output format slightly.
8636
f9315de5
PE
8637 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8638 reported by Joel E. Denny in
8639 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8640 (trivial change).
8641 * tests/glr-regression.at (Duplicate representation of merged trees):
8642 New test, from Joel E. Denny in:
8643 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8644 * THANKS: Add Joel E. Denny.
8645
8646 * configure.ac (AC_INIT): Bump to 2.0c.
8647
04098407
PE
86482005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8649
8650 * NEWS: Version 2.0b.
8651
ca5d2013
PE
8652 * Makefile.am (SUBDIRS): Put examples before tests, so that
8653 "make check" doesn't finish with "All 1 tests passed".
8654
3d54b576
PE
8655 * tests/regression.at (Token definitions): Don't rely on
8656 AT_PARSER_CHECK for data that contains backslashes. It currently
8657 uses 'echo', and 'echo' isn't portable if its argument contains
8658 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8659 that the byte '\0xff' is not printable in the C locale; it is,
8660 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8661 not printable, so use '\0x81' to test.
8662
d53ae497
PE
8663 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8664 version of GCC, since the macro is used with non-GCC compilers.
8665
fc01665e
PE
8666 Fix core dump reported by Pablo De Napoli in
8667 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8668 * tests/regression.at (Invalid inputs with {}): New test.
8669 * src/parse-gram.y (token_name): Translate type before using
8670 it as an index.
8671
04098407
PE
8672 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8673 the user's name space. All uses changed to __attribute__
8674 ((__unused__)).
8675 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8676 Add __attribute__ ((__noreturn__)).
8677
8678 * etc/clcommit: Remove. We weren't using it, and it failed
8679 "make maintainer-distcheck".
8680 * Makefile.maint: Merge from coreutils.
8681 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8682 (syntax-check-rules): Change list of rules as described below.
8683 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8684 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8685 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8686 (sc_trailing_space): New rules.
8687 (sc_xalloc_h_in_src): Remove.
8688 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8689 (sc_space_tab, sc_error_exit_success, sc_changelog):
8690 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8691 (makefile-check, po-check, author_mark_check):
8692 (makefile_path_separator_check, copyright-check):
8693 Use grep -n, to make it easier to find violations.
8694 Use CVS_LIST and CVS_LIST_EXCEPT.
8695 (header_regexp, h_re): Remove.
8696 (dd_c): New macro.
8697 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8698 (my-distcheck): Use more-modern GCC flags.
8699 (signatures, %.asc): Remove.
8700 (rel-files, announcement): Remove signatures.
8701 Restore old updating code, even though we don't use it, so
8702 that we're the same as coreutils.
8703 (alpha, beta, major): Depend on news-date-check.
8704 Make the upload commands.
8705
8706 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8707 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8708 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8709 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8710 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8711 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8712 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8713 * tests/sets.at: Likewise.
8714
8715 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8716 we comment out the Autoconf version number.
8717 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8718 it's error-prone and "make maintainer-distcheck" rejects it.
8719
8720 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8721 Indent calls to "error" to pacify "make maintainer-distcheck",
8722 when the calls are not intended to be translated.
8723 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8724
8725 * src/Makefile.am (DEFS): Use +=, to pacify
8726 "make maintainer-distcheck".
8727 (bison_SOURCES): Add scan-skel.h.
8728 (sc_tight_scope): New rule, from coreutils.
8729
8730 * src/files.c (src_extension, header_extension):
8731 Now static, not extern.
8732 * src/getargs.c (short_options): Likewise.
8733 * src/muscle_tab.c (muscle_table): Likewise.
8734 * src/parse-gram.y (current_class, current_type, current_prec):
8735 Likewise.
8736 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8737 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8738 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8739 void, to avoid warning when NLS is disabled.
8740 * src/output.c: Include scan-skel.h.
8741 (scan_skel): Remove decl, since scan-skel.h does this.
8742 (output_skeleton):
8743 Indent calls to "error" to pacify "make maintainer-distcheck".
8744 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8745 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8746 "make maintainer-distcheck".
8747 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8748 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8749 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8750 (skel_lex_destroy, scan_skel): Move these decls to...
8751 * src/scan-skel.h: New file.
8752 * src/uniqstr.c (uniqstr_assert):
8753 Indent calls to "error" to pacify "make maintainer-distcheck".
8754
8755 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8756 not @VAR@.
8757
8758 * tests/torture.at: Revamp to avoid misuse of atoi that
8759 "make maintainer-distcheck" complained about.
8760
8761 * examples/extexi (message): Don't print a message more than once,
8762 and omit line-number decoration that makes Emacs compile think
8763 that informative messages are worth worrying about.
8764
87652005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8766
8767 * configure.ac: Update version number.
8768
8769 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8770 accidentally.
8771 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8772 autogenerated by the maintainer.
8773 * examples/calc++/.cvsignore: Add *.yy.
8774
8775 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8776 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8777 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8778
8779 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8780
8781 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8782 from maintainer-distcheck about casting the argument of 'free'.
8783
8784 * NEWS: Mention recent yytname changes.
8785 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8786
8787 * bootstrap: For translations that have not yet been upgraded to
8788 the new runtime-po domain, prime the pump by extracting the
8789 relevant strings from the obsolete translations. This code can be
8790 removed once the bison-runtime domain has been translated by each
8791 team.
8792
8793 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8794 now that token names are already quoted.
8795
8796 Fix problem reported by Anthony Heading.
8797 * data/glr.c (YYTOKEN_TABLE): New macro.
8798 (yytname): Define if YYTOKEN_TABLE.
8799 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8800 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8801 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8802 * src/output.c (prepare_symbols): Output token_table_flag.
8803
0ffda363
PE
88042005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8805
8806 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8807 again if the first call fails.
8808
8809 * data/glr.c (yytnamerr): New function.
8810 (yyreportSyntaxError): Use it to dequote most string literals.
8811 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8812 with other skeletons. All uses changed.
8813 (yytnameerr_): New function.
8814 (yyreport_syntax_error): Use it to dequote most string literals.
8815 * data/yacc.c (yytnamerr): New function.
8816 (yyerrlab): Use it to decode most string literals.
8817 * doc/bison.texinfo (Decl Summary, Calling Convention):
8818 Clarify quoting convention of yytname.
8819 * src/output.c (prepare_symbols): Quote all names. This undoes
8820 the 2005-04-17 change, which is now accomplished (mostly) via
8821 changes in the parsers as described above.
8822 * tests/regression.at (Token definitions, Web2c Actions):
8823 Undo most 2005-04-17 change here, too.
8824
88252005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8826
8827 Fix more problems reported by twlevo@xs4all.nl.
8828 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8829 remove trailing spaces. This loses the exit status of ./types,
8830 and isn't needed since ./types shouldn't be emitting trailing
8831 spaces.
8832 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8833 as the stack isn't valid in that case.
8834
8835 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8836 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8837 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8838 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8839 is used.
8840 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8841 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8842 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8843 Likewise.
8844
8845 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8846 overly-picky compilers that reject 'char *foo = "bar";'.
8847
8848 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8849 to FILE * parameter, not to stderr. This fixes a typo introduced
8850 in the 2005-07-12 change.
8851
8852 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8853 warnings from GCC 4.
8854
8855 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8856 (yyglrShiftDefer, yysplitStack):
8857 Remove unused parameters b4_pure_formals. All uses changed.
8858 (yyglrShift): Remove unused parameters b4_user_formals.
8859 All uses changed.
8860 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8861
6100a9aa
PE
88622005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8863
258b75ca
PE
8864 Destructor cleanups and regularization among the three skeletons.
8865 * NEWS: Document the behavior changes.
8866 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8867 stack before failing, as the cleanup code will do it for us now.
8868 * data/lalr1.cc (yyerrlab): Likewise.
8869 * data/glr.c (yyparse): Pop everything off the stack before
8870 freeing it, so that destructors get called properly.
8871 * data/lalr1.cc (yyreturn): Likewise.
8872 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8873 This is more consistent.
8874 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8875 why destructors might be called. 1.875 -> 2.1.
8876 (Destructor Decl, Decl Summary, Table of Symbols):
8877 Some English-language cleanups for %destructor.
8878 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8879 Add output line for destructor of start symbol.
8880 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8881 because of that same extra output line.
8882
1a059451
PE
8883 * NEWS: Document minor wording changes in diagnostics of
8884 Bison-generated parsers.
8885 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8886 Remove unused formals. All uses changed.
8887 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8888 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8889 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8890 Rename yyoverflowab to yyexhaustedlab.
8891 When memory exhaustion occurs during syntax-error reporting,
8892 report it separately rather than in a single diagnostic; this
8893 eases translation.
8894 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8895 (Memory Exhausted): Renamed from Parser Stack Overflow.
8896 Revamp wording slightly to prefer "memory exhaustion".
8897 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8898
97460c78
PE
8899 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8900
30757c8c
PE
8901 Add i18n support to the GLR skeleton. Partially fix the C++
8902 skeleton; a C++ expert needs to finish this. Remove debugging
8903 msgids; there's little point to having them translated, since they
8904 can be understood only by someone who can read the
8905 (English-language) source code.
8906
8907 Generate runtime-po/bison-runtime.pot automatically, so that we
8908 don't have to worry about garbage getting in that file. We'll
8909 make sure after the next official release that old msgids don't
8910 get lost. See
8911 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
8912
8913 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
8914 Now auto-generated.
8915 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
8916 Fix typos in explanations of the runtime file.
8917 * bootstrap: Change gettext keyword from YYI18N to YY_.
8918 Use standard Makefile.in.in in runtime-po, since we'll arrange
8919 for backward-compatible bison-runtime.po files in a different way.
8920 * data/glr.c (YY_): New macro, from yacc.c.
8921 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
8922 Translate messages intended for users.
8923 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
8924 the wording in the other skeletons. We don't know that the memory
8925 is virtual.
8926 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
8927 Use same method that yacc.c uses.
8928 Don't translate debugging messages.
8929 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
8930 it doesn't work (yet), and requires C++ expertise to fix.
8931 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
8932 Move defn to a more logical place, to be consistent with other
8933 skeletons.
8934 Don't translate debugging messages.
8935 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
8936 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
8937 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
8938 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
8939
ac8c5689
PE
8940 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
8941 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
8942 void, not int.
8943 * tests/glr-regression.at (Badly Collapsed GLR States):
8944 Likewise.
8945 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8946 yylex should return 0 at EOF rather than aborting.
8947
6100a9aa
PE
8948 Improve tests for stack overflow in GLR parser.
8949 Problem reported by twlevo@xs4all.nl.
8950 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
8951 All uses removed.
8952 (yyStackOverflow): Just longjmp, but with value 2 so that caller
8953 can handle the problem.
8954 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
8955 (yyparse): New local variable yyresult to record the result.
8956 Use result of setjmp to set it, rather than storing itinto
8957 struct.
8958 (yyDone): Remove label.
8959 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
8960 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
8961 if YYABORT is used).
8962 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
8963 yyparse status; put status > 1 into diagnostic.
8964 Check that status==2 works.
8965 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
8966 Use exit status 3 for failure to open (which shouldn't happen).
8967
15f40952
PE
89682005-07-17 Paul Eggert <eggert@cs.ucla.edu>
8969
67fd79c4
PE
8970 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
8971 1 on syntax error; just let yyparse do its thing.
8972 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
8973 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
8974 (Exploding the Stack Size with Alloca):
8975 (Exploding the Stack Size with Malloc):
8976 Expect exit status 2, not 1, since the parser is supposed to blow
8977 its stack. Problem reported by twlevo@xs4all.nl.
8978
15f40952
PE
8979 * data/glr.c (yyparse): Don't assume that the initial calls
8980 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
8981 Print a stack-overflow message and fail instead.
8982 Initialize the line-number information before creating the stack,
8983 so that the stack-overflow message can report line zero safely.
8984
f32c66b5
PE
89852005-07-14 Paul Eggert <eggert@cs.ucla.edu>
8986
a22ff96f 8987 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
8988 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
8989 (yyuserMerge): Provide a default case if b4_mergers is empty.
8990 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
8991 * tests/glr-regression.at
8992 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 8993 Add casts to pacify C++ compilers.
1beb0b24
PE
8994 * tests/glr-regression.at (Improper merging of GLR delayed action
8995 sets): Declare yylex before using it.
f32c66b5 8996 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
8997 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
8998 test for valgrind; valgrind is independent of g++.
8999 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
9000 for compatibility with POSIX 1003.1-2001 (if running coreutils).
9001 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
9002 Use a destructor, so that we can expand the stack. Change
9003 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 9004
d741bd1b
PE
90052005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9006
9007 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
9008 a valgrind failure. Problem reported by twlevo@xs4all.nl.
9009
0410a6e0
PE
90102005-07-13 Paul Eggert <eggert@cs.ucla.edu>
9011
9012 * PACKAGING: New file, suggested by Bruno Haible and taken from
9013 similar wording in gettext's PACKAGING file.
9014 * NEWS: Mention PACKAGING.
9015 * Makefile.am (EXTRA_DIST): Add PACKAGING.
9016
f7ab6a50
PE
90172005-07-12 Paul Eggert <eggert@cs.ucla.edu>
9018
baf785db 9019 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
9020 * bootstrap: Get runtime translations into runtime-po.
9021 Create runtime-po files automatically, if possible.
9022 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
9023 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
9024 does not infringe on the user's name space.
9025 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
9026 * doc/bison.texinfo (Internationalization): Revamp the English
9027 and Texinfo syntax a bit, to try to make it clearer.
9028 (Bison Options, Option Cross Key): Mention --print-localedir.
9029 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
9030 YYENABLE_NLS. Quote a bit more.
9031 * runtime-po/.cvsignore: New file.
9032 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
9033 * runtime-po/Rules-quot: Remove; now created by bootstrap.
9034 * runtime-po/quot.sed: Likewise.
9035 * runtime-po/boldquot.sed: Likewise.
9036 * runtime-po/en@quot.header: Likewise.
9037 * runtime-po/en@boldquot.header: Likewise.
9038 * runtime-po/insert-header.sin: Likewise.
9039 * runtime-po/remove-potcdate.sin: Likewise.
9040 * runtime-po/Makevars: Likewise.
9041 * runtime-po/LINGUAS: Likewise.
9042 * runtime-po/de.po: Likewise; we will rely on the translation project
9043 to maintain this, so "bootstrap" should get it.
0410a6e0 9044 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
9045 its value.
9046 * src/main.c (main): Bind the bison-runtime domain, too.
9047
90482005-07-12 Bruno Haible <bruno@clisp.org>
9049
9050 * data/yacc.c: Include <libintl.h> when NLS is enabled.
9051 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
9052 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
9053 * runtime-po: New directory.
9054 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
9055 $(DOMAIN).pot-update rule, so that old messages are never dropped.
9056 * runtime-po/Rules-quot: New file, copied from po/.
9057 * runtime-po/quot.sed: Likewise.
9058 * runtime-po/boldquot.sed: Likewise.
9059 * runtime-po/en@quot.header: Likewise.
9060 * runtime-po/en@boldquot.header: Likewise.
9061 * runtime-po/insert-header.sin: Likewise.
9062 * runtime-po/remove-potcdate.sin: Likewise.
9063 * runtime-po/Makevars: New file.
9064 * runtime-po/POTFILES.in: New file.
9065 * runtime-po/LINGUAS: New file.
9066 * runtime-po/bison-runtime.pot: New file.
9067 * runtime-po/de.po: New file.
9068 * m4/bison.m4: New file.
9069 * Makefile.am (SUBDIRS): Add runtime-po.
9070 (aclocaldir, aclocal_DATA): New variables.
9071 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
9072 Define aclocaldir.
9073 * src/getargs.c (usage): Document --print-localedir option.
9074 (PRINT_LOCALEDIR_OPTION): New enum item.
9075 (long_options): Add --print-localedir option.
9076 (getargs): Handle --print-localedir option.
9077 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
9078 (Internationalization): New section.
9079
22dda0f0
AD
90802005-07-12 Akim Demaille <akim@epita.fr>
9081
9082 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
9083 for consistency with the rest of the code.
9084 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
9085 Add separators.
9086
82b248ad
AD
90872005-07-12 Akim Demaille <akim@epita.fr>
9088
9089 * src/parse-gram.y: Use %printer instead of YYPRINT.
9090
fa0e9314
AD
90912005-07-12 Akim Demaille <akim@epita.fr>
9092
867a3e00
AD
9093 * src/symtab.h, src/symtab.c (symbol_print): New.
9094 * src/symlist.h, src/symlist.c (symbol_list_print): New.
9095 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
9096
90972005-07-12 Akim Demaille <akim@epita.fr>
9098
9099 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
9100 b4_at_dollar and b4_dollar_dollar.
9101
e054b190
PE
91022005-07-11 Paul Eggert <eggert@cs.ucla.edu>
9103
9104 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
9105 and Pennello's paper.
9106
34160ec4
PE
91072005-07-09 Paul Eggert <eggert@cs.ucla.edu>
9108
407d4a75
PE
9109 * data/yacc.c (yyparse): Undo previous patch. Instead,
9110 set yylsp[0] and yyvsp[0] only if the initial action
9111 sets yylloc and yylval, respectively.
9112
34160ec4
PE
9113 * data/yacc.c (yyparse): In the initial action, set
9114 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
9115 This avoids the use of undefined variables if the initial
9116 action does not set yylloc and/or yylval.
9117
c3d5a4a7
PE
91182005-07-07 Paul Eggert <eggert@cs.ucla.edu>
9119
b34d96c1
PE
9120 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
9121 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
9122 Remove from CVS. These files are automatically generated.
9123 * examples/extexi: Clarify that this file is now part of Bison,
9124 not GNU M4, and that it works with any POSIX-compatible Awk.
9125 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
9126 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
9127 so that we also get calc++-parser.yy. Geneate it.
9128 Use $(AWK), not gawk, since any conforming Awk will do.
9129 Put comment before action, since older 'make' can't handle comment
9130 in action.
9131 $(BUILT_SOURCES): List all built sources, not just some of them.
9132 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
9133 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
9134 $($(calc_sources_generated)): Remove unnecessary test for existence
9135 of target. (This had a shell syntax error anyway; a stray "x".)
9136 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
9137 calc++-parser.yy.
9138 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
9139
c3d5a4a7
PE
9140 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
9141 implied by the other modules.
9142
828c373b
AD
91432005-07-06 Akim Demaille <akim@epita.fr>
9144
9145 Bind examples/calc++ to the package.
9146 * examples/calc++/Makefile: Remove, replaced by...
9147 * examples/calc++/Makefile.am: ... this new file.
9148 * examples/calc++/test: Remove input.
9149 * examples/calc++/compile: Remove.
9150 * examples/Makefile.am: New.
9151 * configure.ac, Makefile.am: Adjust.
9152 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
9153
63cb01d6
PE
91542005-07-05 Paul Eggert <eggert@cs.ucla.edu>
9155
fd2df2ed
PE
9156 * data/glr.c (yyFail): Drastically simplify; since the format argument
9157 never had any % directives, we can simply pass it to yyerror.
9158 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
9159 be modified later, as that is the usual style in glr.c.
9160 Problems reported by Paul Hilfinger.
9161
63cb01d6
PE
9162 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
9163 and size overflow errors.
9164 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
9165 in case the user prolog sets feature-test macros like _GNU_SOURCE.
9166 (YYSIZEMAX): New macro.
9167 (yystpcpy): New function, taken from yacc.c.
9168 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
9169 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
9170 so that we don't have to maintain their signatures.
9171 (yyFail): Check for buffer overflow, by using vsnprintf rather
9172 than vsprintf. Allocate a bigger buffer if possible.
9173 Report an error if buffer allocation fails.
9174 (yyStackOverflow): New function.
9175 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
9176 the initialization was successful. It might fail if storage was
9177 exhausted.
9178 (yyexpandGLRStack): Add more checks for storage allocation failure.
9179 Use yyStackOverflow to report failures.
9180 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
9181 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
9182 Don't assume stack number fits in int.
9183 (yysplitStack): Check for storage allocation failure.
9184 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
9185 can print diagnostics on storage allocation failure. All callers
9186 changed.
9187 (yyresolveValue): Use yybool for boolean.
9188 (yyreportSyntaxError): Check for size-calculation overflow.
9189 This code is taken from yacc.c.
9190 (yyparse): Check for storage allocation errors when allocating
9191 the initial stack.
9192
1c59e0a1
AD
91932005-07-05 Akim Demaille <akim@epita.fr>
9194
9195 Extract calc++ from the documentation.
9196 * doc/bison.texinfo (Calc++): Add the extraction marks.
9197 * examples/extexi: New, from the aborted GNU Programming 2E.
9198 Separate the different paragraph of a file with empty lines.
9199 * examples/Makefile: Use it to extract the whole calc++ example.
9200
8a0adb01
AD
92012005-06-24 Akim Demaille <akim@epita.fr>
9202
9203 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
9204 class typedefs.
9205
12545799
AD
92062005-06-22 Akim Demaille <akim@epita.fr>
9207
9208 * doc/bison.texinfo (C++ Language Interface): First stab.
9209 (C++ Parsers): Remove.
9210
99be0235
AD
92112005-06-22 Akim Demaille <akim@epita.fr>
9212
9213 * data/lalr1.cc (yylex_): Honor %lex-param.
9214
0ffd4fd1
AD
92152005-06-22 Akim Demaille <akim@epita.fr>
9216
9217 Start a set of simple examples.
9218 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
9219 * examples/calc++/calc++-driver.hh,
9220 * examples/calc++/calc++-parser.yy,
9221 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
9222 * examples/calc++/compile, examples/calc++/test: New.
9223
0925ebb4
PE
92242005-06-09 Paul Eggert <eggert@cs.ucla.edu>
9225
9226 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
9227 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
9228 which stems from the 2005-05-27 patch.
9229
43d3b664
PH
92302005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9231
9232 * data/glr.c: Modify treatment of unused parameters to permit use
9233 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
9234
3062864d
PE
92352005-05-30 Paul Eggert <eggert@cs.ucla.edu>
9236
9237 Fix infringement on user name space reported by Janos Zoltan Szabo.
9238 * data/yacc.c (yyparse): strlen -> yystrlen.
9239
989b5b8e
AD
92402005-05-30 Akim Demaille <akim@epita.fr>
9241
9242 * data/lalr1.cc (_): New.
9243 Translate the various messages.
9244
bedf57f5
PE
92452005-05-27 Paul Eggert <eggert@cs.ucla.edu>
9246
9247 Fix infringement on user name space reported by Bruno Haible.
9248 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
9249 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
9250 the user's name space.
9251 (alloca): Include <stdlib.h> to get it, if it's not built in.
9252 (YYMALLOC, YYFREE): Define only if needed.
9253 (malloc, free): Declare, but only if needed, as this infringes on
9254 the user name space.
9255
4d1801f1
PE
92562005-05-25 Paul Eggert <eggert@cs.ucla.edu>
9257
9258 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
9259 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
9260 with %d format.
9261 * lib/ebitset.c (min, max): Undef before defining.
9262 * lib/vbitset.c (min, max): Likewise.
9263 * lib/subpipe.c (create_subpipe): Save local variables in case
9264 vfork clobbers them.
9265
92662005-05-24 Bruno Haible <bruno@clisp.org>
9267
9268 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
9269 error message syntax used by gcc-4.0.
9270
b94a9e1e
PE
92712005-05-23 Paul Eggert <eggert@cs.ucla.edu>
9272
85ac3861
PE
9273 * README: Mention m4 1.4.3. Remove obsolete advice about
9274 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
9275
b94a9e1e
PE
9276 * bootstrap: Remove workaround for problem I encountered with
9277 gettext 0.14.1; it seems to be fixed now.
9278
51c30d21
PE
92792005-05-22 Paul Eggert <eggert@cs.ucla.edu>
9280
009ce67d
PE
9281 * NEWS: Version 2.0a.
9282
f2a97c62
PE
9283 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
9284 the previous change.
9285
c8775f93
PE
9286 Various maintainer cleanups.
9287 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
9288 conftest*, for benefit of CVS commands run at the same time as
9289 "configure". Add build-aux, since "bootstrap" now creates it and
9290 its subfiles.
9291 * Makefile.cfg (move_if_change): Remove.
9292 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
9293 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
9294 (po_repo, do-po-update, po-update, wget_files, get-targets):
9295 (config.guess-url_prefix, config.sub-url_prefix):
9296 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
9297 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
9298 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
9299 Remove.
9300 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
9301 this is now the recommended name.
9302 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
9303 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
9304 ylwrap. These files now go into build-aux.
9305 * config/move-if-change: Remove.
9306 * config/prev-version.txt: Bump from 1.75 to 2.0.
9307
3ea5f0ec
PE
9308 * bootstrap: Add stdio-safer, unistd-safer modules.
9309 Remove m4/glibc2.m4 (introduced by latest gnulib, but
9310 we don't need it).
9311 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
9312 fopen-safer.c, stdio-safer.h, unistd-safer.h.
9313 * lib/subpipe.c: Include "unistd-safer.h".
9314 (create_subpipe): Make sure all the newly-created
9315 file descriptors are > 2, so that diagnostics don't
9316 get sent down them (which might cause Bison to hang, in theory).
9317 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
9318 * src/files.c (xfopen): Use fopen_safer, not fopen.
9319
51c30d21
PE
9320 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
9321 yesterday's yacc.c fix.
9322
cea1469d
PE
93232005-05-21 Paul Eggert <eggert@cs.ucla.edu>
9324
3ea5f0ec
PE
9325 * data/glr.c, data/lalr1.cc: Update copyright date.
9326
cea1469d
PE
9327 Fix a destructor bug reported by Wolfgang Spraul in
9328 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
9329 * data/yacc.c (yyabortlab): Don't call destructor, and
9330 don't set yychar to EMPTY.
9331 (yyoverflowlab): Don't call destructor.
9332 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
9333 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
9334 since we no longer output the message "discarding lookahead token
9335 end of input ()".
9336
5e6f62f2
PH
93372005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9338
9339 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
9340 fix a small glitch in debugging output.
9341 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
9342 after YY_SYMBOL_PRINT where needed.
9343
9344 (struct yyGLRState): Add some comments.
9345 (struct yySemanticOption): Add some comments.
9346 (union yyGLRStackItem): Add comment.
9347
9348 (yymergeOptionSets): Correct this to properly perform the union,
9349 avoiding infinite reported by Michael Rosien.
9350 Update comment.
9351
9352 * tests/glr-regression.at: Add test for GLR merging error reported
9353 by M. Rosien.
cea1469d 9354
0fb669f9
PE
93552005-05-13 Paul Eggert <eggert@cs.ucla.edu>
9356
9357 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
9358 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
9359 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
9360 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
9361 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
9362 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
9363 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
9364 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
9365 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
9366 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
9367 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
9368 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
9369 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
9370 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
9371 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
9372 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
9373 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
9374 src/derives.h, src/files.c, src/files.h, src/getargs.c,
9375 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
9376 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
9377 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
9378 src/output.h, src/parse-gram.c, src/parse-gram.h,
9379 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
9380 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
9381 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
9382 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
9383 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
9384 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
9385 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
9386 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
9387 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
9388 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
9389 tests/reduce.at, tests/regression.at, tests/sets.at,
9390 tests/synclines.at, tests/testsuite.at, tests/torture.at:
9391 Update FSF postal mail address.
9392
51f4735e
PE
93932005-05-11 Paul Eggert <eggert@cs.ucla.edu>
9394
9395 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
9396 Problem reported by Ralf Menzel.
9397
80ce3401
PE
93982005-05-01 Paul Eggert <eggert@cs.ucla.edu>
9399
9400 * tests/actions.at: Test that stack overflow invokes destructors.
9401 From Marcus Holland-Moritz.
9402 * data/yacc.c (yyerrlab): Move the code that destroys the stack
9403 from here....
9404 (yyreturn): to here. That way, destructors are called properly
9405 even if the stack overflows, or the user calls YYACCEPT or
9406 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
9407 (yyoverflowlab): Destroy the lookahead.
9408
94092005-04-24 Paul Eggert <eggert@cs.ucla.edu>
9410
9411 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
9412
72f000b0
PE
94132005-04-17 Paul Eggert <eggert@cs.ucla.edu>
9414
9415 * NEWS: Bison-generated C parsers no longer quote literal strings
9416 associated with tokens.
9417 * src/output.c (prepare_symbols): Don't escape strings,
9418 since users don't want to see C escapes.
9419 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
9420 in diagnostics.
c19683bb 9421 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
9422 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
9423
1094323f
PE
94242005-04-16 Paul Eggert <eggert@cs.ucla.edu>
9425
9426 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
9427 the data size is known to be too small and we can't increase it.
9428 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
9429
ca407bdf
PE
94302005-04-15 Paul Eggert <eggert@cs.ucla.edu>
9431
9432 * src/parse-gram.y: Include quotearg.h.
9433 (string_as_id): Quote $1 before using it as a key, since the
9434 lexer no longer quotes it for us.
9435 (string_content): Don't strip quotes, since lexer no longer
9436 quotes it for us.
9437 * src/scan-gram.l: Include quotearg.h.
9438 ("\""): Omit quote.
9439 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
9440 a key, since the rest of the lexer doesn't quote it.
9441 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
9442 * tests/regression.at (Token definitions): Check for backslashes
9443 in token strings.
9444
9445 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
9446 (YYSIZE_T): Define to unsigned long int when using an older compiler.
9447 (yyparse): Revamp code to generate long syntax error message, to
9448 make it easier to translate, and to avoid problems with arithmetic
9449 overflow. Change "virtual memory" to "memory" in diagnostic, since
9450 we don't know whether the memory is virtual.
9451
1ce59070
PE
94522005-04-13 Paul Eggert <eggert@cs.ucla.edu>
9453
9454 * NEWS: Bison-generated C parsers now use the _ macro to
9455 translate strings.
9456 * data/yacc.c (_) [!defined _]: New macro.
9457 All English strings wrapped inside this macro.
9458 * doc/bison.texinfo (Bison Parser): Document _.
9459 * po/POTFILES.in: Include src/parse-gram.c, since it now
9460 includes translateable strings that parse-gram.y doesn't.
9461
a749a695
PE
94622005-04-12 Paul Eggert <eggert@cs.ucla.edu>
9463
9464 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
9465 reverting the 2004-10-11 change to this function.
9466 (symbol_check_alias_consistency): Don't call symbol_type_set
9467 if the type name is already correct.
9468 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
9469
8fb1053b
PE
94702005-03-25 Paul Eggert <eggert@cs.ucla.edu>
9471
9472 * tests/regression.at (Token definitions): Don't use a token named
9473 c, as that generates a "#define c ..." that runs afoul of buggy
9474 stdlib.h that uses the identifier c as a member of struct
9475 drand48_data. Problem reported by Horst Wente.
9476
ff498c4a
PE
94772005-03-21 Paul Eggert <eggert@cs.ucla.edu>
9478
9479 * bootstrap: Change translation URL from
9480 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
9481 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
9482 redirection glitches. Problem reported by twlevo@xs4all.nl.
9483
65211d70
PE
94842005-03-20 Paul Eggert <eggert@cs.ucla.edu>
9485
9486 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
9487 after operands; POSIX says this isn't portable for the c99 command.
9488
9577fb1f
PE
94892005-03-18 Paul Eggert <eggert@cs.ucla.edu>
9490
9491 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
9492 immediately if a data overrun has occurred; this may help us track
9493 down what may be a spurious failure on MacOS.
9494
78b178f7
PE
94952005-03-17 Paul Eggert <eggert@cs.ucla.edu>
9496
a2599d0f
PE
9497 Respond to problems reported by twlevo@xs4all.nl.
9498
9499 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
9500
78b178f7
PE
9501 * src/vcg.h: Comment fix.
9502 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
9503 (G_CMAX): Change to -1 instead of INT_MAX.
9504
9505 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 9506
7296e729
PE
95072005-03-15 Paul Eggert <eggert@cs.ucla.edu>
9508
9509 * src/tables.c (state_number_to_vector_number): Put it inside an
9510 "#if 0", since it's not currently used. Problem reported by
9511 Roland McGrath.
9512
05ac60f3
PE
95132005-03-06 Paul Eggert <eggert@cs.ucla.edu>
9514
9515 * src/output.c (escaped_output): Renamed from
9516 escaped_file_name_output, since we now use it for symbol tags as
9517 well. All uses changed.
9518 (symbol_destructors_output, symbol_printers_output):
9519 Escape symbol tags too.
9520 Problem reported by Matyas Forstner in
9521 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
9522
9523 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
9524 not needed.
9525 * src/output.c (user_actions_output, token_definitions_output,
9526 symbol_destructors_output, symbol_printers_output): Likewise.
9527 * src/reader.c (prologue_augment): Likewise.
9528 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
9529
9530 * src/vcg.c (output_edge): Don't quote linestyle arg.
9531 Problem reported by twlevo@xs4all.nl.
9532
7eb453ac
PE
95332005-02-28 Paul Eggert <eggert@cs.ucla.edu>
9534
9535 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
9536 example, reported by Derek M Jones. Also, make the example even
9537 more outrageous, to better illustrate how bad the problem is.
9538
4c04c52a
PE
95392005-02-24 Paul Eggert <eggert@cs.ucla.edu>
9540
9541 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
9542 putsym. Typo reported by Sebastian Piping.
9543
a61e1620
PE
95442005-02-23 Paul Eggert <eggert@cs.ucla.edu>
9545
9546 * doc/bison.texinfo (Language and Grammar): some -> same
9547 (Epilogue): int he -> in the
9548 Typos reported by Sebastian Piping via Justin Pence.
9549
9ec93868
PE
95502005-02-07 Paul Eggert <eggert@cs.ucla.edu>
9551
9552 * tests/glr-regression.at (Improper handling of embedded actions
9553 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
9554 embedded actions and $-N in GLR parsers", work around an Autoconf bug
9555 with dollar signs in test names.
9556 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
9557 for a similar reason.
9558
73ce7e7e
PE
95592005-01-28 Paul Eggert <eggert@cs.ucla.edu>
9560
9561 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
9562 wants to redefine G_VIEW.
9563
2e72b98e
PE
95642005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9565
9566 * src/vcg.c (get_view_str): Remove case for normal_view.
9567 Problem reported by twlevo@xs4all.nl.
9568
e0d634e5
PE
95692005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9570
ccf830a4
PE
9571 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9572 Problem reported by twlevo@xs4all.nl.
9573
e0d634e5
PE
9574 * doc/bison.texinfo: Change @dircategory from "GNU programming
9575 tools" to "Software development". Requested by Richard Stallman
9576 via Karl Berry.
9577
7bbc8cb0
PE
95782005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9579
9580 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9581 Problem reported by twlevo@xs4all.nl.
9582
08b770bc
PE
95832005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9584
9585 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9586 keyword; it's not needed with modern compilers, and it doesn't
9587 affect correctness with older compilers. Suggested by
9588 twlevo@xs4all.nl.
9589
95f22ad2
PE
95902005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9591
9592 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9593 gcc -Wswitch-default.
9594 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9595 * data/yacc.c (yyparse): Likewise.
9596
d229d15c
PE
95972005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9598
9599 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9600 already. Let config.h define any nonstandard values.
9601
ecadd90f
PE
96022005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9603
9604 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9605 for the benefit of slower hosts. Problem reported by
9606 Nelson H. F. Beebe.
9607
213744b5
PE
96082005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9609
9610 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9611 being defined and not used.
9612 * data/lalr1.cc (yyparse): Likewise.
9613 Use "if (false)" rather than "if (0)".
9614
249d3236
PE
96152005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9616
9617 * TODO: Mention that we should allow NUL bytes in tokens.
9618
987cc1fb
PE
96192005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9620
9621 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9622 Problem reported by Hans Aberg.
9623
08fe02d9
PE
96242005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9625
9626 * src/getargs.c (version): Happy new year; update overall
9627 program copyright date from 2004 to 2005.
9628
9629 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9630 Problem reported by Hans Aberg.
9631 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9632 (Output file names.): Add a test for the case when standard output
9633 is closed.
9634
010c0266
PE
96352004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9636
9637 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9638 to fix an oversight in the Bison 2.0 manual.
9639
da12206a
PE
96402004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9641
9642 * NEWS: Version 2.0. Reformat the existing news items since
9643 1.875, so that related items are grouped together.
3a4734aa 9644 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
9645 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9646
c935d934
PE
9647 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9648 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9649 otherwise, we're not testing alloca. Unfortunately there's no
9650 simple way to consult HAVE_ALLOCA here.
9651
da12206a
PE
9652 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9653 for yymsg, too.
9654
9655 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9656 hand. This avoids a warning about comparing int to size_t when
9657 GCC warnings are enabled.
9658
0a2c5137
PE
96592004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9660
d7e14fc0
PE
9661 * NEWS: Bison-generated parsers no longer default to using the
9662 alloca function (when available) to extend the parser stack, due
9663 to widespread problems in unchecked stack-overflow detection.
9664 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9665 responsibility to set it to a positive value. This lets the user
9666 specify a value that is not a preprocessor constant.
9667 * data/yacc.c (YYMAXDEPTH): Likewise.
9668 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9669 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9670 to be a compile-time constant. However, explain the constraints on it.
9671 Also, explain the constraints on YYINITDEPTH.
9672 (Table of Symbols): Explain that alloca is no longer the default.
9673 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9674 to 1.
9675
0a2c5137
PE
9676 * doc/bison.texinfo (Location Default Action): Mention that n must
9677 be zero when k is zero. Suggested by Frank Heckenbach.
9678
e019c247
AD
96792004-12-22 Akim Demaille <akim@epita.fr>
9680
9681 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9682 (parser::state_type, parser::semantic_type, parser::location_type):
9683 Private, not public.
9684 (parser::parse): Return ints, not bool.
9685 Returning a bool introduces a problem: 0 corresponds to false, and
9686 it seems weird to return false on success. Returning true changes
9687 the conventions for yyparse.
9688 Alternatively we could return void and send an exception.
9689 There is no clear consensus (yet?).
9690 (state_stack, semantic_stack, location_stack): Rename as...
9691 (state_stack_type, semantic_stack_type, location_stack_type): these.
9692 Private, not public.
9693 * tests/c++.at: New.
9694 * tests/testsuite.at, tests/Makefile.am: Adjust.
9695
72731bb7
AD
96962004-12-21 Akim Demaille <akim@epita.fr>
9697
9698 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9699
9a0d8bec
AD
97002004-12-21 Akim Demaille <akim@epita.fr>
9701
9702 Don't impose std::string for filenames.
9703
9704 * data/lalr1.cc (b4_filename_type): New.
9705 (position::filename): Use it.
9706 (parser.hh): Move the inclusion of stack.hh and location.hh below
9707 the user code, so that needed headers for the filename type can be
9708 included first.
72731bb7
AD
9709 Forward declare them before the user code.
9710 * tests/Makefile.am (check-local, installcheck-local): Pass
9711 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 9712
99880de5
AD
97132004-12-20 Akim Demaille <akim@epita.fr>
9714
9715 Use more STL like names: my_class instead of MyClass.
9716
9717 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9718 (SemanticStack, SemanticType, StateStack, StateType)
9719 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9720 (Parser::value): Rename as...
9721 (location_stack, location_type, rhs_number_type, semantic_stack)
9722 (semantic_type, state_stack, state_type, token_number_type, stack)
9723 (slice, traits, parser::yylloc, parser::yylval): these.
9724
9725 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9726
9bec482e
PE
97272004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9728
9729 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9730 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9731
f6fbd3da
PE
97322004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9733
9734 Remove uses of 'short int' and 'unsigned short int'. This raises
9735 some arbitrary limits. It uses more memory but nowadays that's
9736 not much of an issue.
9737
9738 This change does not affect the generated parsers; that's a different
9739 task, as some users will want to conserve memory there.
9740
9741 Ideally we should use size_t to represent all object counts, and
9742 something like ptrdiff_t to represent signed differences of object
9743 counts; but that will require more code-cleanup than I have the
9744 time to do right now.
9745
9746 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9747 Use size_t, not int or short int, to count objects.
9748 * src/closure.c (nritemset, closure): Likewise.
9749 * src/closure.h (nritemset, closure): Likewise.
9750 * src/nullable.c (nullable_compute): Likewise.
9751 * src/print.c (print_core): Likewise.
9752 * src/print_graph.c (print_core): Likewise.
9753 * src/state.c (state_compare, state_hash): Likewise.
9754 * src/state.h (struct state): Likewise.
9755 * src/tables.c (default_goto, goto_actions): Likewise.
9756
9757 * src/gram.h (rule_number, rule): Use int, not short int.
9758 * src/output.c (prepare_rules): Likewise.
9759 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9760 errs, reductions): Likewise.
9761 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9762 Likewise.
9763 * src/tables.c (vector_number, tally, action_number,
9764 ACTION_NUMBER_MINIMUM): Likewise.
9765 * src/output.c (muscle_insert_short_int_table): Remove.
9766
efeed023
AD
97672004-12-17 Akim Demaille <akim@epita.fr>
9768
9769 * data/lalr1.cc: Extensive Doxygenation.
9770 (error_): Rename as...
9771 (error): this, since it is visible to the user.
9772 Adjust callers.
9773 (Parser::message): Now an automatic variable from...
9774 (Parser::yyreport_syntax_error_): here.
9775 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9776 Parser::error.
9777 * tests/input.at: Escape $.
9778
bc82c5a5
PE
97792004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9780
9781 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9782 Parenthesize rhs to avoid obscure problems with mistakes like
9783 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9784 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9785 b4_rhs_location): Likewise.
9786 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9787 b4_rhs_location): Likewise.
9788
fd19f271
AD
97892004-12-16 Akim Demaille <akim@epita.fr>
9790
9791 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9792 yacc.c: be sure to stay within yycheck_.
9793 * tests/actions.at: Re-enable C++ tests.
9794
10454ea4
AD
97952004-12-16 Akim Demaille <akim@epita.fr>
9796
9797 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9798 real.
9799
c5b95ccf
AD
98002004-12-16 Akim Demaille <akim@epita.fr>
9801
9802 Use #define to handle the %name-prefix.
9803
9804 * data/glr.c, data/yacc.c: Comment changes.
9805 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9806 so that one can refer to yylex in the parser file, and have it
9807 renamed, as is the case with other skeletons.
9808
617a8f12
AD
98092004-12-16 Akim Demaille <akim@epita.fr>
9810
9811 Move lalr1.cc internals into yy*.
9812
9813 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9814 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9815 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9816 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9817 (empty_, final_, terror_, errcode_, ntokens_)
9818 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9819 (looka_, ilooka_, error_range_, nerrs_):
9820 Rename as...
9821 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9822 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9823 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9824 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9825 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9826 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9827 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9828 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9829 these.
9830
1e547e6e
PE
98312004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9832
9833 Fix some problems reported by twlevo at xs4all.
9834 * src/symtab.c (symbol_new): Report an error if the input grammar
9835 contains too many symbols. This is better than calling abort() later.
9836 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9837 (struct node, struct graph):
9838 Rename member expand to stretch. All uses changed.
9839 (struct graph): Remove member layoutalgorithm. All uses removed.
9840 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9841 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9842 All uses changed.
9843 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9844
735d6bd4
AD
98452004-12-15 Akim Demaille <akim@epita.fr>
9846
9847 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9848 Add more Doxygen comments.
9849 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9850 (report_syntax_error_, translate_): Rename as...
9851 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9852 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9853
2e1f5829
AD
98542004-12-15 Akim Demaille <akim@epita.fr>
9855
9856 * data/lalr1.cc (lex_): Rename as...
9857 (yylex_): this.
9858 Move the trace here.
9859 Take the %name-prefix into account.
9860 Reported by Alexandre Duret-Lutz.
9861
a3cb6248
AD
98622004-12-15 Akim Demaille <akim@epita.fr>
9863
9864 Simplify the C++ parser constructor.
9865
9866 * data/lalr1.cc (debug_): Rename as...
9867 (yydebug_): so that the parser's internals are always in the yy*
9868 pseudo namespace.
9869 Adjust uses.
9870 (b4_parse_param_decl): Remove the leading comma as it is now only
9871 called as unique argument list.
9872 (Parser::Parser): Remove the constructor accepting a location and
9873 an initial debugging level.
9874 Remove from the other ctor the argument for the debugging level.
9875 (debug_level_type, debug_level, set_debug_level): New.
9876
9877 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9878 constructor calls.
9879
07fed891
AD
98802004-12-15 Akim Demaille <akim@epita.fr>
9881
9882 Remove b4_root related material: failure experiment
a3cb6248 9883 (which goal was to allow to derive from a class).
07fed891
AD
9884
9885 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9886 definitions and uses.
9887
e603eaa5
PE
98882004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9889
9890 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9891 not 2, since it's not portable to subtract 1 from the start of an
9892 array. The new item 0 is never set or used. All uses changed.
9893
9894 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9895 the default definition of YYLLOC_DEFAULT. Problem reported
9896 by Frank Heckenbach.
9897
fafb007d
PE
98982004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9899
9900 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9901 the normal case and one for the error case. Just use the
9902 first one uniformly. Problem reported by Frank Heckenbach.
9903 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9904 use exactly the same macro in both places.
9905 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9906 so that the normal-case YYRHSLOC works for the error case too.
9907 All uses changed.
9908 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
9909 (YYLLOC_DEFAULT): Use the same macro as glr.c.
9910 * doc/bison.texinfo (Location Default Action): Don't claim that
9911 we have an array of locations. Use the same macro for both glr
9912 and lalr parsers. Mention YYRHSLOC. Mention what happens when
9913 the index is 0.
9914
48814dcd
PE
99152004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9916
a4e1a53b
PE
9917 * HACKING: Update email addresses to send announcements to.
9918
48814dcd
PE
9919 * configure.ac (AC_INIT): Bump version to 1.875f.
9920
337116ba
PE
99212004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9922
9923 * NEWS: Version 1.875e.
9924 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
9925
9926 * src/scan-skel.l: Include "complain.h", for "fatal".
9927
9928 * src/relation.h (relation_print, relation_digraph):
9929 Relation sizes are of type relation_node, not size_t (this is
9930 merely a doc fix, since the two types are equivalent).
9931 (relation_transpose): Relation sizes are of type relation_node,
9932 not int.
9933 * src/relation.c: Likewise.
9934 (top, infinity): Now of type relation_node, not int.
9935 (traverse, relation_transpose): Use relation_node, not int.
9936
9937 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
9938 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
9939 (yyparse): Remove unused local introduced in 2004-10-25 patch.
9940
9941 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 9942 specifying whether the test should be skipped. Use it tp
337116ba 9943 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 9944 fail on some hosts, and should be skipped.
337116ba 9945
da2a7671
PE
99462004-12-08 Paul Eggert <eggert@cs.ucla.edu>
9947
9948 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
9949 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
9950 unless otherwise specified below.
9951
9952 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
9953 to allocate kernel_base, kernel_items, kernel_size, since
9954 they needn't be initialized to 0.
9955 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
9956 * src/closure.c (new_closure): Likewise, for itemset.
9957 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
9958 * src/lalr.c (set_goto_map): Likewise, for temp_map.
9959 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
9960 (build_relations): Likewise for edge, states1, includes.
9961 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
9962 * src/reader.c (packgram): Likewise, for ritem, rules.
9963 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
9964 * src/relation.c (relation_digraph): Likewise for VERTICES.
9965 (relation_transpose): Likewise for new_R, end_R.
9966 * src/symtab.c (symbols_token_translations_init): Likewise for
9967 token_translations.
9968 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
9969 (token_actions): Likewise for yydefact, actrow, conflrow,
9970 conflict_list.
9971 (save_column): Likewise for froms[symno], tos[symno].
9972 (goto_actions): Likewise for state_count.
9973 (pack_table): Likewise for base, pos, check.
9974 (tables_generate): Likewise for width.
9975
9976 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
9977 for initial core. Just have a separate core, so we needn't worry
9978 about whether kernel_size and kernel_base are initialized.
9979
9980 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
9981 kernel_size, kernel_items): Remove unnecessary initialization.
9982 * src/conflicts.c (conflicts): Likewise.
9983 * src/derives.c (derives): Likewise.
9984 * src/muscle_tablc (muscle_insert): Likewise.
9985 * src/relation.c (relation_digraph): Likewise.
9986 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
9987 conflrow, conflict_table, conflict_list, table, check):
9988 Likewise.
9989
9990 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
9991 This is because all callers pass unsigned int.
9992 * src/closure.h (new_closure): Likewise.
9993
9994 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
9995 (build_relations): Initialize includes[i] in all cases.
9996 * src/reader.c (packgram): Always initialize rules[ruleno].prec
9997 and rules[ruleno].precsym. Initialize members in order.
9998 * src/relation.c (relation_transpose): Always initialize new_R[i]
9999 and end_R[i].
10000 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
10001
10002 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
10003 conflict_list[0] was always 0, but now it isn't initialized.
10004
10005 * src/table.c (table_grow): When conflict_table grew, the grown
10006 area wasn't cleared. Fix this.
10007
10008 * lib/.cvsignore: Add strdup.c, strdup.h.
10009 * m4/.cvsignore: Add strdup.m4.
10010
00baeeac
PE
100112004-12-07 Paul Eggert <eggert@cs.ucla.edu>
10012
10013 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
10014 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
10015 GOTO_NUMBER_MAXIMUM, since we occasionally compute
10016 ngotos + 1 without checking for overflow.
10017 (build_relations): Use END_NODE, not -1, to denote end of edges.
10018 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
10019 build_relations): Use goto_number, not int, for goto numbers.
10020 * src/tables.c (save_column, default_goto): Likewise.
10021
be3d9d42
AD
100222004-11-23 Akim Demaille <akim@epita.fr>
10023
10024 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
10025 of #defining from yystype.
10026 Don't typedef yystype, C++ does not need it.
10027 This lets it possible to forward declare it as union.
10028
78e526d5
PE
100292004-11-23 Paul Eggert <eggert@cs.ucla.edu>
10030
10031 * bootstrap (gnulib_modules): Add extensions.
10032 Problem reported by Jim Meyering.
10033
afbb696d
PE
100342004-11-22 Paul Eggert <eggert@cs.ucla.edu>
10035
10036 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
10037 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
10038 src/system.h, src/tables.c: XFREE -> free, to accommodate
10039 recent change to gnulib xalloc.h.
78e526d5 10040 Problem reported by Jim Meyering.
afbb696d 10041
c1f8f16a
AD
100422004-11-17 Akim Demaille <akim@epita.fr>
10043
10044 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
10045
db7e5eb5 100462004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
10047 Alexandre Duret-Lutz <adl@gnu.org>
10048
10049 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
10050 changes.
10051 (YYCDEBUG): Adjust.
10052 Use it instead of cdebug_.
10053 (Parser::debug_stream, Parser::set_debug_stream): New.
10054 (Parser::symprint_): Define cdebug_ for temporary backward
10055 compatibility.
10056 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
10057 debug_stream ().
10058
68e11668
AD
100592004-11-17 Akim Demaille <akim@epita.fr>
10060
10061 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
10062 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
10063 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
10064 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
10065
97cbc73e
PE
100662004-10-27 Paul Eggert <eggert@cs.ucla.edu>
10067
10068 * data/glr.c (yyloc_default): Remove; not used.
10069 Problem reported by Frank Heckenbach.
10070
e342c3be
AD
100712004-10-25 Akim Demaille <akim@epita.fr>
10072
10073 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
10074 Introduce another definition to address simple location arrays.
10075 (yyGLRStack): New member: yyerror_range.
10076 (yyrecoverSyntaxError, yyparse): Update it.
10077 (yyrecoverSyntaxError): Use it when shifting the error token to
10078 have an accurate range, equivalent to the one computed by both
10079 yacc.c and lalr1.cc.
10080 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
10081 that column numbers start at column 0, as per GNU Coding
10082 Standards, the others tests, and the doc.
10083 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
10084 Adjust to the above change (first column is 0).
10085 And adjust the location of the "<error>", now covering the whole
10086 line.
10087
93602feb 100882004-10-22 Akim Demaille <akim@epita.fr>
04098407 10089 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
10090
10091 Remove some arbitrary limits on goto numbers and relations.
10092 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
10093 initial values, since they're never used.
10094 (set_goto_map): ngotos is now unsigned, so test for overflow
10095 by seeing whether it wraps around to zero.
10096 * src/lalr.h (goto_number): Now size_t, not short int.
10097 (GOTO_NUMBER_MAXIMUM): Remove.
10098 * src/relation.c (relation_print, traverse, relation_transpose):
10099 Check for END_NODE rather than looking at sign.
10100 * src/relation.h (END_NODE): New macro.
10101 (relation_node): Now size_t, not short int.
10102
dba08b04
PE
101032004-10-22 Paul Eggert <eggert@cs.ucla.edu>
10104
10105 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
10106 keyword, not an identifier. Problem reported by Baron Schwartz in
10107 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
10108
df09ef2e
AD
101092004-10-11 Akim Demaille <akim@epita.fr>
10110
10111 * src/symtab.c (symbol_check_alias_consistency): Also check
10112 type names, destructors, and printers.
10113 Reported by Alexandre Duret-Lutz.
10114 Recode the handling of associativity and precedence in terms
10115 of symbol_precedence_set.
10116 Accept no redeclaration at all, not even equal to the previous
10117 value.
10118 (redeclaration): New.
10119 Use it to factor redeclaration complaints.
10120 (symbol_make_alias): Don't set the type of the alias, let
10121 symbol_check_alias_consistency do it as for other features.
10122 * src/symtab.h (symbol): Add new member prec_location, and
10123 type_location.
10124 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
10125 * tests/input.at (Incompatible Aliases): New.
10126
146bc99d
PE
101272004-10-09 Paul Eggert <eggert@cs.ucla.edu>
10128
10129 .cvsignore fixes to accommodate gnulib changes,
10130 and the practice of naming build directories "_build".
10131 * .cvsignore: Add "_*". Sort.
10132 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
10133 * m4/.cvsignore: Add "*_gl.m4".
10134
e503aa60
AD
101352004-10-06 Akim Demaille <akim@epita.fr>
10136
10137 * src/parse-gram.y (add_param): Fix the truncation of trailing
10138 spaces.
10139
b4a20338
AD
101402004-10-05 Akim Demaille <akim@epita.fr>
10141
10142 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
10143 whether the reducion was empty or not. This leaves room to
10144 improve the use of YYLLOC_DEFAULT in such a case.
10145 lalr1.cc is still experimental, so changing this is acceptable.
10146 And finally, there are probably not many users who changed the
10147 handling of locations in GLR, so changing is admissible too.
10148
10149 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
10150 empty reduction, set @$ to an empty location ending the previously
10151 stacked symbol.
10152 Adjust uses to make sure the code is triggered on empty
10153 reductions.
10154 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
10155 expected output: empty reductions have empty locations.
10156
f85a5e6f
AD
101572004-09-29 Akim Demaille <akim@epita.fr>
10158
10159 * data/lalr1.cc: Move towards a more standard C++ coding style
10160 for templates: Class < T > -> Class<T>.
10161
b203fc2c
AD
101622004-09-29 Akim Demaille <akim@epita.fr>
10163
10164 * data/lalr1.cc: Reinstall the former ctor, for sake of
10165 compatibility, but warn it will be removed.
10166 Move towards a more standard C++ coding style (i.e., type *var ->
10167 type* var).
10168
5b7e1e73
PE
101692004-09-27 Paul Eggert <eggert@cs.ucla.edu>
10170
3fee967f
PE
10171 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
10172 since it's less likely to work if NULs are involved in the future.
5b7e1e73 10173
0dcca5c2
AD
101742004-09-27 Akim Demaille <akim@epita.fr>
10175
10176 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
10177
6dde1c82
AD
101782004-09-27 Akim Demaille <akim@epita.fr>
10179
10180 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 10181 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
10182 and argument names.
10183 (b4_cc_constructor_call): Likewise.
10184
b233d555
AD
101852004-09-24 Akim Demaille <akim@epita.fr>
10186
10187 * src/parse-gram.y (add_param): Strip the leading and trailing
10188 blanks from a formal argument declaration.
10189 (YY_LOCATION_PRINT): New.
10190
619404e3
AD
101912004-09-24 Akim Demaille <akim@epita.fr>
10192
10193 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
10194 after the location.
10195
dd8d9022
AD
101962004-09-24 Akim Demaille <akim@epita.fr>
10197
10198 * doc/bison.texinfo (Table of Symbols): Sort.
10199
0092f063
AD
102002004-09-21 Akim Demaille <akim@epita.fr>
10201
10202 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
10203 the useless parentheses.
10204 Suggested by Paul Eggert.
10205
451364ed
AD
102062004-09-20 Akim Demaille <akim@epita.fr>
10207
10208 Let the initial-action act on the look-ahead, and use it for the
10209 "initial push" (corresponding to an hypothetical beginning-of-file).
10210 And let lalr1.cc honor %initial-action.
10211
10212 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
10213 example.
10214 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
10215 (Parser::Parser): Remove the ctor that used to initialize it.
10216 (Parser::parse): Like in the other skeletons, issue the "starting
10217 parse" message before any action.
10218 Honor %initial-action.
10219 Initialize the stacks with the lookahead.
10220 * data/yacc.c: Let $$ and @$ in %initial-action designate the
10221 look-ahead.
10222 Push them in the stacks.
10223 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
10224
18d192f0
AD
102252004-09-20 Akim Demaille <akim@epita.fr>
10226
10227 * doc/bison.texinfo (Initial Action Decl): New.
10228
b8458aa5
AD
102292004-09-20 Akim Demaille <akim@epita.fr>
10230
10231 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
10232 clearer criterion to define it.
10233 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
10234 When reducing on an empty RHS, use the latest stacked location as
10235 location.
10236 yylloc is not always available.
10237 * data/glr.c: Likewise.
10238 Also, honor initial-actions.
10239
3fc16193
AD
102402004-09-20 Akim Demaille <akim@epita.fr>
10241
10242 * data/yacc.c (YY_LOCATION_PRINT): New.
10243 Define when we know YYLTYPE's structure, i.e., when the default
10244 YYLLOC_DEFAULT is used.
10245 * data/c.m4 (b4_yysymprint_generate): Use it.
10246 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
10247 value of the result.
10248 (error_start_): Replace with...
10249 (error_range_): this location array.
10250 This allows to replace code relying on the implementation of
10251 locations by portable code.
10252 * data/yacc.c (yylerrsp): Replace with...
10253 (yyerror_range): this.
10254 Every time a token is popped, update yyerror_range[0], to have an
10255 accurate location for the error token.
10256 * data/glr.c (YY_LOCATION_PRINT): New.
10257 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
10258 deference a pointer.
10259 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
10260 report the location in %printers.
10261
10262 * src/scan-skel.l: Instead of abort, report error messages to ease
10263 understanding skeleton scanning failures.
10264
ecfe33e7
AD
102652004-09-16 Akim Demaille <akim@epita.fr>
10266
10267 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
10268 (iterator, const_iterator): these, to be more in the C++ spirit.
10269 Also, return reverse iterators so that when displaying the stack
10270 we display its bottom first.
10271 (Parser::stack_print_, Parser::reduce_print_): Match the messages
10272 from yacc.c.
10273 We should probably use vector here though.
10274
1576d44d
AD
102752004-09-16 Akim Demaille <akim@epita.fr>
10276
10277 Have more complete shift traces.
10278
10279 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
10280 to report Shifts instead of ad hoc YYDPRINTF invocations,
10281 including for the error token.
10282 * data/lalr1.cc (symprint_): Output the location.
10283 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
10284 output the location within the %printer.
10285 Activate GLR tests, at least to make sure they compile properly.
10286 They still don't pass though.
10287 * tests/calc.at: Adjust expect verbose output, since now "Entering
10288 state..." is on a different line than the "Shifting" message.
10289
9c66f418
AD
102902004-09-08 Akim Demaille <akim@epita.fr>
10291
10292 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
10293 Bison directive from the Bison file to the invocation of this
10294 macro, so that these directives are passed to
10295 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
10296 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
10297 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
10298 the extra Bison directives instead of the whole series.
10299 Change the grammar so that there are recoverable errors, and
10300 unrecoverable errors. Now we can have the parser give up before
10301 consuming the whole input. As a result we now can observe that
10302 the lookahead is freed when needed.
10303 Change the parser source to parse argv[1] instead of a hard coded
10304 string.
10305 Simplify yylex, and give a value and location to EOF.
10306 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
10307 passed directives already coded in the file.
10308 Add some tests to check the location of "error".
10309 For some tests, the C++ parser is correct, and not yacc.c.
10310 For other tests, they provide different, but unsatisfying, values,
10311 so keep the C++ value so that at least one parser is "correct"
10312 according to the test suite.
10313 (Actions after errors): Remove, this is subsumed by the
10314 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
10315
52d5733f
AD
103162004-09-06 Akim Demaille <akim@epita.fr>
10317
10318 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 10319 (Parser::pop): New.
52d5733f
AD
10320 Use it.
10321
a0e68930
AD
103222004-09-06 Akim Demaille <akim@epita.fr>
10323
10324 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
10325 argument, an informative message.
10326 Call YY_SYMBOL_PRINT.
10327 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
10328 * data/lalr1.cc (destruct_): Likewise.
10329 In addition, no longer depend on b4_yysymprint_generate and
10330 b4_yydestruct_generate to generate these functions, do it "by
10331 hand".
10332
e757bb10
AD
103332004-09-03 Akim Demaille <akim@epita.fr>
10334
10335 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
10336 invoked, yydestruct the lookahead.
10337 * tests/calc.at (Calculator $1): Update the expected lengths of
10338 traces: there is an added line for the discarded lookahead.
10339 * doc/bison.texinfo (Destructor Decl): Some rewording.
10340 Define "discarded" symbols.
10341
0fe1f06d
AD
103422004-09-02 Akim Demaille <akim@epita.fr>
10343
10344 * data/lalr1.cc (translate_, destruct_): No reason to be static.
10345
284acc8b
AD
103462004-09-02 Akim Demaille <akim@epita.fr>
10347
10348 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
10349 (YYDSYMPRINTF): Rename as...
10350 (YY_SYMBOL_PRINT): this.
10351 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
10352 two.
10353 Use it instead of direct symprint_ calls.
10354 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
10355 one.
10356
a5eb1ed2
AD
103572004-09-02 Akim Demaille <akim@epita.fr>
10358
b7c72fe1
AD
10359 * data/lalr1.cc (b4_yysymprint_generate): New.
10360 (symprint_): New member function, defined when YYDEBUG.
10361 Use it consistently instead of token/nterm debugging output by
10362 hand.
a5eb1ed2
AD
10363 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
10364 %printer calls to use cdebug_ when using lalr1.cc.
10365
417141dd
AD
103662004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
10367
10368 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
10369 with #ifdef YYDEBUG.
10370
2fa09258
AD
103712004-08-26 Akim Demaille <akim@epita.fr>
10372
10373 * doc/bison.texinfo (Implementing Loops): Rename as...
10374 (Implementing Gotos/Loops): this.
10375
9378b508
PE
103762004-08-13 Paul Eggert <eggert@cs.ucla.edu>
10377
10378 Adjust to latest gnulib.
10379 * bootstrap (gnulib_modules): Add xalloc-die.
10380 Set LC_ALL=C so that file names sort consistently.
10381 Prefer the gnulib copies of gettext.m4, glibc21.m4,
10382 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
10383 uintmax_t.m4, ulonglong.m4.
10384 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
10385 po.m4 since we are now using _gl.m4 instead.
10386
87a8ad5c
PE
103872004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
10388
10389 * src/scan-action.l: Remove. Scanning of semantic actions is
10390 handled in scan-gram.l.
10391
dca81a78
PE
103922004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
10393
10394 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
10395
10396 * src/location.h (struct): The file member is a uniqstr.
10397 (equal_boundaries): Use UNIQSTR_EQ for comparison.
10398
c9cbf7c5
PE
103992004-07-22 Paul Eggert <eggert@cs.ucla.edu>
10400
10401 Fix bug with non-%union parsers that have printers or destructors,
10402 which led to a Bison core dump. Reported by Peter Fales in
10403 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 10404
c9cbf7c5
PE
10405 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
10406 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
10407 not to our own type.
10408 * src/output.c (symbol_destructors_output, symbol_printers_output):
10409 Don't assume %union.
10410 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
10411 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
10412 UNION-FLAG. All callers changed.
10413 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
10414 Use type char, not unsigned int, when declaring an array of char;
10415 this lets us remove a cast.
10416 (Printers and Destructors): Add non-%union test cases.
10417
fa7e68c3
PE
104182004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10419
10420 * doc/bison.texinfo: Minor editorial changes, mostly to the new
10421 GLR writeups. E.g., avoid frenchspacing and the future tense,
10422 change "lookahead" to "look-ahead", and change "wrt" to "with
10423 respect to".
2fa09258 10424
fa7e68c3
PE
104252004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10426
10427 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
10428 New sections, split off from the GLR Parsers section. Put the new
10429 Simple GLR Parser near the start of the GLR section, for clarity.
10430 Rewrite connective text.
10431
99a9344e
PE
104322004-06-21 Frank Heckenbach <frank@g-n-u.de>
10433
10434 * doc/bison.texinfo (Simple GLR Parsers): New section.
10435
8dd162d3
PE
104362004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10437
10438 * NEWS, TODO, doc/bison.texinfo:
10439 Use "look-ahead" instead of "lookahead", to be consistent.
10440 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
10441 while we're fixing "look-ahead".
10442 * src/conflicts.c (shift_set): Renamed from shiftset.
10443 (look_ahead_set): Renamed from lookaheadset.
10444 * src/print.c: Likewise.
10445 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
10446 name for "lookahead".
10447 (report_types, usage): Likewise.
10448 * src/getargs.h (report_look_ahead_tokens): Renamed from
10449 report_lookaheads.
10450 * src/lalr.c (compute_look_ahead_tokens): Renamed from
10451 compute_lookaheads.
10452 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
10453 (look_ahead_tokens_print): Renamed from lookaheads_print.
10454 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
10455 state_rule_lookaheads_print.
10456 * src/state.h: Likewise.
10457 (reductions.look_ahead_tokens): Renamed from lookaheads.
10458 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
10459 AT_DATA_LOOKAHEADS_GRAMMAR.
10460
57a90331
PE
104612004-06-03 Paul Eggert <eggert@cs.ucla.edu>
10462
10463 * README: Update location of patched M4 distribution.
10464
8ed3234a
PE
104652004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
10466
10467 Don't assume the C++ compiler takes the same arguments as the C compiler
10468 (trivial change).
10469 * configure.ac (O0CXXFLAGS): New var.
10470 * tests/atlocal.in (CXXFLAGS): Use it.
10471
07971983
PE
104722004-05-29 Paul Eggert <eggert@cs.ucla.edu>
10473
10474 Fix some "make check" problems with C++ reported by
10475 Albert Chin-A-Young for Tru64 C++ in this thread:
10476 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
10477
10478 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
10479 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10480 Output to a .cc file for C++, not to a .c file.
10481 * tests/calc.at (AT_CHECK_CALC): Likewise.
10482 * tests/regression.at (AT_CHECK_DANCER): Likewise.
10483 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
10484
29058652
PE
104852004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
10486
10487 * tests/calc.at, tests/actions.at: Workaround for SGI
10488 C++ compiler. (trivial change)
10489
62cb8a99
PE
104902004-05-27 Paul Eggert <eggert@cs.ucla.edu>
10491
fd418816
PE
10492 Spent a few hours checking out which prerequisite versions the
10493 current sources actually require. I went all the way back to
10494 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
10495 a seemingly endless set of combinations of versions more recent
10496 than that. The bottom line is that the current sources require
10497 fairly recent versions of the build tools, and it'll be some work
10498 to change this.
10499 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
10500 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
10501 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
10502 Add comments explaining why those particular versions are
10503 currently needed.
2fa09258 10504
62cb8a99
PE
10505 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
10506 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 10507 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
10508
10509 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
10510 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
10511
caa52c10
PE
105122004-05-26 Paul Eggert <eggert@cs.ucla.edu>
10513
10514 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
10515 0.11.5. Suggested by Bruno Haible.
10516 * bootstrap: Remove gettext version checking.
10517
10518 * doc/bison.texinfo (Decl Summary): Also mention that %union
10519 can depend on prerequisite types. Problem reported by Tim
10520 Van Holder.
10521
4bfd5e4e
PE
105222004-05-25 Paul Eggert <eggert@cs.ucla.edu>
10523
2cef3017
PE
10524 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
10525 * README-alpha: Don't tell people not to package this.
10526
b9c85d5c
PE
10527 * bootstrap: Don't assume $(...) works; use `...` instead.
10528 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
10529 gettext better.
10530
4bfd5e4e
PE
10531 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
10532 put into the -d output file, and mention what to do if YYSTYPE is
10533 defined as a macro.
10534
6a36ff94
PE
105352004-05-24 Paul Eggert <eggert@cs.ucla.edu>
10536
6712933e
PE
10537 Undo change made earlier today: it caused autopoint to not bring
10538 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
10539 autopoint's.
10540
10541 * bootstrap: Check that gettext version matches what's in
10542 configure.ac. Warn users to ignore robots.txt ERROR 404.
10543 * bootstrap: Undo today's earlier change (logged below).
10544 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 10545
6a36ff94
PE
10546 The gettext version checking is causing more trouble than it's
10547 curing; remove it. Problem reported by Paul Hilfinger.
10548
10549 * bootstrap: Issue a warning that one can expect a message
10550 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
10551 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
10552
209ea708
PE
105532004-05-23 Paul Eggert <eggert@cs.ucla.edu>
10554
10555 Ensure that the C++ compiler used for testing actually works on a
10556 simple test program; if not, skip the C++-related tests. Problem
10557 reported by Vin Shelton in:
161a71f3 10558 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
10559
10560 * m4/cxx.m4: New file.
10561 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
10562 * tests/atlocal.in (BISON_CXX_WORKS): Add.
10563 * tests/local.at (AT_COMPILE_CXX): Use it.
10564
41ca2549
PE
105652004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10566
383e69dc
PE
10567 * data/glr.c (yylloc): Output this macro even if locations are not
10568 being generated, as the GLR parser needs it even in that case.
10569 Problem reported by Troy A. Johnson
10570 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10571
41ca2549
PE
10572 * configure.ac (AC_INIT): Update to 1.875e.
10573
e476c87d
PE
105742004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10575
10576 * NEWS: Version 1.875d.
10577 * configure.ac (AC_INIT): Likewise.
10578 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10579
10580 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10581 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10582 lalr1.cc runs afoul of the first, and the last two are no longer
10583 supported by GCC 3.4.0.
10584 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10585 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10586
233a88ad
PE
105872004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10588
10589 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10590 unsigned int, for compatibility with latest gnulib hash module.
10591 * src/state.c (state_hash, state_hasher): Likewise.
10592 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10593 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 10594
12ffdd28
PE
105952004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10596
10597 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10598
10599 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10600 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10601 character and string literals.
10602 (unexpected_end): New function.
10603 (unexpected_eof): Use it.
10604 (unexpected_newline): New function.
10605 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10606 actions.
e476c87d 10607
12ffdd28
PE
10608 * NEWS: Document %expect-rr.
10609
10610 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10611 Fix typo by replacing $1 with $option.
10612 Remove more 'intl'-related files.
9668e2be 10613 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
10614
10615 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10616 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10617 strtoul.c.
10618 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10619 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10620 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10621 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10622 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10623 * src/.cvsignore: Add *.output.
10624
10625 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10626 gets copied to the output file.
e476c87d 10627
1f65350a
PE
106282004-04-28 Paul Eggert <eggert@twinsun.com>
10629
10630 Get files from the gnulib and po repositories, instead of relying
10631 on them being in our CVS. Upgrade to latest versions of gnulib
10632 and Automake.
10633
10634 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10635 * bootstrap: Bootstrap from gnulib and po repositories.
10636 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10637 * README-cvs: Document these changes. Remove version numbers from
10638 mentions of build tools, since they change so often. Mention Flex.
10639
10640 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10641 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
10642 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10643 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 10644 does this for us.
12ffdd28
PE
10645 (AC_ISC_POSIX): Remove; we no longer support this
10646 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
10647 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10648 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10649 Do not check for C89 headers, except for locale.h which is used
10650 by the Yacc library and must port to K&R hosts.
10651 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10652 Do not check for C89 functions, except for setlocale which is
10653 used by the Yacc library.
10654 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10655 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10656 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10657 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10658 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10659 AM_GNU_GETTEXT): Remove; now done by:
10660 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10661 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10662 for us.
10663
10664 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10665 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10666 Define to empty, as gnulib.mk will do the rest for us.
10667 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10668 for us.
10669 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10670 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10671
10672 * src/files.c: Include gnulib's xstrndup.h.
10673
10674 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10675 (REALLOC): Use xnrealloc, for likewise.
10676 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10677 (strnlen, memrchr): Remove decls; functions no longer used.
10678 Include <stpcpy.h>.
10679
10680 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10681 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10682 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10683 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10684 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10685 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10686 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10687 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10688 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10689 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10690 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10691 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10692 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10693 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10694 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10695 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10696 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10697 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10698 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10699 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10700 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10701 Remove, as these files are now generated automatically
10702 by bootstrap or automake.
10703
10704 * po/ChangeLog: Remove: all but one entry was a duplicate
10705 of this file, and I moved that 2000-11-02 entry here.
10706
10707 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10708 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10709 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10710 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10711 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10712 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10713 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10714 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10715 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10716 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10717 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10718 xstrndup.h.
10719 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10720 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10721 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10722 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10723 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10724 * src/.cvsignore: Remove *_.c.
10725
10726
10727 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10728 support it. (The latest stable gzip doesn't.)
10729
107302004-04-27 Paul Eggert <eggert@twinsun.com>
10731
10732 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10733 case, as stos_ is now used by destructors due to the 2004-02-09
10734 change.
10735
10736 Remove more K&R C support.
10737 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10738 * lib/subpipe.c (errno): Remove decl.
10739 Include <stdlib.h> unconditionally.
10740 (EXIT_FAILURE): Remove macro.
10741 * src/complain.c (vfprintf, strerror): Remove.
10742 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10743 unconditionally.
10744 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10745 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10746 (strchr, strspn, memchr): Remove decls.
10747 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10748 unconditionally. Do not declare perror.
10749 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10750 unconditionally.
10751
10752 * src/complain.c (_): Remove useless defn, as system.h defines this.
10753
10754 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10755 with latest obstack.h.
10756 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10757 to procedure types, as obstack.h now does that for us.
10758 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10759
10760 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10761 so that this include file can stand alone.
10762 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10763 does this now. Include subpipe.h first after config.h, to
10764 test whether it can stand alone.
10765
10766 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10767 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10768 unused declaration.
10769
10770 * tests/synclines.at (%union synch line): Put a dummy member in
10771 the union, because empty unions aren't allowed in C. Caught
10772 by GCC 3.4.0.
10773
4f16766c
PE
107742004-04-13 Jim Meyering <jim@meyering.net>
10775
10776 * src/conflicts.c (conflicts_print): Correct format string typo:
10777 use `%%' to produce literal `%'. (trivial change)
10778
779e7ceb
PE
107792004-03-30 Paul Eggert <eggert@twinsun.com>
10780
10781 * src/getargs.c (version): Update copyright year to 2004.
10782
10783 * data/c.m4 (b4_int_type): Use 'short int' rather than
10784 'short', and similarly for 'long', 'unsigned', etc.
10785 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10786 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10787 yy_yypstack, yydumpstack): Likewise.
10788 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10789 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10790 Likewise.
10791 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10792 yy_stack_print, yyparse): Likewise.
10793 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10794 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10795 * lib/bitset.c (bitset_print): Likewise.
10796 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10797 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10798 * lib/bitsetv.c (bitsetv_dump): Likewise.
10799 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10800 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10801 Likewise.
10802 * src/LR0.c (allocate_itemsets): Likewise.
10803 * src/gram.h (rule_number, rule): Likewise.
10804 * src/lalr.h (goto_number): Likewise.
10805 * src/nullable.c (nullable_compute): Likewise.
10806 * src/output.c (prepare_rules): Likewise.
10807 * src/relation.c (relation_print, relation_digraph): Likewise.
10808 * src/relation.h (relation_node): Likewise.
10809 * src/state.h (state_number, transitions, errs, reductions,
10810 struct state): Likewise.
10811 * src/symtab.h (symbol_number, struct symbol): Likewise.
10812 * src/tables.c (vector_number, tally, action_number,
10813 default_goto, goto_actions): Likewise.
10814 * tests/existing.at (GNU Cim Grammar): Likewise.
10815 * tests/regression.at (Web2c Actions): Likewise.
10816
10817 * src/output.c (muscle_insert_short_int_table): Renamed from
10818 muscle_insert_short_table. All uses changed.
10819
d6328241
PH
108202004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10821
10822 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10823 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10824 Add %expect-rr rule.
4f16766c 10825
d6328241
PH
10826 * src/scan-gram.l: Recognize %expect-rr.
10827
4f16766c 10828 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 10829 expected_conflicts.
4f16766c 10830 (expected_rr_conflicts): Declare.
d6328241
PH
10831
10832 * src/conflicts.c (expected_sr_conflicts): Rename from
10833 expected_conflicts.
10834 (expected_rr_conflicts): Define.
10835 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10836 for GLR parsers.
10837 Use expected_sr_conflicts in place of expected_conflicts.
10838 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 10839
d6328241 10840 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 10841
1452af69
PE
108422004-03-08 Paul Eggert <eggert@gnu.org>
10843
10844 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 10845 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
10846
10847 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10848 in lalr1.cc.
10849 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10850 * src/scan-gram.l (scan_integer): New function.
10851 ({int}): Use it.
10852 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10853 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10854 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10855 Say "long int", not "long", for uniformity with GNU style.
10856
006d217d
PE
108572004-02-25 Paul Eggert <eggert@twinsun.com>
10858
10859 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10860 compilers. This fixes a problem with Intel's C++ compiler being
10861 chatty, reported by Guido Trentalancia in
161a71f3 10862 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 10863
c2729758
ADL
108642004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10865
10866 Support %destructor and merge error locations in lalr1.cc.
10867
10868 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10869 (Parser::stos_): Define unconditionally.
10870 (Parser::destruct_): New method. Generate its body with
10871 b4_yydestruct_generate.
10872 (Parser::error_start_): New attribute.
10873 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10874 token which are discarded.
10875 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10876 error_start_ when erroneous token are discarded.
10877 (Parser::parse) <yyerrlab1>: Compute the location of the error
10878 token so that it covers all the discarded tokens.
10879 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10880 it can be called with `%skeleton "lalr1.cc"', and do that.
10881
dd0e0635
PE
108822004-02-02 Paul Eggert <eggert@twinsun.com>
10883
10884 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10885 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10886 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10887 There's no need to mention top_builddir since Automake does that
10888 for us.
10889 (INCLUDES): Remove, as Automake says it's obsolescent.
10890 Contents migrated into AM_CPPFLAGS as described above.
10891 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10892
108932004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10894
10895 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10896 (yyreportSyntaxError): Handle case where lookahead token is
10897 YYEMPTY.
10898
be16239b
PH
108992004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10900
10901 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10902 resulting parsers are compilable with C++.
10903
5fa90832
PE
109042003-12-23 Paul Eggert <eggert@twinsun.com>
10905
10906 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10907 * src/output.c (output_skeleton): Rename local var.
10908 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
10909 Bison tokens, as this runs afoul of the 2003-10-07 change that
10910 disallowed NUL bytes in character constants or string literals.
10911
10912 * tests/local.at: Require Autoconf 2.59's Autotest.
10913 * tests/testsuite.at: Don't include local.at, since we now assume
10914 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
10915 including it.
10916 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
10917 multiple inclusion warnings.
dd0e0635 10918
b165c324
AD
109192003-12-02 Akim Demaille <akim@epita.fr>
10920
10921 * doc/bison.texinfo (How Can I Reset the Parser): More about start
10922 conditions.
10923 From Bruno Haible.
10924
26e06a21
ADL
109252003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
10926
10927 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
10928
92ac3705
PE
109292003-10-07 Paul Eggert <eggert@twinsun.com>
10930
6a5ecb38
PE
10931 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
10932 if testsuite doesn't exist.
10933
92ac3705
PE
10934 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
10935 literals, unfortunately.
10936 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
10937 Complain about NUL bytes in character constants or string literals.
10938
91d2c560
PE
109392003-10-05 Paul Eggert <eggert@twinsun.com>
10940
10941 * NEWS: Don't document %no-default-prec, as it's still
10942 too experimental.
10943 * doc/bison.texinfo: Document %no-default-prec only if
10944 the defaultprec flag is set. Normally it's not.
10945
0cc3da3a
PE
109462003-10-04 Paul Eggert <eggert@twinsun.com>
10947
10948 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
10949 non-modifiable lvalue, instead of a modifiable one.
10950 * doc/bison.texinfo (Actions): Document that $$ can
10951 be assigned to. Do not claim that $$ and $N are
10952 array element references: user code should not rely on this.
10953
22fccf95
PE
109542003-10-01 Paul Eggert <eggert@twinsun.com>
10955
10956 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
10957 (grammar_declaration): Use it.
10958 * src/scan-gram.l: New token %no-default-prec.
10959 * tests/conflicts.at: Revamp tests to use %no-default-prec.
10960 * NEWS, doc/bison.texinfo: Document the above.
10961
fc8f2965
AD
109622003-10-01 Akim Demaille <akim@epita.fr>
10963
10964 VCG no longer supports long_straight_phase.
10965
10966 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
10967 * src/print_graph.c (print_graph): Adjust.
10968
39a06c25
PE
109692003-09-30 Frank Heckenbach <frank@g-n-u.de>
10970 and Paul Eggert <eggert@twinsun.com>
10971
10972 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
10973 Table of Symbols): Document %default-prec.
10974 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
10975 (grammar_declaration): Set default_prec on %default-prec.
10976 * src/scan-gram.l (%default-prec): New token.
10977 * src/reader.h (default_prec): New flag.
10978 * src/reader.c: Likewise.
10979 (packgram): Handle it.
10980 * tests/conflicts.at (%default-prec without %prec,
10981 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 10982
39a06c25
PE
109832003-09-30 Paul Eggert <eggert@twinsun.com>
10984
10985 * tests/testsuite.at: Include local.at, not input.at, fixing
10986 a typo in the 2003-08-25 patch.
10987
62b6aef9
AD
109882003-08-27 Akim Demaille <akim@epita.fr>
10989
10990 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
10991 GCC warnings.
10992
89e1cc61
AD
109932003-08-26 Akim Demaille <akim@epita.fr>
10994
10995 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
10996 "<\#" to avoid magic from Gnus when posting parts of this script.
10997
a08460b0
AD
109982003-08-26 Akim Demaille <akim@epita.fr>
10999
11000 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
11001 (Parser::parse): here.
11002 Adjust: nerrs and errstatus is now replaced by...
11003 (Parser::nerrs_, Parser::errstatus_): New.
11004
603f1cfd
AD
110052003-08-25 Akim Demaille <akim@epita.fr>
11006
11007 * config/announce-gen, Makefile.cfg: New.
11008 * Makefile.am: Adjust.
11009 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
11010 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
11011
cd3684cf
AD
110122003-08-25 Akim Demaille <akim@epita.fr>
11013
11014 When reducing initial empty rules, Bison parser read an initial
11015 location that is not defined. This results in garbage, and that
11016 affects Bison's own parser. Therefore we need (i) to extend Bison
11017 to support a means to initialize this location, and (ii) to use
11018 this CVS Bison to fix CVS Bison's parser.
11019
11020 * src/reader.h, reader.c (epilogue_augment): Remove, replace
11021 with...
11022 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
11023 * src/parse-gram.y: Adjust.
11024 (%initial-action): New.
11025 (%error-verbose): Since we require CVS Bison, there is no reason
11026 not to use it.
11027 * src/scan-gram.l: Adjust.
11028 * src/Makefile.am (YACC): New, to make sure we use our own parser.
11029 * data/yacc.c (yyparse): Use b4_initial_action.
11030
4e03e201
AD
110312003-08-25 Akim Demaille <akim@epita.fr>
11032
11033 * doc/bison.texinfo: Don't promote stdout for error messages.
11034
8c182d05
AD
110352003-08-25 Akim Demaille <akim@epita.fr>
11036
11037 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
11038 From Alexandre Duret-Lutz.
11039
6a60c4cf
PE
110402003-08-25 Akim Demaille <akim@epita.fr>
11041
11042 Version 1.875c.
11043
25f66e1a
AD
110442003-08-25 Akim Demaille <akim@epita.fr>
11045
11046 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
11047 Use them.
11048
5348bfbe
AD
110492003-08-25 Akim Demaille <akim@epita.fr>
11050
11051 * data/lalr1.cc (Parser::reduce_print_): New.
11052 Use it.
11053
47301314
AD
110542003-08-25 Akim Demaille <akim@epita.fr>
11055
11056 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
11057 error recovery loops. This patch is based on
161a71f3 11058 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
11059 Also, augment the similarity between lalr1.cc and yacc.c.
11060 Note: the locations of error recovery rules are not correct yet.
11061
11062 * data/lalr1.cc: Comment changes to augment the similarity between
11063 lalr1.cc and yacc.c.
11064 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
11065 (yyerrlab1): Remove, but where it used to be (now the bottom part of
11066 yyerrlab), when hitting EOF, pop the whole stack here instead of
11067 merely falling thru the default error handling mechanism.
11068 (yyerrorlab): New label, with the old contents of YYERROR,
11069 plus the following change: pop the stack of rhs corresponding
11070 to the production that invoked YYERROR. That is how Yacc
11071 behaves (required by POSIX).
11072 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
11073 fail.
11074
1f7a61ff
AD
110752003-08-25 Akim Demaille <akim@epita.fr>
11076
11077 Tune local.at so that people can "autom4te -l autotest calc.at -o
11078 calc" for instance, to extract a sub test suite.
11079
11080 * tests/testsuite.at: Move the initialization, Autotest version
11081 requirement, and AT_TESTED invocation into...
11082 * tests/local.at: here.
11083 * tests/testsuite.at: Include it for compatibility with Autoconf
11084 2.57.
11085 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
11086 be ignore.
11087
327b5b56
PE
110882003-08-04 Paul Eggert <eggert@twinsun.com>
11089
11090 Rework code slightly to avoid gcc -Wtraditional warnings.
11091 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
11092 The returned value is now stored in *YY0. All callers changed.
11093 * src/output.c (merge_output): Adjust to the above change.
11094
0051e3ed
PE
110952003-07-26 Paul Eggert <eggert@twinsun.com>
11096
11097 * data/glr.c (YYASSERT): New macro.
11098 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
11099 yyresolveStates, yyprocessOneStack):
11100 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
11101 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 11102
137437c6
PE
111032003-07-25 Paul Eggert <eggert@twinsun.com>
11104
5b620e06
PE
11105 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
11106 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 11107 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
11108 by Frank Heckenbach, though I have omitted the structure-initialization
11109 part of his glr-knr.diff patch since I recall that the Portable
11110 C Compiler didn't require that change.
11111
137437c6
PE
11112 Let the user specify how to allocate and free memory.
11113 Derived from a suggestion by Frank Heckenbach in
161a71f3 11114 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
11115 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
11116 All uses of free, malloc, realloc changed to use these macros,
11117 and unnecessary casts removed.
11118 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
11119
ddb85ca5
PE
111202003-07-06 Matthias Mann <MatthiasMann@gmx.de>
11121
11122 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
11123 use s.empty() rather than s == "" to test for empty string; see
161a71f3 11124 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
11125 (trivial change)
11126
39910e09
AD
111272003-06-25 Akim Demaille <akim@epita.fr>
11128
11129 * config/depcomp, config/install-sh: Update from masters.
11130
0ae99356
PE
111312003-06-20 Paul Eggert <eggert@twinsun.com>
11132
11133 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
11134 and return properly parenthesized result.
11135 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
11136 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
11137 Remove unnecessary parentheses from uses.
11138 * doc/bison.texinfo (Location Default Action): Describe the
11139 conventions for parentheses.
11140
cd05d13c
PE
111412003-06-19 Paul Eggert <eggert@twinsun.com>
11142
81fd08ca
PE
11143 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
11144 yyreportTree): Do not assume that size_t is the same width as int,
11145 when printing sizes. Print sizes using an unsigned format.
11146 Problem reported by Frank Heckenbach in
161a71f3 11147 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 11148
cd05d13c
PE
11149 Port to Forte Developer 7 C compiler.
11150 * data/glr.c (struct YYLTYPE): If locations are not being used,
11151 declare a single dummy member, as empty structs do not conform
11152 to the C standard.
11153 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
11154 the Forte Developer 7 C compiler complains that end-of-loop
11155 code is not reached.
11156
4dcf140b
PE
111572003-06-17 Paul Eggert <eggert@twinsun.com>
11158
11159 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
11160 avoid warnings from picky compilers about redefinition of PARAMS.
11161
8dd76bee
PE
111622003-06-17 Paul Eggert <eggert@twinsun.com>
11163
11164 Version 1.875b.
11165
11166 * NEWS: Document 1.875b.
11167
11168 * lib/bbitset.h: Do not include config.h; that's the includer's job.
11169 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
11170 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
11171 Don't use 'index' in comments, as it's a builtin fn on some hosts.
11172 * lib/bitset_stats.c: Include gettext.h unconditionally, as
11173 per recent gettext manual's suggestion.
11174 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
11175 Use prototypes, not old-style definitions.
11176 * lib/lbitset.c (lbitset_unused_clear): Likewise.
11177 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
11178 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
11179 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
11180 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
11181 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
11182 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
11183 vbitset_or_and_cmp, vbitset_copy): Likewise.
11184
11185 * lib/libiberty.h: Do not include config.h; that's the includer's job.
11186 Do not include <stdlib.h>.
11187 (PARAMS): Define unconditionally for C89.
11188 (ATTRIBUTE_NORETURN): Remove.
11189 (ATTRIBUTE_UNUSED): Define unconditionally.
11190
11191 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 11192 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
11193 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
11194 * lib/vbitset.c, lib/vbitset.h: New files.
11195 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
11196 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
11197 from libbitset.
11198
11199 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
11200 `How Can I Reset @code{yyparse}', since texinfo does not allow
11201 arbitrary @ in node names.
11202
11203 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
11204 shouldn't be needed according to the gettext 0.12.1 documentation
11205 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 11206 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 11207 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 11208 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 11209
8dd76bee
PE
11210 * lib/.cvsignore: Add stdbool.h.
11211 * m4/.cvsignore: Add nls.m4, po.m4.
11212
11213 Upgrade to CVS gnulib.
11214 * stdbool_.h: File renamed from stdbool.h.in.
11215 * configure.ac (AM_STDBOOL_H): Invoke this instead of
11216 AC_HEADER_STDBOOL.
11217 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
11218 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
11219 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
11220 (MOSTLYCLEANFILES): New var.
11221 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
11222 (stdbool.h): New rule.
11223 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
11224 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
11225 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
11226 m4/quote.m4: Upgrade to today's gnulib.
11227
11228 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
11229 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
11230 the tests right now.
11231 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
11232 yyerror are declared before use; C99 requires this.
11233
25005f6a
PH
112342003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11235
11236 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
11237 first.
11238 (yyrecoverSyntaxError): Correct the logic for setting and testing
11239 yyerrState.
11240 Correct comment on handling EOF.
11241 Allow states with only a default reduction, rather than failing
8dd76bee 11242 (I can't quite reconstruct why these were not allowed before).
25005f6a 11243
137437c6 11244 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 11245 buffer overruns, corrupting state.
8dd76bee
PE
11246
11247 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
11248 definition.
11249 * src/reader.h (max_left_semantic_context): New variable declaration.
11250 * src/scan-gram.l (max_left_semantic_context): Define.
11251 (handle_action_dollar): Update max_left_semantic_context.
11252 * data/glr.c (YYMAXLEFT): New definition.
11253 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
11254 (yyresolveAction): Ditto.
11255
11256 Fixes to problems with location handling in GLR parsers reported by
11257 Frank Heckenbach (2003/06/05).
11258
11259 * data/glr.c (YYLTYPE): Make trivial if locations not used.
11260 (YYRHSLOC): Add parentheses, and define only if locations used.
11261 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
11262 locations not used.
11263 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
11264 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 11265
25005f6a
PH
11266 * tests/cxx-type.at: Exercise location information; update tests
11267 to differentiate output with and without locations.
8dd76bee 11268 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
11269 because default YYLTYPE not yet defined.
11270 Change semantic actions to compute strings, rather than printing
11271 them directly (to test proper passing of semantics values). Change
11272 output to prefix notation and update test data and expected results.
11273 (yylex): Track locations.
11274 (stmtMerge): Return value rather than printing, and include arguments
11275 in value.
8dd76bee 11276
711f40b7
PE
112772003-06-03 Paul Eggert <eggert@twinsun.com>
11278
11279 Avoid warnings generated by GCC 2.95.4 when Bison is
11280 configured with --enable-gcc-warnings.
11281 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
11282 yy::]b4_parser_class_name[::translate_,
11283 yy::Stack::operator[] (unsigned),
11284 yy::Stack::operator[] (unsigned) const,
11285 yy::Slice::operator[] (unsigned),
11286 yy::Slice::operator[] (unsigned) const):
11287 Rename local vars to avoid warnings.
11288 * tests/glr-regression.at (Improper handling of embedded actions
11289 and $-N in GLR parsers): Remove unused local variable from yylex.
11290 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
11291 (void) as arg when not pure, since we now assume C89 when building
11292 Bison. Pacify GCC by using parameter.
11293
ac695f7d
PE
112942003-06-02 Paul Eggert <eggert@twinsun.com>
11295
11296 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
11297 yy::Location::lines, yy::Location::columns): Rename arguments
11298 to avoid shadowing; this removes a warning generated by GCC 3.3.
11299
26ec81e0
PE
113002003-06-01 Paul Eggert <eggert@twinsun.com>
11301
11302 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
11303 to g++, as GCC 3.3 complains if you do it.
11304 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
11305 everything that WARNING_CFLAGS has, except omit warnings
11306 not suitable for C++.
11307 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
11308 * tests/atlocal.in (CXXFLAGS): New var.
11309 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
11310
11311 Fix a GLR parser bug I reported in February; see
161a71f3 11312 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
11313 The problem was that GLR parsers did not conform to the C standard,
11314 because actions like { $1 = $2 + $3; } expanded to expressions
11315 that invoked YYFILL in separate subexpressions, and YYFILL assigned
11316 to a local variable. The C standard says that expressions
11317 like (var = f ()) + (var = f ()) have undefined behavior.
11318 Another problem was that GCC sometimes issues warnings that
11319 yyfill and its parameters are unused.
11320
11321 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
11322 as possibly unused.
11323 (yyfill): New function.
11324 (YYFILL): Use it.
11325 (yyuserAction): Change type of yynormal to bool, so that it matches
11326 the new yyfill signature. Mark it as possibly unused.
11327
11328
11329 Follow up on a bug I reported in February, where a Bison-generated
11330 parser can loop. Provide a test case and a fix for yacc.c. I
11331 don't have a fix for lalr1.cc or for glr.c, unfortunately.
11332 The original bug report is in:
161a71f3 11333 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
11334
11335 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
11336 macro's size was becoming unwieldy.
11337 (yyerrlab): Do not discard an empty lookahead symbol, as this
11338 might destroy garbage.
11339 (yyerrorlab): New label, with the old contents of YYERROR,
11340 plus the following change: pop the stack of rhs corresponding
11341 to the production that invoked YYERROR. That is how Yacc
11342 behaves, and POSIX requires this behavior.
11343 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
11344 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
11345 Define 'alarm' to do nothing if unistd.h is not available.
11346 Add a new rule "exp: '-' error;" to test the above change to
11347 data/yacc.c. Use 'alarm' to abort any test taking longer than
11348 10 seconds, as it's probably looping.
11349 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
11350 Also, the new yacc.c generates two fewer diagnostics for an
11351 existing test.
11352
d0829076
PE
113532003-05-24 Paul Eggert <eggert@twinsun.com>
11354
c6ae27df
PE
11355 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
11356 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
11357 This fixes a problem reported by John Bowman when the Compaq/HP
11358 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
11359 -ansi -Wall -gall).
11360 * data/yacc.c (union yyalloc): Likewise.
11361 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 11362
d0829076
PE
11363 Switch from 'int' to 'bool' where that makes sense.
11364
11365 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
11366 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
11367 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
11368 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
11369 Return or accept bool, not int. All callers changed.
11370 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
11371 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
11372 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
11373 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
11374 bitset_or_and_cmp_): Likewise.
11375 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
11376 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
11377 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
11378 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
11379 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
11380 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
11381 bitset_stats_or_and_cmp): Likewise.
11382 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
11383 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
11384 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
11385 ebitset_xor_cmp): Likewise.
11386 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
11387 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
11388 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
11389 lbitset_xor_cmp): Likewise.
11390 * lib/bbitset.h: Include <stdbool.h>.
11391 (struct bitset_vtable): The following members now return bool, not
11392 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
11393 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
11394 or_and_cmp).
11395 * src/conflicts.c (count_rr_conflicts): Likewise.
11396 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
11397 All uses changed.
11398 * lib/ebitset.c (ebitset_obstack_init): Likewise.
11399 * lib/lbitset.c (lbitset_obstack_init): Likewise.
11400 * src/getargs.c (debug_flag, defines_flag, locations_flag,
11401 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11402 graph_flag): Likewise.
11403 * src/getargs.h (debug_flag, defines_flag, locations_flag,
11404 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11405 graph_flag): Likewise.
11406 * src/output.c (error_verbose): Likewise.
11407 * src/output.h (error_verbose): Likewise.
11408 * src/reader.c (start_flag, typed): Likewise.
11409 * src/reader.h (typed): Likewise.
11410 * src/getargs.c (LOCATIONS_OPTION): New constant.
11411 (long_options, getargs): Use it.
11412 * src/lalr.c (build_relations): Use bool, not int.
11413 * src/nullable.c (nullable_compute): Likewise.
11414 * src/print.c (print_reductions): Likewise.
11415 * src/tables.c (action_row, pack_vector): Likewise.
11416 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
11417 * src/output.c (prepare): Use it.
11418 * src/output.c (token_definitions_output,
11419 symbol_destructors_output, symbol_destructors_output): Use string,
11420 not boolean integer, to keep track of whether to output separator.
11421 * src/print_graph.c (print_core): Likewise.
11422 * src/state.c (state_rule_lookaheads_print): Likewise.
11423
11424 * config/install-sh: Sync from automake 1.7.5.
11425
6b2584b7
PE
114262003-05-14 Paul Eggert <eggert@twinsun.com>
11427
11428 * src/parse-gram.y (rules_or_grammar_declaration): Require a
11429 semicolon after a grammar declaration, in the interest of possible
11430 future changes to the Bison input language.
11431 Do not allow a stray semicolon at the start of the grammar.
11432 (rhses.1): Allow one or more semicolons after any rule, including
11433 just before "|" as required by POSIX.
11434 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
11435 grammar.
11436
caf37a36
ADL
114372003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
11438
11439 %parse-param support for lalr1.cc.
11440
11441 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
11442 b4_cc_constructor_calls, b4_cc_constructor_call,
11443 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
11444 definitions.
11445 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
11446 parse-param arguments.
11447 (yy::b4_parser_class_name): Declare instance variables to
11448 hold parse-param arguments.
11449 * tests/calc.at: s/value/semantic_value/ because value clashes
11450 with a member of yy::b4_parser_class_name. Adjust C++ code
11451 to handle %parse-param. Enable %parse-param test in C++.
11452
3ab37077
PE
114532003-05-12 Paul Eggert <eggert@twinsun.com>
11454
11455 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
11456 English a bit. Fix fclose typo. Change "const char" to "char
11457 const", and use ANSI C rather than K&R for "main". Suggest
11458 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
11459 and suggest yy_switch_to_buffer.
11460
114612003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
11462
11463 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
11464 C89. This avoids a diagnostic on compilers that define __STDC__
11465 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 11466 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 11467
e743727f
PE
114682003-05-03 Paul Eggert <eggert@twinsun.com>
11469
11470 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
11471 Do not overrun array bounds.
11472 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 11473 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 11474
916708d5
AD
114752003-04-29 Akim Demaille <akim@epita.fr>
11476
11477 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
11478 * src/getargs.c, src/getargs.h: here, as bool, not int.
11479 (nondeterministic_parser): New.
11480 * src/parse-gram.y, src/scan-gram.l: Support
11481 %nondeterministic-parser.
11482 * src/output.c (prepare): Use nondeterministic_parser instead
11483 of glr_parser where appropriate.
11484 * src/tables.c (conflict_row, action_row, save_row)
11485 (token_actions, token_actions, pack_vector): Ditto.
11486
a06ea4aa
AD
114872003-04-29 Akim Demaille <akim@epita.fr>
11488
11489 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
11490
211074ca
AD
114912003-04-29 Akim Demaille <akim@epita.fr>
11492
11493 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
11494 with %pure-parser and %locations to exercise the patch from Yakov
11495 Markovitch below.
11496
6175ffe3
PE
114972003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
11498
11499 * data/yacc.c: (b4_lex_param): Corrected for the case where
11500 %lex-param is provided and %pure-parser isn't.
11501
b1e95857
PE
115022003-04-27 Paul Eggert <eggert@twinsun.com>
11503
11504 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 11505 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
11506 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
11507 if it is not defined.
11508 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
11509
acda9df6
PE
115102003-04-26 Paul Eggert <eggert@twinsun.com>
11511
3470c57b
PE
11512 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
11513 Declare to be of type suitable for the ninf value itself, not of
11514 type suitable for the corresponding table, since the latter might
11515 be unsigned but the ninf value might be negative. This fixes a
11516 bug reported by Alexandre Duret-Lutz in
161a71f3 11517 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 11518
acda9df6
PE
11519 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
11520 invokes it. We shouldn't invoke it twice because it will attempt
11521 to put error.o in the archive twice. This fixes a glitch reported
11522 by Martin Mokrejs in
161a71f3 11523 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 11524
b5250f26
PE
115252003-04-21 Paul Eggert <eggert@twinsun.com>
11526
11527 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
11528 to gnulib.
11529
089ac0f1
PE
115302003-04-21 Yakov Markovitch <Markovitch@iso.ru>
11531
11532 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
11533 Fix obvious typo that results in uncompilable GLR parsers
11534 when both %pure-parser and %locations are used. (trivial change)
11535
5ededac6
PE
115362003-04-17 Paul Eggert <eggert@twinsun.com>
11537
1b8f2fff
PE
11538 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
11539 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
11540 Do not insert the expected token via unput, as this runs afoul
11541 of a POSIX-compatibility bug in flex 2.5.31.
11542 All uses changed to BEGIN the parent state,
11543 since we no longer insert the expected token via unput.
11544 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
11545 that is no longer emitted after the above change.
11546
5ededac6
PE
11547 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
11548 the first one. This change is from Paul Hilfinger, and it fixes
11549 regression reported by Werner Lemberg in
161a71f3 11550 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
11551
11552 (resolve_sr_conflict): Don't invoke state_errs_set
11553 unless one or more tokens have been explicitly made errors.
11554 Otherwise, the above change causes Bison to abort.
11555
11556 * tests/existing.at (GNU pic Grammar): New test case, taken from
11557 Lemberg's email.
11558
b8be9132
AD
115592003-03-31 Akim Demaille <akim@epita.fr>
11560
11561 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
11562
d423d460
AD
115632003-03-31 Akim Demaille <akim@epita.fr>
11564
11565 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11566 output.
11567
c7e441b4
AD
115682003-03-31 Akim Demaille <akim@epita.fr>
11569
11570 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11571 From Paul Hilfinger.
11572
231897ad
AD
115732003-03-29 Akim Demaille <akim@epita.fr>
11574
11575 * m4/error.m4: Do not put under dynamic conditions some code which
11576 expansion is under static control.
11577
5b066063
AD
115782003-03-29 Akim Demaille <akim@epita.fr>
11579
11580 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11581
22a74fec
AD
115822003-03-29 Akim Demaille <akim@epita.fr>
11583
11584 * doc/bison.texinfo (Strings are Destroyed): New.
11585
0eee27e7
PE
115862003-03-13 Paul Eggert <eggert@twinsun.com>
11587
11588 * .cvsignore: Add configure.lineno.
11589 * src/.cvsignore: Add yacc.
11590 * tests/.cvsignore: Add testsuite.log.
11591 * doc/fdl.texi: Sync with latest FSF version.
11592
f61aad93
PE
115932003-03-12 Paul Eggert <eggert@twinsun.com>
11594
537636c7
PE
11595 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11596 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11597 cursor, instead of leaving it undefined. This fixes a bug
11598 reported by Tim Van Holder in
161a71f3 11599 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
11600 * tests/input.at (Torturing the Scanner): Test the scanner on
11601 an empty input file, which was Tim Van Holder's test case.
11602
11603 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11604 <sys/resource.h> can be included, include sys/time.h and
11605 sys/times.h first, if available. This works around the SunOS
11606 4.1.4 porting bug reported by Bruce Becker in
161a71f3 11607 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
11608
11609 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11610 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11611 AC_HEADER_SYS_WAIT.
11612
f61aad93
PE
11613 Merge changes from gnulib. This was prompted because the CVS
11614 snapshot didn't build on Solaris 7 due to strnlen problems.
11615
11616 These changes need to be merged back into gnulib:
11617 * lib/hash.c: Include <stdbool.h> unconditionally.
11618 * m4/onceonly.m4 (m4_quote): New macro.
11619 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11620 Quote AC_FOREACH variable-expansions properly.
11621 The 2003-01-03 obstack.h change also needs merging.
11622 {end of changes requiring merging}
5b066063 11623
f61aad93
PE
11624 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11625 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11626 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11627 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11628 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11629 New files, imported from gnulib.
11630 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11631 above.
11632
11633 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11634 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11635 gnulib sources.
11636
11637 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11638 Add.
11639 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11640 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11641 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11642 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11643 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11644 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11645 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11646 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11647 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11648 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11649 (jm_PREREQ_ARGMATCH): Remove.
11650 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11651 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11652
11653 * src/system.h: Include <stdbool.h> unconditionally.
11654
11655 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11656 assuming at least C89 in the bitset code for some time now.
11657
d2ffe116
AD
116582003-03-03 Akim Demaille <akim@epita.fr>
11659
11660 * ro.po: New.
11661
052826fd
AD
116622003-03-02 Akim Demaille <akim@epita.fr>
11663
11664 * doc/bison.texinfo (Table of Symbols): Reactivate the
11665 documentation for %lex-param, and %parse-param.
11666
c4749565
AD
116672003-03-02 Akim Demaille <akim@epita.fr>
11668
11669 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11670 generate verbose error messages.
11671 Use the number of tokens as an upper bound in yytname, as it
11672 cannot be a non terminal.
11673
d5286af1
AD
116742003-03-02 Akim Demaille <akim@epita.fr>
11675
11676 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11677 message.
11678
22e304a6
AD
116792003-03-02 Akim Demaille <akim@epita.fr>
11680
22e304a6
AD
11681 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11682 Use them to exercise yycheck overrun.
11683 Based on Andrew Suffield's grammar.
11684
67a25fed
AD
116852003-03-02 Akim Demaille <akim@epita.fr>
11686
11687 Create tests/local.at for Bison generic testing macros.
11688
11689 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11690 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11691 This new file.
11692 * tests/calc.at (AT_CHECK_CALC): Adjust.
11693 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11694 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11695 * tests/local.at: here.
11696 (AT_COMPILE_CXX): Tags the tests using it as c++.
11697 Ignore the test if CXX is not functional.
11698
9c2b381f
PE
116992003-03-01 Paul Eggert <eggert@twinsun.com>
11700
11701 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11702 not loc->end, since loc->end might contain garbage and this leads
11703 to undefined behavior on some platforms.
11704 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11705 depend on *loc, so that the reader doesn't give the the false
11706 impression that *loc is initialized.
11707 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11708 does not survive the return.
11709
0433ba88
AD
117102003-03-01 Akim Demaille <akim@epita.fr>
11711
11712 * src/scan-gram.l (code_start): Always initialize it when entering
11713 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11714 yylex invocation. An alternative would be making it static, but
11715 then it starts with the second %%'s beginning, instead of its end.
11716
b305ea69
PE
117172003-02-28 Paul Eggert <eggert@twinsun.com>
11718
11719 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11720 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 11721 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 11722
c3d25e01
PE
117232003-02-26 Paul Eggert <eggert@twinsun.com>
11724
11725 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11726 Remove Sequent/Pyramid discussion (nobody uses them any more).
11727 Merge VMS and MS-DOS discussion; these ports may well be dead
11728 but let's keep mentioning them for now. Put <> around email
11729 addresses. Add copyright notice.
11730
c267ffbc
PE
117312003-02-24 Paul Eggert <eggert@twinsun.com>
11732
11733 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11734 to avoid collision with flex use of yylineno.
11735 Problem reported by Bruce Lilly in
161a71f3 11736 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
11737 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11738 * data/yacc.c (yy_reduce_print): Likewise.
11739
11740 * config/depcomp: Sync with Automake 1.7.3.
11741
f939fc12
AD
117422003-02-21 Akim Demaille <akim@epita.fr>
11743
11744 * data/lalr1.cc: Use temporary variables instead of casts to
11745 change integer types.
11746 Suggested by Paul Eggert.
11747
95923bd6
AD
117482003-02-21 Akim Demaille <akim@epita.fr>
11749
11750 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11751 to avoid confusions with lalr1.cc's notion of Position.
11752 Suggested by Paul Eggert.
11753
2cdc240e
AD
117542003-02-20 Akim Demaille <akim@epita.fr>
11755
11756 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11757 before initial_columns.
11758 (location.hh): Use consistent variable names when defining the
11759 operator<<.
11760 Use "last" so that we subtract from Positions, not from unsigned.
11761
5d003116
AD
117622003-02-20 Akim Demaille <akim@epita.fr>
11763
11764 * data/lalr1.cc (position.hh): New subfile, including the extended
11765 and Doxygen'ed documentation of class Position.
11766 (location.hh): Use it.
11767 Document a` la Doxygen.
ba1ecc07 11768 With the help of Benoit Perrot.
5d003116 11769
d02b25f9
AD
117702003-02-20 Akim Demaille <akim@epita.fr>
11771
11772 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11773 AT_YACC_IF.
11774 Redefine AT_YYERROR_SEES_LOC_IF using it.
11775 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11776 not defined.
11777 Don't use the location in yy::Parser::error_ and
11778 yy::Parser::print_ when not %locations.
11779 Activate more lalr1.cc tests.
11780
0d1c3a04
AD
117812003-02-19 Akim Demaille <akim@epita.fr>
11782
11783 * data/lalr1.cc: When displaying a line number, be sure to make it
11784 an int.
11785
60a777aa
AD
117862003-02-19 Akim Demaille <akim@epita.fr>
11787
11788 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11789 Remove, useless.
11790 (YYABORT, YYACCEPT, YYERROR): New.
11791 * tests/calc.at: Renable the lalr1.cc test.
11792
0b86fc41
AD
117932003-02-19 Akim Demaille <akim@epita.fr>
11794
11795 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11796 error recovery, mixing with/without pops and discarding of the
11797 lookahead.
11798 Exercise YYERROR.
11799 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11800
da99a5dc
PE
118012003-02-17 Paul Eggert <eggert@twinsun.com>
11802
11803 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11804 * tests/testsuite.at (AT_COMPILE): Use them.
11805 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 11806 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 11807
93b8c255
PE
118082003-02-12 Paul Eggert <eggert@twinsun.com>
11809
11810 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11811 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 11812 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
11813 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11814 Check for malloc failure, for consistency with yacc.c.
11815 (yytname_size): Remove, for consistency with yacc.c.
11816
11817 The bug still remains in data/lalr1.cc, as I didn't have time
11818 to fix it there.
11819
7548fed2
AD
118202003-02-06 Akim Demaille <akim@epita.fr>
11821
11822 * configure.ac (GXX): Rename as...
11823 (CXX): this, to keep the original Autoconf semantics.
11824 Require 2.57.
11825 * data/lalr1.cc: Fix b4_copyright invocations.
11826 If YYDEBUG is not defined, don't depend upon name_ being defined.
11827 (location.hh): Include string and iostream.
11828 (Position::filename): New member.
11829 (Position::Position ()): New.
11830 (operator<< (Position)): New.
11831 (operator- (Position, int)): New.
11832 (Location::first, Location::last): Rename as...
11833 (Location::begin, Location::end): these, to mock the conventional
11834 iterator names.
11835 (operator<< (Location)): New.
11836 * tests/atlocal.in (CXX): New.
11837 * tests/testsuite.at (AT_COMPILE_CXX): New.
11838 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11839 locations in a more synthetic way.
11840 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11841 lalr1.cc is used.
11842 Adjust the C locations to match those from Emacs: first column is
11843 column 0.
11844 Change all the expected results.
11845 Conform to the GCS: simplify the locations when applicable.
11846 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11847 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11848 these CPP macros with the m4 macros new defined by...
11849 (AT_CHECK_PUSHDEFS): this, i.e.:
11850 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 11851 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
11852 New macros.
11853 (AT_CHECK_POPDEFS): Undefine them.
11854 (AT_CHECK_CALC_LALR1_CC): New.
11855 Use it for the first lalr1.cc test.
11856
43a176ef
AD
118572003-02-04 Akim Demaille <akim@epita.fr>
11858
11859 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11860 Location as is defined.
11861
fc049e9c
AD
118622003-02-04 Akim Demaille <akim@epita.fr>
11863
11864 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11865 name_ being defined.
11866
a737b216
PE
118672003-02-03 Paul Eggert <eggert@twinsun.com>
11868
11869 * src/gram.h (start_symbol): Remove unused decl.
11870
11871 Use more-consistent naming conventions for local vars.
11872
11873 * src/derives.c (derives_compute): Change type of local var from
11874 int to rule_number.
11875 * src/gram.c (grammar_rules_partial_print): Likewise.
11876 * src/print.c (print_core): Likewise.
11877 * src/reduce.c (reduce_grammar_tables): Likewise.
11878
11879 * src/gram.c (grammar_dump): Change name of item_number *
11880 local var from r to rp.
11881 * src/nullable.c (nullable_compute): Likewise.
11882
11883 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11884
11885 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11886 for symbol or symbol_number var.
11887 * src/reader.c (grammar_start_symbol_set): Likewise.
11888 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11889 Likewise.
11890 * src/state.c (transitions_to): Likewise.
11891 * src/state.h: Likewise.
11892 * src/tables.c (symbol_number_to_vector_number): Likewise.
11893
11894 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11895 char * var.
11896
11897 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11898 var.
11899
11900 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11901 var.
11902
11903 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11904 Use str, not s, for char * var. Use ch, not c, for character var.
11905 Use size for size var.
11906
11907 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
11908 char * var.
11909 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
11910 uniqstr var.
11911 * src/uniqstr.h: Likewise.
11912
11913 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11914 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11915 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
11916 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
11917 param to have same name as that of enum, so that we don't use
11918 "s" to stand for a non-state.
11919
68e93ad5
AD
119202003-02-02 Akim Demaille <akim@epita.fr>
11921
11922 * src/scan-skel.l: Scan more than one inert character per yylex
11923 invocation.
11924
92898986
PE
119252003-02-01 Paul Eggert <eggert@twinsun.com>
11926
11927 Version 1.875a.
11928
1d9d5d71
PE
11929 * po/LINGUAS: Add ms.
11930
0435d061
AD
119312003-01-30 Akim Demaille <akim@epita.fr>
11932
11933 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
11934
6029a57f
PH
119352003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11936
11937 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
11938 of $1.
0435d061
AD
11939
11940 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 11941 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 11942 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 11943
6029a57f
PH
11944 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
11945 (b4_rhs_location): Ditto.
0435d061 11946 (yyfill): New function to copy from stack tree into array
6029a57f 11947 incrementally.
0435d061
AD
11948 (yyuserAction): Modify to allow incremental move of semantic values
11949 to rhs array when in GLR mode.
11950 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
11951 as needed.
11952 Remove dummy use of yystack, as there is now a guaranteed use.
11953 (yydoAction): Modify to allow incremental move of semantic values
11954 to rhs array when in GLR mode.
11955 (yyresolveAction): Ditto.
11956 (yyglrShiftDefer): Update comment.
0435d061 11957 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
11958 (yyglrReduce): Ditto.
11959 (yydoAction): Ditto
0435d061 11960
6029a57f
PH
11961 * tests/glr-regr1.at: Rename to ...
11962 * tests/glr-regression.at: Add new regression test for the problems
11963 described above (adapted from S. Eken).
11964 Update copyright notice.
11965 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
11966 * tests/Makefile.am: Ditto.
11967
6cee6297
PE
119682003-01-28 Paul Eggert <eggert@twinsun.com>
11969
11970 * data/lalr1.cc: Do not use @output_header_name@ unless
11971 b4_defines_flag is set. This fixes two bugs reported by
11972 Tim Van Holder in
161a71f3
PE
11973 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
11974 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 11975
b2a836b5
PE
119762003-01-21 Paul Eggert <eggert@twinsun.com>
11977
11978 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
11979 we don't need to worry about yyerrlab1 being reported as an
11980 "unused label" by non-GCC C compilers. The downside is that if
11981 locations are used then a couple of statements are duplicated each
11982 time YYERROR is invoked, but the upside is that the warnings
11983 should vanish.
11984 (yyerrlab1): Move code to YERROR.
11985 (yyerrlab2): Remove. Change uses back to yyerrlab1.
11986 This reverts some of the 2002-12-27 change.
11987
4196b931
PE
119882003-01-17 Paul Eggert <eggert@twinsun.com>
11989
11990 * src/output.c (symbol_printers_output): Fix typo that led
11991 to core dump. Problem reported by Antonio Rus in
161a71f3 11992 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 11993
3ae831b4
AD
119942003-01-13 Akim Demaille <akim@epita.fr>,
11995 Quoc Peyrot <chojin@lrde.epita.fr>,
11996 Robert Anisko <anisko_r@lrde.epita.fr>
11997
11998 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
11999 when the stacks contain one element, as the loop would otherwise
12000 free the last state, and then use the top state (the one we just
12001 popped). This means that the initial elements will not be freed
12002 explicitly, as is the case in yacc.c; it is not a problem, as
12003 these elements have fake values.
12004
e3aa65c5
PE
120052003-01-11 Paul Eggert <eggert@twinsun.com>
12006
12007 * NEWS: %expect-violations are now just warnings, reverting
12008 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
12009 bootstrapping problem reported by Matthias Klose; see
161a71f3 12010 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
12011 * src/conflicts.c (conflicts_print): Likewise.
12012 * tests/conflicts.at (%expect not enough, %expect too much,
12013 %expect with reduce conflicts): Likewise.
12014 * doc/bison.texinfo (Expect Decl): Document this. Also mention
12015 that the warning is enabled if the number of conflicts changes
12016 (not necessarily increases).
12017
12018 * src/getargs.c (version): Update copyright year.
12019
f0057011
AD
120202003-01-09 Akim Demaille <akim@epita.fr>
12021
12022 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
12023
1ee6d2a0
PE
120242003-01-08 Paul Eggert <eggert@twinsun.com>
12025
12026 * Makefile.maint (WGETFLAGS):
12027 New macro, containing "-C off" to disable proxy caches.
12028 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
12029 (rel-check): Use $(WGET) instead of wget.
12030
d4fd77c4
PE
120312003-01-06 Paul Eggert <eggert@twinsun.com>
12032
12033 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
12034 the GLR paper of Scott, Johnstone and Hussain.
12035
464c6927
PE
120362003-01-04 Paul Eggert <eggert@twinsun.com>
12037
d600ee67
PE
12038 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
12039 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
12040 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
12041 (EXTRA_LIBRARIES): New var, for liby.a.
12042 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
12043 (EXTRA_SCRIPTS): New var, for yacc.
12044
464c6927
PE
12045 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
12046 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
12047 Problem reported by Nelson H. F. Beebe.
12048
120492003-01-03 Paul Eggert <eggert@twinsun.com>
12050
12051 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
12052 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
12053 when compiling Bison 1.875's `bitset bset = obstack_alloc
12054 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
12055
12056 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
12057 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
12058 grow to a huge size with typical invocation.
d600ee67 12059
464c6927
PE
12060 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
12061 Use the pattern recommended by Autoconf 2.57, except also protect
12062 against double-definition.
12063 * src/system.h: Likewise.
12064 Portability issues reported by Nelson H. F. Beebe.
d600ee67 12065
464c6927
PE
12066 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
12067 All uses changed. Provide a definition in both C and C++.
12068 (yytrue, yyfalse): Define even if defined (__cplusplus).
12069
12070 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
12071 Reported by Nelson H. F. Beebe.
d600ee67 12072
464c6927
PE
12073 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
12074
0f42c7d5
PE
120752003-01-02 Paul Eggert <eggert@twinsun.com>
12076
12077 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
12078 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
12079 Bug reported by Nelson H. F. Beebe.
12080
dc546b0f
PE
120812003-01-01 Paul Eggert <eggert@twinsun.com>
12082
12083 * Version 1.875.
12084
2c09b6a7
PE
120852002-12-30 Paul Eggert <eggert@twinsun.com>
12086
12087 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
12088 Moved here from...
12089 (<INITIAL>","): Here. This causes stray "," to be treated
12090 more uniformly.
12091
dc546b0f 12092 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
12093 last brace in braced code when not in Yacc mode, for compatibility
12094 with Bison 1.35. This resurrects the 2001-12-15 patch to
12095 src/reader.c.
12096
12097 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
12098 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
12099
535c0f63
PE
121002002-12-28 Paul Eggert <eggert@twinsun.com>
12101
12102 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
12103 that of SYM's type. This fixes Debian bug 168069, reported by
12104 Thomas Olsson.
d600ee67 12105
963fcc17
PE
121062002-12-28 Paul Eggert <eggert@twinsun.com>
12107
12108 Version 1.75f.
12109
12110 Switch back to the Yacc style of conflict reports, undoing some
12111 of the 2002-07-30 change.
12112 * doc/bison.texinfo (Understanding): Use Yacc style for
12113 conflict reports. Also, use new way of locating rules.
12114 * src/conflicts.c (conflict_report):
12115 Renamed from conflict_report_yacc, removing the old
12116 'conflict_report'. Translate the entire conflict report at once,
12117 so that we don't assume that "," has the same interpretation in
12118 all languages.
12119 (conflicts_output): Use Yacc-style conflict report for each state,
12120 instead of our more-complicated style.
12121 (conflicts_print): Use Yacc-style conflict report, except print
12122 the input file name when not emulating Yacc.
12123 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
12124 Conflicted Reduction, %expect not enough, %expect too much,
12125 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
12126 * tests/existing.at (GNU Cim Grammar): Likewise.
12127 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
12128
12129 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
12130 fatal): Don't invoke fflush; it's not needed and it might even be
12131 harmful for stdout, as stdout might not be open.
12132 * src/reduce.c (reduce_print): Likewise.
12133
b1efe548
PE
121342002-12-27 Paul Eggert <eggert@twinsun.com>
12135
12136 Fix a bug where error locations were not being recorded correctly.
12137 This problem was originally reported by Paul Hilfinger in
161a71f3 12138 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
12139
12140 * data/yacc.c (yyparse): New local var yylerrsp, to record the
12141 top of the location stack's error locations.
12142 (yyerrlab): Set it. When discarding a token, push its location
12143 onto yylerrsp so that we don't lose track of the error's end.
12144 (yyerrlab1): Now is only the target of YYERROR, so that we can
12145 properly record the location of the action that failed. For GCC
12146 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
12147 GCC warning about yyerrlab1 being unused if YYERROR is unused.
12148 (yyerrlab2): New label, which yyerrlab now falls through to.
12149 Compute the error's location by applying YYLLOC_DEFAULT to
12150 the locations of all the symbols that went into the error.
12151 * doc/bison.texinfo (Location Default Action): Mention that
12152 YYLLOC_DEFAULT is also invoked for syntax errors.
12153 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
12154 Error locations include the locations of all the tokens that were
12155 discarded, not just the last token.
d600ee67 12156
983c5c2c
PE
121572002-12-26 Paul Eggert <eggert@twinsun.com>
12158
b1efe548
PE
12159 * src/files.c: Include quote.h.
12160 (compute_output_file_names): Warn if we detect conflicting
12161 outputs to the same file. This should catch the misunderstanding
12162 exemplified by Debian Bug 165349, reported by Bruce Stephens..
12163
12164 * src/conflicts.c (conflicts_print): If the user specifies
12165 "%expect N", report an error if there are any reduce/reduce
12166 conflicts. This is what the manual says should happen.
12167 This fixes Debian bug 130890, reported by Anthony DeRobertis.
12168 * tests/conflicts.at (%expect with reduce conflicts): New test.
12169
983c5c2c
PE
12170 Don't use m4_include on relative file names, as it doesn't work as
12171 desired if there happens to be a file with that name under ".".
d600ee67 12172
983c5c2c
PE
12173 * m4sugar/version.m4: Remove; it was included but it wasn't used.
12174 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
12175 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
12176 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
12177 * src/output.c (output_skeleton): Use full path names when
12178 specifying a file to include; don't rely on include path, as
12179 it's unreliable when the working file contains a file with
12180 that name.
d600ee67 12181
983c5c2c
PE
121822002-12-25 Paul Eggert <eggert@twinsun.com>
12183
12184 Remove obsolete references to bison.simple and bison.hairy.
12185 Problem mentioned by Aubin Mahe in
161a71f3 12186 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
12187 * data/glr.c: Comment fix.
12188 * doc/bison.1: Remove references. Also, mention "yacc".
12189
12190 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
12191 with -g option.
12192
12193 * src/parse-gram.y (declaration): Use enum "report_states" rather
12194 than its numeric value 1.
12195
12196 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
12197 opening a new one. This fixes Debian bug 165349, reported by
12198 Bruce Stephens.
12199
23f2d9dc
PE
122002002-12-24 Paul Eggert <eggert@twinsun.com>
12201
12202 Version 1.75e.
12203
12204 * Makefile.maint (cvs-update): Don't assume that the shell
12205 supports $(...), as Solaris sh doesn't.
12206
12207 * src/parse-gram.y (lloc_default): Remove test for empty
12208 nonterminals at the end, since it didn't change the result.
12209
122102002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
12211
12212 If the user does not define YYSTYPE as a macro, Bison now declares it
12213 using typedef instead of defining it as a macro. POSIX requires this.
12214 For consistency, YYLTYPE is also declared instead of defined.
12215
12216 %union directives can now have a tag before the `{', e.g., the
12217 directive `%union foo {...}' now generates the C code
12218 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
12219 The default union tag is `YYSTYPE', for compatibility with Solaris 9
12220 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
12221 instead of `yyltype'.
12222
12223 `yystype' and `yyltype' are now obsolescent macros instead of being
12224 typedefs or tags; they are no longer documented and will be
12225 withdrawn in a future release.
12226
12227 * data/glr.c (b4_location_type): Remove.
12228 (YYSTYPE): Renamed from yystype.
12229 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
12230 (struct YYLTYPE): Renamed from struct yyltype.
12231 (YYLTYPE): Renamed from yyltype.
12232 (yyltype, yystype): New (and obsolescent) macros,
12233 for backward compatibility.
12234 * data/yacc.c: Likewise.
12235
12236 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
12237 does not specify a union tag. This is for compatibility with
12238 Solaris 9 yacc.
12239
12240 * src/parse-gram.y (add_param): 2nd arg is now char * not char
12241 const *, since it is now modified by stripping surrounding { }.
12242 (current_braced_code): Remove.
12243 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
12244 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
12245 trailing " {...}". Now of type <chars>.
12246 (grammar_declaration): Adjust to bundled tokens.
12247 (code_content): Remove; stripping is now done by add_param.
12248 (print_token_value): Print contents of bundled tokens.
12249 (token_name): New function.
12250
12251 * src/reader.h (braced_code, current_braced_code): Remove.
12252 (token_name): New decl.
12253
12254 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
12255 token_type, not braced_code code_kind. All uses changed.
12256 (SC_PRE_CODE): New state, for scanning after a keyword that
12257 has (or usually has) an immediately-following braced code.
12258 (token_type): New local var, to keep track of which token type
12259 to return when scanning braced code.
12260 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 12261 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
12262 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
12263 instead of returning a token type immediately.
12264 (<INITIAL>"{"): Set token type.
12265 (<SC_BRACED_CODE>"}"): Use it.
12266 (handle_action_dollar, handle_action_at): Now returns bool
12267 indicating success. Fail if ! current_rule; this prevents a core dump.
12268 (handle_symbol_code_dollar, handle_symbol_code_at):
12269 Remove; merge body into caller.
12270 (handle_dollar, handle_at): Complain in invalid contexts.
12271
12272 * NEWS, doc/bison.texinfo: Document the above.
12273 * NEWS: Fix years and program names in copyright notice.
12274
879ca4f8
PE
122752002-12-17 Paul Eggert <eggert@twinsun.com>
12276
12277 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
12278 Reporting, Table of Symbols): Omit mentions of %lex-param and
12279 %parse-param from the documentation for now.
12280
1c5fe69d
PE
122812002-12-15 Paul Eggert <eggert@twinsun.com>
12282
12283 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
12284 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
12285 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
12286 disagreed with the Bison documentation. Bug
12287 reported by Andrew Walrond.
d600ee67 12288
1c5fe69d
PE
12289 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
12290 as the caller now does that.
12291 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
12292 (YYEMPTY): Parenthesize right hand side, since others use it.
12293 (yyparse): Don't assume that our generated code is the only code
12294 that sets yychar.
12295
d1de5372
PE
122962002-12-13 Paul Eggert <eggert@twinsun.com>
12297
12298 Version 1.75d.
12299
12300 POSIX requires a "yacc" command.
12301 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
12302 (MOSTLYCLEANFILES): Add yacc.
12303 (yacc): New rule.
1c5fe69d 12304 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
12305 as an alias for bison y.
12306
12307 * po/LINGUAS: Add da.
d600ee67 12308
d1de5372
PE
12309 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
12310 problem with latest <getopt.h>.
12311 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
12312
12313 * doc/fdl.texi: Upgrade to 1.2.
12314 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
12315 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
12316 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
12317 gnulib.
12318 * config/install-sh: Sync with autotools.
12319
12320 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 12321 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
12322 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
12323 locations are requested.
12324 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
12325 locations are requested.
12326
d0f3fe23
PE
123272002-12-12 Paul Eggert <eggert@twinsun.com>
12328
12329 Remove unportable casts and storage allocation tricks.
12330 While we're at it, remove almost all casts, since they
12331 usually aren't needed and are a sign of trouble.
12332
12333 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
12334
12335 * src/derives.c (derives_compute): Do not subtract NTOKENS from
12336 the pointer DSET returned by malloc; this isn't portable.
12337 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
12338 Similarly for DERIVES.
12339 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
12340 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
12341 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
12342
12343 * src/derives.c (derives_compute): Do not bother invoking
12344 int_of_rule_number, since rule numbers are integers.
12345
12346 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
12347 rather than XMALLOC (char, N).
12348
12349 * src/files.c (filename_split): Rewrite to avoid cast.
12350
12351 * src/gram.h (symbol_number_as_item_number,
12352 item_number_as_symbol_number, rule_number_as_item_number,
12353 item_number_as_rule_number):
12354 Now inline functions rather than macros, to avoid casts.
12355 * src/state.h (state_number_as_int): Likewise.
12356 * src/tables.c (state_number_to_vector_number,
12357 symbol_number_to_vector_number): Likewise.
12358
12359 * src/gram.h (int_of_rule_number): Remove; no longer used.
12360
12361 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
12362 since the resulting storage is always stored into.
12363
12364 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
12365 where it's needed.
12366
12367 * src/muscle_tab.c (muscle_m4_output):
12368 Now inline. Return bool, not int.
12369 * src/state.c (state_compare): Likewise.
12370 * src/symtab.c (symbol_check_defined,
12371 symbol_check_alias_consistency, symbol_pack, symbol_translation,
12372 hash_compare_symbol, hash_symbol):
12373 Likewise.
12374 * src/uniqstr.c (uniqstr_print): Likewise.
12375 * src/muscle_tab.c (muscle_m4_output_processor):
12376 New function, to avoid casts.
12377 * src/state.c (state_comparator, stage_hasher): Likewise.
12378 * src/symtab.c (symbol_check_defined_processor,
12379 symbol_check_alias_consistency_processor, symbol_pack_processor,
12380 symbol_translation_processor, hash_symbol_comparator,
12381 hash_symbol_hasher): Likewise.
12382 * src/uniqstr.c (uniqstr_print_processor): Likewise.
12383 * src/muscle_tab.c (muscles_m4_output):
12384 Use new functions instead of casting old functions unportably.
12385 * src/state.c (state_hash_new): Likewise.
12386 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
12387 symbols_token_translations_init):
12388 Likewise.
12389 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
12390
12391 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
12392 var instead of casting to long, to avoid casts.
12393 (prepare_states): Use MALLOC rather than alloca, so that we don't
12394 have to worry about alloca.
12395 * src/state.c (state_hash_lookup): Likewise.
12396
12397 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
12398 local var instead of casting to unsigned char, to avoid casts.
12399
12400 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
12401 STATE_ALLOC): Remove.
12402 (transitions_new, errs_new, reductions_new, state_new): Use malloc
12403 rather than calloc, and use offsetof to avoid allocating slightly
12404 too much storage.
12405 (state_new): Initialize all members.
12406
12407 * src/state.c (state_hash): Use unsigned accumulator, not signed.
12408
12409 * src/symtab.c (symbol_free): Remove; unused.
12410 (symbol_get): Remove cast in lhs of assignment.
12411 (symbols_do): Now static. Accept generic arguments, not
12412 hashing-related ones.
12413
12414 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
12415 (symbol_processor): Remove.
12416 (symbols_do): Remove decl; now static.
12417
12418 * src/system.h (alloca): Remove; decl no longer needed.
12419 (<stddef.h>): Include, for offsetof.
12420 (<inttypes.>, <stdint.h>): Include if available.
12421 (uintptr_t): New type, if system lacks it.
12422 (CALLOC, MALLOC, REALLOC): New macros.
12423 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
12424 new macros.
12425
12426 * src/tables.c (table_size): Now int, to pacify GCC.
12427 (table_grow, table_ninf_remap): Use signed table size.
12428 (save_row): Don't bother initializing locals when not needed.
12429 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
12430 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
12431
12432 * src/vcg.h: Correct misspellings.
12433
12434 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
12435
12436
12437 * src/getargs.c (getargs): Don't assume EOF == -1.
12438
26b4a969
PE
124392002-12-09 Paul Eggert <eggert@twinsun.com>
12440
12441 Change identifier spellings to avoid collisions with names
12442 that are reserved by POSIX.
12443
12444 Don't use names ending in _t, since POSIX reserves them.
12445 For consistency, remove _e and _s endings -- they're weren't
12446 needed to remove ambiguity. All uses changed.
12447 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
12448 turn was just renamed from struniq_t.
12449 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
12450 which in turn was just renamed from struniq_processor_t.
12451 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
12452 in turn was renamed from hash_compare_struniq_t.
12453 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
12454 (state_list): Renamed from state_list_t.
12455 * src/assoc.h (assoc): Renamed from assoc_t.
12456 * src/conflicts.c (enum conflict_resolution): Renamed from
12457 enum conflict_resolution_e.
12458 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
12459 (rule_list): Renamed from rule_list_t.
12460 * src/getargs.h (enum trace): Renamed from enum trace_e.
12461 (enum report): Renamed from enum report_e.
12462 * src/gram.h (item_number): Renamed from item_number_t.
12463 (rule_number): Renamed from rule_number_t.
12464 (struct rule_s): Remove the "rule_s" part; not used.
12465 (rule): Renamed from rule_t.
12466 (rule_filter): Renamed from rule_filter_t.
12467 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
12468 (goto_list): Renamed from goto_list_t.
12469 * src/lalr.h (goto_number): Renamed from goto_number_t.
12470 * src/location.h (location): Renamed from location_t.
12471 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
12472 and moved here from:
12473 * src/muscle_tab.h (muscle_entry_t): here.
12474 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
12475 (rule_list): Renamed from rule_list_t.
12476 * src/print_graph.c (static_graph): Renamed from graph.
12477 * src/reader.h (braced_code): Renamed from braced_code_t.
12478 Remove brace_code_e tag.
12479 * src/relation.h (relation_node): Renamed from relation_node_t.
12480 (relation_nodes): Renamed from relation_nodes_t.
12481 (relation): Renamed from relation_t.
12482 * src/state.h (state_number): Renamed from state_number_t.
12483 (struct state): Renamed from struct state_s.
12484 (state): Renamed from state_t.
12485 (transitions): Renamed from transitions_t. Unused (and
12486 misspelled) transtion_s tag removed.
12487 (errs): Renamed from errs_t. Unused errs_s tag removed.
12488 (reductions): Renamed from reductions_t. Unused tag
12489 reductions_s removed.
12490 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
12491 (struct symbol_list): Renamed from struct symbol_list_s.
12492 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
12493 (struct symbol): Renamed from struct symbol_s.
12494 (symbol): Renamed from symbol_t.
12495 * src/tables.c (vector_number): Renamed from vector_number_t.
12496 (action_number): Renamed from action_t.
12497 * src/tables.h (base_number): Renamed from base_t.
12498 * src/vcg.h (enum color): Renamed from enum color_e.
12499 (enum textmode): Renamed from enum textmode_e.
12500 (enum shape): Renamed from enum shape_e.
12501 (struct colorentry): Renamed from struct colorentry_s.
12502 (struct classname): Renamed from struct classname_s.
12503 (struct infoname): Renamed from struct infoname_s.
12504 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
12505 (enum decision): Renamed from enum decision_e.
12506 (enum orientation): Renamed from enum orientation_e.
12507 (enum alignment): Renamed from enum alignment_e.
12508 (enum arrow_mode): Renamed from enum arrow_mode_e.
12509 (enum crossing_type): Renamed from enum crossing_type_e.
12510 (enum view): Renamed from enum view_e.
12511 (struct node): Renamed from struct node_s.
12512 (node): Renamed from node_t.
12513 (enum linestyle): Renamed from enum linestyle_e.
12514 (enum arrowstyle): Renamed from enum arrowstyle_e.
12515 (struct edge): Renamed from struct edge.
12516 (edge): Renamed from edge_t.
12517 (struct graph): Renamed from struct graph_s.
12518 (graph): Renamed from graph_t.
12519 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
12520 Rename value_t -> value.
12521 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
12522 value_t_as_yystype -> value_as_yystype.
12523
12524 Don't include <errno.h> in the mainstream code, since it
12525 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
12526 * lib/get-errno.c, lib/get-errno.h: New files.
12527 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
12528 get-errno.c.
12529 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
12530 * src/output.c (output_skeleton): Likewise.
12531 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
12532 instead of errno.
12533 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
12534 Likewise.
12535 (handle_action_dollar, handle_action_at): Likewise.
12536 * src/system.h: Do not include <errno.h>.
12537 (TAB_EXT): Renamed from EXT_TAB.
12538 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
12539
12540 Avoid str[a-z]*, since <string.h> reserves that name space.
12541 Change all instances of "struniq" in names to "uniqstr", and
12542 likewise for "STRUNIQ" and "UNIQSTR".
12543 * src/uniqstr.c: Renamed from src/struniq.c.
12544 * src/uniqstr.h: Renamed from src/struniq.h.
12545 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
12546 * src/files.c (strsuffix): Remove; unused.
12547 (concat2): Renamed from stringappend. Now static.
12548 * src/files.h (strsuffix, stringappend): Remove; unused.
12549 * src/parse-gram.y (<chars>): Renamed from <string>.
12550 (<uniqstr>): Renamed from <struniq>.
12551 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
12552 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
12553 (struct graph_s.expand): Renamed from struct graph_s.stretch.
12554 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
12555 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
12556 (N_EXPAND): Renamed from N_STRETCH.
12557
12558 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
12559 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
12560 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
12561 Remove; unused.
12562 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
12563 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12564 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12565 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12566 (BASE_MAXIMUM): Renamed from BASE_MAX.
12567 (BASE_MINIMUM): Renamed from BASE_MIN.
12568 (ACTION_MAX): Remove; unused.
12569 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12570 Unnecessary casts removed from above defines.
12571
12572
12573 Fix misspelling in names.
12574 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12575 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12576 G_NODE_ALIGNEMENT.
12577
12578
12579 * lib/timevar.c (timevar_report): Renamed from time_report,
12580 for consistency with other names.
12581 * lib/timevar.h (timevar_report): New decl.
12582 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12583
12584
12585 Sort include-file uses.
12586
12587 Reorder all include files under src to be in the order "system.h".
12588 then the ../lib include files in angle brackets (alphabetized),
12589 then the . include files in double-quotes (alphabetized). Fix
12590 dependency breakages encountered in this process, as follows:
12591 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12592 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12593 * src/state.h: Include "symtab.h".
12594
996b1c7e
PE
125952002-12-08 Paul Eggert <eggert@twinsun.com>
12596
12597 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12598 since this causes problems when __file__ contains character
12599 sequences like "@" that are treated specially by src/scan-skel.l.
12600 Instead, just use the file's basename. This fixes the bug
12601 reported by Martin Mokrejs in
161a71f3 12602 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 12603
e19c4e5d
PE
126042002-12-06 Paul Eggert <eggert@twinsun.com>
12605
12606 Add support for rules that do not have trailing semicolons, as
12607 POSIX requires. Improve the quality of locations in Bison
12608 diagnostics.
26b4a969 12609
e19c4e5d
PE
12610 * src/location.c: Include <quotearg.h>.
12611 (empty_location): Now const.
12612 (location_print): New function. Follow the recommendation of the
12613 GNU Coding Standards for locations that span file boundaries.
12614 * src/location.h: Do not include <quotearg.h>; no longer needed.
12615 (boundary): New type.
12616 (location_t): Use it. This allows locations to span file boundaries.
12617 All member uses changed: file -> start.file or end.file (as needed),
12618 first_line -> start.line, first_column -> start.column,
12619 last_line -> end.line, last_column -> end.column.
12620 (equal_boundaries): New function.
12621 (LOCATION_RESET, LOCATION_STEP): Remove.
12622 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12623 (empty_location): Now const.
12624 (location_print): New decl.
12625 * src/parse-gram.y (lloc_default): New function, which handles
12626 empty locations more accurately.
12627 (YYLLOC_DEFAULT): Use it.
12628 (%token COLON): Remove.
12629 (%token ID_COLON): New token.
26b4a969 12630 (rules): Use it.
e19c4e5d
PE
12631 (declarations, rules): Remove trailing semicolon.
12632 (declaration, rules_or_grammar_declaration):
12633 Allow empty (";") declaration.
12634 (symbol_def): Remove empty actions; no longer needed.
12635 (rules_or_grammar_declaration): Remove trailing semicolon.
12636 (semi_colon.opt): Remove.
12637 * src/reader.h: Include location.h.
12638 (scanner_cursor): New decl.
12639 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12640 rolling our own.
12641 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12642 of *loc.
12643 (STEP): Remove. No longer needed, now that adjust_location does
12644 the work. All uses removed.
12645 (scanner_cursor): New var.
12646 (adjust_location): Renamed from extend_location. It now sets
12647 *loc and adjusts the scanner cursor. All uses changed.
12648 Don't bother testing for CR.
12649 (handle_syncline): Remove location arg; now updates scanner cursor.
12650 All callers changed.
12651 (unexpected_end_of_file): Now accepts start boundary of token or
12652 comment, not location. All callers changed. Update scanner cursor,
12653 not the location.
12654 (SC_AFTER_IDENTIFIER): New state.
12655 (context_state): Renamed from c_context. All uses changed.
12656 (id_loc, code_start, token_start): New local vars.
12657 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12658 processing of Yacc white space and equivalents here.
12659 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12660 instead of returning ID immediately, since we need to search for
12661 a subsequent colon.
12662 (<INITIAL>"'", "\""): Save token_start.
12663 (<INITIAL>"%{", "{", "%%"): Save code_start.
12664 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12665 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12666 BEGIN context_state at end, not INITIAL.
12667 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12668 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12669 Return correct token start.
12670 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12671 the start of a character, string or multiline comment is found.
12672 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12673 Reduction): Adjust reported locations to match the more-precise
12674 results now expected.
12675 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12676 * tests/reduce.at (Useless Rules, Reduced Automaton,
12677 Underivable Rules): Likewise.
12678 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12679 or "|"' now that so many other tokens are allowed by the new grammar.
12680
12681 * src/complain.h (current_file): Remove duplicate decl;
12682 current_file is now owned by files.h.
12683 * src/complain.c, src/scan-gram.l: Include files.h.
12684
126852002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 12686
e19c4e5d
PE
12687 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12688 promotes to int; it might be unsigned int.
12689 * data/yacc.c (yy_reduce_print): Likewise.
12690
12691 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12692 be #defined in the prologue, not in the Bison declarations.
12693 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 12694
b64755e3
PE
126952002-12-02 Paul Eggert <eggert@twinsun.com>
12696
12697 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12698 * lib/strtoul.c: New file, from gnulib.
12699 This fixes a porting bug reported by Peter Klein in
161a71f3 12700 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 12701
6e746484
PE
127022002-11-30 Paul Eggert <eggert@twinsun.com>
12703
b64755e3
PE
12704 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12705 and put only a forward declaration in the prologue. This is for
12706 consistency with the other scanner helper functions.
12707
6ba55592
PE
12708 Type clashes now generate warnings, not errors, since it
12709 appears that POSIX may allow some grammars with type clashes.
12710 * src/reader.c (grammar_current_rule_check): Warn about
12711 type clashes instead of complaining.
12712 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12713
6e746484
PE
12714 Add Yacc library, since POSIX requires it.
12715 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12716 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12717 * lib/main.c, lib/yyerror.c: New files.
12718
12719 gram_error can be static; it need not be extern.
12720 * src/reader.h (gram_error): Remove decl.
12721 * src/parse-gram.y (gram_error): Now static. Add static decl.
12722 (print_token_value): Omit parameter names from forward decl,
12723 for consistency.
12724
88510f9c
PE
127252002-11-29 Paul Eggert <eggert@twinsun.com>
12726
6e746484
PE
12727 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12728 be declared before being used. E.g., one should typically
12729 declare them in the prologue. Use GNU coding style in examples.
12730 Put "const" consistently after the type it modifies. Mention
12731 that C99 supports "inline". Mention that yyerror traditionally
12732 returns "int".
12733
88510f9c
PE
12734 %parse-param and %lex-param now take just one argument, the
12735 declaration; the argument name is deduced from the declaration.
12736
12737 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12738 Reporting, Table of Symbols): Document this.
12739 * src/parse-gram.y (add_param): New function.
12740 (COMMA): Remove.
12741 (declaration): Implement new rule for %parse-param and %lex-param.
12742 * src/scan-gram.l: "," now elicits a warning, rather than being
12743 a token; this is more compatible with byacc.
12744 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12745
bb92250c
PE
127462002-11-27 Paul Eggert <eggert@twinsun.com>
12747
12748 Rename identifiers to avoid real and potential collisions.
12749
12750 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12751 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 12752 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
12753 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12754 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12755 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12756 All uses changed.
12757 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12758 The name "yycontrol" violates the name space rules, and this stuff
12759 wasn't being used anyway.
12760 (input): Remove action; this stuff wasn't being used.
12761 (gram_error): Rename local variable yylloc -> loc.
12762 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12763 (YY_DECL): Don't use "yy" at start of local variables.
12764 All uses changed, e.g., yylloc -> loc.
12765 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12766 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12767 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12768 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12769
12770 * src/parse-gram.y (gram_error): loc is now const *.
12771 * src/reader.h (gram_error): Likewise.
12772
3af4feb2
PE
127732002-11-24 Paul Eggert <eggert@twinsun.com>
12774
12775 Version 1.75c.
12776
12777 * tests/actions.at (Actions after errors): Use an output format
12778 more similar to that of the Printers and Destructors test.
12779 Test the position of the ';' token too.
12780 (Printers and Destructors): Likewise.
12781 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12782 unnecessarily alarming people when the test fails.
12783
12784 * data/yacc.c (yyerrlab1): Move this label down, so that the
12785 parser does not discard the lookahead token if the user code
12786 invokes YYERROR. This change is required for POSIX conformance.
12787
12788 * lib/error.c: Sync with gnulib.
12789
127902002-11-22 Paul Eggert <eggert@twinsun.com>
12791
12792 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12793 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12794 * lib/xmalloc.c: Likewise.
26b4a969 12795
58004308
PE
127962002-11-20 Paul Eggert <eggert@twinsun.com>
12797
12798 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12799
128002002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 12801
58004308
PE
12802 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12803 should use `if (! x) abort ();' rather than `assert (x);', and
12804 anyway it's one less thing to worry about configuring.
12805
12806 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12807 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12808 and replace all instances of assert with abort.
12809 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12810 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12811
12812 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12813 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12814 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12815 hash_find_entry, hash_rehash, hash_insert): Likewise.
12816 * src/conflicts.c (resolve_sr_conflict): Likewise.
12817 * src/lalr.c (set_goto_map, map_goto): Likewise.
12818 * src/nullable.c (nullable_compute): Likewise.
12819 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12820 * src/reader.c (packgram, reader): Likewise.
12821 * src/state.c (state_new, state_free, state_transitions_set,
12822 state_reduction_find): Likewise.
12823 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12824 symbol_pack): Likewise.
12825 * src/tables.c (conflict_row, pack_vector): Likewise.
12826 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12827 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12828 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12829 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12830
12831 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12832 (ARGMATCH_CONSTRAINT): New macro.
12833 (ARGMATCH_ASSERT): Use it.
12834
12835 * src/system.h (verify): New macro.
12836 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12837 rather than assert.
12838 * src/tables.c (tables_generate): Likewise.
12839
12840 * src/struniq.c (struniq_assert): Now returns void, and aborts
12841 if the assertion is false.
12842 (struniq_assert_p): Remove.
12843 * src/struniq.h: Likewise.
12844
76ae8198
PE
128452002-11-18 Paul Eggert <eggert@twinsun.com>
12846
12847 * data/glr.c (yygetLRActions): Replace `yyindex' with
12848 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12849 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 12850 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 12851
d3c4e709
AD
128522002-11-18 Akim Demaille <akim@epita.fr>
12853
12854 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12855 space.
12856 From Tim Van Holder.
12857
8d8a7238
PE
128582002-11-17 Paul Eggert <eggert@twinsun.com>
12859
12860 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12861 to "SyntaxError" for consistency with my 2002-11-15 change.
12862
12863 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12864 not define to {}, since this breaks the common use of `YYDPRINTF
12865 ((...));' if a single statement is desired (e.g. before `else').
12866 Work around GCC warnings by surrounding corresponding calls with
12867 {} if needed.
12868 (yyhasResolvedValue): Remove unused function.
12869 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12870 loop body.
12871 (yyreportSyntaxError): Renamed from yyreportParseError.
12872 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12873 All uses changed.
12874 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12875 extern when possible. Remove unused initializations.
12876
b0937b22
AD
128772002-11-16 Akim Demaille <akim@epita.fr>
12878
12879 Augment the similarity between GLR and LALR traces.
12880
12881 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12882 (YY_REDUCE_PRINT): New.
12883 (yyparse): Use them.
12884 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12885 YYDPRINT here.
12886 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12887 state reached after the reduction/recovery, since...
12888 (yyparse, yyprocessOneStack): Report the state we are entering in.
12889
c5e3e510
AD
128902002-11-16 Akim Demaille <akim@epita.fr>
12891
12892 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12893 Add support for --trace=skeleton.
12894 * src/scan-skel.l: %option debug.
12895 Scan strings of non-@ or \n instead of character by character.
12896 (scan_skel): Handle trace_skeleton.
12897 (QPUTS): New.
12898 (@output_parser_name@, @output_header_name@): ``Restore'' their
12899 support (used to be M4 macros).
12900 * data/yacc.c: Quote larger chunks, a la glr.c.
12901 * data/lalr1.cc: Likewise.
12902 The header guards are no longer available, so use some other
12903 string than `YYLSP_NEEDED'.
12904
4c6cc1db
AD
129052002-11-16 Akim Demaille <akim@epita.fr>
12906
12907 Make the ``Printers and Destructors'' test more verbose, taking
12908 `yacc.c''s behavior as (possibly wrong) reference.
12909
12910 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
12911 instead of fprint on stdout.
12912 Set and report the last_line of the symbols.
12913 Consistently display values and locations.
12914
6d9e8019
PE
129152002-11-16 Paul Eggert <eggert@twinsun.com>
12916
12917 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
12918
6e649e65
PE
129192002-11-15 Paul Eggert <eggert@twinsun.com>
12920
b25d88f6
PE
12921 * tests/actions.at (Actions after errors): New test case.
12922
6e649e65
PE
12923 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
12924 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
12925 tests/action.at, tests/calc.at, tests/conflicts.at,
12926 tests/cxx-type.at, tests/regression.at:
12927 "parse error" -> "syntax error" for POSIX compatibility.
12928 "parsing stack overflow..." -> "parser stack overflow" so
12929 that code matches Bison documentation.
12930
0f39aab9
AD
129312002-11-15 Akim Demaille <akim@epita.fr>
12932
12933 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
12934 take two BRACED_CODE, not two string_content.
12935 Free the scanner's obstack when we are done.
12936 (code_content): New.
12937 * tests/calc.at: Adjust.
12938 * doc/bison.texinfo: Adjust.
12939 Also, make sure to include the `,' for these declarations.
12940
761c1926
AD
129412002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
12942
12943 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
12944 definition; avoids potential autoreconf problems.
12945
b0f98b10
AD
129462002-11-15 Akim Demaille <akim@epita.fr>
12947
12948 Always check the value returned by yyparse.
12949
12950 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
12951 returned by yyparse.
12952 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
12953 Adjust calls.
12954 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
12955 returned by yyparse.
12956
970785f1
PH
129572002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12958
12959 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
12960 on input.at test.
12961
8fcc7db1
PE
129622002-11-14 Paul Eggert <eggert@twinsun.com>
12963
7ec1b48e
PE
12964 * src/output.c (output_skeleton): Call xfopen instead of
12965 duplicating xfopen's body.
12966
cfff7583 12967 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 12968 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 12969
8fcc7db1
PE
12970 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
12971 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
12972 Group compiler. Instead, use "$CC -E bar.c". Include the .h
12973 file twice in the grammar, as an extra check.
12974
12975 * tests/input.at (Torturing the Scanner): Surround the
12976 backslash-newline tests with "#if 0", to make it less likely that
12977 we'll run into compiler bugs. Bring back solitary \ inside
12978 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 12979 test backslash-newline in C character constant.
8fcc7db1 12980
4e8d992c
AD
129812002-11-14 Akim Demaille <akim@epita.fr>
12982
12983 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
12984 status of the compiler.
f32b346d 12985 Calling `exit 1' is no longer needed.
4e8d992c
AD
12986 Reported by Nelson H. F. Beebe.
12987
9501dc6e
AD
129882002-11-14 Akim Demaille <akim@epita.fr>
12989
12990 * tests/atlocal.in (CPPFLAGS): We have config.h.
12991 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
12992 New.
12993 * tests/actions.at, tests/calc.at, tests/conflicts.at,
12994 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
12995 * tests/regression.at, tests/torture.at: Use them for all the
12996 grammars that are to be compiled.
12997 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
12998 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
12999 * doc/bison.texinfo (GLR Parsers): Document `inline'.
13000
18b519c0
AD
130012002-11-14 Akim Demaille <akim@epita.fr>
13002
13003 * doc/bison.texinfo: Various formatting changes (alignments in
13004 samples, additional @group/@end group, GCS in samples.
13005 Use @deffn instead of simple @table to define the directives,
13006 macros, variables etc.
13007
9a86cdb9
PE
130082002-11-13 Paul Eggert <eggert@twinsun.com>
13009
daa33def 13010 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 13011 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 13012
daa33def 13013 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 13014 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
13015 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
13016 * tests/headers.at (export YYLTYPE): Likewise.
13017
13018 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 13019 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 13020
9a86cdb9
PE
13021 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
13022 comments, since they're not portable. Use GNU coding style.
13023
9c1e26bd
AD
130242002-11-13 Akim Demaille <akim@epita.fr>
13025
13026 * data/yacc.c: Leave bigger chunks of quoted text.
13027 (YYDSYMPRINTF): New.
13028 Use it to report symbol activities.
13029 * data/glr.c (YYDSYMPRINTF): New.
13030 Use it.
13031
87f721cc
PE
130322002-11-12 Paul Eggert <eggert@twinsun.com>
13033
13034 Version 1.75b.
13035
13036 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
13037 (yyglrReduce): Return yyok, not 0.
13038 This should avoid the enumerated-type warnings reported
464c6927 13039 by Nelson H. F. Beebe in
161a71f3 13040 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
13041
13042 * lib/bbitset.h (BITSET_INLINE): Remove.
13043 * lib/bitset.h [! BITSET_INLINE]: Remove.
13044 (bitset_set, bitset_reset, bitset_test): Rename local vars
13045 to avoid shadowing warnings by GCC.
13046
13047 * data/glr.c (inline): Remove #define. It's the user's
13048 responsibility to #define it away, just like 'const'.
464c6927 13049 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 13050 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 13051
87f721cc
PE
13052 * Makefile.maint (po-check): Scan .l and .y files instead of the
13053 .c and the .h files that they generate. This fixes the bug
13054 reported by Tim Van Holder in:
161a71f3 13055 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
13056 Look for N_ as well as for _. Try to avoid matching #define for
13057 N_ and _.
13058 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
13059 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
13060 * src/scan-gram.l: Revamp regular expressions so that " and '
13061 do not confuse xgettext.
13062
13063 * src/struniq.h (struniq_new): Do not declare the return type
13064 to be 'const'; this violates the C standard.
13065 * src/struniq.c (struniq_new): Likewise.
13066
be14ade5
AD
130672002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
13068
13069 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
13070 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
13071 linker.
13072
05291fbc
AD
130732002-11-12 Akim Demaille <akim@epita.fr>
13074
13075 * Makefile.maint: Sync with Autoconf:
13076 (local_updates): New.
13077
1f5fd52e
AD
130782002-11-12 Akim Demaille <akim@epita.fr>
13079
13080 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
13081
283f1e64
AD
130822002-11-12 Akim Demaille <akim@epita.fr>
13083
13084 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
13085 locations.
13086
886b69d1
AD
130872002-11-12 Akim Demaille <akim@epita.fr>
13088
13089 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
13090 not yyvalue.
13091
3df37415
AD
130922002-11-12 Akim Demaille <akim@epita.fr>
13093
13094 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
13095 Use it to test the GLR parser.
13096
7bd6c77e
AD
130972002-11-12 Akim Demaille <akim@epita.fr>
13098
13099 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
13100 defines it.
13101 * data/glr.c (yystos): New.
13102 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
13103 (YYDSYMPRINT): New.
13104 (yyval): Don't define it, it is handled via M4.
13105 (yyrecoverParseError): Free verbosely the discarded symbols.
13106 * data/yacc.c (yysymprint): Remove, rather...
13107 (b4_yysymprint_generate): invoke.
13108 * data/c.m4 (b4_yysymprint_generate): New.
13109 Accept pointers as arguments, as opposed to the version from
13110 yacc.c.
13111 (b4_yydestruct_generate): Likewise.
13112 * tests/cations.at (Printers and Destructors): Use Bison directives
13113 instead of CPP macros.
13114 Don't rely on internal details.
13115
b0400cc6
AD
131162002-11-12 Akim Demaille <akim@epita.fr>
13117
13118 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
13119 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
13120 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
13121 it against YYEMPTY and so forth), work on yytoken (i.e., set
13122 it to YYEMPTY etc.).
13123 (yydestruct): Replace with a b4_yydestruct_generate invocation.
13124 (b4_symbol_actions): Remove.
13125 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
13126 for 0, end-of-input.
13127
72f889cc
AD
131282002-11-12 Akim Demaille <akim@epita.fr>
13129
13130 * doc/bison.texinfo (Destructor Decl): New.
13131
b1ae9233
AD
131322002-11-12 Akim Demaille <akim@epita.fr>
13133
13134 * src/tables.c (tables_generate): Use free for pointers that
13135 cannot be NULL, not XFREE.
13136 (pack_vector): Use assert, not fatal, for bound violations.
13137 * src/state.c (state_new): Likewise.
13138 * src/reader.c (reader): Likewise.
13139 * src/lalr.c (set_goto_map): Likewise.
72f889cc 13140 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
13141 the file name.
13142
7ec2d4cd
AD
131432002-11-12 Akim Demaille <akim@epita.fr>
13144
13145 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
13146 Restore.
13147 * src/scan-gram.l (last_string): Is global to the file, not to
13148 yylex.
13149 * src/parse-gram.y (input): Don't append the epilogue here,
13150 (epilogue.opt): do it here, and free the scanner's obstack.
13151 * src/reader.c (epilogue_set): Rename as...
13152 (epilogue_augment): this.
13153 * data/c.m4 (b4_epilogue): Defaults to empty.
13154
573a6cd3
AD
131552002-11-12 Akim Demaille <akim@epita.fr>
13156
13157 * src/getargs.c (long_options): Remove duplicates.
13158 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
13159 Remove.
13160 * doc/bison.rnh: Remove.
13161 * doc/bison.texinfo (VMS Invocation): Remove.
13162
95612cfa
AD
131632002-11-12 Akim Demaille <akim@epita.fr>
13164
13165 * src/struniq.h, src/struniq.c (struniq_t): Is const.
13166 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
13167
13168 Use struniq for symbols.
13169
13170 * src/symtab.h (symbol_t): The tag member is a struniq.
13171 (symbol_type_set): Adjust.
13172 * src/symtab.c (symbol_new): Takes a struniq.
13173 (symbol_free): Don't free the tag member.
13174 (hash_compare_symbol_t, hash_symbol_t): Rename as...
13175 (hash_compare_symbol, hash_symbol): these.
13176 Use the fact that tags as struniqs.
13177 (symbol_get): Use struniq_new.
13178 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
13179 Returns a strniq.
13180 * src/reader.h (merger_list, grammar_currentmerge_set): The name
13181 and type members are struniqs.
13182 * src/reader.c (get_merge_function)
13183 (grammar_current_rule_merge_set): Adjust.
13184 (TYPE, current_type): Are struniq.
13185
13186 Use struniq for file names.
13187
13188 * src/files.h, src/files.c (infile): Split into...
13189 (grammar_file, current_file): these.
13190 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
13191 * src/reduce.c (reduce_print): Likewise.
13192 * src/getargs.c (getargs): Likewise.
13193 * src/complain.h, src/complain.c: Likewise.
13194 * src/main.c (main): Call struniqs_new early enough to use it for
13195 file names.
13196 Don't free the input file name.
13197
3e6656f9
AD
131982002-11-12 Akim Demaille <akim@epita.fr>
13199
13200 * src/symtab.c (symbol_free): Remove dead deactivated code:
13201 type_name are properly removed.
13202 Don't use XFREE to free items that cannot be NULL.
13203 * src/struniq.h, src/struniq.c: New.
13204 * src/main.c (main): Initialize/free struniqs.
13205 * src/parse-gram.y (%union): Add astruniq member.
13206 (yyprint): Adjust.
13207 * src/scan-gram.l (<{tag}>): Return a struniq.
13208 Free the obstack bit that used to store it.
13209 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
13210
7672019c
PE
132112002-11-11 Paul Eggert <eggert@twinsun.com>
13212
13213 Revamp to fix many (but not all) of the C- and M4-related quoting
13214 problems. Among other things, this fixes the Bison bug reported
13215 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 13216 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
13217
13218 Use new @ escapes consistently. Represent brackets with @{ and @}
13219 rather than @<:@ and @:>@, since this works a bit better with dumb
13220 editors like vi. Represent @ with @@, since @ is now consistently
13221 an escape. Use @oline@ and @ofile@ rather than __oline__ and
13222 __ofile__, to avoid unexpected expansions. Similarly, use @output
13223 rather than #output.
13224
13225 * data/c.m4 (b4_copyright): Omit file name from comment, since
13226 the file name could contain "*/".
13227 (b4_synclines_flag): Don't quote the 2nd argument; it should already
13228 be quoted. All uses changed.
13229
13230 * data/glr.c: Use new @ escapes consistently.
13231 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
13232 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
13233 Remove, since they couldn't handle arbitrary characters in file
13234 names.
13235 * data/lalr1.cc: Likewise.
13236 * data/yacc.c: Likewise.
13237
13238 * src/files.c (output_infix): Remove; all uses removed.
13239 * src/files.h: Likewise.
13240
13241 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
13242 mishandled funny characters in file names, and anyway it isn't
13243 needed any more.
13244 * data/yacc.c: Likewise.
13245 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
13246
13247 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
13248 * data/yacc.c: Likewise.
13249
13250 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
13251 strings now.
13252 (muscle_init): Quote filename as a C string.
13253 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
13254 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
13255 * src/output.c (escaped_file_name_output): New function.
13256 (prepare_symbols): Quote tokens for M4.
13257 (prepare): Don't insert output_infix, output_prefix,
13258 output_parser_name, output_header_name; this is now down by scan-skel.
13259 Insert skeleton as a C string.
13260
13261 * src/output.c (user_actions_output, symbol_destructors_output,
13262 symbol_printers_output): Quote filenames for C and M4.
13263 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13264
13265 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
13266 escapes other than \\ and \'; this simplifies the code.
13267 (<SC_STRING>): Likewise, for \\ and \".
13268 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
13269 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
13270 Use new escapes @{ and @} for [ and ].
13271
13272 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
13273 them with auto vars.
13274 Switch to new escape scheme, where @ is the escape character uniformly.
13275 Abort if a stray escape character is found. Avoid unbounded input
13276 buffer when parsing non-escaped text.
13277
13278 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
13279 __oline__, #output, $@, and @{ do not have unintended meanings.
13280
acea4f3b
PE
132812002-11-09 Paul Eggert <eggert@twinsun.com>
13282
13283 Fix the test failure due to GCC warnings described in
161a71f3 13284 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
13285 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
13286 evaluate to 0 if it's impossible for NINF to be in the respective
13287 table.
13288 (yygetLRActions, yyrecoverParseError): Use them.
13289
13290 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
13291 counted in the token inserted at end of file. Now takes
13292 location_t *, not location_t, so that the location can be
13293 adjusted. All uses changed.
13294
13295 * tests/regression.at (Invalid inputs): Adjust wording in
13296 diagnostic to match the new behavior.
13297
13298 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
13299 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
13300 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
13301 abort ();'. This reduces the runtime of the "Many lookaheads"
13302 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
13303 GCC 3.2.
13304
20ef1ad5
PE
133052002-11-07 Paul Eggert <eggert@twinsun.com>
13306
13307 * src/parse-gram.y (CHARACTER): Remove unused token.
13308 All uses removed.
13309
13310 * src/scan-gram.l: Remove stack option. We no longer use the
13311 stack, since the stack was never deeper than 1; instead, use the
13312 new auto var c_context to record the stacked value.
13313
13314 Remove nounput option. At an unexpected end of file, we now unput
13315 the minimal input necessary to end cleanly; this simplifies the
13316 code.
13317
13318 Avoid unbounded token sizes where this is easy.
13319
13320 (unexpected_end_of_file): New function.
13321 Use it to systematize the error message on unexpected EOF.
13322 (last-string): Now auto, not static.
13323 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
13324 (scanner_last_string_free): Remove; not used.
13325 (percent_percent_count): Move decl to just before use.
13326 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
13327 not the (never otherwised-used) CHARACTER.
13328
93724f13
AD
133292002-11-07 Akim Demaille <akim@epita.fr>
13330
13331 Let yyerror always receive the msg as last argument, so that
13332 yyerror can be variadic.
13333
13334 * data/yacc.c (b4_yyerror_args): New.
13335 Use it when calling yyerror.
13336 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
13337 Use it when calling yyerror.
13338 * doc/bison.texinfo (Error Reporting): Adjust.
13339 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
13340 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
13341
6e40b4eb
AD
133422002-11-06 Akim Demaille <akim@epita.fr>
13343
13344 #line should have quoted strings.
13345 Ideally, this should be done by m4_quotearg.
13346
13347 * src/scan-skel.l: Include quotearg.h.
13348 Quote __ofile__.
13349 * src/output.c (symbol_printers_output)
13350 (symbol_destructors_output): Quote the file name.
13351
2dfbfc12
AD
133522002-11-06 Akim Demaille <akim@epita.fr>
13353
13354 * tests/regression.at (Invalid inputs): Adjust to the recent
13355 messages.
13356
437c2d80
AD
133572002-11-06 Akim Demaille <akim@epita.fr>
13358
13359 Restore --no-lines.
13360 Reported by Jim Kent.
13361
13362 * data/c.m4 (b4_syncline): New.
13363 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
13364 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
13365 * src/output.c (user_actions_output): Likewise.
13366 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 13367 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 13368
900c5db5
AD
133692002-11-06 Akim Demaille <akim@epita.fr>
13370
13371 * src/main.c (main): Free `infile'.
13372 * src/scan-gram.l (handle_syncline): New.
13373 Recognize `#line'.
13374 * src/output.c (user_actions_output, symbol_destructors_output)
13375 (symbol_printers_output): Use the location's file name, not
13376 infile.
13377 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13378
e183b123 133792002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 13380
e183b123 13381 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 13382 either has GLR conflict entries.
e183b123 13383
193eb6b7
PE
133842002-11-05 Paul Eggert <eggert@twinsun.com>
13385
e183b123
PE
13386 * src/scan-gram.l: Use more accurate diagnostics, e.g.
13387 "integer out of range" rather than "invalid value".
13388 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
13389 accordingly.
13390
193eb6b7
PE
13391 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
13392 Also, remove one static variable in the scanner.
13393
13394 * src/scan-gram.l (braces_level): Now auto, not static.
13395 Initialize to zero if the compiler is being picky.
13396 (INITIAL): Clear braces_level instead of incrementing it.
13397 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
13398 as POSIX 1003.1-2001 requires.
13399 * src/system.h (IF_LINT): New macro, taken from coreutils.
13400 * configure.ac: Define "lint" if --enable-gcc-warnings.
13401
29c01725
AD
134022002-11-05 Akim Demaille <akim@epita.fr>
13403
13404 * src/scan-gram.l: When it starts with `%', complain about the
13405 whole directive, not just that `invalid character: %'.
13406
8aeac3ca
AD
134072002-11-04 Akim Demaille <akim@epita.fr>
13408
13409 * Makefile.maint: Update from Autoconf.
13410 (update, cvs-update, po-update, do-po-update): New.
13411
793a58bb
AD
134122002-11-04 Akim Demaille <akim@epita.fr>
13413
13414 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
13415 and yyerror.
13416 Have yyerror `use' its arguments.
13417 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
13418 returns true when location & yacc & pure & parse-param.
13419 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
13420
c4d720cd
AD
134212002-11-04 Akim Demaille <akim@epita.fr>
13422
13423 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
13424 clashes.
13425 * src/scan-gram.l: Use [\'] instead of ['] to pacify
13426 font-lock-mode.
13427 Use complain_at.
13428 Use quote, not quote_n since LOCATION_PRINT no longer uses the
13429 slot 0.
13430
613a0dc5
PE
134312002-11-03 Paul Eggert <eggert@twinsun.com>
13432
13433 * src/reader.c (get_merge_function, grammar_current_rule_check):
13434 Use consistent diagnostics for reporting type name clashes.
13435 Quote the types with <>, for consistency with Yacc.
13436 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
13437
2a8d363a
AD
134382002-11-03 Akim Demaille <akim@epita.fr>
13439
13440 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
13441 New.
13442 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
13443 (b4_parse_param): Remove.
13444 Use b4_identification.
13445 Propagate b4_pure_args where needed to pass them to yyerror.
13446 * data/glr.m4 (b4_parse_param): Remove.
13447 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
13448 (b4_lpure_formals): New.
13449 Use b4_identification.
13450 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
13451 b4_user_formals and b4_user_args.
13452 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
13453 (yyreportAmbiguity): When using a pure parser, also need
13454 the location, and the parse-params.
13455 Adjust callers.
13456 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
13457 When using a pure parser, also need the parse-params.
13458 Adjust callers.
13459 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
13460 (%pure-parser + %parse-param) LALR and GLR parsers.
13461 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
13462 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
13463 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
13464 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
13465 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
13466 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
13467 * doc/bison.texinfo: Untabify the whole file.
13468 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
13469 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
13470 (Error Reporting): Adjust to these new directives.
13471 Document %error-verbose, deprecate YYERROR_VERBOSE.
13472
9e32add8
AD
134732002-11-03 Akim Demaille <akim@epita.fr>
13474
13475 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
13476 AT_CHECK_CALC_GLR invocations to use % directives, instead of
13477 command line options.
13478 * tests/cxx-type.at: Formatting changes.
13479
b02d90a5
PE
134802002-11-03 Paul Eggert <eggert@twinsun.com>
13481
13482 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
13483 to count columns correctly, and to check for invalid inputs.
9e32add8 13484
b02d90a5
PE
13485 Use mbsnwidth to count columns correctly. Account for tabs, too.
13486 Include mbswidth.h.
13487 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
13488 (extend_location): New function.
13489 (YY_LINES): Remove.
13490
13491 Handle CRLF in C code rather than in Lex code.
13492 (YY_INPUT): New macro.
13493 (no_cr_read): New function.
13494
13495 Scan UCNs, even though we don't fully handle them yet.
13496 (convert_ucn_to_byte): New function.
13497
13498 Handle backslash-newline correctly in C code.
13499 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
13500 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
13501 all uses changed.
13502 (tag, splice): New EREs. Do not allow NUL or newline in tags.
13503 Use {splice} wherever C allows backslash-newline.
13504 YY_STEP after space, newline, vertical-tab.
13505 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 13506
b02d90a5
PE
13507 (letter, id): Don't assume ASCII; e.g., spell out a-z.
13508
13509 ({int}, handle_action_dollar, handle_action_at): Check for integer
13510 overflow.
9e32add8 13511
b02d90a5
PE
13512 (YY_STEP): Omit trailing semicolon, so that it's more like C.
13513
13514 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
13515 as well as \000. Check for UCHAR_MAX, not 255.
13516 Allow \x with an arbitrary positive number of digits, as in C.
13517 Check for overflow here.
13518 Allow \? and UCNs, for compatibility with C.
13519
13520 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
13521 with quote slot used by complain_at.
13522
13523 * tests/input.at: Add tests for backslash-newline, m4 quotes
13524 in symbols, long literals, and funny escapes in strings.
13525
13526 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
13527 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
13528 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
13529 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
13530 * m4/mbswidth.m4: New file, from GNU coreutils.
13531
13532 * doc/bison.texinfo (Grammar Outline): Document // comments.
13533 (Symbols): Document that trigraphs have no special meaning in Bison,
13534 nor is backslash-newline allowed.
13535 (Actions): Document that trigraphs have no special meaning.
13536
13537 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
13538 no longer used.
13539
135402002-11-02 Paul Eggert <eggert@twinsun.com>
13541
13542 * src/reader.c: Don't include quote.h; not needed.
13543 (get_merge_function): Reword warning to be consistent with
13544 type clash diagnostic in grammar_current_rule_check.
13545
13546 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
13547 bug in trigraph handling.
13548
13549 * src/output.c (prepare_symbols): When printing token names,
13550 escape "[" as "@<:@" and likewise for "]".
13551
13552 * src/system.h (errno): Remove declaration, as we are now
13553 assuming C89 or better, and C89 guarantees errno.
13554
762b212b
PE
135552002-10-30 Paul Eggert <eggert@twinsun.com>
13556
13557 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
13558 Check for close failures.
13559 * src/files.h (xfclose): Return void, not int, since it always
13560 returned zero.
13561 * src/files.c (xfclose): Likewise. Report I/O error if ferror
13562 indicates one.
13563 * src/output.c (output_skeleton): Use xfclose rather than fclose
13564 and ferror. xfclose now checks ferror.
13565
13566 * data/glr.c (YYLEFTMOST_STATE): Remove.
13567 (yyreportTree): Use a stack-based leftmost state. This avoids
13568 our continuing battles with bogus warnings about initializers.
13569
56100c60
AD
135702002-10-30 Akim Demaille <akim@epita.fr>
13571
13572 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13573 #if.
13574
51b4a04c
PH
135752002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13576
13577 * tests/glr-regr1.at: New test for reported regressions.
13578 * tests/testsuite.at: Add glr-regr1.at test.
13579 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 13580
bf1ebda2
PE
135812002-10-24 Paul Eggert <eggert@twinsun.com>
13582
5c16c6b1
PE
13583 Version 1.75a.
13584
bf1ebda2
PE
13585 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13586 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13587 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13588 Don't assume strdup exists; POSIX says its an XSI extension.
13589 Check for buffer overflow on input.
13590
b526ee61
AD
135912002-10-24 Akim Demaille <akim@epita.fr>
13592
13593 * src/output.c (output_skeleton): Don't disable M4sugar comments
13594 too soon: it results in comments being expanded.
13595 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13596 first output.
13597
f1886bb2
AD
135982002-10-24 Akim Demaille <akim@epita.fr>
13599
13600 * data/yacc.c (m4_int_type): New.
13601 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13602 char' as only yacc.c wants K&R portability.
13603 * data/glr.c (yysigned_char): Remove.
13604 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13605 Reported by Quoc Peyrot.
13606
c5576256
PE
136072002-10-23 Paul Eggert <eggert@twinsun.com>
13608
13609 * src/main.c (main): With --trace=time, report times even if a
13610 non-fatal error occurs. Formerly, the times were reported in some
13611 such cases but not in others.
13612 * src/reader.c (reader): Just return if a complaint has been issued,
13613 instead of exiting, so that 'main' can report times.
13614
27b0ffea
AD
136152002-10-22 Akim Demaille <akim@epita.fr>
13616
13617 * src/system.h: Include sys/types.
13618 Reported by Bert Deknuydt.
13619
223a7883
PE
136202002-10-23 Paul Eggert <eggert@twinsun.com>
13621
13622 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13623 Suggested by Art Haas.
13624
136252002-10-22 Paul Eggert <eggert@twinsun.com>
13626
13627 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13628 decl; not needed any more.
13629 * src/main.c (main): Use return to exit, undoing yesterday's change.
13630 The last OS that we could find where this wouldn't work is
13631 SunOS 3.5, and that's too old to worry about now.
13632
13633 * data/glr.c (struct yyltype): Define members even when not
13634 doing locations. This is more consistent with yacc.c, and it
13635 works around the following bug reports:
161a71f3
PE
13636 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13637 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 13638
223a7883
PE
13639 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13640 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13641 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13642
8b76775a
AD
136432002-10-22 Akim Demaille <akim@epita.fr>
13644
13645 * data/README: New.
13646
6db10d14
PE
136472002-10-21 Paul Eggert <eggert@twinsun.com>
13648
13649 Be consistent about 'bool'; the old code used an enum in one
13650 module and an int in another, and this violates the C standard.
13651 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13652 * configure.ac (AC_HEADER_STDBOOL): Add.
13653 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13654 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13655 * src/symtab.c (hash_compare_symbol_t): Likewise.
13656 * src/system.h (bool, false, true): Use a definition consistent
13657 with ../lib/hash.c. All uses changed.
13658
13659 * src/complain.c (warning_issued): Renamed from warn_message_count,
13660 so that we needn't worry about integer overflow (!).
13661 Now of type bool. All uses changed.
13662 (complaint_issued): Renamed from complain_message_count; likewise.
13663
13664 * src/main.c (main): Use exit to exit with failure.
27b0ffea 13665
6db10d14
PE
13666 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13667 rather than 1 and 0.
13668 * src/main.c (main): Likewise.
13669 * src/getargs.c (getargs): Likewise.
13670 * src/reader.c (reader): Likewise.
13671
13672 * src/getarg.c (getargs): Remove duplicate code for
13673 "Try `bison --help'".
13674
13675 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13676 What was that "2" for?
13677
13678 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13679 * src/getargs.c (usage): Likewise.
13680
13681 * src/getargs.c (getargs): When there are too few operands, report
13682 the last one. When there are too many, report the first extra
13683 one. This is how diffutils does it.
13684
92a060fd
PE
136852002-10-20 Paul Eggert <eggert@twinsun.com>
13686
13687 Remove K&R vestiges.
13688 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13689 * src/complain.c (VA_START): Remove. Assume prototypes.
13690 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13691 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13692 fatal): Assume prototypes.
13693 * src/complain.h: Assume prototypes.
13694 * src/system.h (PARAMS): Remove.
13695 Include <limits.h> unconditionally, since it's guaranteeed even
13696 for a freestanding C89 compiler.
13697 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13698 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 13699
e7cb57c0
AD
137002002-10-20 Akim Demaille <akim@epita.fr>
13701
13702 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13703 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13704 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13705 (yyresolveStates, yyresolveAction, yyresolveStack)
13706 (yyprocessOneStack): Use them.
13707 (yy_reduce_print): New.
13708 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13709
0245f82d
AD
137102002-10-20 Akim Demaille <akim@epita.fr>
13711
13712 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13713 arguments and output `void'.
13714 (b4_c_function): Rename as...
13715 (b4_c_function_def): this.
13716 (b4_c_function_decl, b4_c_ansi_function_def)
13717 (b4_c_ansi_function_decl): New.
13718 Change the interpretation of the arguments: before `int, foo', now
13719 `int foo, foo'.
13720 * data/yacc.c (yyparse): Prototype and define thanks to these.
13721 Adjust b4_c_function_def uses.
13722 * data/glr.c (yyparse): Likewise, but ANSI only.
13723
39912f52
AD
137242002-10-20 Akim Demaille <akim@epita.fr>
13725
13726 * src/output.c (prepare): Move the definition of `tokens_number',
13727 `nterms_number', `undef_token_number', `user_token_number_max'
13728 to...
13729 (prepare_tokens): Here.
13730 (prepare_tokens): Rename as...
13731 (prepare_symbols): this.
13732 (prepare): Move the definition of `rules_number' to...
13733 (prepare_rules): here.
13734 (prepare): Move the definition of `last', `final_state_number',
13735 `states_number' to...
13736 (prepare_states): here.
13737 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13738
20c1e2ad
AD
137392002-10-20 Akim Demaille <akim@epita.fr>
13740
13741 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13742
21964f43
AD
137432002-10-20 Akim Demaille <akim@epita.fr>
13744
13745 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13746 * data/c.m4: here.
13747
66d30cd4
AD
137482002-10-20 Akim Demaille <akim@epita.fr>
13749
13750 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13751 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13752 `pair'.
13753 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13754 `name' to...
13755 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13756 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13757 These.
13758
95f2c9fe
PE
137592002-10-19 Paul Eggert <eggert@twinsun.com>
13760
13761 Do not create a temporary file, as that involves security and
13762 cleanup headaches. Instead, use a pair of pipes.
13763 Derived from a suggestion by Florian Krohm.
13764 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13765 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13766 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13767 (BISON_PREREQ_SUBPIPE): Add.
13768 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13769 Add subpipe.h, subpipe.c.
13770 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13771 * po/POTFILES.in: Add lib/subpipe.c.
13772 * src/output.c: Include "subpipe.h".
13773 (m4_invoke): Remove decl.
13774 (scan_skel): New decl.
13775 (output_skeleton): Use pipe rather than temporary file for m4 input.
13776 Check that m4sugar.m4 is readable, to avoid deadlock.
13777 Check for pipe I/O error.
13778 * src/scan-skel.l (readpipe): Remove decl.
13779 (scan_skel): New function, to be used in place of m4_invoke.
13780 Read from stream rather than file.
66d30cd4 13781
95f2c9fe
PE
13782 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13783 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13784 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13785 this generates a more-accurate value anyway.
13786
13787 * lib/timevar.c (timervar_accumulate): Rename locals to
13788 avoid confusion with similarly-named more-global.
13789 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13790
13791 * src/output.c (prepare): Use xstrdup to convert char const *
13792 to char *, to avoid GCC warning.
13793
c19988b7
AD
137942002-10-19 Akim Demaille <akim@epita.fr>
13795
13796 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13797 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13798 Use them to have `calc.y' ready for %pure-parser.
13799 * data/yacc.c (YYLEX): Pass a yylex return type to
13800 b4_c_function_call.
13801
ae7453f2
AD
138022002-10-19 Akim Demaille <akim@epita.fr>
13803
13804 Prototype support of %lex-param and %parse-param.
13805
13806 * src/parse-gram.y: Add the definition of the %lex-param and
13807 %parse-param tokens, plus their rules.
13808 Drop the `_' version of %glr-parser.
13809 Add the "," token.
13810 * src/scan-gram.l (INITIAL): Scan them.
13811 * src/muscle_tab.c: Comment changes.
13812 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13813 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13814 (muscle_entry_s): The `value' member is no longer const.
13815 Adjust all dependencies.
13816 * src/muscle_tab.c (muscle_init): Adjust: use
13817 MUSCLE_INSERT_STRING.
13818 Initialize the obstack earlier.
13819 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13820 (muscle_pair_list_grow): New.
13821 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13822 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13823 * tests/calc.at: Use %locations, not --locations.
13824 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13825
0e575721
AD
138262002-10-19 Akim Demaille <akim@epita.fr>
13827
13828 * src/getargs.c (usage): Take status as argument and exit
13829 accordingly.
13830 Report the traditional `Try ... --help' message when status != 0.
13831 (usage, version): Don't take a FILE * as arg, it is pointless.
13832 (getargs): When there is an incorrect number of arguments, make it
13833 an error, and report it GNUlically thanks to `usage ()'.
13834
724ce7f5
PE
138352002-10-18 Paul Eggert <eggert@twinsun.com>
13836
3a781eb2
PE
13837 * data/glr.c (yyreportParseError): Don't assume that sprintf
13838 yields the length of the printed string, as this is not true
13839 on SunOS 4.1.4. Reported by Peter Klein.
13840
724ce7f5
PE
13841 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13842 * tests/conflicts.at (%nonassoc and eof): Likewise.
13843 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13844
473d0a75
AD
138452002-10-17 Akim Demaille <akim@epita.fr>
13846
13847 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13848 * src/getargs.c (trace_types, trace_args): Adjust.
13849 * src/reader.c (grammar_current_rule_prec_set)
13850 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13851 Standardize error messages.
13852 And s/@prec/%prec/!
13853 (reader): Use trace_flag to enable scanner/parser debugging,
13854 instead of an adhoc scheme.
13855 * src/scan-gram.l: Remove trailing debugging code.
13856
e76d2469
PE
138572002-10-16 Paul Eggert <eggert@twinsun.com>
13858
93e2236a
PE
13859 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13860 MUSCLE_TAB_H.
13861
e76d2469
PE
13862 * NEWS: Officially drop support for building Bison with K&R C,
13863 since it didn't work anyway and it's not worth worrying about.
13864 * Makefile.maint (wget_files): Remove ansi2knr.c.
13865 (ansi2knr.c-url_prefix): Remove.
13866 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13867 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13868 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13869
5bd1c419
PE
138702002-10-15 Paul Eggert <eggert@twinsun.com>
13871
13872 Stop using the "enum_" trick for K&R-style function definitions;
13873 it confused me, and I was the author! Instead, assume that people
13874 who want to use K&R C compilers (when using these modules in GCC,
13875 perhaps?) will run ansi2knr.
13876
13877 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13878 All uses of "enum_" changed to "enum ".
13879 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13880 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 13881
5bd1c419
PE
13882 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13883 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13884 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13885 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13886 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13887 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13888 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13889 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13890 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13891 Use function prototypes; this removes the need for declaring
13892 static functions simply to provide their prototypes.
13893 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13894 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13895 bitset_count_, bitset_create, bitset_dump, bitset_first,
13896 bitset_free, bitset_init, bitset_last, bitset_next,
13897 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13898 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13899 bitset_print, bitset_release_memory, bitset_toggle_,
13900 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13901 debug_bitset): Likewise.
13902 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13903 * lib/bitset_stats.c (bitset_log_histogram_print,
13904 bitset_percent_histogram_print, bitset_stats_and,
13905 bitset_stats_and_cmp, bitset_stats_and_or,
13906 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13907 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
13908 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
13909 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
13910 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
13911 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
13912 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
13913 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
13914 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
13915 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
13916 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
13917 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
13918 bitset_stats_zero): Likewise.
13919 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13920 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13921 bitsetv_dump, debug_bitsetv): Likewise.
13922 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
13923 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
13924 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
13925 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
13926 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
13927 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
13928 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
13929 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
13930 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
13931 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
13932 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
13933 Likewise.
13934 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
13935 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
13936 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
13937 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
13938 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
13939 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
13940 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
13941 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
13942 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
13943 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
13944 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 13945
ae26e1f0
AD
139462002-10-14 Akim Demaille <akim@epita.fr>
13947
13948 Version 1.75.
13949
d43baf71
AD
139502002-10-14 Akim Demaille <akim@epita.fr>
13951
13952 * tests/Makefile.am (maintainer-check-posix): New.
13953
7ebc83e3
AD
139542002-10-14 Akim Demaille <akim@epita.fr>
13955
13956 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
13957 member.
13958
05846dae
AD
139592002-10-14 Akim Demaille <akim@epita.fr>
13960
13961 * src/tables.c (table_ninf_remap): base -> tab.
13962 Reported by Matt Rosing.
13963
1318e37d
PE
139642002-10-14 Paul Eggert <eggert@twinsun.com>
13965
447fbb17
PE
13966 * tests/action.at, tests/calc.at, tests/conflicts.at,
13967 tests/cxx-type.at, tests/headers.at, tests/input.at,
13968 tests/regression.at, tests/synclines.at, tests/torture.at:
13969 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
13970 so that the tests still work even if POSIXLY_CORRECT is set.
13971 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 13972
1318e37d
PE
13973 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
13974 for portability to K&R hosts. Fix typo: signed char is guaranteed
13975 only to 127, not to 128.
13976 * data/glr.c (yysigned_char): New type.
13977 * data/yacc.c (yysigned_char): Likewise.
13978 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
13979
cc0f0794
PE
139802002-10-13 Paul Eggert <eggert@twinsun.com>
13981
5038f418
PE
13982 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
13983 true due to limited range of data type" warning from GCC.
13984
cc0f0794
PE
13985 * data/c.m4 (b4_token_defines): Protect against double-inclusion
13986 by wrapping enum yytokentype's definition inside #ifndef
13987 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
13988
6fed0802
AD
139892002-10-13 Akim Demaille <akim@epita.fr>
13990
13991 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
13992 Un yy- yyrhs to avoid the name clash with the global YYRHS.
13993
32f0598d
AD
139942002-10-13 Akim Demaille <akim@epita.fr>
13995
13996 * Makefile.maint: Update from Autoconf 2.54.
13997 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
13998
7ea9a33f
AD
139992002-10-13 Akim Demaille <akim@epita.fr>
14000
14001 * src/print.c (print_state): Separate the list of solved conflicts
14002 from the other items.
14003 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
14004
ea99527d
AD
140052002-10-13 Akim Demaille <akim@epita.fr>
14006
14007 Let nondeterministic skeletons be usable with deterministic
14008 tables.
14009
14010 With the patch, GAWK compiled by GCC without -O2 passes its test
14011 suite using a GLR parser driven by LALR tables. It fails with -O2
14012 because `struct stat' gives two different answers on my machine:
14013 88 (definition of an auto var) and later 96 (memset on this var).
14014 Hence the stack is badly corrumpted. The headers inclusion is to
14015 blame: if I move the awk.h inclusion before GLR's system header
14016 inclusion, the two struct stat have the same size.
14017
14018 * src/tables.c (pack_table): Always create conflict_table.
14019 (token_actions): Always create conflict_list.
14020 * data/glr.c (YYFLAG): Remove, unused.
14021
f377f69f
AD
140222002-10-13 Akim Demaille <akim@epita.fr>
14023
14024 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
14025 (O0FLAGS): New.
14026 (VALGRIND, GXX): New.
14027 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
14028 * tests/bison.in: Run $PREBISON a pre-command.
14029 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
14030 (maintainer-check-g++): New.
14031 * Makefile.am (maintainer-check): New.
14032
2a1fe6ed
AD
140332002-10-13 Akim Demaille <akim@epita.fr>
14034
14035 * data/glr.c: Formatting changes.
14036 Tweak some trace messages to match yacc.c's.
14037
f50adbbd
AD
140382002-10-13 Akim Demaille <akim@epita.fr>
14039
14040 GLR parsers sometimes raise parse errors instead of performing the
14041 default reduction.
14042 Reported by Charles-Henry de Boysson.
14043
14044 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 14045 check the length of the traces when %glr.
f50adbbd
AD
14046 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
14047 GLR's traces.
14048 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
14049 Test GLR parsers.
14050 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
14051 (yyltype): Remove the yy prefix from the member names.
14052 (yytable): Complete its comment.
14053 (yygetLRActions): Map error action number from YYTABLE from
14054 YYTABLE_NINF to 0.
14055 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
14056 (which was a bug: it should have been YYTABEL_NINF, and yet it was
14057 not satisfying as we could compare an YYACTION computed from
14058 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
14059 only value for error actions.
14060 (yyreportParseError): In verbose parse error messages, don't issue
14061 `error' in the list of expected tokens.
14062 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
14063 next action to perform to match glr.c's decoding.
14064 (yytable): Complete its comment.
14065
bcbad5b9
PE
140662002-10-13 Paul Eggert <eggert@twinsun.com>
14067
14068 Fix problem reported by Henrik Grubbstroem in
161a71f3 14069 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
14070 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
14071 because the Bison parser reads the second action before reducing
14072 the first one.
14073 * src/scan-gram.l (rule_length): New static var.
14074 Use it to keep track of the rule length in the scanner, since
14075 we can't expect the parser to be in lock-step sync with the scanner.
14076 (handle_action_dollar, handle_action_at): Use this var.
14077 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 14078
14904b89
PE
140792002-10-12 Paul Eggert <eggert@twinsun.com>
14080
1fe611e5
PE
14081 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
14082 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
14083 Include <sys/time.h> when checking for clock_t and struct tms.
14084 Use same include order as source.
14085 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 14086 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 14087
1fe611e5
PE
14088 * lib/timevar.c: Update copyright date and clarify comments.
14089 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 14090
1fe611e5
PE
14091 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
14092 GCC version as of today, then merge Bison's changes.
14093 Change "GCC" to "Bison" in copyright notice. timevar.def's
14094 author is Akim, so change that too.
14095
98194095
PE
14096 * src/reader.c (grammar_current_rule_check):
14097 Don't worry about the default action if $$ is untyped.
14098 Prevents bogus warnings reported by Jim Gifford in
161a71f3 14099 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 14100
14904b89
PE
14101 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
14102 * data/glr.c, data/lalr1.cc, data/yacc.c:
14103 Output token definitions before the first part of user declarations.
14104 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 14105 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 14106
ff6dca18
PE
141072002-10-11 Paul Eggert <eggert@twinsun.com>
14108
14109 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
14110 (yyparse): here. This undoes some of the 2002-07-25 change.
14111 Compatibility problem reported by Ralf S. Engelschall with
14112 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
14113
eb714592
AD
141142002-10-11 Akim Demaille <akim@epita.fr>
14115
14116 * tests/regression.at Characters Escapes): New.
14117 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
14118 characters.
14119 Reported by Jan Nieuwenhuizen.
14120
b7195100
AD
141212002-10-11 Akim Demaille <akim@epita.fr>
14122
14123 * po/id.po: New.
14124
f28a0f2d
PE
141252002-10-10 Paul Eggert <eggert@twinsun.com>
14126
14127 Portability fixes for bitsets; this also avoids several GCC
14128 warnings.
14129
14130 * lib/abitset.c: Include <stddef.h>, for offsetof.
14131 * lib/lbitset.c: Likewise.
14132
14133 * lib/abitset.c (abitset_bytes): Return a size that is aligned
14134 properly for vectors of objects. Do not assume that adding a
14135 header size to a multiple of a word size yields a value that is
14136 properly aligned for the whole union.
14137 * lib/bitsetv.c (bitsetv_alloc): Likewise.
14138
14139 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
14140 unique names for structures.
14141 * lib/ebitset.c (ebitset_bytes): Likewise.
14142 * lib/lbitset.c (lbitset_bytes): Likewise.
14143
14144 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
14145 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
14146 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
14147 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
14148 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
14149 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
14150 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
14151 to improve the type-checking that GCC can do.
14152 * lib/bitset.c (bitset_op4_cmp): Likewise.
14153 * lib/bitset_stats.c (bitset_stats_count,
14154 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
14155 bitset_stats_copy, bitset_stats_disjoint_p,
14156 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
14157 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
14158 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
14159 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
14160 bitset_stats_and_or_cmp, bitset_stats_andn_or,
14161 bitset_stats_andn_or_cmp, bitset_stats_or_and,
14162 bitset_stats_or_and_cmp): Likewise.
14163 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
14164 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
14165 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
14166 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
14167
14168 * lib/abitset.h: Include bitset.h, not bbitset.h.
14169 * lib/ebitset.h: Likewise.
14170 * lib/lbitset.h: Likewise.
14171
14172 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
14173 All instances of parameters of type enum bitset_opts are now of
14174 type enum_bitset_opts, to conform to the C Standard, and similarly
14175 for enum_bitset_type.
14176 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
14177 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
14178
14179 Do not use "struct bitset_struct" to mean different things in
14180 different modules. Not only is this confusing, it violates
14181 the C Standard, which requires that structure types in different
14182 modules must be compatible if one is to be passed to the other.
14183 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
14184 All instances of "struct bitset_struct *" replaced with "bitset".
14185 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
14186 (union bitset_union, struct abitset_struct, struct ebitset_struct,
14187 struct lbitset_struct, struct bitset_stats_struct): New types.
14188 All uses of struct bitset_struct changed to union bitset_union,
14189 etc.
ba0fe3c7 14190 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
14191 struct bitset_struct): Remove.
14192 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
14193 struct bitset_struct): Remove.
14194 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
14195 bitset_struct): Remove.
14196 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
14197 Likewise.
14198
14199 Do not call a function of type T using a call that assumes the
14200 function is of a different type U. Standard C requires that a
14201 function must be called with a type that is compatible with its
14202 definition.
14203 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
14204 New decls.
14205 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
14206 New functions.
14207 * lib/ebitset.c (PFV): Remove.
14208 * lib/lbitset.c (PFV): Likewise.
14209 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
14210 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
14211 decls.
14212 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
14213 (ebitset_vtable): Use them.
14214 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
14215 lbitset_xor): New functions.
14216 (lbitset_vtable): Use them.
14217
14218 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
14219 Declare.
14220
14221 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
14222 GCC warning.
14223 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
14224 Use offsetof, for simplicity.
14225
6fbe4984
PE
142262002-10-06 Paul Eggert <eggert@twinsun.com>
14227
14228 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
14229 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 14230 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
14231 which was inadvertently undone by the 2002-09-30 patch.
14232 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
14233 the same width as int.
14234
420f93c8
PE
142352002-10-04 Paul Eggert <eggert@twinsun.com>
14236
14237 Version 1.50.
14238
14239 * configure.ac (AC_INIT), NEWS: Increment version number.
14240
14241 * doc/bison.texinfo: Minor spelling, grammar, and white space
14242 fixes.
14243 (Symbols): Mention that any negative value returned from yylex
14244 signifies end-of-input. Warn about negative chars. Mention
14245 the portable Standard C character set.
14246
14247 The GNU coding standard says CFLAGS and YFLAGS are reserved
14248 for the installer to set.
14249 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
14250 * src/Makefile.am (AM_CFLAGS): Likewise.
14251 (AM_YFLAGS): Renamed from YFLAGS.
14252
14253 Fix some MAX and MIN problems.
14254 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
14255 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
14256 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
14257 * src/reader.c (reader): Use it.
14258
14259 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
14260 POSIX 1003.1-2001 has removed fgrep.
14261
142622002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
14263
14264 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
14265 interpreted as signed.
14266 * lib/ebitset.c (ebitset_list): Fix bug.
14267
ff68026d
PE
142682002-10-01 Paul Eggert <eggert@twinsun.com>
14269
14270 More fixes for 64-bit hosts and large bitsets.
14271
14272 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
14273 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
14274 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
14275 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
14276 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
14277 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
14278 bitset_count_): Likewise.
14279 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
14280 bitset_first, bitset_last): Likewise.
14281 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
14282 bitset_stats_list_reverse, bitset_stats_size,
14283 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
14284 Likewise.
14285 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14286 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
14287 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
14288 bitsetv_reflexive_transitive_closure): Likewise.
14289 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
14290 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
14291 Likewise.
14292 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
14293 Likewise.
420f93c8 14294
ff68026d
PE
14295 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
14296 Use size_t, not unsigned int, to count bytes.
14297 * lib/abitset.h (abitset_bytes): Likewise.
14298 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
14299 Likewise.
14300 * lib/bitset.h (bitset_bytes): Likewise.
14301 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
14302 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
14303 * lib/bitsetv.c (bitsetv_alloc): Likewise.
14304 * lib/ebitset.c (ebitset_bytes): Likewise.
14305 * lib/ebitset.h (ebitset_bytes): Likewise.
14306 * lib/lbitset.c (lbitset_bytes): Likewise.
14307 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 14308
ff68026d
PE
14309 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
14310 abitset_subset_p, abitset_disjoint_p, abitset_and,
14311 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
14312 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
14313 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
14314 abitset_or_and, abitset_or_and_cmp):
14315 Use bitset_windex instead of unsigned int.
14316 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14317 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
14318 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
14319 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
14320 Likewise.
14321 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 14322
ff68026d
PE
14323 * lib/bitset.c (bitset_print):
14324 Use proper printf formats for widths of integer types.
14325 * lib/bitset_stats.c (bitset_percent_histogram_print,
14326 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
14327 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14328 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14329 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 14330
ff68026d
PE
14331 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
14332 BITSET_SIZE_MAX): New macros.
14333 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
14334 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
14335 to BITSET_WINDEX_MAX.
14336
14337 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
14338 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
14339 since we now return the bitset_bindex type (not int).
14340
14341 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
14342 when computing sizes.
14343 * lib/ebitset.c (ebitset_elts_grow): Likewise.
14344
14345 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
14346 and avoid cast to unsigned.
14347
6aa452a6
AD
143482002-09-30 Akim Demaille <akim@epita.fr>
14349
14350 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
14351 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
14352 Updates from Michael Hayes.
14353
927f7817
AD
143542002-09-30 Art Haas <ahaas@neosoft.com>
14355
14356 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
14357 invocations.
14358 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
14359 defined.
14360
9738f41e
AD
143612002-09-27 Akim Demaille <akim@epita.fr>
14362
14363 Version 1.49c.
14364
a5c75d7f
AD
143652002-09-27 Akim Demaille <akim@epita.fr>
14366
14367 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
14368 (Because of AC_LIBSOURCE).
14369
8280e179
AD
143702002-09-27 Akim Demaille <akim@epita.fr>
14371
14372 Playing with Autoscan.
14373
14374 * configure.ac: Remove the old LIBOBJ tweaks.
14375 (AC_REPLACE_FUNCS): Add strrchr and strtol.
14376 * lib/strrchr.c: New.
14377 * lib/strtol.c: New, from the Coreutils 4.5.1.
14378
ae64af35
AD
143792002-09-27 Akim Demaille <akim@epita.fr>
14380
14381 Playing with Autoscan.
14382
14383 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
14384 * lib/Makefile.am (libbison_a_SOURCES): No longer include
14385 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
14386 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
14387 Coreutils 4.5.1.
14388
d1a1114f
AD
143892002-09-24 Akim Demaille <akim@epita.fr>
14390
14391 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
14392 (Frequently Asked Questions, Parser Stack Overflow): New.
14393
b906441c
AD
143942002-09-13 Akim Demaille <akim@epita.fr>
14395
14396 Playing with autoscan.
14397
14398 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
14399 * src/files.c (skeleton_find): Remove, unused.
14400 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
14401 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
14402
bd701811
AD
144032002-09-13 Akim Demaille <akim@epita.fr>
14404
14405 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
14406 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
14407
e0a13e7b
AD
144082002-09-13 Akim Demaille <akim@epita.fr>
14409
14410 * configure.ac: Require 2.54.
14411 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
14412 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
14413 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
14414 Remove, provided by Autoconf macros.
14415
c97011bf
AD
144162002-09-12 Akim Demaille <akim@epita.fr>
14417
14418 * m4/prereq.m4: Update, from Coreutils 4.5.1.
14419
d862b1be
AD
144202002-09-12 Akim Demaille <akim@epita.fr>
14421
14422 * m4/prereq.m4: Update, from Fileutils 4.1.5.
14423 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
14424 Reported by Martin Mokrejs.
14425
3d38c03a
AD
144262002-09-10 Akim Demaille <akim@epita.fr>
14427
14428 * src/parse-gram.y: Associate a human readable string to each
14429 token type.
14430 * tests/regression.at (Invalid inputs): Adjust.
14431
b6347355
AD
144322002-09-10 Gary V. Vaughan <gary@gnu.org>
14433
14434 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
14435 with an Autoconf-2.5x style configure.ac.
14436
09ba4ab2
PE
144372002-09-06 Paul Eggert <eggert@twinsun.com>
14438
14439 * doc/bison.texinfo (Conditions): Make explicit that the GPL
14440 exception applies only to yacc.c. This is a modification of a
14441 patch originally suggested by Akim Demaille.
14442
21846f69
AD
144432002-09-06 Akim Demaille <akim@epita.fr>
14444
09ba4ab2
PE
14445 * data/c.m4 (b4_copyright): Move the GPL exception comment from
14446 here to...
14447 * data/yacc.c: here.
14448
21846f69
AD
14449 * data/lalr1.cc (struct yyltype): Don't define it, since we use
14450 LocationType.
14451 (b4_ltype): Default to yy::Location from location.hh.
14452
c0ad8bf3
AD
144532002-09-04 Jim Meyering <jim@meyering.net>
14454
14455 * data/yacc.c: Guard the declaration of yytoknum also with
14456 `#ifdef YYPRINT', so it is declared only when used.
14457
3a93251e
AD
144582002-09-04 Akim Demaille <akim@epita.fr>
14459
14460 * configure.in: Rename as...
14461 * configure.ac: this.
14462 Bump to 1.49c.
14463
427c0dda
AD
144642002-09-04 Akim Demaille <akim@epita.fr>
14465
14466 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
14467 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
14468 translate maintainer only messages.
14469
6a254321
PE
144702002-08-12 Paul Eggert <eggert@twinsun.com>
14471
645e30d1
PE
14472 Version 1.49b.
14473
6a254321
PE
14474 * Makefile.am (SUBDIRS): Remove intl.
14475 (DISTCLEANFILES): Remove.
14476 * NEWS: Mention that GNU M4 is now required. Clarify what is
14477 meant by "larger grammars". Mention the pt_BR translation.
14478 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
14479 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
14480 Bump version from 0.11.2 to 0.11.5.
14481 (BISON_PREREQ_STAGE): Remove.
14482 (AM_GNU_GETTEXT): Use external gettext.
14483 (AC_OUTPUT): Remove intl/Makefile.
14484
14485 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
14486
14487 * data/glr.c: Include string.h, for strlen.
14488 (yyreportParseError): Use size_t for yysize.
14489 (yy_yypstack): No longer nested inside yypstates, as nested
14490 functions are not portable. Do not assume size_t is the
14491 same width as int.
14492 (yypstates): Do not assume that ptrdiff_t is the same width
14493 as int, and similarly for yyposn and YYINDEX.
14494
14495 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
14496
14497 * lib/Makefile.am (INCLUDES): Do not include from the intl
14498 directory, which has been removed.
14499 * src/Makefile.am (INCLUDES): Likewise.
14500
14501 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
14502 (bitsets_sources, additional_bitsets_sources, timevars_sources):
14503 New vars.
14504
14505 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
14506 * tests/Makefile.am (EXTRA_DIST): Likewise.
14507
14508 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
14509 Do not assume that bitset_windex is the same width as unsigned.
14510
14511 * lib/abitset.c (abitset_unused_clear): Do not assume that
14512 bitset_word is the same width as int.
14513 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
14514 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
14515 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
14516 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
14517 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
14518
14519 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
14520 portability to one's complement hosts!).
14521 * lib/ebitset.c (ebitset_op1): Likewise.
14522 * lib/lbitset.c (lbitset_op1): Likewise.
14523
14524 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
14525 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
14526 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
14527 Sync with fileutils.
14528 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
14529 lib/gettext.h: Sync with diffutils.
14530
14531 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
14532 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
14533
14534 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
14535 PROTOTYPES to check for prototypes, and "defined __STDC__" to
14536 check for void *.
14537
14538 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
14539 size_t; the old version tried to do this but casted improperly.
14540 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
14541 (bitset_test): Now returns int, not unsigned long.
14542
14543 * lib/bitset_stats.c: Include "gettext.h".
14544 (_): New macro.
14545 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
14546 name locals "index", as it generates unnecessary warnings on some
14547 hosts that have an "index" function.
14548
14549 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
14550 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
14551 they need translation.
14552 * src/LR0.c (state_list_append, new_itemsets, get_state,
14553 append_states, generate_states): Likewise.
14554 * src/assoc.c (assoc_to_string): Likewise.
14555 * src/closure.c (print_closure, set_firsts, closure): Likewise.
14556 * src/gram.c (grammar_dump): Likewise.
14557 * src/injections.c (injections_compute): Likewise.
14558 * src/lalr.c (lookaheads_print): Likewise.
14559 * src/relation.c (relation_transpose): Likewise.
14560 * src/scan-gram.l: Likewise.
14561 * src/tables.c (table_grow, pack_vector): Likewise.
14562
14563 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14564 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14565 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14566 * m4/mbstate_t.m4: Sync with fileutils.
14567 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14568
14569 * po/LINGUAS: Add pt_BR.
14570 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14571 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14572 lib/timevar.c.
14573 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14574 manual recommends.
14575 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14576
14577 * src/complain.c (strerror_r): Remove decl; not needed.
14578 (strerror): Use same pattern as ../lib/error.c.
14579
14580 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14581
14582 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14583
14584 * src/main.c (main): Cast result of bindtextdomain and textdomain
14585 to void, to avoid a GCC warning when --disable-nls is in effect.
14586
14587 * src/scan-gram.l: Use strings rather than escapes when possible,
14588 to minimize the number of warnings from xgettext.
14589 (handle_action_dollar, handle_action_at): Don't use isdigit,
14590 as it mishandles negative chars and it may not work as expected
14591 outside the C locale.
14592
14593 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14594 this is a GCC extension and is not portable to other compilers.
14595
14596 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14597 Do not include <ctype.h>; no longer needed.
14598 Do not include <malloc.h>; no longer needed (and generates
14599 warnings on OpenBSD 3.0).
14600
14601 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14602 it's not portable.
14603
14604 * tests/regression.at: Do not use 'cc -c input.c -o input';
14605 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14606
14607 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14608 exit status as failure, not just exit status 1. Sun C exits
14609 with status 2 sometimes.
14610
14611 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14612 Use it for the two large tests.
14613
c8f002c7
AD
146142002-08-02 Akim Demaille <akim@epita.fr>
14615
14616 * src/conflicts.c (conflicts_output): Don't output rules never
14617 reduced here, since anyway that computation doesn't work.
14618 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14619 (rule_useless_p, rule_never_reduced_p): New.
14620 (grammar_rules_partial_print): Use a filter instead of a range.
14621 Display the title only if needed.
14622 (grammar_rules_print): Adjust.
14623 (grammar_rules_never_reduced_report): New.
14624 * src/tables.c (action_row): Move the computation of rules never
14625 reduced to...
14626 (token_actions): here.
14627 * src/main.c (main): Make the parser before making the report, so
14628 that rules never reduced are computed.
14629 Call grammar_rules_never_reduced_report.
14630 * src/print.c (print_results): Report rules never reduced.
14631 * tests/conflicts.at, tests/reduce.at: Adjust.
14632
cd08e51e
AD
146332002-08-01 Akim Demaille <akim@epita.fr>
14634
14635 Instead of attaching lookaheads and duplicating the rules being
14636 reduced by a state, attach the lookaheads to the reductions.
14637
14638 * src/state.h (state_t): Remove the `lookaheads',
14639 `lookaheads_rule' member.
14640 (reductions_t): Add a `lookaheads' member.
14641 Use a regular array for the `rules'.
14642 * src/state.c (reductions_new): Initialize the lookaheads member
14643 to 0.
14644 (state_rule_lookaheads_print): Adjust.
14645 * src/state.h, src/state.c (state_reductions_find): New.
14646 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14647 (count_rr_conflicts): Adjust.
14648 * src/lalr.c (LArule): Remove.
14649 (add_lookback_edge): Adjust.
14650 (state_lookaheads_count): New.
14651 (states_lookaheads_initialize): Merge into...
14652 (initialize_LA): this.
14653 (lalr_free): Adjust.
14654 * src/main.c (main): Don't free nullable and derives too early: it
14655 is used by --verbose.
14656 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14657
bb0027a9
AD
146582002-08-01 Akim Demaille <akim@epita.fr>
14659
14660 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14661 `rule_number_t**'.
14662 (set_derives, free_derives): Rename as...
14663 (derives_compute, derives_free): this.
14664 Adjust all dependencies.
14665 * src/nullable.c (set_nullable, free_nullable): Rename as...
14666 (nullable_compute, nullable_free): these.
14667 (rule_list_t): Store rule_t *, not rule_number_t.
14668 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14669 pointers, instead of their numbers.
14670 * src/main.c (main): Call nullable_free, and derives_free earlier,
14671 as they were lo longer used.
14672
3325ddc4
AD
146732002-08-01 Akim Demaille <akim@epita.fr>
14674
14675 * lib/timevar.c (get_time): Include children time.
14676 * src/lalr.h (LA, LArule): Don't export them: used with the
14677 state_t.
14678 * src/lalr.c (LA, LArule): Static.
14679 * src/lalr.h, src/lalr.c (lalr_free): New.
14680 * src/main.c (main): Call it.
14681 * src/tables.c (pack_vector): Check whether loc is >= to the
14682 table_size, not >.
14683 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14684 (tables_generate): do it, since that's also it which allocates
14685 them.
14686 Don't free LA and LArule, main does.
14687
c6f1a33c
AD
146882002-07-31 Akim Demaille <akim@epita.fr>
14689
14690 Separate parser tables computation and output.
14691
14692 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14693 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14694 (yydefgoto, yydefact, high): Move to...
14695 * src/tables.h, src/tables.c: here.
14696 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14697 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14698 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14699 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14700 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14701 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14702 (action_row, save_row, token_actions, save_column, default_goto)
14703 (goto_actions, sort_actions, matching_state, pack_vector)
14704 (table_ninf_remap, pack_table, prepare_actions): Move to...
14705 * src/tables.c: here.
14706 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14707 * src/output.c (token_actions, output_base, output_conflicts)
14708 (output_check): Merge into...
14709 (prepare_actions): this.
14710 (actions_output): Rename as...
14711 (user_actions_output): this.
14712 * src/main.c (main): Call tables_generate and tables_free.
14713
1509d42f
AD
147142002-07-31 Akim Demaille <akim@epita.fr>
14715
14716 Steal GCC's --time-report support.
14717
14718 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14719 stolen/adjusted from GCC.
14720 * m4/stage.m4: Remove time related checks.
14721 * m4/timevar.m4: New.
14722 * configure.in: Adjust.
14723 * src/system.h: Adjust to using timevar.h.
14724 * src/getargs.h, src/getargs.c: Support trace_time for
14725 --trace=time.
14726 * src/main.c (stage): Remove.
14727 (main): Replace `stage' invocations with timevar calls.
14728 * src/output.c: Insert pertinent timevar calls.
14729
273a74fa
AD
147302002-07-31 Akim Demaille <akim@epita.fr>
14731
14732 Let --trace have arguments.
14733
14734 * src/getargs.h (enum trace_e): New.
14735 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14736 (long_options, short_options): --trace/-T takes an optional
14737 argument.
14738 Change all the uses of trace_flag to reflect the new flags.
14739 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14740
14741 Strengthen `stage' portability.
14742
14743 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14744 * configure.in: Use it.
14745 Don't check for malloc.h and sys/times.h.
14746 * src/system.h: Include them when appropriate.
14747 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14748 times and struct tms are available.
14749
217598da
AD
147502002-07-30 Akim Demaille <akim@epita.fr>
14751
14752 In verbose parse error message, don't report `error' as an
14753 expected token.
14754 * tests/actions.at (Printers and Destructors): Adjust.
14755 * tests/calc.at (Calculator $1): Adjust.
14756 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14757 error message, do not report the parser accepts the error token in
14758 that state.
14759
52489d44
AD
147602002-07-30 Akim Demaille <akim@epita.fr>
14761
14762 Normalize conflict related messages.
14763
14764 * src/complain.h, src/complain.c (warn, complain): New.
14765 * src/conflicts.c (conflicts_print): Use them.
14766 (conflict_report_yacc): New, extracted from...
14767 (conflicts_print): here.
14768 * tests/conflicts.at, tests/existing.at: Adjust.
14769
e8832397
AD
147702002-07-30 Akim Demaille <akim@epita.fr>
14771
14772 Report rules which are never reduced by the parser: those hidden
14773 by conflicts.
14774
14775 * src/LR0.c (save_reductions): Don't make the final state too
14776 different: save its reduction (accept) instead of having a state
14777 without any action (no shift or goto, no reduce).
14778 Note: the final state is now a ``regular'' state, i.e., the
14779 parsers now contain `reduce 0' as default reduction.
14780 Nevertheless, since they decide to `accept' when yystate =
14781 final_state, they still will not reduce rule 0.
14782 * src/print.c (print_actions, print_reduction): Adjust.
14783 * src/output.c (action_row): Track reduced rules.
14784 (token_actions): Report rules never reduced.
14785 * tests/conflicts.at, tests/regression.at: Adjust.
14786
caf23d24
AD
147872002-07-30 Akim Demaille <akim@epita.fr>
14788
14789 `stage' was accidently included in a previous patch.
14790 Initiate its autoconfiscation.
14791
14792 * configure.in: Look for malloc.h and sys/times.h.
14793 * src/main.c (stage): Adjust.
14794 Report only when trace_flag.
14795
640748ee
AD
147962002-07-29 Akim Demaille <akim@epita.fr>
14797
14798 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14799 state_number_t.
14800 (errs_t): symbol_t*, not symbol_number_t.
14801 (reductions_t): rule_t*, not rule_number_t.
14802 (FOR_EACH_SHIFT): New.
14803 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14804 * src/print.c, src/print_graph.c: Adjust.
14805
88bce5a2
AD
148062002-07-29 Akim Demaille <akim@epita.fr>
14807
14808 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14809
14810 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14811 (endtoken, accept): these.
14812 * src/reader.c (reader): Set endtoken's default tag to "$end".
14813 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14814 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14815 Adjust.
14816
1bfb97db
AD
148172002-07-29 Akim Demaille <akim@epita.fr>
14818
14819 * src/reduce.c (reduce_grammar): When the language is empty,
14820 complain about the start symbol, not the axiom.
14821 Use its location.
14822 * tests/reduce.at (Empty Language): New.
14823
fc5734fe
AD
148242002-07-26 Akim Demaille <akim@epita.fr>
14825
14826 * src/reader.h, src/reader.c (gram_error): ... can't get
14827 yycontrol without making too strong assumptions on the parser
14828 itself.
14829 * src/output.c (prepare_tokens): Use the real 0th value of
14830 token_translations instead of `0'.
14831 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14832 visible here.
14833 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14834 for the time being: %locations ought to provide it to yyerror.
14835
3650b4b8
AD
148362002-07-25 Akim Demaille <akim@epita.fr>
14837
14838 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14839 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14840 * tests/regression.at (Web2c Actions): Adjust.
14841
4b3d3a8e
AD
148422002-07-25 Akim Demaille <akim@epita.fr>
14843
14844 Stop storing rules from 1 to nrules + 1.
14845
14846 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14847 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14848 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14849 Iterate from 0 to nrules.
14850 Use rule_number_as_item_number and item_number_as_rule_number.
14851 Adjust to `derive' now containing possibly 0.
14852 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14853 Handle the `- 1' part in rule numbers from/to item numbers.
14854 * src/conflicts.c (log_resolution): Fix the message which reversed
14855 shift and reduce.
14856 * src/output.c (action_row): Initialize default_rule to -1.
14857 (token_actions): Adjust.
14858 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14859 expected output.
14860 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14861
4a2a22f4
AD
148622002-07-25 Akim Demaille <akim@epita.fr>
14863
14864 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14865 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14866 (b4_c_knr_arg_decl): New.
14867 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14868 yyreport_parse_error.
14869
b8df3223
AD
148702002-07-25 Akim Demaille <akim@epita.fr>
14871
14872 * data/yacc.c (yyreport_parse_error): New, extracted from...
14873 (yyparse): here.
14874 (yydestruct, yysymprint): Move above yyparse.
14875 Be K&R compliant.
14876
a762e609
AD
148772002-07-25 Akim Demaille <akim@epita.fr>
14878
14879 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14880 replace...
14881 (b4_sint_type, b4_uint_type): these.
14882 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14883 * tests/regression.at (Web2c Actions): Adjust.
14884
12b0043a
AD
148852002-07-25 Akim Demaille <akim@epita.fr>
14886
14887 * src/gram.h (TIEM_NUMBER_MAX): New.
14888 (item_number_of_rule_number, rule_number_of_item_number): Rename
14889 as...
14890 (rule_number_as_item_number, item_number_as_rule_number): these.
14891 Adjust dependencies.
14892 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14893 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14894 (symbol_number_to_vector_number): New.
14895 (order): Of vector_number_t* type.
14896 (base_t, BASE_MAX, BASE_MIN): New.
14897 (froms, tos, width, pos, check): Of base_t type.
14898 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14899 (actrow): Of action_number_t type.
14900 (conflrow): Of unsigned int type.
14901 (table_ninf, base_ninf): New.
14902 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14903 (muscle_insert_int_table, muscle_insert_base_table)
14904 (muscle_insert_rule_number_table): New.
14905 (prepare_tokens): Output `toknum' as int_table.
14906 (action_row): Returns a rule_number_t.
14907 Use ACTION_MIN, not SHRT_MIN.
14908 (token_actions): yydefact is rule_number_t*.
14909 (table_ninf_remap): New.
14910 (pack_table): Use it for `base' and `table'.
14911 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
14912 replaced with...
14913 (YYPACT_NINF, YYTABLE_NINF): these.
14914 (yypact, yytable): Compute their types instead of hard-coded
14915 `short'.
14916 * tests/regression.at (Web2c Actions): Adjust.
14917
5dde258a
AD
149182002-07-19 Akim Demaille <akim@epita.fr>
14919
14920 * src/scan-gram.l (id): Can start with an underscore.
14921
a945ec39
AD
149222002-07-16 Akim Demaille <akim@epita.fr>
14923
14924 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
14925 Adjust all former `associativity' dependencies.
14926 * src/symtab.c (symbol_new): Default associativity is `undef', not
14927 `right'.
14928 (symbol_check_alias_consistence): Adjust.
14929
fae437e8
AD
149302002-07-09 Akim Demaille <akim@epita.fr>
14931
14932 * doc/bison.texinfo: Properly set the ``header'' part.
14933 Use @dircategory ``GNU programming tools'' as per Texinfo's
14934 documentation.
14935 Use @copying.
14936
1a715ef2
AD
149372002-07-09 Akim Demaille <akim@epita.fr>
14938
14939 * lib/quotearg.h: Protect against multiple inclusions.
14940 * src/location.h (location_t): Add a `file' member.
14941 (LOCATION_RESET, LOCATION_PRINT): Adjust.
14942 * src/complain.c (warn_at, complain_at, fatal_at): Drop
14943 `error_one_per_line' support.
14944
a5d50994
AD
149452002-07-09 Akim Demaille <akim@epita.fr>
14946
14947 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
14948 * src/reader.c (lineno): Remove.
14949 Adjust all dependencies.
14950 (get_merge_function): Take a location and use complain_at.
14951 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
14952 * tests/regression.at (Invalid inputs, Mixing %token styles):
14953 Adjust.
14954
b275314e
AD
149552002-07-09 Akim Demaille <akim@epita.fr>
14956
14957 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
14958 recovery rule, and forbid extensions when --yacc.
14959 (gram_error): Use complain_at.
14960 * src/reader.c (reader): Exit if there were parse errors.
14961
865b9df1
AD
149622002-07-09 Akim Demaille <akim@epita.fr>
14963
14964 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
14965 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
14966 Reported by R Blake <blakers@mac.com>.
14967
c76e14da
AD
149682002-07-09 Akim Demaille <akim@epita.fr>
14969
14970 * data/yacc.c: Output the copyright notive in the header.
14971
7db2ed2d
AD
149722002-07-03 Akim Demaille <akim@epita.fr>
14973
14974 * src/output.c (froms, tos): Are state_number_t.
14975 (save_column): sp, sp1, and sp2 are state_number_t.
14976 (prepare): Rename `final' as `final_state_number', `nnts' as
14977 `nterms_number', `nrules' as `rules_number', `nstates' as
14978 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
14979 unused.
14980 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
14981 * data/lalr1.cc (nsym_): Remove, unused.
14982
e68e0410
AD
149832002-07-03 Akim Demaille <akim@epita.fr>
14984
14985 * src/lalr.h, src/lalr.c (goto_number_t): New.
14986 * src/lalr.c (goto_list_t): New.
14987 Propagate them.
14988 * src/nullable.c (rule_list_t): New.
14989 Propagate.
14990 * src/types.h: Remove.
14991
e1a4f3a4
AD
149922002-07-03 Akim Demaille <akim@epita.fr>
14993
14994 * src/closure.c (print_fderives): Use rule_rhs_print.
14995 * src/derives.c (print_derives): Use rule_rhs_print.
14996 (rule_list_t): New, replaces `shorts'.
14997 (set_derives): Add comments.
14998 * tests/sets.at (Nullable, Firsts): Adjust.
14999
536545f3
AD
150002002-07-03 Akim Demaille <akim@epita.fr>
15001
15002 * src/output.c (prepare_actions): Free `tally' and `width'.
15003 (prepare_actions): Allocate and free `order'.
15004 * src/symtab.c (symbols_free): Free `symbols'.
15005 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
15006 * src/output.c (m4_invoke): Move to...
15007 * src/scan-skel.l: here.
15008 (<<EOF>>): Close yyout, and free its name.
15009
8b752b00
AD
150102002-07-03 Akim Demaille <akim@epita.fr>
15011
15012 Fix some memory leaks, and fix a bug: state 0 was examined twice.
15013
15014 * src/LR0.c (new_state): Merge into...
15015 (state_list_append): this.
15016 (new_states): Merge into...
15017 (generate_states): here.
15018 (set_states): Don't ensure a proper `errs' state member here, do it...
15019 * src/conflicts.c (conflicts_solve): here.
15020 * src/state.h, src/state.c: Comment changes.
15021 (state_t): Rename member `shifts' as `transitions'.
15022 Adjust all dependencies.
15023 (errs_new): For consistency, also take the values as argument.
15024 (errs_dup): Remove.
15025 (state_errs_set): New.
15026 (state_reductions_set, state_transitions_set): Assert that no
15027 previous value was assigned.
15028 (state_free): New.
15029 (states_free): Use it.
15030 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
15031 temporary storage: use `errs' and `nerrs' as elsewhere.
15032 (set_conflicts): Allocate and free this `errs'.
15033
613f5e1a
AD
150342002-07-02 Akim Demaille <akim@epita.fr>
15035
15036 * lib/libiberty.h: New.
15037 * lib: Update the bitset implementation from upstream.
15038 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
15039 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
15040 * src/main.c: Adjust bitset stats calls.
15041
26e0cadc
PE
150422002-07-01 Paul Eggert <eggert@twinsun.com>
15043
15044 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
15045 char, so that negative chars don't collide with $.
15046
1154cced
AD
150472002-06-30 Akim Demaille <akim@epita.fr>
15048
15049 Have the GLR tests be `warning' checked, and fix the warnings.
15050
15051 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
15052 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
15053 (yyremoveDeletes): `yyi' and `yyj' are size_t.
15054 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
15055 (yyaddDeferredAction): static.
15056 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
15057 (yyreportParseError): yyprefix is const.
15058 yytokenp is used only when verbose.
15059 (yy__GNUC__): Replace with __GNUC__.
15060 (yypdumpstack): yyi is size_t.
15061 (yypreference): Un-yy local variables and arguments, to avoid
15062 clashes with `yyr1'. Anyway, we are not in the user name space.
15063 (yytname_size): be an int, as is compared with ints.
15064 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
15065 Use them.
15066 * tests/cxx-gram.at: Use quotation to protect $1.
15067 Use AT_COMPILE to enable warnings hunts.
15068 Prototype yylex and yyerror.
15069 `Use' argc.
15070 Include `string.h', not `strings.h'.
15071 Produce and prototype stmtMerge only when used.
15072 yylex takes a location.
15073
97650f4e
AD
150742002-06-30 Akim Demaille <akim@epita.fr>
15075
15076 We spend a lot of time in quotearg, in particular when --verbose.
15077
15078 * src/symtab.c (symbol_get): Store a quoted version of the key.
15079 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
15080 Adjust all callers.
15081
d2576365
AD
150822002-06-30 Akim Demaille <akim@epita.fr>
15083
15084 * src/state.h (reductions_t): Rename member `nreds' as num.
15085 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
15086 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
15087
ccaf65bc
AD
150882002-06-30 Akim Demaille <akim@epita.fr>
15089
15090 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
15091 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
15092 (shifts_to): Rename as...
15093 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
15094 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
15095 (TRANSITION_IS_DISABLED, transitions_to): these.
15096
87675353
AD
150972002-06-30 Akim Demaille <akim@epita.fr>
15098
15099 * src/print.c (print_shifts, print_gotos): Merge into...
15100 (print_transitions): this.
15101 (print_transitions, print_errs, print_reductions): Align the
15102 lookaheads columns.
15103 (print_core, print_transitions, print_errs, print_state,
15104 print_grammar): Output empty lines separator before, not after.
15105 (state_default_rule_compute): Rename as...
15106 (state_default_rule): this.
15107 * tests/conflicts.at (Defaulted Conflicted Reduction),
15108 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
15109 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
15110
ce4ccb4b
AD
151112002-06-30 Akim Demaille <akim@epita.fr>
15112
15113 Display items as we display rules.
15114
15115 * src/gram.h, src/gram.c (rule_lhs_print): New.
15116 * src/gram.c (grammar_rules_partial_print): Use it.
15117 * src/print.c (print_core): Likewise.
15118 * tests/conflicts.at (Defaulted Conflicted Reduction),
15119 (Unresolved SR Conflicts): Adjust.
15120 (Unresolved SR Conflicts): Adjust and rename as...
15121 (Resolved SR Conflicts): this, as was meant.
15122 * tests/regression.at (Web2c Report): Adjust.
15123
bc933ef1
AD
151242002-06-30 Akim Demaille <akim@epita.fr>
15125
15126 * src/print.c (state_default_rule_compute): New, extracted from...
15127 (print_reductions): here.
15128 Pessimize, but clarify the code.
15129 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
15130
53d4308d
AD
151312002-06-30 Akim Demaille <akim@epita.fr>
15132
15133 * src/output.c (action_row): Let default_rule be always a rule
15134 number.
15135
574fb2d5
AD
151362002-06-30 Akim Demaille <akim@epita.fr>
15137
15138 * src/closure.c (print_firsts, print_fderives, closure):
15139 Use BITSET_EXECUTE.
15140 * src/lalr.c (lookaheads_print): Likewise.
15141 * src/state.c (state_rule_lookaheads_print): Likewise.
15142 * src/print_graph.c (print_core): Likewise.
15143 * src/print.c (print_reductions): Likewise.
15144 * src/output.c (action_row): Likewise.
15145 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
15146
05811fd7
AD
151472002-06-30 Akim Demaille <akim@epita.fr>
15148
15149 * src/print_graph.c: Use report_flag.
15150
0e4d5753
AD
151512002-06-30 Akim Demaille <akim@epita.fr>
15152
15153 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
15154 to...
15155 * src/relation.h, src/relation.c (traverse, relation_digraph)
15156 (relation_print, relation_transpose): New.
15157
24c7d800
AD
151582002-06-30 Akim Demaille <akim@epita.fr>
15159
15160 * src/state.h, src/state.c (shifts_to): New.
15161 * src/lalr.c (build_relations): Use it.
15162
9222837b
AD
151632002-06-30 Akim Demaille <akim@epita.fr>
15164
15165 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
15166 (item_number_of_rule_number, rule_number_of_item_number): New.
15167 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
15168 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
15169 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
15170 Propagate their use.
15171 Much remains to be done, in particular wrt `shorts' from types.h.
15172
260008e5
AD
151732002-06-30 Akim Demaille <akim@epita.fr>
15174
15175 * src/symtab.c (symbol_new): Initialize the `printer' member.
15176
8a731ca8
AD
151772002-06-30 Akim Demaille <akim@epita.fr>
15178
15179 * src/LR0.c (save_reductions): Remove, replaced by...
15180 * src/state.h, src/state.c (state_reductions_set): New.
15181 (reductions, errs): Rename as...
15182 (reductions_t, errs_t): these.
15183 Adjust all dependencies.
15184
32e1e0a4
AD
151852002-06-30 Akim Demaille <akim@epita.fr>
15186
15187 * src/LR0.c (state_list_t, state_list_append): New.
15188 (first_state, last_state): Now symbol_list_t.
15189 (this_state): Remove.
15190 (new_itemsets, append_states, save_reductions): Take a state_t as
15191 argument.
15192 (set_states, generate_states): Adjust.
15193 (save_shifts): Remove, replaced by...
15194 * src/state.h, src/state.c (state_shifts_set): New.
15195 (shifts): Rename as...
15196 (shifts_t): this.
15197 Adjust all dependencies.
15198 * src/state.h (state_t): Remove the `next' member.
15199
e5fb6710
AD
152002002-06-30 Akim Demaille <akim@epita.fr>
15201
15202 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
15203 escaped in slot 0.
15204
c7ca99d4
AD
152052002-06-30 Akim Demaille <akim@epita.fr>
15206
15207 Use hash.h for the state hash table.
15208
15209 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
15210 (allocate_storage): Use state_hash_new.
15211 (free_storage): Use state_hash_free.
15212 (new_state, get_state): Adjust.
15213 * src/lalr.h, src/lalr.c (states): Move to...
15214 * src/states.h (state_t): Remove the `link' member, no longer
15215 used.
15216 * src/states.h, src/states.c: here.
15217 (state_hash_new, state_hash_free, state_hash_lookup)
15218 (state_hash_insert, states_free): New.
15219 * src/states.c (state_table, state_compare, state_hash): New.
15220 * src/output.c (output_actions): Do not free states now, since we
15221 still need to know the final_state number in `prepare', called
15222 afterwards. Do it...
15223 * src/main.c (main): here: call states_free after `output'.
15224
df0e7316
AD
152252002-06-30 Akim Demaille <akim@epita.fr>
15226
15227 * src/state.h, src/state.c (state_new): New, extracted from...
15228 * src/LR0.c (new_state): here.
15229 * src/state.h (STATE_ALLOC): Move to...
15230 * src/state.c: here.
15231 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
15232 * src/state.h, src/state.c: here.
15233
39f41916
AD
152342002-06-30 Akim Demaille <akim@epita.fr>
15235
15236 * src/reader.c (gensym): Rename as...
15237 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
15238 (getsym): Rename as...
15239 (symbol_get): this.
15240
d57650a5
AD
152412002-06-30 Akim Demaille <akim@epita.fr>
15242
15243 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
15244 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
15245 * src/output.c, src/print.c, src/print_graph.c: Propagate.
15246 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
15247
5a08f1ce
AD
152482002-06-30 Akim Demaille <akim@epita.fr>
15249
15250 Make the test suite pass with warnings checked.
15251
15252 * tests/actions.at (Printers and Destructors): Improve.
15253 Avoid unsigned vs. signed issues.
15254 * tests/calc.at: Don't exercise the scanner here, do it...
15255 * tests/input.at (Torturing the Scanner): here.
15256
720623af
PH
152572002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15258
88e7e941 15259 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
15260 reorganize first lines parallel to yacc.c.
15261
fb8135fa
AD
152622002-06-28 Akim Demaille <akim@epita.fr>
15263
15264 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
15265 (b4_token_enum, b4_token_defines): New, factored from...
15266 * data/lalr1.cc, data/yacc.c, glr.c: here.
15267
41442480
AD
152682002-06-28 Akim Demaille <akim@epita.fr>
15269
15270 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
15271 unused variables.
15272 * src/output.c (merger_output): static.
15273
e0e5bf84
AD
152742002-06-28 Akim Demaille <akim@epita.fr>
15275
ba0fe3c7 15276 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
15277 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
15278 pacify GCC.
15279 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 15280
676385e2
PH
152812002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15282
15283 Accumulated changelog for new GLR parsing features.
15284
6a254321 15285 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
15286 conflicts_total_count.
15287 * src/conflicts.h: Ditto.
15288 * src/output.c (token_actions): Use the new name.
15289 (output_conflicts): Change conflp => conflict_list_heads, and
15290 confl => conflict_list for better readability.
15291 * data/glr.c: Use the new names.
15292 * NEWS: Add self to GLR announcement.
e0e5bf84 15293
676385e2
PH
15294 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
15295
15296 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
15297 Akim Demaille.
15298
15299 * data/bison.glr: Change name to glr.c
15300 * data/glr.c: Renamed from bison.glr.
15301 * data/Makefile.am: Add glr.c
e0e5bf84
AD
15302
15303 * src/getargs.c:
15304
676385e2 15305 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 15306 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 15307
676385e2
PH
15308 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15309
15310 * data/bison.glr: Be sure to restore the
15311 current #line when returning to the skeleton contents after having
15312 exposed the input file's #line.
15313
15314 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15315
15316 * data/bison.glr: Bring up to date with changes to bison.simple.
15317
15318 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15319
15320 * data/bison.glr: Correct definitions that use b4_prefix.
15321 Various reformatting.
15322 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
15323 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
15324 yytokenp argument; now part of stack.
15325 (yychar): Define to behave as documented.
15326 (yyclearin): Ditto.
e0e5bf84 15327
676385e2
PH
15328 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15329
15330 * src/reader.h: Add declaration for free_merger_functions.
15331
15332 * src/reader.c (merge_functions): New variable.
15333 (get_merge_function): New function.
15334 (free_merger_functions): New function.
15335 (readgram): Check for %prec that is not followed by a symbol.
15336 Handle %dprec and %merge declarations.
15337 (packgram): Initialize dprec and merger fields in rules array.
15338
15339 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
15340 conflict_list_cnt, conflict_list_free): New variables.
15341 (table_grow): Also grow conflict_table.
e0e5bf84 15342 (prepare_rules): Output dprec and merger tables.
676385e2 15343 (conflict_row): New function.
e0e5bf84 15344 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
15345 default reduction in conflicted states for GLR parser so that there
15346 are spaces for the conflict lists.
15347 (save_row): Also save conflict information.
15348 (token_actions): Allocate conflict list.
15349 (merger_output): New function.
15350 (pack_vector): Pack conflict table, too.
15351 (output_conflicts): New function to output yyconflp and yyconfl.
15352 (output_check): Allocate conflict_tos.
15353 (output_actions): Output conflict tables, also.
15354 (output_skeleton): Output b4_mergers definition.
15355 (prepare): Output b4_max_rhs_length definition.
15356 Use 'bison.glr' as default skeleton for GLR parsers.
15357
15358 * src/gram.c (glr_parser): New flag.
15359 (grammar_free): Call free_merger_functions.
15360
15361 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
15362 all pairs of conflicting reductions, rather than just all tokens
15363 causing conflicts. Needed to size conflict tables.
e0e5bf84 15364 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
15365 interface.
15366 (conflicts_print): Ditto.
15367 (count_total_conflicts): New function.
15368
15369 * src/reader.h (merger_list): New type.
15370 (merge_functions): New variable.
15371
15372 * src/lex.h (tok_dprec, tok_merge): New token types.
15373
15374 * src/gram.h (rule_s): Add dprec and merger fields.
15375 (glr_parser): New flag.
15376
15377 * src/conflicts.h (count_total_conflicts): New function.
15378
15379 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
15380
15381 * doc/bison.texinfo (Generalized LR Parsing): New section.
15382 (GLR Parsers): New section.
15383 (Language and Grammar): Mention GLR parsing.
15384 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
15385 Correct typo ("tge" -> "the").
15386
15387 * data/bison.glr: New skeleton for GLR parsing.
15388
15389 * tests/cxx-gram.at: New tests for GLR parsing.
15390
15391 * tests/testsuite.at: Include cxx-gram.at.
15392
15393 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 15394
676385e2
PH
15395 * src/parse-gram.y:
15396
15397 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
15398
15399 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 15400
b5480d74 154012002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
15402
15403 * src/options.h, src/options.c: Remove.
15404 * src/getargs.c (short_options, long_options): New.
15405
60491a94
AD
154062002-06-27 Akim Demaille <akim@epita.fr>
15407
15408 * data/bison.simple, data/bison.c++: Rename as...
15409 * data/yacc.c, data/lalr1.cc: these.
15410 * doc/bison.texinfo (Environment Variables): Remove.
15411
9be0c25b
AD
154122002-06-25 Raja R Harinath <harinath@cs.umn.edu>
15413
15414 * src/getargs.c (report_argmatch): Initialize strtok().
15415
1ae72863
AD
154162002-06-20 Akim Demaille <akim@epita.fr>
15417
15418 * data/bison.simple (b4_symbol_actions): New, replaces...
15419 (b4_symbol_destructor, b4_symbol_printer): these.
15420 (yysymprint): Be sure to call YYPRINT only for tokens, and using
15421 user token numbers.
15422
87542d29
AD
154232002-06-20 Akim Demaille <akim@epita.fr>
15424
15425 * data/bison.simple (yydestructor): Rename as...
15426 (yydestruct): this.
15427
1a31ed21
AD
154282002-06-20 Akim Demaille <akim@epita.fr>
15429
15430 * src/symtab.h, src/symtab.c (symbol_type_set)
15431 (symbol_destructor_set, symbol_precedence_set): The location is
15432 the last argument.
15433 Adjust all callers.
15434
e776192e
AD
154352002-06-20 Akim Demaille <akim@epita.fr>
15436
15437 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
15438 internals.
15439 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
15440 Takes a location.
15441 * src/symtab.h, src/symtab.c (symbol_class_set)
15442 (symbol_user_token_number_set): Likewise.
15443 Adjust all callers.
15444 Promote complain_at.
15445 * tests/input.at (Type Clashes): Adjust.
15446
5c1180b3
AD
154472002-06-20 Akim Demaille <akim@epita.fr>
15448
15449 * data/bison.simple (YYLEX): Fix the declaration when
15450 %pure-parser.
15451
e3170060
AD
154522002-06-20 Akim Demaille <akim@epita.fr>
15453
15454 * data/bison.simple (yysymprint): Don't print the token number,
15455 just its name.
15456 * tests/actions.at (Destructors): Rename as...
15457 (Printers and Destructors): this.
15458 Also exercise %printer.
15459
253862fd
AD
154602002-06-20 Akim Demaille <akim@epita.fr>
15461
15462 * data/bison.simple (YYDSYMPRINT): New.
15463 Use it to remove many of the #if YYDEBUG/if (yydebug).
15464
366eea36
AD
154652002-06-20 Akim Demaille <akim@epita.fr>
15466
15467 * src/symtab.h, src/symtab.c (symbol_t): printer and
15468 printer_location are new members.
15469 (symbol_printer_set): New.
15470 * src/parse-gram.y (PERCENT_PRINTER): New token.
15471 Handle its associated rule.
15472 * src/scan-gram.l: Adjust.
15473 (handle_destructor_at, handle_destructor_dollar): Rename as...
15474 (handle_symbol_code_at, handle_symbol_code_dollar): these.
15475 * src/output.c (symbol_printers_output): New.
15476 (output_skeleton): Call it.
15477 * data/bison.simple (yysymprint): New. Cannot be named yyprint
15478 since there are already many grammar files with a user `yyprint'.
15479 Replace the calls to YYPRINT to calls to yysymprint.
15480 * tests/calc.at: Adjust.
15481 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
15482 taking advantage of parser very internal details (stack size!).
15483
4f25ebb0
AD
154842002-06-20 Akim Demaille <akim@epita.fr>
15485
15486 * src/scan-gram.l: Complete the scanner with the missing patterns
15487 to pacify Flex.
15488 Use `quote' and `symbol_tag_get' where appropriate.
15489
93b68a0e
AD
154902002-06-19 Akim Demaille <akim@epita.fr>
15491
15492 * tests/actions.at (Destructors): Augment to test locations.
15493 * data/bison.simple (yydestructor): Pass it the current location
15494 if locations are enabled.
15495 Prototype only when __STDC__ or C++.
15496 Change the argument names to move into the yy name space: there is
15497 user code here.
15498
58612f1d
AD
154992002-06-19 Akim Demaille <akim@epita.fr>
15500
74310291
AD
15501 * data/bison.simple (b4_pure_if): New.
15502 Use it instead of #ifdef YYPURE.
15503
155042002-06-19 Akim Demaille <akim@epita.fr>
15505
15506 * data/bison.simple (b4_location_if): New.
58612f1d
AD
15507 Use it instead of #ifdef YYLSP_NEEDED.
15508
f25bfb75
AD
155092002-06-19 Akim Demaille <akim@epita.fr>
15510
15511 Prepare @$ in %destructor, but currently don't bind it in the
15512 skeleton, as %location use is not cleaned up yet.
15513
15514 * src/scan-gram.l (handle_dollar, handle_destructor_at)
15515 (handle_action_at): New.
15516 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
15517 a braced_code_t and a location as additional arguments.
15518 (handle_destructor_dollar): Instead of requiring `b4_eval', just
15519 unquote one when outputting `b4_dollar_dollar'.
15520 Adjust callers.
15521 * data/bison.simple (b4_eval): Remove.
15522 (b4_symbol_destructor): Adjust.
15523 * tests/input.at (Invalid @n): Adjust.
15524
c732d2c6
AD
155252002-06-19 Zack Weinberg <zack@codesourcery.com>
15526
15527 * doc/bison.texinfo: Document ability to have multiple
15528 prologue sections.
15529
8c165d89
AD
155302002-06-18 Akim Demaille <akim@epita.fr>
15531
15532 * src/files.c (compute_base_names): When computing the output file
15533 names from the input file name, strip the directory part.
15534
ca98bf57
AD
155352002-06-18 Akim Demaille <akim@epita.fr>
15536
15537 * data/bison.simple.new: Comment changes.
15538 Reported by Andreas Schwab.
15539
0bfb02ff
AD
155402002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
15541
15542 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
15543 there are no `label `yyoverflowlab' defined but not used' warnings
15544 when yyoverflow is defined.
15545
24c0aad7
AD
155462002-06-18 Akim Demaille <akim@epita.fr>
15547
15548 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
15549 new member.
15550 (symbol_destructor_set): Adjust.
15551 * src/output.c (symbol_destructors_output): Output the destructor
15552 locations.
15553 Output the symbol name.
15554 * data/bison.simple (b4_symbol_destructor): Adjust.
15555
5719c109
AD
155562002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
15557 and Akim Demaille <akim@epita.fr>
15558
15559 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
15560 what's left on the stack when the error recovery hits EOF.
15561 * tests/actions.at (Destructors): Complete to exercise this case.
15562
9280d3ef
AD
155632002-06-17 Akim Demaille <akim@epita.fr>
15564
15565 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15566 arguments is really empty, not only equal to `[]'.
15567 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15568 member.
15569 (symbol_destructor_set): New.
15570 * src/output.c (symbol_destructors_output): New.
15571 * src/reader.h (brace_code_t, current_braced_code): New.
15572 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15573 (handle_dollar): Rename as...
15574 (handle_action_dollar): this.
15575 (handle_destructor_dollar): New.
15576 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15577 (grammar_declaration): Use it.
15578 * data/bison.simple (yystos): Is always defined.
15579 (yydestructor): New.
15580 * tests/actions.at (Destructors): New.
15581 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15582
dafdc66f
AD
155832002-06-17 Akim Demaille <akim@epita.fr>
15584
15585 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15586 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15587 rule_length only when needed.
15588 * src/output.c (actions_output, token_definitions_output): Output
15589 the full M4 block.
15590 * src/symtab.c: Don't access directly to the symbol tag, use
15591 symbol_tag_get.
15592 * src/parse-gram.y: Use symbol_list_free.
15593
56c47203
AD
155942002-06-17 Akim Demaille <akim@epita.fr>
15595
15596 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15597 (symbol_list_prepend, get_type_name): Move to...
15598 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15599 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15600 Adjust all callers.
15601 (symbol_list_free): New.
15602 * src/scan-gram.l (handle_dollar): Takes a location.
15603 * tests/input.at (Invalid $n): Adjust.
15604
1e0bab92
AD
156052002-06-17 Akim Demaille <akim@epita.fr>
15606
15607 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15608 (symbol_list_prepend): New.
15609 * src/parse-gram.y (%union): `list' is a new member.
15610 (symbols.1): New, replaces...
15611 (terms_to_prec.1, nterms_to_type.1): these.
15612 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15613 Take a location as additional argument.
15614 Adjust all callers.
15615
04e60654
AD
156162002-06-15 Akim Demaille <akim@epita.fr>
15617
15618 * src/parse-gram.y: Move %token in the declaration section so that
15619 we don't depend upon CVS Bison.
15620
10e5b8bd
AD
156212002-06-15 Akim Demaille <akim@epita.fr>
15622
15623 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15624 * src/print.c (print_core): Use it.
15625
9801d40c
AD
156262002-06-15 Akim Demaille <akim@epita.fr>
15627
15628 * src/conflicts.c (log_resolution): Accept the rule involved in
15629 the sr conflicts instead of the lookahead number that points to
15630 that rule.
15631 (flush_reduce): Accept the current lookahead vector as argument,
15632 instead of the index in LA.
15633 (resolve_sr_conflict): Accept the current number of lookahead
15634 bitset to consider for the STATE, instead of the index in LA.
15635 (set_conflicts): Adjust.
15636 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15637
c0263492
AD
156382002-06-15 Akim Demaille <akim@epita.fr>
15639
15640 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15641 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15642 Adjust all dependencies.
15643 * src/lalr.c (initialize_lookaheads): Split into...
15644 (states_lookaheads_count, states_lookaheads_initialize): these.
15645 (lalr): Adjust.
15646
9757c359
AD
156472002-06-15 Akim Demaille <akim@epita.fr>
15648
15649 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15650 out of...
15651 (grammar_rules_print): here.
15652 * src/reduce.c (reduce_output): Use it.
15653 * tests/reduce.at (Useless Rules, Reduced Automaton)
15654 (Underivable Rules): Adjust.
15655
6b98e4b5
AD
156562002-06-15 Akim Demaille <akim@epita.fr>
15657
15658 Copy BYacc's nice way to report the grammar.
15659
15660 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15661 New.
15662 Don't print the rules' location, it is confusing and useless.
15663 (rule_print): Use grammar_rhs_print.
15664 * src/print.c (print_grammar): Use grammar_rules_print.
15665
6b98e4b5
AD
156662002-06-15 Akim Demaille <akim@epita.fr>
15667
15668 Complete and rationalize `useless thing' warnings.
15669
15670 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15671 (symbol_tag_print): New.
15672 Use them everywhere in place of accessing directly the tag member.
15673 * src/gram.h, src/gram.c (rule_print): New.
15674 Use it where a rule used to be printed `by hand'.
15675 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15676 (reduce_grammar_tables): Report the useless rules.
15677 (reduce_print): Useless things are a warning, not an error.
15678 Report it as such.
15679 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15680 (Reduced Automaton, Underivable Rules): Adjust.
15681 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15682 * tests/conflicts.at (Unresolved SR Conflicts)
15683 (Solved SR Conflicts): Adjust.
15684
ee000ba4
AD
156852002-06-15 Akim Demaille <akim@epita.fr>
15686
15687 Let symbols have a location.
15688
15689 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15690 (getsym): Adjust.
15691 Adjust all callers.
15692 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15693 Use location_t, not int.
15694 * src/symtab.c (symbol_check_defined): Take advantage of the
15695 location.
15696 * tests/regression.at (Invalid inputs): Adjust.
15697
8efe435c
AD
156982002-06-15 Akim Demaille <akim@epita.fr>
15699
15700 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15701 (input): Don't try to initialize yylloc here, do it in the
15702 scanner.
15703 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15704 * src/gram.h (rule_t): Change line and action_line into location
15705 and action_location, of location_t type.
15706 Adjust all dependencies.
15707 * src/location.h, src/location.c (empty_location): New.
15708 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15709 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15710 (grammar_current_rule_symbol_append)
15711 (grammar_current_rule_action_append): Expect a location as argument.
15712 * src/reader.c (grammar_midrule_action): Adjust to attach an
15713 action's location as dummy symbol location.
15714 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15715 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15716 the line numbers.
15717
1921f1d7
AD
157182002-06-14 Akim Demaille <akim@epita.fr>
15719
15720 Grammar declarations may be found in the grammar section.
15721
15722 * src/parse-gram.y (rules_or_grammar_declaration): New.
15723 (declarations): Each declaration may end with a semicolon, not
15724 just...
15725 (grammar_declaration): `"%union"'.
15726 (grammar): Branch to rules_or_grammar_declaration.
15727
4515534c
AD
157282002-06-14 Akim Demaille <akim@epita.fr>
15729
15730 * src/main.c (main): Invoke scanner_free.
15731
f958596b
AD
157322002-06-14 Akim Demaille <akim@epita.fr>
15733
15734 * src/output.c (m4_invoke): Extracted from...
15735 (output_skeleton): here.
15736 Free tempfile.
15737
2c569025
AD
157382002-06-14 Akim Demaille <akim@epita.fr>
15739
15740 * src/parse-gram.y (directives, directive, gram)
15741 (grammar_directives, precedence_directives, precedence_directive):
15742 Rename as...
15743 (declarations, declaration, grammar, grammar_declaration)
15744 (precedence_declaration, precedence_declarator): these.
15745 (symbol_declaration): New.
15746
592e8d4d
AD
157472002-06-14 Akim Demaille <akim@epita.fr>
15748
15749 * src/files.c (action_obstack): Remove, unused.
15750 (output_obstack): Remove it, and all its dependencies, as it is no
15751 longer needed.
15752 * src/reader.c (epilogue_set): Build the epilogue in the
15753 muscle_obstack.
15754 * src/output.h, src/output.c (muscle_obstack): Move to...
15755 * src/muscle_tab.h, src/muscle_tab.h: here.
15756 (muscle_init): Initialize muscle_obstack.
15757 (muscle_free): New.
15758 * src/main.c (main): Call it.
15759
0c15323d
AD
157602002-06-14 Akim Demaille <akim@epita.fr>
15761
15762 * src/location.h: New, extracted from...
15763 * src/reader.h: here.
15764 * src/Makefile.am (noinst_HEADERS): Merge into
15765 (bison_SOURCES): this.
15766 Add location.h.
15767 * src/parse-gram.y: Use location_t instead of Bison's.
15768 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15769 Use location_t instead of ints.
15770
e96c9728
AD
157712002-06-14 Akim Demaille <akim@epita.fr>
15772
15773 * data/bison.simple, data/bison.c++: Be sure to restore the
15774 current #line when returning to the skeleton contents after having
15775 exposed the input file's #line.
15776
75d1fe16
AD
157772002-06-12 Akim Demaille <akim@epita.fr>
15778
15779 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15780 eager.
15781 * tests/actions.at (Exotic Dollars): New.
15782
6c35d22c
AD
157832002-06-12 Akim Demaille <akim@epita.fr>
15784
15785 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15786 ['"/] too eagerly.
15787 * tests/input.at (Torturing the Scanner): New.
15788
1d6412ad
AD
157892002-06-11 Akim Demaille <akim@epita.fr>
15790
15791 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15792 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15793 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15794 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15795 * src/reader.c (reader): Use it.
15796
4cdb01db
AD
157972002-06-11 Akim Demaille <akim@epita.fr>
15798
15799 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15800 Adjust all callers.
15801 (scanner_last_string_free): New.
15802
44995b2e
AD
158032002-06-11 Akim Demaille <akim@epita.fr>
15804
15805 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15806 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15807 (last_string, YY_OBS_FREE): New.
15808 Use them when returning an ID.
15809
e9955c83
AD
158102002-06-11 Akim Demaille <akim@epita.fr>
15811
15812 Have Bison grammars parsed by a Bison grammar.
15813
15814 * src/reader.c, src/reader.h (prologue_augment): New.
15815 * src/reader.c (copy_definition): Remove.
15816
15817 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15818 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15819 (grammar_current_rule_prec_set, grammar_current_rule_check)
15820 (grammar_current_rule_symbol_append)
15821 (grammar_current_rule_action_append): Export.
15822 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15823 (symbol_list_action_append): Remove.
15824 Hook the routines from reader.
15825 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15826 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15827
15828 * src/reader.c (read_declarations): Remove, unused.
15829
15830 * src/parse-gram.y: Handle the epilogue.
15831 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15832 (grammar_start_symbol_set): this.
15833 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15834 * src/reader.c (readgram): Remove, unused.
15835 (reader): Adjust to insert eoftoken and axiom where appropriate.
15836
15837 * src/reader.c (copy_dollar): Replace with...
15838 * src/scan-gram.h (handle_dollar): this.
15839 * src/parse-gram.y: Remove `%thong'.
15840
15841 * src/reader.c (copy_at): Replace with...
15842 * src/scan-gram.h (handle_at): this.
15843
15844 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15845 New.
15846
15847 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15848 time being.
15849
15850 * src/reader.h, src/reader.c (grammar_rule_end): New.
15851
15852 * src/parse.y (current_type, current_class): New.
15853 Implement `%nterm', `%token' support.
15854 Merge `%term' into `%token'.
15855 (string_as_id): New.
15856 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15857 type name.
15858
15859 * src/parse-gram.y: Be sure to handle properly the beginning of
15860 rules.
15861
15862 * src/parse-gram.y: Handle %type.
15863 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15864
15865 * src/parse-gram.y: More directives support.
15866 * src/options.c: No longer handle source directives.
15867
15868 * src/parse-gram.y: Fix %output.
15869
15870 * src/parse-gram.y: Handle %union.
15871 Use the prologue locations.
15872 * src/reader.c (parse_union_decl): Remove.
15873
15874 * src/reader.h, src/reader.c (epilogue_set): New.
15875 * src/parse-gram.y: Use it.
15876
15877 * data/bison.simple, data/bison.c++: b4_stype is now either not
15878 defined, then default to int, or to the contents of %union,
15879 without `union' itself.
15880 Adjust.
15881 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15882
15883 * src/output.c (actions_output): Don't output braces, as they are
15884 already handled by the scanner.
15885
15886 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15887 characters to themselves.
15888
15889 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15890 that the epilogue has a proper #line.
15891
15892 * src/parse-gram.y: Handle precedence/associativity.
15893
15894 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15895 a terminal.
15896 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15897 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15898 at all to define terminals that cannot be emitted.
15899
15900 * src/scan-gram.l: Escape M4 characters.
15901
15902 * src/scan-gram.l: Working properly with escapes in user
15903 strings/characters.
15904
15905 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15906 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15907 grammar.
15908 Use more modest sizes, as for the time being the parser does not
15909 release memory, and therefore the process swallows a huge amount
15910 of memory.
15911
15912 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
15913 stricter %token grammar.
15914
15915 * src/symtab.h (associativity): Add `undef_assoc'.
15916 (symbol_precedence_set): Do nothing when passed an undef_assoc.
15917 * src/symtab.c (symbol_check_alias_consistence): Adjust.
15918
15919 * tests/regression.at (Invalid %directive): Remove, as it is now
15920 meaningless.
15921 (Invalid inputs): Adjust to the new error messages.
15922 (Token definitions): The new grammar doesn't allow too many
15923 eccentricities.
15924
15925 * src/lex.h, src/lex.c: Remove.
15926 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
15927 (copy_character, copy_string2, copy_string, copy_identifier)
15928 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
15929 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
15930 (parse_action): Remove.
15931 * po/POTFILES.in: Adjust.
15932
2e047461
AD
159332002-06-11 Akim Demaille <akim@epita.fr>
15934
cd05d13c 15935 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
15936 rule's action member: return the action as a string.
15937 Don't require `rule_length' as an argument: compute it.
15938 (grammar_current_rule_symbol_append)
15939 (grammar_current_rule_action_append): New, eved out from
15940 (readgram): here.
15941 Remove `action_flag', `rulelength', unused now.
15942
9af3fbce
AD
159432002-06-11 Akim Demaille <akim@epita.fr>
15944
15945 * src/reader.c (grammar_current_rule_prec_set).
15946 (grammar_current_rule_check): New, eved out from...
15947 (readgram): here.
15948 Remove `xaction', `first_rhs': useless.
15949 * tests/input.at (Type clashes): New.
15950 * tests/existing.at (GNU Cim Grammar): Adjust.
15951
1485e106
AD
159522002-06-11 Akim Demaille <akim@epita.fr>
15953
15954 * src/reader.c (grammar_midrule_action): New, Eved out from
15955 (readgram): here.
15956
da4160c3
AD
159572002-06-11 Akim Demaille <akim@epita.fr>
15958
15959 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
15960 New.
15961 (readgram): Use them as replacement of inlined code, crule and
15962 crule1.
15963
f6d0f937
AD
159642002-06-11 Akim Demaille <akim@epita.fr>
15965
15966 * src/reader.c (grammar_end, grammar_symbol_append): New.
15967 (readgram): Use them.
15968 Make the use of `p' as local as possible.
15969
69078d4b
AD
159702002-06-10 Akim Demaille <akim@epita.fr>
15971
15972 GCJ's parser requires the tokens to be defined before the prologue.
15973
15974 * data/bison.simple: Output the token definition before the user's
15975 prologue.
15976 * tests/regression.at (Braces parsing, Duplicate string)
15977 (Mixing %token styles): Check the output from bison.
15978 (Early token definitions): New.
15979
5e424082
AD
159802002-06-10 Akim Demaille <akim@epita.fr>
15981
15982 * src/symtab.c (symbol_user_token_number_set): Don't complain when
15983 assigning twice the same user number to a token, so that we can
15984 use it in...
15985 * src/lex.c (lex): here.
15986 Also use `symbol_class_set' instead of hand written code.
15987 * src/reader.c (parse_assoc_decl): Likewise.
15988
44536b35
AD
159892002-06-10 Akim Demaille <akim@epita.fr>
15990
15991 * src/symtab.c, src/symtab.c (symbol_class_set)
15992 (symbol_user_token_number_set): New.
15993 * src/reader.c (parse_token_decl): Use them.
15994 Use a switch instead of ifs.
15995 Use a single argument.
15996
8b9f2372
AD
159972002-06-10 Akim Demaille <akim@epita.fr>
15998
15999 Remove `%thong' support as it is undocumented, unused, duplicates
16000 `%token's job, and creates useless e-mail traffic with people who
16001 want to know what it is, why it is undocumented, unused, and
16002 duplicates `%token's job.
16003
16004 * src/reader.c (parse_thong_decl): Remove.
16005 * src/options.c (option_table): Remove "thong".
16006 * src/lex.h (tok_thong): Remove.
16007
3ae2b51f
AD
160082002-06-10 Akim Demaille <akim@epita.fr>
16009
16010 * src/symtab.c, src/symtab.c (symbol_type_set)
16011 (symbol_precedence_set): New.
16012 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
16013 (value_components_used): Remove, unused.
16014
2f1afb73
AD
160152002-06-09 Akim Demaille <akim@epita.fr>
16016
16017 Move symbols handling code out of the reader.
16018
16019 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
16020 (axiom): Move to...
16021 * src/symtab.h, src/symtab.c: here.
16022
16023 * src/gram.c (start_symbol): Remove: use startsymbol->number.
16024 * src/reader.c (startval): Rename as...
16025 * src/symtab.h, src/symtab.c (startsymbol): this.
16026 * src/reader.c: Adjust.
16027
16028 * src/reader.c (symbol_check_defined, symbol_make_alias)
16029 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16030 (token_translations_init)
16031 Move to...
16032 * src/symtab.c: here.
16033 * src/reader.c (packsymbols): Move to...
16034 * src/symtab.h, src/symtab.c (symbols_pack): here.
16035 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
16036 argument.
16037
e9bca3ad
AD
160382002-06-03 Akim Demaille <akim@epita.fr>
16039
16040 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
16041 then statements.
16042
86eff183
AD
160432002-06-03 Akim Demaille <akim@epita.fr>
16044
16045 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
16046 structs with non literals.
16047 * src/scan-skel.l: never-interactive.
16048 * src/conflicts.c (enum conflict_resolution_e): No trailing
16049 comma.
16050 * src/getargs.c (usage): Split long literal strings.
16051 Reported by Hans Aberg.
16052
717be197
AD
160532002-05-28 Akim Demaille <akim@epita.fr>
16054
16055 * data/bison.c++: Use C++ ostreams.
16056 (cdebug_): New member.
16057
670ddffd
AD
160582002-05-28 Akim Demaille <akim@epita.fr>
16059
16060 * src/output.c (output_skeleton): Be sure to allocate enough room
16061 for `/' _and_ for `\0' in full_skeleton.
16062
769b430f
AD
160632002-05-28 Akim Demaille <akim@epita.fr>
16064
16065 * data/bison.c++: Catch up with bison.simple:
16066 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16067 and Paul Eggert <eggert@twinsun.com>: `error' handing.
16068 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
16069 and popping traces.
16070
7067cb36
PH
160712002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16072
16073 * src/output.c (output_skeleton): Put an explicit path in front of
16074 the skeleton file name, rather than relying on the -I directory,
16075 to partially alleviate effects of having a skeleton file lying around
16076 in the current directory.
769b430f 16077
4a713ec2
PH
160782002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16079
769b430f 16080 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
16081 obstack_printf should be obstack_fgrow1.
16082
b408954b
AD
160832002-05-26 Akim Demaille <akim@epita.fr>
16084
16085 * src/state.h (state_t): `solved_conflicts' is a new member.
16086 * src/LR0.c (new_state): Set it to 0.
16087 * src/conflicts.h, src/conflicts.c (print_conflicts)
16088 (free_conflicts, solve_conflicts): Rename as...
16089 (conflicts_print, conflicts_free, conflicts_solve): these.
16090 Adjust callers.
16091 * src/conflicts.c (enum conflict_resolution_e)
16092 (solved_conflicts_obstack): New, used by...
16093 (log_resolution): this.
16094 Adjust to attach the conflict resolution to each state.
16095 Complete the description with the precedence/associativity
16096 information.
16097 (resolve_sr_conflict): Adjust.
16098 * src/print.c (print_state): Output its solved_conflicts.
16099 * tests/conflicts.at (Unresolved SR Conflicts)
16100 (Solved SR Conflicts): Exercise --report=all.
16101
a49aecd5
AD
161022002-05-26 Akim Demaille <akim@epita.fr>
16103
16104 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16105 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16106 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
16107 (token_number_t, item_number_as_token_number)
16108 (token_number_as_item_number, muscle_insert_token_number_table):
16109 Rename as...
16110 (symbol_number_t, item_number_as_symbol_number)
16111 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
16112 these, since it is more appropriate.
16113
5504898e
AD
161142002-05-26 Akim Demaille <akim@epita.fr>
16115
16116 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
16117 `Error:' lines.
16118 * data/bison.simple (yystos) [YYDEBUG]: New.
16119 (yyparse) [YYDEBUG]: Display the symbols which are popped during
16120 error recovery.
16121 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
16122
ec3bc396
AD
161232002-05-25 Akim Demaille <akim@epita.fr>
16124
16125 * doc/bison.texinfo (Debugging): Split into...
16126 (Tracing): this new section, its former contents, and...
16127 (Understanding): this new section.
16128 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
16129 by...
16130 (report_flag): this.
16131 Adjust all dependencies.
16132 (report_args, report_types, report_argmatch): New.
16133 (usage, getargs): Report/support -r, --report.
16134 * src/options.h
16135 (struct option_table_struct): Rename as..,
16136 (struct option_table_s): this.
16137 Rename the `set_flag' member to `flag' to match with getopt_long's
16138 struct.
16139 * src/options.c (option_table): Split verbose into an entry for
16140 %verbose, and another for --verbose.
16141 Support --report/-r, so remove -r from the obsolete --raw.
16142 * src/print.c: Attach full item sets and lookaheads reports to
16143 report_flag instead of trace_flag.
16144 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
16145
78df8250
PE
161462002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16147 and Paul Eggert <eggert@twinsun.com>
769b430f 16148
78df8250
PE
16149 * data/bison.simple (yyparse): Correct error handling to conform to
16150 POSIX and yacc. Specifically, after syntax error is discovered,
16151 do not reduce further before shifting the error token.
16152 Clean up the code a bit by removing the labels yyerrdefault,
16153 yyerrhandle, yyerrpop.
16154 * NEWS: Document the above.
16155
c0c9ea05
PH
161562002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16157
16158 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
16159 type; it isn't always big enough, since it doesn't necessarily
16160 include non-terminals.
769b430f 16161 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
16162 the latter can be removed.
16163 (yy_token_number_type): Remove, only one use.
16164 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
16165 don't use TokenNumberType as element type.
769b430f 16166
c0c9ea05
PH
16167 * tests/regression.at: Modify expected output to agree with change
16168 to yyr1 and yytranslate.
769b430f 16169
6390a83f
FK
161702002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
16171
16172 * src/reader.c (parse_action): Use copy_character instead of
16173 obstack_1grow.
16174
db7c8e9a
AD
161752002-05-13 Akim Demaille <akim@epita.fr>
16176
16177 * tests/regression.at (Token definitions): Prototype yylex and
16178 yyerror.
16179
fcc61800
PH
161802002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16181
158c687b 16182 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
16183 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
16184 32-bit arithmetic.
16185 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
16186
5683e9b2
AD
161872002-05-07 Akim Demaille <akim@epita.fr>
16188
16189 * tests/synclines.at: Be sure to prototype yylex and yyerror to
16190 avoid GCC warnings.
16191
0c2d3f4c
AD
161922002-05-07 Akim Demaille <akim@epita.fr>
16193
16194 Kill GCC warnings.
16195
16196 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
16197 over the RHS of each rule.
16198 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
16199 * src/state.h (state_t): Member `nitems' is unsigned short.
16200 * src/LR0.c (get_state): Adjust.
16201 * src/reader.c (packgram): Likewise.
16202 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
16203 `Type'.
16204 (muscle_insert_int_table): Remove, unused.
16205 (prepare_rules): Remove `max'.
16206
1565b720
AD
162072002-05-06 Akim Demaille <akim@epita.fr>
16208
16209 * src/closure.c (print_firsts): Display of the symbol tags.
16210 (bitmatrix_print): Move to...
16211 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
16212 here.
16213 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
16214
cfaee611
AD
162152002-05-06 Akim Demaille <akim@epita.fr>
16216
16217 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
16218 hash_do_for_each.
16219
458be8e0
AD
162202002-05-06 Akim Demaille <akim@epita.fr>
16221
16222 * src/LR0.c (new_state, get_state): Instead of using the global
16223 `kernel_size' and `kernel_base', have two new arguments:
16224 `core_size' and `core'.
16225 Adjust callers.
16226
a900a624
AD
162272002-05-06 Akim Demaille <akim@epita.fr>
16228
16229 * src/reader.c (packgram): No longer end `ritem' with a 0
16230 sentinel: it is not used.
16231
d4e7d3a1
AD
162322002-05-05 Akim Demaille <akim@epita.fr>
16233
16234 New experimental feature: display the lookaheads in the report and
16235 graph.
16236
16237 * src/print (print_core): When --trace-flag, display the rules
16238 lookaheads.
16239 * src/print_graph.c (print_core): Likewise.
16240 Swap the arguments.
16241 Adjust caller.
16242
39ceb25b
AD
162432002-05-05 Akim Demaille <akim@epita.fr>
16244
16245 * tests/torture.at (Many lookaheads): New test.
16246
5372019f
AD
162472002-05-05 Akim Demaille <akim@epita.fr>
16248
16249 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
16250 (GENERATE_MUSCLE_INSERT_TABLE): this.
16251 (output_int_table, output_unsigned_int_table, output_short_table)
16252 (output_token_number_table, output_item_number_table): Replace with...
16253 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
16254 (muscle_insert_short_table, muscle_insert_token_number_table)
16255 (muscle_insert_item_number_table): these.
16256 Adjust all callers.
16257 (prepare_tokens): Don't free `translations', since...
16258 * src/reader.h, src/reader.c (grammar_free): do it.
16259 Move to...
16260 * src/gram.h, src/gram.c (grammar_free): here.
16261 * data/bison.simple, data/bison.c++: b4_token_number_max is now
16262 b4_translate_max.
16263
5df5f6d5
AD
162642002-05-05 Akim Demaille <akim@epita.fr>
16265
16266 * src/output.c (output_unsigned_int_table): New.
16267 (prepare_rules): `i' is unsigned.
16268 `prhs', `rline', `r2' are unsigned int.
16269 Rename muscle `rhs_number_max' as `rhs_max'.
16270 Output muscles `prhs_max', `rline_max', and `r2_max'.
16271 Free rline and r1.
16272 * data/bison.simple, data/bison.c++: Adjust to use these muscles
16273 to compute types instead of constant types.
16274 * tests/regression.at (Web2c Actions): Adjust.
16275
b87f8b21
AD
162762002-05-04 Akim Demaille <akim@epita.fr>
16277
16278 * src/symtab.h (SALIAS, SUNDEF): Rename as...
16279 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
16280 Adjust dependencies.
16281 * src/output.c (token_definitions_output): Be sure not to output a
16282 `#define 'a'' when fed with `%token 'a' "a"'.
16283 * tests/regression.at (Token definitions): New.
16284
8bb936e4
PE
162852002-05-03 Paul Eggert <eggert@twinsun.com>
16286
16287 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
16288 for K&R C.
16289
162902002-05-03 gettextize <bug-gnu-gettext@gnu.org>
16291
16292 * Makefile.am (SUBDIRS): Remove intl.
16293 (EXTRA_DIST): Add config/config.rpath.
16294
53c71a12
AD
162952002-05-03 Akim Demaille <akim@epita.fr>
16296
16297 * data/bison.simple (m4_if): Don't output empty enums.
16298 And actually, output valid enum definitions :(.
16299
289dd0cf
AD
163002002-05-03 Akim Demaille <akim@epita.fr>
16301
16302 * configure.bat: Remove, completely obsolete.
16303 * Makefile.am (EXTRA_DIST): Adjust.
16304 Don't distribute config.rpath...
16305 * config/Makefile.am (EXTRA_DIST): Do it.
16306
db85e524
AD
163072002-05-03 Akim Demaille <akim@epita.fr>
16308
16309 * configure.in (GETTEXT_VERSION): New.
16310 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
16311
83ccf991
AD
163122002-05-03 Akim Demaille <akim@epita.fr>
16313
16314 * data/bison.simple (b4_token_enum): New.
16315 (b4_token_defines): Use it to output tokens both as #define and
16316 enums.
16317 Suggested by Paul Eggert.
16318 * src/output.c (token_definitions_output): Don't output spurious
16319 white spaces.
16320
1f418995
AD
163212002-05-03 Akim Demaille <akim@epita.fr>
16322
16323 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16324
45119f04
RA
163252002-05-02 Robert Anisko <robert@lrde.epita.fr>
16326
16327 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
16328 Update the stack class, give a try to deque as the default container.
16329
b2d52318
AD
163302002-05-02 Akim Demaille <akim@epita.fr>
16331
16332 * data/bison.simple (yyparse): Do not implement @$ = @1.
16333 (YYLLOC_DEFAULT): Adjust to do it.
16334 * doc/bison.texinfo (Location Default Action): Fix.
16335
3a8b4109
AD
163362002-05-02 Akim Demaille <akim@epita.fr>
16337
16338 * src/reader.c (parse_braces): Merge into...
16339 (parse_action): this.
16340
84614e13
AD
163412002-05-02 Akim Demaille <akim@epita.fr>
16342
16343 * configure.in (ALL_LINGUAS): Remove.
16344 * po/LINGUAS, hr.po: New.
16345
fdbcd8e2
AD
163462002-05-02 Akim Demaille <akim@epita.fr>
16347
16348 Remove the so called hairy (semantic) parsers.
16349
16350 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
16351 * src/gram.h, src/gram.c (semantic_parser): Remove.
16352 (rule_t): Remove the guard and guard_line members.
16353 * src/lex.h (token_t): remove tok_guard.
16354 * src/options.c (option_table): Remove %guard and %semantic_parser
16355 support.
16356 * src/output.c, src/output.h (guards_output): Remove.
16357 (prepare): Adjust.
16358 (token_definitions_output): Don't output the `T'
16359 tokens (???).
16360 (output_skeleton): Don't output the guards.
16361 * src/files.c, src/files.c (attrsfile): Remove.
16362 * src/reader.c (symbol_list): Remove the guard and guard_line
16363 members.
16364 Adjust dependencies.
16365 (parse_guard): Remove.
16366 * data/bison.hairy: Remove.
16367 * doc/bison.texinfo (Environment Variables): Remove occurrences of
16368 BISON_HAIRY.
16369
82b6cb3f
AD
163702002-05-02 Akim Demaille <akim@epita.fr>
16371
16372 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
16373 (parse_guard): Rename the formal argument `stack_offset' as
16374 `rule_length', which is more readable.
16375 Adjust callers.
16376 (copy_at, copy_dollar): Instead of outputting the hard coded
16377 values of $$, $n and so forth, output invocation to b4_lhs_value,
16378 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
16379 Note: this patch partially drops `semantic-parser' support: it
16380 always does `rule_length - n', where semantic parsers ought to
16381 always use `-n'.
82b6cb3f
AD
16382 * data/bison.simple, data/bison.c++ (b4_lhs_value)
16383 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
16384
6cbfbcc5
AD
163852002-05-02 Akim Demaille <akim@epita.fr>
16386
16387 * configure.in (AC_INIT): Bump to 1.49b.
16388 (AM_INIT_AUTOMAKE): Short invocation.
16389
b8548114
AD
163902002-05-02 Akim Demaille <akim@epita.fr>
16391
16392 Version 1.49a.
16393
c20cd1fa
AD
163942002-05-01 Akim Demaille <akim@epita.fr>
16395
16396 * src/skeleton.h: Remove.
16397
8a9566d4
AD
163982002-05-01 Akim Demaille <akim@epita.fr>
16399
16400 * src/skeleton.h: Fix the #endif.
16401 Reported by Magnus Fromreide.
16402
8c6d399a
PE
164032002-04-26 Paul Eggert <eggert@twinsun.com>
16404
16405 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
16406 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 16407 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 16408
2b7ed18a
RA
164092002-04-25 Robert Anisko <robert@lrde.epita.fr>
16410
16411 * src/scan-skel.l: Postprocess quadrigraphs.
16412
16413 * src/reader.c (copy_character): New function, used to output
16414 single characters while replacing `[' and `]' with quadrigraphs, to
16415 avoid troubles with M4 quotes.
16416 (copy_comment): Output characters with copy_character.
16417 (read_additionnal_code): Likewise.
16418 (copy_string2): Likewise.
16419 (copy_definition): Likewise.
16420
16421 * tests/calc.at: Exercise M4 quoting.
16422
34a89c50
AD
164232002-04-25 Akim Demaille <akim@epita.fr>
16424
16425 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
16426 between `!' and the command.
16427 Reported by Paul Eggert.
16428
0dd1580a
RA
164292002-04-24 Robert Anisko <robert@lrde.epita.fr>
16430
16431 * tests/calc.at: Exercise prologue splitting.
16432
16433 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
16434 `b4_post_prologue' instead of `b4_prologue'.
16435
16436 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
16437 muscles.
16438 (output): Free pre_prologue_obstack and post_prologue_obstack.
16439 * src/files.h, src/files.c (attrs_obstack): Remove.
16440 (pre_prologue_obstack, post_prologue_obstack): New.
16441 * src/reader.c (copy_definition): Add a parameter to specify the
16442 obstack to fill, instead of using attrs_obstack unconditionally.
16443 (read_declarations): Pass pre_prologue_obstack to copy_definition if
16444 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
16445
83c1796f
PE
164462002-04-23 Paul Eggert <eggert@twinsun.com>
16447
16448 * data/bison.simple: Remove unnecessary commentary and white
16449 space differences from 1_29-branch.
16450 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
16451
16452 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
16453 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
16454 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
16455 constructors or destructors.
16456
16457 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
16458
1207eeac
AD
164592002-04-23 Akim Demaille <akim@epita.fr>
16460
16461 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
16462 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
16463 location with columns.
16464 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
16465 All reported by Paul Eggert.
16466
78ab8f67
AD
164672002-04-22 Akim Demaille <akim@epita.fr>
16468
16469 * src/reduce.c (dump_grammar): Move to...
16470 * src/gram.h, src/gram.c (grammar_dump): here.
16471 Be sure to separate long item numbers.
16472 Don't read the members of a rule's prec if its nil.
16473
133c20e2
AD
164742002-04-22 Akim Demaille <akim@epita.fr>
16475
16476 * src/output.c (table_size, table_grow): New.
16477 (MAXTABLE): Remove, replace uses with table_size.
16478 (pack_vector): Instead of dying when the table is too big, grow it.
16479
9515e8a7
AD
164802002-04-22 Akim Demaille <akim@epita.fr>
16481
16482 * data/bison.simple (yyr1): Its type is that of a token number.
16483 * data/bison.c++ (r1_): Likewise.
16484 * tests/regression.at (Web2c Actions): Adjust.
16485
23c5a174
AD
164862002-04-22 Akim Demaille <akim@epita.fr>
16487
16488 * src/reader.c (token_translations_init): 256 is now the default
16489 value for the error token, i.e., it will be assigned another
16490 number if the user assigned 256 to one of her tokens.
16491 (reader): Don't force 256 to error.
16492 * doc/bison.texinfo (Symbols): Adjust.
16493 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
16494 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
16495 etc. instead of 10, 20, 30 (which was used to `jump' over error
16496 (256) and undefined (2)).
16497
5fbb0954
AD
164982002-04-22 Akim Demaille <akim@epita.fr>
16499
16500 Propagate more token_number_t.
16501
16502 * src/gram.h (token_number_as_item_number)
16503 (item_number_as_token_number): New.
16504 * src/output.c (GENERATE_OUTPUT_TABLE): New.
16505 Use it to create output_item_number_table and
16506 output_token_number_table.
16507 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16508 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
16509 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
16510 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
16511
4f940944
AD
165122002-04-22 Akim Demaille <akim@epita.fr>
16513
16514 * src/output.h, src/output.c (get_lines_number): Remove.
16515
3ded9a63
AD
165162002-04-19 Akim Demaille <akim@epita.fr>
16517
16518 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
16519 as Lex/Flex'.
16520 (Debugging): More details about enabling the debugging features.
16521 (Table of Symbols): Describe $$, $n, @$, and @n.
16522 Suggested by Tim Josling.
16523
e0c471a9
AD
165242002-04-19 Akim Demaille <akim@epita.fr>
16525
16526 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
16527
fecc10cd
AD
165282002-04-10 Akim Demaille <akim@epita.fr>
16529
16530 * src/system.h: Rely on HAVE_LIMITS_H.
16531 Suggested by Paul Eggert.
16532
51dec47b
AD
165332002-04-09 Akim Demaille <akim@epita.fr>
16534
16535 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
16536 full stderr, and strip it according to the bison options, instead
16537 of composing the error message from different bits.
16538 This makes it easier to check for several error messages.
16539 Adjust all the invocations.
16540 Add an invocation exercising the error token.
16541 Add an invocation demonstrating a stupid error message.
16542 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
16543 Adjust the tests.
16544 Error message are for stderr, not stdout.
16545
007a50a4
AD
165462002-04-09 Akim Demaille <akim@epita.fr>
16547
16548 * src/gram.h, src/gram.c (error_token_number): Remove, use
16549 errtoken->number.
16550 * src/reader.c (reader): Don't specify the user token number (2)
16551 for $undefined, as it uselessly prevents using it.
16552 * src/gram.h (token_number_t): Move to...
16553 * src/symtab.h: here.
16554 (state_t.number): Is a token_number_t.
16555 * src/print.c, src/reader.c: Use undeftoken->number instead of
16556 hard coded 2.
16557 (Even though this 2 is not the same as above: the number of the
16558 undeftoken remains being 2, it is its user token number which
16559 might not be 2).
16560 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
16561 `user_token_number_max'.
16562 Output `undef_token_number'.
16563 * data/bison.simple, data/bison.c++: Use them.
16564 Be sure to map invalid yylex return values to
16565 `undef_token_number'. This saves us from gratuitous SEGV.
16566
16567 * tests/conflicts.at (Solved SR Conflicts)
16568 (Unresolved SR Conflicts): Adjust.
16569 * tests/regression.at (Web2c Actions): Adjust.
16570
06446ccf
AD
165712002-04-08 Akim Demaille <akim@epita.fr>
16572
16573 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16574 Adding #line.
16575 Remove the duplicate `typedefs'.
16576 (RhsNumberType): Fix the declaration and various other typos.
16577 Use __ofile__.
16578 * data/bison.simple: Use __ofile__.
16579 * src/scan-skel.l: Handle __ofile__.
16580
62a3e4f0
AD
165812002-04-08 Akim Demaille <akim@epita.fr>
16582
16583 * src/gram.h (item_number_t): New, the type of item numbers in
16584 RITEM. Note that it must be able to code symbol numbers as
16585 positive number, and the negation of rule numbers as negative
16586 numbers.
16587 Adjust all dependencies (pretty many).
16588 * src/reduce.c (rule): Remove this `short *' pointer: use
16589 item_number_t.
16590 * src/system.h (MINSHORT, MAXSHORT): Remove.
16591 Include `limits.h'.
16592 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16593 (shortcpy): Remove.
16594 (MAXTABLE): Move to...
16595 * src/output.c (MAXTABLE): here.
16596 (prepare_rules): Use output_int_table to output rhs.
16597 * data/bison.simple, data/bison.c++: Adjust.
16598 * tests/torture.at (Big triangle): Move the limit from 254 to
16599 500.
16600 * tests/regression.at (Web2c Actions): Ajust.
16601
16602 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16603 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16604 passes, but produces negative #line number, once fixed, GCC is
16605 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16606 C), it passes.
16607 * src/state.h (state_h): Code input lines on ints, not shorts.
16608
bb88b0fc
AD
166092002-04-08 Akim Demaille <akim@epita.fr>
16610
16611 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16612 and then the grammar.
16613
9a636f47
AD
166142002-04-08 Akim Demaille <akim@epita.fr>
16615
16616 * src/system.h: No longer using strndup.
16617
680e8701
AD
166182002-04-07 Akim Demaille <akim@epita.fr>
16619
16620 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16621 * src/output.c (output_table_data): Return the longest number.
16622 (prepare_tokens): Output `token_number_max').
16623 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16624 New.
16625 Use them to define yy_token_number_type/TokenNumberType.
16626 Use this type for yytranslate.
16627 * tests/torture.at (Big triangle): Push the limit from 124 to
16628 253.
16629 * tests/regression.at (Web2c Actions): Adjust.
16630
817e9f41
AD
166312002-04-07 Akim Demaille <akim@epita.fr>
16632
16633 * tests/torture.at (Big triangle): New.
16634 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16635 * tests/existing.at: here.
16636
5123689b
AD
166372002-04-07 Akim Demaille <akim@epita.fr>
16638
16639 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16640 nritems.
16641 Adjust dependencies.
16642
f3849179
AD
166432002-04-07 Akim Demaille <akim@epita.fr>
16644
16645 * src/reader.c: Normalize increments to prefix form.
16646
bd02036a
AD
166472002-04-07 Akim Demaille <akim@epita.fr>
16648
16649 * src/reader.c, symtab.c: Remove debugging code.
16650
db8837cb
AD
166512002-04-07 Akim Demaille <akim@epita.fr>
16652
16653 Rename all the `bucket's as `symbol_t'.
16654
16655 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16656 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16657 * src/symtab.c, src/symtab.h (bucket): Rename as...
16658 (symbol_t): this.
16659 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16660 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16661 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16662 (buckets_new, buckets_free, buckets_do): Rename as...
16663 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16664 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16665 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16666 (symbols_new, symbols_free, symbols_do): these.
16667
72a23c97
AD
166682002-04-07 Akim Demaille <akim@epita.fr>
16669
16670 Use lib/hash for the symbol table.
16671
16672 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16673 EOF.
16674 * src/lex.c (lex): Set the `number' member of new terminals.
16675 * src/reader.c (bucket_check_defined, bucket_make_alias)
16676 (bucket_check_alias_consistence, bucket_translation): New.
16677 (reader, grammar_free, readgram, token_translations_init)
16678 (packsymbols): Adjust.
16679 (reader): Number the predefined tokens.
16680 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16681 for predefined tokens.
16682 * src/symtab.h (bucket): Remove all the hash table related
16683 members.
16684 * src/symtab.c (symtab): Replace by...
16685 (bucket_table): this.
16686 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16687 (buckets_new, buckets_do): New.
16688
280a38c3
AD
166892002-04-07 Akim Demaille <akim@epita.fr>
16690
16691 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16692 (start_symbol, max_user_token_number, semantic_parser)
16693 (error_token_number): Initialize.
16694 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16695 Initialize.
16696 (reader): Don't.
16697 (errtoken, eoftoken, undeftoken, axiom): Extern.
16698
03b31c0c
AD
166992002-04-07 Akim Demaille <akim@epita.fr>
16700
16701 * src/gram.h (rule_s): prec and precsym are now pointers
16702 to the bucket giving the priority/associativity.
16703 Member `associativity' removed: useless.
16704 * src/reduce.c, src/conflicts.c: Adjust.
16705
8b3df748
AD
167062002-04-07 Akim Demaille <akim@epita.fr>
16707
16708 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16709 Properly escape the symbols' TAG when outputting them.
16710
e601aa1d
AD
167112002-04-07 Akim Demaille <akim@epita.fr>
16712
16713 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16714
b0299a2e
AD
167152002-04-07 Akim Demaille <akim@epita.fr>
16716
16717 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16718 (LArule): this, which is an array to rule_t*.
16719 * src/print.c, src/conflicts.c: Adjust.
16720
d7e1f00c
AD
167212002-04-07 Akim Demaille <akim@epita.fr>
16722
16723 * src/gram.h (rule_t): Rename `number' as `user_number'.
16724 `number' is a new member.
16725 Adjust dependencies.
16726 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16727
cc9305dd
AD
167282002-04-07 Akim Demaille <akim@epita.fr>
16729
16730 As a result of the previous patch, it is no longer needed
16731 to reorder ritem itself.
16732
16733 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16734
b0940840
AD
167352002-04-07 Akim Demaille <akim@epita.fr>
16736
16737 Be sure never to walk through RITEMS, but use only data related to
16738 the rules themselves. RITEMS should be banished.
16739
16740 * src/output.c (output_token_translations): Rename as...
16741 (prepare_tokens): this.
16742 In addition to `translate', prepare the muscles `tname' and
16743 `toknum', which were handled by...
16744 (output_rule_data): this.
16745 Remove, and move the remainder of its outputs into...
16746 (prepare_rules): this new routines, which also merges content from
16747 (output_gram): this.
16748 (prepare_rules): Be sure never to walk through RITEMS.
16749 (output_stos): Rename as...
16750 (prepare_stos): this.
16751 (output): Always invoke prepare_states, after all, just don't use it
16752 in the output if you don't need it.
16753
643a5994
AD
167542002-04-07 Akim Demaille <akim@epita.fr>
16755
16756 * src/LR0.c (new_state): Display `nstates' as the name of the
16757 newly created state.
16758 Adjust to initialize first_state and last_state if needed.
16759 Be sure to distinguish the initial from the final state.
16760 (new_states): Create the itemset of the initial state, and use
16761 new_state.
16762 * src/closure.c (closure): Now that the initial state has its
16763 items properly set, there is no need for a special case when
16764 creating `ruleset'.
16765
16766 As a result, now the rule 0, reducing to $axiom, is visible in the
16767 outputs. Adjust the test suite.
16768
16769 * tests/conflicts.at (Solved SR Conflicts)
16770 (Unresolved SR Conflicts): Adjust.
16771 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16772 * tests/conflicts.at (S/R in initial): New.
16773
b4c4ccc2
AD
167742002-04-07 Akim Demaille <akim@epita.fr>
16775
16776 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16777 the RHS of the rules.
16778 * src/output.c (output_gram): Likewise.
16779
bba97eb2
AD
167802002-04-07 Akim Demaille <akim@epita.fr>
16781
16782 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16783 bucket.
16784 Adjust all dependencies.
16785 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16786 `number' of the buckets too.
16787 * src/gram.h: Include `symtab.h'.
16788 (associativity): Move to...
16789 * src/symtab.h: here.
16790 No longer include `gram.h'.
16791
c3b407f4
AD
167922002-04-07 Akim Demaille <akim@epita.fr>
16793
16794 * src/gram.h, src/gram.c (rules_rhs_length): New.
16795 (ritem_longest_rhs): Use it.
16796 * src/gram.h (rule_t): `number' is a new member.
16797 * src/reader.c (packgram): Set it.
16798 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16799 the end of `rules', and count them out of `nrules'.
16800 (reduce_output, dump_grammar): Adjust.
16801 * src/print.c (print_grammar): It is no longer needed to check for
16802 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16803 * tests/reduce.at (Reduced Automaton): New test.
16804
11652ab3
AD
168052002-04-07 Akim Demaille <akim@epita.fr>
16806
16807 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16808 lacking `+ 1' to nrules, Bison reported as useless a token if it
16809 was used solely to set the precedence of the last rule...
16810
26b23c1a
AD
168112002-04-07 Akim Demaille <akim@epita.fr>
16812
16813 * data/bison.c++, data/bison.simple: Don't output the current file
16814 name in #line, to avoid useless diffs between two identical
16815 outputs under different names.
16816
18bcecb0
AD
168172002-04-07 Akim Demaille <akim@epita.fr>
16818
16819 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16820 Normalize loops to using `< nrules + 1', not `<= nrules'.
16821
fa770c86
AD
168222002-04-07 Akim Demaille <akim@epita.fr>
16823
16824 * TODO: Update.
16825
d9b739c3
AD
168262002-04-07 Akim Demaille <akim@epita.fr>
16827
16828 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16829 bucket.value as bucket.number.
16830
99013900
AD
168312002-04-07 Akim Demaille <akim@epita.fr>
16832
16833 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16834 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16835 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16836 RHS, instead of being an index in RITEMS.
16837
e966383b
PE
168382002-04-04 Paul Eggert <eggert@twinsun.com>
16839
16840 * doc/bison.texinfo: Update copyright date.
16841 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16842 (Symbols): Warn about running Bison in one character set,
16843 but compiling and/or running in an incompatible one.
16844 Warn about character code 256, too.
16845
168462002-04-03 Paul Eggert <eggert@twinsun.com>
16847
16848 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16849 YYERROR_VERBOSE is nonzero, not whether it is defined.
16850
16851 Merge changes from bison-1_29-branch.
c307773e 16852
8d6c48b9
PE
168532002-03-20 Paul Eggert <eggert@twinsun.com>
16854
16855 Merge fixes from Debian bison_1.34-1.diff.
16856
16857 * configure.in (AC_PREREQ): 2.53.
16858
e53c6322
AD
168592002-03-20 Akim Demaille <akim@epita.fr>
16860
16861 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16862
9ffbeca7
PE
168632002-03-19 Paul Eggert <eggert@twinsun.com>
16864
21db0b2a
PE
16865 * src/bison.simple (YYCOPY): New macro.
16866 (YYSTACK_RELOCATE): Use it.
16867 Remove Type arg; no longer needed. All callers changed.
16868 (yymemcpy): Remove; no longer needed.
16869
9ffbeca7
PE
16870 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16871 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16872
642cb8f8
AD
168732002-03-19 Akim Demaille <akim@epita.fr>
16874
16875 Test and fix the #line outputs.
16876
16877 * tests/atlocal.at (GCC): New.
16878 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 16879 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
16880 (Action synch line, Epilogue synch line): New tests.
16881 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16882 * data/bison.simple, data/bison.c++: Use it.
16883
3c31a486
AD
168842002-03-19 Akim Demaille <akim@epita.fr>
16885
16886 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16887 (Solved SR Conflicts, %expect not enough, %expect right)
16888 (%expect too much): Move to...
16889 * tests/conflicts.at: this new file.
16890
0d8bed56
AD
168912002-03-19 Akim Demaille <akim@epita.fr>
16892
16893 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16894 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16895 that we can move to enums for instance.
16896 * src/output.c (token_definitions_output): Output a list of
16897 `token-name, token-number' instead of the #define.
16898 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16899
9208d17f
AD
169002002-03-14 Akim Demaille <akim@epita.fr>
16901
16902 Use Gettext 0.11.1.
16903
af27eacb
RA
169042002-03-09 Robert Anisko <robert@lrde.epita.fr>
16905
16906 * data/bison.c++: Make the user able to add members to the generated
16907 parser by subclassing.
16908
9101a310
RA
169092002-03-05 Robert Anisko <robert@lrde.epita.fr>
16910
16911 * src/reader.c (read_additionnal_code): `c' should be an integer, not
16912 a character.
16913 Reported by Nicolas Tisserand and Nicolas Burrus.
16914
fff9bf0b
RA
169152002-03-04 Robert Anisko <robert@lrde.epita.fr>
16916
16917 * src/reader.c: Warn about lacking semi-colons, do not complain.
16918
64dba31e
RA
169192002-03-04 Robert Anisko <robert@lrde.epita.fr>
16920
16921 * data/bison.c++: Remove a debug line.
16922
374f5a14
RA
169232002-03-04 Robert Anisko <robert@lrde.epita.fr>
16924
16925 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
16926 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
16927 provide a default implementation.
16928
bfcf1f3a
AD
169292002-03-04 Akim Demaille <akim@epita.fr>
16930
16931 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
16932 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
16933 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
16934 * tests/semantic.at (Parsing Guards): Similarly.
16935 * src/reader.at (readgram): Complain if the last rule is not ended
16936 with a semi-colon.
16937
65ccf9fc
AD
169382002-03-04 Akim Demaille <akim@epita.fr>
16939
16940 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
16941 * src/closure.c: here.
16942 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
16943 RTC.
16944 * src/warshall.h, src/warshall.c: Remove.
16945 * tests/sets.at (Broken Closure): Adjust.
16946
d0039cbc
AD
169472002-03-04 Akim Demaille <akim@epita.fr>
16948
16949 * src/output.c (output_skeleton): tempdir is const.
16950 bytes_read is unused.
16951
345cea78
AD
169522002-03-04 Akim Demaille <akim@epita.fr>
16953
16954 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16955 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
16956 Update.
16957 From Michael Hayes.
16958
564801f7
AD
169592002-03-04 Akim Demaille <akim@epita.fr>
16960
16961 * src/closure.c (closure): `r' is unused.
16962
e5352bc7
AD
169632002-03-04 Akim Demaille <akim@epita.fr>
16964
16965 * tests/sets.at (Broken Closure): Add the ending `;'.
16966 * src/reader.at (readgram): Complain if a rule is not ended with a
16967 semi-colon.
16968
914feea9
AD
169692002-03-04 Akim Demaille <akim@epita.fr>
16970
16971 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
16972 (count_sr_conflicts): Use bitset_count.
16973 * src/reduce.c (inaccessable_symbols): Ditto.
16974 (bits_size): Remove.
16975 * src/warshall.h, src/warshall.c: Convert to bitsetv.
16976
f0250de6
AD
169772002-03-04 Akim Demaille <akim@epita.fr>
16978
16979 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
16980 * src/reduce.c: Remove the `bitset_zero's following the
16981 `bitset_create's, as now it is performed by the latter.
16982
ef017502
AD
169832002-03-04 Akim Demaille <akim@epita.fr>
16984
16985 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
16986 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
16987 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
16988 latest sources from Michael.
16989
76514394
AD
169902002-03-04 Akim Demaille <akim@epita.fr>
16991
16992 * src/output.c (output): Don't free the grammar.
16993 * src/reader.c (grammar_free): New.
16994 * src/main.c (main): Call it and don't free symtab here.
16995
55024580
AD
169962002-03-04 Akim Demaille <akim@epita.fr>
16997
16998 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
16999 before returning.
17000 Reported by Benoit Perrot.
17001
f9abaa2c
AD
170022002-03-04 Akim Demaille <akim@epita.fr>
17003
17004 Use bitset operations when possible, not loops over bits.
17005
17006 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
17007 bitset_or.
17008 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
17009 * src/reduce.c (useless_nonterminals): Formatting changes.
17010 * src/warshall.c (TC): Use bitset_or.
17011
0e721e75
AD
170122002-03-04 Akim Demaille <akim@epita.fr>
17013
17014 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
17015 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
17016 Ditto.
17017
0fb1ffb1
AD
170182002-03-04 Akim Demaille <akim@epita.fr>
17019
17020 * src/lalr.c (F): Now a bitset*.
17021 Adjust all dependencies.
17022
b86796bf
AD
170232002-03-04 Akim Demaille <akim@epita.fr>
17024
17025 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
17026 Adjust all dependencies.
17027
602bbf31
AD
170282002-03-04 Akim Demaille <akim@epita.fr>
17029
17030 * src/L0.c, src/LR0.h (nstates): Be size_t.
17031 Adjust comparisons (signed vs unsigned).
17032 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
17033 bitset*.
17034 Adjust all dependencies.
17035
d8a0245c
AD
170362002-03-04 Akim Demaille <akim@epita.fr>
17037
17038 * src/closure.c (firsts): Now, also a bitset.
17039 Adjust all dependencies.
17040 (varsetsize): Remove, now unused.
17041 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
17042
34ba9743
AD
170432002-03-04 Akim Demaille <akim@epita.fr>
17044
17045 * src/print.c: Convert to use bitset.h, not hand coded iterations
17046 over ints.
17047
ed86e78c
AD
170482002-03-04 Akim Demaille <akim@epita.fr>
17049
17050 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
17051
dfdb1797
AD
170522002-03-04 Akim Demaille <akim@epita.fr>
17053
17054 * src/closure.c (ruleset): Be a bitset.
17055 (rulesetsize): Remove.
17056
7086e707
AD
170572002-03-04 Akim Demaille <akim@epita.fr>
17058
17059 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
17060 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
17061 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
17062 * src/closure.c (fderives): Be an array of bitsets.
17063
98254360
RA
170642002-02-28 Robert Anisko <robert@lrde.epita.fr>
17065
17066 * data/bison.c++: Merge the two generated headers. Insert a copyright
17067 notice in each output file.
17068
a75c057f
AD
170692002-02-28 Akim Demaille <akim@epita.fr>
17070
17071 * data/bison.c++: Copy the prologue of bison.simple to fetch
17072 useful M4 definitions, such as b4_header_guard.
17073
06b00abc
AD
170742002-02-25 Akim Demaille <akim@epita.fr>
17075
17076 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
17077 translator friendly scheme for the bgr
17078 copyright notice.
06b00abc 17079
70e7d534
AD
170802002-02-25 Akim Demaille <akim@epita.fr>
17081
17082 * src/output.c (header_output): Remove, now handled completely via
17083 M4.
17084
abe017f6
AD
170852002-02-25 Akim Demaille <akim@epita.fr>
17086
17087 * m4/m4.m4: New, from CVS Autoconf.
17088 * configure.in: Invoke it.
17089 * src/output.c (output_skeleton): Use its result instead of the
17090 hard coded name.
17091
381fb12e
AD
170922002-02-25 Akim Demaille <akim@epita.fr>
17093
17094 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
17095 Fileutils 4.1.5.
17096 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
17097 * src/output.c (output_skeleton): Use mkstemp to create a real
17098 temporary file.
17099 Move the filling of `skeleton' and its muscle to...
17100 (prepare): here.
17101 (output): Move the definition of the prologue muscle to...
17102 (prepare): here.
17103 * src/system.h (DEFAULT_TMPDIR): New.
17104
6f38107f
PE
171052002-02-14 Paul Eggert <eggert@twinsun.com>
17106
17107 Remove the support for C++ namespace cleanliness; it was
17108 causing more problems than it was curing, since it didn't work
17109 properly on some nonstandard C++ compilers. This can wait
17110 for a proper C++ parser.
17111
17112 * NEWS: Document this.
17113 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
17114 of C++, as it's treated like C now.
17115 * src/bison.simple (YYSTD): Remove.
17116 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
17117 Treat C++ just like Standard C instead of trying to support
17118 namespace cleanliness.
17119
80cce3da
AD
171202002-02-14 Akim Demaille <akim@epita.fr>
17121
17122 * tests/regression.at (else): Adjust to Andreas' change.
17123
842e8679
AD
171242002-02-14 Akim Demaille <akim@epita.fr>
17125
17126 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
17127
4bda3f10
AD
171282002-02-13 Andreas Schwab <schwab@suse.de>
17129
17130 * src/output.c (output_rule_data): Don't output NULL, it might
17131 not be defined yet.
17132
4162fa07 171332002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 17134
4162fa07
RA
17135 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
17136 (Copyright notice): Update.
b418ecd8 17137
bd16a5dc
AD
171382002-02-11 Akim Demaille <akim@epita.fr>
17139
17140 * tests/regression.at (%nonassoc and eof): Don't include
17141 nonportable headers.
17142
8d69a1a3
RA
171432002-02-08 Robert Anisko <robert@lrde.epita.fr>
17144
17145 * data/bison.c++: Correct error recovery. Make the user able to
17146 initialize the starting location.
17147
9b2d0677
AD
171482002-02-07 Akim Demaille <akim@epita.fr>
17149
17150 * tests/input.at: New.
17151
69e2658b
RA
171522002-02-07 Robert Anisko <robert@lrde.epita.fr>
17153
17154 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 17155 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
17156 directives around tables only needed for debugging.
17157
4aacc3a7
RA
171582002-02-07 Robert Anisko <robert@lrde.epita.fr>
17159
17160 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
17161 C++ parsers.
17162 (yy::b4_name::parse): Use print_.
17163
762a801e
RA
171642002-02-07 Robert Anisko <robert@lrde.epita.fr>
17165
17166 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
17167
4bb2bc3f
RA
171682002-02-07 Robert Anisko <robert@lrde.epita.fr>
17169
17170 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
17171 C++ parsers.
17172 (yy::b4_name::parse): Build verbose error messages, and use error_.
17173
6b45a3ca
RA
171742002-02-06 Robert Anisko <robert@lrde.epita.fr>
17175
17176 * data/bison.c++: Fix m4 quoting in comments.
17177
50997c6e
RA
171782002-02-06 Robert Anisko <robert@lrde.epita.fr>
17179
17180 * data/bison.c++: Adjust the parser code. Fix some muscles that were
17181 not expanded by m4.
17182
3f3eed27
AD
171832002-02-05 Akim Demaille <akim@epita.fr>
17184
17185 * data/bison.c++: Adjust to the M4 back end.
17186 More is certainly needed.
17187
be2a1a68
AD
171882002-02-05 Akim Demaille <akim@epita.fr>
17189
17190 Give a try to M4 as a back end.
17191
17192 * lib/readpipe.c: New, from wdiff.
17193 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
17194 BISON_HAIRY.
17195 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
17196 specific values. Now it is m4 that performs the lookup.
17197 * src/parse-skel.y: Remove.
17198 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
17199 * src/output.c (actions_output, guards_output)
17200 (token_definitions_output): No longer keeps track of the output
17201 line number, hence remove the second argument.
17202 (guards_output): Check against the guard member of a rule, not the
17203 action member.
17204 Adjust callers.
17205 (output_skeleton): Don't look for the skeleton location, let m4 do
17206 that.
17207 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
17208 file will be used.
17209 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
17210 (prepare): Given that for the time being changesyntax is not
17211 usable in M4, rename the muscles using `-' to `_'.
17212 Define `defines_flag', `output_parser_name' and `output_header_name'.
17213 * src/output.h (actions_output, guards_output)
17214 (token_definitions_output): Adjust prototypes.
17215 * src/scan-skel.l: Instead of scanning the skeletons, it now
17216 processes the output of m4: `__oline__' and `#output'.
17217 * data/bison.simple: Adjust to be used by M4(sugar).
17218 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
17219 to date.
17220 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
17221 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
17222 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
17223 shamelessly stolen from CVS Autoconf.
17224
beda758b
AD
172252002-02-05 Akim Demaille <akim@epita.fr>
17226
17227 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
17228 * configure.in: Check for the declarations of free and malloc.
17229 * src/muscle_tab.c: Adjust.
17230
5ece6d43
AD
172312002-02-05 Akim Demaille <akim@epita.fr>
17232
17233 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
17234 which have no values.
17235
5bb18f9a
AD
172362002-02-05 Akim Demaille <akim@epita.fr>
17237
17238 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
17239 * data/: here.
17240
894dd62e
PE
172412002-01-29 Paul Eggert <eggert@twinsun.com>
17242
17243 * src/bison.simple (YYSIZE_T): Do not define merely because
17244 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
17245 On some platforms, <alloca.h> does not declare YYSTD (size_t).
17246
82841af7
AD
172472002-01-27 Akim Demaille <akim@epita.fr>
17248
17249 Fix `%nonassoc and eof'.
17250
17251 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
17252 which were not properly copied! Replace
17253 memcpy (res->errs, src->errs, src->nerrs);
17254 with
17255 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
17256 !!!
17257 * tests/regression.at (%nonassoc and eof): Adjust to newest
17258 Autotest: `.' is not in the PATH.
17259
318b76e9
AD
172602002-01-27 Akim Demaille <akim@epita.fr>
17261
17262 * tests/sets.at (AT_EXTRACT_SETS): New.
17263 (Nullable): Use it.
17264 (Firsts): New.
17265
30d2f3d5
AD
172662002-01-26 Akim Demaille <akim@epita.fr>
17267
17268 * tests/actions.at, tests/calc.at, tests/headers.at,
17269 * tests/torture.at: Adjust to the newest Autotest which no longer
17270 forces `.' in the PATH.
17271
30f8c395
AD
172722002-01-25 Akim Demaille <akim@epita.fr>
17273
17274 * tests/regression.at (%nonassoc and eof): New.
17275 Suggested by Robert Anisko.
17276
29ae55f1
AD
172772002-01-24 Akim Demaille <akim@epita.fr>
17278
17279 Bison dumps core when trying to complain about broken input files.
17280 Reported by Cris van Pelt.
17281
17282 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
17283 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
17284 into...
17285 (Invalid inputs): Strengthen: exercise parse_percent_token.
17286
2b548aa6
RA
172872002-01-24 Robert Anisko <robert.anisko@epita.fr>
17288
17289 * src/Makefile.am: Add bison.c++.
17290 * src/bison.c++: New skeleton.
17291
bb0146c2
AD
172922002-01-21 Paolo Bonzini <bonzini@gnu.org>
17293
17294 * po/it.po: New.
17295
bec30531
AD
172962002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
17297
17298 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
17299
fc6edc45
MA
173002002-01-20 Marc Autret <marc@gnu.org>
17301
17302 * src/files.c (compute_output_file_names): Fix
17303
5e5d5415
MA
173042002-01-20 Marc Autret <marc@gnu.org>
17305
17306 * tests/output.at: New test.
17307 * src/files.c (compute_base_names): Don't map extensions when
17308 the YACC flag is set, use defaults.
17309 Reported by Evgeny Stambulchik.
17310
44ea3fbd
MA
173112002-01-20 Marc Autret <marc@gnu.org>
17312
ba0fe3c7
PE
17313 * src/system.h: Need to define __attribute__ away for non-GCC
17314 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
17315 Suggested by Albert Chin-A-Young.
17316
338963d1
TVH
173172002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
17318
17319 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
17320 canonical definition.
17321 * src/system.h: Use the canonical definition for PARAMS (avoids
17322 a conflict with the macro from lib/hash.h).
17323
c57b2479
AD
173242002-01-11 Akim Demaille <akim@epita.fr>
17325
17326 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 17327 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 17328
b85810ae
AD
173292002-01-09 Akim Demaille <akim@epita.fr>
17330
17331 * src/files.c, src/files.h (output_infix): New.
17332 (tab_extension): Remove.
17333 (compute_base_names): Compute the former, drop the latter.
17334 * src/output.c (prepare): Insert the muscles `output-infix', and
17335 `output-suffix'.
17336 * src/parse-skel.y (string, string.1): New.
17337 (section.header): Use it.
17338 (section.yacc): Remove.
17339 (prefix): Remove too.
17340 * src/scan-skel.l: Adjust.
17341 * src/bison.simple, src/bison.hairy: Adjust.
17342
cae60122
AD
173432002-01-09 Akim Demaille <akim@epita.fr>
17344
17345 * configure.in (WERROR_CFLAGS): Compute it.
17346 * src/Makefile.am (CFLAGS): Pass it.
17347 * tests/atlocal.in (CFLAGS): Idem.
17348 * src/files.c: Fix a few warnings.
17349 (get_extension_index): Remove, unused.
17350
ae404801
AD
173512002-01-08 Akim Demaille <akim@epita.fr>
17352
17353 * src/getargs.c (AS_FILE_NAME): New.
17354 (getargs): Use it to convert DOSish file names.
17355 * src/files.c (base_name): Rename as full_base_name to avoid
17356 clashes with `base_name ()'.
17357 (filename_split): New.
17358 (compute_base_names): N-th rewrite, using filename_split.
17359
22312b71
AD
173602002-01-08 Akim Demaille <akim@epita.fr>
17361
17362 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
17363 New, stolen from the Fileutils 4.1.
17364 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17365 * configure.in: Check for the presence of memrchr, and of its
17366 prototype.
17367
a67cef01
TVH
173682002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
17369
17370 * lib/hash.h (__P): Added definition for this macro.
17371 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
17372 BUILT_SOURCES, to ensure they are generated first.
17373 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
17374 %error-verbose to allow bootstrapping with bison 1.30x.
17375
2b25d624
AD
173762002-01-06 Akim Demaille <akim@epita.fr>
17377
17378 * src/reader.c (parse_braces): Don't fetch the next char, the
17379 convention is to fetch on entry.
17380 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
17381 'switch' without a following semicolon.
17382 * tests/regression.at (braces parsing): New.
17383
3460813b
AD
173842002-01-06 Akim Demaille <akim@epita.fr>
17385
17386 Bison is dead wrong in its RR conflict reports.
17387
17388 * tests/torture.at (GNU Cim Grammar): New.
17389 * src/conflicts.c (count_rr_conflicts): Fix.
17390
73784c64
AD
173912002-01-06 Akim Demaille <akim@epita.fr>
17392
17393 Creating package.m4 from configure.ac causes too many problems.
17394
17395 * tests/Makefile.am (package.m4): Create it by hand,
17396 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
17397
25d81090
AD
173982002-01-06 Akim Demaille <akim@epita.fr>
17399
17400 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
17401 skeleton.h.
17402
a9b8959e
PE
174032002-01-04 Paul Eggert <eggert@twinsun.com>
17404
17405 * doc/bison.texinfo (Debugging):
17406 Remove YYSTDERR; it's no longer defined or used.
17407 Also, s/cstdio.h/cstdio/.
17408
25d81090
AD
174092002-01-03 Akim Demaille <akim@epita.fr>
17410
17411 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
17412
1109455c
AD
174132002-01-03 Akim Demaille <akim@epita.fr>
17414
17415 * src/parse-skel.y (process_skeleton): Don't bind the parser's
17416 tracing code to --trace, wait for a better --trace option, with
17417 args.
17418
7ea5e977
AD
174192002-01-03 Akim Demaille <akim@epita.fr>
17420
17421 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
17422 The ISO C++ standard is extremely clear about it: stderr is
17423 considered a macro, not a regular symbol (see table 94 `Header
17424 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
17425 Therefore std:: does not apply to it. It still does with fprintf.
17426 Also, s/cstdio.h/cstdio/.
17427
fab5b110
AD
174282002-01-03 Akim Demaille <akim@epita.fr>
17429
17430 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
17431 for non system headers.
17432
aed7fd9b
AD
174332002-01-02 Akim Demaille <akim@epita.fr>
17434
17435 Equip the skeleton chain with location tracking, runtime trace,
17436 pure parser and scanner.
17437
17438 * src/parse-skel.y: Request a pure parser, locations, and prefix
17439 renaming.
17440 (%union): Having several members with the same type does not help
17441 type mismatches, simplify.
17442 (YYPRINT, yyprint): New.
17443 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
17444 (skel_error): this.
17445 Handle locations.
17446 * src/scan-skel.l: Adjust to these changes.
17447 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
17448 (LOCATION_PRINT, skel_control_t): New.
17449
24fad99e
AD
174502001-12-30 Akim Demaille <akim@epita.fr>
17451
17452 * src/parse-skel.y: Get rid of the shift/reduce conflict:
17453 replace `gb' with BLANKS.
17454 * src/scan-skel.l: Adjust.
17455
a4b36db4
AD
174562001-12-30 Akim Demaille <akim@epita.fr>
17457
17458 * src/system.h: We don't need nor want bcopy.
17459 Throw away MS-DOS crap: we don't need getpid.
17460 * configure.in: We don't need strndup. It was even causing
17461 problems: because Flex includes the headers *before* us,
17462 _GNU_SOURCE is not defined by config.h, and therefore strndup was
17463 not visible.
17464 * lib/xstrndup.c: New.
17465 * src/scan-skel.l: Use it.
17466 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
17467 * src/parse-skel.y: Use %directives instead of #defines.
17468
1239777d
AD
174692001-12-30 Akim Demaille <akim@epita.fr>
17470
17471 * src/skeleton.h: New.
17472 * src/output.c (output_parser, output_master_parser): Remove, dead
17473 code.
17474 * src/output.h (get_lines_number, actions_output, guards_output)
17475 (token_definitions_output): Prototype them.
17476 * src/parse-skel.y: Add the license notice.
17477 Include output.h and skeleton.h.
17478 (process_skeleton): Returns void, and takes a single parameter.
17479 * src/scan-skel.l: Add the license notice.
17480 Include skeleton.h.
17481 Don't use %option yylineno: it seems that then Flex imagines
17482 REJECT has been used, and therefore it won't reallocate its
17483 buffers (which makes no other sense to me than a bug). It results
17484 in warnings for `unused: yy_flex_realloc'.
17485
9b3add5b
RA
174862001-12-30 Robert Anisko <robert.anisko@epita.fr>
17487
17488 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17489 (MUSCLE_INSERT_PREFIX): ...to there.
17490 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17491 (MUSCLE_INSERT_PREFIX): Move from here...
17492
17493 * src/bison.hairy: Add a section directive. Put braces around muscle
17494 names. This parser skeleton is still broken, but Bison should not
17495 choke on a bad muscle 'syntax'.
17496 * src/bison.simple: Add a section directive. Put braces around muscle
17497 names.
17498
17499 * src/files.h (strsuffix, stringappend): Add declarations.
17500 (tab_extension): Add declaration.
17501 (short_base_name): Add declaration.
17502
17503 * src/files.c (strsuffix, stringappend): No longer static. These
17504 functions are used in the skeleton parser.
17505 (tab_extension): New.
17506 (compute_base_names): Use the computations done in this function
fab5b110 17507 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
17508 names.
17509 (short_base_name): No longer static.
17510
17511 * src/output.c (output_skeleton): New.
17512 (output): Disable call to output_master_parser, and give a try to
17513 a new skeleton handling system.
17514 (guards_output, actions_output): No longer static.
17515 (token_definitions_output, get_lines_number): No longer static.
17516
17517 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
17518
fab5b110 17519 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
17520 parse-skel.y.
17521
17522 * src/parse-skel.y: New file.
17523 * src/scan-skel.l: New file.
17524
b5b61c61
AD
175252001-12-29 Akim Demaille <akim@epita.fr>
17526
17527 %name-prefix is broken.
17528
17529 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
17530 Adjust all dependencies.
17531 * tests/headers.at (export YYLTYPE): Strengthen this test: use
17532 %name-prefix.
17533
17534 Renaming yylval but not yylloc is not consistent. Now we do.
17535
17536 * src/bison.simple: Prefix yylloc if used.
17537 * doc/bison.texinfo (Decl Summary): Document that.
17538
8c9a50be
AD
175392001-12-29 Akim Demaille <akim@epita.fr>
17540
17541 * doc/bison.texinfo: Promote `%long-directive' over
17542 `%long_directive'.
17543 Remove all references to fixed-output-files, yacc is enough.
17544
d99361e6
AD
175452001-12-29 Akim Demaille <akim@epita.fr>
17546
17547 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
17548 user prologue. These are defaults.
17549 * tests/actions.at (Mid-rule actions): Make sure the user can
17550 define YYDEBUG and YYERROR_VERBOSE.
17551
b9cecb91
AD
175522001-12-29 Akim Demaille <akim@epita.fr>
17553
17554 * src/output.c (header_output): Don't forget to export YYLTYPE and
17555 yylloc.
17556 * tests/headers.at (export YYLTYPE): New, make sure it does.
17557 * tests/regression.at (%union and --defines, Invalid CPP headers):
17558 Move to...
17559 * tests/headers.at: here.
17560
aea13e97
AD
175612001-12-29 Akim Demaille <akim@epita.fr>
17562
17563 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17564
931394cb
AD
175652001-12-29 Akim Demaille <akim@epita.fr>
17566
17567 * tests/actions.at (Mid-rule actions): Output on a single line
17568 instead of several.
17569
704a47c4
AD
175702001-12-29 Akim Demaille <akim@epita.fr>
17571
17572 * doc/bison.texinfo: Formatting changes.
17573
091e20bb
AD
175742001-12-29 Akim Demaille <akim@epita.fr>
17575
17576 Don't store the token defs in a muscle, just be ready to output it
17577 on command. Now possible via `symbols'. Fixes a memory leak.
17578
17579 * src/output.c (token_definitions_output): New.
17580 (output_parser, header_output): Use it.
17581 * src/reader.c (symbols_save): Remove.
17582
cce71710
AD
175832001-12-29 Akim Demaille <akim@epita.fr>
17584
17585 * src/bison.simple: Do not provide a default for YYSTYPE and
17586 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17587 default.
17588
82c035a8
AD
175892001-12-29 Akim Demaille <akim@epita.fr>
17590
17591 Mid-rule actions are simply... ignored!
17592
17593 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17594 the empty-rule associated to the dummy symbol, not to the host
17595 rule.
17596 * tests/actions.at (Mid-rule actions): New.
17597
8419d367
AD
175982001-12-29 Akim Demaille <akim@epita.fr>
17599
17600 Memory leak.
17601
17602 * src/reader.c (reader): Free grammar.
17603
375d5806
AD
176042001-12-29 Akim Demaille <akim@epita.fr>
17605
17606 Memory leak.
17607
17608 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17609 since it allocates it for each state, although only one is needed.
17610 (allocate_storage): Do it here.
17611
f51cb8ff
AD
176122001-12-29 Akim Demaille <akim@epita.fr>
17613
17614 * src/options.h, src/options.c (create_long_option_table): Rename
17615 as...
17616 (long_option_table_new): this, with a clearer prototype.
17617 (percent_table): Remove, unused,
17618 * src/getargs.c (getargs): Adjust.
17619
29e88316
AD
176202001-12-29 Akim Demaille <akim@epita.fr>
17621
17622 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17623 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17624 as states.
17625
b9f71f19
AD
176262001-12-29 Akim Demaille <akim@epita.fr>
17627
17628 * src/lalr.c (build_relations): Rename `states' as `states1'.
17629 Sorry, I don't understand exactly what it is, no better name...
17630
1a2b5d37
AD
176312001-12-29 Akim Demaille <akim@epita.fr>
17632
17633 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17634 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17635 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17636 as rules.
17637
1cca533e
AD
176382001-12-29 Akim Demaille <akim@epita.fr>
17639
17640 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17641 ago.
17642
c03ae966
AD
176432001-12-29 Akim Demaille <akim@epita.fr>
17644
17645 * src/reader.c, src/reader.h (user_toknums): Remove.
17646 Adjust all users to use symbols[i]->user_token_number.
17647
5a670b1e
AD
176482001-12-29 Akim Demaille <akim@epita.fr>
17649
17650 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17651 Adjust all users to use symbols[i]->prec or ->assoc.
17652
ad949da9
AD
176532001-12-29 Akim Demaille <akim@epita.fr>
17654
17655 * src/reader.c, src/reader.h (tags): Remove.
17656 Adjust all users to use symbols[i]->tag.
17657
0e78e603
AD
176582001-12-29 Akim Demaille <akim@epita.fr>
17659
17660 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17661 and rule_table.
17662 * src/reader.c (packsymbols): Fill this table.
17663 Drop sprec.
17664 * src/conflicts.c (resolve_sr_conflict): Adjust.
17665 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17666 single table.
17667 Use symbols[i]->tag instead of tags[i].
17668
213e640e
AD
176692001-12-29 Akim Demaille <akim@epita.fr>
17670
17671 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17672 In addition, put a comment in there, to replace...
17673 * tests/regression.at (%union and C comments): Remove.
17674
e7b8bef1
AD
176752001-12-29 Akim Demaille <akim@epita.fr>
17676
17677 * tests/regression.at (Web2c Actions): Blindly move the actual
17678 output as expected output. The contents *seem* right to me, but I
17679 can't pretend reading perfectly parser tables... Nonetheless, all
17680 the other tests pass correctly, the table look OK, even though the
17681 presence of `$axiom' is to be noted: AFAICS it is useless (but
17682 harmless).
17683
b68e7744
AD
176842001-12-29 Akim Demaille <akim@epita.fr>
17685
17686 * src/reader.c (readgram): Don't add the rule 0 if there were no
17687 rules read. In other words, add it _after_ having performed
17688 grammar sanity checks.
17689 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17690
78d5bae9
AD
176912001-12-29 Akim Demaille <akim@epita.fr>
17692
17693 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17694 visible, and some states have now a different number.
17695
ff442794
AD
176962001-12-29 Akim Demaille <akim@epita.fr>
17697
17698 * src/reader.c (readgram): Bind the initial rule's lineno to that
17699 of the first rule.
17700 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17701 (Solved SR Conflicts): Adjust rule 0's line number.
17702
610ab194
AD
177032001-12-29 Akim Demaille <akim@epita.fr>
17704
17705 Fix the `GAWK Grammar' failure.
17706
17707 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17708 the reductions of the first state which was mistakenly confused
17709 with the final state because precisely final_state was initialized
17710 to 0.
17711 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17712 now noticed by Bison.
17713 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17714 have a reduction on $default.
17715
29d29c8f
AD
177162001-12-29 Akim Demaille <akim@epita.fr>
17717
17718 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17719 rule line numbers.
17720 * src/closure.c (print_closure): Likewise.
17721 * src/derives.c (print_derives): Likewise.
17722 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17723 now.
17724
7c6b64d0
AD
177252001-12-29 Akim Demaille <akim@epita.fr>
17726
17727 * src/lalr.c (lookaheads_print): New.
17728 (lalr): Call it when --trace-flag.
17729 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17730 are dumped.
17731
3d4daee3
AD
177322001-12-29 Akim Demaille <akim@epita.fr>
17733
17734 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17735 when walking through ritem, even via rule->rhs.
17736 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17737 (useful_production, useless_nonterminals): Likewise.
17738 (reduce_grammar_tables): Likewise, plus update nritems.
17739 * src/nullable.c (set_nullable): Likewise.
17740 * src/lalr.c (build_relations): Likewise.
17741 * tests/sets.at (Nullable): Adjust.
17742 Fortunately, now, the $axiom is no longer nullable.
17743
9e7f6bbd
AD
177442001-12-29 Akim Demaille <akim@epita.fr>
17745
17746 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17747 the 0-sentinel.
17748 * src/gram.c (ritem_longest_rhs): Likewise.
17749 * src/reduce.c (nonterminals_reduce): Likewise.
17750 * src/print_graph.c (print_graph): Likewise.
17751 * src/output.c (output_rule_data): Likewise.
17752 * src/nullable.c (set_nullable): Likewise.
17753
255ef638
AD
177542001-12-29 Akim Demaille <akim@epita.fr>
17755
17756 * src/output.c: Comment changes.
17757
0d8a7363
AD
177582001-12-27 Paul Eggert <eggert@twinsun.com>
17759
17760 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17761 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17762 Sparc, as they were causing more porting problems than the
17763 (minor) performance improvement was worth.
17764
17765 Also, catch up with 1.31's YYSTD.
17766
3db472b9
AD
177672001-12-27 Akim Demaille <akim@epita.fr>
17768
17769 * src/output.c (output_gram): Rely on nritems, not the
17770 0-sentinel. See below.
17771 Use -1 as separator, not 0.
17772 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17773 Rely on -1 as separator in yyrhs, instead of 0.
17774 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17775 twice `Now at end of input', therefore there are two lines less to
17776 expect.
17777
b365aa05
AD
177782001-12-27 Akim Demaille <akim@epita.fr>
17779
17780 * tests/regression.at (Unresolved SR Conflicts):
17781 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17782 below.
17783
30171f79
AD
177842001-12-27 Akim Demaille <akim@epita.fr>
17785
17786 * src/LR0.c (new_state): Recognize the final state by the fact it
17787 is reached by eoftoken.
17788 (insert_start_shifting_state, insert_eof_shifting_state)
17789 (insert_accepting_state, augment_automaton): Remove, since now
17790 these states are automatically computed from the initial state.
17791 (generate_states): Adjust.
17792 * src/print.c: When reporting a rule number to the user, substract
17793 1, so that the axiom rule is rule 0, and the first user rule is 1.
17794 * src/reduce.c: Likewise.
17795 * src/print_graph.c (print_core): For the time being, just as for
17796 the report, depend upon --trace-flags to dump the full set of
17797 items.
17798 * src/reader.c (readgram): Once the grammar read, insert the rule
17799 0: `$axiom: START-SYMBOL $'.
17800 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17801 number of the states has changed (the final state is no longer
17802 necessarily the last), catch up.
17803
75142d45
AD
178042001-12-27 Akim Demaille <akim@epita.fr>
17805
17806 Try to make the use of the eoftoken valid. Given that its value
17807 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17808 is used instead of > 0 where appropriate, (ii), depend upon nritems
17809 instead of the 0-sentinel.
17810
17811 * src/gram.h, src/gram.c (nritems): New.
17812 Expected to be duplication of nitems, but for the time being...
17813 * src/reader.c (packgram): Assert nritems and nitems are equal.
17814 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17815 * src/closure.c (print_closure, print_fderives): Likewise.
17816 * src/gram.c (ritem_print): Likewise.
17817 * src/print.c (print_core, print_grammar): Likewise.
17818 * src/print_graph.c: Likewise.
17819
b7c49edf
AD
178202001-12-27 Akim Demaille <akim@epita.fr>
17821
17822 * src/main.c (main): If there are complains after grammar
17823 reductions, then output the report anyway if requested, then die.
17824 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17825 * src/reader.c (eoftoken): New.
17826 (parse_token_decl): If the token being defined has value `0', it
17827 is the eoftoken.
17828 (packsymbols): No longer hack `tags' to insert `$' by hand.
17829 Be sure to preserve the value of the eoftoken.
17830 (reader): Make sure eoftoken is defined.
17831 Initialize nsyms to 0: now eoftoken is created just like the others.
17832 * src/print.c (print_grammar): Don't special case the eof token.
17833 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17834 lie anyway, albeit pleasant.
17835 * tests/calc.at: Exercise error messages with eoftoken.
17836 Change the grammar so that empty input is invalid.
17837 Adjust expectations.
17838 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17839
ec2da99f
AD
178402001-12-27 Akim Demaille <akim@epita.fr>
17841
17842 * configure.in: Check the protos of strchr ans strspn.
17843 Replace strchr if needed.
17844 * src/system.h: Provide the protos of strchr, strspn and memchr if
17845 missing.
17846 * lib/strchr.c: New.
17847 * src/reader.c (symbols_save): Use strchr.
17848
8adfa272
AD
178492001-12-27 Akim Demaille <akim@epita.fr>
17850
17851 * src/print.c, src/print_graph.c (escape): New.
17852 Use it to quote the TAGS outputs.
17853 * src/print_graph.c (print_state): Now errors are in red, and
17854 reductions in green.
17855 Prefer high to wide: output the state number on a line of its own.
17856
80dac38c
AD
178572001-12-27 Akim Demaille <akim@epita.fr>
17858
17859 * src/state.h, src/state.c (reductions_new): New.
17860 * src/LR0.c (set_state_table): Let all the states have a
17861 `reductions', even if reduced to 0.
17862 (save_reductions): Adjust.
17863 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17864 * src/print.c (print_reductions, print_actions): Adjust.
17865 * src/output.c (action_row): Adjust.
17866
2cec70b9
AD
178672001-12-27 Akim Demaille <akim@epita.fr>
17868
17869 * src/state.h, src/state.c (errs_new, errs_dup): New.
17870 * src/LR0.c (set_state_table): Let all the states have an errs,
17871 even if reduced to 0.
17872 * src/print.c (print_errs, print_reductions): Adjust.
17873 * src/output.c (output_actions, action_row): Adjust.
17874 * src/conflicts.c (resolve_sr_conflict): Adjust.
17875
13ca549a
AD
178762001-12-27 Akim Demaille <akim@epita.fr>
17877
17878 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17879
5092aba5
AD
178802001-12-27 Akim Demaille <akim@epita.fr>
17881
17882 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17883 * src/print.c: here.
17884 (lookaheadset, shiftset): New, used as additional storage by
17885 print_reductions.
17886 (print_results): Adjust.
17887 (print_shifts, print_gotos, print_errs): New, extracted from...
17888 (print_actions): here.
17889 * src/print_graph.c (print_actions): Remove dead code.
17890
11e2beca
AD
178912001-12-27 Akim Demaille <akim@epita.fr>
17892
17893 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17894 `$n' and `@n'.
17895
dac3c910
AD
178962001-12-27 Akim Demaille <akim@epita.fr>
17897
17898 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17899 (build_relations): Adjust.
17900
d0b0fefa
AD
179012001-12-27 Akim Demaille <akim@epita.fr>
17902
17903 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17904 duplication.
17905
adc8c848
AD
179062001-12-27 Akim Demaille <akim@epita.fr>
17907
17908 * src/reader.c (packgram): Catch nitems overflows.
17909
14d293ac
AD
179102001-12-27 Akim Demaille <akim@epita.fr>
17911
17912 * src/files.c, src/files.h (guard_obstack): Remove.
17913 * src/output.c (output): Adjust.
17914 * src/reader.c (parse_braces): New, factoring...
17915 (copy_action, copy_guard): these two which are renamed as...
17916 (parse_action, parse_guard): these.
17917 As a voluntary consequence, using braces around guards is now
17918 mandatory.
17919
f499b062
AD
179202001-12-27 Akim Demaille <akim@epita.fr>
17921
17922 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
17923 * src/reader.c (symbol_list): `guard' and `guard_line' are new
17924 members.
17925 (symbol_list_new): Adjust.
17926 (copy_action): action_line is the first line, not the last.
17927 (copy_guard): Just as for actions, store the `action' only, not
17928 the switch/case/break flesh.
17929 Don't parse the user action that might follow the guard, let...
17930 (readgram): do it, i.e., now, there can be an action after a
17931 guard.
17932 In other words the guard is just explicitly optional.
17933 (packgram): Adjust.
17934 * src/output.c (guards_output): New.
17935 (output_parser): Call it when needed.
17936 (output): Also free the guard and attrs obstacks.
17937 * src/files.c, src/files.h (obstack_save): Remove.
17938 (output_files): Remove.
17939 As a result, if one needs the former `.act' file, using an
17940 appropriate skeleton which requires actions and guards is now
17941 required.
17942 * src/main.c (main): Adjust.
17943 * tests/semantic.at: New.
17944 * tests/regression.at: Use `input.y' as input file name.
17945 Avoid 8+3 problems by requiring input.c when the test needs the
17946 parser.
17947
d945f5cd
AD
179482001-12-27 Akim Demaille <akim@epita.fr>
17949
17950 * src/reader.c (symbol_list_new): Be sure to initialize all the
17951 fields.
17952
d200e455
AD
179532001-12-27 Akim Demaille <akim@epita.fr>
17954
17955 All the hacks using a final pseudo state are now useless.
17956
17957 * src/LR0.c (set_state_table): state_table holds exactly nstates.
17958 * src/lalr.c (nLA): New.
17959 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
17960 instead of lookaheadsp from the pseudo state (nstate + 1).
17961
f9507c28
AD
179622001-12-27 Akim Demaille <akim@epita.fr>
17963
17964 * src/output.c (action_row, token_actions): Use a state_t instead
17965 of a integer, and nlookaheads instead of the following state's
17966 lookaheadsp.
17967
065fbd27
AD
179682001-12-27 Akim Demaille <akim@epita.fr>
17969
17970 * src/conflicts.c (log_resolution, flush_shift)
17971 (resolve_sr_conflict, set_conflicts, solve_conflicts)
17972 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
17973 (conflicts_print, print_reductions): Use a state_t instead of an
17974 integer when referring to a state.
17975 As much as possible, depend upon nlookaheads, instead of the
17976 `lookaheadsp' member of the following state (since lookaheads of
17977 successive states are successive, the difference between state n + 1
17978 and n served as the number of lookaheads for state n).
17979 * src/lalr.c (add_lookback_edge): Likewise.
17980 * src/print.c (print_core, print_actions, print_state)
17981 (print_results): Likewise.
17982 * src/print_graph.c (print_core, print_actions, print_state)
17983 (print_graph): Likewise.
17984 * src/conflicts.h: Adjust.
17985
1b177bd7
AD
179862001-12-27 Akim Demaille <akim@epita.fr>
17987
17988 * src/bison.hairy: Formatting/comment changes.
17989 ANSIfy.
17990 Remove `register' indications.
17991 Add plenty of `static'.
17992
7742ddeb
AD
179932001-12-27 Akim Demaille <akim@epita.fr>
17994
17995 * src/output.c (prepare): Drop the muscle `ntbase' which
17996 duplicates ntokens.
17997 * src/bison.simple: Formatting/comment changes.
17998 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
17999 is an undocumented synonym.
18000
1fa14068
AD
180012001-12-22 Akim Demaille <akim@epita.fr>
18002
18003 * src/output.c (output_table_data): Change the prototype to use
18004 `int' for array ranges: some invocations do pass an int, not a
18005 short.
18006 Reported by Wayne Green.
18007
b9752825
AD
180082001-12-22 Akim Demaille <akim@epita.fr>
18009
18010 Some actions of web2c.y are improperly triggered.
18011 Reported by Mike Castle.
18012
18013 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
18014 * tests/regression.at (Web2c): Rename as...
18015 (Web2c Report): this.
18016 (Web2c Actions): New.
18017
776209d6
AD
180182001-12-22 Akim Demaille <akim@epita.fr>
18019
18020 Reductions in web2c.y are improperly reported.
18021 Reported by Mike Castle.
18022
18023 * src/conflicts.c (print_reductions): Fix.
18024 * tests/regression.at (Web2c): New.
18025
275fc3ad
AD
180262001-12-18 Akim Demaille <akim@epita.fr>
18027
18028 Some host fail on `assert (!"foo")', which expands to
18029 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
18030 Reported by Nelson Beebee.
18031
18032 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
18033 `#define it_succeeded 0' and `assert (it_succeeded)'.
18034
897668ee
MA
180352001-12-17 Marc Autret <autret_m@epita.fr>
18036
18037 * src/bison.simple: Don't hard code the skeleton line and filename.
18038 * src/output.c (output_parser): Rename 'line' as 'output_line'.
18039 New line counter 'skeleton_line' (skeleton-line muscle).
18040
ab3399e0
PE
180412001-12-17 Paul Eggert <eggert@twinsun.com>
18042
18043 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
18044 YYDEBUG must be defined to a nonzero value.
18045
18046 * src/bison.simple (yytname): Do not assume that the user defines
18047 YYDEBUG to a properly parenthesized expression.
18048
3877f72b
AD
180492001-12-17 Akim Demaille <akim@epita.fr>
18050
18051 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
18052 nlookaheads is a new member.
18053 Adjust all users.
18054 * src/lalr.h (nlookaheads): Remove this orphan declaration.
18055 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
18056 state.
776209d6 18057
331dbc1b
AD
180582001-12-17 Akim Demaille <akim@epita.fr>
18059
18060 * src/files.h, src/files.c (open_files, close_files): Remove.
18061 * src/main.c (main): Don't open/close files, nor invoke lex_free,
18062 let...
18063 * src/reader.c (reader): Do it.
776209d6 18064
be750e4c
AD
180652001-12-17 Akim Demaille <akim@epita.fr>
18066
18067 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 18068
709ae8c6
AD
180692001-12-17 Akim Demaille <akim@epita.fr>
18070
18071 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
18072 (flush_reduce): New.
18073 (resolve_sr_conflict): Adjust.
776209d6 18074
f87685c3
AD
180752001-12-17 Akim Demaille <akim@epita.fr>
18076
18077 * src/output.c (output_obstack): Be static and rename as...
18078 (format_obstack): this, to avoid any confusion with files.c's
18079 output_obstack.
18080 * src/reader.h (muscle_obstack): Move to...
18081 * src/output.h: here, since it's defined in output.c.
18082
837491d8
AD
180832001-12-17 Akim Demaille <akim@epita.fr>
18084
18085 * src/output.c (action_row, save_column, default_goto)
18086 (sort_actions, matching_state, pack_vector): Better variable
18087 locality.
18088
796d61fb
AD
180892001-12-17 Akim Demaille <akim@epita.fr>
18090
18091 * src/output.c: Various formatting changes.
776209d6 18092
64d15509
AD
180932001-12-17 Akim Demaille <akim@epita.fr>
18094
18095 * src/files.c (output_files): Free the output_obstack.
18096 * src/main.c (main): Call print and print_graph conditionally.
18097 * src/print.c (print): Work unconditionally.
18098 * src/print_graph.c (print_graph): Work unconditionally.
18099 * src/conflicts.c (log_resolution): Output only if verbose_flag.
18100
fbc8ecb7
MA
181012001-12-16 Marc Autret <autret_m@epita.fr>
18102
18103 * src/output.c (actions_output): Fix. When we use %no-lines,
18104 there is one less line per action.
18105
f0440388
MA
181062001-12-16 Marc Autret <autret_m@epita.fr>
18107
18108 * src/bison.simple: Remove a useless #line directive.
18109 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
18110 * src/output.c (get_lines_number): New.
776209d6 18111 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
18112 output muscles.
18113 Fix line numbering.
18114 (actions_output): Computes the number of lines taken by actions.
18115 (output_master_parser): Insert new skeleton which is the name of
18116 the output parser file name.
18117
a79986b8
MA
181182001-12-15 Marc Autret <autret_m@epita.fr>
18119
18120 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
18121
4ec8e00f
MA
181222001-12-15 Marc Autret <autret_m@epita.fr>
18123
18124 * src/output.c (output_gram): Keep track of the hairy one.
18125
1a4648ff
AD
181262001-12-15 Akim Demaille <akim@epita.fr>
18127
18128 Make `make distcheck' work.
18129
18130 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
18131 system.h which uses libgettext.h.
18132
9c2c67e6
AD
181332001-12-15 Akim Demaille <akim@epita.fr>
18134
18135 * src/nullable.c (set_nullable): Useless rules must be skipped,
18136 otherwise, since we range over their symbols, we might look at a
18137 nonterminal which no longer ``exists'', i.e., it is not counted in
18138 `nvars', hence we overflow our arrays.
18139
93ede233
AD
181402001-12-15 Akim Demaille <akim@epita.fr>
18141
18142 The header can also be produced directly, without any obstack!
18143 Yahoo!
18144
18145 * src/files.c, src/files.h (defines_obstack): Remove.
18146 (compute_header_macro): Global.
18147 (defines_obstack_save): Remove.
18148 * src/reader.c (parse_union_decl): No longer output to
18149 defines_obstack: its content can be found in the `stype' muscle
18150 anyway.
18151 (output_token_translations): Merge into...
18152 (symbols_output): this.
18153 Rename as...
18154 (symbols_save): this.
18155 (reader): Adjust.
18156 * src/output.c (header_output): New.
18157 (output): Call it.
18158
2666f928
AD
181592001-12-15 Akim Demaille <akim@epita.fr>
18160
18161 * src/reader.c (parse_union_decl): Instead of handling two obstack
18162 simultaneously, use one to define the `stype' muscle, and use the
18163 value of the latter to fill defines_obstack.
18164 (copy_comment): Remove.
18165 (copy_comment2): Work for a single obstack.
18166 Rename as...
18167 (copy_comment): this.
18168
428046f8
AD
181692001-12-15 Akim Demaille <akim@epita.fr>
18170
18171 * src/lex.c, src/lex.h (xgetc): No longer static.
18172 * src/reader.c (parse_union_decl): Revamp.
18173
ea52d706
AD
181742001-12-15 Akim Demaille <akim@epita.fr>
18175
18176 Still making progress in separating Bison into (i) input, (ii)
18177 process, (iii) output: now we can directly output the parser file
18178 without using table_obstack at all.
18179
18180 * src/files.c, src/files.h (table_obstack): Bye bye.
18181 (parser_file_name): New.
18182 * src/files.c (compute_output_file_names): Compute it.
18183 * src/output.c (actions_output, output_parser)
18184 (output_master_parser): To a file instead of an obstack.
18185
3f96f4dc
AD
181862001-12-15 Akim Demaille <akim@epita.fr>
18187
18188 Attach actions to rules, instead of pre-outputting them to
18189 actions_obstack.
18190
18191 * src/gram.h (rule_t): action and action_line are new members.
18192 * src/reader.c (symbol_list): Likewise.
18193 (copy_action): Save the actions within the rule.
18194 (packgram): Save them in rule_table.
18195 * src/output.c (actions_output): New.
18196 (output_parser): Use it on `%%actions'.
18197 (output_rule_data): Don't free rule_table.
18198 (output): Do it.
18199 (prepare): Don't save the `action' muscle.
18200 * src/bison.simple: s/%%action/%%actions/.
18201
51576fb3
AD
182022001-12-15 Akim Demaille <akim@epita.fr>
18203
18204 * src/reader.c (copy_action): When --yacc, don't append a `;'
18205 to the user action: let it fail if lacking.
dee049eb 18206 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 18207
2648a72d
AD
182082001-12-14 Akim Demaille <akim@epita.fr>
18209
18210 * src/lex.c (literalchar): Simply return the char you decoded, non
18211 longer mess around with obstacks and int pointers.
18212 Adjust all callers.
18213
92790e5b
AD
182142001-12-14 Akim Demaille <akim@epita.fr>
18215
18216 * src/lex.c (literalchar): Don't escape the special characters,
18217 just decode them, and keep them as char (before, eol was output as
18218 the 2 char string `\n' etc.).
18219 * src/output.c (output_rule_data): Use quotearg to output the
18220 token strings.
18221
927c1557
PE
182222001-12-13 Paul Eggert <eggert@twinsun.com>
18223
18224 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
18225 Do not infringe on the global user namespace when using C++.
18226 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
18227 All uses of `fprintf' and `stderr' changed.
18228
18229 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
18230
ed8e1f68
AD
182312001-12-13 Akim Demaille <akim@epita.fr>
18232
18233 The computation of nullable is broken: it doesn't handle empty
18234 RHS's properly.
18235
18236 * tests/torture.at (GNU AWK Grammar): New.
18237 * tests/sets.at (Nullable): New.
18238 * src/nullable.c (set_nullable): Instead of blindly looping over
18239 `ritems', loop over the rules, and then over their rhs's.
18240
18241 Work around Autotest bugs.
18242
18243 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
18244 frame, because Autotest understand lines starting with a `+' as
18245 traces from the shell. Then, they are not processed properly.
18246 Admittedly an Autotest bug, but we don't have time to wait for
18247 Autotest to catch up.
18248 * tests/regression.at (Broken Closure): Adjust to the new table
18249 frames.
18250 Move to...
18251 * tests/sets.at: here.
18252
cb581495
AD
182532001-12-13 Akim Demaille <akim@epita.fr>
18254
18255 * src/closure.c (closure): Use nrules instead of playing tricks
18256 with BITS_PER_WORD.
18257
2e729273
AD
182582001-12-13 Akim Demaille <akim@epita.fr>
18259
18260 * src/print.c (print_actions): Output the handling of `$' as the
18261 traces do: shifting the token EOF. Before EOF was treated as a
18262 nonterminal.
18263 * tests/regression.at: Adjust some tests.
18264 * src/print_graph.c (print_core): Complete the set of items via
18265 closure. The next-to-final and final states are still unsatisfying,
18266 but that's to be addressed elsewhere.
18267 No longer output the rule numbers, but do output the state number.
18268 A single loop for the shifts + gotos is enough, but picked a
18269 distinct color for each.
18270 (print_graph): Initialize and finalize closure.
18271
107f7dfb
AD
182722001-12-13 Akim Demaille <akim@epita.fr>
18273
18274 * src/reader.c (readgram): Remove dead code, an strip useless
18275 braces.
18276 (get_type): Remove, unused.
18277
9b53a24f
AD
182782001-12-12 Akim Demaille <akim@epita.fr>
18279
18280 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
18281 on that of lib/error.c.
18282
dbfb6dcd
AD
182832001-12-12 Akim Demaille <akim@epita.fr>
18284
18285 Some hosts don't like `/' in includes.
18286
18287 * src/system.h: Include libgettext.h without qualifying the path.
18288 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
18289 $(top_srcdir).
18290
c25fb648
MA
182912001-12-11 Marc Autret <autret_m@epita.fr>
18292
18293 * src/output.c (output_parser): Remove useless muscle.
18294
710ddc4f
MA
182952001-12-11 Marc Autret <autret_m@epita.fr>
18296
18297 * src/bison.simple: Remove #line just before %%epilogue. It
18298 is now handled in ...
18299 * src/reader.c (read_additionnal_code): Add the output of a
18300 #line for the epilogue.
18301
e83d80b8
MA
183022001-12-10 Marc Autret <autret_m@epita.fr>
18303
927c1557 18304 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
18305 replace precedent remove.
18306 * src/bison.simple: Remove #line before %%prologue because
18307 %%input-line is wrong at this time.
18308
971d5158
MA
183092001-12-10 Marc Autret <autret_m@epita.fr>
18310
18311 * src/reader.c (symbols_output): Clean up.
927c1557 18312 * src/output.c (output_gram, output): Clean up.
971d5158 18313
5edafffd
AD
183142001-12-10 Akim Demaille <akim@epita.fr>
18315
18316 * src/lalr.c (initialize_lookaheads): New. Extracted from...
18317 * src/LR0.c (set_state_table): here.
18318 * src/lalr.c (lalr): Call it.
18319
0279f8e9
AD
183202001-12-10 Akim Demaille <akim@epita.fr>
18321
18322 * src/state.h (shifts): Remove the `number' member: shifts are
18323 attached to state, hence no longer need to be labelled with a
18324 state number.
18325
190c4f5f
AD
183262001-12-10 Akim Demaille <akim@epita.fr>
18327
18328 Now that states have a complete set of members, the linked list of
18329 shifts is useless: just fill directly the state's shifts member.
18330
18331 * src/state.h (shifts): Remove the `next' member.
18332 * src/LR0.c (first_state, last_state): Remove.
18333 Adjust the callers.
18334 (augment_automaton): Don't look for the shifts that must be added
18335 a shift on EOF: it is those of the state we looked for! But now,
18336 since shifts are attached, it is no longer needed to looking
18337 merely by its id: its number.
18338
2a73b93d
AD
183392001-12-10 Akim Demaille <akim@epita.fr>
18340
18341 * src/LR0.c (augment_automaton): Better variable locality.
18342 Remove an impossible branch: if there is a state corresponding to
18343 the start symbol being shifted, then there is shift for the start
18344 symbol from the initial state.
18345
74392f6a
AD
183462001-12-10 Akim Demaille <akim@epita.fr>
18347
18348 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
18349 only when appropriate: when insert_start_shifting_state' is not
18350 invoked.
18351 * tests/regression.at (Rule Line Numbers): Adjust.
18352
37c82725
AD
183532001-12-10 Akim Demaille <akim@epita.fr>
18354
18355 * src/LR0.c (augment_automaton): Now that all states have shifts,
18356 merge the two cases addition shifts to the initial state.
18357
6a164e0c
AD
183582001-12-10 Akim Demaille <akim@epita.fr>
18359
18360 * src/lalr.c (set_state_table): Move to...
18361 * src/LR0.c: here.
18362 * src/lalr.c (lalr): Don't call it...
18363 * src/LR0.c (generate_states): do it.
18364 * src/LR0.h (first_state): Remove, only the table is used.
18365
7215de24
AD
183662001-12-10 Akim Demaille <akim@epita.fr>
18367
18368 * src/LR0.h (first_shift, first_reduction): Remove.
18369 * src/lalr.c: Don't use first_shift: find shifts through the
18370 states.
18371
80e25d4d
AD
183722001-12-10 Akim Demaille <akim@epita.fr>
18373
18374 * src/LR0.c: Attach shifts to states as soon as they are
18375 computed.
18376 * src/lalr.c (set_state_table): Instead of assigning shifts to
18377 state, just assert that the mapping was properly done.
18378
0ab3728b
AD
183792001-12-10 Akim Demaille <akim@epita.fr>
18380
18381 * src/LR0.c (insert_start_shift): Rename as...
18382 (insert_start_shifting_state): this.
18383 (insert_eof_shifting_state, insert_accepting_state): New.
18384 (augment_automaton): Adjust.
18385 Better locality of the variables.
18386 When looking if the start_symbol is shifted from the initial
18387 state, using `while (... symbol != start_symbol ...)' sounds
18388 better than `while (... symbol < start_symbol ...)': If fail
18389 to see how the order between symbols could be relevant!
18390
78af9bbc
AD
183912001-12-10 Akim Demaille <akim@epita.fr>
18392
18393 * src/getargs.h: Don't declare `spec_name_prefix' and
18394 `spec_file_prefix', declared by src/files.h.
18395 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
18396 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
18397 * src/output.c (prepare): Adjust.
18398 * src/reader.c (symbols_output): Likewise.
18399 * src/vmsgetargs.c: Vaguely adjust, but who cares?
18400
bdef2a41
AD
184012001-12-10 Akim Demaille <akim@epita.fr>
18402
18403 * src/muscle_tab.c (muscle_init): NULL is a better default than
18404 `"0"'.
18405
3735969c
AD
184062001-12-10 Akim Demaille <akim@epita.fr>
18407
18408 * src/reader.c (reader): Calling symbols_output once is enough.
18409
49701457
AD
184102001-12-10 Akim Demaille <akim@epita.fr>
18411
18412 Now that states have a complete set of members, the linked list of
18413 reductions is useless: just fill directly the state's reductions
18414 member.
18415
18416 * src/state.h (struct reductions): Remove member `number' and
18417 `next'.
18418 * src/LR0.c (first_reduction, last_reduction): Remove.
18419 (save_reductions): Don't link the new reductions, store them in
18420 this_state.
18421 * src/lalr.c (set_state_table): No need to attach reductions to
18422 states, it's already done.
18423 * src/output.c (output_actions): No longer free the shifts, then
18424 the reductions, then the states: free all the states and their
18425 members.
18426
0edad749
AD
184272001-12-10 Akim Demaille <akim@epita.fr>
18428
18429 * src/options.c (OPTN, DRTV, BOTH): New.
18430 (option_table): Use them.
18431
0edad749
AD
18432 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
18433 the job of system.h.
18434 * src/options.c: Don't include stdio.h and xalloc.h for the same
18435 reasons.
18436
5449dd0f
AD
184372001-12-10 Akim Demaille <akim@epita.fr>
18438
18439 * src/output.c (output, prepare): Make sure the values of the
18440 muscles `action' and `prologue' are 0-terminated.
18441
a870c567
AD
184422001-12-10 Akim Demaille <akim@epita.fr>
18443
18444 Clean up GCC warnings.
18445
18446 * src/reader.c (copy_action): `buf' is not used.
18447 (parse_skel_decl): Be static.
18448 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
18449 * src/options.h (create_long_option_table): Have a real prototype.
18450 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
18451 (hash_delete_at): Return const void *.
18452 Adjust casts to preserve the const.
18453
80df8768
AD
184542001-12-10 Akim Demaille <akim@epita.fr>
18455
18456 * configure.in: Require 2.52g.
18457 M4 is not needed, but AUTOM4TE is.
18458 * m4/m4.m4: Remove.
18459 * tests/Makefile.am: Adjust.
18460
f693ad14
AD
184612001-12-10 Akim Demaille <akim@epita.fr>
18462
18463 One structure for states is enough, even though theoretically
18464 there are LR(0) states and LALR(1) states.
18465
18466 * src/lalr.h (state_t): Remove.
18467 (state_table): Be state_t **, not state_t *.
18468 * src/state.h (core, CORE_ALLOC): Rename as...
18469 (state_t, STATE_ALLOC): this.
18470 Add the LALR(1) members: shifts, reductions, errs.
18471 * src/LR0.c (state_table): Rename as...
18472 (state_hash): this, to avoid name clashes with the global
18473 `state_table'.
18474 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
18475 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
18476
74ffbcb6
AD
184772001-12-10 Akim Demaille <akim@epita.fr>
18478
18479 Bison dumps core on bash.y.
18480 Reported by Pascal Bart.
18481
18482 * src/warshall.c (bitmatrix_print): New.
18483 (TC): Use it.
ba0fe3c7 18484 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
18485 j must be the outer loop.
18486 * tests/regression.at (Broken Closure): New.
18487
07708e19
AD
184882001-12-05 Akim Demaille <akim@epita.fr>
18489
18490 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
18491 its argument.
ba1ecc07 18492 Reported by Peter Hamorsky.
07708e19 18493
92b16366
AD
184942001-12-05 Akim Demaille <akim@epita.fr>
18495
18496 * src/conflicts.c (err_table): Remove.
18497 (resolve_sr_conflict): Adjust.
18498 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
18499 Rename as...
18500 (state_t.reductions, state_t.shifts): this.
18501
076ab033
AD
185022001-12-05 Akim Demaille <akim@epita.fr>
18503
18504 * src/reduce.c (reduce_grammar_tables): No longer disable the
18505 removal of useless rules via CPP but via `if (0)', so that the
18506 compiler still check the code is valid.
18507 For instance, it should have noticed `rline' no longer exists: use
18508 the `line' member of rule_t.
18509 * src/gram.c (dummy, rline): Remove, unused.
18510
3843c413
AD
185112001-12-05 Akim Demaille <akim@epita.fr>
18512
18513 * src/output.c (pack_vector): Use assert, not berror.
18514 * src/main.c (berror): Remove, unused.
18515
43168960
AD
185162001-12-05 Akim Demaille <akim@epita.fr>
18517
18518 New experimental feature: if --verbose --trace output all the
18519 items of a state, not only its kernel.
18520
18521 * src/print.c (print_core): If `trace_flag', then invoke closure
18522 before outputting the items of the state (print_core is no longer
18523 a correct name them).
18524 (print_results): Invoke new_closure/free_closure if needed.
18525
b2872512
AD
185262001-12-05 Akim Demaille <akim@epita.fr>
18527
18528 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
18529 * src/closure.c, src/closure.h (itemsetsize): Rename as...
18530 (nitemset): for consistency with the rest of the project.
18531
23cbcc6c
AD
185322001-12-05 Akim Demaille <akim@epita.fr>
18533
18534 * src/closure.c (print_closure): Improve.
18535 (closure): Use it for printing input and output.
18536
03ec521c
AD
185372001-12-05 Akim Demaille <akim@epita.fr>
18538
18539 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
18540 indexed by nonterminals.
18541
3a7456dd
AD
185422001-12-05 Akim Demaille <akim@epita.fr>
18543
18544 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
18545 what it was!).
18546 * src/warshall.h: Remove accidental duplication of the content.
18547
1cbcf2e7
AD
185482001-12-05 Akim Demaille <akim@epita.fr>
18549
18550 * src/closure.c (set_fderives): De-obfuscate.
18551
84182270
AD
185522001-12-05 Akim Demaille <akim@epita.fr>
18553
18554 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
18555
3f6f053c
AD
185562001-12-05 Akim Demaille <akim@epita.fr>
18557
18558 * src/closure.c (set_firsts): De-obfuscate.
18559
7a5350ba
AD
185602001-12-05 Akim Demaille <akim@epita.fr>
18561
18562 * src/output.c (action_row): De-obfuscate
18563 using the good o' techniques: arrays not pointers, variable
18564 locality, BITISSET, RESETBIT etc.
18565
d954473d
AD
185662001-12-05 Akim Demaille <akim@epita.fr>
18567
18568 Pessimize the code to simplify it: from now on, all the states
18569 have a valid SHIFTS, which NSHIFTS is possibly 0.
18570
18571 * src/LR0.c (shifts_new): Be global and move to..
18572 * src/state.c, src/state.h: here.
18573 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18574 * src/print_graph: Adjust.
18575
9839bbe5
AD
185762001-12-05 Akim Demaille <akim@epita.fr>
18577
18578 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18579 * src/conflicts.c: Use it.
18580 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18581 incorrectly ``simplified''.
18582
9f136c07
AD
185832001-12-05 Akim Demaille <akim@epita.fr>
18584
18585 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18586 using the good o' techniques: arrays not pointers, variable
18587 locality, BITISSET, RESETBIT etc.
18588
b608206e
AD
185892001-12-05 Akim Demaille <akim@epita.fr>
18590
18591 * src/state.h (SHIFT_SYMBOL): New.
18592 * src/conflicts.c: Use it to deobfuscate.
18593
52afa962
AD
185942001-12-05 Akim Demaille <akim@epita.fr>
18595
18596 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18597 (print_reductions): De-obfuscate using the good o' techniques:
18598 arrays not pointers, variable locality, BITISSET.
18599
e74dc321
AD
186002001-12-05 Akim Demaille <akim@epita.fr>
18601
18602 * src/conflicts.c (print_reductions): Arrays, not pointers.
18603 Use BITISSET.
18604
768fca83
AD
186052001-12-05 Akim Demaille <akim@epita.fr>
18606
18607 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18608
a17e599f
AD
186092001-12-05 Akim Demaille <akim@epita.fr>
18610
18611 * src/conflicts.c (print_reductions): Improve variable locality.
18612
a04bc341
AD
186132001-12-05 Akim Demaille <akim@epita.fr>
18614
18615 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18616
c8ea038e
AD
186172001-12-05 Akim Demaille <akim@epita.fr>
18618
18619 * src/conflicts.c (print_reductions): Improve variable locality.
18620
aa2aab3c
AD
186212001-12-05 Akim Demaille <akim@epita.fr>
18622
18623 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18624 * src/lalr.c: Use them.
18625
b178c8cc
AD
186262001-12-05 Akim Demaille <akim@epita.fr>
18627
18628 * src/LR0.c (augment_automaton): Formatting changes.
18629 Better variable locality.
18630
f67d13aa
AD
186312001-12-05 Akim Demaille <akim@epita.fr>
18632
18633 * src/lalr.c (matrix_print): New.
18634 (transpose): Use it.
18635 Use arrays instead of pointers.
18636
c2713865
AD
186372001-12-05 Akim Demaille <akim@epita.fr>
18638
18639 * src/lalr.c (maxrhs): Move to...
18640 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18641 * src/lalr.c (build_relations): Adjust.
18642
9887c18a
AD
186432001-12-05 Akim Demaille <akim@epita.fr>
18644
18645 * src/lalr.c (transpose): Free the memory allocated to the
18646 argument, as it is replaced by the results by the unique caller.
18647 (build_relations): Merely invoke transpose: it handles the memory
18648 deallocation.
18649 Improve variable locality.
18650 Avoid variables used as mere abbreviations.
18651 (compute_lookaheads): Use arrays instead of pointers.
18652
4d4f699c
AD
186532001-12-05 Akim Demaille <akim@epita.fr>
18654
18655 * src/lalr.c (initialize_F): Improve variable locality.
18656 Avoid variables used as mere abbreviations.
18657
80a69750
AD
186582001-12-05 Akim Demaille <akim@epita.fr>
18659
18660 * src/derives.c (print_derives): Display the ruleno.
18661 * src/lalr.c (initialize_F, transpose): Better variable locality
18662 to improve readability.
18663 Avoid variables used as mere abbreviations.
18664
fe961097
AD
186652001-12-05 Akim Demaille <akim@epita.fr>
18666
18667 * src/lalr.c (traverse): Use arrays instead of pointers.
18668
e3e4e814
AD
186692001-12-05 Akim Demaille <akim@epita.fr>
18670
18671 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18672 the handling of squeue.
18673 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18674
630e182b
AD
186752001-12-05 Akim Demaille <akim@epita.fr>
18676
18677 Because useless nonterminals are now kept alive (instead of being
18678 `destroyed'), we now sometimes examine them, and store information
18679 related to them. Hence we need to know their number, and adjust
18680 memory allocations.
18681
18682 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18683 static.
18684 * src/LR0.c (allocate_itemsets): The memory allocated to
18685 `symbol_count' was used for two different purpose: once to count
18686 the number of occurrences of each symbol, and later reassigned to
18687 `shift_symbol', containing the symbol that can be shifted from a
18688 given state.
18689 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18690 only, and...
18691 (new_itemsets): Allocate `shift_symbol' here.
18692 (allocate_itemsets): symbol_count includes useless nonterminals.
18693 Make room for them.
18694 (free_storage): Use `free', not `XFREE', for pointers that cannot
18695 be null.
18696
81b51460
AD
186972001-12-05 Akim Demaille <akim@epita.fr>
18698
18699 * src/nullable.c (set_nullable): Deobfuscate the handling of
18700 ritem.
18701 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18702
3067fbef
AD
187032001-12-05 Akim Demaille <akim@epita.fr>
18704
18705 * src/gram.c, src/gram.h (ritem_print): New.
18706 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18707 (This useless function was defined only to work around VMS linkers
18708 that can't handle compilation units with variables only).
18709 * src/reduce.c (dump_grammar): Use it to trace the construction of
18710 ritem.
18711
c2bea5f9
PE
187122001-12-04 Paul Eggert <eggert@twinsun.com>
18713
7d27c823
PE
18714 * src/bison.simple (union yyalloc): Change member names
18715 to be the same as the stack names.
18716 (yyparse): yyptr is now union yyalloc *, not char *.
18717 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18718 and may generate better code on some machines.
c2bea5f9
PE
18719 (yystpcpy): Use prototype if __STDC__ is defined, not just
18720 if __cplusplus is defined.
35687a9d 18721
2c8a9dfa
AD
187222001-11-30 Akim Demaille <akim@epita.fr>
18723
18724 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18725 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18726 Gettext doesn't compile cleanly, and dies with -Werror.
18727 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18728 Include WARNING_CFLAGS here.
18729 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18730 before being defined.
18731
f4e421e6
AD
187322001-11-27 Paul Eggert <eggert@twinsun.com>
18733
18734 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18735 First arg is int, not unsigned.
18736 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18737 (SIZE_MAX, UINT_MAX): New macros.
18738 (quotearg_n_options): Abort if N is negative.
18739 Avoid overflow check on hosts where size_t is 64 bits and int
18740 is 32 bits, as overflow is impossible there.
18741 Fix off-by-one typo that caused unnecessary reallocation.
18742
7093d0f5
AD
187432001-11-29 Paul Eggert <eggert@twinsun.com>
18744
18745 Name space cleanup in generated parser.
18746
18747 * doc/bison.texinfo (Bison Parser): Discuss system headers
18748 and their effect on the user name space.
18749
18750 * src/bison.simple:
18751 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18752 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18753 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18754
18755 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18756 on user names when possible.
18757
18758 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18759 Simplify test for whather <alloca.h> exists.
18760
18761 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18762
18763 (<stdio.h>): Include if YYDEBUG.
18764
18765 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18766 ! defined (yyoverflow) && ! defined (yymemcpy).
18767
18768 (yymemcpy, yyparse): Rename local variables as needed so that
18769 they all begin with 'yy'.
18770
18771 (yystrlen, yystpcpy): New functions.
18772
18773 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18774 All uses changed.
18775
18776 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18777 instead of relying on string.h functions. Use YYSTACK_ALLOC
18778 and YYSTACK_FREE instead of malloc and free.
18779
fd51e5ff
AD
187802001-11-30 Akim Demaille <akim@epita.fr>
18781
18782 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18783 before their first uses.
18784 (YYBISON, YYPURE): Move to the top of the output.
18785
7d13ff5f
AD
187862001-11-30 Akim Demaille <akim@epita.fr>
18787
18788 * tests/reduce.at (Useless Nonterminals): Fix.
18789
892a3995
AD
187902001-11-30 Akim Demaille <akim@epita.fr>
18791
18792 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18793 if body instead of `;' to pacify GCC's warnings.
18794
68f1e3ed
AD
187952001-11-30 Akim Demaille <akim@epita.fr>
18796
18797 Instead of mapping the LHS of unused rules to -1, keep the LHS
18798 valid, but flag the rules as invalid.
18799
18800 * src/gram.h (rule_t): `useful' is a new member.
18801 * src/print.c (print_grammar): Adjust.
18802 * src/derives.c (set_derives): Likewise.
18803 * src/reader.c (packgram, reduce_output): Likewise.
18804 * src/reduce.c (reduce_grammar_tables): Likewise.
18805 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18806
d2d1b42b
AD
188072001-11-30 Akim Demaille <akim@epita.fr>
18808
18809 * src/reduce.c (reduce_output): Formatting changes.
18810 * src/print.c (print_results, print_grammar): Likewise.
18811 * tests/regression.at (Rule Line Numbers)
18812 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18813
760b53a8
AD
188142001-11-30 Akim Demaille <akim@epita.fr>
18815
18816 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18817 useless nonterminals, move them at the end of the symbol arrays.
18818 (reduce_output): Adjust.
18819 * tests/reduce.at (Useless Nonterminals): Adjust.
18820
00238958
AD
188212001-11-30 Akim Demaille <akim@epita.fr>
18822
18823 * src/reduce.c: Various comment/formatting changes.
18824 (nonterminals_reduce): New, extracted from...
18825 (reduce_grammar_tables): here.
18826 (reduce_grammar): Call nonterminals_reduce.
18827
396452de
PE
188282001-11-29 Paul Eggert <eggert@twinsun.com>
18829
18830 * src/bison.simple (YYSTACK_REALLOC): Remove.
18831 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18832 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18833 New macros.
18834 (union yyalloc): New type.
18835 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18836 an arbitrary restriction on hosts where size_t is wider than int.
18837
18838 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18839 a parser stack overflow. Allocate just one block of memory for all
18840 three stacks, instead of allocating three blocks; this typically is
18841 faster and reduces fragmentation.
18842
18843 Do not limit the number of items in the stack to a value that fits
18844 in 'int', as this is an arbitrary limit on hosts with 64-bit
18845 size_t and 32-bit int.
18846
147e184c
MA
188472001-11-29 Marc Autret <autret_m@epita.fr>
18848
18849 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18850 of defining YYERROR_VERBOSE.
18851 [AT_DATA]: $4 is now out of C declarations in the prologue.
18852
426cf563
MA
188532001-11-28 Marc Autret <autret_m@epita.fr>
18854
18855 * src/reader.c (parse_dquoted_param): New.
18856 (parse_skel_decl): Use it.
18857 * src/lex.h: Add its prototype.
18858 * src/lex.c (literalchar): Become not static.
18859
c7925b99
MA
188602001-11-28 Marc Autret <autret_m@epita.fr>
18861
18862 * src/output.h: And put its extern declaration here.
18863 * src/output.c (error_verbose): Define here.
18864 (prepare): Echo name modification.
18865 * src/getargs.h: Clean its extern declaration.
18866 * src/getargs.c (error_verbose_flag): Remove.
18867 (getargs): Remove case 'e'.
18868 * src/options.c (option_table): 'error-verbose' is now seen as simple
18869 percent option.
18870 Include output.h.
18871
18872 * src/reader.c (read_declarations): Remove case tok_include.
18873 (parse_include_decl): Remove.
18874 * src/lex.h (token_t): Remove tok_include.
18875 * src/options.c (option_table): 'include' is now a simple command line
18876 option.
18877
5b5d1929
MA
188782001-11-28 Marc Autret <autret_m@epita.fr>
18879
18880 * src/bison.simple: Adjust muscle names.
18881 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18882 * src/output.c (prepare): s/_/-/ for the muscles names.
18883 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18884
8850be4b
MA
188852001-11-28 Marc Autret <autret_m@epita.fr>
18886
18887 * src/bison.simple: Fix debug.
18888 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18889
4a38e613
AD
188902001-11-28 Akim Demaille <akim@epita.fr>
18891
18892 * src/LR0.c (shifts_new): New.
18893 (save_shifts, insert_start_shift, augment_automaton): Use it.
18894
4b35e1c1
AD
188952001-11-28 Akim Demaille <akim@epita.fr>
18896
18897 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18898 keep ruleno only.
18899
d2b04478
AD
189002001-11-28 Akim Demaille <akim@epita.fr>
18901
18902 * src/closure.c (closure): Instead of looping over word in array
18903 then bits in words, loop over bits in array.
18904
2c4c30aa
AD
189052001-11-28 Akim Demaille <akim@epita.fr>
18906
18907 * src/closure.c (closure): No longer optimize the special case
18908 where all the bits of `ruleset[r]' are set to 0, to make the code
18909 clearer.
18910
576890b7
AD
189112001-11-28 Akim Demaille <akim@epita.fr>
18912
18913 * src/closure.c (closure): `r' and `c' are new variables, used to
18914 de-obfuscate accesses to RULESET and CORE.
18915
cb487d7d
AD
189162001-11-28 Akim Demaille <akim@epita.fr>
18917
18918 * src/reduce.c (reduce_print): Use ngettext.
18919 (dump_grammar): Improve the trace accuracy.
18920
6013d43f
AD
189212001-11-28 Akim Demaille <akim@epita.fr>
18922
18923 * src/reduce.c (dump_grammar): Don't translate trace messages.
18924
cb4956ee
AD
189252001-11-28 Akim Demaille <akim@epita.fr>
18926
18927 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
18928 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
18929 as all tags are free'ed afterwards.
18930 From Enrico Scholz.
18931
648185ab
PE
189322001-11-27 Paul Eggert <eggert@twinsun.com>
18933
18934 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
18935 use alloca when we didn't want to, and vice versa.
18936
68254a03
MA
189372001-11-27 Marc Autret <autret_m@epita.fr>
18938
9113b58f
AD
18939 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
18940 initialization.
68254a03
MA
18941 * src/output.c (prepare): Remove its update.
18942
04d843a2
MA
189432001-11-27 Marc Autret <autret_m@epita.fr>
18944
18945 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
18946 Use %error-verbose.
18947
d2079671 189482001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
18949
18950 * src/bison.simple: Remove YYERROR_VERBOSE using.
18951 Use %%error_verbose.
18952 (yyparse): Likewise.
18953 * src/output.c (prepare): Give its final value.
18954 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
18955 * src/getargs.h: Add its extern declaration.
18956 * src/getargs.c (error_verbose_flag): New int.
18957 (getargs): Update to catch new case.
18958 * src/options.c (option_table): 'error-verbose' is a new option.
18959 (shortopts): Update.
18960
e0327bc8
AD
189612001-11-27 Akim Demaille <akim@epita.fr>
18962
18963 * src/system.h: Use intl/libgettext.h.
18964 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
18965
000f1a3c
AD
189662001-11-27 Akim Demaille <akim@epita.fr>
18967
18968 * tests/torture.at (Exploding the Stack Size with Malloc):
18969 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
18970
26cfe0be
AD
189712001-11-27 Akim Demaille <akim@epita.fr>
18972
18973 * src/files.c: Include error.h.
18974 Reported by Hans Aberg.
18975
f6bd5427
MA
189762001-11-26 Marc Autret <autret_m@epita.fr>
18977
d2079671 18978 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
18979 (read_declarations): Add case tok_include.
18980 * src/getargs.h (include): Add its extern definition.
18981 * src/getargs.c (include): New const char *.
18982 (getargs): Add case '-I'.
18983 * src/options.c (option_table): Add include as command line and
18984 percent option.
18985 * src/lex.h (token_t): Add tok_include.
18986
2ca209c1
AD
189872001-11-26 Akim Demaille <akim@epita.fr>
18988
18989 * src/reader.c (readgram): Make sure rules for mid-rule actions
18990 have a lineno equal to that of their host rule.
18991 Reported by Hans Aberg.
18992 * tests/regression.at (Rule Line Numbers): New.
18993
0e41b407
AD
189942001-11-26 Akim Demaille <akim@epita.fr>
18995
18996 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
18997 size_ts.
18998
189992001-11-26 Akim Demaille <akim@epita.fr>
19000
19001 * src/complain.c, src/complain.h (error): Remove, provided by
19002 lib/error.[ch].
19003
e0c40012
AD
190042001-11-26 Akim Demaille <akim@epita.fr>
19005
19006 * src/reader.c (read_declarations): Don't abort on tok_illegal,
19007 issue an error message.
19008 * tests/regression.at (Invalid %directive): New.
19009 Reported by Hans Aberg.
19010
5e147124
AD
190112001-11-26 Akim Demaille <akim@epita.fr>
19012
19013 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
19014 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
19015
a034c8b8
AD
190162001-11-26 Akim Demaille <akim@epita.fr>
19017
19018 * src/conflicts.c (conflicts_print): Don't complain at all when
19019 there are no reduce/reduce conflicts, and as many shift/reduce
19020 conflicts as expected.
19021 * tests/regression.at (%expect right): Adjust.
19022
c64a20f3
AD
190232001-11-23 Akim Demaille <akim@epita.fr>
19024
19025 * lib/alloca.c: Update, from fileutils.
19026
5b0d29bb
AD
190272001-11-23 Akim Demaille <akim@epita.fr>
19028
19029 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
19030
722c4bfe
AD
190312001-11-23 Akim Demaille <akim@epita.fr>
19032
19033 * src/system.h: Include alloca.h.
19034 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
19035
6255b435
AD
190362001-11-23 Akim Demaille <akim@epita.fr>
19037
19038 * src/print_graph.c (print_actions): Remove `rule', unused.
19039 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
19040 pacify GCC's signed < unsigned warnings.
19041 * src/closure.c (itemsetsize): Likewise.
19042 * src/reader.c (symbol_list_new): Static.
19043
b29b2ed5
AD
190442001-11-23 Akim Demaille <akim@epita.fr>
19045
19046 Attaching lineno to buckets is stupid, since only one copy of each
19047 symbol is kept, only the line of the first occurrence is kept too.
19048
19049 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
19050 * src/reader.c (rline_allocated): Remove, unused.
19051 (symbol_list): Have a `line' member.
19052 (symbol_list_new): New.
19053 (readgram): Use it.
19054 * src/print.c (print_grammar): Output the rule line numbers.
19055 * tests/regression.at (Solved SR Conflicts)
19056 (Unresolved SR Conflicts): Adjust.
19057 Reported by Hans Aberg.
19058
a81b1d4a
MA
190592001-11-22 Marc Autret <autret_m@epita.fr>
19060
19061 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
19062
c1ecb3c1
MA
190632001-11-22 Marc Autret <autret_m@epita.fr>
19064
19065 * src/muscle_tab.c (muscle_init): Remove initialization of
19066 skeleton muscle.
19067 * src/output.c (output_master_parser): Do it here.
19068
fbe01355
AD
190692001-11-20 Akim Demaille <akim@epita.fr>
19070
19071 * po/sv.po: New.
19072 * configure.in (ALL_LINGUAS): Adjust.
19073 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
19074 longer contains strings to translate.
19075
81e895c0
AD
190762001-11-19 Akim Demaille <akim@epita.fr>
19077
19078 * src/conflicts.c (conflicts_print): Add a missing \n.
19079
6bb1878b
AD
190802001-11-19 Akim Demaille <akim@epita.fr>
19081
19082 * src/nullable.c (nullable_print): New.
19083 (set_nullable): Call it when tracing.
19084 Better locality of variables.
19085
d9ec2d07
AD
190862001-11-19 Akim Demaille <akim@epita.fr>
19087
19088 * src/print.c (print_actions): Better locality of variables.
19089
720e5c1b
AD
190902001-11-19 Akim Demaille <akim@epita.fr>
19091
19092 * src/derives.c (print_derives): Fix and enrich.
19093 * src/closure.c (print_fderives): Likewise.
19094
fb908786
AD
190952001-11-19 Akim Demaille <akim@epita.fr>
19096
19097 * src/closure.c (itemsetend): Remove, replaced with...
19098 (itemsetsize): new.
19099
125ecb56
AD
191002001-11-19 Akim Demaille <akim@epita.fr>
19101
19102 * src/LR0.c (kernel_end): Remove, replaced with...
19103 (kernel_size): new.
19104
d8cf039f
AD
191052001-11-19 Akim Demaille <akim@epita.fr>
19106
19107 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
19108 to clarify.
19109
7bec0760
AD
191102001-11-19 Akim Demaille <akim@epita.fr>
19111
19112 * src/closure.c (closure): Use arrays instead of pointers to clarify.
19113
c87d4863
AD
191142001-11-19 Akim Demaille <akim@epita.fr>
19115
19116 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
19117 trace messages.
19118 * src/LR0.c: Likewise.
19119 (allocate_itemsets): Use arrays instead of pointers to clarify.
19120
9bfe901c
AD
191212001-11-19 Akim Demaille <akim@epita.fr>
19122
19123 * src/getargs.c (statistics_flag): Replace with...
19124 (trace_flag): New.
19125 (longopts): Accept --trace instead of --statistics.
19126 * src/getargs.h, src/options.c: Adjust.
19127 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
19128 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
19129
97db7bd4
AD
191302001-11-19 Akim Demaille <akim@epita.fr>
19131
cc72668c 19132 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
19133 pointers to clarify the code.
19134 (save_reductions, save_shifts): Factor common parts of alternatives.
19135
2c5f66ed
AD
191362001-11-19 Akim Demaille <akim@epita.fr>
19137
19138 * src/LR0.c (new_state, get_state): Complete TRACE code.
19139 * src/closure.c: Include `reader.h' to get `tags', needed by the
19140 trace code.
19141 Rename the conditional DEBUG as TRACE.
19142 Output consistently TRACEs to stderr, not stdout.
19143 * src/derives.c: Likewise.
19144 * src/reduce.c: (inaccessable_symbols): Using if is better style
19145 than goto.
19146 Use `#if TRACE' instead of `#if 0' for tracing code.
19147
300f275f
AD
191482001-11-19 Akim Demaille <akim@epita.fr>
19149
19150 * src/system.h (LIST_FREE, shortcpy): New.
19151 * src/LR0.c: Use them.
19152 * src/output.c (free_itemsets, free_reductions, free_shifts):
19153 Remove, replaced by LIST_FREE.
19154
f59c437a
AD
191552001-11-19 Akim Demaille <akim@epita.fr>
19156
19157 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
19158 (REDUCTIONS_ALLOC): New.
19159 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
19160 allocation.
19161
6986fd9e
AD
191622001-11-19 Akim Demaille <akim@epita.fr>
19163
19164 * src/LR0.c (new_state): Complete trace code.
19165 * src/nullable.c (set_nullable): Don't translate traces.
19166
4bc30f78
AD
191672001-11-19 Akim Demaille <akim@epita.fr>
19168
19169 * src/print_graph.c (print_core): Better locality of variables.
19170 * src/print.c (print_core): Likewise.
19171
08a946e0
AD
191722001-11-19 Akim Demaille <akim@epita.fr>
19173
19174 * src/vcg.c: You do the output, so you are responsible of the
19175 handling of VCG syntax, in particular: use quotearg.
19176 * src/print_graph.c: Don't.
19177 (print_actions): Don't output the actions as part of the nodes,
19178 since that's the job of the edges.
19179 (print_state): Don't output by hand: fill the node description,
9bfe901c 19180 and ask for its output.
08a946e0 19181
f0473484
AD
191822001-11-19 Akim Demaille <akim@epita.fr>
19183
cc72668c
AD
19184 * src/bison.simple (yyparse): When verbosely reporting an error,
19185 no longer put additional quotes around token names.
f0473484
AD
19186 * tests/calc.at: Adjust.
19187
e41dc700
AD
191882001-11-19 Akim Demaille <akim@epita.fr>
19189
19190 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
19191 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
19192 * src/output.c: Adjust.
19193
652a871c
AD
191942001-11-19 Akim Demaille <akim@epita.fr>
19195
19196 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
19197 (rule_t): this.
19198 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
19199
b2ed6e58
AD
192002001-11-19 Akim Demaille <akim@epita.fr>
19201
19202 * src/gram.h (rule_t): New.
19203 (rule_table): New.
19204 (rrhs, rlhs): Remove, part of state_t.
19205 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
19206 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
19207 * src/reader.c, src/reduce.c: Adjust.
19208
edad7067
AD
192092001-11-19 Akim Demaille <akim@epita.fr>
19210
19211 * src/reader.c (symbols_output): New, extracted from...
19212 (packsymbols): Here.
19213 (reader): Call it.
19214
3feec034
AD
192152001-11-19 Akim Demaille <akim@epita.fr>
19216
19217 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
19218 (maxrhs): this new function.
19219
ddcd5fdf
AD
192202001-11-19 Akim Demaille <akim@epita.fr>
19221
cc72668c 19222 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
19223 Adjust.
19224
bb527fc2
AD
192252001-11-19 Akim Demaille <akim@epita.fr>
19226
cc72668c 19227 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
19228 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19229 * src/lalr.c: Adjust.
19230
a845a697
AD
192312001-11-19 Akim Demaille <akim@epita.fr>
19232
19233 * src/lalr.c (initialize_LA): Only initialize LA. Let...
19234 (set_state_table): handle the `lookaheads' members.
19235
f004bf6a
AD
192362001-11-19 Akim Demaille <akim@epita.fr>
19237
cc72668c
AD
19238 * src/lalr.h (lookaheads): Removed array, whose contents is now
19239 a member of...
f004bf6a
AD
19240 (state_t): this structure.
19241 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19242 Adjust.
19243
de326cc0
AD
192442001-11-19 Akim Demaille <akim@epita.fr>
19245
cc72668c
AD
19246 * src/lalr.h (consistent): Removed array, whose contents is now
19247 a member of...
de326cc0
AD
19248 (state_t): this structure.
19249 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19250 Adjust.
19251
90b4416b
AD
192522001-11-19 Akim Demaille <akim@epita.fr>
19253
cc72668c
AD
19254 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
19255 contents are now members of...
90b4416b
AD
19256 (state_t): this structure.
19257 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19258 Adjust.
19259
9703cc49
AD
192602001-11-19 Akim Demaille <akim@epita.fr>
19261
19262 * src/lalr.h (state_t): New.
19263 (state_table): Be a state_t * instead of a core **.
19264 (accessing_symbol): Remove, part of state_t.
19265 * src/lalr.c: Adjust.
19266 (set_accessing_symbol): Merge into...
19267 (set_state_table): this.
19268 * src/print_graph.c, src/conflicts.c: Adjust.
19269
d803322e
AD
192702001-11-14 Akim Demaille <akim@epita.fr>
19271
19272 * tests/calc.at, tests/output.at, tests/regression.at,
19273 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
19274 now the tests are run in private dirs, therefore AC_CLEANUP and
19275 family can be simplified to 0-ary.
19276 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
19277 use abs. path to find config.h.
19278 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
19279 stderr, there can be way too much random noise.
19280 Instead pass -Werror to GCC and rely on the exit status.
19281 Reported by Wolfram Wagner.
19282
3d76b07d
AD
192832001-11-14 Akim Demaille <akim@epita.fr>
19284
19285 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
19286 defined only if yyoverflow is defined, to avoid `warning: unused
19287 variable `yyvs1''.
19288 Reported by The Test Suite.
19289
09b503c8
AD
192902001-11-14 Akim Demaille <akim@epita.fr>
19291
19292 * src/print.c: Include reduce.h.
19293 Reported by Hans Aberg.
19294
192952001-11-14 Akim Demaille <akim@epita.fr>
19296
19297 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
19298 Revert a previous patch: these are really const.
19299 * src/conflicts.c (conflict_report): Additional useless pair of
19300 braces to pacify GCC's warnings for `if () if () {} else {}'.
19301 * src/lex.c (parse_percent_token): Replace equal_offset with
19302 arg_offset.
19303 arg is const.
19304 Be sure to strdup `arg' when used, since there is no reason for
19305 token_buffer not to change.
19306
0f37a994
AD
193072001-11-14 Akim Demaille <akim@epita.fr>
19308
19309 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
19310 definition.
19311 * src/main.c (main): Use them.
19312 Suggested by Hans Aberg.
19313
d39d93b8
AD
193142001-11-12 Akim Demaille <akim@epita.fr>
19315
19316 * src/system.h (ngettext): Now that we use ngettext, be sure to
19317 provide a default definition when NLS are not used.
19318
9edcd895
AD
193192001-11-12 Akim Demaille <akim@epita.fr>
19320
19321 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
19322 Use @kbd to denote user input.
19323 (Language and Grammar): ANSIfy the example.
19324 Adjust its layout for info/notinfo.
19325 (Location Tracking Calc): Output error messages to stderr.
19326 Output locations in a more GNUtically correct way.
19327 Fix a couple of Englishos.
19328 Adjust @group/@end group pairs.
19329
7da99ede
AD
193302001-11-12 Akim Demaille <akim@epita.fr>
19331
e3aa65c5 19332 %expect was not functioning at all.
7da99ede
AD
19333
19334 * src/conflicts.c (expected_conflicts): Set to -1.
19335 (conflict_report): Use ngettext.
19336 (conflicts_print): Check %expect and make its violation an error.
19337 * doc/bison.texinfo (Expect Decl): Adjust.
19338 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
19339 * tests/regression.at (%expect not enough, %expect right)
19340 (%expect too much): New.
19341
ba9dda1a
AD
193422001-11-12 Akim Demaille <akim@epita.fr>
19343
19344 * tests/regression.at (Conflicts): Rename as...
19345 (Unresolved SR Conflicts): this.
19346 (Solved SR Conflicts): New.
19347
337c5bd1
AD
193482001-11-12 Akim Demaille <akim@epita.fr>
19349
19350 * src/reduce.c (print_results): Rename as...
19351 (reduce_output): This.
19352 Output to OUT, passed as argument, instead of output_obstack.
19353 (dump_grammar): Likewise.
19354 (reduce_free): New.
19355 Also free V1.
19356 (reduce_grammar): No longer call reduce_output, since...
19357 * src/print.c (print_results): do it.
19358 * src/main.c (main): Call reduce_free;
19359
c73a41af
AD
193602001-11-12 Akim Demaille <akim@epita.fr>
19361
19362 * src/conflicts.c (print_reductions): Accept OUT as argument.
19363 Output to it, not to output_obstack.
19364 * src/print.c (print_actions): Adjust.
19365
0df87bb6
AD
193662001-11-12 Akim Demaille <akim@epita.fr>
19367
19368 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
19369 the result instead of using...
19370 (src_total, rrc_total, src_count, rrc_count): Remove.
19371 (any_conflicts): Remove.
19372 (print_conflicts): Split into...
19373 (conflicts_print, conflicts_output): New.
19374 * src/conflicts.h: Adjust.
19375 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 19376 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
19377 * tests/regression.at (Conflicts): New.
19378 Reported by Tom Lane.
19379
e4d3d4de
AD
193802001-11-12 Akim Demaille <akim@epita.fr>
19381
19382 * tests/regression.at (Invalid input): Remove, duplicate with
19383 ``Invalid input: 1''.
19384
6d7d248e
AD
193852001-11-12 Akim Demaille <akim@epita.fr>
19386
19387 * tests/torture.at (AT_DATA_STACK_TORTURE)
19388 (Exploding the Stack Size with Alloca)
19389 (Exploding the Stack Size with Malloc): New.
19390
e9e4c321
AD
193912001-11-12 Akim Demaille <akim@epita.fr>
19392
19393 * src/bison.simple (YYSTACK_REALLOC): New.
19394 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 19395 Reported by Per Allansson.
e9e4c321 19396
5f7e0832
AD
193972001-11-12 Pascal Bart <pascal.bart@epita.fr>
19398
19399 * src/bison.simple: Define type yystype instead of YYSTYPE, and
19400 define CPP macro, which substitute YYSTYPE by yystype.
19401 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
19402 with yyltype/YYLTYPE. This allows inclusion of the generated
19403 header within the parser if the compiler, such as GGC, accepts
19404 multiple equivalent #defines.
19405 From Akim.
19406
e3f1699f
AD
194072001-11-05 Akim Demaille <akim@epita.fr>
19408
19409 * src/reader.c (symbols_output): New, extracted from...
19410 (packsymbols): here.
19411 (reader): Adjust.
19412
65be0866
AD
194132001-11-05 Akim Demaille <akim@epita.fr>
19414
19415 * src/lex.c (parse_percent_token): s/quotearg/quote/.
19416
e4d910bf
AD
194172001-11-05 Akim Demaille <akim@epita.fr>
19418
19419 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
19420 pattern.
19421
951366c1
AD
194222001-11-05 Akim Demaille <akim@epita.fr>
19423
19424 * src/options.h (struct option_table_struct): set_flags is void*.
19425 * src/options.c (longopts): Support `--output' and `%output'.
19426 (usage): Adjust.
19427 * src/lex.h (tok_setopt): Remove, replaced with...
19428 (tok_intopt, tok_stropt): these new guys.
19429 * src/lex.c (getopt.h): Not needed.
19430 (token_buffer, unlexed_token_buffer): Not const.
19431 (percent_table): Promote `-' over `_' in directive names.
19432 Active `%name-prefix', `file-prefix', and `output'.
19433 (parse_percent_token): Accept possible arguments to directives.
19434 Promote `-' over `_' in directive names.
19435
d8988b2f
AD
194362001-11-04 Akim Demaille <akim@epita.fr>
19437
19438 * doc/bison.texinfo (Decl Summary): Split the list into
19439 `directives for grammars' and `directives for bison'.
19440 Sort'em.
19441 Add description of `%name-prefix', `file-prefix', and `output'.
19442 Promote `-' over `_' in directive names.
19443 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
19444 Simplify the description of `--name-prefix'.
19445 Promote `-' over `_' in directive names.
19446 Promote `--output' over `--output-file'.
19447 Fix the description of `--defines'.
19448 * tests/output.at: Exercise %file-prefix and %output.
19449
6468d18e
AD
194502001-11-02 Akim Demaille <akim@epita.fr>
19451
19452 * doc/refcard.tex: Update.
19453
6b7e85b9
AD
194542001-11-02 Akim Demaille <akim@epita.fr>
19455
19456 * src/symtab.h (SUNDEF): New.
19457 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
19458 stand for `uninitialized', instead of 0.
19459 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
19460 * src/lex.c (lex): Adjust.
19461
19462 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
19463 Number it 0.
19464 Let yylex return it instead of a plain 0.
19465 Reported by Dick Streefland.
19466
cd5aafcf
AD
194672001-11-02 Akim Demaille <akim@epita.fr>
19468
19469 * tests/regression.at (Mixing %token styles): New test.
19470
037ca2f1
AD
194712001-11-02 Akim Demaille <akim@epita.fr>
19472
19473 * src/reader.c (parse_thong_decl): Formatting changes.
19474 (token_translations_init): New, extracted from...
19475 (packsymbols): Here.
19476 Adjust.
19477
270a173c
AD
194782001-11-01 Akim Demaille <akim@epita.fr>
19479
19480 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
19481 Check that `9foo.y' produces correct cpp guards.
19482 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
19483 guards.
19484 Reported by Wwp.
19485
561f9a30
AD
194862001-11-01 Akim Demaille <akim@epita.fr>
19487
19488 * tests/regression.at (Invalid input: 2): New.
19489 * src/lex.c (unlexed_token_buffer): New.
19490 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
19491 too.
19492 Reported by Wwp.
19493
f987e9d2
AD
194942001-11-01 Akim Demaille <akim@epita.fr>
19495
19496 * tests/calc.at: Catch up with 1.30.
19497 * configure.in: Bump to 1.49a.
19498 Adjust to newer Autotest.
19499
0846f581
PB
195002001-10-19 Pascal Bart <pascal.bart@epita.fr>
19501
19502 * src/conflicts.c: Move global variables rrc_total and src_total ...
19503 (print_conflicts): here.
19504 * src/output.c (output): Free global variable user_toknums.
19505 * src/lex.c (token_obstack): Become static.
19506
3c1a79b3
AD
195072001-10-18 Akim Demaille <akim@epita.fr>
19508
19509 * tests/atlocal.in (GCC): Add.
19510 * tests/calc.at: s/m4_match/m4_bmatch/.
19511 s/m4_patsubst/m4_bpatsubst/.
19512 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
19513 * configure.in: AC_SUBST(GCC).
19514
5d52e7d0
MA
195152001-10-14 Marc Autret <autret_m@epita.fr>
19516
19517 * src/options.c (create_long_option_table): Fix.
19518
631aa1d3
AD
195192001-10-10 Akim Demaille <akim@epita.fr>
19520
19521 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
19522
f6ec6d13
AD
195232001-10-04 Akim Demaille <akim@epita.fr>
19524
19525 * src/reader.c (parse_union_decl): Push the caracters in
19526 union_obstack, not attrs_obstack.
19527
342b8b6e
AD
195282001-10-04 Akim Demaille <akim@epita.fr>
19529
19530 Merge in the branch 1.29.
19531
19532 * src/reader.c (packsymbols): Use a temporary obstack for
19533 `%%tokendef', since output_stack is already used elsewhere.
19534
19535 2001-10-02 Akim Demaille <akim@epita.fr>
19536
19537 Bump 1.29d.
19538
19539 2001-10-02 Akim Demaille <akim@epita.fr>
19540
19541 Version 1.29c.
19542
19543 2001-10-02 Akim Demaille <akim@epita.fr>
19544
19545 * tests/regression.at (Invalid CPP headers): New.
19546 From Alexander Belopolsky.
19547 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
19548
19549 2001-10-02 Akim Demaille <akim@epita.fr>
19550
19551 * tests/regression.at (Invalid input): New.
19552 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
19553 Reported by Shura.
19554
19555 2001-10-02 Akim Demaille <akim@epita.fr>
19556
19557 * tests/calc.at: Now that --debug works, the tests must be adjusted.
19558
19559 2001-10-02 Akim Demaille <akim@epita.fr>
19560
19561 * src/output.c (output_parser): Assert `skeleton'.
19562 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19563 systems.
19564 From Shura.
19565
19566 2001-10-01 Marc Autret <autret_m@epita.fr>
19567
19568 * src/lex.h: Echo modifications.
19569 * src/lex.c (unlex): Parameter is now token_t.
19570 From Hans Aberg.
19571
19572 2001-10-01 Marc Autret <autret_m@epita.fr>
19573
19574 * src/main.c: Include lex.h.
19575 From Hans Aberg.
19576
19577 2001-09-29 Akim Demaille <akim@epita.fr>
19578
19579 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19580
19581 2001-09-28 Akim Demaille <akim@epita.fr>
19582
19583 * tests/testsuite.at: Update to newer Autotest.
19584 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19585
19586 2001-09-27 Akim Demaille <akim@epita.fr>
19587
19588 Position independent wrapper.
19589
19590 * tests/bison: Remove.
19591 * tests/bison.in: New.
19592 * configure.in: Adjust.
19593
19594 2001-09-27 Paul Eggert <eggert@twinsun.com>
19595
19596 Port quotearg fixes from tar 1.13.24.
19597
19598 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19599 tm to be declared.
19600 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19601 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19602
19603 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19604 * m4/mbrtowc.m4: New file.
19605 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19606 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19607
19608 2001-09-27 Akim Demaille <akim@epita.fr>
19609
19610 Bump to 1.29c.
19611
19612 2001-09-27 Akim Demaille <akim@epita.fr>
19613
19614 Version 1.29b.
19615
19616 2001-09-25 Akim Demaille <akim@epita.fr>
19617
19618 * src/system.h: Include `xalloc.h'.
19619 Remove it from the C files.
19620 * src/files.c (output_files): Free the obstacks.
19621 * src/lex.c (init_lex): Rename as...
19622 (lex_init): this.
19623 (lex_free): New.
19624 * src/main.c (main): Use it.
19625
19626 2001-09-24 Marc Autret <autret_m@epita.fr>
19627
19628 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19629 to output informations in fout (FILE*).
19630 (open_graph, close_graph): Likewise.
19631 (output_graph, output_edge, output_node): Likewise.
19632 * src/vcg.h: Update function prototypes.
19633 * src/print_graph.c (print_graph): Open output graph file.
19634 (print_actions): Adjust.
19635 * src/files.h: Remove extern declaration.
19636 * src/files.c: Remove graph_obstack declaration.
19637 (open_files): Remove graph_obstack initialization.
19638 (output_files): Remove graph_obstack saving.
19639
19640 2001-09-24 Marc Autret <autret_m@epita.fr>
19641
19642 * src/files.c (compute_output_file_names): Fix.
19643
19644 2001-09-24 Marc Autret <autret_m@epita.fr>,
19645 Akim Demaille <akim@epita.fr>
19646
19647 * src/reader.c (reader): Remove call to free_symtab ().
19648 * src/main.c (main): Call it here.
19649 Include symtab.h.
19650 * src/conflicts.c (initialize_conflicts): Rename as...
19651 (solve_conflicts): this.
19652 * src/print.c (print_core, print_actions, print_state)
19653 (print_grammar): Dump to a file instead a `output_obstack'.
19654 (print_results): Dump `output_obstack', and then proceed with the
19655 FILE *.
19656 * src/files.c (compute_output_file_names, close_files): New.
19657 (output_files): Adjust.
19658 * src/main.c (main): Adjust.
19659
19660 2001-09-23 Marc Autret <autret_m@epita.fr>
19661
19662 * src/files.c (compute_header_macro): Computes header macro name
19663 from spec_defines_file when given.
19664
19665 2001-09-23 Marc Autret <autret_m@epita.fr>
19666
19667 * src/files.c (output_files): Add default extensions.
19668
19669 2001-09-22 Akim Demaille <akim@epita.fr>
19670
19671 * src/conflicts.c (finalize_conflicts): Rename as...
19672 (free_conflicts): this.
19673
19674 2001-09-22 Akim Demaille <akim@epita.fr>
19675
19676 * src/gram.c (gram_free): Rename back as...
19677 (dummy): this.
19678 (output_token_translations): Free `token_translations'.
19679 * src/symtab.c (free_symtab): Free the tag field.
19680
19681 2001-09-22 Akim Demaille <akim@epita.fr>
19682
19683 Remove `translations' as it is always set to true.
19684
19685 * src/gram.h: Adjust.
19686 * src/reader.c (packsymbols, parse_token_decl): Adjust
19687 * src/print.c (print_grammar): Adjust.
19688 * src/output.c (output_token_translations): Adjust.
19689 * src/lex.c (lex): Adjust.
19690 * src/gram.c: Be sure the set pointers to NULL.
19691 (dummy): Rename as...
19692 (gram_free): this.
19693
19694 2001-09-22 Akim Demaille <akim@epita.fr>
19695
19696 * configure.in: Invoke AM_LIB_DMALLOC.
19697 * src/system.h: Use dmalloc.
19698 * src/LR0.c: Be sure to have pointers initialized to NULL.
19699 (allocate_itemsets): Allocate kernel_items only if needed.
19700
19701 2001-09-22 Akim Demaille <akim@epita.fr>
19702
19703 * configure.in: Bump to 1.29b.
19704 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19705 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19706 need xmalloc.c in calc.y.
19707 From Pascal Bart.
19708
19709 2001-09-21 Akim Demaille <akim@epita.fr>
19710
19711 Version 1.29a.
19712 * Makefile.maint, config/config.guess, config/config.sub,
19713 * config/missing: Update from masters.
19714 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19715 upon package.m4.
19716 * configure.in (ALL_LINGUAS): Add `tr'.
19717
19718 2001-09-21 Akim Demaille <akim@epita.fr>
19719
19720 * tests/Makefile.am (package.m4): Move to...
19721 ($(srcdir)/$(TESTSUITE)): here.
19722
19723 2001-09-20 Akim Demaille <akim@epita.fr>
19724
19725 * src/complain.c: No longer try to be standalone: use system.h.
19726 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19727 * src/complain.h: Likewise.
19728 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19729 Remove the unused variable `n'.
19730 From Albert Chin-A-Young.
19731
19732 2001-09-18 Marc Autret <autret_m@epita.fr>
19733
19734 * doc/bison.1: Update.
19735 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19736 descriptions.
19737 (Option Cross Key): Update.
19738 Add --graph.
19739
19740 2001-09-18 Marc Autret <autret_m@epita.fr>
19741
19742 * tests/regression.at: New test (comment in %union).
19743
19744 2001-09-18 Marc Autret <autret_m@epita.fr>
19745
19746 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19747 do that.
19748 Reported by Keith Browne.
19749
19750 2001-09-18 Marc Autret <autret_m@epita.fr>
19751
19752 * tests/output.at: Add tests for --defines and --graph.
19753
19754 2001-09-18 Marc Autret <autret_m@epita.fr>
19755
19756 * tests/output.at: Removes tests of %{header,src}_extension features.
19757
19758 2001-09-18 Akim Demaille <akim@epita.fr>
19759
19760 * tests/Makefile.am (package.m4): New.
19761 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19762 (_AT_CHECK_CALC_ERROR): Likewise.
19763 Factor the `, ' part of verbose error messages.
19764
19765 2001-09-18 Marc Autret <autret_m@epita.fr>
19766
19767 * src/getargs.c (longopts): Declare --defines and --graph as options
19768 with optional arguments.
19769 * src/files.h: Add extern declarations.
19770 * src/files.c (spec_graph_file, spec_defines_file): New.
19771 (output_files): Update.
19772 Remove CPP-outed code.
19773
19774 2001-09-18 Marc Autret <autret_m@epita.fr>
19775
19776 Turn off %{source,header}_extension feature.
19777
19778 * src/files.c (compute_exts_from_gf): Update.
19779 (compute_exts_from_src): Update.
19780 (output_files): CPP-out useless code.
19781 * src/files.h: Remove {header,source}_extension extern declarations.
19782 * src/reader.c (parse_dquoted_param): CPP-out.
19783 (parse_header_extension_decl): Remove.
19784 (parse_source_extension_decl): Remove.
19785 (read_declarations): Remove cases tok_{hdrext,srcext}.
19786 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19787 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19788
19789 2001-09-10 Akim Demaille <akim@epita.fr>
19790
19791 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19792 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19793 (AT_CHECK_OUTPUT): this.
19794 Merely check ls' exit status, its output is useless.
19795
19796 2001-09-10 Akim Demaille <akim@epita.fr>
19797
19798 * tests/calc.at: Use m4_match.
19799 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19800
19801 2001-09-10 Marc Autret <autret_m@epita.fr>,
19802 Akim Demaille <akim@epita.fr>
19803
19804 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19805 enum color_e.
19806 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19807 to `normal'.
19808 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19809 * src/lex.h: Adjust prototype.
19810 (token_t): Add `tok_undef'.
19811 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19812 (parse_percent_token): Now returns token_t.
19813 Add default statement in switch.
19814 (lex): Separate `c' as an input variable, from the token_t result
19815 part.
19816 (unlexed): Is a token_t.
19817
19818 2001-09-10 Akim Demaille <akim@epita.fr>
19819
19820 * configure.in: Bump to 1.29a.
19821
19822 2001-09-07 Akim Demaille <akim@epita.fr>
19823
19824 Version 1.29.
19825
19826 2001-08-30 Akim Demaille <akim@epita.fr>
19827
19828 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19829 * m4/atconfig.m4: Remove.
19830 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19831 * tests/bison: New.
19832 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19833 m4_if, m4_patsubst, and m4_regexp.
19834 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19835 `input' file instead of echo.
19836
19837 2001-08-29 Akim Demaille <akim@epita.fr>
19838
19839 Bump to 1.28e.
19840
19841 2001-08-29 Akim Demaille <akim@epita.fr>
19842
19843 Version 1.28d.
19844
19845 2001-08-29 Paul Eggert <eggert@twinsun.com>
19846
19847 * src/bison.simple (yyparse): Don't take the address of an
19848 item before the start of an array, as that doesn't conform to
19849 the C Standard.
19850
19851 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19852
19853 * doc/bison.texinfo (Location Tracking Calc): New node.
19854
19855 2001-08-29 Paul Eggert <eggert@twinsun.com>
19856
19857 * src/output.c (output): Do not define const, as this now
19858 causes more problems than it cures.
19859
19860 2001-08-29 Akim Demaille <akim@epita.fr>
19861
19862 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19863 the nodes.
19864 Be sure to tag the `detailmenu'.
19865
19866 2001-08-29 Akim Demaille <akim@epita.fr>
19867
19868 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19869 download in a tmp dir.
19870
19871 2001-08-28 Marc Autret <autret_m@epita.fr>
19872
19873 * config/depcomp: New file.
19874
19875 2001-08-28 Marc Autret <autret_m@epita.fr>
19876
19877 * doc/bison.1 (mandoc): Adjust.
19878 From Juan Manuel Guerrero.
19879
19880 2001-08-28 Marc Autret <autret_m@epita.fr>
19881
19882 * src/print_graph.c (print_state): Fix.
19883
19884 2001-08-27 Marc Autret <autret_m@epita.fr>
19885
19886 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19887 char * members.
19888 Echo modifications to the functions prototypes.
19889 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19890
19891 2001-08-27 Marc Autret <autret_m@epita.fr>
19892
19893 * src/vcg.c: Include `xalloc.h'.
19894 (add_colorentry): New.
19895 (add_classname): New.
19896 (add_infoname): New.
19897 * src/vcg.h: Add new prototypes.
19898
19899 2001-08-27 Akim Demaille <akim@epita.fr>
19900
19901 * Makefile.maint: Sync. again with CVS Autoconf.
19902
19903 2001-08-27 Akim Demaille <akim@epita.fr>
19904
19905 * Makefile.maint: Formatting changes.
19906 (po-update, cvs-update, update): New targets.
19907 (AMTAR): Remove.
19908
19909 2001-08-27 Akim Demaille <akim@epita.fr>
19910
19911 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19912 * Makefile.maint: Sync. with CVS Autoconf.
19913
19914 2001-08-27 Marc Autret <autret_m@epita.fr>
19915
19916 * src/vcg.h (struct infoname_s): New.
19917 (struct colorentry_s): New.
19918 (graph_s): New fields {vertical,horizontal}_order in structure.
19919 Add `infoname' field.
19920 Add `colorentry' field;
19921 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
19922 (G_HORIZONTAL_ORDER): New.
19923 (G_INFONAME): New.
19924 (G_COLORENTRY): New.
19925 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
19926 Add output of `infoname'.
19927 Add output of `colorentry'.
19928
19929 2001-08-27 Marc Autret <autret_m@epita.fr>
19930
19931 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
19932 This one shadowed a global parameter.
19933
19934 2001-08-24 Marc Autret <autret_m@epita.fr>
19935
19936 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
19937 instead of `unsigned'.
19938 (print_state): Do not call obstack_object_size () in obstack_grow ()
19939 to avoid macro variables shadowing.
19940
19941 2001-08-23 Marc Autret <autret_m@epita.fr>
19942
19943 * src/lex.c (percent_table): Typo: s/naem/name/.
19944 Add graph option.
19945 Normalize new options declarations.
19946
19947 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
19948
19949 * tests/suite.at: Exercise %header_extension and %source_extension.
19950
19951 2001-08-16 Marc Autret <autret_m@epita.fr>
19952
19953 * src/reader.c (parse_dquoted_param): New.
19954 (parse_header_extension_decl): Use it.
19955 (parse_source_extension_decl): Likewise.
19956
19957 2001-08-16 Marc Autret <autret_m@epita.fr>
19958
19959 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
19960 (get_xxxx_str): Use assert () instead of complain ().
19961 Remove return invokations in default cases.
19962 (get_decision_str): Modify default behaviour. Remove second argument.
19963 Echo modifications on calls.
19964 (output_graph): Fix.
19965
19966 2001-08-16 Marc Autret <autret_m@epita.fr>
19967
19968 * src/getargs.c (usage): Update with ``-g, --graph''.
19969
19970 2001-08-16 Marc Autret <autret_m@epita.fr>
19971
19972 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
19973 (Option Cross Key): Likewise.
19974 * doc/bison.1: Update.
19975
1c8c2190
PB
199762001-09-25 Pascal Bart <pascal.bart@epita.fr>
19977
19978 * src/output.c (output_master_parser): Don't finish action_obstack.
19979 (output_parser): Don't care about the muscle action, here.
19980 (prepare): Copy the action_obstack in the action muscle.
19981 (output): Free action_obstack.
19982
180d45ba
PB
199832001-09-23 Pascal Bart <pascal.bart@epita.fr>
19984
19985 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
19986 will contain `%union' declaration.
19987 (parse_union_decl): Delete #line directive output.
19988 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
19989 informations about %union.
19990 (parse_union_decl): Copy the union_obstack in the muscle stype.
19991 * src/bison.simple: Add new #line directive.
19992 Add typdef %%stype YYSTYPE.
19993
c51d1a19
PB
199942001-09-23 Pascal Bart <pascal.bart@epita.fr>
19995
19996 * src/bison.simple: Add new `#line' directive.
19997
6f9344da
PB
199982001-09-22 Pascal Bart <pascal.bart@epita.fr>
19999
20000 * src/bison.simple: New `#line' directive.
20001 * src/output.c (output_parser): Support new dynamic muscle input_line.
20002
652def80
MA
200032001-09-22 Marc Autret <autret_m@epita.fr>
20004
20005 * src/output.c (output_master_parser): New.
20006 (output_parser): Be more re-entrant.
20007
25b222fa
MA
200082001-09-21 Marc Autret <autret_m@epita.fr>
20009
20010 * src/reader.c (copy_definition, parse_union_decl): Update and use
20011 `linef' muscle.
20012 (copy_action): Likewise.
20013 Use obstack_1grow ().
20014 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
20015
6bc35ae5
MA
200162001-09-21 Marc Autret <autret_m@epita.fr>
20017
20018 * src/options.c (option_table): Adjust.
20019 * src/lex.c (parse_percent_token): Fix.
20020
c0629aa1
PB
200212001-09-20 Pascal Bart <pascal.bart@epita.fr>
20022
20023 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 20024
82b6d266
PB
200252001-09-20 Pascal Bart <pascal.bart@epita.fr>
20026
20027 * src/lex.c (parse_percent_token): Change type of variable `tx', which
20028 is now an option_table_struct*.
20029 (option_strcmp): New function option_strcmp.
20030 (parse_percent_token): Call option_strcmp.
20031 * src/getargs.c (xalloc.h, options.h): Include it.
20032 (getargs): Call create_long_option_table.
20033 (getargs): Free longopts at the end of the function.
20034 (shortopts): Move in options.c.
20035 * src/options.c (create_long_option_table): New function. Convert
20036 information from option_table to option structure.
20037 * src/reader.c (options.h): Include it.
20038
20039 * src/Makefile.am: Adjust.
20040 * src/options.c (option_table): Create from longopts and percent_table.
20041 * src/getargs.c (longopts): Delete.
20042 * src/lex.c (struct percent_table_struct): Delete.
20043 (percent_table): Delete.
20044 (options.h): Include it.
20045 * src/options.c: Create.
20046 * src/options.h: Create.
20047 Declare enum opt_access_e.
20048 Define struct option_table_struct.
20049
75f5aaea
MA
200502001-09-20 Marc Autret <autret_m@epita.fr>
20051
20052 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
20053 sections of Bison.
20054
f508cb0a
PB
200552001-09-19 Pascal Bart <pascal.bart@epita.fr>
20056
20057 * src/bison.simple: s/%%filename/%%skeleton.
20058 * src/muscle_tab.c (getargs.h): Include it.
20059 (muscle_init): Insert new muscle skeleton.
20060
13105fc1
PB
200612001-09-18 Pascal Bart <pascal.bart@epita.fr>
20062
20063 * src/output.c (output_parser): Delete unused variable actions_dumped.
20064
b0c4483e
PB
200652001-09-07 Pascal Bart <pascal.bart@epita.fr>
20066
20067 * src/output.c (output): Delete call to reader_output_yylsp.
20068 * src/reader.c (reader): Likewise.
ba0fe3c7 20069 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 20070
11d82f03
MA
200712001-09-02 Marc Autret <autret_m@epita.fr>
20072
20073 * src/reader.c: Include muscle_tab.h.
20074 (parse_union_decl): Update.
20075 (parse_macro_decl): Rename parse_muscle_decl.
20076 Update to use renamed functions and variable.
20077 (read_declarations, copy_action, read_additionnal_code, : Updated
20078 with correct variables and functions names.
20079 (packsymbols, reader): Likewise.
342b8b6e 20080
11d82f03 20081 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 20082
11d82f03
MA
20083 * src/output.c: Include muscle_tab.h
20084 In all functions using macro_insert, change by using muscle_insert ().
20085 (macro_obstack): Rename muscle_obstack.
20086 Echo modifications in the whole file.
20087 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
20088 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
20089 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
20090
20091 * src/muscle_tab.h: Update double inclusion macros.
20092 (macro_entry_s): Rename muscle_entry_s.
20093 Update prototypes.
342b8b6e 20094
11d82f03
MA
20095 * src/muscle_tab.c: Include muscle_tab.h.
20096 Rename macro_tabble to muscle_table.
20097 (mhash1, mhash2, mcmp): Use muscle_entry.
20098 (macro_init): Rename muscle_init. Update.
20099 (macro_insert): Rename muscle_insert. Update.
20100 (macro_find): Rename muscle_find. Update.
20101
20102 * src/main.c: Include muscle_tab.h.
20103 (main): Call muscle_init ().
20104 * src/Makefile.am (bison_SOURCES): Echo modifications.
20105
93a37297
MA
201062001-09-02 Marc Autret <autret_m@epita.fr>
20107
f753cd62 20108 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 20109
f753cd62
MA
20110 * src/muscle_tab.c, src/muscle_tab.h: Add files.
20111
201122001-09-02 Marc Autret <autret_m@epita.fr>
20113
20114 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 20115
682d48cd
PB
201162001-09-01 Pascal Bart <pascal.bart@epita.fr>
20117
342b8b6e 20118 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
20119 filename.
20120
087c8fda
MA
201212001-09-01 Marc Autret <autret_m@epita.fr>
20122
20123 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
20124 to an explicit value to activate the feature. We do it here.
20125
dda680cb
PB
201262001-08-31 Pascal Bart <pascal.bart@epita.fr>
20127
20128 * src/output.c (prepare): Delete the `filename' muscule insertion.
20129 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
20130 (parse_union_decl): Likewise.
20131 * src/macrotab.c (macro_init): Initialize filename by infile.
20132
9e644e64
MA
201332001-08-31 Marc Autret <autret_m@epita.fr>
20134
20135 * src/bison.simple (YYLSP_NEEDED): New definition.
20136 * src/output.c (prepare): Add macro insertion of `locations_flag'
20137
17da6427
PB
201382001-08-31 Pascal Bart <pascal.bart@epita.fr>
20139
20140 * src/output.c (prepare): Delete insertion of previous muscles,
20141 and insert the `prefix' muscles.
20142 * src/macrotab.c (macro_init): Likewise.
20143 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 20144 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
20145 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
20146 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 20147 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
20148 name_prefix.
20149
e8cb70b9
PB
201502001-08-31 Pascal Bart <pascal.bart@epita.fr>
20151
20152 * src/main.c (main): Standardize.
20153 * src/output.c (output_table_data, output_parser): Likewise.
20154 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
20155
63c2d5de
MA
201562001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
20157
342b8b6e 20158 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
20159 %%epilogue.
20160 * src/output.c (output): Rename %%declarations to %%prologue.
20161 * src/bison.simple: Echo modifications.
342b8b6e 20162
d8cb5183
MA
201632001-08-31 Marc Autret <autret_m@epita.fr>
20164
20165 * src/reader.c (readgram): CleanUp.
20166 (output_token_defines): Likewise.
20167 (packsymbols): Likewise.
20168 (reader): Likewise.
20169 * src/output.c (output): CPP-out useless code.
20170
6c686258
PB
201712001-08-31 Pascal Bart <pascal.bart@epita.fr>
20172
342b8b6e 20173 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
20174 output_trailers and output_headers.
20175 * src/output.h: Remove obsolete functions prototypes of output_headers
20176 and output_trailers.
20177
8f451ef7
PB
201782001-08-30 Pascal Bart <pascal.bart@epita.fr>
20179
20180 * src/main.c: Include macrotab.h.
342b8b6e 20181 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
20182 Adjust functions prototypes.
20183 * src/macrotab.c (macro_insert): Constify key and value.
20184 (macro_find): Constify key.
20185 (macro_insert): Include 'xalloc.h'
20186 (macro_insert): Use XMALLOC.
20187 (macro_find): Constify return value.
20188 * src/output.c (output_table_data): Rename table to table_data.
20189 (output_parser): Constify macro_key, macro_value.
20190
997b6fd0 201912001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
20192
20193 * src/reader.c (parse_skel_decl): New.
342b8b6e 20194 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
20195 * src/lex.h (token_t): New token `tok_skel'.
20196 * src/lex.c (percent_table): Add skeleton option entry.
20197 Standardize.
20198
ff48177d
MA
201992001-08-29 Marc Autret <autret_m@epita.fr>
20200
20201 * src/bison.simple: Add %%user_code directive at the end.
20202 * src/reader.c (read_additionnal_code): New.
20203 (reader): Use it.
20204 * src/output.c (output_program): Remove.
20205 (output): Update.
20206
b33160bf
MA
202072001-08-28 Marc Autret <autret_m@epita.fr>
20208
20209 * src/output.c (output_actions): Clean up.
4e5caae2 20210 (output_gram): CPP-out useless code.
b33160bf
MA
20211 * src/reader.c (reader): Clean up, CPP-out useless code.
20212
d1a2daf7
PB
202132001-08-28 Pascal Bart <pascal.bart@epita.fr>
20214
342b8b6e 20215 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 20216 directive.
d1a2daf7
PB
20217 * src/bison.simple: Add `%%definitions'.
20218
2b763dfe
MA
202192001-08-28 Marc Autret <autret_m@epita.fr>
20220
20221 * config/depcomp: New file.
20222
f1a87ef6
PE
202232001-08-27 Paul Eggert <eggert@twinsun.com>
20224
20225 * src/bison.simple (yyparse): Don't take the address of an
20226 item before the start of an array, as that doesn't conform to
20227 the C Standard.
20228
82e236e2
RA
202292001-08-27 Robert Anisko <robert.anisko@epita.fr>
20230
f1a87ef6 20231 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
20232 obstack. It was done too late here.
20233
20234 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
20235 completely wrong.
20236 (reader): Initialize the macro obstack here, since we need it to grow
20237 '%define' directives.
20238
20239 * src/reader.h: Declare the macro obstack as extern.
20240
b0cfa28a
RA
202412001-08-27 Robert Anisko <robert.anisko@epita.fr>
20242
20243 * src/output.c (output_parser): Fix. Store single '%' characters in
20244 the output obstack instead of throwing them away.
20245
6fc74234
AD
202462001-08-27 Akim Demaille <akim@epita.fr>
20247
20248 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
20249
9c76d118
RA
202502001-08-25 Robert Anisko <robert.anisko@epita.fr>
20251
20252 * lib/Makefile.am: Adjust.
20253
a8289c62
RA
202542001-08-25 Robert Anisko <robert.anisko@epita.fr>
20255
20256 * src/bison.simple: Update and add '%%' directives.
20257
b6610515
RA
202582001-08-25 Robert Anisko <robert.anisko@epita.fr>
20259
20260 * src/reader.c (reader): Remove calls to 'output_headers' and
20261 'output_trailers'. Remove some C output.
20262 (readgram): Disable a piece of code that was writing a default
20263 definition for 'YYSTYPE'.
20264 (reader_output_yylsp): Remove.
20265 (packsymbols): Output token defintions to a macro.
20266 (copy_definition): Disable C output.
6fc74234 20267
b6610515
RA
20268 * src/reader.c (parse_macro_decl): New function used to parse macro
20269 declarations.
20270 (copy_string2): Put the body of copy_string into this new function.
20271 Add a parameter to let the caller choose whether he wants to copy the
20272 string delimiters or not.
20273 (copy_string): Be a simple call to copy_string2 with the last argument
20274 bound to true.
20275 (read_declarations): Add case for macro definition.
20276 (copy_identifier): New.
6fc74234 20277 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
20278 rather than lex.
20279
26f609ff
RA
202802001-08-25 Robert Anisko <robert.anisko@epita.fr>
20281
20282 * src/output.c (prepare): Add prefixed names.
20283 (output_parser): Output semantic actions.
20284 (output_parser): Fix bug on '%%line' directives.
6fc74234 20285
26f609ff
RA
20286 * src/output.c (output_headers): Remove. The C code printed by this
20287 function should now be in the skeletons.
20288 (output_trailers): Remove.
20289 (output): Disable call to 'reader_output_yylsp'.
20290 (output_rule_data): Do not output tables to the table obstack.
20291
20292 * src/output.c: Remove some C dedicated output.
20293 Improve the use of macro and output obstacks.
20294 (output_defines): Remove.
6fc74234 20295
26f609ff
RA
20296 * src/output.c (output_token_translations): Associate 'translate'
20297 table with a macro. No output to the table obstack.
20298 (output_gram): Same for 'rhs' and 'prhs'.
20299 (output_stos): Same for 'stos'.
20300 (output_rule_data): Same for 'r1' and 'r2'.
20301 (token_actions): Same for 'defact'.
20302 (goto_actions): Same for 'defgoto'.
20303 (output_base): Same for 'pact' and 'pgoto'.
20304 (output_table): Same for 'table'.
20305 (output_check): Same for 'check'.
6fc74234 20306
26f609ff
RA
20307 * src/output.c (output_table_data): New function.
20308 (output_short_table): Remove.
20309 (output_short_or_char_table): Remove.
6fc74234 20310
26f609ff
RA
20311 * src/output.c (output_parser): Replace most of the skeleton copy code
20312 with something new. Skeletons are now processed character by character
20313 rather than line by line, and Bison looks for '%%' macros. This is the
20314 first step in making Bison's output process (a lot) more flexible.
20315 (output_parser): Use the macro table.
20316
6f43b113
RA
203172001-08-25 Robert Anisko <robert.anisko@epita.fr>
20318
20319 * src/main.c (main): Initialize the macro table.
20320
dd3127cf
RA
203212001-08-25 Robert Anisko <robert.anisko@epita.fr>
20322
20323 * src/lex.c (percent_table): Add tok_define.
20324 * src/lex.h: Add tok_define.
20325
aa321494
RA
203262001-08-25 Robert Anisko <robert.anisko@epita.fr>
20327
20328 * src/macrotab.c: New file.
20329 * src/macrotab.h: New file.
20330 * src/Makefile.am: Update.
20331
68bd3b6b
RA
203322001-08-25 Robert Anisko <robert.anisko@epita.fr>
20333
20334 * lib/hash.c: New file.
20335 * lib/hash.h: New file.
20336 * lib/Makefile.am: Update.
20337
45f8dd1e
AD
203382001-08-15 Akim Demaille <akim@epita.fr>
20339
20340 Version 1.28c.
20341
40a64a7a 203422001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
20343
20344 * src/reader.c (readgram): Indent output macro YYSTYPE.
20345 (packsymbols): Likewise.
20346 (output_token_defines): Likewise.
20347 * src/files.c: Standardize.
20348 (compute_header_macro): New.
20349 (defines_obstack_save): New. Use compute_header_macro.
20350 (output_files): Update. Use defines_obstack_save.
20351
f9a8293a
AD
203522001-08-15 Akim Demaille <akim@epita.fr>
20353
20354 * doc/bison.texinfo (Table of Symbols): Document
20355 YYSTACK_USE_ALLOCA.
20356
150ca7a7
AD
203572001-08-15 Akim Demaille <akim@epita.fr>
20358
20359 * missing: Update from CVS Automake.
20360 * config/config.guess, config/config.sub, config/texinfo.tex:
20361 Update from gnu.org.
20362
69b5cec4
AD
203632001-08-15 Akim Demaille <akim@epita.fr>
20364
20365 * Makefile.maint: Sync with CVS Autoconf.
20366
f2b5126e
PB
203672001-08-14 Pascal Bart <pascal.bart@epita.fr>
20368
69b5cec4 20369 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
20370 `fdl.texi'.
20371 * doc/fdl.texi: Add to package.
20372
4ecbf796
MA
203732001-08-14 Marc Autret <autret_m@epita.fr>
20374
20375 Turn on %{source,header}_extension features.
20376
69b5cec4 20377 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
20378 source_extension.
20379 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 20380 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
20381 between options.
20382
95fb5662
MA
203832001-08-14 Marc Autret <autret_m@epita.fr>
20384
20385 * src/files.c (compute_base_names): Add extensions computing when
20386 `--file-prefix' used.
20387 Standardize function calls.
20388
78d09da9
MA
203892001-08-13 Marc Autret <autret_m@epita.fr>
20390
69b5cec4 20391 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
20392 defining it (defined but null disables alloca).
20393
5a009f2c
MA
203942001-08-13 Marc Autret <autret_m@epita.fr>
20395
20396 * src/bison.simple (_yy_memcpy): CPP reformat.
20397
1e41465a
PB
203982001-08-13 Pascal Bart <pascal.bart@epita.fr>
20399
20400 * tests/atconfig.in (CPPFLAGS): Fix.
20401
c67a198d
PB
204022001-08-10 Pascal Bart <pascal.bart@epita.fr>
20403
79282c6c 20404 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
20405 `gpl.texi'.
20406 * doc/gpl.texi: Add to package.
20407
09a6de7e
MA
204082001-08-10 Marc Autret <autret_m@epita.fr>
20409
20410 * src/print_graph.h: Fix.
20411 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
20412
b77b9ee0
AD
204132001-08-10 Akim Demaille <akim@epita.fr>
20414
20415 * src/system.h: Provide default declarations for stpcpy, strndup,
20416 and strnlen.
20417
3e259915
MA
204182001-08-10 Robert Anisko <anisko_r@epita.fr>
20419
20420 * doc/bison.texinfo (Locations): Update @$ stuff.
20421
ca96bc2d
MA
204222001-08-09 Robert Anisko <anisko_r@epita.fr>
20423
20424 * src/bison.simple (YYLLOC_DEFAULT): Update.
20425 (yyparse): Adjust.
20426
fdc6758b
MA
204272001-08-08 Marc Autret <autret_m@epita.fr>
20428
b77b9ee0 20429 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
20430 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
20431 Reported by Fabrice Bauzac.
957d4dbf 20432
600cad3b
MA
204332001-08-08 Marc Autret <autret_m@epita.fr>
20434
20435 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
20436 * src/vcg.c (output_node): Fix.
20437 * src/vcg.h: Cleanup.
20438 * src/print_graph.c: Add comments.
b77b9ee0 20439 (node_output_size): New global variable. Simplify the formatting of
600cad3b 20440 the VCG graph output.
b77b9ee0 20441 (print_actions): Unused code is now used. It notifies the final state
600cad3b 20442 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 20443 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
20444 blue.
20445 Get the current node name and node_obstack by argument.
20446 (node_obstack): New variable.
20447 (print_state): Manage node_obstack.
20448 (print_core): Use node_obstack given by argument.
20449 A node is not only computed here but in print_actions also.
20450 (print_graph): CPP out useless code instead of commenting it.
20451
976e528f
AD
204522001-08-07 Pascal Bart <pascal.bart@epita.fr>
20453
20454 * tests/atconfig.in (CPPFLAGS): Fix.
20455
20e8e5ca
AD
204562001-08-07 Akim Demaille <akim@epita.fr>
20457
20458 * src/print_graph.c (quote): New.
20459 (print_core): Use it.
20460
957d4dbf 204612001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 20462
3e3da797
AD
20463 * src/vcg.c (complain.h): Include it.
20464 Unepitaize `return' invocations.
c4b66126 20465 [NDEBUG] (main): Remove.
79282c6c 20466 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
20467 * src/files.c (open_files): Initialize graph_obstack.
20468 * src/print_graph.c (print_actions): CPP out useless code.
20469 (print_core): Don't output the last `\n' in labels.
20470 Use `quote'.
20471 * src/files.c (output_files): Output the VCG file.
20472 * src/main.c (main): Invoke print_graph ();
3e3da797 20473
957d4dbf 204742001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
20475
20476 Automaton VCG graph output.
20477 Using option ``-g'' or long option ``--graph'', you can generate
20478 a gram_filename.vcg file containing a VCG description of the LALR (1)
20479 automaton of your grammar.
20480
20481 * src/main.c: Call to print_graph() function.
20482 * src/getargs.h: Update.
20483 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
20484 (graph_flag): New flag.
20485 (longopts): Update.
20486 (getargs): Add case `g'.
20487 * src/files.c (graph_obstack): New obstack struct.
20488 (open_files): Initialize new obstack.
20489 (output_files): Saves graph_obstack if required.
20490 * src/files.h (graph_obstack): New extern declaration.
20491 * src/Makefile.am: Add new source files.
20492
927c1557 204932001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
20494
20495 * src/print_graph.c, src/print_graph.h (graph): New.
20496 * src/vcg.h: New file.
20497 * src/vcg.c: New file, VCG graph handling.
20498
7333d403
AD
204992001-08-06 Marc Autret <autret_m@epita.fr>
20500
20501 Add of %source_extension and %header_extension which specify
20502 the source or/and the header output file extension.
20503
20504 * src/files.c (compute_base_names): Remove initialisation of
20505 src_extension and header_extension.
20506 (compute_exts_from_gf): Update.
20507 (compute_exts_from_src): Update.
20508 (output_files): Update.
20509 * src/reader.c (parse_header_extension_decl): New.
20510 (parse_source_extension_decl): New.
20511 (read_declarations): New case statements for the new tokens.
20512 * src/lex.c (percent_table): Add entries for %source_extension
20513 and %header_extension.
20514 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
20515
84163231
AD
205162001-08-06 Marc Autret <autret_m@epita.fr>
20517
20518 * configure.in: Bump to 1.28c.
20519 * doc/bison.texinfo: Texinfo thingies.
20520
8303fc42
AD
205212001-08-04 Pascal Bart <pascal.bart@epita.fr>
20522
20523 * tests/atconfig.in (CPPFLAGS): Add.
20524 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
20525
70a84437
AD
205262001-08-03 Akim Demaille <akim@epita.fr>
20527
20528 Version 1.28b.
20529
2ce10144
AD
205302001-08-03 Akim Demaille <akim@epita.fr>
20531
20532 * tests/Makefile.am (check-local): Ship testsuite.
20533 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
20534 Include `string.h'.
20535
1e3e4bc1
AD
205362001-08-03 Akim Demaille <akim@epita.fr>
20537
20538 * configure.in: Try using -Wformat when compiling.
20539
42b45b7f
AD
205402001-08-03 Akim Demaille <akim@epita.fr>
20541
20542 * configure.in: Bump to 1.28b.
20543
8f13fe33
AD
205442001-08-03 Akim Demaille <akim@epita.fr>
20545
20546 * src/complain.c: Adjust strerror_r portability issues.
20547
b37ba92c
AD
205482001-08-03 Akim Demaille <akim@epita.fr>
20549
20550 Version 1.28a.
20551
b0ce6046
AD
205522001-08-03 Akim Demaille <akim@epita.fr>
20553
20554 * src/getargs.c, src/getarg.h (skeleton)): Constify.
20555 * src/lex.c (literalchar): Avoid name clashes on `buf'.
20556 * src/getargs.c: Include complain.h.
20557 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
20558 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
20559
d01c415b
AD
205602001-08-03 Akim Demaille <akim@epita.fr>
20561
20562 * src/reader.c (readgram): Display hidden chars in error messages.
20563
459dd1a6
AD
205642001-08-03 Akim Demaille <akim@epita.fr>
20565
20566 Update to gettext 0.10.39.
20567
53b74c0c
AD
205682001-08-03 Akim Demaille <akim@epita.fr>
20569
20570 * lib/strspn.c: New.
20571
234a3be3
AD
205722001-08-01 Marc Autret <autret_m@epita.fr>
20573
20574 * doc/bison.texinfo: Update.
20575 * doc/bison.1 (mandoc): Update.
20576 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20577 * src/files.c: Support output files extensions computing.
20578 (src_extension): New static variable.
20579 (header_extension): New static variable.
20580 (tr): New function.
20581 (get_extension_index): New function, gets the index of an extension
20582 filename in a string.
20583 (compute_exts_from_gf): New function, computes extensions from the
20584 grammar file extension.
20585 (compute_exts_from_src): New functions, computes extensions from the
20586 C source file extension, file given by ``-o'' option.
20587 (compute_base_names): Update.
20588 (output_files): Update.
20589
847bf1f5
AD
205902001-08-01 Robert Anisko <anisko_r@epita.fr>
20591
d995fee7 20592 * doc/bison.texi: Document @$.
847bf1f5
AD
20593 (Locations): New section.
20594
d074a105
AD
205952001-07-18 Akim Demaille <akim@epita.fr>
20596
20597 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20598 * config/prev-version.txt, config/move-if-change: New.
20599 * Makefile.am: Adjust.
20600
3419715d
AD
206012001-07-08 Pascal Bart <pascal.bart@epita.fr>
20602
20603 * src/bison.simple (yyparse): Suppress warning `comparaison
20604 between signed and unsigned'.
20605
62ab6972
AD
206062001-07-05 Pascal Bart <pascal.bart@epita.fr>
20607
20608 * src/getargs.h (raw_flag): Remove.
20609 * src/getargs.c: Die on `-r'/`--raw'.
20610 * src/lex.c (parse_percent_token): Die on `%raw'.
20611 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20612 * tests/calc.at: Suppress test with option `--raw'.
20613
1e24cc5b
AD
206142001-07-14 Akim Demaille <akim@epita.fr>
20615
20616 * config/: New.
20617 * configure.in: Require Autoconf 2.50.
20618 Update to gettext 0.10.38.
20619
32dfccf8
AD
206202001-03-16 Akim Demaille <akim@epita.fr>
20621
20622 * doc/bison.texinfo: ANSIfy the examples.
20623
cd5bd6ac
AD
206242001-03-16 Akim Demaille <akim@epita.fr>
20625
20626 * getargs.c (skeleton): New variable.
20627 (longopts): --skeleton is a new option.
20628 (shortopts, getargs): -S is a new option.
20629 * getargs.h: Declare skeleton.
20630 * output.c (output_parser): Use it.
20631
5141b016
AD
206322001-03-16 Akim Demaille <akim@epita.fr>
20633
20634 * m4/strerror_r.m4: New.
20635 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20636 * lib/error.h, lib/error.c: Update.
20637
447992b9
AD
206382001-03-16 Akim Demaille <akim@epita.fr>
20639
20640 * src/getargs.c (longopts): Clean up.
20641
274d42ce
AD
206422001-02-21 Akim Demaille <akim@epita.fr>
20643
20644 * src/reader.c (gensym): `gensym_count' is your own.
20645 Use a static buf to create the symbol name, as token_buffer is no
20646 longer a buffer.
20647
22c821f3
AD
206482001-02-08 Akim Demaille <akim@epita.fr>
20649
20650 * src/conflicts.c (conflict_report): Be sure not to append to res
20651 between two calls, which could happen if both first sprintf were
20652 skipped, but not the first cp += strlen.
20653
18569462
AD
206542001-02-08 Akim Demaille <akim@epita.fr>
20655
20656 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20657 New, from fileutils 4.0.37.
20658 * configure.in: Require Autoconf 2.49c. I took some time before
20659 making this decision. This is the only way out for portability
20660 issues in Bison, it would mean way too much duplicate effort to
20661 import in Bison features implemented in 2.49c since 2.13.
20662 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20663
0d8f3c8a
AD
206642001-02-02 Akim Demaille <akim@epita.fr>
20665
20666 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 20667 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 20668
f17bcd1f
AD
206692001-01-19 Akim Demaille <akim@epita.fr>
20670
20671 Get rid of the ad hoc handling of token_buffer in the scanner: use
20672 the obstacks.
20673
20674 * src/lex.c (token_obstack): New.
20675 (init_lex): Initialize it. No longer call...
20676 (grow_token_buffer): this. Remove it.
20677 Adjust all the places which used it to use the obstack.
20678
511e79b3
AD
206792001-01-19 Akim Demaille <akim@epita.fr>
20680
20681 * src/lex.h: Rename all the tokens:
20682 s/\bENDFILE\b/tok_eof/g;
20683 s/\bIDENTIFIER\b/tok_identifier/g;
20684 etc.
20685 Let them be enums, not #define, to ease debugging.
20686 Adjust all the code.
20687
0d6508ef
AD
206882001-01-18 Akim Demaille <akim@epita.fr>
20689
20690 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20691 * src/lex.c (maxtoken, grow_token_buffer): Static.
20692
6deb4447
AD
206932001-01-18 Akim Demaille <akim@epita.fr>
20694
20695 Since we now use obstacks, more % directives can be enabled.
20696
20697 * src/lex.c (percent_table): Also accept `%yacc',
20698 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20699 `%debug'.
20700 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20701 instead of returning a token.
20702 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20703 * src/reader.c (read_declarations): Adjust.
20704 * src/files.c (open_files): Don't call `compute_base_names', don't
20705 compute `attrsfile' since they depend upon data which might be
20706 *in* the input file now.
20707 (output_files): Do it here.
20708 * src/output.c (output_headers): Document the fact that this patch
20709 introduces a guaranteed SEGV for semantic parsers.
20710 * doc/bison.texinfo: Document them.
20711 * tests/suite.at: Exercise these %options.
20712
ff4423cc
AD
207132000-12-20 Akim Demaille <akim@epita.fr>
20714
20715 Also handle the output file (--verbose) with obstacks.
20716
20717 * files.c (foutput): Remove.
20718 (output_obstack): New.
20719 Adjust all dependencies.
20720 * src/conflicts.c: Return a string.
20721 * src/system.h (obstack_grow_string): Rename as...
20722 (obstack_sgrow): this. Be ready to work with non literals.
20723 (obstack_fgrow4): New.
20724
956dba3a
AD
207252000-12-20 Akim Demaille <akim@epita.fr>
20726
20727 * src/files.c (open_files): Fix the computation of short_base_name
20728 in the case of `-o foo.tab.c'.
20729
337bab46
AD
207302000-12-20 Akim Demaille <akim@epita.fr>
20731
20732 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20733 (copy_dollar): Now that everything uses obstacks, get rid of the
20734 FILE * parameters.
20735
5d3214b8
AD
207362000-12-20 Akim Demaille <akim@epita.fr>
20737
20738 * src/files.c (open_files): Actually the `.output' file is based
20739 on the short_base_name, not base_name.
20740 * tests/suite.at (Checking output file names): Adjust.
20741
29092a57
AD
207422000-12-20 Akim Demaille <akim@epita.fr>
20743
20744 * src/bison.s1: Remove, we now use directly...
20745 * src/bison.simple: this.
20746 * src/Makefile.am: Use pkgdata instead of data.
20747
ea5607fd
AD
207482000-12-20 Akim Demaille <akim@epita.fr>
20749
20750 * src/files.c (guard_obstack): New.
20751 (open_files): Initialize it.
20752 (output_files): Dump it...
20753 * src/files.h: Export it.
20754 * src/reader.c (copy_guard): Use it.
20755
27110317
AD
207562000-12-19 Akim Demaille <akim@epita.fr>
20757
20758 * src/files.c (outfile, defsfile, actfile): Removed as global
20759 vars.
20760 (open_files): Don't compute them.
20761 (output_files): Adjust.
20762 (base_name, short_base_name): Be global.
20763 Adjust dependencies.
20764
19c50364
AD
207652000-12-19 Akim Demaille <akim@epita.fr>
20766
20767 * src/files.c (strsuffix): New.
20768 (stringappend): Be just like strcat but allocate.
20769 (base_names): Eve out from open_files.
20770 Try to simplify the rather hairy computation of base_name and
20771 short_base_name.
20772 (open_files): Use it.
20773 * tests/suite.at (Checking output file names): New test.
20774
573c1d9f
AD
207752000-12-19 Akim Demaille <akim@epita.fr>
20776
20777 * src/system.h (obstack_grow_literal_string): Rename as...
20778 (obstack_grow_string): this.
20779 * src/output.c (output_parser): Recognize `%% actions' instead of
20780 `$'.
20781 * src/bison.s1: s/$/%% actions/.
20782 * src/bison.hairy: Likewise.
20783
ef7ddedd
AD
207842000-12-19 Akim Demaille <akim@epita.fr>
20785
20786 * src/output.c (output_parser): Compute the `#line' lines when
20787 there are.
20788 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20789 Suggested by Hans Aberg.
20790
ff61dabd
AD
207912000-12-19 Akim Demaille <akim@epita.fr>
20792
20793 Let the handling of the skeleton files be local to the procedures
20794 that use it.
20795
20796 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20797 longer static.
20798 (fparser, open_extra_files): Remove.
20799 (open_files, output_files): Don't take care of fparser.
20800 * src/files.h: Adjust.
20801 * src/output.c (output_parser): Open and close the file to the
20802 skeleton.
20803 * src/reader.c (read_declarations): When %semantic_parser, open
20804 fguard.
20805
55b96341
AD
208062000-12-19 Akim Demaille <akim@epita.fr>
20807
20808 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20809 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20810
358c15b7
AD
208112000-12-19 Akim Demaille <akim@epita.fr>
20812
20813 * src/files.c (open_files): Yipee! We no longer need all the code
20814 looking for `/tmp' since we have no tmp file.
20815
7de3329e
AD
208162000-12-19 Akim Demaille <akim@epita.fr>
20817
20818 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20819 New macros.
20820 * src/files.c (open_files): Less dependency on MSDOS etc.
20821
3abcd459
AD
208222000-12-14 Akim Demaille <akim@epita.fr>
20823
20824 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20825 Provide a default definition.
20826 Use it when executing the default @ action.
20827 * src/reader.c (reader_output_yylsp): No longer include
20828 `timestamp' and `text' in the default YYLTYPE.
20829
2a91a95e
AD
208302000-12-12 Akim Demaille <akim@epita.fr>
20831
20832 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20833 (copy_guard): Quote the file names.
20834 Reported by Laurent Mascherpa.
20835
14d3eb9b
AD
208362000-12-12 Akim Demaille <akim@epita.fr>
20837
20838 * src/output.c (output_headers, output_program, output): Be sure
20839 to escape special characters when outputting filenames.
20840 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20841 (output_headers): Don't depend on them, Use ACTSTR.
20842
d7045ec6
AD
208432000-11-17 Akim Demaille <akim@epita.fr>
20844
20845 * lib/obstack.h: Formatting changes.
20846 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20847 prevents type checking.
20848 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20849 cast the value to (void *): assigning a `foo *' to a `void *'
20850 variable is valid.
20851 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20852 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20853 append characters.
20854
6fd54b73
AD
208552000-11-17 Akim Demaille <akim@epita.fr>
20856
20857 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20858 as...
20859 (suite.m4, regression.m4, calc.m4): these.
20860 * tests/atgeneral.m4: Update from CVS Autoconf.
20861
4c50eae6
AD
208622000-11-17 Akim Demaille <akim@epita.fr>
20863
20864 * tests/regression.m4 (%union and --defines): New test,
20865 demonstrating a current bug in the obstack implementation.
20866
a35f64ea
AD
208672000-11-17 Akim Demaille <akim@epita.fr>
20868
20869 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20870 macros.
20871 Use them to declare the variables which are global or local to
20872 `yyparse'.
20873
7de23534
AD
208742000-11-17 Akim Demaille <akim@epita.fr>
20875
20876 * acconfig.h: Remove, no longer used.
20877
aa7815f5
AD
208782000-11-07 Akim Demaille <akim@epita.fr>
20879
20880 * src: s/Copyright (C)/Copyright/g.
20881
5af1f549
AD
208822000-11-07 Akim Demaille <akim@epita.fr>
20883
20884 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20885 defining.
20886 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20887
553e2b22
AD
208882000-11-07 Akim Demaille <akim@epita.fr>
20889
20890 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20891 Merge in a single CPP if/else.
20892
8a4f41d6
AD
208932000-11-07 Akim Demaille <akim@epita.fr>
20894
20895 * src/output.c (output): Remove useless variables.
20896 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20897 argument `data' for consistency with the prototypes.
20898 Qualify it `const'.
20899 (obstack_copy, obstack_copy0): Rename the second argument as
20900 `address' for consistency. Qualify it `const'.
20901 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20902 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20903 `const' their input argument (`data' or `address').
20904 Adjust the corresponding macros to include `const' in casts.
20905
095a3fb5
AD
209062000-11-03 Akim Demaille <akim@epita.fr>
20907
20908 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
20909 s/PFILE1/BISON_HAIRY/.
20910 Adjust dependencies.
20911
d1cdce7c
AD
209122000-11-03 Akim Demaille <akim@epita.fr>
20913
090c5ebf 20914 For some reason, this was not applied.
d1cdce7c
AD
20915
20916 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20917 `unlink': it's no longer used.
20918
9311529b
AD
209192000-11-03 Akim Demaille <akim@epita.fr>
20920
20921 * src/files.c (skeleton_find): New function, eved out of...
20922 (open_files, open_extra_files): here.
20923
d8880f69
AD
209242000-11-03 Akim Demaille <akim@epita.fr>
20925
20926 Don't use `atexit'.
20927
20928 * src/files.c (obstack_save): New function.
20929 (done): Rename as...
20930 (output_files): this.
20931 Use `obstack_save'.
20932 * src/main.c (main): Don't use `atexit' to register `done', since
20933 it no longer has to remove tmp files, just call `output_files'
20934 when there are no errors.
20935
0dbb648e
AD
209362000-11-02 Akim Demaille <akim@epita.fr>
20937
20938 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20939 `unlink': it's no longer used.
20940 * src/files.h: Formatting changes.
20941
896fe5c1
AD
209422000-11-02 Akim Demaille <akim@epita.fr>
20943
20944 Remove the last uses of mktemp and unlink/delete.
20945
20946 * src/files.c (fdefines, ftable): Removed.
20947 (defines_ostack, table_obstack): New.
20948 Adjust dependencies of the former into uses of the latter.
20949 * src/output.c (output_short_or_char_table, output_short_table):
20950 Convert to using obstacks.
20951 * src/reader.c (copy_comment2): Accept one FILE * and two
20952 obstacks.
20953 (output_token_defines, reader_output_yylsp): Use obstacks.
20954 * src/system.h (obstack_fgrow3): New.
1f65350a 20955 * po/POTFILES.in: Adjust.
896fe5c1 20956
dd60faec
AD
209572000-11-01 Akim Demaille <akim@epita.fr>
20958
20959 Change each use of `fattrs' into a use of `attrs_obstack'.
20960
20961 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
20962 * src/files.c (fattrs): Remove.
20963 (attrs_obstack): New.
20964 Adjust all dependencies.
20965 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
20966
8c7ebe49
AD
209672000-11-01 Akim Demaille <akim@epita.fr>
20968
20969 Introduce obstacks.
20970 Change each use of `faction' into a use of `action_obstack'.
20971
20972 * lib/obstack.h, lib/obstack.c: New files.
20973 * src/files.c (faction): Remove.
20974 (action_obstack): New.
20975 Adjust all dependencies.
20976
77aee789
AD
209772000-10-20 Akim Demaille <akim@epita.fr>
20978
20979 * lib/quote.h (PARAMS): New macro. Use it.
20980
43591cec
AD
209812000-10-16 Akim Demaille <akim@epita.fr>
20982
20983 * src/output.c (output_short_or_char_table): New function.
20984 (output_short_table, output_token_translations): Use it.
20985 (goto_actions): Use output_short_table.
20986
1e9798d5
AD
209872000-10-16 Akim Demaille <akim@epita.fr>
20988
20989 * src/symtab.c (bucket_new): New function.
20990 (getsym): Use it.
20991
20992 * src/output.c (output_short_table): New argument to display the
20993 comment associated with the table.
20994 Adjust dependencies.
20995 (output_gram): Use it.
20996 (output_rule_data): Nicer output layout for YYTNAME.
20997
f282676b
AD
209982000-10-16 Akim Demaille <akim@epita.fr>
20999
21000 * src/lex.c (read_typename): New function.
21001 (lex): Use it.
21002 * src/reader.c (copy_dollar): Likewise.
21003
550a72a3
AD
210042000-10-16 Akim Demaille <akim@epita.fr>
21005
21006 * src/reader.c (copy_comment2): Expect the input stream to be on
21007 the `/' which is suspected to open a comment, instead of being
21008 called after `//' or `/*' was read.
21009 (copy_comment, copy_definition, parse_union_decl, copy_action)
21010 (copy_guard): Adjust.
21011
131e2fef
AD
210122000-10-16 Akim Demaille <akim@epita.fr>
21013
21014 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
21015 `read_signed_integer'.
21016
79282c5a
AD
210172000-10-16 Akim Demaille <akim@epita.fr>
21018
21019 * src/reader.c (copy_dollar): New function.
21020 (copy_guard, copy_action): Use it.
21021
ff4a34be
AD
210222000-10-16 Akim Demaille <akim@epita.fr>
21023
21024 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
21025 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
21026 New files, from Fileutils 4.0.27.
21027 * src/main.c (printable_version): Remove.
21028 * src/lex.c, src/reader.c: Use `quote'.
21029
210302000-10-04 Akim Demaille <akim@epita.fr>
21031
21032 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
21033
14ded682
AD
210342000-10-04 Akim Demaille <akim@epita.fr>
21035
21036 * doc/bison.texinfo: Various typos spotted by Neil Booth.
21037
8e03724b
AD
210382000-10-04 Akim Demaille <akim@epita.fr>
21039
21040 When a literal string is used to define two different tokens,
21041 `bison -v' segfaults.
21042 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
21043
21044 * tests/regression.m4: New file.
21045 Include the core of the sample provided by Piotr Gackiewicz.
21046 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
21047 properly.
21048
a9e64249
AD
210492000-10-04 Akim Demaille <akim@epita.fr>
21050
21051 * src/reader.c (parse_expect_decl): Keep `count' within the size
21052 of `buffer'.
21053 From Neil Booth.
21054
da9abf43
AD
210552000-10-02 Paul Eggert <eggert@twinsun.com>
21056
21057 * bison.s1 (yyparse): Assign the default value
21058 unconditionally, to avoid a GCC warning and make the parser a
21059 tad smaller.
21060
c33638bb
AD
210612000-10-02 Akim Demaille <akim@epita.fr>
21062
21063 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
21064 options.
21065
444c570a
AD
210662000-10-02 Akim Demaille <akim@epita.fr>
21067
21068 * src/derives.c, src/print.c, src/reduce.c: To ease the
21069 translation, move some `\n' out of the translated strings.
21070
89cab50d
AD
210712000-10-02 Akim Demaille <akim@epita.fr>
21072
21073 The location tracking mechanism is precious for parse error
21074 messages. Nevertheless, it is enabled only when `@n' is used in
21075 the grammar, which is a different issue (you can use it in error
21076 message, but not in the grammar per se). Therefore, there should
21077 be another means to enable it.
21078
21079 * src/getargs.c (getargs): Support `--locations'.
21080 (usage): Report it.
21081 * src/getargs.h (locationsflag): Export it.
21082 * src/lex.c (percent_table): Support `%locations'.
21083 * src/reader.c (yylsp_needed): Remove this variable, now replaced
21084 with `locationsflag'.
21085 * doc/bison.texinfo: Document `--locations' and `%locations'.
21086 Sort the options.
21087 * tests/calc.m4: Test it.
21088
21089 For regularity of the names, replace each
21090 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
21091 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
21092 In addition replace each `flag' with `_flag'.
21093
d6c2cba0
AD
210942000-10-02 Akim Demaille <akim@epita.fr>
21095
21096 Also test parse error messages, including with YYERROR_VERBOSE.
21097
21098 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
21099 associative).
21100 Use it to check the computations.
21101 Use it to check `nonassoc' is honored.
21102 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
21103 `--yyerror-verbose'.
21104 (_AT_CHECK_CALC): Adjust to this option.
21105 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
21106
5a35a6cb
AD
211072000-10-02 Akim Demaille <akim@epita.fr>
21108
21109 Test also `--verbose', `--defines' and `--name-prefix'. Testing
21110 the latter demonstrates a flaw in the handling of non debugging
21111 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
21112 was used in order to simplify:
21113
21114 #if YYDEBUG
21115 if (yydebug)
21116 {
21117 ...
21118 }
21119 #endif
21120
21121 into
21122
21123 if (yydebug)
21124 {
21125 ...
21126 }
21127
21128 unfortunately this leads to a CPP conflict when
21129 `--name-prefix=foo' is used since it produces `#define yydebug
21130 foodebug'.
21131
21132 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
21133 (YYDPRINTF): New macro.
21134 Spread its use.
21135 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
21136 the bison options.
21137 Also test `--verbose', `--defines' and `--name-prefix'.
21138
71da9eea
AD
211392000-10-02 Akim Demaille <akim@epita.fr>
21140
21141 Improve the readability of the produced parsers.
21142
21143 * src/bison.s1: Formatting changes.
21144 Improve the comment related to the `$' mark.
21145 (yydefault): Don't fall through to `yyresume': `goto' there.
21146 * src/output.c (output_parser): When the `$' is met, skip the end
21147 of its line.
21148 New variable, `number_of_dollar_signs', to check there's exactly
21149 one `$' in the parser skeleton.
21150
95e36146
AD
211512000-10-02 Akim Demaille <akim@epita.fr>
21152
21153 * lib/xstrdup.c: New file, from the fileutils.
21154 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
21155 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
21156 instead of strlen + xmalloc + strcpy.
21157 * src/symtab.c (copys): Remove, use xstrdup instead.
21158
d7020c20
AD
211592000-10-02 Akim Demaille <akim@epita.fr>
21160
21161 * src/gram.h (associativity): New enum type which replaces the
21162 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
21163 `right_assoc', `left_assoc' and `non_assoc'.
21164 Adjust all dependencies.
21165 * src/reader.c: Formatting changes.
21166 (LTYPESTR): Don't define it, use it as a literal in
21167 `reader_output_yylsp'.
21168 * src/symtab.h (symbol_class): New enum type which replaces the
21169 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
21170 `sunknown', `stoken and `snterm'.
21171
1916f98e
AD
211722000-10-02 Akim Demaille <akim@epita.fr>
21173
21174 * src/getargs.c (fixed_outfiles): Rename as...
21175 (yaccflag): for consistency and accuracy.
21176 Adjust dependencies.
21177
d7913476
AD
211782000-10-02 Akim Demaille <akim@epita.fr>
21179
21180 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
21181 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
21182 difficult and introduced a lot of core dump. It turns out that
21183 Bison used an implementation of `xmalloc' based on `calloc', and
21184 at various places it does depend upon the initialization to 0. I
21185 have not tried to isolate the pertinent places, and all the former
21186 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
21187 someone should address this issue.
21188
21189 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
21190 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
21191 files.
21192 Adjust dependencies.
21193 * src/warshall.h: New file.
21194 Propagate.
21195
340ef489
AD
211962000-10-02 Akim Demaille <akim@epita.fr>
21197
21198 Various anti-`extern in *.c' changes.
21199
21200 * src/system.h: Include `assert.h'.
21201
b2ca4022
AD
212022000-10-02 Akim Demaille <akim@epita.fr>
21203
21204 * src/state.h (nstates, final_state, first_state, first_shift)
21205 (first_reduction): Move their exportation from here...
21206 * src/LR0.h: to here.
21207 Adjust dependencies.
21208 * src/getargs.c (statisticsflag): New variable.
21209 Add support for `--statistics'.
21210 Adjust dependencies.
21211
21212 Remove a lot of now useless `extern' statements in most files.
21213
403b315b
AD
212142000-10-02 Akim Demaille <akim@epita.fr>
21215
21216 * src/LR0.h: New file.
21217 Propagate its use.
21218
07a58c13
AD
212192000-10-02 Akim Demaille <akim@epita.fr>
21220
21221 * src/print.h: New file.
21222 Propagate its use.
21223 * src/print.c: Formatting and ordering changes.
21224 (verbose, terse): Replace with...
21225 (print_results): this new function.
21226 Adjust dependencies.
21227
0619caf0
AD
212282000-10-02 Akim Demaille <akim@epita.fr>
21229
21230 * src/conflicts.c (conflict_report): New function.
21231 (conflict_log, verbose_conflict_log): Replace with...
21232 (print_conflicts): this function.
21233 Adjust dependencies.
21234 * src/conflicts.h: New file.
21235 Propagate its inclusion.
21236
3519ec76
AD
212372000-10-02 Akim Demaille <akim@epita.fr>
21238
21239 * src/nullable.h: New file.
21240 Propagate its inclusion.
21241 * src/nullable.c: Formatting changes.
21242
015acc48
AD
212432000-10-02 Akim Demaille <akim@epita.fr>
21244
21245 * src/reduce.h: New file.
21246 Propagate its inclusion.
21247 * src/reduce.c: Topological sort and other formatting changes.
21248 (bool, TRUE, FALSE): Move their definition to...
21249 * src/system.h: here.
21250
8963a27b
AD
212512000-10-02 Akim Demaille <akim@epita.fr>
21252
21253 * src/files.c: Formatting changes.
21254 (tryopen, tryclose, openfiles): Rename as...
21255 (xfopen, xfclose, open_files): this.
21256 (stringappend): static.
21257 * src/files.h: Complete the list of exported symbols.
21258 Propagate its use.
21259
a70083a3
AD
212602000-10-02 Akim Demaille <akim@epita.fr>
21261
21262 * src/reader.h: New file.
21263 Propagate its use instead of tedious list of `extern' and
21264 prototypes.
21265 * src/reader.c: Formatting changes, topological sort,
21266 s/register//.
21267
abadc117
AD
212682000-10-02 Akim Demaille <akim@epita.fr>
21269
21270 * src/lex.h: Prototype `lex.c' exported functions.
21271 * src/reader.c: Adjust.
21272 * src/lex.c: Formatting changes.
21273 (safegetc): Rename as...
21274 (xgetc): this.
21275
720d742f
AD
212762000-10-02 Akim Demaille <akim@epita.fr>
21277
21278 * src/lalr.h: New file.
21279 Propagate its inclusion instead of prototypes and `extern'.
21280 * src/lalr.c: Formatting changes, topological sorting etc.
21281
f2acea59
AD
212822000-10-02 Akim Demaille <akim@epita.fr>
21283
21284 * src/output.c (token_actions): Introduce a temporary array,
21285 YYDEFACT, that makes it possible for this function to use
21286 output_short_table.
21287
d019d655
AD
212882000-10-02 Akim Demaille <akim@epita.fr>
21289
21290 `user_toknums' is output as a `short[]' in `output.c', while it is
21291 defined as a `int[]' in `reader.c'. For consistency with the
21292 other output tables, `user_toknums' is now defined as a table of
21293 shorts.
21294
21295 * src/reader.c (user_toknums): Be a short table instead of an int
21296 table.
21297 Adjust dependencies.
21298
21299 Factor the short table outputs.
21300
21301 * src/output.c (output_short_table): New function.
21302 * src/output.c (output_gram, output_stos, output_rule_data)
21303 (output_base, output_table, output_check): Use it.
21304
6c89f1c1
AD
213052000-10-02 Akim Demaille <akim@epita.fr>
21306
21307 * src/output.c (output): Topological sort of the functions, in
21308 order to get rid of the `static' prototypes.
21309 No longer use `register'.
21310 * src/output.h: New file.
21311 Propagate its inclusion in files explicitly prototyping functions
21312 from output.c.
21313
d9efd181
AD
213142000-09-21 Akim Demaille <akim@epita.fr>
21315
21316 * src/atgeneral.m4: Update from Autoconf.
21317
c29240e7 213182000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
21319
21320 * src/closure.h: New file.
21321 * src/closure.c: Formatting changes, topological sort over the
21322 functions, use of closure.h.
21323 (initialize_closure, finalize_closure): Rename as...
21324 (new_closure, free_closure): these. Adjust dependencies.
21325 * src/LR0.c: Formatting changes, topological sort, use of
21326 cloture.h.
21327 (initialize_states): Rename as...
21328 (new_states): this.
21329 * src/Makefile.am (noinst_HEADERS): Adjust.
21330
499daa50
AD
213312000-09-20 Akim Demaille <akim@epita.fr>
21332
21333 * src/acconfig.h: Don't protect config.h against multiple
21334 inclusion.
21335 Don't define PARAMS.
21336 * src/system.h: Define PARAMS.
21337 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
21338 purpose of config.h. system.h must not try to fix wrong
21339 definitions in config.h.
21340
cc84fd5d
AD
213412000-09-20 Akim Demaille <akim@epita.fr>
21342
21343 * src/derives.h: New file.
21344 * src/main.c, src/derives.h: Use it.
21345 Formatting changes.
21346 * src/Makefile.am (noinst_HEADERS): Adjust.
21347
db5b3a89
AD
213482000-09-20 Akim Demaille <akim@epita.fr>
21349
21350 * tests/atgeneral.m4: Update from Autoconf.
21351 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
21352 (AT_CHECK_CALC): New macros.
21353 Use these macros to test bison with options `', `--raw',
21354 `--debug', `--yacc', `--yacc --debug'.
21355
ceed8467
AD
213562000-09-19 Akim Demaille <akim@epita.fr>
21357
21358 * src/output.c: Formatting changes.
21359 * src/machine.h: Remove, leaving its contents in...
21360 * src/system.h: here.
21361 Include stdio.h.
21362 Adjust all dependencies on stdio.h and machine.h.
21363 * src/getargs.h: New file.
21364 Let all `extern' declarations about getargs.c be replaced with
21365 inclusion of `getargs.h'.
21366 * src/Makefile.am (noinst_HEADERS): Adjust.
21367
21368 * tests/calc.m4 (yyin): Be initialized in main, not on the global
21369 scope.
21370 (yyerror): Returns void, not int.
21371 * doc/bison.texinfo: Formatting changes.
21372
05a1d24b
AD
213732000-09-19 Akim Demaille <akim@epita.fr>
21374
21375 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
21376 portable.
21377
cbd25751
AD
213782000-09-18 Akim Demaille <akim@epita.fr>
21379
21380 * configure.in: Append WARNING_CFLAGS to CFLAGS.
21381 * src/Makefile.am (INCLUDES): Don't.
21382 Be ready to fetch headers in lib/.
21383
13863333
AD
213842000-09-18 Akim Demaille <akim@epita.fr>
21385
21386 * doc/bison.texinfo: Update the copyright.
21387 ANSIfy and GNUify the examples.
21388 Remove the old menu.
21389
0d533154
AD
213902000-09-18 Akim Demaille <akim@epita.fr>
21391
21392 First set of tests: use the `calc' example from the documentation.
21393
21394 * src/bison.s1 (yyparse): Condition the code using `yytname' which
21395 is defined only when YYDEBUG is.
21396 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
21397 * src/files.c (tryopen, tryclose): Formatting changes.
21398 Move to the top and be static.
21399 * src/reader.c (read_signed_integer): Likewise.
21400 * tests/calc.m4: New file.
21401 * Makefile.am, suite.m4: Adjust.
21402 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
21403
e79137ac
AD
214042000-09-18 Akim Demaille <akim@epita.fr>
21405
21406 Add support for an Autotest test suite for Bison.
21407
21408 * m4/m4.m4, m4/atconfig.m4: New files.
21409 * m4/Makefile.am (EXTRA_DIST): Adjust.
21410 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
21411 files.
21412 * src/getargs.c: Display a more standard --version message.
21413 * src/reader.c (reader): Formatting changes.
21414 No longer depend upon VERSION_STRING.
21415 * configure.in: No longer use `dnl'.
21416 Set up the test suite and the new directory `tests/.
21417 (VERSION_STRING): Remove.
21418
27821bff
AD
214192000-04-14 Akim Demaille <akim@epita.fr>
21420
21421 * src/reader.c (copy_comment2): New function, same as former
21422 `copy_comment', but outputs into two FILE *.
21423 (copy_comment): Use it.
21424 (parse_union_decl): Use it.
21425 (get_type, parse_start_decl): Use the same `invalid' message.
21426 (parse_start_decl, parse_union_decl): Use the same `multiple'
21427 message.
21428 (parse_union_decl, copy_guard, copy_action): Use the same
21429 `unmatched' message.
21430 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
21431
cfe5fbc0
AD
214322000-03-31 Akim Demaille <akim@epita.fr>
21433
21434 * src/files.c (tryopen, tryclose): Move to the top.
21435 Be static.
21436
cb7db13e
AD
214372000-03-31 Akim Demaille <akim@epita.fr>
21438
21439 * src/main.c (main): Don't call `done', exit does it.
21440
a0f6b076
AD
214412000-03-31 Akim Demaille <akim@epita.fr>
21442
36281465
AD
21443 * allocate.c: s/return (foo)/return foo/.
21444 * lalr.c: Likewise.
21445 * LR0.c: Likewise.
21446 * output.c: Likewise.
21447 * reader.c: Likewise.
21448 * symtab.c: Likewise.
21449 * vmsgetargs.c: Likewise.
21450
214512000-03-31 Akim Demaille <akim@epita.fr>
21452
21453 Clean up the error reporting functions.
a0f6b076
AD
21454
21455 * src/report.c: New file.
21456 * src/report.h: Likewise.
21457 * src/Makefile.am: Adjust.
21458 * m4/error.m4: New file.
21459 * m4/Makefile.am: Adjust.
21460 * configure.in (jm_PREREQ_ERROR): Call it.
21461 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
21462 Remove.
21463 (fatal, fatals): Remove. All callers use complain.c::fatal.
21464 (warn, warni, warns, warnss, warnss): Remove. All callers use
21465 complain.c::complain.
21466 (toomany): Remove, use fatal instead.
21467 * src/files.c (done): No argument, use complain_message_count.
21468 * src/main.c (main): Register `done' to `atexit'.
21469
21470 * src/getargs.c (usage): More `fputs', less `fprintf'.
21471
18539825
AD
214722000-03-28 Akim Demaille <akim@epita.fr>
21473
21474 * lib/: New directory.
21475 * Makefile.am (SUBDIRS): Adjust.
21476 * configure.in: Adjust.
21477 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
21478 useless.
21479 * src/alloca.c: Moved to lib/.
21480 * src/getopt.c: Likewise.
21481 * src/getopt1.c: Likewise.
21482 * src/getopt.h: Likewise.
21483 * src/ansi2knr.c: Likewise.
21484 * src/ansi2knr.1: Likewise.
21485 * src/Makefile.am: Adjust.
21486 * lib/Makefile.am: New file.
21487
9f306f2a
AD
214882000-03-28 Akim Demaille <akim@epita.fr>
21489
21490 * src/getargs.c (usage): Refresh the help message.
21491
0ba347b6
AD
214922000-03-17 Akim Demaille <akim@epita.fr>
21493
21494 * src/getopt1.c: Updated from textutils 2.0e
21495 * src/getopt.c: Likewise.
21496 * src/getopt.h: Likewise.
21497
dbe7f271
AD
214982000-03-17 Akim Demaille <akim@epita.fr>
21499
21500 * src/Makefile.am (bison.simple): Fix the awk program: quote only
21501 the file name, not the whole `#line LINE FILE'.
21502
75bbe78d
AD
215032000-03-17 Akim Demaille <akim@epita.fr>
21504
21505 On syntax errors, report the token on which we choked.
21506
aa5fd0ee
AD
21507 * src/bison.s1 (yyparse): In the label yyerrlab, when
21508 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 21509
7b306f52
AD
215102000-03-17 Akim Demaille <akim@epita.fr>
21511
aa5fd0ee 21512 * src/reader.c (copy_at): New function.
7b306f52
AD
21513 (copy_guard): Use it.
21514 (copy_action): Use it.
21515
e87b5700
AD
215162000-03-17 Akim Demaille <akim@epita.fr>
21517
21518 Be kind to translators, save some useless translations.
21519
aa5fd0ee 21520 * src/main.c (banner): New function.
e87b5700
AD
21521 (fatal_banner): Use it.
21522 (warn_banner): Use it.
21523
ae3c3164
AD
215242000-03-17 Akim Demaille <akim@epita.fr>
21525
aa5fd0ee
AD
21526 * src/reader.c (copy_definition): Use copy_string and
21527 copy_comment. Removed now unused `match', `ended',
21528 `cplus_comment'.
ae3c3164
AD
21529 (copy_comment, copy_string): Moved, to be visible from
21530 copy_definition.
21531
4dc58e7c
AD
215322000-03-17 Akim Demaille <akim@epita.fr>
21533
aa5fd0ee
AD
21534 * src/reader.c (copy_string): Declare `static inline'. No
21535 problems with inline, since it is checked by configure.
4dc58e7c
AD
21536 (copy_comment): Likewise.
21537
0a6384c4
AD
215382000-03-17 Akim Demaille <akim@epita.fr>
21539
aa5fd0ee 21540 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 21541
3cef001a
AD
215422000-03-17 Akim Demaille <akim@epita.fr>
21543
aa5fd0ee 21544 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
21545 (copy_action): Use it. Removed now unused `match', `ended',
21546 `cplus_comment'.
21547 (copy_guard): Likewise.
21548
ca36d2ef
AD
215492000-03-17 Akim Demaille <akim@epita.fr>
21550
aa5fd0ee 21551 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
21552 (copy_action): Use it.
21553 (copy_guard): Likewise.
21554
6666f98f
AD
215552000-03-17 Akim Demaille <akim@epita.fr>
21556
21557 Change the handling of @s so that they behave exactly like $s.
21558 There is now a pseudo variable @$ (readble and writable), location
21559 of the lhs of the rule (by default ranging from the location of
21560 the first symbol of the rhs, to the location of the last symbol,
21561 or, if the rhs is empty, YYLLOC).
21562
21563 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21564 yyval.
21565 (yyparse): When providing a default semantic action, provide a
21566 default location action.
21567 (after the $): No longer change `*YYLSP', just stack YYLOC the
21568 same way you stack YYVAL.
21569 * src/reader.c (read_declarations): Use warns.
21570 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21571 (copy_action, case '@'): Likewise.
21572 Use a standard error message, to save useless work from
21573 translators.
21574
41aca2e0
AD
215752000-03-17 Akim Demaille <akim@epita.fr>
21576
aa5fd0ee
AD
21577 * src/bison.s1: Formatting and cosmetics changes.
21578 * src/reader.c: Likewise.
41aca2e0
AD
21579 Update the Copyright notice.
21580
dc08c1d5
AD
215812000-03-17 Akim Demaille <akim@epita.fr>
21582
aa5fd0ee
AD
21583 * src/bison.s1 (#line): All set to `#line' only, since the
21584 Makefile now handles them.
dc08c1d5 21585
9ee3c97b
AD
215862000-03-16 Akim Demaille <akim@epita.fr>
21587
21588 * src/output.c (output_rule_data): Output the documentation of
21589 some of the tables.
21590 (Copyright notice): Update.
21591 Formatting changes.
21592
0de741ca
AD
215932000-03-16 Akim Demaille <akim@epita.fr>
21594
21595 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21596 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21597 One `#if YYDEBUG' remains, since it uses variables which are
21598 defined only if `YYDEBUG != 0'.
21599
bb10be54
AD
216002000-03-16 Akim Demaille <akim@epita.fr>
21601
21602 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21603 and related variables so that the similarities are highlighted.
21604
b07b484a
AD
216052000-03-16 Akim Demaille <akim@epita.fr>
21606
21607 * src/bison.s1: Properly indent CPP directives.
21608
361f60b3
AD
216092000-03-16 Akim Demaille <akim@epita.fr>
21610
21611 * src/bison.s1: Properly indent the `alloca' CPP section.
21612
8c44d3ec
AD
216132000-03-16 Akim Demaille <akim@epita.fr>
21614
21615 Do not hard code values of directories in `configure.in'.
21616 Update the `configure' tool chain.
21617
21618 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21619 src/makefile.am.
21620 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21621 (AC_OUTPUT): Add m4/Makefile.
21622 Bump to bison 1.28a, 1.29 has never been released.
21623 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21624 handled via src/Makefile.am.
21625 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21626 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21627 autoheader.
21628 * Makefile.am (SUBDIRS): Add m4.
21629 (ACLOCAL_AM_FLAGS): New variable.
21630 (AUTOMAKE_OPTIONS): Add check-news.
21631 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21632 the proper line number and file name.
21633 (DEFS): Propagate the location of bison library files and of the
21634 locale files.
21635 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21636 builddir.
21637 * acinclude.m4: Remove, replaced by the directory m4.
21638 * m4/Makefile.am (EXTRA_DIST): New variable.
21639 * m4/gettext.m4: New file, from the fileutils.
21640 * m4/lcmessage.m4: Likewise
21641 * m4/progtest.m4: Likewise.
21642 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21643
f95997e7
AD
216442000-03-10 Akim Demaille <akim@epita.fr>
21645
21646 * src/closure.c:
21647 Formatting changes of various comments.
21648 Respect the GNU coding standards at various places.
21649 Don't use `_()' when no translation is needed.
21650
216511999-12-13 Jesse Thilo <jthilo@gnu.org>
21652
21653 * src/files.c:
21654 OS/2 honors TMPDIR environment variable.
21655
216561999-12-13 Jesse Thilo <jthilo@gnu.org>
21657
21658 * doc/bison.texinfo: Tweaked spelling and grammar.
21659 Updated ISBN.
21660 Removed reference to price of printed copy.
21661 Mention BISON_SIMPLE and BISON_HAIRY.
21662
216631999-12-13 Jesse Thilo <jthilo@gnu.org>
21664
21665 * configure.in, NEWS:
21666 Bison 1.29 released.
21667
216681999-10-27 Jesse Thilo <jthilo@gnu.org>
21669
21670 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21671 Added reference card.
21672
216731999-07-26 Jesse Thilo <jthilo@gnu.org>
21674
21675 * po/ru.po: Added Russian translation.
21676
216771999-07-26 Jesse Thilo <jthilo@gnu.org>
21678
21679 * configure.in: Added Russian translation.
21680
216811999-07-06 Jesse Thilo <jthilo@gnu.org>
21682
21683 * configure.in, NEWS, README:
21684 Released version 1.28.
21685
216861999-06-14 Jesse Thilo <jthilo@gnu.org>
21687
21688 * src/system.h:
21689 Squashed redefinition warning on some systems.
21690
21691 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21692 Have configure build version string instead of relying on ANSI string
21693 concatentation.
21694
216951999-06-14 Jesse Thilo <jthilo@gnu.org>
21696
21697 * po/POTFILES.in: Got rid of version.c.
21698
216991999-06-14 Jesse Thilo <jthilo@gnu.org>
21700
21701 * acconfig.h, configure.in:
21702 Have configure build version string instead of relying on ANSI string
21703 concatentation.
21704
217051999-06-08 Jesse Thilo <jthilo@gnu.org>
21706
21707 * doc/bison.1:
21708 Dropped mention of `+' for long-named options.
21709
217101999-05-30 Jesse Thilo <jthilo@gnu.org>
21711
21712 * src/files.c: Added <unistd.h> for unlink().
21713
21714 * src/Makefile.am, src/system.h:
21715 I18n fixes.
21716
217171999-05-30 Jesse Thilo <jthilo@gnu.org>
21718
21719 * README: Added a FAQ list.
21720
21721 * configure.in, acconfig.h:
21722 I18n fixes.
21723
217241999-05-30 Jesse Thilo <jthilo@gnu.org>
21725
21726 * doc/FAQ, doc/Makefile.am:
21727 Added a FAQ list.
21728
217291999-05-19 Jesse Thilo <jthilo@gnu.org>
21730
21731 * src/alloc.h, src/symtab.h, src/version.c:
21732 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21733
217341999-04-18 Jesse Thilo <jthilo@gnu.org>
21735
21736 * src/.cvsignore, src/Makefile.am:
21737 Reorganized: sources in `src', documentation in `doc'.
21738
21739 * src/lex.c (literalchar):
21740 fixed the code for escaping double quotes (thanks
21741 Jonathan Czisny.)
21742
217431999-04-18 Jesse Thilo <jthilo@gnu.org>
21744
21745 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21746 Adjusted paths to reflect directory reorganization.
21747
217481999-04-18 Jesse Thilo <jthilo@gnu.org>
21749
21750 * doc/.cvsignore, doc/Makefile.am:
21751 Reorganized: sources in `src', documentation in `doc'.
21752
217531999-04-18 Jesse Thilo <jthilo@gnu.org>
21754
21755 * configure.in:
21756 Updated AC_INIT file to reflect directory reorganization.
21757
21758 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21759 Reorganized: sources in `src', documentation in `doc'.
21760
217611999-04-13 Jesse Thilo <jthilo@gnu.org>
21762
21763 * src/allocate.c:
21764 Don't declare calloc() and realloc() if not necessary.
21765
217661999-04-13 Jesse Thilo <jthilo@gnu.org>
21767
21768 * configure.in, acconfig.h, acinclude.m4:
21769 Don't declare calloc() and realloc() if not necessary.
21770
217711999-03-23 Jesse Thilo <jthilo@gnu.org>
21772
21773 * po/.cvsignore: Added i18n support.
21774
217751999-03-23 Jesse Thilo <jthilo@gnu.org>
21776
21777 * acconfig.h, configure.in, Makefile.am:
21778 Added i18n support.
21779
217801999-03-22 Jesse Thilo <jthilo@gnu.org>
21781
21782 * src/bison.s1: Fixed #line numbers.
21783
217841999-03-15 Jesse Thilo <jthilo@gnu.org>
21785
21786 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21787 Added PO files from Translation Project.
21788
217891999-03-03 Jesse Thilo <jthilo@gnu.org>
21790
21791 * Makefile.am:
21792 Added support for non-ANSI compilers (ansi2knr).
21793
217941999-02-16 Jesse Thilo <jthilo@gnu.org>
21795
21796 * configure.in: Bumped version number to 1.27.
21797
21798 * Makefile.am:
21799 Added `bison.simple' to list of files removed by `make distclean'.
21800
218011999-02-12 Jesse Thilo <jthilo@gnu.org>
21802
21803 * src/files.c, src/files.h:
21804 Defined locations of parser files in config.h instead of Makefile.
21805
218061999-02-12 Jesse Thilo <jthilo@gnu.org>
21807
21808 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21809 Defined locations of parser files in config.h instead of Makefile.
21810
218111999-02-09 Jesse Thilo <jthilo@gnu.org>
21812
21813 * Makefile.am:
21814 Removed inappropriate use of $< macro.
21815
218161999-02-05 Jesse Thilo <jthilo@gnu.org>
21817
21818 * po/Makefile.in.in, po/POTFILES.in:
21819 Add `po' directory skeleton.
21820
218211999-01-27 Jesse Thilo <jthilo@gnu.org>
21822
21823 * README: Document help-bison list.
21824
21825 * configure.in: Add check for mkstemp().
21826
218271999-01-20 Jesse Thilo <jthilo@gnu.org>
21828
21829 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21830 Hush a few compiler warnings.
21831
21832 * src/files.c:
21833 Add tryclose(), which verifies that fclose was successful.
21834 Hush a couple of compiler warnings.
21835
218361999-01-20 Jesse Thilo <jthilo@gnu.org>
21837
21838 * Makefile.am, OChangeLog:
21839 ChangeLog is now automatically generated. Include the old version as
21840 OChangeLog.
21841
218421999-01-14 Jesse Thilo <jthilo@gnu.org>
21843
21844 * 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:
21845 Update FSF address.
21846
218471999-01-14 Jesse Thilo <jthilo@gnu.org>
21848
21849 * doc/bison.texinfo: Fix formatting glitch.
21850
21851 * doc/bison.texinfo: Update FSF address.
21852
218531999-01-14 Jesse Thilo <jthilo@gnu.org>
21854
21855 * acconfig.h: Update FSF address.
21856
218571999-01-08 Jesse Thilo <jthilo@gnu.org>
21858
21859 * src/system.h:
21860 Don't define PACKAGE here, since config.h defines it.
21861
218621998-12-30 Jesse Thilo <jthilo@gnu.org>
21863
21864 * src/reader.c: Update copyright date.
21865
21866 * src/main.c:
21867 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21868 favor of output directly to stderr (avoids buffer overruns).
21869
21870 * src/reader.c: Some checks for premature EOF.
21871
21872 * 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:
21873 Use prototypes if the compiler understands them.
21874
21875 * src/files.c: Honor TMPDIR on Unix hosts.
21876 Use prototypes if the compiler understands them.
21877
21878 * src/reader.c:
21879 Fix a couple of buffer overrun bugs.
21880 Use prototypes if the compiler understands them.
21881
21882 * src/system.h: Include unistd.h and ctype.h.
21883 Use #ifdef instead of #if for NLS symbols.
21884
218851998-12-30 Jesse Thilo <jthilo@gnu.org>
21886
21887 * doc/bison.texinfo:
21888 Delete comment "consider using @set for edition number, etc..." since
21889 we now are doing so.
21890
218911998-12-30 Jesse Thilo <jthilo@gnu.org>
21892
21893 * configure.in:
21894 Use prototypes if the compiler understands them.
21895
21896 * NEWS: Document 1.26 highlights.
21897
21898 * Makefile.am: Require Automake 1.3 or later.
21899
21900 * acconfig.h:
21901 Use prototypes if the compiler understands them.
21902
219031998-12-29 Jesse Thilo <jthilo@gnu.org>
21904
21905 * src/version.c:
21906 Use VERSION symbol from automake for version number.
21907
219081998-12-29 Jesse Thilo <jthilo@gnu.org>
21909
21910 * acconfig.h, configure.in, version.cin:
21911 Use VERSION symbol from automake for version number.
21912
219131998-11-28 Jesse Thilo <jthilo@gnu.org>
21914
21915 * Makefile.am:
21916 Distribute original version of simple parser (bison.s1), not built
21917 version (bison.simple).
21918
219191998-11-28 Jesse Thilo <jthilo@gnu.org>
21920
21921 * doc/bison.texinfo: Add info dir entry.
21922
21923 * doc/bison.texinfo:
21924 Let automake put version number into documentation.
21925
219261998-11-26 Jesse Thilo <jthilo@gnu.org>
21927
21928 * src/bison.cld, src/build.com, src/vmshlp.mar:
21929 Add non-RCS files from /gd/gnu/bison.
21930
219311998-11-26 Jesse Thilo <jthilo@gnu.org>
21932
21933 * doc/bison.1:
21934 Document the BISON_HAIRY and BISON_SIMPLE variables.
21935
219361998-11-25 Jesse Thilo <jthilo@gnu.org>
21937
21938 * src/version.c: Build version.c automatically.
21939
21940 * src/reader.c:
21941 Fix token numbering (used to start at 258, not 257).
21942
21943 * src/system.h: Include config.h.
21944
21945 * src/getargs.c: Update bug report address.
21946
21947 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
21948 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
21949
219501998-11-25 Jesse Thilo <jthilo@gnu.org>
21951
21952 * Makefile.am:
21953 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21954
21955 * configure.in, version.cin:
21956 Build version.c automatically.
21957
21958 * AUTHORS: Add AUTHORS file.
21959
21960 * README: Update bug report address.
21961
21962 * bison.simple:
21963 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21964
21965 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
21966 Add automake stuff.
21967
219681998-11-25 Jesse Thilo <jthilo@gnu.org>
21969
21970 * doc/bison.texinfo: Clean up some formatting.
21971
219721998-05-05 Richard Stallman <rms@gnu.org>
21973
21974 * doc/bison.texinfo:
21975 Explain better why to make a pure parser.
21976
219771998-01-05 Richard Stallman <rms@gnu.org>
21978
21979 * src/files.c (openfiles):
21980 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
21981 find a temporary directory, if possible. Do not unlink files while
21982 they are open.
21983
219841997-08-25 Richard Stallman <rms@gnu.org>
21985
21986 * src/reader.c (stack_offset;):
21987 Change some warni to warns.
21988
21989 * src/lex.c (literalchar): Use warns, not warni.
21990
219911997-06-28 Richard Stallman <rms@gnu.org>
21992
21993 * src/bison.s1: Add a Bison version comment.
21994
21995 * src/main.c (fatal, warn, berror):
21996 Use program_name.
21997
219981997-06-28 Richard Stallman <rms@gnu.org>
21999
22000 * Makefile.in (bison_version): New variable.
22001 (dist): Use that variable.
22002 (bison.s1): Substitute the Bison version into bison.simple.
22003
22004 * bison.simple: Add a Bison version comment.
22005
220061997-06-18 Richard Stallman <rms@gnu.org>
22007
22008 * src/main.c (fatal, warn, berror):
22009 Make error messages standard.
22010 (toomany): Improve error message text.
22011
22012 * 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:
22013 new.h renamed to alloc.h.
22014
220151997-06-18 Richard Stallman <rms@gnu.org>
22016
22017 * Makefile.in: new.h renamed to alloc.h.
22018
220191997-05-24 Richard Stallman <rms@gnu.org>
22020
22021 * src/lex.c (literalchar):
22022 Fix the code for escaping \, " and '.
22023
22024 (lex): Avoid trouble when there are many chars
22025 to discard in a char literal with just several chars in it.
22026
220271997-05-17 Richard Stallman <rms@gnu.org>
22028
22029 * src/bison.s1:
22030 Use malloc, if using alloca is troublesome.
22031 (YYSTACK_USE_ALLOCA): New flag macro.
22032 Define it for some systems and compilers.
22033 (YYSTACK_ALLOC): New macro.
22034 (yyparse): Use YYSTACK_ALLOC to allocate stack.
22035 If it was malloc'd, free it.
22036
220371997-05-17 Richard Stallman <rms@gnu.org>
22038
22039 * bison.simple:
22040 Use malloc, if using alloca is troublesome.
22041 (YYSTACK_USE_ALLOCA): New flag macro.
22042 Define it for some systems and compilers.
22043 (YYSTACK_ALLOC): New macro.
22044 (yyparse): Use YYSTACK_ALLOC to allocate stack.
22045 If it was malloc'd, free it.
22046
220471997-04-23 Richard Stallman <rms@gnu.org>
22048
22049 * src/bison.s1:
22050 (alloca) [__hpux]: Always define as __builtin_alloca.
22051
220521997-04-23 Richard Stallman <rms@gnu.org>
22053
22054 * bison.simple:
22055 (alloca) [__hpux]: Always define as __builtin_alloca.
22056
220571997-04-22 Richard Stallman <rms@gnu.org>
22058
22059 * src/bison.s1:
22060 [__hpux]: Include alloca.h (right for HPUX 10)
22061 instead of declaring alloca (right for HPUX 9).
22062
22063 * src/bison.s1 (__yy_memcpy):
22064 Declare arg `count' as unsigned int.
22065 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
22066
220671997-04-22 Richard Stallman <rms@gnu.org>
22068
22069 * bison.simple:
22070 [__hpux]: Include alloca.h (right for HPUX 10)
22071 instead of declaring alloca (right for HPUX 9).
22072
22073 * bison.simple (__yy_memcpy):
22074 Declare arg `count' as unsigned int.
22075 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
22076
220771997-01-03 Richard Stallman <rms@gnu.org>
22078
22079 * src/allocate.c: [__STDC__ or _MSC_VER]:
22080 Declare calloc and realloc to return void *.
22081
220821997-01-02 Richard Stallman <rms@gnu.org>
22083
22084 * src/system.h:
22085 [_MSC_VER]: Include stdlib.h and process.h.
22086 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
22087
22088 * src/main.c (main): Return FAILURE as a value.
22089 (printable_version): Declare arg as int, not char.
22090
220911997-01-02 Richard Stallman <rms@gnu.org>
22092
22093 * Makefile.in (dist):
22094 Explicitly check for symlinks, and copy them.
22095
220961996-12-19 Richard Stallman <rms@gnu.org>
22097
22098 * src/files.c:
22099 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
22100
221011996-12-18 Paul Eggert <eggert@gnu.org>
22102
22103 * src/bison.s1 (yyparse):
22104 If __GNUC__ and YYPARSE_PARAM are both defined,
22105 declare yyparse to have a void * argument.
22106
221071996-12-18 Paul Eggert <eggert@gnu.org>
22108
22109 * bison.simple (yyparse):
22110 If __GNUC__ and YYPARSE_PARAM are both defined,
22111 declare yyparse to have a void * argument.
22112
221131996-12-17 Richard Stallman <rms@gnu.org>
22114
22115 * src/reduce.c (nbits): Add some casts.
22116
221171996-08-12 Richard Stallman <rms@gnu.org>
22118
22119 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
22120
221211996-08-12 Richard Stallman <rms@gnu.org>
22122
22123 * bison.simple: Test _MSDOS as well as _MSDOS_.
22124
221251996-07-31 Richard Stallman <rms@gnu.org>
22126
22127 * src/bison.s1:
22128 [__sun && __i386]: Include alloca.h.
22129
221301996-07-31 Richard Stallman <rms@gnu.org>
22131
22132 * bison.simple:
22133 [__sun && __i386]: Include alloca.h.
22134
221351996-07-30 Richard Stallman <rms@gnu.org>
22136
22137 * src/bison.s1: Comment change.
22138
22139 * src/bison.s1: Test _MSDOS_, not MSDOS.
22140
221411996-07-30 Richard Stallman <rms@gnu.org>
22142
22143 * bison.simple: Comment change.
22144
22145 * bison.simple: Test _MSDOS_, not MSDOS.
22146
221471996-06-01 Richard Stallman <rms@gnu.org>
22148
22149 * 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:
22150 Insert `_' macro around many string constants.
22151
22152 * src/main.c:
22153 Insert `_' macro around many string constants.
22154
22155 (main): Call setlocale, bindtextdomain and textdomain.
22156
22157 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
22158 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
22159 [ENABLE_NLS]: Include libintl.h.
22160 [ENABLE_NLS] (gettext): Define.
22161 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
22162 (N_, PACKAGE, LOCALEDIR): New macros.
22163
221641996-06-01 Richard Stallman <rms@gnu.org>
22165
22166 * POTFILES.in: New file.
22167
22168 * Makefile.in (allocate.o):
22169 Define target explicitly.
22170
22171 * Makefile.in (CFLAGS): Set to @CFLAGS@.
22172 (LDFLAGS): Set to @LDFLAGS@.
22173 (configure): Run autoconf only if preceding `cd' succeeds.
22174 (bison.s1): Redirect output to temporary file then move the
22175 temporary to the target, rather than redirecting directly to bison.s1.
22176 (clean): Remove config.status and config.log.
22177 (distclean): Don't remove config.status here.
22178
221791996-05-12 Richard Stallman <rms@gnu.org>
22180
22181 * src/bison.s1:
22182 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
22183
221841996-05-12 Richard Stallman <rms@gnu.org>
22185
22186 * bison.simple:
22187 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
22188
221891996-05-11 Richard Stallman <rms@gnu.org>
22190
22191 * src/bison.s1 (__yy_memcpy):
22192 Really reorder the args, as was supposedly done on Feb 14 1995.
22193 (yyparse): Calls changed accordingly.
22194
221951996-05-11 Richard Stallman <rms@gnu.org>
22196
22197 * Makefile.in (dist): Don't use $(srcdir).
22198
22199 * bison.simple (__yy_memcpy):
22200 Really reorder the args, as was supposedly done on Feb 14 1995.
22201 (yyparse): Calls changed accordingly.
22202
222031996-01-27 Richard Stallman <rms@gnu.org>
22204
22205 * src/output.c (output_rule_data):
22206 Test YYERROR_VERBOSE in the conditional
22207 around the definition of ttyname.
22208
222091995-12-29 Richard Stallman <rms@gnu.org>
22210
22211 * src/bison.s1:
22212 Fix line numbers in #line commands.
22213
222141995-12-29 Richard Stallman <rms@gnu.org>
22215
22216 * bison.simple:
22217 Fix line numbers in #line commands.
22218
222191995-12-27 Richard Stallman <rms@gnu.org>
22220
22221 * src/bison.s1 (YYPARSE_PARAM_DECL):
22222 In C++, make it always null.
22223 (YYPARSE_PARAM_ARG): New macro.
22224 (yyparse): Use YYPARSE_PARAM_ARG.
22225
222261995-12-27 Richard Stallman <rms@gnu.org>
22227
22228 * bison.simple (YYPARSE_PARAM_DECL):
22229 In C++, make it always null.
22230 (YYPARSE_PARAM_ARG): New macro.
22231 (yyparse): Use YYPARSE_PARAM_ARG.
22232
222331995-11-29 Richard Stallman <rms@gnu.org>
22234
22235 * doc/bison.texinfo:
22236 Describe literal string tokens, %raw, %no_lines, %token_table.
22237
222381995-11-29 Daniel Hagerty <hag@gnu.org>
22239
22240 * doc/bison.texinfo: Fixed update date
22241
222421995-10-16 Richard Stallman <rms@gnu.org>
22243
22244 * src/version.c: Version 1.25.
22245
222461995-10-16 Richard Stallman <rms@gnu.org>
22247
22248 * NEWS: *** empty log message ***
22249
222501995-10-16 Richard Stallman <rms@gnu.org>
22251
22252 * doc/bison.1, doc/bison.rnh:
22253 Add new options.
22254
222551995-10-15 Richard Stallman <rms@gnu.org>
22256
22257 * src/vmsgetargs.c, src/getargs.c:
22258 Added -n, -k, and -raw switches.
22259 (noparserflag, toknumflag, rawtoknumflag): New variables.
22260
22261 * src/symtab.h (SALIAS):
22262 New #define for adding aliases to %token.
22263 (struct bucket): Added `alias' field.
22264
22265 * src/reduce.c (reduce_grammar):
22266 Revise error message.
22267 (print_notices): Remove final `.' from error message.
22268
22269 * src/reader.c (reader_output_yylsp):
22270 New function.
22271 (readgram): Use `#if 0' around code that accepted %command
22272 inside grammar rules: The documentation doesn't allow it,
22273 and it will fail since the %command processors scan for the next %.
22274 (parse_token_decl): Extended the %token
22275 declaration to allow a multi-character symbol as an alias.
22276 (parse_thong_decl): New function.
22277 (read_declarations): Added %thong declarations.
22278 (read_declarations): Handle NOOP to deal with allowing
22279 % declarations as another means to specify the flags.
22280 (readgram): Allow %prec prior to semantics embedded in a rule.
22281 (skip_to_char, read_declarations, copy_definition)
22282 (parse_token_decl, parse_start_decl, parse_type_decl)
22283 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
22284 (get_type_name, copy_guard, copy_action, readgram)
22285 (get_type, packsymbols): Revised most error messages.
22286 Changed `fatal' to `warnxxx' to avoid aborting for error.
22287 Revised and use multiple warnxxx functions to avoid using VARARGS1.
22288 (read_declarations): Improve the error message for
22289 an invalid character. Do not abort.
22290 (read_declarations, copy_guard, copy_action): Use
22291 printable_version to avoid unprintable characters in printed output.
22292 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
22293 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
22294 Allow the type of a non-terminal can be given
22295 more than once, as long as all specifications give the same type.
22296
22297 * src/output.c:
22298 (output_headers, output_trailers, output, output_gram)
22299 (output_rule_data): Implement noparserflag variable.
22300 Implement toknumflag variable.
22301 (output): Call reader_output_yylsp to output LTYPESTR.
22302
22303 * src/main.c (main):
22304 If reader sees an error, don't process the grammar.
22305 (fatals): Updated to not use VARARGS1.
22306 (printable_version, int_to_string, warn, warni, warns, warnss)
22307 (warnsss): New error reporting functions. Avoid abort for error.
22308
22309 * src/lex.h:
22310 Added THONG and NOOP for alias processing.
22311 Added SETOPT for the new code that allows setting options with %flags.
22312
22313 * src/lex.c:
22314 Include getopt.h. Add some extern decls.
22315 (safegetc): New function to deal with EOF gracefully.
22316 (literalchar); new function to deal with reading \ escapes.
22317 (lex): Use literalchar.
22318 (lex): Implemented "..." tokens.
22319 (literalchar, lex, parse_percent_token): Made tokenbuffer
22320 always contain the token. This includes growing the token
22321 buffer while reading an integer.
22322 (parse_percent_token): Replaced if-else statement with percent_table.
22323 (parse_percent_token): Added % declarations as another
22324 way to specify the flags -n, -l, and -r. Also added hooks for
22325 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
22326 major changes to files.c.
22327 (lex) Retain in the incoming stream a character following
22328 an incorrect '/'.
22329 (skip_white_space, lex): Revised most error messages
22330 and changed fatal to warn to avoid aborting.
22331 (percent_table): Added %thong declarations.
22332
22333 * src/gram.h: Comment changes.
22334
22335 * src/files.c (openfiles, open_extra_files, done):
22336 Add faction flag
22337 and actfile file. Handle noparserflag. Both for -n switch.
22338
22339 * src/conflicts.c (resolve_sr_conflict):
22340 Remove use of alloca.
22341
223421995-06-01 Jim Meyering <meyering@gnu.org>
22343
22344 * doc/bison.texinfo: *** empty log message ***
22345
223461995-05-06 Richard Stallman <rms@gnu.org>
22347
22348 * src/bison.s1: Comment change.
22349
223501995-05-06 Richard Stallman <rms@gnu.org>
22351
22352 * bison.simple: Comment change.
22353
223541995-05-03 Richard Stallman <rms@gnu.org>
22355
22356 * src/version.c: Version now 1.24.
22357
22358 * src/bison.s1: Change distribution terms.
22359
22360 * src/version.c: Version now 1.23.
22361
223621995-05-03 Richard Stallman <rms@gnu.org>
22363
22364 * doc/bison.texinfo:
22365 Rewrite "Conditions for Using Bison".
22366 Update version to 1.24.
22367
223681995-05-03 Richard Stallman <rms@gnu.org>
22369
22370 * bison.simple: Change distribution terms.
22371
223721995-02-23 Richard Stallman <rms@gnu.org>
22373
22374 * src/files.c: Test __VMS_POSIX as well as VMS.
22375
223761995-02-14 Jim Meyering <meyering@gnu.org>
22377
22378 * src/bison.s1 (__yy_memcpy):
22379 Renamed from __yy_bcopy to avoid
22380 confusion. Reverse FROM and TO arguments to be consistent with
22381 those of memcpy.
22382
223831995-02-14 Jim Meyering <meyering@gnu.org>
22384
22385 * bison.simple (__yy_memcpy):
22386 Renamed from __yy_bcopy to avoid
22387 confusion. Reverse FROM and TO arguments to be consistent with
22388 those of memcpy.
22389
223901994-11-10 David J. MacKenzie <djm@gnu.org>
22391
22392 * NEWS: reformat
22393
22394 * NEWS: New file.
22395
22396 * Makefile.in (DISTFILES): Include NEWS.
22397
22398 * Makefile.in (DISTFILES):
22399 Include install-sh, not install.sh.
22400
22401 * configure.in: Update to Autoconf v2 macro names.
22402
224031994-10-05 David J. MacKenzie <djm@gnu.org>
22404
22405 * Makefile.in: fix typo
22406
22407 * Makefile.in (prefix, exec_prefix):
22408 Let configure set them.
22409
224101994-09-28 David J. MacKenzie <djm@gnu.org>
22411
22412 * Makefile.in: Set datadir to $(prefix)/share.
22413
224141994-09-15 Richard Stallman <rms@gnu.org>
22415
22416 * src/bison.s1:
22417 Update copyright notice and GPL version.
22418
224191994-09-15 Richard Stallman <rms@gnu.org>
22420
22421 * bison.simple:
22422 Update copyright notice and GPL version.
22423
224241994-07-12 Richard Stallman <rms@gnu.org>
22425
22426 * src/reduce.c, src/reader.c:
22427 entered into RCS
22428
224291994-05-05 David J. MacKenzie <djm@gnu.org>
22430
22431 * Makefile.in: entered into RCS
22432
224331994-03-26 Richard Stallman <rms@gnu.org>
22434
22435 * src/bison.s1: entered into RCS
22436
224371994-03-26 Richard Stallman <rms@gnu.org>
22438
22439 * bison.simple: entered into RCS
22440
224411994-03-25 Richard Stallman <rms@gnu.org>
22442
22443 * src/main.c: entered into RCS
22444
224451994-03-24 Richard Stallman <rms@gnu.org>
22446
22447 * src/conflicts.c: entered into RCS
22448
224491994-01-02 Richard Stallman <rms@gnu.org>
22450
22451 * Makefile.in: *** empty log message ***
22452
224531993-11-21 Richard Stallman <rms@gnu.org>
22454
22455 * src/bison.s1: *** empty log message ***
22456
224571993-11-21 Richard Stallman <rms@gnu.org>
22458
22459 * doc/bison.texinfo: entered into RCS
22460
22461 * doc/bison.texinfo: *** empty log message ***
22462
224631993-11-21 Richard Stallman <rms@gnu.org>
22464
22465 * bison.simple: *** empty log message ***
22466
224671993-10-25 David J. MacKenzie <djm@gnu.org>
22468
22469 * doc/bison.texinfo: *** empty log message ***
22470
224711993-10-19 Richard Stallman <rms@gnu.org>
22472
22473 * src/bison.s1: *** empty log message ***
22474
224751993-10-19 Richard Stallman <rms@gnu.org>
22476
22477 * bison.simple: *** empty log message ***
22478
224791993-10-14 Richard Stallman <rms@gnu.org>
22480
22481 * src/bison.s1: *** empty log message ***
22482
224831993-10-14 Richard Stallman <rms@gnu.org>
22484
22485 * bison.simple: *** empty log message ***
22486
224871993-09-14 David J. MacKenzie <djm@gnu.org>
22488
22489 * doc/bison.texinfo: *** empty log message ***
22490
224911993-09-13 Noah Friedman <friedman@gnu.org>
22492
22493 * Makefile.in: *** empty log message ***
22494
224951993-09-10 Richard Stallman <rms@gnu.org>
22496
22497 * src/conflicts.c: *** empty log message ***
22498
22499 * src/system.h: entered into RCS
22500
225011993-09-10 Richard Stallman <rms@gnu.org>
22502
22503 * doc/bison.1: entered into RCS
22504
225051993-09-06 Noah Friedman <friedman@gnu.org>
22506
22507 * src/version.c: entered into RCS
22508
225091993-09-06 Noah Friedman <friedman@gnu.org>
22510
22511 * Makefile.in: *** empty log message ***
22512
225131993-07-30 David J. MacKenzie <djm@gnu.org>
22514
22515 * Makefile.in: *** empty log message ***
22516
225171993-07-24 Richard Stallman <rms@gnu.org>
22518
22519 * src/bison.s1: *** empty log message ***
22520
225211993-07-24 Richard Stallman <rms@gnu.org>
22522
22523 * bison.simple: *** empty log message ***
22524
225251993-07-08 David J. MacKenzie <djm@gnu.org>
22526
22527 * Makefile.in: *** empty log message ***
22528
225291993-07-04 Richard Stallman <rms@gnu.org>
22530
22531 * src/bison.s1: *** empty log message ***
22532
225331993-07-04 Richard Stallman <rms@gnu.org>
22534
22535 * bison.simple: *** empty log message ***
22536
225371993-06-26 David J. MacKenzie <djm@gnu.org>
22538
22539 * src/getargs.c: entered into RCS
22540
225411993-06-26 David J. MacKenzie <djm@gnu.org>
22542
22543 * doc/bison.texinfo: *** empty log message ***
22544
22545 * doc/bison.1: New file.
22546
225471993-06-25 Richard Stallman <rms@gnu.org>
22548
22549 * src/getargs.c: New file.
22550
225511993-06-16 Richard Stallman <rms@gnu.org>
22552
22553 * src/bison.s1: *** empty log message ***
22554
225551993-06-16 Richard Stallman <rms@gnu.org>
22556
22557 * bison.simple: *** empty log message ***
22558
225591993-06-03 Richard Stallman <rms@gnu.org>
22560
22561 * src/bison.s1: New file.
22562
225631993-06-03 Richard Stallman <rms@gnu.org>
22564
22565 * doc/bison.texinfo: *** empty log message ***
22566
225671993-06-03 Richard Stallman <rms@gnu.org>
22568
22569 * bison.simple: New file.
22570
225711993-05-19 Richard Stallman <rms@gnu.org>
22572
22573 * doc/bison.texinfo: New file.
22574
225751993-05-07 Noah Friedman <friedman@gnu.org>
22576
22577 * Makefile.in: *** empty log message ***
22578
225791993-04-28 Noah Friedman <friedman@gnu.org>
22580
22581 * src/reader.c: *** empty log message ***
22582
225831993-04-23 Noah Friedman <friedman@gnu.org>
22584
22585 * src/alloc.h: entered into RCS
22586
225871993-04-20 David J. MacKenzie <djm@gnu.org>
22588
22589 * src/version.c: *** empty log message ***
22590
22591 * src/files.c, src/allocate.c:
22592 entered into RCS
22593
22594 * src/reader.c: *** empty log message ***
22595
22596 * src/lex.c: entered into RCS
22597
22598 * src/conflicts.c: New file.
22599
22600 * src/symtab.c: entered into RCS
22601
22602 * src/alloc.h: New file.
22603
22604 * src/LR0.c: entered into RCS
22605
226061993-04-18 Noah Friedman <friedman@gnu.org>
22607
22608 * src/reader.c: New file.
22609
22610 * src/version.c: *** empty log message ***
22611
226121993-04-18 Noah Friedman <friedman@gnu.org>
22613
22614 * Makefile.in: *** empty log message ***
22615
226161993-04-17 Noah Friedman <friedman@gnu.org>
22617
22618 * Makefile.in: *** empty log message ***
22619
226201993-04-15 Richard Stallman <rms@gnu.org>
22621
22622 * src/main.c, src/files.c:
22623 New file.
22624
226251993-04-15 Noah Friedman <friedman@gnu.org>
22626
22627 * configure.in: entered into RCS
22628
22629 * configure.in: *** empty log message ***
22630
22631 * configure.in: New file.
22632
226331993-04-14 Richard Stallman <rms@gnu.org>
22634
22635 * Makefile.in: New file.
22636
226371993-04-13 Richard Stallman <rms@gnu.org>
22638
22639 * src/version.c: New file.
22640
226411993-03-25 Richard Stallman <rms@gnu.org>
22642
22643 * src/output.c: entered into RCS
22644
226451992-09-25 Richard Stallman <rms@gnu.org>
22646
22647 * configure.bat: entered into RCS
22648
226491992-06-22 Richard Stallman <rms@gnu.org>
22650
22651 * src/vmsgetargs.c: entered into RCS
22652
226531992-06-22 Richard Stallman <rms@gnu.org>
22654
22655 * doc/bison.rnh: entered into RCS
22656
226571992-04-20 David J. MacKenzie <djm@gnu.org>
22658
22659 * README: entered into RCS
22660
226611992-01-22 Richard Stallman <rms@gnu.org>
22662
22663 * src/machine.h: entered into RCS
22664
226651991-12-21 Richard Stallman <rms@gnu.org>
22666
22667 * src/lalr.c, src/closure.c:
22668 entered into RCS
22669
226701991-12-20 Richard Stallman <rms@gnu.org>
22671
22672 * src/state.h: entered into RCS
22673
226741991-12-18 Richard Stallman <rms@gnu.org>
22675
22676 * src/print.c, src/nullable.c, src/derives.c:
22677 entered into RCS
22678
226791991-11-03 David J. MacKenzie <djm@gnu.org>
22680
22681 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22682 entered into RCS
22683
226841988-09-09 Richard Stallman <rms@gnu.org>
22685
22686 * src/bison.hairy: entered into RCS
22687
226881987-12-16 Richard Stallman <rms@gnu.org>
22689
22690 * REFERENCES: entered into RCS
dc546b0f 22691
f294a2c2 22692
04098407 22693 -----
f294a2c2 22694
04098407 22695 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
f490771b
JD
22696 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
22697 2007, 2008, 2009 Free Software Foundation, Inc.
f294a2c2 22698
04098407
PE
22699 Copying and distribution of this file, with or without
22700 modification, are permitted provided the copyright notice and this
22701 notice are preserved.