]> git.saurik.com Git - bison.git/blob - ChangeLog
bison: catch bad symbol names.
[bison.git] / ChangeLog
1 2009-05-04 Akim Demaille <demaille@gostai.com>
2
3 bison: catch bad symbol names.
4 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
5 * tests/input.at: Adjust.
6
7 2009-05-04 Akim Demaille <demaille@gostai.com>
8
9 identifiers: dashes are letters.
10 Dashes can now start identifiers (symbols and directives).
11
12 * src/scan-gram.l ({letter}): Add dash.
13 ({id}): Remove it.
14 * tests/input.at (Symbols): Adjust.
15 Remove stray comment.
16 * tests/regression.at (Invalid inputs): Adjust error message.
17 * doc/bison.texinfo (Symbols): Update.
18
19 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
20
21 Declare %code to be a permanent feature.
22 * NEWS (2.4.2): Here.
23 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
24 experimental.
25 (Decl Summary): Likewise.
26
27 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
28
29 Convert underscores to dashes in some %define variable names.
30 For now, just api.push-pull and lr.keep-unreachable-states.
31 Maintain old names for backward compatibility.
32 * NEWS (2.5): Document.
33 * data/c.m4 (b4_identification): Update comment.
34 * data/yacc.c: Update access.
35 * doc/bison.texinfo: Update.
36 * etc/bench.pl.in (bench_push_parser): Update use.
37 * src/files.c (tr): Move to...
38 * src/getargs.c, src/getargs.h (tr): ... here because I can't
39 think of a better place to expose it. My logic is that, for all
40 uses of tr so far, command-line arguments can be involved, and
41 getargs.h is already included.
42 * src/main.c (main): Update access.
43 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
44 variable names to new variable names before assigning value.
45 * src/reader.c (reader): Update setting default.
46 * tests/calc.at: Update uses.
47 * tests/conflicts.at (Unreachable States After Conflict
48 Resolution): Update use.
49 * tests/input.at (%define enum variables): Update use.
50 (%define backward compatibility): New test group.
51 * tests/push.at: Update uses.
52 * tests/reduce.at: Update uses.
53 * tests/torture.at: Update uses.
54
55 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
56
57 Set all front-end %define defaults in one place.
58 * src/main.c (main): Move lr.keep_unreachable_states default...
59 * src/reader.c (reader): ... to here.
60
61 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
62
63 Rename lr.default_reductions to lr.default-reductions.
64 * NEWS (2.5): Here.
65 * doc/bison.texinfo: Here.
66 * src/lalr.c (initialize_LA): Here.
67 * src/print.c (print_reductions): Here.
68 * src/reader.c (reader): Here.
69 * src/tables.c (action_row): Here.
70 * tests/input.at (%define enum variables): Here.
71 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
72
73 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
74
75 Pacify ./configure --enable-gcc-warnings.
76 * tests/input.at (Symbols): Prototype yyerror and yylex.
77
78 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
79
80 Document how `%define "var" "value"' is not M4-friendly.
81 * src/parse-gram.y (variable): In comments here.
82
83 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
84
85 Clean up recent patches a little.
86 Reported by Akim Demaille.
87 * doc/bison.texinfo (Understanding): Fix typos.
88 * src/print.c (print_reductions): Don't use negated variable.
89
90 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
91
92 List accepted values for a %define enum variable with an invalid value.
93 Suggested by Akim Demaille at
94 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
95 * data/bison.m4 (_b4_percent_define_check_values): Implement.
96 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
97 * tests/input.at (%define lr.default_reductions invalid values): Merge
98 into...
99 (%define enum variables): ... here, and update output.
100
101 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
102
103 Rename "default rule" to "default reduction".
104 This includes changing variable names in code, changing
105 comments, and renaming %define lr.default_rules to %define
106 lr.default_reductions.
107 * NEWS (2.5): Update IELR documentation.
108 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
109 documentation.
110 * data/glr.c, data/lalr1.java: Sync copyright dates.
111 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
112 and lr.type documentation. Make some other wording
113 improvements.
114 (Glossary): Adjust cross-references and Default Reduction
115 definition.
116 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
117 Remove a confusing comment pointed out by Akim Demaille.
118 (initialize_LA): Adjust code.
119 * src/print-xml.c (print_reductions): Adjust code.
120 * src/print.c (print_reductions): Adjust code.
121 * src/reader.c (reader): Adjust code.
122 * src/tables.c (action_row): Adjust code.
123 (token_actions): Adjust code.
124 * src/tables.h: Adjust YYDEFACT documentation.
125 * tests/input.at (%define lr.default_rules invalid values):
126 Rename test group to...
127 (%define lr.default_reductions invalid values): ... this, and
128 update grammar file and expected output.
129 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
130 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
131
132 2009-04-21 Akim Demaille <demaille@gostai.com>
133
134 tests: check the use of dashes and periods in symbols.
135 * tests/input.at (Symbol): New test group.
136
137 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
138
139 Document %define lr.type and lr.default_rules.
140 * NEWS (2.5): Add an entry.
141 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
142 besides just LALR(1) and GLR(1).
143 * doc/bison.texinfo (Introduction): Likewise.
144 (Language and Grammar): Bison is no longer limited to LALR(1)
145 restrictions.
146 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
147 when trying to distinguish from GLR. Talk about LR(1) grammars
148 rather than LALR(1) grammars.
149 (Decl Summary): In %define api.push_pull entry, say it applies
150 to deterministic parsers in C rather than LALR(1) parsers in C.
151 Add lr.default_rules entry.
152 Add lr.type entry.
153 (Mystery Conflicts): Bison is no longer limited to LALR(1)
154 restrictions.
155 (Generalized LR Parsing): Same changes as for the previous GLR
156 section.
157 (Memory Management): Say deterministic rather than LALR(1).
158 (Understanding): Correct some bison output.
159 Index discussion of "accepting state".
160 Say deterministic rather than LALR(1).
161 (Bison Options): In --yacc entry, say deterministic rather than
162 LALR(1).
163 In --report, --graph, and --xml entries, just don't mention
164 LALR(1).
165 (C++ Parsers): Say deterministic rather than LALR(1).
166 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
167 (Glossary): Add Accepting State, Consistent State, Default Rule,
168 and IELR(1) definitions.
169 In Generalized LR (GLR) definition, make same changes as in
170 previous GLR sections.
171 In LALR(1) definition, say Bison uses LALR(1) by default rather
172 than implying Bison is limited to LALR(1).
173 (LocalWords): Add IELR.
174
175 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
176
177 Finish implementing %define lr.type.
178 Its value can be "LALR", "IELR", or "canonical LR".
179 * lib/timevar.def (TV_IELR_PHASE1): New var.
180 (TV_IELR_PHASE2): New var.
181 (TV_IELR_PHASE3): New var.
182 (TV_IELR_PHASE4): New var.
183 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
184 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
185 Sbitset.h, ielr.h, and ielr.c.
186 * src/getargs.h, src/getargs.c (enum trace, trace_args,
187 trace_types): Add trace_ielr.
188 * src/lalr.h, src/lalr.c (ngotos): Export it.
189 (F): Rename to...
190 (goto_follows): ... this, update all uses, and export it.
191 (set_goto_map): Export it.
192 (map_goto): Export it.
193 (compute_lookahead_tokens): Don't free goto_follows yet. Now
194 handled in ielr.
195 (initialize_LA): Export it. Move lookback allocation to...
196 (lalr): ... here because, for canonical LR, initialize_LA must
197 be invoked but lookback and much of the rest of LALR isn't
198 needed.
199 * main.c (main): Instead of lalr, invoke ielr, which invokes
200 lalr.
201 * src/reader.c (reader): Default lr.type to "LALR".
202 Default lr.default_rules to "accepting" if lr.type is "canonical
203 LR". Leave the default as "all" otherwise.
204 Check for a valid lr.type value.
205 * src/state.h, src/state.c (struct state_list): Add state_list
206 member.
207 (state_new): Initialize state_list member to NULL.
208 (state_new_isocore): New function, exported.
209 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
210 exercises all values of lr.type.
211 (GNU AWK Grammar): Rename test group to...
212 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
213 AT_TEST_EXISTING_GRAMMAR.
214 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
215 (GNU pic Grammar): Rename test group to...
216 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
217 AT_TEST_EXISTING_GRAMMAR.
218 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
219 all values of lr.type.
220 (Single State Split): New test groups using AT_TEST_LR_TYPE.
221 (Lane Split): Likewise.
222 (Complex Lane Split): Likewise.
223 (Split During Added Lookahead Propagation): Likewise.
224
225 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
226
227 Add new files for IELR and canonical LR implementation.
228 * src/AnnotationList.c: New.
229 * src/AnnotationList.h: New.
230 * src/InadequacyList.c: New.
231 * src/InadequacyList.h: New.
232 * src/Sbitset.c: New.
233 * src/Sbitset.h: New.
234 * src/ielr.c: New.
235 * src/ielr.h: New.
236
237 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
238
239 Implement %define lr.default_rules.
240 Its value describes the states that are permitted to contain
241 default rules: "all", "consistent", or "accepting".
242 * src/reader.c (reader): Default lr.default_rules to "all".
243 Check for a valid lr.default_rules value.
244 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
245 is "accepting", then only mark the accepting state as
246 consistent.
247 (initialize_LA): Tell state_lookahead_tokens_count whether
248 lr.default_rules is "accepting".
249 * src/tables.c (action_row): If lr.default_rules is not "all",
250 then disable default rules in inconsistent states.
251 * src/print.c (print_reductions): Use this opportunity to
252 perform some assertions about whether lr.default_rules was
253 obeyed correctly.
254 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
255 helps with checking the parser tables for a grammar.
256 * tests/input.at (%define lr.default_rules invalid values): New
257 test group.
258 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
259 AT_TEST_TABLES_AND_PARSE.
260 (`no %define lr.default_rules'): New test group generated by
261 AT_TEST_LR_DEFAULT_RULES.
262 (`%define lr.default_rules "all"'): Likewise.
263 (`%define lr.default_rules "consistent"'): Likewise.
264 (`%define lr.default_rules "accepting"'): Likewise.
265
266 2009-04-20 Akim Demaille <demaille@gostai.com>
267
268 Formatting change.
269
270 2009-04-20 Akim Demaille <demaille@gostai.com>
271
272 bison: factoring.
273 * src/output.c (token_definitions_output): Use symbol_id_get
274 instead of duplicating its logic.
275 * TODO (YYERRCODE): Extend.
276
277 2009-04-20 Akim Demaille <demaille@gostai.com>
278
279 variables: prefer error-verbose to error_verbose.
280 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
281 instead of error_verbose.
282 * src/scan-gram.l (%error-verbose): Map to the error-verbose
283 variable.
284 * doc/bison.texinfo: Promote %define error-verbose instead of
285 %error-verbose.
286 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
287
288 2009-04-15 Akim Demaille <demaille@gostai.com>
289
290 variables: accept dashes.
291 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
292 underscores.
293 * src/scan-gram.l ({id}): Also accept dashes after the initial
294 letter.
295 ({directive}): Use {id}.
296 * src/parse-gram.y: Comment and formatting changes.
297 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
298 symbols.
299 * src/complain.h, src/complain.c (yacc_at): New.
300 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
301 symbol names.
302 * src/output.c (token_definitions_output): Do not #define token
303 names with dashes.
304
305 2009-04-20 Akim Demaille <demaille@gostai.com>
306
307 Consistently refer to Yacc, not YACC.
308 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
309
310 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
311
312 Pacify make maintainer-check-posix.
313 * tests/input.at (%define, --define): Move bison command-line
314 options before grammar file name.
315
316 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
317
318 Document semicolon warnings.
319 * NEWS (2.5): Here.
320
321 2009-04-14 Akim Demaille <demaille@gostai.com>
322
323 variables: use `parse.assert' instead of `assert'.
324 * TODO (assert): Remove.
325 * data/bison.m4 (b4_assert_if): Replace with...
326 (b4_parse_assert_if): this.
327 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
328 * doc/bison.texinfo (Decl Summary): Document parse.assert.
329
330 2009-04-14 Akim Demaille <demaille@gostai.com>
331
332 variables: use `parse.trace' instead of `debug'.
333 * src/getargs.c (getargs): Map -t to %define trace.parse.
334 * src/scan-gram.l (%debug): Map to %define trace.parse.
335 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
336 names to `_' in macro names.
337 (b4_debug_if): Replace with...
338 (b4_parse_trace_if): this.
339 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
340 * data/yacc.c: Adjust.
341 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
342 Use @code to label the variable list.
343 Document the variable parse.trace.
344 (Tracing): Promote the parse.trace variable.
345 * TODO: %printer is not documented.
346
347 2009-04-14 Akim Demaille <demaille@gostai.com>
348
349 doc: minor fixes.
350 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
351 (Table of Symbols): Remove duplicate entry for %debug.
352
353 2009-04-10 Eric Blake <ebb9@byu.net>
354
355 submodules: update to latest
356 * submodules/autoconf: Use latest upstream Autoconf.
357
358 2009-04-06 Eric Blake <ebb9@byu.net>
359
360 Work around autoconf 2.63b bug in testsuite.
361 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
362 autoconf bug related to # in test.
363
364 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
365
366 * NEWS (2.5): New section. Describe new -D/--define feature.
367
368 2009-04-06 Akim Demaille <demaille@gostai.com>
369
370 Regen.
371 * src/parse-gram.h, src/parse-gram.c: Regen.
372
373 2009-04-06 Akim Demaille <demaille@gostai.com>
374
375 rename muscle_tab.* as muscle-tab.* for consistency.
376 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
377 * src/muscle-tab.h, src/muscle-tab.c: these.
378 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
379 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
380
381 2009-04-06 Akim Demaille <demaille@gostai.com>
382
383 Makefile: introduce $(BISON).
384 * src/local.mk (BISON): New.
385 (YACC): Use it.
386
387 2009-04-06 Akim Demaille <demaille@gostai.com>
388
389 parser: handle %locations as %define locations.
390 * src/getargs.h, src/getargs.c (locations_flag): Remove.
391 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
392 to set "locations" to true.
393 * src/output.c (prepare): Don't output "locations".
394 * src/scan-gram.l (%locations): Handle it as a %<flag>.
395 * src/parse-gram.y: It's no longer a token.
396 Don't handle it.
397 * data/bison.m4 (b4_locations_if): Define it with
398 b4_percent_define_if_define.
399 * data/c.m4, data/glr.cc: Adjust.
400
401 2009-04-06 Akim Demaille <demaille@gostai.com>
402
403 Regen.
404 * src/parse-gram.c: Regen.
405
406 2009-04-06 Akim Demaille <demaille@gostai.com>
407
408 muscle: factor the handling of obsolete of obsolete directives.
409 Suggested by Joel E. Denny.
410
411 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
412 New, extracted from...
413 * src/parse-gram.y (prologue_declaration: pure-parser): here.
414 Remove it.
415 (prologue_declaration: "%<flag>"): Use
416 muscle_percent_define_ensure.
417 (%error-verbose, %pure-parser): No longer tokens.
418 * src/scan-gram.l (pure-parser): Return as a %<flag>.
419
420 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
421
422 Fix options documentation.
423 * build-aux/cross-options.pl: As in --help output, write optional
424 arguments as [=ARG] not =[ARG].
425 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
426
427 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
428
429 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
430 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
431 requirements for a correct m4 are stricter.
432 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
433 * configure.ac: Update to use AC_PROG_GNU_M4.
434 Reported by Eric Blake.
435
436 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
437
438 Help with updating web manual.
439 * HACKING: Incorporate instructions from gnulib/doc/README.
440 * bootstrap.conf (gnulib_modules): Add gendocs.
441
442 2009-04-03 Akim Demaille <demaille@gostai.com>
443
444 Regen.
445 * src/parse-gram.h, src/parse-gram.c: Regen.
446
447 2009-04-03 Akim Demaille <demaille@gostai.com>
448
449 Factor %FLAG at scan level.
450 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
451 definitions and associated rules, replaced by....
452 (PERCENT_FLAG): this new token type, and rule.
453 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
454 Use it for %debug and %error-verbose.
455
456 2009-04-03 Akim Demaille <demaille@gostai.com>
457
458 Regen.
459 * src/parse-gram.h, src/parse-gram.c: Regen.
460
461 2009-04-03 Akim Demaille <demaille@gostai.com>
462
463 Treat %debug as %define debug.
464 * data/bison.m4 (b4_debug_if): New.
465 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
466 * data/lalr1.java: Use it instead of b4_debug_flag.
467 * src/getargs.h, src/getargs.c (debug_flag): Remove.
468 * src/output.c (prepare): Don't output it.
469 * src/parse-gram.y: Treat %debug as %define debug.
470
471 2009-04-03 Akim Demaille <demaille@gostai.com>
472
473 Treat %error-verbose as %define error_verbose.
474 This allows to pass -Derror_verbose on the command line. Better
475 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
476 ERROR_VERBOSE being defined as false or true.
477 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
478 on b4_percent_define_ifdef, for does not check the defined value,
479 but only whether the symbol is defined, rely on
480 b4_percent_define_flag_if, so that a value of "false" is processed
481 as a false.
482 If not defined, define the flag to "false".
483 (b4_error_verbose_if): New.
484 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
485 b4_error_verbose_flag.
486 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
487 * src/output.c (prepare): Don't output it.
488 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
489
490 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
491
492 Fix strange %define locations for default values.
493 Reported by Akim Demaille at
494 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
495 and discussed again starting at
496 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
497 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
498 because location information is bogus.
499 Use angle brackets to delimit fake file name because square brackets
500 look like underexpanded m4. Choose a better fake file name.
501 Use negative line numbers.
502 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
503 * src/location.c (location_print): If line for a boundary is negative,
504 only print that boundary's file name.
505 * src/location.h: Document that.
506 * tests/skeletons.at (%define Boolean variables: invalid skeleton
507 defaults): Update output.
508
509 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
510
511 Pacify ./configure --enable-gcc-warnings.
512 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
513 in lib won't compile with it.
514 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
515
516 2009-03-31 Akim Demaille <demaille@gostai.com>
517
518 bootstrap: --help to stdout.
519 * bootstrap (usage): Don't send --help to stderr.
520 Use a here doc instead of a long string.
521
522 2009-03-31 Akim Demaille <demaille@gostai.com>
523
524 bootstrap: README-hacking no longer exists
525 * bootstrap (checkout_only_file): Set to HACKING.
526
527 2009-03-26 Akim Demaille <demaille@gostai.com>
528
529 doc: merge HACKING and README-hacking.
530 Two files is confusing.
531 Reported by Alexandre Duret-Lutz.
532
533 * README-hacking: Merge into...
534 * HACKING (Working from the repository): here.
535
536 2009-03-26 Akim Demaille <demaille@gostai.com>
537
538 doc: update README-hacking.
539 * README-hacking: We now use git and git submodules.
540 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
541
542 2009-03-26 Akim Demaille <demaille@gostai.com>
543
544 lalr1.cc: avoid GCC 4.3 warnings.
545 GCC 4.3 now warns about "a || b && c" and asks for explicit
546 parentheses.
547 Reported by Alexandre Duret-Lutz.
548 * data/location.cc: Update copyright years.
549 (Position::operator==): Use parens to make precedence explicit.
550 Compare lines and columns first, as they are more likely to be
551 different, and they are faster to compare.
552
553 2009-03-26 Akim Demaille <demaille@gostai.com>
554
555 gnulib: update.
556 * gnulib: Update to latest.
557 * src/local.mk (AM_CFLAGS): Move to...
558 * Makefile.am: here.
559 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
560 AM_CFLAGS.
561
562 2009-03-02 Akim Demaille <demaille@gostai.com>
563
564 Comment changes.
565
566 2009-03-02 Akim Demaille <demaille@gostai.com>
567
568 Share b4_yytranslate_define.
569 * data/lalr1.cc (b4_yytranslate_define): Move to...
570 * data/c++.m4: here.
571
572 2009-03-02 Akim Demaille <demaille@gostai.com>
573
574 Use locations in the variant example.
575 Yes, this obfuscates the point of this example, variants only.
576 But glr.cc cannot work (yet?) without locations. This change
577 makes it easier to use this example with glr.cc.
578
579 * examples/variant.yy (assert): %define it.
580 (locations): Request them.
581 (yylex): Bind the location to the stage.
582
583 2009-03-02 Akim Demaille <demaille@gostai.com>
584
585 Dub make_TOKEN as a public type interface.
586 * data/c++.m4 (b4_symbol_constructor_declare)
587 (b4_symbol_constructor_define): New empty stubs.
588 (b4_public_types_declare, b4_public_types_define): Use them.
589 * data/lalr1.cc (b4_symbol_constructor_declare)
590 (b4_symbol_constructor_declare_)
591 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
592 Move to...
593 * data/variant.hh: here.
594 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
595 needed.
596 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
597 b4_symbol_constructor_declare, as it is now done by
598 b4_public_types_define and b4_public_types_declare.
599
600 2009-03-02 Akim Demaille <demaille@gostai.com>
601
602 Coding style changes.
603 * data/lalr1.cc (b4_symbol_constructor_declaration_)
604 (b4_symbol_constructor_declarations)
605 (b4_symbol_constructor_definition_)
606 (b4_symbol_constructor_definitions)
607 (b4_yytranslate_definition): Rename as...
608 (b4_symbol_constructor_declare_)
609 (b4_symbol_constructor_declare)
610 (b4_symbol_constructor_define_)
611 (b4_symbol_constructor_define)
612 (b4_yytranslate_define): these.
613 * data/variant.hh (b4_variant_definition): Rename as...
614 (b4_variant_define): this.
615
616 2009-03-02 Akim Demaille <demaille@gostai.com>
617
618 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
619 * data/bison.m4 (b4_percent_define_if_define): New.
620 * data/c++.m4 (b4_variant_if): Move to...
621 * data/bison.m4: Here, using b4_percent_define_if_define.
622 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
623 * data/bison.m4: Here, using b4_percent_define_if_define.
624
625 2009-03-02 Akim Demaille <demaille@gostai.com>
626
627 Dub symbol_type_base as a public type.
628 * data/c++.m4 (b4_public_types_declare): Now define
629 symbol_type_base and symbol_type.
630 (b4_public_types_define): New.
631 In both cases, the definitions are taken verbatim from lalr1.cc.
632 * data/lalr1.cc: Adjust.
633
634 2009-03-02 Akim Demaille <demaille@gostai.com>
635
636 b4_public_types_declare.
637 * data/c++.m4 (b4_public_types_declare): New.
638 * data/glr.cc, data/lalr1.cc: Use it.
639
640 2009-03-02 Akim Demaille <demaille@gostai.com>
641
642 b4_semantic_type_declare.
643 * data/c++.m4 (b4_semantic_type_declare): New.
644 Factors and generalizes what was in glr.cc and lalr1.cc.
645 * data/variant.hh (b4_semantic_type_declare): Redefine it for
646 variants.
647 * data/lalr1.cc, data/glr.cc: Use it.
648
649 2009-02-26 Akim Demaille <demaille@gostai.com>
650
651 Upgrade gnulib.
652 * gnulib: Upgrade from master.
653 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
654 Regen.
655
656 2009-02-25 Akim Demaille <demaille@gostai.com>
657
658 Remove useless arguments.
659 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
660 relevant.
661
662 2009-02-25 Akim Demaille <demaille@gostai.com>
663
664 Comment changes.
665 * data/lalr1.cc: here.
666
667 2009-02-25 Akim Demaille <demaille@gostai.com>
668
669 Fix glr.cc's debug level handling.
670 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
671 glr.c which is used.
672 (debug_level, set_debug_level): Adjust.
673
674 2009-02-25 Akim Demaille <demaille@gostai.com>
675
676 Copyright years.
677 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
678
679 2009-02-25 Akim Demaille <demaille@gostai.com>
680
681 Style changes.
682 * etc/bench.pl.in (generate_grammar_list): Consitently use
683 location_type, not yy::location.
684
685 2009-02-25 Akim Demaille <demaille@gostai.com>
686
687 Comment change.
688 * data/lalr1.cc: here.
689
690 2009-02-19 Akim Demaille <demaille@gostai.com>
691
692 Make yyparser::error public.
693 * data/lalr1.cc: here.
694 There is no good reason to keep it private (and it is convenient
695 to use it from the scanner for instance). It is already public in
696 glr.cc.
697
698 2009-02-19 Akim Demaille <demaille@gostai.com>
699
700 Comment changes.
701 * data/glr.cc: here.
702
703 2009-02-19 Akim Demaille <demaille@gostai.com>
704
705 Remove trailing blanks.
706 The epilogue has its own ending \n, no need to add another.
707
708 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
709 epilogue.
710 * data/glr.cc: dnl when extending the epilogue.
711 Remove stray "private:".
712
713 2009-02-19 Akim Demaille <demaille@gostai.com>
714
715 Use b4_c_modern.
716 * data/c.m4 (b4_c_function_decl): Here.
717
718 2009-02-19 Akim Demaille <demaille@gostai.com>
719
720 Comment changes.
721 * data/lalr1.cc: here.
722
723 2009-02-19 Akim Demaille <demaille@gostai.com>
724
725 Extract variant.hh
726 * data/variant.hh: New, extracted from...
727 * data/lalr1.cc: here.
728 Adjust.
729 * data/local.mk: Adjust.
730
731 2009-02-19 Akim Demaille <demaille@gostai.com>
732
733 Extract stack.hh from lalr1.cc.
734 * data/stack.hh: New.
735 * data/lalr1.cc: Extract from here.
736 * data/local.mk: Adjust.
737
738 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
739
740 Add reminder about uploading public key to keys.gnupg.net.
741 * HACKING (Release Procedure): Here.
742
743 2009-01-28 Akim Demaille <demaille@gostai.com>
744
745 * NEWS: Update information about 2.4.1 and 2.4.2.
746
747 2008-11-04 Akim Demaille <demaille@gostai.com>
748
749 Reformat NEWS.
750 * NEWS: Use more outline-mode markup.
751 Suggested by Jim Meyering.
752
753 2009-01-08 Akim Demaille <demaille@gostai.com>
754
755 Fix grep portability issues.
756 Grep on Solaris does not support -q.
757 Reported by Summum Bonum.
758
759 * NEWS: Add a stub for 2.4.2.
760 * THANKS: Add Summum Bonum.
761 * tests/atlocal.in (EGREP): New.
762 (CC, CXX, XSLTPROC): Make it possible to override them via
763 envvars.
764 * tests/java.at: Use $EGREP instead of egrep.
765 Use AT_CHECK's ignore instead of grep's -q.
766
767 2008-12-11 Akim Demaille <demaille@gostai.com>
768
769 Pass the token type to yysyntax_error.
770 * data/yacc.c (yysyntax_error): Take the transated token instead
771 of the raw number.
772 Adjust callers.
773 * TODO: Update.
774
775 2008-12-11 Akim Demaille <demaille@gostai.com>
776
777 Formatting changes.
778 * data/glr.c: Formatting changes.
779
780 2008-12-11 Akim Demaille <demaille@gostai.com>
781
782 Propagate i18n changes into glr.c.
783 * TODO: Update.
784 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
785 building the error message format dynamically.
786 * data/lalr1.java: Formatting changes.
787
788 2008-12-11 Akim Demaille <demaille@gostai.com>
789
790 Use testsuite -C.
791 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
792 Solves problems when top_srcdir is an absolute path.
793 Suggested by Eric Blake.
794 * configure.ac: Require Autoconf 2.62.
795
796 2008-12-11 Akim Demaille <demaille@gostai.com>
797
798 Simplify the i18n of the error messages.
799 * data/lalr1.cc: Comment changes.
800 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
801 lalr1.cc instead of building dynamically the format string.
802
803 2008-12-08 Akim Demaille <demaille@gostai.com>
804
805 Fix portability issue in the test suite.
806 * tests/local.at (AT_MATCHES_CHECK): New.
807 Based on Perl instead of Sed. Sed has too many portability
808 pitfalls, not ever Sed is GNU Sed.
809 * tests/actions.at (Fix user actions without a trailing semicolon):
810 Use it.
811
812 2008-12-08 Akim Demaille <demaille@gostai.com>
813
814 Update data/README.
815 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
816
817 2008-12-08 Akim Demaille <demaille@gostai.com>
818
819 Install autoconf as a submodule to get m4sugar.
820 * .gitmodules: Add submodules/autoconf.
821 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
822 submodules/autoconf.
823
824 2008-12-08 Akim Demaille <demaille@gostai.com>
825
826 Test token.prefix in all the skeletons.
827 * data/java.m4 (b4_token_enum): Use the token.prefix.
828 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
829 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
830 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
831 * tests/java.at: Comment changes.
832 (AT_CHECK_JAVA_MINIMAL): Define the END token.
833 (Java parser class and package names): Add token.prefix check.
834
835 2008-12-08 Akim Demaille <demaille@gostai.com>
836
837 Fix regeneration of atconfig.
838 * tests/local.mk (tests/atconfig): The rule was incorrect, but
839 remove it: now that there is no tests/Makefile.am, the top-level
840 Makefile properly updates atconfig when needed.
841
842 2008-12-07 Di-an Jan <dianj@freeshell.org>
843
844 Implement the FIXME that ends an user action with a semicolon
845 if it seems necessary.
846 * src/scan-code.l (flex rules section): Flag cpp directive from
847 any `#' to the first unescaped end-of-line. Semicolon is not
848 needed after `;', `{', '}', or cpp directives and is needed after
849 any other token (whitespaces and comments have no effect).
850 * tests/actions.at (Fix user actions without a trailing semicolon):
851 New test.
852 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
853 to make user actions complete statements.
854 Adjust column numbers in error messages.
855 * tests/regression.at (Fix user actions without a trailing semicolon):
856 Remove. Covered by new test.
857
858 2008-12-07 Akim Demaille <demaille@gostai.com>
859
860 Update gnulib.
861 * gnulib: Update from master.
862
863 2008-12-05 Eric Blake <ebb9@byu.net>
864
865 Avoid compiler warning.
866 * src/output.c (muscle_insert_item_number_table): Delete unused
867 function.
868
869 2008-12-02 Eric Blake <ebb9@byu.net>
870
871 Build testsuite with newer autoconf.
872 * tests/output.at (m4_expand): Don't override in newer autoconf,
873 where the underlying implementation changed.
874 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
875 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
876 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
877 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
878 since some of them contain unbalanced ')'.
879
880 2008-12-01 Akim Demaille <demaille@gostai.com>
881
882 Use b4_symbol for printers and destructors everywhere.
883 * data/bison.m4 (b4_symbol_action_location): New.
884 * data/c.m4 (b4_symbol_actions): Remove.
885 Adjust all callers to use by b4_symbol_foreach and the corresponding
886 b4_symbol_printer/destructor macro.
887 * data/glr.cc: Adjust.
888 * data/lalr1.java: Adjust the %destructor sanity check.
889 * src/output.c (symbol_code_props_output): Remove, we no longer
890 need the b4_symbol_printers/destructors tables.
891
892 2008-12-01 Akim Demaille <demaille@gostai.com>
893
894 Use b4_symbol_case_.
895 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
896 b4_symbol_case_.
897
898 2008-12-01 Akim Demaille <demaille@gostai.com>
899
900 Move b4_symbol based macro to bison.m4.
901 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
902 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
903 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
904 (b4_type_foreach): Move to...
905 * data/bison.m4: Here.
906 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
907 b4_symbol_value_template instead of b4_symbol_value.
908
909 2008-12-01 Akim Demaille <demaille@gostai.com>
910
911 b4_symbol/type_foreach.
912 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
913 Use them.
914
915 2008-12-01 Akim Demaille <demaille@gostai.com>
916
917 Use the symbol properties to output the printer/destructor for lalr1.cc.
918 Instead of defining complex list of tuples to define various
919 properties of the symbols, we now prefer to define symbols as
920 "structs" in m4: using the symbol key (its number), and the
921 property name, b4_symbol gives it value. Use this to handle
922 destructors and printers.
923
924 * src/output.c (CODE_PROP): New.
925 (prepare_symbol_definitions): Use it to define the printer and
926 destructor related attributes of the symbols.
927 * data/lalr1.cc (b4_symbol_actions): Rename as...
928 (b4_symbol_action): this.
929 Use b4_symbol instead of 6 arguments.
930 (b4_symbol_printer, b4_symbol_destructor): New.
931 Use them instead of b4_symbol_actions.
932
933 2008-12-01 Akim Demaille <demaille@gostai.com>
934
935 Avoid capturing variables too easily.
936 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
937 v__ and p__ instead of v and p.
938
939 2008-12-01 Akim Demaille <demaille@gostai.com>
940
941 Remove spurious empty line before syncline.
942 * data/bison.m4 (b4_syncline): Don't output an empty line before
943 the output.
944
945 2008-11-26 Akim Demaille <demaille@gostai.com>
946
947 Convert lib/Makefile.am into lib/local.mk.
948 The real problem is rather gnulib.mk, which itself is extracted
949 from a Makefile.am that gnulib expects to the "recursive". The
950 tool prefix-gnulib-mk converts such a gnulib.mk to be
951 non-recursive. Also, some AC_SUBST variables need to be adjusted.
952
953 * etc/prefix-gnulib-mk: New.
954 * bootstrap (slurp): Use it to convert further gnulib.mk.
955 No longer try to avoid re-creation of lib/gnulib.mk as the changes
956 are deeper.
957 * lib/Makefile.am: Rename as...
958 * lib/local.mk: this.
959 Adjust to be prefixed.
960 * Makefile.am, configure.ac: Adjust.
961 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
962
963 2008-11-26 Akim Demaille <demaille@gostai.com>
964
965 s/_FLAGS/FLAGS/.
966 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
967 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
968 Reported by Eric Blake.
969
970 2008-11-26 Akim Demaille <demaille@gostai.com>
971
972 Use b4_parser_tables_define in glr.cc.
973 * data/glr.c: Use b4_parser_tables_define instead of defining the
974 (deterministic integral) tables by hand.
975
976 2008-11-26 Akim Demaille <demaille@gostai.com>
977
978 Use b4_parser_tables_define in Java.
979 * data/java.m4 (b4_typed_parser_table): Rename as...
980 (b4_typed_parser_table_define): this, for consistency.
981 Accept a comment as $4.
982 Move $2 into yy*_.
983 (b4_integral_parser_table): Rename as...
984 (b4_integral_parser_table_define): this.
985 * data/lalr1.java: Adjust all uses.
986 Use b4_parser_tables_define instead of generation by hand.
987
988 2008-11-26 Akim Demaille <demaille@gostai.com>
989
990 Prepare the convergence bw C style and Java table generation.
991 * data/bison.m4 (b4_tables_map, b4_tables_declare)
992 (b4_tables_define): Rename as...
993 (b4_integral_parser_tables_map, b4_parser_tables_declare)
994 (b4_parser_tables_define): these.
995 * data/c.m4 (b4_table_define): Rename as...
996 (b4_integral_parser_table_define): this.
997 * data/lalr1.cc: Adjust.
998 (b4_table_define, b4_table_declare): Rename as...
999 (b4_integral_parser_table_define)
1000 (b4_integral_parser_table_declare): these.
1001 (yyrline_): Move the comment where it is actually used.
1002 * data/yacc.c: Adjust.
1003 (yyrline): Use b4_integral_parser_table_define.
1004
1005 2008-11-26 Akim Demaille <demaille@gostai.com>
1006
1007 Regen.
1008 * src/parse-gram.h, src/parse-gram.c: Regen.
1009
1010 2008-11-26 Akim Demaille <demaille@gostai.com>
1011
1012 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
1013 * data/lalr1.cc (b4_tables_map): Move to...
1014 * data/bison.m4: here.
1015 Update the comment for yytable during the flight.
1016 (b4_tables_declare, b4_tables_define): New.
1017 * data/lalr1.cc: Use them.
1018 * data/c.m4 (b4_table_define): New.
1019 * data/yacc.c: Use b4_tables_define instead of output the tables
1020 by hand.
1021 * tests/regression.at (Web2c Actions): Adjust the expected output,
1022 the order of the tables changed.
1023
1024 2008-11-26 Akim Demaille <demaille@gostai.com>
1025
1026 Get rid of (yy)rhs and (yy)prhs.
1027 These tables are no longer needed in the parsers, and they don't seem to
1028 be useful. They are not documented either.
1029
1030 * src/output.c (prepare_rules): Get rid of rhs and prhs.
1031 Adjust the computation of (yy)r2.
1032
1033 2008-11-26 Akim Demaille <demaille@gostai.com>
1034
1035 Rule length is unsigned.
1036 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
1037
1038 2008-11-26 Akim Demaille <demaille@gostai.com>
1039
1040 Get rid of lalr1-split.cc.
1041 It was no longer maintainer.
1042
1043 * data/lalr1-split.cc: Remove.
1044 * etc/bench.pl.in (bench_fusion_parser): Remove.
1045 Adjust.
1046
1047 2008-11-26 Akim Demaille <demaille@gostai.com>
1048
1049 Use yy* consistently.
1050 * data/glr.c: Now that yyrhs no longer exists as a global
1051 variable, rename local "rhs" variables into "yyrhs" for
1052 consistency.
1053
1054 2008-11-25 Akim Demaille <demaille@gostai.com>
1055
1056 Get rid of yyrhs and yyprhs in glr.c.
1057 * data/glr.c (yyrhs, yyprhs): Remove.
1058 Instead, use the state stack and yystos.
1059
1060 2008-11-25 Akim Demaille <demaille@gostai.com>
1061
1062 Flag glr tests.
1063 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
1064 as an Autotest keyword.
1065
1066 2008-11-25 Akim Demaille <demaille@gostai.com>
1067
1068 Prefer TESTSUITE_FLAGS.
1069 TESTSUITEFLAGS is barely readable.
1070
1071 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
1072 for backward compatibility.
1073 Use the former instead of the latter.
1074
1075 2008-11-25 Akim Demaille <demaille@gostai.com>
1076
1077 Get rid of yyrhs and yyprhs in larl1.java.
1078 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
1079 (yy_reduce_print): Rather, use yystos_ and the state stack.
1080
1081 2008-11-25 Akim Demaille <demaille@gostai.com>
1082
1083 Formatting changes.
1084
1085 2008-11-25 Akim Demaille <demaille@gostai.com>
1086
1087 Get rid of yyrhs and yyprhs in yacc.c.
1088 They were used to get the symbol types, given a rule number, when
1089 displaying the top of the stack before a reduction. But the
1090 symbol type is available from the state stack. This has two be
1091 benefits: two tables less in the parser (making it smaller), and a
1092 more consistent use of the three stacks which will help to fuse
1093 them.
1094
1095 * data/yacc.c (yyprhs, yyrhs): Remove.
1096 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
1097 (yy_reduce_print): Take yyssp as argument.
1098 Use it, together with yystos, to get the symbol type.
1099 * tests/regression.at (Web2c Report): Remove these tables from the
1100 expected output.
1101
1102 2008-11-25 Akim Demaille <demaille@gostai.com>
1103
1104 b4_tables_map.
1105 The point is to factor the generation of the tables across skeletons.
1106 This is language dependant.
1107
1108 * data/c.m4 (b4_comment_): New.
1109 Should be usable to define how to generate tables independently of
1110 the language.
1111 (b4_c_comment): New.
1112 (b4_comment): Bounce to b4_c_comment.
1113 Now support $2 = [PREFIX] for indentation.
1114 * data/lalr1.cc (b4_table_declare): Don't output a comment if
1115 there is no comment.
1116 Indent it properly when there is one.
1117 Output the ending semicolon.
1118 (b4_table_define): Space changes.
1119 Output the ending semicolon.
1120 (b4_tables_map): New.
1121 Use it twice instead of declaring and defining the (integral)
1122 tables by hand.
1123
1124 2008-11-25 Akim Demaille <demaille@gostai.com>
1125
1126 b4_table_declare.
1127 * data/lalr1.cc (b4_table_declare): New.
1128 Use it to declare the tables defined with b4_table_define.
1129 (b4_table_define): Declare a third arg to match b4_table_declare
1130 signature.
1131 Move all the comments around invocations of b4_table_define into
1132 the invocations itselves.
1133 Move things around to have the order for declarations and
1134 definitions.
1135
1136 2008-11-25 Akim Demaille <demaille@gostai.com>
1137
1138 Formatting changes.
1139 * data/lalr1.java: here.
1140
1141 2008-11-25 Akim Demaille <demaille@gostai.com>
1142
1143 b4_args is more general than only C++.
1144 * data/lalr1.cc (b4_args, _b4_args): Move to...
1145 * data/bison.m4: here.
1146
1147 2008-11-21 Di-an Jan <dianj@freeshell.org>
1148
1149 Implement no-XXX arguments for --warnings, --report, --trace.
1150 * src/getargs.c (flags_argmatch): Handles no-XXX.
1151 Fix typo in doxygen comment.
1152
1153 2008-11-21 Akim Demaille <demaille@gostai.com>
1154
1155 Display the changes in cross-options.texi.
1156 * build-aux/cross-options.pl ($sep): New, to separate items.
1157 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
1158 changes.
1159
1160 2008-11-20 Di-an Jan <dianj@freeshell.org>
1161
1162 Improves options in the manual.
1163 * doc/bison.texinfo (-g, -x): Add space before argument.
1164 (Option Cross Key): Implement FIXME: listing directives also.
1165 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
1166 (Short Option): Special case -d. Put arguments inside @option.
1167 (Bison Directive): Add column, automatically extracted from
1168 src/scan-gram.l (actual name passed as the first argument)
1169 with special case for %define.
1170 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
1171 to build-aux/cross-options.pl.
1172 * src/getargs.c (usage): Document limitations of cross-options.pl.
1173 * src/scan-gram.l: Likewise.
1174
1175 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1176
1177 Fix unexpanded macros in GLR defines file.
1178 Reported by Csaba Raduly at
1179 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
1180 * THANKS (Csaba Raduly): Add.
1181 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
1182 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
1183 lexer in a separate module that includes the defines file.
1184 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
1185 source.
1186 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
1187 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
1188 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
1189 (AT_DATA_SOURCE_PROLOGUE): New.
1190 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
1191 (AT_DATA_SOURCE): New.
1192 (AT_FULL_COMPILE): Extend to support an additional source file.
1193
1194 2008-11-18 Akim Demaille <demaille@gostai.com>
1195
1196 More TODO.
1197 * TODO: More short term issues.
1198
1199 2008-11-18 Akim Demaille <demaille@gostai.com>
1200
1201 Regen.
1202 * src/parse-gram.h, src/parse-gram.c: Regen.
1203
1204 2008-11-18 Akim Demaille <demaille@gostai.com>
1205
1206 Use b4_subtract where possible.
1207 * data/lalr1.cc (b4_subtract): Move to...
1208 * data/bison.m4: here.
1209 * data/glr.c (b4_rhs_data): Use it.
1210 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
1211
1212 2008-11-18 Akim Demaille <demaille@gostai.com>
1213
1214 Remove incorrect mode specification.
1215 * data/glr.cc: Don't pretend it's C code.
1216
1217 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1218
1219 Simplify last patch slightly.
1220 * src/getargs.c (getargs): Here.
1221
1222 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1223
1224 Fix last warning from --enable-gcc-warnings.
1225 * src/getargs.c (getargs): Don't assign const address to non-const
1226 pointer.
1227
1228 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1229
1230 Don't let maintainer-*-check targets force a version update.
1231 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
1232 handled.
1233
1234 2008-11-17 Di-an Jan <dianj@freeshell.org>
1235
1236 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
1237 Align menus. Adjust word wrapping. Use node names for menu names.
1238 (Examples): Don't abbreviate node names.
1239 (LocalWords): Remove abbreviations.
1240 (Copying): Make description a sentence.
1241 (Java Action Features): Remove period to match the rest of menu.
1242
1243 2008-11-17 Di-an Jan <dianj@freeshell.org>
1244
1245 Handles several --enable-gcc-warnings.
1246 * src/getargs.c (command_line_location): Set parameters to void.
1247 * src/output.c (symbol_type_name_cmp): Make static.
1248 (symbols_by_type_name): Set parameters to void.
1249 (symbol_definitions_output): Remove unused parameter. Rename as...
1250 (prepare_symbol_definitions): this.
1251 (muscles_output): Move symbol_definitions_output to...
1252 (output): here as prepare_symbol_definitions.
1253 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
1254 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
1255
1256 2008-11-17 Di-an Jan <dianj@freeshell.org>
1257
1258 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
1259 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
1260
1261 2008-11-16 Akim Demaille <demaille@gostai.com>
1262
1263 Add missing $(EXEEXT).
1264 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
1265 "src/bison$(EXEEXT)".
1266 Reported by Di-an Jan.
1267
1268 2008-11-15 Akim Demaille <demaille@gostai.com>
1269
1270 * TODO: Update.
1271
1272 2008-11-15 Akim Demaille <demaille@gostai.com>
1273
1274 Formatting changes.
1275 * tests/input.at: here.
1276
1277 2008-11-15 Akim Demaille <demaille@gostai.com>
1278
1279 Remove duplicate header inclusion.
1280 * src/LR0.c: here.
1281
1282 2008-11-15 Akim Demaille <demaille@gostai.com>
1283
1284 * src/parse-gram.h, src/parse-gram.c: Regen.
1285
1286 2008-11-15 Akim Demaille <demaille@gostai.com>
1287
1288 Support parametric types.
1289
1290 There are two issues to handle: first scanning nested angle
1291 bracket pairs to support types such as std::pair< std::string,
1292 std::list<std::string> > >.
1293
1294 Another issue is to address idiosyncracies of C++: do not glue two
1295 closing angle brackets together (otherwise it's operator>>), and
1296 avoid sticking blindly a TYPE to the opening <, as it can result
1297 in '<:' which is a digraph for '['.
1298
1299 * src/scan-gram.l (brace_level): Rename as...
1300 (nesting): this.
1301 (SC_TAG): New.
1302 Implement support for complex tags.
1303 (tag): Accept
1304 , but not <.
1305 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
1306 (b4_symbol_variant): Leave space around types as parameters.
1307 * examples/variant.yy: Use nested template types and leading ::.
1308 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
1309 Rename as...
1310 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
1311 * tests/c++.at: Test parametric types.
1312
1313 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1314
1315 Test token.prefix.
1316 This is not sufficient, but we test at least that the make_SYMBOL
1317 interface is not affected by token.prefix. A more general test
1318 will be implemented when the support of token.prefix is generalized
1319 to more skeletons.
1320
1321 * tests/c++.at: One more variant test, using token.prefix.
1322
1323 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1324
1325 Test the make_TOKEN interface.
1326 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
1327 Factor the common code in yylex.
1328 Use it to test "%define lex_symbol".
1329
1330 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1331
1332 Formatting change.
1333
1334 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1335
1336 Simplify code for variants bench marks.
1337 * etc/bench.pl.in (&generate_grammar_list): Define and use
1338 location_type.
1339 Factor the common code in yylex.
1340
1341 2008-11-15 Akim Demaille <demaille@gostai.com>
1342
1343 Better error message.
1344 * bootstrap (find_tool): Fix the error message.
1345
1346 2008-11-15 Akim Demaille <demaille@gostai.com>
1347
1348 Update variant.yy to newest interface.
1349 * examples/variant.yy: Define lex_symbol.
1350 Adjust.
1351
1352 2008-11-15 Akim Demaille <demaille@gostai.com>
1353
1354 Don't use locations in variant.yy.
1355 * examples/variant.yy: Adjust to not using locations.
1356
1357 2008-11-15 Akim Demaille <demaille@gostai.com>
1358
1359 Comment changes.
1360 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
1361 comments for the license.
1362
1363 2008-11-15 Akim Demaille <demaille@gostai.com>
1364
1365 Remove tests/Makefile.am.
1366 * tests/Makefile.am: Rename as...
1367 * tests/local.mk: this.
1368 * Makefile.am, configure.ac: Adjust.
1369 * Makefile.am (DISTCLEANFILES): Define.
1370 (maintainer-check, maintainer-xml-check, maintainer-push-check):
1371 Remove, we no longer need to bounce to the real targets.
1372
1373 2008-11-15 Akim Demaille <demaille@gostai.com>
1374
1375 Comment changes.
1376
1377 2008-11-15 Akim Demaille <demaille@gostai.com>
1378
1379 djgpp/local.mk.
1380 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
1381 * djgpp/local.mk: this new file.
1382
1383 2008-11-15 Akim Demaille <demaille@gostai.com>
1384
1385 Remove doc/Makefile.am.
1386 * doc/Makefile.am: Rename as...
1387 * doc/local.mk: this.
1388 Adjust paths
1389 * Makefile.am, configure.ac: Adjust.
1390 * Makefile.am (MOSTLYCLEANFILES): New.
1391 * src/local.mk: Adjust.
1392
1393 2008-11-15 Akim Demaille <demaille@gostai.com>
1394
1395 Move sc_tight_scope into maint.mk.
1396 It does not work, and I don't know how it was supposed to work: it
1397 seems to be looking for sources in the build tree. I just moved
1398 it at a better place, fixing it is still required.
1399
1400 * src/local.mk (echo): Remove.
1401 (sc_tight_scope): Move to...
1402 * maint.mk: here.
1403
1404 2008-11-15 Akim Demaille <demaille@gostai.com>
1405
1406 Regen.
1407 * src/parse-gram.h, src/parse-gram.h: Regen.
1408
1409 2008-11-15 Akim Demaille <demaille@gostai.com>
1410
1411 Remove src/Makefile.am.
1412 * src/Makefile.am: Rename as...
1413 * src/local.mk: this.
1414 Prefix all the paths with src/.
1415 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
1416 (AM_CPPFLAGS): Find find in builddir/src.
1417 (YACC): Move the flags into...
1418 (AM_YFLAGS): here.
1419 * maint.mk (sc_tight_scope): Disable.
1420 It used to bounce to the version in src/Makefile.am which is now
1421 part of this very Makefile.
1422 * Makefile.am, configure.ac: Adjust.
1423 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
1424 include "..." to find files "here": we are no longer in src/, so
1425 qualify the includes with src/.
1426 * doc/Makefile.am (PREPATH): No longer include the top_builddir
1427 prefix.
1428 (.x.1): Adjust to be able to create src/foo from the top level
1429 Makefile, instead of going bounce to src/Makefile the creation of
1430 foo.
1431
1432 2008-11-15 Akim Demaille <demaille@gostai.com>
1433
1434 Remove useless variable.
1435 * doc/Makefile.am (srcsrcdir): Remove.
1436
1437 2008-11-15 Akim Demaille <demaille@gostai.com>
1438
1439 Remove data/Makefile.am.
1440 * data/Makefile.am: Rename as...
1441 * data/local.mk: this.
1442 Adjust paths.
1443 * Makefile.am, configure.ac: Adjust.
1444
1445 2008-11-15 Akim Demaille <demaille@gostai.com>
1446
1447 Remove etc/Makefile.am.
1448 * etc/Makefile.am: Rename as...
1449 * etc/local.mk: this.
1450 Adjust.
1451 * Makefile.am, configure.ac: Adjust.
1452
1453 2008-11-15 Akim Demaille <demaille@gostai.com>
1454
1455 Remove examples/local.mk.
1456 examples/calc++/Makefile.am might be interesting to keep as is, since
1457 it is an example in itself.
1458
1459 * examples/Makefile.am: Rename as...
1460 * examples/local.mk: this.
1461 Adjust.
1462 * Makefile.am, configure.ac: Adjust.
1463
1464 2008-11-15 Akim Demaille <demaille@gostai.com>
1465
1466 Remove build-aux/Makefile.am.
1467 Recursive Makefiles are really way too slow, let's get rid of some of
1468 them.
1469
1470 * build-aux/Makefile.am: Rename as...
1471 * build-aux/local.mk: this.
1472 Adjust paths.
1473 * Makefile.am, configure.ac: Adjust.
1474
1475 2008-11-15 Akim Demaille <demaille@gostai.com>
1476
1477 Provide convenience constructors for locations and positions.
1478 * data/location.cc (position::position): Accept file, line and
1479 column as arguments with default values.
1480 Always qualify initial line and column literals as unsigned.
1481 (location::location): Provide convenience constructors.
1482
1483 2008-11-15 Akim Demaille <demaille@gostai.com>
1484
1485 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
1486 token type.
1487 Using template buys us nothing, and makes it uselessly complex to
1488 construct a symbol. Besides, it could not be generalized to other
1489 languages, while make_FOO would work in C/Java etc.
1490
1491 * data/lalr1.cc (b4_symbol_): New.
1492 (b4_symbol): Use it.
1493 (b4_symbol_constructor_declaration_)
1494 (b4_symbol_constructor_definition_): Instead of generating
1495 specializations of an overloaded template function, just generate
1496 several functions whose names are forged from the token names
1497 without the token.prefix.
1498 (b4_symbol_constructor_declarations): Generate them for all the
1499 symbols, not just by class of symbol type, now that instead of
1500 specializing a function template by the token, we generate a
1501 function named after the token.
1502 (b4_symbol_constructor_specialization_)
1503 (b4_symbol_constructor_specializations): Remove.
1504 * etc/bench.pl.in: Adjust to this new API.
1505
1506 2008-11-13 Akim Demaille <demaille@gostai.com>
1507
1508 %define token.prefix.
1509 Provide a means to add a prefix to the name of the tokens as
1510 output in the generated files. Because of name clashes, it is
1511 good to have such a prefix such as TOK_ that protects from names
1512 such as EOF, FILE etc. But it clutters the grammar itself.
1513
1514 * data/bison.m4 (token.prefix): Empty by default.
1515 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
1516 * data/lalr1.cc (b4_symbol): Ditto.
1517
1518 2008-11-13 Akim Demaille <demaille@gostai.com>
1519
1520 Compute at M4 time some of the subtractions.
1521 * data/lalr1.cc (b4_subtract): New.
1522 (b4_rhs_data): Use it.
1523
1524 2008-11-13 Akim Demaille <demaille@gostai.com>
1525
1526 symbol::token.
1527 This allows the user to get the type of a token returned by yylex.
1528
1529 * data/lalr1.cc (symbol::token): New.
1530 (yytoknum_): Define when %define lex_symbol, independently of
1531 %debug.
1532 (yytoken_number_): Move into...
1533 (symbol::token): here, since that's the only use.
1534 The other one is YYPRINT which was not officially supported
1535 by lalr1.cc, and anyway it did not work since YYPRINT uses this
1536 array under a different name (yytoknum).
1537
1538 2008-11-13 Akim Demaille <demaille@gostai.com>
1539
1540 YYERRCODE.
1541 * TODO (YYERRCODE): Mention the case of $undef.
1542
1543 2008-11-13 Akim Demaille <demaille@gostai.com>
1544
1545 TODO: YYPRINT.
1546 * TODO (YYPRINT): New.
1547
1548 2008-11-13 Akim Demaille <demaille@gostai.com>
1549
1550 Comment changes.
1551 * data/lalr1.cc, data/yacc.c: Fix the description of the
1552 yytranslate and yytoknum tables.
1553
1554 2008-11-13 Akim Demaille <demaille@gostai.com>
1555
1556 Define make_symbol in the header.
1557 To reach good performances these functions should be inlined (yet
1558 this is to measure precisely). To this end they must be available
1559 to the caller.
1560
1561 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
1562 location_type with the class name.
1563 Since will now be output in the header, declare "inline".
1564 No longer use b4_symbol_constructor_specializations, but
1565 b4_symbol_constructor_definitions in the header.
1566 Don't call it in the *.cc file.
1567
1568 2008-11-13 Akim Demaille <demaille@gostai.com>
1569
1570 Define yytranslate in the header for lex_symbol.
1571 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
1572 into the header file when using %define lex_symbol.
1573 (yytranslate_): Declare inline.
1574
1575 2008-11-13 Akim Demaille <demaille@gostai.com>
1576
1577 Define the constructors of symbol_type in
1578 b4_symbol_constructor_definitions.
1579 The constructors are called by the make_symbol functions, which a
1580 forthcoming patch will move elsewhere. Hence the interest of
1581 putting them together.
1582
1583 The stack_symbol_type does not need to be moved, it is used only
1584 by the parser.
1585
1586 * data/lalr1.cc: Move symbol_type and symbol_base_type
1587 constructors into...
1588 (b4_symbol_constructor_definitions): here.
1589 Adjust.
1590
1591 2008-11-13 Akim Demaille <demaille@gostai.com>
1592
1593 Make it easier to move the definition of yytranslate_.
1594 Forthcoming changes will make it possible to use yytranslate_
1595 from outside the parser implementation file.
1596
1597 * data/lalr1.cc (b4_yytranslate_definition): New.
1598 Use it.
1599
1600 2008-11-13 Akim Demaille <demaille@gostai.com>
1601
1602 Remove useless class specification.
1603 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
1604 to refer to the class name to use a type defined by the class for
1605 arguments of member functions.
1606
1607 2008-11-13 Akim Demaille <demaille@gostai.com>
1608
1609 Finer input type for yytranslate.
1610 This patch is debatable: the tradition expects yylex to return an int
1611 which happens to correspond to token_number (which is an enum). This
1612 allows for instance to return characters (such as '*' etc.). But this
1613 goes against the stronger typing I am trying to have with the new
1614 lex interface which return a symbol_type. So in this case, feed
1615 yytranslate_ with a token_type.
1616
1617 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
1618 expect a token_type.
1619
1620 2008-11-13 Akim Demaille <demaille@gostai.com>
1621
1622 Honor lex-params in %define lex_symbol mode.
1623 * data/lalr1.cc: Use b4_lex_param.
1624
1625 2008-11-13 Akim Demaille <demaille@gostai.com>
1626
1627 Simplify names.
1628 * src/output.c (symbol_definitions_output): Rename symbol
1629 attributes type_name and has_type_name as type and has_type.
1630 * data/lalr1.cc: Adjust uses.
1631
1632 2008-11-13 Akim Demaille <demaille@gostai.com>
1633
1634 Use b4_type_names for the union type.
1635 The union used to compute the size of the variant used to iterate
1636 over the type of all the symbols, with a lot of redundancy. Now
1637 iterate over the lists of symbols having the same type-name.
1638
1639 * data/lalr1.cc (b4_char_sizeof_): New.
1640 (b4_char_sizeof): Use it.
1641 Adjust to be called with a list of numbers instead of a single
1642 number.
1643 Adjust its caller for new-line issues.
1644
1645 2008-11-13 Akim Demaille <demaille@gostai.com>
1646
1647 Define the "identifier" of a symbol.
1648 Symbols may have several string representations, for instance if
1649 they have an alias. What I call its "id" is a string that can be
1650 used as an identifier. May not exist.
1651
1652 Currently the symbols which have the "tag_is_id" flag set are
1653 those that don't have an alias. Look harder for the id.
1654
1655 * src/output.c (is_identifier): Move to...
1656 * src/symtab.c (is_identifier): here.
1657 * src/symtab.h, src/symtab.c (symbol_id_get): New.
1658 * src/output.c (symbol_definitions_output): Use it to define "id"
1659 and "has_id".
1660 Remove the definition of "tag_is_id".
1661 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
1662 "tag_is_id" were used to produce code.
1663 We still use "tag" for documentation.
1664
1665 2008-11-11 Akim Demaille <demaille@gostai.com>
1666
1667 Locations are no longer required by lalr1.cc.
1668 * data/lalr1.cc (_b4_args, b4_args): New.
1669 Adjust all uses of locations to make them optional.
1670 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
1671 (AT_CHECK_NAMESPACE): Check the use of locations.
1672 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
1673 without locations with lalr1.cc.
1674 Test these cases.
1675 * tests/output.at: Check lalr1.cc with and without location
1676 support.
1677 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
1678 Don't use locations.
1679
1680 2008-11-11 Akim Demaille <demaille@gostai.com>
1681
1682 AT_FULL_COMPILE.
1683 * tests/local.at (AT_FULL_COMPILE): New.
1684 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
1685
1686 2008-11-11 Akim Demaille <demaille@gostai.com>
1687
1688 Support parens in calc++.
1689 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
1690 * examples/calc++/test (run): Check the expected output.
1691 Adjust callers.
1692 Check parens too.
1693
1694 2008-11-11 Akim Demaille <demaille@gostai.com>
1695
1696 Simplify lalr1.cc since %defines is mandatory.
1697 * data/lalr1.cc: Remove useless calls to b4_defines_if.
1698
1699 2008-11-11 Akim Demaille <demaille@gostai.com>
1700
1701 TODO: yyfmt.
1702 * TODO (yysyntax_error): New item.
1703
1704 2008-11-11 Akim Demaille <demaille@gostai.com>
1705
1706 Prefer M4 to CPP.
1707 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
1708 YYERROR_VERBOSE.
1709
1710 2008-11-11 Akim Demaille <demaille@gostai.com>
1711
1712 Support i18n of the parse error messages.
1713 * TODO (lalr1.cc/I18n): Remove.
1714 * data/lalr1.cc (yysyntax_error_): Support the translation of the
1715 error messages, as done in yacc.c.
1716 Stay within the yy* pseudo namespace.
1717
1718 2008-11-11 Akim Demaille <demaille@gostai.com>
1719
1720 More TODO.
1721 * TODO (single stack, yysyntax_error): New.
1722
1723 2008-11-11 Akim Demaille <demaille@gostai.com>
1724
1725 Make it possible to return a symbol_type from yylex.
1726 * data/lalr1.cc (b4_lex_symbol_if): New.
1727 (parse): When lex_symbol is defined, expected yylex to return the
1728 complete lookahead.
1729 * etc/bench.pl.in (generate_grammar_list): Extend to support this
1730 yylex interface.
1731 (bench_variant_parser): Exercise it.
1732
1733 2008-11-11 Akim Demaille <demaille@gostai.com>
1734
1735 Remove useless bench case.
1736 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
1737 no longer used.
1738
1739 2008-11-11 Akim Demaille <demaille@gostai.com>
1740
1741 Improve display of directives.
1742 * etc/bench.pl.in (parse_term): Don't add useless eol.
1743
1744 2008-11-11 Akim Demaille <demaille@gostai.com>
1745
1746 Use string_cast in the bench.
1747 * etc/bench.pl.in (generate_grammar_list): Define and use
1748 string_cast.
1749
1750 2008-11-11 Akim Demaille <demaille@gostai.com>
1751
1752 Replace yychar with a Boolean.
1753 * data/lalr1.cc (parse::yychar): Replace by...
1754 (parse::yyempty): this.
1755
1756 2008-11-11 Akim Demaille <demaille@gostai.com>
1757
1758 Factor the tables.
1759 * TODO: New item.
1760
1761 2008-11-11 Akim Demaille <demaille@gostai.com>
1762
1763 Let yytranslate handle the eof case.
1764 * data/lalr1.cc (yytranslate_): Handle the EOF case.
1765 Adjust callers.
1766 No longer expect yychar to be equal to yyeof_, rather, test the
1767 lookahead's (translated) kind.
1768
1769 2008-11-11 Akim Demaille <demaille@gostai.com>
1770
1771 yychar cannot be empty in yyerrlab.
1772 * TODO (yychar == yyempty_): New.
1773 * data/lalr1.cc: Remove the handling of this case.
1774 This eases forthcoming changes related to yychar and yytranslate.
1775
1776 2008-11-11 Akim Demaille <demaille@gostai.com>
1777
1778 Bench: syntactic sugar for %define/#define.
1779 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
1780 (&bench_push_parser, bench_variant_parser): Use this feature.
1781 (&eat): New.
1782 Use it.
1783
1784 2008-11-11 Akim Demaille <demaille@gostai.com>
1785
1786 Less memory pressure on the "list" bench.
1787 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
1788 the values, to limit memory pressure.
1789
1790 2008-11-11 Akim Demaille <demaille@gostai.com>
1791
1792 Introduce make_symbol.
1793 make_symbol provides a means to construct a full symbol (kind,
1794 value, location) in a single shot. It is meant to be a Symbol
1795 constructor, parameterized by the symbol kind so that overloading
1796 would prevent incorrect kind/value pairs. Unfortunately
1797 parameterized constructors do not work well in C++ (unless the
1798 parameter also appears as an argument, which is not acceptable),
1799 hence the use of a function instead of a constructor.
1800
1801 * data/lalr1.cc (b4_symbol_constructor_declaration_)
1802 (b4_symbol_constructor_declarations)
1803 (b4_symbol_constructor_specialization_)
1804 (b4_symbol_constructor_specializations)
1805 (b4_symbol_constructor_definition_)
1806 (b4_symbol_constructor_definitions): New.
1807 Use them where appropriate to generate declaration, declaration of
1808 the specializations, and implementations of the templated
1809 overloaded function "make_symbol".
1810 (variant::variant): Always define a default ctor.
1811 Also provide a copy ctor.
1812 (symbol_base_type, symbol_type): New ctor overloads for value-less
1813 symbols.
1814 (symbol_type): Now public, so that functions such as yylex can use
1815 it.
1816
1817 2008-11-11 Akim Demaille <demaille@gostai.com>
1818
1819 Inform m4 whether a tag is a valid id.
1820 * src/output.c (is_identifier): New.
1821 (symbol_definitions_output): Use it to define tag_is_id.
1822 But maybe this should be done at m4 level?
1823
1824 2008-11-11 Akim Demaille <demaille@gostai.com>
1825
1826 Test 214 was failing: it greps with a pattern containing [ ]*
1827 which obviously meant to catch spaces and tabs, but contained only
1828 spaces. Tabulations in sources are a nuisance, so to simplify the
1829 matter, get rid of all the tabulations in the Java sources. The
1830 other skeletons will be treated equally later.
1831
1832 * data/java.m4, data/lalr1.java: Untabify.
1833 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
1834 tabulations are no longer generated.
1835
1836 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
1837
1838 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
1839 * configure.ac: Adjust usage.
1840 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1841 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1842 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
1843
1844 2008-11-10 Di-an Jan <dianj@freeshell.org>
1845
1846 Workaround Java's ``code too large'' problem for parser tables
1847 in most cases, by using one function per initialization.
1848 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
1849 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
1850 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
1851 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
1852 (yytname_): Use b4_typed_parser_table.
1853 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
1854 ``code too large'' error.
1855
1856 2008-11-10 Di-an Jan <dianj@freeshell.org>
1857
1858 * NEWS: Document them.
1859
1860 General Java skeleton improvements.
1861 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
1862 using gcj < 4.3 in the testsuite, according to comments in
1863 gnulib/m4/javacomp.m4.
1864 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
1865 location_type, position_type): Remove extraneous brackets from
1866 b4_percent_define_default.
1867 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
1868 m4_define and m4_define_default.
1869 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
1870 which marks the end of user code with appropriate syncline, like all
1871 the other skeletons.
1872 (b4_user_post_prologue): Add. Don't silently drop.
1873 (yylex): Remove.
1874 (parse): Inline yylex.
1875 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
1876 (%{...%}): Fix typo of %code imports.
1877 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
1878
1879 Support annotations on parser class with %define annotations.
1880 * data/lalr1.java (annotations): Add to parser class modifier.
1881 * doc/bison.texinfo (Java Parser Interface): Document
1882 %define annotations.
1883 (Java Declarations Summary): Document %define annotations.
1884 * tests/java.at (Java parser class modifiers): Test annotations.
1885
1886 Do not generate code for %error-verbose unless requested.
1887 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
1888 Make private. Make conditional on %error-verbose.
1889 (getErrorVerbose, setErrorVerbose): New.
1890 (yytnamerr_): Make conditional on %error-verbose.
1891 (yysyntax_error): Make some code conditional on %error-verbose.
1892 * doc/bison.texinfo (Java Bison Interface): Remove the parts
1893 about %error-verbose having no effect.
1894 (getErrorVerbose, setErrorVerbose): Document.
1895
1896 Move constants for token names to Lexer interface.
1897 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
1898 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
1899 (parse): Qualify EOF to Lexer.EOF.
1900 * doc/bison.texinfo (Java Parser Interface): Move documentation of
1901 EOF and token names to Java Lexer Interface.
1902 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
1903
1904 Make yyerror public.
1905 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
1906 (yyerror): Change to public. Add Javadoc comments. Use longer
1907 parameter names. Make the body rather than the declarator
1908 conditional on %locations.
1909 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
1910
1911 Allow user to add code to the constructor with %code init.
1912 * data/java.m4 (b4_init_throws): New, for %define init_throws.
1913 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
1914 Add %code init to the front of the constructor body.
1915 * doc/bison.texinfo (YYParser.YYParser): Document %code init
1916 and %define init_throws.
1917 (Java Declarations Summary): Document %code init and
1918 %define init_throws.
1919 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
1920 (Java constructor init and init_throws): Add tests.
1921
1922 2008-11-10 Akim Demaille <demaille@gostai.com>
1923
1924 Update TODO.
1925 * TODO (-D): is implemented.
1926 (associativity): Same precedence must have the same associativity.
1927 For instance, how can a * b / c be parsed if * is %left and / is
1928 %right?
1929 (YYERRORCODE, YYFAIL, YYBACKUP): New.
1930
1931 2008-11-10 Akim Demaille <demaille@gostai.com>
1932
1933 Formatting changes.
1934
1935 2008-11-10 Akim Demaille <demaille@gostai.com>
1936
1937 More information about the symbols.
1938 * src/output.c (type_names_output): Document all the symbols,
1939 including those that don't have a type-name.
1940 (symbol_definitions_output): Define "is_token" and
1941 "has_type_name".
1942 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
1943 type-name, now that they are defined too in b4_type_names.
1944
1945 2008-11-10 Akim Demaille <demaille@gostai.com>
1946
1947 Regen.
1948
1949 2008-11-10 Akim Demaille <demaille@gostai.com>
1950
1951 Make parser::yytranslate static.
1952 Small speedup (1%) on the list grammar. And makes yytranslate_
1953 available in non member functions.
1954
1955 * data/lalr1.cc (yytranslate_): Does not need to be a instance
1956 function.
1957
1958 2008-11-10 Akim Demaille <demaille@gostai.com>
1959
1960 Avoid trailing spaces.
1961 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
1962 * data/lalr1.cc: Don't indent before rule and symbol actions, as
1963 they can be empty, and anyway this incorrectly indents the first
1964 action.
1965
1966 2008-11-10 Akim Demaille <demaille@gostai.com>
1967
1968 Comment changes.
1969
1970 2008-11-10 Akim Demaille <demaille@gostai.com>
1971
1972 Use "enum" for integral constants.
1973 This is just nicer to read, I observed no speedup.
1974
1975 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
1976 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
1977 (yyuser_token_number_max_, yyundef_token_): Move into...
1978 (yytranslate_): here.
1979
1980 2008-11-10 Akim Demaille <demaille@gostai.com>
1981
1982 Shortcuts in bench directives.
1983 * etc/bench.pl.in (parse_dirs): New.
1984 Use it.
1985 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
1986 Create the benches in "benches/".
1987
1988 2008-11-10 Akim Demaille <demaille@gostai.com>
1989
1990 Formatting changes.
1991 * data/lalr1.cc: here.
1992
1993 2008-11-10 Akim Demaille <demaille@gostai.com>
1994
1995 Adjust verbose message to using emacs.
1996 * etc/bench.pl.in: Inform compilation-mode when we change the
1997 directory.
1998 (generate_grammar_list): Recognize %define "variant" in addition
1999 to %define variant.
2000
2001 2008-11-10 Akim Demaille <demaille@gostai.com>
2002
2003 Classify symbols by type-name.
2004 * src/uniqstr.h (UNIQSTR_CMP): New.
2005 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
2006 (type_names_output): New.
2007 (muscles_output): Use it.
2008 * data/lalr1.cc (b4_symbol_action_): Remove.
2009 (b4_symbol_case_, b4_type_action_): New.
2010 Adjust uses of b4_symbol_action_ to use b4_type_action_.
2011
2012 2008-11-10 Akim Demaille <demaille@gostai.com>
2013
2014 Change the handling of the symbols in the skeletons.
2015 Before we were using tables which lines were the symbols and which
2016 columns were things like number, tag, type-name etc. It is was
2017 difficult to extend: each time a column was added, all the numbers had
2018 to be updated (you asked for colon $2, not for "tag"). Also, it was
2019 hard to filter these tables when only a subset of the symbols (say the
2020 tokens, or the nterms, or the tokens that have and external number
2021 *and* a type-name) was of interest.
2022
2023 Now instead of monolithic tables, we define one macro per cell. For
2024 instance "b4_symbol(0, tag)" is a macro name which contents is
2025 self-decriptive. The macro "b4_symbol" provides easier access to
2026 these cells.
2027
2028 * src/output.c (type_names_output): Remove.
2029 (symbol_numbers_output, symbol_definitions_output): New.
2030 (muscles_output): Call them.
2031 (prepare_symbols): Define b4_symbols_number.
2032
2033 2008-11-10 Akim Demaille <demaille@gostai.com>
2034
2035 --trace=muscles
2036 * src/getargs.h, src/getargs.c (trace_muscle): New.
2037 (trace_types, trace_args): Support it.
2038 * src/output.c (output_skeleton): Use it.
2039
2040 2008-11-10 Akim Demaille <demaille@gostai.com>
2041
2042 muscles_output.
2043 * src/output.c (muscles_output): New, extracted from...
2044 (output_skeleton): here.
2045 Adjust.
2046
2047 2008-11-10 Akim Demaille <demaille@gostai.com>
2048
2049 Formatting changes.
2050
2051 2008-11-10 Akim Demaille <demaille@gostai.com>
2052
2053 Update the variant example.
2054 * examples/variant.yy: Formatting changes.
2055 One stage build.
2056
2057 2008-11-10 Akim Demaille <demaille@gostai.com>
2058
2059 Support constructor with an argument.
2060 This improves the "list" bench by 2%.
2061
2062 * data/lalr1.cc (variant::build): Add an overloaded version with
2063 an argument.
2064 * tests/c++.at (AT_CHECK_VARIANT): Check it.
2065
2066 2008-11-10 Akim Demaille <demaille@gostai.com>
2067
2068 Test variants.
2069 * tests/c++.at (AT_CHECK_VARIANTS): New.
2070 Use it with and without %define assert.
2071
2072 2008-11-10 Akim Demaille <demaille@gostai.com>
2073
2074 Add %precedence support.
2075 Unfortunately it is not possible to reuse the %prec directive. This
2076 is because to please POSIX, we do not require to end the rules with a
2077 semicolon. As a result,
2078
2079 foo: bar %prec baz
2080
2081 is ambiguous: either a rule which precedence is that of baz, or a rule,
2082 and then a declaration of the precedence of the token baz.
2083
2084 * doc/bison.texinfo: Document %precedence.
2085 (Precedence Only): New.
2086 * src/assoc.h, src/assoc.c (precedence_assoc): New.
2087 * src/conflicts.c (resolve_sr_conflict): Support it.
2088 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
2089 Parse it.
2090 * tests/calc.at: Use %precedence for NEG.
2091 * tests/conflicts.at (%precedence does not suffice)
2092 (%precedence suffices): New tests.
2093
2094 2008-11-09 Akim Demaille <demaille@gostai.com>
2095
2096 Make benches in a sub dirs.
2097 * etc/bench.pl.in ($dir): New.
2098 Use it.
2099 Check the use of constructors with an argument.
2100 (bench_variant_parser): Fix.
2101
2102 2008-11-09 Akim Demaille <demaille@gostai.com>
2103
2104 fix eof condition
2105
2106 2008-11-09 Akim Demaille <demaille@gostai.com>
2107
2108 Fix --help.
2109
2110 2008-11-09 Akim Demaille <demaille@gostai.com>
2111
2112 Require the generation of parse-gram.output.
2113 * src/Makefile.am (YACC): Pass --report=all.
2114
2115 2008-11-09 Akim Demaille <demaille@gostai.com>
2116
2117 Formatting changes.
2118
2119 2008-11-09 Akim Demaille <demaille@gostai.com>
2120
2121 Update TODO.
2122 * TODO: Remove obsolete items.
2123 Update others.
2124
2125 2008-11-09 Akim Demaille <demaille@gostai.com>
2126
2127 Enhance bench.pl.
2128 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
2129 (@token, $grammar, $bench): New.
2130 (generate_grammar_variant): Rename as...
2131 (generate_grammar_list): this.
2132 (generate_grammar): Adjust.
2133 (bench_grammar): Rename as...
2134 (bench): this.
2135 Use it in the various bench-marking routines.
2136 (-b, -g): New options.
2137
2138 2008-11-09 Akim Demaille <demaille@gostai.com>
2139
2140 Use a static hierarchy for symbols in the C++ parser.
2141 * data/lalr1.cc (symbol_base_type, symbol_type)
2142 (stack_symbol_type): Make it a static hierarchy.
2143 Adjust dependencies.
2144
2145 2008-11-09 Akim Demaille <demaille@gostai.com>
2146
2147 bench.pl -d, --directive.
2148 * etc/bench.pl.in (@directive): New.
2149 (&bench_grammar): Use it.
2150 (&bench_list_grammar): New, to provide access to the "variant"
2151 grammar.
2152 Use it.
2153 (getopts): Support -d, --directive.
2154
2155 2008-11-09 Akim Demaille <demaille@gostai.com>
2156
2157 Use inline for small operations.
2158 * data/lalr1.cc (symbol_base_type, symbol_type)
2159 (stack_symbol_type): Declare constructor and other operations as
2160 inline.
2161 (yy_destroy_): Inline.
2162
2163 2008-11-09 Akim Demaille <demaille@gostai.com>
2164
2165 Introduce a hierarchy for symbols.
2166 * data/lalr1.cc (symbol_base_type, symbol_type): New.
2167 (data_type): Rename as...
2168 (stack_symbol_type): this.
2169 Derive from symbol_base_type.
2170 (yy_symbol_value_print_): Merge into...
2171 (yy_symbol_print_): this.
2172 Rename as...
2173 (yy_print_): this.
2174 (yydestruct_): Rename as...
2175 (yy_destroy_): this.
2176 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
2177 (parser::parse): yyla is now of symbol_type.
2178 Use its type member instead of yytoken.
2179
2180 2008-11-09 Akim Demaille <demaille@gostai.com>
2181
2182 Rename data_type and stack_symbol_type.
2183 * data/lalr1.cc (data_type): Rename as...
2184 (stack_symbol_type): this.
2185
2186 2008-11-09 Akim Demaille <demaille@gostai.com>
2187
2188 Handle semantic value and location together.
2189 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
2190 yydata.value and yydata.location.
2191 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
2192 (YY_SYMBOL_PRINT): Now take semantic value and location as a
2193 single arg.
2194 Adjust all callers.
2195 (yydestruct_): New overload for a stack symbol.
2196
2197 2008-11-09 Akim Demaille <demaille@gostai.com>
2198
2199 Push a complete symbol, not connected parts.
2200 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
2201 state, value and location.
2202 Adjust callers.
2203
2204 2008-11-09 Akim Demaille <demaille@gostai.com>
2205
2206 Agregate yylval and yylloc.
2207 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
2208 (parser::yyla): this.
2209
2210 2008-11-09 Akim Demaille <demaille@gostai.com>
2211
2212 Rely on the state stack to display reduction traces.
2213 To display rhs symbols before a reduction, we used information
2214 about the rule reduced, which required the tables yyrhs and
2215 yyprhs. Now use rely only on the state stack to get the same
2216 information.
2217
2218 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
2219 Use them.
2220 (parser::yyrhs_, parser::yyprhs_): Remove.
2221 (parser::yy_reduce_print_): Use the state stack.
2222
2223 2008-11-09 Akim Demaille <demaille@gostai.com>
2224
2225 Fuse yyval and yyloc into yylhs.
2226 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
2227 yylhs.
2228 (parse): Replace yyval and yyloc with yylhs.value and
2229 yylhs.location.
2230 After a user action, compute yylhs.state earlier.
2231 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
2232 fresh error_token.
2233
2234 2008-11-09 Di-an Jan <dianj@freeshell.org>
2235
2236 Remove unused variable.
2237 * src/output.c (type_names_output): Remove unused variable sep.
2238
2239 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
2240
2241 Change tests/output.at quoting.
2242 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
2243 expanding arguments.
2244
2245 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2246
2247 Don't add a semicolon to actions for %skeleton or %language.
2248 It breaks Java test cases as reported by Akim Demaille.
2249 * src/scan-code.l: Implement.
2250
2251 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2252
2253 Clean up %skeleton and %language priority implementation.
2254 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
2255 remove static qualifier because others will soon need to see it.
2256 (language_prio): Likewise.
2257 (getargs): Use command_line_prio rather than 0.
2258 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
2259 enum fields.
2260 (skeleton_prio): Extern it.
2261 (language_prio): Extern it.
2262 * src/parse-gram.y: Use grammar_prio rather than 1.
2263
2264 2008-11-07 Akim Demaille <demaille@gostai.com>
2265
2266 Moving push traces into yypush_.
2267 * data/lalr1.cc (yypush_): Now takes a optional trace message.
2268 Adjust all uses.
2269
2270 2008-11-07 Akim Demaille <demaille@gostai.com>
2271
2272 The single-stack C++ parser is now the standard one.
2273 * data/lalr1.cc: Rename as...
2274 * data/lalr1-split.cc: this.
2275 * data/lalr1-fusion.cc: Rename as...
2276 * data/lalr1.cc: this.
2277 * etc/bench.pl.in: Adjust.
2278
2279 2008-11-07 Akim Demaille <demaille@gostai.com>
2280
2281 Avoid empty-if warnings.
2282 Reported by Quentin Hocquet.
2283
2284 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
2285 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
2286
2287 2008-11-07 Akim Demaille <demaille@gostai.com>
2288
2289 Pass command line location to skeleton_arg and language_argmatch.
2290 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
2291 The location argument is now mandatory.
2292 Adjust all dependencies.
2293 (getargs): Use command_line_location.
2294
2295 2008-11-07 Akim Demaille <demaille@gostai.com>
2296
2297 -D, --define.
2298 * src/getargs.c (usage): Document -D.
2299 Fix help string for --locations.
2300 (command_line_location): New.
2301 (short_options, long_options, getargs): Support -D, --define.
2302 (getargs): Move -d support at the right place.
2303 * doc/bison.texinfo (Bison Options): Update.
2304 * tests/input.at (%define, --define): New.
2305
2306 2008-11-07 Akim Demaille <demaille@gostai.com>
2307
2308 Initialize the muscle table before parsing the command line.
2309 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
2310 (getargs): Define file_name.
2311 * src/main.c (main): Initialize muscle_tab before calling
2312 getargs.
2313 * src/muscle_tab.c (muscle_init): No longer define file_name, as
2314 its value is not available yet.
2315
2316 2008-11-07 Akim Demaille <demaille@gostai.com>
2317
2318 Locations without columns for command line arguments.
2319 * src/location.c (location_print): Don't display negative columns.
2320 * src/location.h: Document this.
2321
2322 2008-11-07 Akim Demaille <demaille@gostai.com>
2323
2324 Fix --help.
2325 * src/getargs.c (usage): Fix help string for -W.
2326
2327 2008-11-07 Akim Demaille <demaille@gostai.com>
2328
2329 Handle more general types of option arguments.
2330 * build-aux/cross-options.pl: The argument ends at the first
2331 space, not the first non-symbol character.
2332 Use @var for each word appearing the argument description.
2333
2334 2008-11-07 Akim Demaille <demaille@gostai.com>
2335
2336 Destroy the variants that remain on the stack in case of error.
2337 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
2338 destructor.
2339 Display the value only if yymsg is nonnull.
2340 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
2341
2342 2008-11-07 Akim Demaille <demaille@gostai.com>
2343
2344 Add "%define assert" to variants.
2345 This is used to help the user catch cases where some value gets
2346 ovewritten by a new one. This should not happen, as this will
2347 probably leak.
2348
2349 Unfortunately this uncovered a bug in the C++ parser itself: the
2350 lookahead value was not destroyed between two calls to yylex. For
2351 instance if the previous lookahead was a std::string, and then an int,
2352 then the value of the std::string was correctly taken (i.e., the
2353 lookahead was now an empty string), but std::string structure itself
2354 was not reclaimed.
2355
2356 This is now done in variant::build(other&) (which is used to take the
2357 value of the lookahead): other is not only stolen from its value, it
2358 is also destroyed. This incurs a new performance penalty of a few
2359 percent, and union becomes faster again.
2360
2361 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
2362 (b4_variant_if): New.
2363 (variant::built): New.
2364 Use it whereever the status of the variant changes.
2365 * etc/bench.pl.in: Check the penalty of %define assert.
2366
2367 2008-11-07 Akim Demaille <demaille@gostai.com>
2368
2369 Use "%define variant" in bench.pl.
2370 * etc/bench.pl.in: No longer use the pseudo directive %variants,
2371 just use %define variants.
2372
2373 2008-11-07 Akim Demaille <demaille@gostai.com>
2374
2375 Regen.
2376 * src/parse-gram.h, src/parse-gram.c: Regen.
2377
2378 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
2379
2380 Fix user actions without a trailing semicolon.
2381 Reported by Sergei Steshenko at
2382 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
2383 * THANKS (Sergei Steshenko): Add.
2384 * src/scan-code.l (SC_RULE_ACTION): Fix it.
2385 * tests/regression.at (Fix user actions without a trailing semicolon):
2386 New test case.
2387
2388 2008-11-04 Akim Demaille <demaille@gostai.com>
2389
2390 Use b4_copyright_years.
2391 * data/yacc.c (b4_copyright_years): New.
2392 Fix its value according to the comments in the file.
2393 Use it and undefine it.
2394
2395 2008-11-04 Akim Demaille <demaille@gostai.com>
2396
2397 Formatting changes.
2398 * data/lalr1-fusion.cc, src/parse-gram.y: here.
2399
2400 2008-11-04 Akim Demaille <demaille@gostai.com>
2401
2402 Formatting changes.
2403 * data/lalr1-fusion.cc: here.
2404
2405 2008-11-04 Akim Demaille <demaille@gostai.com>
2406
2407 Use strict on bench.pl.
2408 * etc/bench.pl.in (&run, &generate_grammar): New.
2409 Rename the grammar generating functions for consistency.
2410 Change the interface so that the list of benches to run is passed
2411 as (optionless) arguments.
2412 (&compile): Use &run.
2413
2414 2008-11-04 Akim Demaille <demaille@gostai.com>
2415
2416 Remove spurious initial empty lines.
2417 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
2418 * data/yacc.c: End the @output lines with an @.
2419
2420 2008-11-04 Akim Demaille <demaille@gostai.com>
2421
2422 Improve the display of sizes.
2423 * etc/bench.p.in: Higher precision.
2424 Sort by decreasing size.
2425
2426 2008-11-04 Akim Demaille <demaille@gostai.com>
2427
2428 Don't memcpy C++ structures.
2429 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
2430 arguments.
2431 (variant::build): New overload for
2432 copy-construction-that-destroys.
2433 (variant::swap): New.
2434 (parser::yypush_): Use it in variant mode.
2435
2436 2008-11-04 Akim Demaille <demaille@gostai.com>
2437
2438 Better defaults for bench.pl.
2439 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
2440 default values.
2441 Adjust &verbose uses.
2442 (-q, --quiet): New.
2443
2444 2008-11-04 Akim Demaille <demaille@gostai.com>
2445
2446 Make variant.yy more complex.
2447 std::list cannot be copied via memcpy, they are more demanding than
2448 std::string. Use one std::list to strengthen the test.
2449
2450 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
2451 Adjust.
2452 Create a list of strings, instead of a single large string.
2453
2454 2008-11-04 Akim Demaille <demaille@gostai.com>
2455
2456 bench.pl --bench.
2457 * etc/bench.pl.in (--bench, $bench): New.
2458
2459 2008-11-04 Akim Demaille <demaille@gostai.com>
2460
2461 Sort methods.
2462 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
2463 Define it after as().
2464
2465 2008-11-04 Akim Demaille <demaille@gostai.com>
2466
2467 Useless parens.
2468 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
2469
2470 2008-11-04 Akim Demaille <demaille@gostai.com>
2471
2472 Issue missing synclines after user actions.
2473 * data/c.m4 (b4_case): Issue synclines on the output file.
2474
2475 2008-11-04 Akim Demaille <demaille@gostai.com>
2476
2477 Remove trailing empty line.
2478 * data/lalr1-fusion.cc: Don't add an empty line after the user's
2479 epilogue.
2480
2481 2008-11-04 Akim Demaille <demaille@gostai.com>
2482
2483 Fix output of copyright years.
2484 * data/bison.m4 (b4_copyright): Fix the indentation of the
2485 copyright year paragraph.
2486 Use b4_copyright_years when no years are given.
2487 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
2488 (b4_copyright_years): New.
2489 Use it.
2490
2491 2008-11-04 Akim Demaille <demaille@gostai.com>
2492
2493 Avoid the spurious initial empty line.
2494 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
2495 the end of @output request to suppress the empty line that
2496 results.
2497
2498 2008-11-04 Akim Demaille <demaille@gostai.com>
2499
2500 Remove parser::rhs_number_type.
2501 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
2502 (yyrhs_): Use b4_table_define.
2503
2504 2008-11-04 Akim Demaille <demaille@gostai.com>
2505
2506 Fix iteration type.
2507 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
2508
2509 2008-11-04 Akim Demaille <demaille@gostai.com>
2510
2511 Factor the declaration of the integer tables.
2512 * data/lalr1-fusion.cc (b4_table_define): New.
2513 Use it.
2514
2515 2008-11-03 Akim Demaille <demaille@gostai.com>
2516
2517 Fix indentation of tables in lalr1.cc
2518 * data/lalr1-fusion.cc: Fix the indentation.
2519
2520 2008-11-03 Akim Demaille <demaille@gostai.com>
2521
2522 Destroy the lhs symbols after reduction.
2523 * data/lalr1-fusion.cc (parse): After the user action, when in
2524 variant mode, destroy the lhs symbols.
2525
2526 2008-11-03 Akim Demaille <demaille@gostai.com>
2527
2528 Simplify yysyntax_error_ use.
2529 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
2530 type, but make it unnamed in the declaration when it is not used.
2531
2532 2008-11-03 Akim Demaille <demaille@gostai.com>
2533
2534 Let yy::variant::build return an lvalue.
2535 * data/lalr1-fusion.cc (variant::build): Return a reference to the
2536 object.
2537
2538 2008-11-03 Akim Demaille <demaille@gostai.com>
2539
2540 Define yy::variant only when needed.
2541 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
2542 used.
2543
2544 2008-11-03 Akim Demaille <demaille@gostai.com>
2545
2546 Bench the three-stack lalr1.cc.
2547 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
2548 one-stack one.
2549
2550 2008-11-03 Akim Demaille <demaille@gostai.com>
2551
2552 Fail on parse error in calc++.
2553 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
2554 status.
2555 * examples/calc++/test ($me, $number, $exit, run): New.
2556 Use them to propagate errors to the exit status.
2557
2558 2008-11-03 Akim Demaille <demaille@gostai.com>
2559
2560 Don't specify the skeleton twice in the example.
2561 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
2562 file does what is needed.
2563
2564 2008-11-03 Akim Demaille <demaille@gostai.com>
2565
2566 bench: Improve output.
2567 * etc/bench.pl.in (bench_grammar): Tune the printf format.
2568
2569 2008-11-03 Akim Demaille <demaille@gostai.com>
2570
2571 bench: check impact of %debug on variants.
2572 * etc/bench.pl.in (variant_grammar): Fix the computation of
2573 $variant.
2574 Generate a grammar file that can work with or without %debug.
2575 Do use the @directive.
2576 (bench_variant_parser): Check impact of %debug.
2577 (@directives): Rename all the occurrences to...
2578 (@directive): this, for consistency.
2579
2580 2008-11-03 Akim Demaille <demaille@gostai.com>
2581
2582 bench: report the size too.
2583 * etc/bench.pl.in ($iterations): Defaults to -3.
2584 (&bench_grammar): Require hireswallclock.
2585 Compute and display the size of the result.
2586 More comments.
2587
2588 2008-11-03 Akim Demaille <demaille@gostai.com>
2589
2590 bench: More use of the verbosity level.
2591 * etc/bench.pl.in ($verbose, &verbose): New.
2592 Use them.
2593 More POD documentation.
2594
2595 2008-11-03 Akim Demaille <demaille@gostai.com>
2596
2597 bench.pl: a command line interface
2598 * etc/bench.pl.in: More doc.
2599 Some fixes in the documentation.
2600 ($cflags, $iterations, &help, &getopt): New.
2601 Use them.
2602 (&variant_grammar): Let the number of stages be 10 times what is
2603 specified.
2604
2605 2008-11-03 Akim Demaille <demaille@gostai.com>
2606
2607 Bench the use of Boost.Variants.
2608 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
2609 New.
2610 (&compile): Be ready to compile C++ parsers.
2611 (&bench_push_parser): Move debug information to the outermost
2612 level.
2613 * THANKS: Add Michiel De Wilde.
2614
2615 2008-11-03 Akim Demaille <demaille@gostai.com>
2616
2617 bench.pl: Pass directives as a list instead of as a string.
2618 * etc/bench.pl.in (&directives): New.
2619 (&triangular_grammar, &calc_grammar): Use it to format the Bison
2620 directives.
2621 (&triangular_grammar): Do use the directives (were ignored).
2622 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
2623 directives.
2624
2625 2008-11-03 Akim Demaille <demaille@gostai.com>
2626
2627 Improve genericity of bench.pl.
2628 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
2629 argument.
2630 (&bench_push_parser): New.
2631 Call it.
2632
2633 2008-11-03 Akim Demaille <demaille@gostai.com>
2634
2635 Add documentation to bench.pl.
2636 * etc/bench.pl.in: Comment changes.
2637
2638 2008-11-03 Akim Demaille <demaille@gostai.com>
2639
2640 Fuse the three stacks into a single one.
2641
2642 In order to make it easy to perform benchmarks to ensure that
2643 there are no performance loss, lalr1.cc is forked into
2644 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
2645 lalr1.cc.
2646
2647 Meanwhile, to make sure that lalr1-fusion.cc is correctly
2648 exercized by the test suite, the user must install a symbolic link
2649 from lalr1.cc to it.
2650
2651 Instead of having three stacks (state, value, location), use a
2652 stack of triples. This considerably simplifies the code (and it
2653 will be easier not to require locations as currently does the C++
2654 parser), and also gives a 10% speedup according to
2655 etc/bench (probably mainly since memory allocation is done once
2656 instead of three times).
2657
2658 Another motivation is to make it easier to destruct properly
2659 semantic values: now that they are bound to their state (hence
2660 symbol type) it will be easier to call the appropriate destructor.
2661
2662 These changes should probably benefit the C parser too.
2663
2664 * data/lalr1.cc: Copy as...
2665 * data/lalr1-fusion.cc: this new file.
2666 (b4_rhs_value, b4_rhs_location): New definitions overriding those
2667 from c++.m4.
2668 (state_stack_type, semantic_stack_type, location_stack_type)
2669 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
2670 (data_type, stack_type, yystack_): New.
2671 (YYLLOC_DEFAULT, yypush_): Adjust.
2672 (yyerror_range): Now based on data_type, not location_type.
2673
2674 2008-11-03 Akim Demaille <demaille@gostai.com>
2675
2676 Push the state, value, and location at the same time.
2677 This is needed to prepare a forthcoming patch that fuses the three
2678 stacks into one.
2679
2680 * data/lalr1.cc (parser::yypush_): New.
2681 (parser::yynewstate): Change the semantics: instead of arriving to
2682 this label when value and location have been pushed, but yystate
2683 is to be pushed on the state stack, now the three of them must
2684 have been pushed before. yystate still must be the new state.
2685 This allows to use yypush_ everywhere instead of individual
2686 handling of the stacks.
2687
2688 2008-11-03 Akim Demaille <demaille@gostai.com>
2689
2690 Prefer references to pointers.
2691 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
2692 definition to use references instead of pointers.
2693 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
2694 Take the value and location as references.
2695 Adjust callers.
2696
2697 2008-11-03 Akim Demaille <demaille@gostai.com>
2698
2699 stack::size instead of stack::height.
2700 * data/lalr1.cc (stack::height): Rename as...
2701 (stack::size): this.
2702 Fix the output type.
2703 Comment changes.
2704
2705 2008-11-03 Akim Demaille <demaille@gostai.com>
2706
2707 Use variants to support objects as semantic values.
2708 This patch was inspired by work by Michiel De Wilde. But he used
2709 Boost variants which (i) requires Boost on the user side, (ii) is
2710 slow, and (iii) has useless overhead (the parser knows the type of
2711 the semantic value there is no reason to duplicate this
2712 information as Boost.Variants do).
2713
2714 This implementation reserves a buffer large enough to store the
2715 largest objects. yy::variant implements this buffer. It was
2716 implemented with Quentin Hocquet.
2717
2718 * src/output.c (type_names_output): New.
2719 (output_skeleton): Invoke it.
2720 * data/c++.m4 (b4_variant_if): New.
2721 (b4_symbol_value): If needed, provide a definition for variants.
2722 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
2723 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
2724 (b4_char_sizeof, yy::variant): New.
2725 (parser::parse): If variants are requested, define
2726 parser::union_type, parser::variant, change the definition of
2727 semantic_type, construct $$ before running the user action instead
2728 of performing a default $$ = $1.
2729 * examples/variant.yy: New.
2730 Based on an example by Michiel De Wilde.
2731
2732 2008-11-03 Akim Demaille <demaille@gostai.com>
2733
2734 Parameterize the extraction of semantic values.
2735 To make future changes easier, no longer rely on ".TYPE" being the
2736 way to get a semantic value.
2737
2738 * data/c.m4 (b4_symbol_value): New.
2739 Use it.
2740 * data/c++.m4, data/yacc.c: Use it.
2741 * data/glr.c: Use b4_symbol_value.
2742 (b4_rhs_data): New.
2743 Use it.
2744
2745 2008-11-03 Akim Demaille <demaille@gostai.com>
2746
2747 Prepare easier M4 changes.
2748 * data/lalr1.cc: Use escaped [] instead of literals to prepare
2749 future changes.
2750
2751 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2752
2753 Initiate further development.
2754 * NEWS: Create an empty section for new entries.
2755 * gnulib: Update submodule to HEAD.
2756
2757 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2758
2759 * NEWS: Version 2.4.
2760
2761 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2762
2763 Prepare for next release.
2764 * NEWS: Briefly mention changes since 2.3b.
2765 * README: Say GNU m4 1.4.6, which we've been requiring in release
2766 announcements already, not 1.4.3, which breaks the build.
2767
2768 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2769
2770 Say %language is experimental.
2771 We're thinking of extending it's effect on output file naming. See the
2772 thread at
2773 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
2774 * NEWS: Say it's experimental.
2775 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
2776 recommend it over %skeleton for now.
2777 (Bison Options): Likewise.
2778 (C++ Bison Interface): Use %skeleton not %language.
2779 (Calc++ Parser): Use %skeleton not %language.
2780 * src/getargs.c (usage): Say it's experimental.
2781
2782 2008-11-01 Di-an Jan <dianj@freeshell.org>
2783 Paolo Bonzini <bonzini@gnu.org>
2784
2785 Support all Java parser class modifiers.
2786 * data/java.m4 (b4_percent_define_get3): New.
2787 (b4_final_if, b4_strictfp_if): New.
2788 * data/lalr1.java (final, strictfp, extends, implements): Support.
2789 * doc/bison.texinfo (final, strictfp, extends, implements): Add
2790 documentation.
2791 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
2792 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
2793 (AT_CHECK_JAVA_GREP): New.
2794 (Java parser class modifiers): New test.
2795 (Java parser class extends and implements): New test.
2796
2797 Model exception propagation better with throws and lex_throws.
2798 * data/java.m4 (b4_list2): New.
2799 (throws): Change default.
2800 * data/lalr1.java (yyaction): Add throws.
2801 (parse): Add lex_throws in addition to throws.
2802 * doc/bison.texinfo (throws, lex_throws): Add documentation.
2803 * tests/java.at (Java throws specifications): New test.
2804
2805 Improve documentation for Java parsers.
2806 * doc/bison.texinfo (Java Parsers): Add subsections.
2807 Don't quote first argument of %define.
2808 (Java Bison Interface): Document output files. Move documentation
2809 of parser class and merge into Java Parser Interface. Document
2810 features that error out. Document directives with no effect.
2811 Move note about Javadoc higher.
2812 (Java Semantic Values): Explicitly mention stype.
2813 Document that generic types cannot be used.
2814 (Java Location Values): Use @deftypeivar. Document constructors.
2815 Correct return value for toString.
2816 (Java Parser Interface): List undocumented constants/fields.
2817 Move documentation of fields added by %parse-param closer to list
2818 of members. Document that token names are added as fields.
2819 Document constructors accurately. Remove error method.
2820 (Java Scanner Interface): Move note on %pure-parser to Java Bison
2821 Interface. Describe %code lexer and yylex accutately.
2822 Remove documentation that does not match the code.
2823 (Java Action Features): New.
2824 (Java Differences): Add reference. Add item on semantic values.
2825 Add note about @{ ... @}. Clarify %% epilogue placement.
2826 (Java Declarations Summary): New.
2827
2828 Fix Java skeleton.
2829 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
2830 (b4_remove_comma): Quote test argument.
2831 (b4_identification): Remove "bison" field.
2832 * tests/java.at (Java parser class and package names): New test.
2833 (Java %parse-param and %lex-param): New test.
2834 (Java stype, position_class and location_class): New test.
2835
2836 2008-10-31 Di-an Jan <dianj@freeshell.org>
2837
2838 * data/lalr1.jave: Update copyright years.
2839 (YYParser): Correct name of "generated from" file in Javadoc:
2840 use b4_file_name instead of @ofile@.
2841 (Location constructor): Correct Javadoc parameter name.
2842 (yylloc): Add missing opening m4 quote after b4_location_if.
2843 This removes a stray [ in the Javadoc of Lexer.getStartPos.
2844 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
2845 (YYParser constructor): Correct Javadoc parameter name.
2846
2847 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
2848
2849 Always put auxiliary code files in the same dir as other output files.
2850 * src/files.c (compute_file_name_parts): When the user specifies
2851 --output but not --file-prefix, extract the directory prefix from the
2852 file prefix not from the grammar file name. This affects the location
2853 of files like location.hh generated by the C++ skeleton. The includes
2854 in the other output files require this fix.
2855 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
2856 for expected output files.
2857 (Output files): Add a test for the above.
2858
2859 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
2860
2861 * gnulib: Update submodule to HEAD.
2862
2863 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2864
2865 Update copyright year.
2866 * src/files.c: Here.
2867
2868 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
2869
2870 Don't overwrite the input file.
2871 * src/files.c (output_file_name_check): Fatal error if using input file
2872 for output.
2873 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
2874 argument.
2875 (Conflicting output files): Add test.
2876
2877 2008-10-28 Akim Demaille <demaille@gostai.com>
2878
2879 Space changes.
2880 * data/lalr1.cc: Formatting changes.
2881
2882 2008-10-28 Akim Demaille <demaille@gostai.com>
2883
2884 Don't define debugging functions when !YYDEBUG.
2885 * data/lalr1.cc (debug_stream, set_debug_stream)
2886 (debug_level_type, debug_level, set_debug_level): Don't
2887 declare them when YYDEBUG is not defined.
2888 The implementation are already YYDEBUG-aware.
2889
2890 2008-10-28 Akim Demaille <demaille@gostai.com>
2891
2892 Prefer "continue" for empty loop bodies.
2893 * etc/bench.pl.in: Use "continue" instead of {}.
2894
2895 2008-10-28 Akim Demaille <demaille@gostai.com>
2896
2897 Space and comments changes.
2898 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
2899 * data/c.m4, data/lalr1.cc: Space changes.
2900
2901 2008-10-28 Akim Demaille <demaille@gostai.com>
2902
2903 Make gnulib a submodule.
2904 * gnulib: New.
2905 * .gitmodules (gnulib): New.
2906
2907 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
2908
2909 Fix yyerror_range for user-defined location type in C++. Reported by
2910 Georg Sauthoff at
2911 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
2912 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
2913 * THANKS (Georg Sauthoff): Add.
2914
2915 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
2916
2917 Update several administrative files mainly to facilitate releasing.
2918 * HACKING (Administrivia): Make the git-merge-changelog notes more
2919 helpful.
2920 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
2921 (Release Procedure): Update for git and add numerous details that were
2922 previously missing.
2923 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
2924 * maint.mk (announcement): Don't list bison as a bootstrap tool so
2925 that announcements don't claim we bootstrapped with whatever bison
2926 happened to be in PATH. Add flex as a bootstrap tool.
2927 * Makefile.maint: Remove, previously replaced by maint.mk.
2928 * Makefile.cfg: Remove, and migrate settings to...
2929 * cfg.mk: ... here for the sake of `make announcement'.
2930 * bootstrap.conf (gnulib_modules): Add announce-gen.
2931 * README: Say GNU Bison instead of just Bison. Suggested by Karl
2932 Berry.
2933
2934 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
2935
2936 Small but important bugfixes for the Java skeleton.
2937 * data/lalr1.java (yyerror): Change Location to b4_location_type.
2938 (yy_symbol_print): Call toString on yyvaluep.
2939
2940 2008-08-29 Akim Demaille <demaille@gostai.com>
2941
2942 Clarify UPDATED use.
2943 * doc/bison.texinfo: It refers to the last edition of this file,
2944 not to the release date of Bison.
2945 Reported by Joel E. Denny.
2946
2947 2008-08-29 Akim Demaille <demaille@gostai.com>
2948
2949 * README: Update FAQ pointer.
2950 Reported by Joel E. Denny.
2951
2952 2008-08-27 Eric Blake <ebb9@byu.net>
2953
2954 Resync m4sugar from autoconf.
2955 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
2956 (m4_init): Adjust to latest m4.git changes.
2957 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
2958 effects.
2959 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
2960 (_m4_list_cmp): Reduce side effects.
2961
2962 2008-08-27 Akim Demaille <demaille@gostai.com>
2963
2964 Check yyerrok in calc.at.
2965 * tests/calc.at (calc.y): Use yyerrok on "( error )".
2966 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
2967 expected.
2968
2969 2008-08-27 Akim Demaille <demaille@gostai.com>
2970
2971 Support yyerrok in lalr1.cc.
2972 YYBACKUP is still to import back into lalr1.cc.
2973 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
2974
2975 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
2976
2977 For maintainer-check*, don't recompile for a $(VERSION) update.
2978 * cfg.mk: New file.
2979 (_is-dist-target): Override the one in GNUmakefile.
2980 * Makefile.am (EXTRA_DIST): Add cfg.mk.
2981
2982 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
2983
2984 Update for recent change to gnulib.
2985 * src/parse-gram.y: Don't include strverscmp.h. It comes from
2986 string.h now.
2987
2988 2008-08-15 Eric Blake <ebb9@byu.net>
2989
2990 Remaining m4sugar merge from autoconf.
2991 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
2992 * data/m4sugar/foreach.m4: New file, copied from autoconf.
2993 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
2994 * src/output.c (output_skeleton): Tell m4 how to find it.
2995
2996 Partial m4sugar merge from autoconf: m4_map.
2997 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
2998 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
2999 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
3000 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
3001 for empty list.
3002 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
3003 Likewise.
3004 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
3005 declares it.
3006
3007 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
3008
3009 Keep .version and PACKAGE_VERSION in sync.
3010 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
3011 dependency, and add comments justifying this in more detail. Discussed
3012 starting at
3013 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
3014
3015 2008-08-06 Eric Blake <ebb9@byu.net>
3016
3017 Partial m4sugar merge from autoconf: m4_shiftn.
3018 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
3019 (m4_shift2, m4_shift3): New macros.
3020 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
3021 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
3022 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
3023 * data/java.m4 (b4_remove_comma): Likewise.
3024
3025 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
3026 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
3027 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
3028 (m4_init): Consolidate wrapped text into single m4_wrap.
3029 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
3030 in wrapped text.
3031
3032 2008-08-05 Eric Blake <ebb9@byu.net>
3033
3034 Partial m4sugar merge from autoconf: builtins, version.m4.
3035 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
3036 (m4_prepend): Remove, as it is unused and inherently quadratic,
3037 whereas m4_append is linear in newer m4.
3038 (m4_mkstemp): New builtin.
3039 (m4_symbols): Make rename conditional.
3040 (m4_version_prereq): Ensure fatal error if used in bison, which
3041 intentionally lacks version.m4.
3042
3043 Fix comments in m4sugar.
3044 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
3045
3046 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3047
3048 Update for recent .gitignore fix in Gnulib.
3049 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
3050 anchored .gitignore entries.
3051
3052 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3053
3054 Set gnu or gnits strictness.
3055 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
3056 development and gnits strictness for releases. Based on Eric Blake's
3057 suggestion at
3058 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
3059
3060 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
3061
3062 * NEWS: Clarify documentation of %language.
3063
3064 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
3065
3066 Support usage of git-merge-changelog.
3067 * .gitattributes: New.
3068 * HACKING: Document usage of git-merge-changelog.
3069 * bootstrap: Install git-merge-changelog entries in .git/config
3070 if appropriate.
3071
3072 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3073
3074 Remove remaining dependence on CVS Id keyword.
3075 * ChangeLog: For the sake of people still using CVS, don't use dollars
3076 when mentioning Id.
3077 * data/xslt/bison.xsl: Remove Id from header comments, where it was
3078 unusual anyway.
3079 * data/xslt/xml2dot.xsl: Likewise.
3080 * data/xslt/xml2text.xsl: Likewise.
3081 * data/xslt/xml2xhtml.xsl: Likewise.
3082 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
3083 * doc/Makefile.am (neutralize): Remove, no longer needed.
3084 (.x.1): Don't use neutralize.
3085 (edit): Don't substitute for ID.
3086 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
3087
3088 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3089
3090 Fix dependence on computed configure variables.
3091 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
3092 $(top_srcdir)/configure.ac so that changes to computed variables, such
3093 as PACKAGE_VERSION, are seen.
3094 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
3095
3096 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
3097
3098 Update copyright dates for recent changes.
3099 * Makefile.am: Here.
3100 * src/Makefile.am: Here.
3101 * src/reduce.c: Here.
3102 * tests/reduce.at: Here.
3103
3104 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
3105
3106 Use git-version-gen for version names between releases.
3107 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
3108 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
3109 * .prev-version: New.
3110 * .version.in: Remove.
3111 * ChangeLog: Remove the Id previously used for capturing the CVS
3112 revision.
3113 * GNUmakefile: Remove, now copied from Gnulib.
3114 * Makefile.am: Add code suggested by comments in
3115 build-aux/git-version-gen.
3116 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
3117 .prev-version, and .version.
3118 * NEWS (2.3b+): Rename to...
3119 (?.?): ... this because we're dropping the "+" version naming scheme,
3120 but, in general, we still can't be sure of our next release name.
3121 * bootstrap: Add a quick hack to remove from .gitignore the
3122 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
3123 entry. This should really be fixed in gnulib instead.
3124 * bootstrap.conf (gnulib_modules): Add gnumakefile.
3125 * configure.ac (AC_INIT): Set version name by invoking
3126 build-aux/git-version-gen.
3127 (AC_CONFIG_FILES): Remove .version, now generated by
3128 build-aux/git-version-gen.
3129 * maint.mk: New, copied from coreutils.
3130 * doc/.cvsignore (bison.1): Add.
3131 * doc/.gitignore (/bison.1): Add.
3132 * doc/bison.1: Remove, generated.
3133 * src/.cvsignore (revision.c): Remove.
3134 * src/.gitignore (/revision.c): Remove.
3135 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
3136 (BUILT_SOURCES): Remove revision.c.
3137 (revision.c): Remove.
3138 * src/getargs.c (version): Don't print revision after the VERSION.
3139 * src/revision.h: Remove.
3140
3141 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3142
3143 Fix untranslatable composition of sentences. Reported by Goran
3144 Uddeborg at
3145 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
3146 * THANKS (Goran Uddeborg): Add.
3147 * src/reduce.c (reduce_print): Report the number of nonterminals and
3148 rules useless in the grammar in separate sentences.
3149 * tests/reduce.at (Useless Rules): Update output.
3150 (Reduced Automaton): Likewise.
3151 (Underivable Rules): Likewise.
3152 (Empty Language): Likewise.
3153
3154 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3155
3156 Fix some .gitignore and .cvsignore problems.
3157 * bootstrap (insert_sorted_if_absent): Replace all uses with...
3158 (insert_vc_ignore): ... this new function, which prepends `/' to all
3159 .gitignore entries before passing them to insert_sorted_if_absent.
3160 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
3161 .cvsignore files are maintained even though Bison developers run
3162 bootstrap while using Git.
3163 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
3164 unneeded by Bison.
3165 (gnulib): Add.
3166 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
3167 unneeded. Reported by Eric Blake.
3168 * lib/.gitignore (/*~): Add.
3169 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
3170 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
3171 Blake.
3172 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
3173
3174 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3175
3176 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
3177 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
3178 * bootstrap.conf (gnulib_modules): Add unsetenv.
3179 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
3180 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
3181 (/setenv.m4): Add.
3182 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
3183 the first argument because it may become position-dependent, and unset
3184 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
3185 Add comments explaining these issues in more detail.
3186
3187 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
3188
3189 Add .gitignore everywhere based on .cvsignore.
3190 * .gitignore: New.
3191 * build-aux/.gitignore: New.
3192 * data/.gitignore: New.
3193 * doc/.gitignore: New.
3194 * etc/.gitignore: New.
3195 * examples/.gitignore: New.
3196 * examples/calc++/.gitignore: New.
3197 * lib/.gitignore: New.
3198 * m4/.gitignore: New.
3199 * po/.gitignore: New.
3200 * runtime-po/.gitignore: New.
3201 * src/.gitignore: New.
3202 * tests/.gitignore: New.
3203
3204 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3205
3206 * NEWS (2.3b+): New section, empty for now.
3207 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
3208
3209 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3210
3211 * NEWS (2.3b): Update release date since there has been a delay in
3212 getting the announcements and tarballs out.
3213
3214 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3215
3216 * NEWS: Version 2.3b.
3217 * configure.ac (AC_INIT): Likewise.
3218 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
3219
3220 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3221
3222 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
3223 been doing it for years.
3224 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
3225 (Release Procedure): Add FIXME about make alpha being unmaintained.
3226
3227 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
3228
3229 * data/yacc.c: Reformat m4 a little for readability.
3230 * src/lalr.c (build_relations): Correct comment.
3231
3232 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3233
3234 DJGPP specific issue.
3235 * djgpp/config.sed: Fixes required to run configure scripts generated
3236 by autoconf 2.62.
3237
3238 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3239
3240 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
3241 coordinator@translationproject.org.
3242
3243 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3244
3245 * THANKS: Add Eric Blake.
3246
3247 2008-04-23 Eric Blake <ebb9@byu.net>
3248
3249 Revert prior patch, by working around autoconf regression.
3250 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
3251 ("Output file name: ("): Uncomment test.
3252 ("Output file name: )"): Likewise.
3253 Based on an idea from Noah Misch.
3254
3255 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3256
3257 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
3258 2.61. Reported by Juan Manuel Guerrero at
3259 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
3260 * tests/output.at ("Output file name: ("): Comment out test case for
3261 now.
3262 ("Output file name: )"): Likewise.
3263
3264 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3265
3266 * GNUmakefile: Update git-version-gen invocation so make dist
3267 succeeds.
3268
3269 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3270
3271 Update to the current gnulib CVS repository, and fix trigraph handling
3272 in Bison.
3273 * bootstrap: Update gnulib CVS repository URL.
3274 (symlink_to_dir): Encapsulate the code that guarantees the destination
3275 directory exists into...
3276 (check_dst_dir): ... this new function, and...
3277 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
3278 fail when copying files into lib/uniwidth/.
3279 * src/output.c (prepare_symbols): When writing yytname muscles, where
3280 symbol names will be encoded in C-string literals, tell quotearg to
3281 escape trigraphs. This used to be the default in gnulib.
3282 * tests/regression.at (Token definitions): Because of the change in
3283 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
3284 escapes trigraphs in symbol names. Thus, yytname no longer has
3285 trigraphs unnecessarily doubly escaped. Update test case output.
3286 Extend test case to be sure Bison's own error messages will no longer
3287 have trigraphs in symbol names unnecessarily escaped once.
3288
3289 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
3290
3291 Fix make dist infinite loop reported by Juan Manuel Guerrero at
3292 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
3293 * .cvsignore: Add .version.
3294 * .version.in: New.
3295 * bootstrap.conf (gnulib_modules): Add git-version-gen.
3296 * configure.ac (AC_CONFIG_FILES): Add .version.
3297 * build-aux/.cvsignore: Add git-version-gen.
3298
3299 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
3300
3301 * NEWS (2.3a+): Mention that -g now takes an argument.
3302 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
3303 consistency. Update the -g and -x entries now that they take
3304 arguments. Use brackets to indicate optional arguments.
3305 * src/getargs.c (usage): Explain the relationship between arguments of
3306 long and short options more completely. Document --defines and -d
3307 separately since the former takes an argument but, for POSIX Yacc, the
3308 latter does not.
3309 (short_options): Let -W take an optional argument like --warnings.
3310 (getargs): Sort cases.
3311
3312 2008-02-28 Akim Demaille <demaille@gostai.com>
3313
3314 * doc/bison.texinfo: Fix a few typos.
3315
3316 2008-02-28 Akim Demaille <akim@epita.fr>
3317
3318 * doc/bison.texinfo (Bison Options): Document -W.
3319 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
3320
3321 2008-02-28 Akim Demaille <akim@epita.fr>
3322
3323 * src/getargs.c (short_options): Split and sort for readability.
3324 -g and -x take optional arguments, just like their long options.
3325 * build-aux/cross-options.pl: Use /x to make the regexp easier to
3326 understand.
3327 Fix the handling of $opt which resulted in all the argument to be
3328 considered as optional.
3329
3330 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
3331
3332 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
3333 say its interface is experimental.
3334 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3335 Java.
3336 (Bison Options): In the -L and --language entry, mention Java.
3337 (Java Bison Interface): Say the interface is experimental.
3338 * src/getargs.c (usage): Mention -L and --language.
3339
3340 * NEWS (2.3a+): Say the push parsing interface is experimental.
3341 * doc/bison.texinfo (Push Decl): Likewise.
3342 (Decl Summary): Likewise in the "%define api.push_pull" entry.
3343 (Push Parser Function): Likewise.
3344 (Pull Parser Function): Likewise.
3345 (Parser Create Function): Likewise.
3346 (Parser Delete Function): Likewise.
3347 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
3348 yypull_parse, and yypush_parse entries.
3349
3350 * NEWS (2.3a+): Mention XML support, and say the schema is
3351 experimental.
3352 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
3353 * src/getargs.c (usage): Say the XML schema is experimental.
3354
3355 * NEWS (2.3a+): Say option instead of flag.
3356
3357 2008-02-21 Wojciech Polak <polak@gnu.org>
3358
3359 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
3360 text.
3361
3362 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
3363
3364 Fix impure push parser compile error reported by Bob Rossi at
3365 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
3366 * data/yacc.c: Clean up whitespace in the output a little.
3367 (yypstate_allocated): Define for impure push parsers regardless of
3368 whether the pull interface is also requested.
3369 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
3370 check impure push parsers without the pull interface.
3371
3372 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
3373 yyerror takes arguments specified by %parse-param while yypstate_new
3374 does not.
3375 * doc/bison.texinfo (Parser Create Function): Document that
3376 yypstate_new returns 0 for multiple impure parser instances.
3377 * tests/push.at (Push Parsing: Multiple impure instances): Update
3378 expected stderr output.
3379
3380 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3381
3382 * runtime-po/POTFILES.in (push.c): Remove.
3383
3384 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3385
3386 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
3387 * data/push.c: Rename to...
3388 * data/yacc.c: ... this, overwriting it.
3389 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
3390 `%push-pull-parser' -> `%define api.push_pull "both"'.
3391 Remove old yacc.c tests, and update push.c tests to yacc.c.
3392
3393 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3394
3395 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
3396 `"%code top" blocks' instead of `%code "top" blocks'.
3397 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
3398 Clean up whitespace in the output a little.
3399
3400 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3401
3402 Fix documentation problems reported by Tim Josling at
3403 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
3404 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
3405 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
3406 integers. Explain the effect of literal string aliases on error
3407 messages. Copy token 0 documentation from the C++ skeleton
3408 documentation.
3409
3410 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3411
3412 Accept a token number in a %left, %right, or %nonassoc for POSIX
3413 conformance. Reported by Tim Josling at
3414 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
3415 * NEWS (2.3a+): Mention.
3416 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
3417 and code numbers are treated by precedence declarations.
3418 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
3419 of symbols.1.
3420 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
3421 of symbol.
3422 (symbol.prec): New, just like symbol but allows INT.
3423 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
3424 longer holds.
3425 * tests/regression.at (Token number in precedence declaration): New
3426 test case.
3427
3428 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3429
3430 DJGPP specific issues.
3431 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
3432 be changed. Copyright timestamp adjusted.
3433 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
3434 be changed. Copyright timestamp adjusted.
3435 * djgpp/config.site: Copyright timestamp adjusted.
3436 * djgpp/config_h.sed: Copyright timestamp adjusted.
3437 * djgpp/djunpack.bat: Copyright timestamp adjusted.
3438 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
3439 filename translation list.
3440 * djgpp/subpipe.c (init_subpipe): Check the environment variables
3441 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
3442 files shall be created. Before trying to use the temp dir where the
3443 environment variable points to check that the dir really exists. If
3444 not default to the cwd as temp dir. Copyright timestamp adjusted.
3445 * djgpp/subpipe.h: Copyright timestamp adjusted.
3446 * djgpp/testsuite.sed: Copyright timestamp adjusted.
3447
3448 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
3449
3450 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
3451
3452 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
3453
3454 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
3455 Problem reported by Claudio Saavedra in
3456 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
3457
3458 2008-01-05 Wojciech Polak <polak@gnu.org>
3459
3460 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
3461 document's title with the input grammar file name.
3462
3463 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
3464
3465 Automate regression testing of the XML/XSLT implementation. Discussed
3466 starting at
3467 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
3468 * configure.ac (XSLTPROC): New substitution.
3469 * Makefile.am (maintainer-xml-check): New phony target invoking...
3470 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
3471 invoking make maintainer-check with BISON_TEST_XML=1.
3472 * tests/atlocal.in (XSLTPROC): New.
3473 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
3474 not to report reachable memory when Bison is expected to have a
3475 non-zero exit status and (2) to compare XML/XSLT output with --graph
3476 and --report=all output for every working grammar when
3477 BISON_TEST_XML=1.
3478 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
3479 (AT_BISON_CHECK_XML): New.
3480 (AT_QUELL_VALGRIND): New.
3481 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
3482 (AT_CHECK): ... don't redefine this since this was the old way to
3483 quell Valgrind.
3484 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
3485 AT_BISON_CHECK invocations.
3486 * tests/c++.at: Likewise.
3487 * tests/calc.at: Likewise.
3488 * tests/conflicts.at: Likewise.
3489 * tests/cxx-type.at: Likewise.
3490 * tests/existing.at: Likewise.
3491 * tests/glr-regression.at: Likewise.
3492 * tests/headers.at: Likewise.
3493 * tests/input.at: Likewise.
3494 * tests/java.at: Likewise.
3495 * tests/output.at: Likewise.
3496 * tests/push.at: Likewise.
3497 * tests/reduce.at: Likewise.
3498 * tests/regression.at: Likewise.
3499 * tests/sets.at: Likewise.
3500 * tests/skeletons.at: Likewise.
3501 * tests/synclines.at: Likewise.
3502 * tests/torture.at: Likewise.
3503 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
3504 tends to hang xsltproc.
3505 (Big horizontal): Likewise.
3506
3507 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3508
3509 In XML output, remove redundant class attribute on symbol element.
3510 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
3511 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
3512 look up a symbol to determine whether it's a nonterminal or terminal.
3513 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
3514 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
3515
3516 Add prec/assoc information to XML output.
3517 * src/gram.c (grammar_rules_print_xml): For each rule that has a
3518 %prec, add a percent_prec attribute.
3519 * src/print-xml.c (print_grammar): For each terminal that has a
3520 precedence or associativity, add a prec or assoc attribute.
3521 (xml_indent): New.
3522 (xml_puts): Use xml_indent.
3523 (xml_printf): Use xml_indent.
3524 * src/print-xml.h (xml_indent): Prototype.
3525
3526 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
3527 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
3528
3529 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3530
3531 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
3532 (bison:ruleByNumber): ... this for clarity.
3533 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
3534 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
3535 (xsl:template match="reduction"): Update.
3536 (xsl:template match="item"): Update.
3537 (xsl:template match="reduction"): Update.
3538
3539 In the XML output, don't print the list of rules where symbols appear.
3540 Compute it in XSLT instead. Discussed at
3541 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
3542 * data/xslt/bison.xsl (bison:ruleByLhs): New.
3543 (bison:ruleByRhs): New.
3544 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
3545 bison:ruleByRhs.
3546 (xsl:template match="terminal/rule"): Remove.
3547 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3548 bison:ruleByRhs.
3549 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3550 Remove.
3551 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
3552 bison:ruleByRhs and mode="number-link" for rule template.
3553 (xsl:template match="terminal/rule"): Remove.
3554 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3555 bison:ruleByRhs and mode="number-link" for rule template.
3556 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3557 Rewrite as...
3558 (xsl:template match="rule" mode="number-link"): ... this.
3559 * src/print-xml.c (print_grammar): Don't print the list of rules.
3560
3561 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3562
3563 Don't let --report affect XML output; always print all information.
3564 Discussed at
3565 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
3566 * src/conflicts.c (log_resolution): Implement.
3567 * src/print-xml.c (print_core): Implement.
3568 (print_state): Implement.
3569 (print_xml): Implement.
3570
3571 * NEWS (2.3a+): Fix quotes.
3572 * src/parse-gram.y (prologue_declaration): For consistency with -v,
3573 don't let %verbose clear the list specified by --report.
3574
3575 2007-11-26 Akim Demaille <akim@epita.fr>
3576
3577 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
3578
3579 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
3580
3581 In the XML output, list useless and unused symbols and rules with the
3582 useful ones and add a "usefulness" attribute. Discussed starting at
3583 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
3584 * src/gram.c (grammar_rules_partial_print_xml): Remove.
3585 (grammar_rules_print_xml): Print all rules instead of just those
3586 useful in the grammar, and add a "usefulness" attribute.
3587 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
3588 * src/print-xml.c (print_rules_useless_in_parser): Remove.
3589 (print_grammar): Print all nonterminals instead of just useful ones,
3590 and add a "usefulness" attribute to nonterminals and terminals.
3591 (print_xml): Don't print a separate "reductions" or
3592 "rules-useless-in-parser" element.
3593 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
3594 (reduce_xml): Remove.
3595 (reduce_token_unused_in_grammar): New.
3596 (reduce_nonterminal_useless_in_grammar): New.
3597 * src/reduce.h (reduce_xml): Remove prototype.
3598 (reduce_token_unused_in_grammar): Add prototype.
3599 (reduce_nonterminal_useless_in_grammar): Add prototype.
3600 * data/xslt/xml2text.xsl: Update for XML changes.
3601 * data/xslt/xml2xhtml.xsl: Update for XML changes.
3602 * tests/reduce.at (Useless Terminals): Update output.
3603 (Useless Rules): Update output.
3604 (Reduced Automaton): Update output.
3605
3606 Say "Terminals unused in grammar" instead of "Unused terminals".
3607 * NEWS (2.3a+): Update.
3608 * doc/bison.texinfo (Understanding): Update example output.
3609 * src/reduce.c (reduce_output): Implement.
3610 * data/xslt/xml2text.xsl: Implement.
3611 * data/xslt/xml2xhtml.xsl: Implement.
3612
3613 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
3614
3615 Accept --report-file=FILE to override the default `.output' filename.
3616 * NEWS (2.3a+): Mention.
3617 * doc/bison.texinfo (Bison Options): Add an entry.
3618 * src/files.c (compute_output_file_names): Don't override
3619 spec_verbose_file if already set.
3620 * src/getargs.c (usage): Document --report-file.
3621 (REPORT_FILE_OPTION): New anonymous enum member.
3622 (long_options): Add entry for it.
3623 (getargs): Add case for it setting spec_verbose_file.
3624
3625 * build-aux/cross-options.pl: Don't record a short option just because
3626 there's an arg.
3627 * doc/.cvsignore: Add yacc.1.
3628
3629 2007-11-14 Akim Demaille <akim@epita.fr>
3630
3631 * doc/yacc.1.in: New.
3632 * configure.ac, doc/Makefile.am: Adjust.
3633 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
3634 config.h symbol.
3635 Use AC_SUBST for assignments too.
3636 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
3637
3638 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3639
3640 * src/gram.c: Remove comments that duplicate comments in gram.h.
3641
3642 When reporting useless rules and nonterminals, say "useless in grammar"
3643 instead of "useless", and say "useless in parser" instead of "never
3644 reduced". Discussed starting at
3645 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
3646 * NEWS (2.3a+): Mention this change.
3647 * data/xslt/xml2text.xsl: Update output text and expected input XML
3648 element names to match changes below.
3649 * data/xslt/xml2xhtml.xsl: Likewise.
3650 (xsl:template match="bison-xml-report"): Add missing entry in Table of
3651 Contents: "Rules useless in parser due to conflicts".
3652 * doc/bison.texinfo (Decl Summary): Reword a little.
3653 (Understanding): Update example output for changes below.
3654 * src/gram.c: (rule_useful_p): Rename to...
3655 (rule_useful_in_grammar_p): ... this.
3656 (rule_useless_p): Rename to...
3657 (rule_useless_in_grammar_p): ... this.
3658 (rule_never_reduced_p): Rename to...
3659 (rule_useless_in_parser_p): ... this.
3660 (grammar_rules_print): Update for renames.
3661 (grammar_rules_print_xml): Update for renames.
3662 (grammar_rules_never_reduced_report): Rename to...
3663 (grammar_rules_useless_report): ... this since it is used for either
3664 kind of useless rule.
3665 * src/gram.h: Reword comments and update function names in prototypes.
3666 * src/main.c (main): Say "rule useless in parser due to conflicts".
3667 * src/print-xml.c (print_rules_never_reduced): Rename to...
3668 (print_rules_useless_in_parser): ... this, and rename output XML
3669 element "rules-never-reduced" to "rules-useless-in-parser".
3670 (print_xml): Update for rename.
3671 * src/print.c (print_results): Say "Rules useless in parser due to
3672 conflicts".
3673 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
3674 (nonterminals_reduce): Say "nonterminal useless in grammar".
3675 (reduce_output): Say "Nonterminals useless in grammar".
3676 Say "Rules useless in grammar".
3677 (reduce_xml): Rename output XML element "useless" to
3678 "useless-in-grammar".
3679 (reduce_print): Don't report the count of grammatically useless rules
3680 as "rules never reduced" just because %yacc is specified.
3681 In the correct report of this count, say nonterminal(s) and rule(s)
3682 "useless in grammar".
3683 * tests/conflicts.at (S/R in initial): Update expected output.
3684 (Defaulted Conflicted Reduction): Likewise.
3685 (Unreachable States After Conflict Resolution): Likewise.
3686 * tests/existing.at (GNU pic Grammar): Likewise.
3687 * tests/reduce.at (Useless Nonterminals): Likewise.
3688 (Useless Rules): Likewise.
3689 (Reduced Automaton): Likewise.
3690 (Underivable Rules): Likewise.
3691 (Empty Language): Likewise.
3692
3693 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
3694
3695 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
3696 here document and before the EOF so that BSD's implementation of Bourne
3697 shell doesn't parse the delimiter as part of the here document.
3698 * doc/.cvsignore: Add cross-options.texi.
3699 * src/getargs.c (usage): Add a blank line after the warning categories.
3700
3701 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
3702
3703 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
3704
3705 2007-11-05 Akim Demaille <akim@epita.fr>
3706
3707 Remove Id: from bison.1.
3708 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
3709 (perl -0777 -pi -e 's/\.PP\nId): New.
3710 (.x.1): Use it to ignore the version control revision.
3711
3712 2007-11-05 Akim Demaille <demaille@gostai.com>
3713
3714 * build-aux/Makefile.am: Ship cross-options.pl.
3715 * doc/Makefile.am: Always refer to cross-options.texi with
3716 $(srcdir).
3717 (MAINTAINERCLEANFILES): Add it.
3718
3719 2007-11-04 Akim Demaille <demaille@gostai.com>
3720
3721 Generate the long/short option cross-table.
3722 * build-aux/cross-options.pl: New.
3723 * doc/Makefile.am (cross-options.texi): New.
3724 * doc/bison.texinfo: Use it.
3725
3726 2007-11-04 Akim Demaille <demaille@gostai.com>
3727
3728 Generate bison.1 using help2man.
3729 * doc/common.x, doc/bison.x: New.
3730 * doc/Makefile.am (bison.1, .x.1): New.
3731 The code is taken from autoconf-2.61/man/Makefile.am.
3732 * configure.ac: Look for help2man.
3733
3734 2007-11-04 Akim Demaille <demaille@gostai.com>
3735
3736 Complete --help.
3737 * src/getargs.c (usage): Document -W, make it clear that -d,
3738 -g and -x have optional arguments.
3739
3740 2007-11-04 Akim Demaille <demaille@gostai.com>
3741
3742 Find sha1sum when named gsha1sum.
3743 * bootstrap (find_tool): New.
3744 ($SHA1SUM): New.
3745
3746 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3747
3748 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
3749 at
3750 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
3751 * NEWS (2.3a+): Mention.
3752 * data/bison.m4 (b4_pure_if): Don't define it here.
3753 * data/c.m4 (b4_identification): Depend on individual skeletons to
3754 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
3755 values of the %define variables api.pure or api.push_pull. Define
3756 YYPURE, YYPUSH, and YYPULL accordingly.
3757 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
3758 glr.cc has already defined b4_pure_flag.
3759 * data/push.c: Define b4_pure_if based on `%define api.pure'.
3760 Remove YYPUSH and YYPULL since they're back in b4_identification again.
3761 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
3762 * doc/bison.texinfo (Pure Decl): Update.
3763 (Push Decl): Update.
3764 (Decl Summary): Add api.pure to %define entry.
3765 In %pure-parser entry, say it's deprecated and reference %define.
3766 (Pure Calling): Update.
3767 (Error Reporting): Update.
3768 (C++ Scanner Interface): Update.
3769 (How Can I Reset the Parser): Update.
3770 (Table of Symbols): In %pure-parser entry, say it's deprecated and
3771 reference %define.
3772 * src/getargs.c (pure_parser): Remove global variable.
3773 * src/getargs.h (pure_parser): Remove extern.
3774 * src/output.c (prepare): Don't define pure_flag muscle.
3775 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
3776 wrapper around `%define api.pure'.
3777 * tests/calc.at (Simple LALR Calculator): Update.
3778 (Simple GLR Calculator): Update.
3779 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
3780 Update.
3781 (GLR: Resolve ambiguity, pure, locations): Update.
3782 (GLR: Merge conflicting parses, pure, no locations): Update.
3783 (GLR: Merge conflicting parses, pure, locations): Update.
3784 * tests/glr-regression.at (Uninitialized location when reporting
3785 ambiguity): Update
3786 * tests/input.at (Unused %define api.pure): New test case.
3787 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
3788 AT_PURE_IF and AT_PURE_AND_LOC_IF.
3789 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
3790
3791 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3792
3793 %define push_pull -> %define api.push_pull. Discussed starting at
3794 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
3795 * data/push.c: Expect the new name.
3796 * data/yacc.c: Likewise.
3797 * doc/bison.texinfo (Push Decl): Update.
3798 (Decl Summary): Update %define entry.
3799 (Push Parser Function): Update.
3800 (Pull Parser Function): Update.
3801 (Parser Create Function): Update.
3802 (Parser Delete Function): Update.
3803 * tests/calc.at (Simple LALR Calculator): Update.
3804 * tests/input.at (%define enum variables): Update.
3805 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
3806 (Push Parsing: Multiple impure instances): Update.
3807 (Push Parsing: Unsupported Skeletons): Update.
3808 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
3809 (Exploding the Stack Size with Malloc): Update.
3810
3811 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
3812 other entries some.
3813
3814 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
3815
3816 For the XML output's terminal element, rename @number to @token-number,
3817 and add @symbol-number. In the nonterminal element, rename @number to
3818 @symbol-number. Discussed starting at
3819 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
3820 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
3821 renames.
3822 (xsl:template match="nonterminal"): Likewise.
3823 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
3824 (xsl:template match="nonterminal"): Likewise.
3825 * src/print-xml.c (print_grammar): Implement.
3826
3827 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3828
3829 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
3830 2007-10-11 change, the child elements here are items not rules.
3831 (xsl:template match="item"): New.
3832 (xsl:template match="rule"): Update for new reduced itemset.
3833 (xsl:template match="point"): Remove.
3834 (xsl:template match="empty"): For consistency with --graph, don't
3835 output "/* empty */".
3836 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
3837 line-wrap, don't pass a negative value as first-line-length since this
3838 won't work with the following changes.
3839 (xsl:template name="line-wrap"): Simplify slightly.
3840 (xsl:template name="ws-search"): Eliminate recursion.
3841 * src/print_graph.c (print_core): Don't print a reduction's lookahead
3842 set next to an item whose dot is not at the end of the RHS even if it
3843 happens to be associated with the same rule.
3844
3845 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
3846
3847 Add %define lr.keep_unreachable_states.
3848 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
3849 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
3850 * src/main.c (main): Implement it.
3851 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3852 Extend to test it, and fix a typo.
3853
3854 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
3855
3856 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
3857 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
3858 the example .output text.
3859 * tests/regression.at (Extra lookahead sets in report): Improve wording
3860 of comments.
3861
3862 2007-10-17 Wojciech Polak <polak@gnu.org>
3863
3864 * src/print-xml.c (print_grammar): Renamed
3865 <terminal> and <nonterminal> attributes:
3866 "type" to "number" and "symbol" to "name".
3867 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
3868 Use new attribute names.
3869 (xsl:template match="nonterminal"): Likewise.
3870 * data/xslt/xml2xhtml.xsl: Likewise.
3871
3872 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
3873
3874 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
3875 (Option Cross Key): Likewise.
3876
3877 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
3878 next to an item whose dot is not at the end of the RHS even if it
3879 happens to be associated with the same rule.
3880 * src/print.c (print_core): Likewise.
3881 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
3882 (Resolved SR Conflicts): Update output.
3883 * tests/regression.at (Extra lookahead sets in report): New test case.
3884
3885 2007-10-11 Wojciech Polak <polak@gnu.org>
3886
3887 * src/print-xml.c (print_core): Remove item set
3888 redundancy.
3889 * data/xslt/bison.xsl (bison:ruleNumber): New key.
3890 Improve processing time. Suggested by Joel E. Denny.
3891 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
3892 Write xsl:param "required" attribute as comment.
3893 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
3894 (xsl:template match="rule"): Support new reduced itemset.
3895 (xsl:template match="point"): Remove.
3896 * data/xslt/xml2xhtml.xsl: Likewise.
3897
3898 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
3899
3900 * src/getargs.c (version): Update copyright year.
3901
3902 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
3903
3904 Make xml2dot.xsl and --graph produce the same output.
3905 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
3906 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
3907 escaped later.
3908 (xsl:template name="output-node"): Use the new escape template instead
3909 of the string-replace template directly.
3910 (xsl:template name="output-edge"): Likewise.
3911 (xsl:template name="escape"): New, escapes backslashes and newlines in
3912 addition to quotation marks.
3913 * src/graphviz.c (start_graph, output_node, output_edge): Add
3914 whitespace to output for legibility.
3915
3916 Make xml2text.xsl and --report produce the same output, and remove the
3917 XML "conflicts" element since a conflict summary is easily extracted
3918 from the automaton.
3919 * data/xslt/bison.xsl: New.
3920 (xsl:template match="state" mode="bison:count-conflicts): New.
3921 * data/xslt/xml2text.xsl: Import bison.xsl.
3922 (xsl:template match="bison-xml-report"): Instead of styling the
3923 "conflicts" element, style the "automaton" element with mode
3924 "conflicts". Unlike the former, the latter lists S/R and R/R
3925 conflicts for a state on the same line.
3926 (xsl:template match="conflicts"): Remove.
3927 (xsl:template match="conflict"): Remove.
3928 (xsl:template match="terminal"): Line-wrap the list of rules in which
3929 the terminal is used.
3930 (xsl:template match="nonterminal"): Likewise for nonterminals.
3931 (xsl:template match="automaton" mode="conflicts"): New.
3932 (xsl:template match="state" mode="conflicts"): New.
3933 (xsl:template name="line-wrap"): New.
3934 (xsl:template name="ws-search"): New.
3935 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
3936 (xsl:template match="bison-xml-report"): Instead of styling the
3937 "conflicts" element, style the "automaton" element with mode
3938 "conflicts."
3939 (xsl:template match="conflicts"): Remove.
3940 (xsl:template match="conflict"): Remove.
3941 (xsl:template match="automaton" mode="conflicts"): New.
3942 (xsl:template match="state" mode="conflicts): New.
3943 * src/conflicts.c (conflicts_output_xml): Remove.
3944 * src/conflicts.h (conflicts_output_xml): Remove prototype.
3945 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
3946 * src/print.c (print_grammar): Consistently wrap at the 66th column so
3947 the corresponding XSLT is easier. Also, never wrap between a word and
3948 the comma that follows it.
3949
3950 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
3951
3952 Improve C++ namespace support. Discussed starting at
3953 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
3954 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
3955 b4_namespace_close): New macros that interpret the %define variable
3956 "namespace" so its value can contain "::" to indicate nested
3957 namespaces.
3958 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
3959 the above macros.
3960 * data/lalr1.cc (b4_namespace): Likewise.
3961 * data/location.cc (b4_namespace): Likewise.
3962 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
3963 inside a new table in the general %define entry. Document `%define
3964 namespace' there as well. Point the %name-prefix entry to it since it
3965 explains it more completely in the case of C++.
3966 (C++ Bison Interface): Mention `%define namespace' instead of
3967 %name-prefix.
3968 (Table of Symbols): Remove the `%define push_pull' entry. The %define
3969 entry suffices.
3970 * tests/c++.at (Relative namespace references): New test case.
3971 (Absolute namespace references): New test case.
3972 (Syntactically invalid namespace references): New test case.
3973 * tests/input.at (C++ namespace reference errors): New test case.
3974
3975 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
3976
3977 Add syncline support and location accessor to internal %define
3978 interfaces.
3979 * data/bison.m4 (b4_percent_define_get_loc): New.
3980 (b4_percent_define_get_syncline): New.
3981 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
3982 (b4_percent_define_default): Record defining location as line 1 rather
3983 than 0 for the sake of synchronizing #line's, and define
3984 b4_percent_define_syncline(VARIABLE).
3985 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
3986 * src/muscle_tab.c (muscle_syncline_grow): New.
3987 (muscle_code_grow): Use muscle_syncline_grow.
3988 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
3989 define b4_percent_define_syncline(VARIABLE).
3990 (muscle_percent_define_get_loc): New.
3991 (muscle_percent_define_get_syncline): New.
3992 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
3993 remove some unused variables.
3994 (muscle_percent_define_default): Record defining location as line 1
3995 rather than 0 for the sake of synchronizing #line's, and define
3996 b4_percent_define_syncline(VARIABLE).
3997 (muscle_percent_define_check_values): Use
3998 muscle_percent_define_get_loc.
3999 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
4000 (muscle_percent_define_get_syncline): Prototype.
4001 * tests/skeletons.at (%define Boolean variables: invalid skeleton
4002 defaults): Update output for location change.
4003 (Complaining during macro argument expansion): Extend to test
4004 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
4005
4006 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
4007
4008 Fix some error-reporting macro bugs.
4009 * data/bison.m4 (b4_cat): New.
4010 (b4_error, b4_error_at): Use b4_cat to send error directives directly
4011 to stdout so they don't become arguments to other macros. Update
4012 comments and add examples.
4013 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
4014 add examples.
4015 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
4016 after printing the error directive so that M4 doesn't report subsequent
4017 problems that are induced by this problem.
4018 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
4019 instead of just in them. Recognize @\n in both places. Both expand to
4020 the empty string. Needed by b4_cat.
4021 * tests/skeletons.at (Complaining during macro argument expansion):
4022 New test case.
4023 (Fatal errors make M4 exit immediately): New test case.
4024
4025 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
4026
4027 Implement --print-datadir.
4028 * src/getargs.c (usage): Mention.
4029 (PRINT_DATADIR_OPTION): New anonymous enum member.
4030 (long_options): Add entry for it.
4031 (getargs): Add case for it calling compute_pkgdatadir.
4032 * src/output.c (output_skeleton): Encapsulate data directory
4033 computation from here...
4034 (prepare): ... and from here...
4035 (compute_pkgdatadir): ... into this new function.
4036 * src/output.h (compute_pkgdatadir): Prototype.
4037
4038 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
4039
4040 * src/print-xml.c (escape_bufs): New static global variable
4041 replacing...
4042 (xml_escape_n): ... the static local variable buf here.
4043 (print_xml): Free memory for escape_bufs.
4044 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
4045
4046 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
4047
4048 Replace `%push-parser' and `%push-pull-parser' with
4049 `%define push_pull "push"' and `%define push_pull "both"'.
4050 `%define push_pull "pull"' is the default.
4051 * doc/bison.texinfo (Push Decl, Push Parser Function,
4052 Pull Parser Function, Parser Create Function, Parser Delete Function):
4053 Update declarations.
4054 (Decl Summary, Table of Symbols): Replace %push-parser and
4055 %push-pull-parser entries with a %define push_pull entry.
4056 * data/bison.m4 (b4_percent_define_check_values): New macro.
4057 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
4058 definitions...
4059 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
4060 definitions...
4061 * data/push.c: ... to here and compute them from the value of the
4062 %define variable push_pull.
4063 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
4064 parsing requests here...
4065 * data/yacc.c: ... hack this to switch to push.c any time
4066 b4_use_push_pull_flag or the %define variable push_pull is set. This
4067 will go away when we mv push.c yacc.c.
4068 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
4069 push parsing is not supported since unused %define variables are
4070 reported anyway.
4071 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
4072 * src/muscle_tab.h (muscle_percent_define_check_values): Update
4073 comments for consistency with b4_percent_define_check_values.
4074 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
4075 muscles.
4076 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
4077 Remove.
4078 (prologue_declaration): Remove %push-parser and %push-pull-parser
4079 rules.
4080 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
4081 * tests/calc.at: Update declarations.
4082 * tests/input.at (%define enum variables): New test case.
4083 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
4084 declaration.
4085 (Push Parsing: Multiple impure instances): Update declaration.
4086 (Push Parsing: Unsupported Skeletons): New test case.
4087 * tests/torture.at (Exploding the Stack Size with Alloca): Update
4088 declaration.
4089 (Exploding the Stack Size with Malloc): Update declaration.
4090
4091 2007-09-24 Wojciech Polak <polak@gnu.org>
4092
4093 Add XSLT transformations.
4094
4095 * data/xslt/xml2dot.xsl: Transform XML into DOT.
4096 * data/xslt/xml2text.xsl: Transform XML into plain text.
4097 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
4098 * data/Makefile.am (xsltdir): New variable.
4099 (dist_xslt_DATA): Add xslt/*.xsl files.
4100
4101 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
4102
4103 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
4104 Problem reported by Wojciech Polak.
4105 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
4106 (xml_printf): Undo change I made on 21 September; that is,
4107 indent 2 spaces, not 1.
4108
4109 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
4110
4111 Pacify ./configure --enable-gcc-warnings.
4112 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
4113 `char const *' instead of `char *'.
4114 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
4115 local variable `sep'.
4116
4117 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4118
4119 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
4120 elsewhere.
4121 * src/print-xml.c: Prefer "const" after types; that's more consistent.
4122 (xml_printf): Indent just 1 space for level.
4123 (e_char, xlate_char): Remove.
4124 (xml_escape_string): Rewrite to avoid undefined behavior (used
4125 storage that was freed from the stack).
4126 (xml_escape_n): Don't bother checking for subscript error.
4127
4128 2007-09-21 Wojciech Polak <polak@gnu.org>
4129
4130 Add Bison XML Automaton Report.
4131
4132 Add support for an -x option to generate an XML report.
4133 It is not documented yet.
4134 * src/print-xml.c: New file.
4135 * src/print-xml.h: Likewise.
4136 * lib/timevar.def (TV_XML): New var.
4137 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
4138 * src/conflicts.c: Include print-xml.h.
4139 (solved_conflicts_xml_obstack): New var.
4140 (log_resolution, conflicts_solve, conflicts_free):
4141 Add support for XML report.
4142 (conflicts_output_val): New function.
4143 * src/conflicts.h (conflicts_output_val): New decl.
4144 * src/files.c (spec_xml_file): New var.
4145 (compute_output_file_names, output_file_names_free): Add XML support.
4146 * src/files.h (spec_xml_file): New decl.
4147 * src/getargs.c (xml_flag): New var.
4148 (usage, short_options, long_options, getargs): Add XML support.
4149 * src/getargs.h (xml_flag): New decl.
4150 * src/gram.c: Include print-xml.h.
4151 (rule_lhs_print_xml, rule_rhs_print_xml):
4152 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
4153 New functions.
4154 * src/gram.h: Declare external ones.
4155 * src/main.c: Include print-xml.h.
4156 (main): Add XML support.
4157 * src/reduce.c: Include print-xml.h.
4158 (reduce_xml): New function.
4159 * src/reduce.h: Declare it.
4160 * src/state.c: Include print-xml.h.
4161 (state_new): Add XML support.
4162 (state_rule_lookahead_tokens_print_xml): New function.
4163 * src/state.h: Declare it.
4164 (struct state): New member solved_conflicts_xml.
4165 * src/symtab.c (symbol_class_get_string): New function.
4166 * src/symtab.h: Declare it.
4167
4168 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4169
4170 * GNUmakefile: Switch to coreutils's version.
4171 * bootstrap: Likewise.
4172 * Makefile.cfg: Adjust to new GNUmakefile.
4173 * README-hacking: Likewise.
4174
4175 Import from gnulib:
4176
4177 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
4178 Bruno Haible <bruno@clisp.org>
4179
4180 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
4181 and is a script that invokes bison. Tighten the code. Add comments.
4182
4183 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
4184
4185 Spell "boolean" as "Boolean". Reported by Akim Demaille.
4186 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
4187 * doc/bison.texinfo (Decl Summary): Fix.
4188 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
4189 * tests/input.at (Boolean %define variables): Update output.
4190 * tests/skeletons.at (%define boolean variables: invalid skeleton
4191 defaults): Rename to...
4192 (%define Boolean variables: invalid skeleton defaults): ... this and
4193 update output.
4194
4195 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
4196
4197 In impure push mode, don't allow more than one yypstate to be allocated
4198 since multiple impure parsers would corrupt yynerrs.
4199 * data/push.c (yypstate_allocated): New static global variable
4200 initialized to 0.
4201 (yypull_parse): If yypstate_new returns 0, don't report it as memory
4202 exhaustion if yypstate_allocated is 1, but still return 2.
4203 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
4204 already 1. Otherwise, set it to 1.
4205 (yypstate_delete): Set it to 0.
4206 * tests/push.at (Push Parsing: Multiple impure instances): New test
4207 case.
4208
4209 2007-08-17 Bob Rossi <bob@brasko.net>
4210
4211 * doc/bison.texinfo (Push Decl): Document the push parser.
4212 (Table of Symbols): Ditto.
4213 (Pure Decl): Ditto.
4214 (Decl Summary): Ditto.
4215 (Multiple Parsers, Push Parser Function, Pull Parser Function,
4216 Parser Create Function, Parser Delete Function):
4217 Add new push parser symbols.
4218 (Table of Symbols): Document push-parser, push-pull-parser,
4219 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
4220
4221 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
4222
4223 Update to GPLv3.
4224 * doc/gpl-3.0.texi: New file.
4225 * doc/gpl.texi: Remove.
4226 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
4227 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
4228 * README-hacking, TODO, bootstrap, bootstrap.conf:
4229 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
4230 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
4231 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
4232 * data/lalr1.cc, data/lalr1.java, data/location.cc:
4233 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
4234 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
4235 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
4236 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
4237 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
4238 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
4239 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
4240 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
4241 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
4242 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
4243 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
4244 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
4245 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
4246 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
4247 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
4248 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
4249 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
4250 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
4251 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
4252 * src/complain.c, src/complain.h, src/conflicts.c:
4253 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
4254 * src/files.h, src/flex-scanner.h, src/getargs.c:
4255 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
4256 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
4257 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
4258 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
4259 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
4260 * src/print.c, src/print.h, src/print_graph.c:
4261 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
4262 * src/reduce.h, src/relation.c, src/relation.h:
4263 * src/revision.h, src/scan-code.h, src/scan-code.l:
4264 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
4265 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
4266 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
4267 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
4268 * tests/Makefile.am, tests/actions.at, tests/c++.at:
4269 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
4270 * tests/existing.at, tests/glr-regression.at:
4271 * tests/headers.at, tests/input.at, tests/java.at:
4272 * tests/local.at, tests/output.at, tests/push.at:
4273 * tests/reduce.at, tests/regression.at, tests/sets.at:
4274 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
4275 * tests/torture.at:
4276 Update to GPLv3.
4277
4278 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4279
4280 Get rid of broken %no-parser, -n, and --no-parser implementation and
4281 documentation.
4282 * TODO: Don't mention them.
4283 * doc/bison.1: Likewise.
4284 * doc/bison.texinfo (Decl Summary): Likewise.
4285 (Bison Options): Likewise.
4286 (Option Cross Key): Likewise.
4287 * src/getargs.c (no_parser_flag): Remove global variable.
4288 (usage): Don't print description of -n and --no-parser.
4289 (long_options): Remove --no-parser entry here.
4290 (getargs): Remove -n case in the switch here.
4291 * src/getargs.h (no_parser_flag): Remove extern.
4292 * tests/regression.at (Web2c Actions): Remove comment that mentions
4293 --no-parser.
4294
4295 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4296
4297 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
4298 name user variables starting with `yy'. Just pass NULL instead of a
4299 dummy local &yylval to yypush_parse.
4300 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
4301 starting with `yy'.
4302
4303 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
4304
4305 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
4306 true since it's then always used regardless of whether yyoverflow is
4307 defined. Reported by Christian Burger at
4308 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
4309 * THANKS: Add Christian Burger.
4310
4311 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4312 node names: say "Decl Summary" not "Bison Declaration Summary".
4313
4314 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
4315
4316 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
4317 determine whether this function has already complained about an invalid
4318 value for a %define boolean variable, don't check whether Bison has
4319 ever examined the value. As written, the check was a tautology.
4320 Instead, record and check for this complaint using a separate muscle.
4321
4322 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4323
4324 Fix push parsing memory leak reported by Brandon Lucia at
4325 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
4326 * THANKS: Add Brandon Lucia.
4327 * data/push.c (yypstate_delete): Free the stack if it was reallocated
4328 but the parse never completed and thus freed it.
4329 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
4330 * tests/testsuite.at: Include push.at.
4331 * test/push.at: New.
4332 (Push Parsing: Memory Leak for Early Deletion): New test case.
4333
4334 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
4335
4336 Improve handling of multiple S/R conflicts in the same state and of S/R
4337 conflicts involving multiple reductions.
4338 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
4339 set for a state here or Bison will abort if it is reassigned on a
4340 later conflicted reduction in the same state.
4341 Similarly, don't finalize and assign the solved conflicts report here
4342 or it will be lost if it is reassigned on a later conflicted reduction
4343 in the same state.
4344 (set_conflicts): Instead, assign them both here after all S/R conflicts
4345 in the state have been fully examined.
4346 * src/print.c (shift_set): Rename to...
4347 (no_reduce_set): ... this.
4348 (print_reductions): Update for rename, and add %nonassoc error action
4349 tokens to no_reduce_set so that, when printing the first remaining
4350 reduction on an error action token, the reduction is enclosed in
4351 brackets.
4352 (print_results): Update for rename.
4353 * tests/conflicts.at (Solved conflicts report for multiple reductions
4354 in a state): New test case.
4355 (%nonassoc error actions for multiple reductions in a state): New test
4356 case.
4357
4358 * src/main.c (main): Don't depend on C99 features.
4359
4360 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4361
4362 * build-aux/.cvsignore: Add compile.
4363 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
4364 uniwidth.
4365
4366 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
4367
4368 * bootstrap (slurp): Create target directories that don't exist.
4369 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
4370
4371 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4372
4373 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
4374 than item number.
4375 * closure.c (closure): Likewise.
4376 * state.h (reductions): Comment sorting of rules.
4377 (state): Comment sorting of items.
4378
4379 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
4380
4381 Fix C++ test cases after recent Gnulib changes. Discussed starting at
4382 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
4383 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
4384 definition in order to avoid Gnulib headers since we don't use config.h
4385 here.
4386 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
4387 rather than AT_DATA so that config.h is included.
4388
4389 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
4390
4391 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
4392 instead of fprintf. Guard these functions with #if YYDEBUG instead of
4393 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
4394 and so that YYFPRINTF is guaranteed to be defined here.
4395
4396 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
4397
4398 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
4399 with...
4400 (muscle_percent_define_check_values): ... this more helpful function.
4401 Again, it's not used yet, but it will be.
4402 * src/muscle_tab.h: Likewise.
4403
4404 Improve some comments in parser table construction.
4405 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
4406 (generate_states): Don't mention ruleset, which is internal to closure.
4407 * src/closure.c (closure): Explain sorting of core and itemset, which
4408 is required for this function to behave correctly.
4409 * src/closure.h (closure): Mention sorting.
4410
4411 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
4412
4413 * src/lalr.c (state_lookahead_tokens_count): For code readability,
4414 move the check for disabled transitions to an aver since conflict
4415 resolution hasn't happened yet.
4416
4417 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
4418 labels a state as inconsistent just because it has error transitions.
4419 The original form of this check appeared in revision 1.1 of lalr.c,
4420 which was committed on 1991-12-21. Now (at least), changing the
4421 consistency label on such a state appears to have no useful effect in
4422 any of the places it is examined, which I enumerate below. The key
4423 point to understanding each item in this enumeration is that a state
4424 with an error transition is labelled consistent in the first place only
4425 if it has no rules, so the check cannot matter for states that have
4426 rules. (1) Labelling a state as inconsistent will cause set_conflicts
4427 to try to identify its conflicts, and a state must have *rules* to have
4428 conflicts. (2) Labelling a state as inconsistent will affect how
4429 action_row sets the default *rule* for the state. (3) Labelling a
4430 state as inconsistent will cause build_relations to add lookback edges
4431 to *rules* in that state.
4432 * src/state.h (struct state): Word the comment for member consistent
4433 more carefully.
4434
4435 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4436
4437 Don't depend on C99 features.
4438 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
4439 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
4440 * src/reader.c (check_and_convert_grammar): Fix for-loop.
4441 * src/state.c (state_mark_reachable_states): Fix for-loop.
4442 (state_remove_unreachable_states): Fix for-loop.
4443
4444 Don't widen struct state with member reachable just to temporarily
4445 record reachability. Instead, use a local bitset.
4446 * src/state.h (struct state): Remove member.
4447 * src/state.c (state_new): Don't initialize it.
4448 (state_mark_reachable_states): Rename to...
4449 (state_record_reachable_states): ... this, and use bitset.
4450 (state_remove_unreachable_states): Use bitset.
4451
4452 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
4453
4454 * src/Makefile.am (yacc): Quote target action commands properly so
4455 that the yacc script isn't corrupt. Reported by Hans Aberg at
4456 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
4457
4458 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
4459 the case of pure parsers. Reported by Frans Englich at
4460 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
4461 * THANKS: Add Frans Englich.
4462
4463 * NEWS (2.3a+): In the %code entry, reference section `Bison
4464 Declaration Summary' from the manual now since the %code summary has
4465 moved there.
4466 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
4467 in the rules section must be terminated by semicolons.
4468
4469 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
4470
4471 Extend the front-end API for %define variables to more completely
4472 mirror the back-end. This will be useful in the future.
4473 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
4474 Update comments to mention the new front-end counterparts of these
4475 macros.
4476 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
4477 for muscle_string_decode and muscle_location_decode.
4478 (muscle_string_decode): New static function.
4479 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
4480 (muscle_percent_define_get, muscle_percent_define_ifdef): New
4481 functions.
4482 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
4483 muscle_percent_define_get to mimic the b4_percent_define_flag_if
4484 implementation more closely.
4485 (muscle_percent_define_invalid_value): New function.
4486 * src/muscle_tab.h (muscle_percent_define_get,
4487 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
4488 Prototype.
4489
4490 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4491
4492 * NEWS (2.3a+): Mention yesterday's state-removal change.
4493 (2.3a): Remove the %language entry, which was added after 2.3a.
4494 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
4495 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
4496 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
4497 tests/existing.at: Update copyright date.
4498
4499 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4500
4501 If conflict resolution makes states unreachable, remove those states,
4502 report rules that are then unused, and don't report conflicts in those
4503 states.
4504 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
4505 New global function.
4506 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
4507 function.
4508 * src/main.c (main): After conflict resolution, remove the unreachable
4509 states and update all data structures that reference states by number.
4510 * src/state.c (state_new): Initialize each state's reachable member to
4511 false.
4512 (state_mark_reachable_states): New static function.
4513 (state_remove_unreachable_states): New global function.
4514 * src/state.h (struct state): Add member bool reachable.
4515 (state_remove_unreachable_states): Prototype.
4516 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4517 New test case.
4518 * tests/existing.at (GNU pic Grammar): Update test case output now that
4519 an unused rule is discovered.
4520
4521 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4522
4523 Minor code cleanup in parser table construction.
4524 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
4525 (new_itemsets, save_reductions): Update for rename to nitemset.
4526 * src/closure.c (nritemset): Rename to...
4527 (nitemset): ... this since the "r" appears to meaningless and isn't
4528 used in the comments.
4529 (closure): Update for rename.
4530 * src/closure.h (nritemset): Update extern to...
4531 (nitemset): ... this.
4532 * src/lalr.c (LA): Fix a typo in comments.
4533 * src/print.c (print_core): Update for rename to nitemset.
4534 * src/print_graph.c (print_graph): Likewise.
4535 * src/state.h: Fix some typos in header comments.
4536
4537 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
4538
4539 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
4540 still sticks to ASCII. Sorry!
4541
4542 * README-hacking: New file, taken mostly from coreutils, with changes
4543 for Bison. Contains much of the contents of:
4544 * README-cvs: Remove.
4545 * bootstrap: Sync from gnulib.
4546 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
4547 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
4548
4549 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
4550
4551 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
4552 Setzer.
4553 (Java Differences): Fix some typos.
4554 * THANKS: Add Sebastian Setzer.
4555
4556 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
4557
4558 * data/java.m4 (b4_single_class_if): Remove.
4559 (b4_abstract_if): Look at "%define abstract".
4560 (b4_lexer_if): New.
4561 (b4_union_name): Rename...
4562 (b4_yystype): ... to this. Map to "%define stype".
4563 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
4564 b4_maybe_throws): Fix quoting.
4565 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
4566 * data/lalr1.java (Lexer interface): Always define.
4567 (Lexer interface within parser class): Remove.
4568 (YYLexer class): New, used when "%code lexer" is present.
4569 (constructor): When "%code lexer" is used, pass %lex-param
4570 to the lexer constructor.
4571 (yylex, yyparse): Remove %lex-param from method invocations
4572 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
4573
4574 * doc/bison.texinfo (Java Bison Interface): Mention "%define
4575 abstract". Rename "%define union_name" to "%define stype".
4576 Rename method names according to previous patch.
4577 (Java Scanner Interface): Describe "%code lexer" instead of
4578 "%pure-parser" and "%define single_class".
4579 (Java Differences): Mention "%code lexer".
4580
4581 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
4582 Include scanner here, using macros from tests/local.at.
4583 (AT_DATA_CALC_Y): Remove final argument.
4584 (_AT_CHECK_JAVA_CALC): Likewise.
4585 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
4586 of %locations and %error-verbose.
4587 (main): Test with and without %lex-param.
4588 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
4589 (AT_BISON_OPTION_POPDEFS): Pop it.
4590
4591 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4592
4593 DJGPP spefic issue. Inhibit the use of disallowed characters for
4594 file name genertion on Win98, WinXP, etc. These are |<>":?*\
4595 and concern testsuite case 46.
4596 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
4597 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
4598 * djgpp/config.bat: Inhibit the use of disallowed characters.
4599
4600 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
4601
4602 Miscellaneous %define and %code cleanup.
4603 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
4604 values are interpreted.
4605 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
4606 documentation a little more.
4607 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
4608 muscle_percent_define_insert, muscle_percent_code_grow): New
4609 functions/macros.
4610 * src/muscle_tab.h (muscle_percent_define_insert,
4611 muscle_percent_code_grow): Prototype.
4612 * src/parse-gram.y (prologue_declaration): Use
4613 muscle_percent_define_insert and muscle_percent_code_grow when parsing
4614 %define and %code directives.
4615
4616 Make it easy to share %define boolean variables between the front-end
4617 and back-end. Though not used yet, this will be useful in the future.
4618 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
4619 Bison uses of names rather than just skeleton uses of names.
4620 (b4_percent_define_get, b4_percent_define_ifdef): Rename
4621 b4_percent_define_skeleton_variables(VARIABLE) to
4622 b4_percent_define_bison_variables(VARIABLE).
4623 (b4_percent_code_get, b4_percent_code_ifdef): Rename
4624 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
4625 b4_percent_code_bison_qualifiers(QUALIFIER).
4626 (b4_check_user_names_wrap): Update for renames.
4627 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
4628 muscle_percent_define_default): New functions mimicking
4629 b4_percent_define_flag_if and b4_percent_define_default.
4630
4631 For %define variables, report locations for invalid values and
4632 redefinitions.
4633 * data/bison.m4 (b4_percent_define_flag_if): Read
4634 b4_percent_define_loc(VARIABLE) to report the location of an invalid
4635 value for VARIABLE.
4636 (b4_percent_define_default): Save a special location in
4637 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
4638 must later be reported as invalid.
4639 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
4640 functions.
4641 (muscle_percent_define_insert): Record the location of VARIABLE in
4642 muscle percent_define_loc(VARIABLE), and use it to report the previous
4643 location for a redefinition.
4644 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
4645 (muscle_percent_define_default): Update like b4_percent_define_default.
4646 (muscle_grow_user_name_list): Rename to...
4647 (muscle_user_name_list_grow): ... this for consistency and use
4648 muscle_location_grow.
4649 * src/muscle_tab.h (muscle_location_grow): Prototype.
4650 * tests/input.at (%define errors): Update expected output.
4651 * tests/skeletons.at (%define boolean variables: invalid skeleton
4652 defaults): New test case.
4653
4654 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
4655
4656 * src/print.c (lookahead_set, state_default_rule): Remove.
4657 (print_reductions): Replace state_default_rule invocation with
4658 equivalent use of yydefact, which was computed in token_actions in
4659 tables.c.
4660 (print_results): Don't allocate lookahead_set.
4661
4662 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
4663
4664 * data/lalr1.java: Prefix all private members with yy.
4665
4666 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
4667
4668 Use YYFPRINTF instead of fprintf where appropriate. Reported by
4669 Sebastien Fricker at
4670 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
4671 * THANKS: Add Sebastien Fricker.
4672 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
4673 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
4674 accept a variable number of arguments.
4675
4676 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4677
4678 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
4679
4680 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4681
4682 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
4683 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
4684 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
4685
4686 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
4687
4688 Undo my 2007-02-07 change, switching back to the c-strcase module
4689 introduced in the 2007-02-03 change. Bruno Haible reported that
4690 the 2007-02-07 change would be dangerous in Turkish if we add a
4691 language whose name contains "i", since "i" is not lowercase "I"
4692 in Turkish.
4693 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
4694 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
4695 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
4696 * m4/.cvsignore: Remove strcase.m4.
4697 * src/getargs.c: Revert 2007-02-07 change, as follows.
4698 Include c-strcase.h.
4699 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
4700
4701 2007-02-11 Bruno Haible <bruno@clisp.org>
4702
4703 Enable the Java related testsuite tests when the only Java compiler
4704 found is a gcj < 4.3. Discussed at
4705 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
4706 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
4707
4708 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
4709
4710 * data/Makefile.am: Update copyright date.
4711 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
4712 yypstate_new returns NULL.
4713 (yypstate_new): Return NULL if malloc does.
4714 * src/reader.c (packgram): Move translation of rule actions from the
4715 beginning of packgram to...
4716 (check_and_convert_grammar): ... here right before packgram is invoked
4717 so it's easier to write more complete comments, and remove redundant
4718 code.
4719
4720 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
4721
4722 As in semantic actions, make @$ in %initial-action, %destructor, and
4723 %printer imply %locations.
4724 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
4725 scanning @$.
4726 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
4727 (@$ in %initial-action implies %locations,
4728 @$ in %destructor implies %locations,
4729 @$ in %printer implies %locations): ... these new test cases.
4730
4731 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
4732
4733 Undo most of the 2007-02-03 change, switching to the strcase module
4734 now that gnulib strcase has been fixed.
4735 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
4736 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
4737 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
4738 * m4/.cvsignore: Add strcase.m4.
4739 * src/getargs.c: Revert 2007-02-03 change, as follows.
4740 Don't include c-strcase.h.
4741 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
4742 strcasecmp has "unspecified behavior" outside the POSIX locale,
4743 but it works fine in practice if at least one argument is ASCII,
4744 as is the case in Bison.
4745
4746 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
4747
4748 * tests/java.at: Skip tests if only one of javac/java is present.
4749 Reported by Joel E. Denny.
4750 * tests/atlocal.in: Adjust copyright years.
4751
4752 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
4753
4754 * data/lalr1.java (Stack): Work around old verifiers that disallow
4755 access to the private fields of an inner class, from the outer class.
4756 We can make Stack's fields public because user code doesn't have access
4757 to the instance of Stack used by parse(). Reported by Paul Eggert.
4758
4759 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
4760
4761 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
4762 the right spot for these files?
4763 * bootstrap.conf (gnulib_modules): Add c-strcase.
4764 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
4765 c-strncasecmp.c.
4766 * src/getargs.c: Include c-strcase.h.
4767 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
4768 to avoid unspecified behavior.
4769
4770 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
4771
4772 * doc/bison.texinfo (Decl Summary): Correct typo.
4773
4774 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
4775
4776 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
4777 Complain if the value does not match empty, "true" or "false".
4778 * data/c++.m4: Adjust default definitions of %define variables.
4779 * data/java.m4: Adjust default definitions of %define variables.
4780 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
4781 to above behavior.
4782 * tests/input.at (Boolean %define variables): Test new behavior.
4783
4784 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
4785
4786 * NEWS: Mention java.
4787 * TODO: Remove things that are done.
4788 * bootstrap.conf: Add javacomp-script and javaexec-script.
4789 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
4790
4791 * data/Makefile.am: Add new files.
4792 * data/java-skel.m4: New.
4793 * data/java.m4: New.
4794 * data/lalr1.java: New.
4795
4796 * doc/bison.texinfo: Put "A Complete C++ Example" under
4797 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
4798 under Other Languages.
4799
4800 * src/getargs.c (valid_languages): Add Java.
4801 * src/getargs.h (struct bison_language): Update size of string fields.
4802
4803 * tests/Makefile.am: Add java.at.
4804 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
4805 * tests/java.at: New.
4806 * tests/testsuite.at: Include it.
4807
4808 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
4809
4810 Clean up.
4811 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
4812 at_directive_argv arguments so these no longer have to be global
4813 variables. Also, update the implementation for the following changes.
4814 (fail_for_at_directive_too_many_args,
4815 fail_for_at_directive_too_few_args): Add at_directive_name argument.
4816 (at_directive_name): Remove as at_directive_argv[0] will be used for
4817 this now.
4818 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
4819 for the directive name.
4820 (at_directive_argc, at_directive_argv): Make these local within
4821 skel_lex instead of global.
4822 (INITIAL): Update directive start action for above changes.
4823 (SC_AT_DIRECTIVE_ARG): Rename to...
4824 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
4825 (SC_AT_DIRECTIVE_SKIP_WS): Update.
4826 (scan_skel): Move yylex_destroy to...
4827 (skel_scanner_free): ... here.
4828 * tests/skeletons.at (installed skeleton file name): Rename to...
4829 (installed skeleton file names): ... this.
4830
4831 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
4832
4833 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4834 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
4835 Summary" not "Directives".
4836 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
4837 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
4838 since the former is now the more complete one.
4839 (Prologue Alternatives): Likewise and do the same for %defines.
4840 (Table of Symbols): Add summary of %code, add summary of %define, and
4841 move full %code documentation to...
4842 (Decl Summary): ... here for consistency with other entries in these
4843 sections.
4844 Move %define entry in order to keep this list alphabetized.
4845 Reword %define entry a little to put less emphasis on the skeleton
4846 concept, which most users shouldn't have to think about.
4847
4848 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
4849
4850 Adjust to recent gnulib changes.
4851 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
4852 Add string.h, string_.h, unistd_.h, wchar_.h.
4853 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
4854 * src/system.h: Don't include <stpcpy.h>; this is now done by
4855 <string.h>.
4856
4857 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
4858
4859 Simplify implementation of unqualified %code, implement macros for
4860 uniform treatment of boolean %define flags. Document %define.
4861 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
4862 b4_percent_code_ifdef): New.
4863 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
4864 * data/c++.m4: Define default value for global_tokens_and_yystype.
4865 * data/glr.cc: Likewise.
4866 * data/location.cc: Use b4_percent_define_flag_if.
4867
4868 * doc/bison.texinfo (Decl Summary): Document %define.
4869
4870 * src/parse-gram.y (Unqualified %code): Change muscle name to
4871 b4_percent_code().
4872 (content.opt): Default to empty.
4873
4874 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
4875
4876 Implement support for relative and absolute skeleton file names.
4877 Discussed starting at
4878 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
4879 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
4880 (Bison Options): Document in --skeleton entry.
4881 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
4882 full_skeleton can't necessarily hold all of pkgdatadir.
4883 If the specified skeleton file name contains a `/', don't prepend
4884 pkgdatadir.
4885 * src/parse-gram.y (prologue_declaration): If the specified skeleton
4886 file name contains a `/', prepend the grammar file directory.
4887 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
4888 * skeletons.at: New file.
4889 (relative skeleton file names): New test case.
4890 (installed skeleton file names): New test case.
4891 * tests/testsuite.at: Include skeletons.at.
4892
4893 * bootstrap: Update copyright to 2007.
4894
4895 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
4896
4897 * bootstrap: Remove occurrences of .#bootmp from the files.
4898
4899 2007-01-17 Akim Demaille <akim@epita.fr>
4900
4901 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
4902 nonterminals.
4903 Use per-type %printer.
4904
4905 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
4906
4907 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
4908 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4909 djgpp/config.site, src/files.c, src/files.h, src/main.c,
4910 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
4911 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
4912 tests/glr-regression.at, tests/input.at, tests/local.at,
4913 tests/output.at, tests/torture.at: Update copyright to 2007.
4914
4915 2007-01-16 Akim Demaille <akim@epita.fr>
4916
4917 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
4918 error code.
4919 (Calc++ Scanner): Exit with failure if we can't open the input
4920 file.
4921 Accept "-" standing for stdin.
4922 (Calc++ Top Level): Print the result only if the parsing was
4923 successful.
4924
4925 2007-01-16 Akim Demaille <akim@epita.fr>
4926
4927 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
4928
4929 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
4930 and Joel E. Denny <jdenny@ces.clemson.edu>
4931
4932 Clean up %define and %code implementation in M4 some. Most
4933 importantly, rename all related macros to be in the b4_percent_define
4934 and b4_percent_code namespaces. Also, complete support for `.' in
4935 %define variable names and %code qualifiers.
4936 * data/bison.m4 (b4_check_user_names): Check for special
4937 "SKELETON-NAMESPACE(name)" macros instead of using two nested
4938 m4_foreach loops.
4939 (b4_get_percent_define, b4_get_percent_code): Rename to...
4940 (b4_percent_define_get, b4_percent_code_get): ... these.
4941 Extend documentation with examples.
4942 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
4943 b4_percent_define_skeleton_variables and
4944 b4_percent_code_skeleton_qualifiers.
4945 Expect any value for the %define variable `foo' to be stored in the
4946 macro named `b4_percent_define(foo)'; expect any %code blocks for the
4947 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
4948 expect any unqualified %code blocks to be stored in a macro named
4949 `b4_percent_code_unqualified'.
4950 Use m4_indir so that %define variable names and %code qualifiers can
4951 contain `.', which is allowed by the grammar parser.
4952 (b4_percent_define_default): New macro to set a default value for a
4953 %define variable.
4954 (m4_wrap): Update wrapped code, and fix some underquoting.
4955 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
4956 Expect grammar uses of %define variables and %code qualifiers to be
4957 defined in b4_percent_define_user_variables and
4958 b4_percent_code_user_qualifiers.
4959 * data/c++.m4: Use b4_percent_define_default rather than
4960 m4_define_default. Fix some underquoting. Skeleton usage of %define
4961 variable define_location_comparison now implies skeleton usage of
4962 %define variable filename_type.
4963 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
4964 data/push.c, data/yacc.c: Update macro names.
4965 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
4966 muscle names.
4967
4968 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4969
4970 DJGPP specific issues.
4971
4972 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
4973 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
4974
4975 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4976
4977 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
4978 run parsers in all tests so that Valgrind is invoked during
4979 maintainer-check-valgrind.
4980 (Duplicate representation of merged trees): Free all semantic values.
4981 (Duplicated user destructor for lookahead): Likewise.
4982
4983 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4984
4985 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
4986 command-line prefix.
4987 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
4988 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
4989 miss Valgrind messages.
4990 (Exploding the Stack Size with Malloc): Likewise.
4991
4992 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
4993
4994 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
4995 locals. Reported by Juan Manuel Guerrero at
4996 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
4997 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
4998 Fix some indentation also.
4999 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
5000 explaining this issue.
5001
5002 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
5003 and Joel E. Denny <jdenny@ces.clemson.edu>
5004
5005 Simplify union and prologue handling, and escape union and lex/parse
5006 params with digraphs.
5007 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
5008 values to the empty string since these are no longer guaranteed
5009 initialized by the front-end.
5010 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
5011 braces around b4_user_stype since this is no longer done by the
5012 front-end.
5013 * src/files.c, src/files.h (pre_prologue_obstack,
5014 post_prologue_obstack): Remove.
5015 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
5016 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
5017 with digraphs. This fixes lex params and parse params.
5018 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
5019 * src/output.c (prepare): Remove muscle insertion of the prologues.
5020 (output): Remove freeing of pre_prologue_obstack and
5021 post_prologue_obstack.
5022 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
5023 than prologue_augment for prologue parsing so you don't need prologue
5024 obstacks.
5025 (grammar_declaration): For %union RHS, use `braceless' instead of
5026 "{...}" so that braces are already stripped and code is escaped with
5027 digraphs.
5028 * src/reader.c (prologue_augment): Remove.
5029 (reader): Remove initialization of pre_prologue_obstack and
5030 post_prologue_obstack.
5031 * src/reader.h (prologue_augment): Remove.
5032
5033 * data/c.m4: Remove stray parenthesis.
5034
5035 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5036
5037 Remove quotes from variables names in %define directives and from
5038 qualifiers in %code directives, and restrict the characters that are
5039 allowed in them to M4-friendly ones. For %define, continue to support
5040 the quoted form as a deprecated feature. Discussed starting at
5041 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
5042 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
5043 %code.
5044 * doc/bison.texinfo (Prologue Alternatives): Update.
5045 (Decl Summary): In %defines entry, update mention of `%code requires'
5046 and `%code provides'.
5047 (C++ Location Values): Update %define uses.
5048 (Calc++ Parser Interface): Likewise.
5049 (Calc++ Parser): Likewise, and update `%code requires' uses.
5050 (Table of Symbols): Update %code documentation.
5051 * src/parse-gram.y (prologue_declaration): For %define variables, use
5052 `variable' instead of `STRING'.
5053 (grammar_declaration): For %code qualifiers, use `ID' instead of
5054 `STRING'.
5055 (variable): New nonterminal that takes an `ID' or a `STRING'.
5056 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
5057 and %define uses.
5058 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
5059 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
5060 (%define errors): Update %define uses.
5061
5062 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5063
5064 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
5065 instead of muscle_insert for %define values so that M4-special
5066 characters are replaced with digraphs.
5067 * tests/input.at (%define errors): Extend to check weird values.
5068
5069 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5070
5071 Instead of having skeletons declare all valid %define variables and
5072 %code qualifiers, provide macros that retrieve the associated values
5073 and build these lists automatically. Thus Bison will now warn when a
5074 variable or qualifier is not used by the skeleton in the current
5075 invocation regardless of whether it might sometimes be used by that
5076 skeleton in other invocations. Also, move all %define value macros to
5077 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
5078 form, which is replaced by %code.
5079 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
5080 (b4_check_user_names): ... this, and change the series of valid name
5081 arguments to a single list argument for names used in the skeleton
5082 similar to the existing list argument for names used in the grammar.
5083 Warn instead of complaining.
5084 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
5085 values and %code code, to format %code code properly, and to build
5086 lists of all %define variables and %code qualifiers used in the
5087 skeleton: b4_skeleton_percent_define_variables and
5088 b4_skeleton_percent_code_qualifiers.
5089 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
5090 Remove, and...
5091 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
5092 the skeleton names lists can finish building first. In place of
5093 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
5094 expect the lists b4_user_percent_define_variables and
5095 b4_user_percent_code_qualifiers.
5096 * data/c++.m4: Where setting default values for b4_parser_class_name,
5097 b4_location_type, b4_filename_type, b4_namespace, and
5098 b4_define_location_comparison, update their names to the
5099 b4_percent_define_ namespace.
5100 * data/glr.c: Don't use b4_check_percent_define_variables and
5101 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5102 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
5103 (b4_parser_class_name, b4_namespace): Define these using
5104 b4_get_percent_define for parser_class_name and namespace.
5105 * data/location.cc: Use b4_get_percent_define.
5106 * data/push.c: Don't use b4_check_percent_define_variables and
5107 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5108 * data/yacc.c: Likewise, and don't call m4_exit in
5109 b4_use_push_for_pull_if or m4_wrap code will never execute.
5110 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
5111 Rename to...
5112 (muscle_grow_user_name_list): ... this for consistency with the
5113 terminology used in bison.m4.
5114 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
5115 %define variable names, and rename muscle used_percent_define_variables
5116 to user_percent_define_variables.
5117 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
5118 user_percent_code_qualifiers.
5119 (content): Remove.
5120 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
5121 {CODE} form is no longer accepted.
5122 * tests/input.at (Reject bad %code qualifiers): Rename to...
5123 (Reject unused %code qualifiers): ... this, and update test output.
5124 (%define error): Update test output.
5125
5126 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
5127
5128 Check for unrecognized %define variables similar to checking for
5129 unrecognized %code qualifiers. Check for redefined %define variables.
5130 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
5131 generalizes...
5132 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
5133 (b4_check_percent_define_variables): New, also wraps it.
5134 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
5135 variables using b4_check_percent_define_variables.
5136 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
5137 all those exercised in the test suite and all those listed in the
5138 `Default values' section of c++.m4. Are there others?
5139 * data/push.c, data/yacc.c: Declare no valid %define variables.
5140 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
5141 similar to muscle_find, but it works even when the muscle stores a
5142 const value.
5143 (muscle_grow_used_name_list): New function for constructing the used
5144 name list muscles that b4_check_for_unrecognized_names requires.
5145 * src/parse-gram.y (prologue_declaration): Warn if a variable is
5146 %define'd more than once. Define the b4_used_percent_define_variables
5147 muscle with muscle_grow_used_name_list.
5148 (grammar_declaration): Abbreviate %code code with
5149 muscle_grow_used_name_list.
5150 * tests/input.at (%define errors): New.
5151
5152 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5153
5154 Provide warn_at, complain_at, and fatal_at function callbacks to the
5155 skeletons, and use this for %code qualifier complaints.
5156 * data/bison.m4 (b4_error_at): New, invoked by...
5157 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
5158 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
5159 @fatal_at(...@) directives.
5160 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
5161 qualifiers in b4_used_percent_code_qualifiers and to use
5162 b4_complain_at.
5163 * src/location.c, src/location.h (boundary_set_from_string): New global
5164 function.
5165 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
5166 function.
5167 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
5168 to b4_used_percent_code_qualifiers.
5169 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
5170 function.
5171 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
5172 (lineno): Rename to...
5173 (out_lineno): ... this so I don't misunderstand it again.
5174 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
5175 here; these newlines are in the input but not the output file.
5176 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
5177 (at_directive_perform): ... this new static function, and add handling
5178 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
5179 directives.
5180 * tests/input.at (Reject bad %code qualifiers): Update test output with
5181 locations and extend.
5182
5183 * tests/output.at (Output file name: [, Output file name: ]): Remove
5184 bogus comment about these tests failing.
5185
5186 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5187
5188 Clean up b4_check_percent_code_qualifiers a little.
5189 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
5190 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
5191 documentation and add examples.
5192 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
5193 qualifiers here.
5194
5195 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
5196
5197 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
5198 unreliable -- especially when they're hidden inside another macro.
5199 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
5200 data/c.m4: Remove m4_divert(-1).
5201 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5202 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
5203 m4_divert_push(0) and m4_divert_pop(0).
5204 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
5205 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
5206 pushed and popped by m4sugar, should be first on the stack.
5207
5208 Provide warn, complain, and fatal function callbacks to the skeletons.
5209 This provides more flexibility than m4_fatal, improves the error
5210 message format, and captures messages for translation. Discussed
5211 starting at
5212 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
5213 * data/bison.m4 (b4_error): New, invoked by...
5214 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
5215 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
5216 directives. Because these M4 macros might be called when the current
5217 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
5218 the previous removal of uses of m4_divert, which caused trouble.
5219 (b4_check_percent_code_qualifiers): Use b4_complain instead of
5220 m4_fatal to report unrecognized %code qualifiers.
5221 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
5222 push parser requests.
5223 * data/glr.c: Use b4_complain instead of m4_fatal to report
5224 non-deterministic push parser requests.
5225 Update @output usage to @output(...@) form.
5226 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
5227 report missing %defines. Update @output usage to @output(...@) form.
5228 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
5229 @output(...@) form.
5230 * src/main.c (main): Invoke skel_scanner_free.
5231 * src/scan-skel.h (skel_scanner_free): Prototype new function.
5232 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
5233 obstack_for_string from flex-scanner.h.
5234 (YY_DECL): Use to declare skel_lex static.
5235 (decode_at_digraphs): Remove; now handled in the new
5236 SC_AT_DIRECTIVE_ARG start condition.
5237 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
5238 functions.
5239 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
5240 at_directive_argv): New static globals.
5241 (INITIAL): Use fail_for_invalid_at.
5242 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
5243 recognize the start of a generalized `@directive(...@)' form and
5244 start...
5245 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
5246 directive args (using the new obstack_for_string), to decode the
5247 contained @ diagraphs, and to perform the directive. It recognizes
5248 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
5249 @output(...@).
5250 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
5251 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
5252 `@,'.
5253 (scan_skel): Initialize obstack_for_string on the first call.
5254 (skel_scanner_free): New function to free obstack_for_string.
5255 * tests/input.at (Reject bad %code qualifiers): Update test output.
5256
5257 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
5258
5259 Consolidate the 4 prologue alternative directives (%code, %requires,
5260 %provides, and %code-top) into a single %code directive with an
5261 optional qualifier field. Discussed at
5262 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
5263 * NEWS (2.3a+): Rewrite the existing entry for the prologue
5264 alternatives.
5265 * doc/bison.texinfo (Prologue Alternatives): Update.
5266 (Decl Summary): Update to %code "requires" and %code "provides".
5267 (Calc++ Parser): Update to %code "requires".
5268 (Table of Symbols): Remove entries for %requires, %provides, and
5269 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
5270 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
5271 are replaced by b4_percent_code_provides and b4_percent_code_requires,
5272 which are skeleton-specific.
5273 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
5274 declare what %code qualifiers it supports and to complain if any other
5275 qualifiers were used in the grammar.
5276 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
5277 and b4_user_code([b4_percent_code_provides]) in place of
5278 b4_user_requires and b4_user_provides.
5279 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
5280 Add b4_user_code([b4_percent_code_top]) and
5281 b4_user_code([b4_percent_code]).
5282 Invoke b4_check_percent_code_qualifiers.
5283 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5284 PERCENT_REQUIRES): Remove.
5285 (grammar_declaration): Remove RHS's for %code-top, %provides, and
5286 %requires. Rewrite the %code RHS as the unqualified form defining the
5287 muscle b4_percent_code. Add another RHS for the qualified %code form,
5288 which defines muscles of the form b4_percent_code_QUALIFIER and the
5289 b4_used_percent_code_qualifiers muscle.
5290 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5291 PERCENT_REQUIRES): Remove.
5292 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
5293 %code "requires" and %code "provides".
5294 * tests/input.at (Reject bad %code qualifiers): New.
5295
5296 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5297
5298 Use the new code_props interface for destructors and printers.
5299 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
5300 printer_location members, and change the type of the destructor and
5301 printer members to code_props.
5302 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
5303 symbol_printer_get, semantic_type_destructor_set,
5304 semantic_type_printer_set, default_tagged_destructor_set,
5305 default_tagless_destructor_set, default_tagged_printer_set,
5306 default_tagless_printer_set): Use code_props in arguments and return
5307 types in place of char const * and location.
5308 (symbol_destructor_location_get, symbol_printer_location_get): Remove
5309 since the locations are now contained in the return of
5310 symbol_destructor_get and symbol_printer_get.
5311 * src/output.c (symbol_destructors_output, symbol_printers_output):
5312 Replace with...
5313 (symbol_code_props_output): ... this to eliminate duplicate code.
5314 (output_skeleton): Update to use symbol_code_props_output.
5315 * src/reader.c (symbol_should_be_used): Update use of
5316 symbol_destructor_get.
5317 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5318 Update uses of the various _destructor_set and _printer_set functions.
5319 * src/symtab.c: (default_tagged_destructor_location,
5320 default_tagless_destructor_location, default_tagged_printer_location,
5321 default_tagless_printer_location): Remove since we...
5322 (default_tagged_destructor, default_tagless_destructor,
5323 default_tagged_printer, default_tagless_printer): ... change the type
5324 of these to code_props.
5325 (symbol_new, semantic_type_new, symbol_destructor_set,
5326 semantic_type_destructor_set, symbol_destructor_get,
5327 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
5328 symbol_check_alias_consistency, default_tagged_destructor_set,
5329 default_tagless_destructor_set, default_tagged_printer_set,
5330 default_tagless_printer_set): Update.
5331 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
5332 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
5333 code_props members.
5334 (symbol_print): Use SYMBOL_CODE_PRINT.
5335
5336 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5337
5338 Use the new code_props interface for rule actions.
5339 * src/symlist.h (symbol_list): Replace action, action_location, and
5340 used members with a code_props action_props member.
5341 * src/reader.c (symbol_should_be_used, grammar_rule_check,
5342 grammar_midrule_action, grammar_current_rule_merge_set,
5343 grammar_current_rule_symbol_append, packgram): Update.
5344 * src/scan-code.h (translate_rule_action): Remove, no longer used.
5345 * src/scan-code.l (handle_action_dollar): Update.
5346 (translate_rule_action): Remove, no longer used.
5347 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
5348
5349 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5350
5351 Use the new code_props interface in parse-gram.y.
5352 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
5353 Update all uses of translate_* functions to use the new code_props
5354 interface and to use gram_scanner_last_string_free and
5355 code_scanner_last_string_free where possible.
5356 (grammar_declaration): symbol_list_destructor_set and
5357 symbol_list_printer_set now perform the translation, so don't do it
5358 here. Use gram_scanner_last_string_free where possible.
5359 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
5360 translate_code): Remove, no longer used.
5361 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
5362 symbol_list_printer_set): Perform code translation here rather than
5363 depending on the caller to do so.
5364
5365 * src/symlist.h (struct symbol_list): Correct some documentation typos.
5366 * src/scan-gram.h (gram_last_string): Remove declaration.
5367 * src/scan-gram.l (last_string): Declare it static.
5368
5369 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5370
5371 Encapsulate code properties and related functionality for the various
5372 destructors, printers, and actions into a code_props structure and
5373 interface. This patch merely implements code_props in scan-code.h and
5374 scan-code.l. Future patches will rewrite other modules to use it.
5375 Discussed starting at
5376 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
5377 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
5378 consistently initialize const structs that have an empty location
5379 field.
5380 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
5381 to ensure consistency.
5382 * src/scan-code.h (code_props): New structure.
5383 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
5384 function, macro, and const global variable for initializing a
5385 code_props with no code.
5386 (code_props_plain_init, code_props_symbol_action_init,
5387 code_props_rule_action_init, code_props_translate_code): The rest of
5388 the new code_props functional interface. Among other things, the init
5389 functions set the code_props kind field so that
5390 code_props_translate_code will know whether to behave like
5391 translate_symbol_action, translate_rule_action, or translate_code.
5392 These old translate functions must remain until all other modules are
5393 updated to use the new code_props interface.
5394 (code_scanner_last_string_free): New function similar to
5395 gram_scanner_last_string_free.
5396 (code_scanner_free): Add documentation.
5397 * src/scan-code.l: Implement the new interface.
5398 (code_lex): Make it static, add a code_props* argument, and remove the
5399 rule argument.
5400 (last_string): New static global similar to the one in scan-gram.l.
5401 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
5402 instead of rule.
5403 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
5404 code_props since Bison may one day use this information for destructors
5405 and printers.
5406 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
5407 (handle_action_dollar): Use symbol_list_n_get and set used flag
5408 directly since symbol_list_n_used_set is removed.
5409 (translate_action): Add a code_props* argument and remove the rule,
5410 action, and location arguments. Pass the code_props* on to code_lex.
5411 (translate_rule_action, translate_symbol_action, translate_code):
5412 Rewrite as wrappers around the new code_props interface.
5413 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
5414 it would eventually need to break the encapsulation of code_props.
5415
5416 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5417
5418 * etc/.cvsignore: New.
5419
5420 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5421
5422 Add maintainer-push-check to run maintainer-check using push parsing in
5423 place of pull parsing where available.
5424 * Makefile.am (maintainer-push-check): New.
5425 * data/bison.m4 (b4_use_push_for_pull_if): New.
5426 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
5427 appropriately based on their existing values.
5428 (yypush_parse): Don't print push-parser-specific diagnostics if push
5429 parsing is being used in place of pull parsing.
5430 * data/yacc.c: If push parsing should replace pull parsing, redirect to
5431 push.c.
5432 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
5433 variable, and insert b4_use_push_for_pull_flag into muscles.
5434 * tests/Makefile.am (maintainer-push-check): New.
5435
5436 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5437
5438 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
5439 (whether successful or failed) so that yypush_parse can be invoked
5440 again to start a new parse using the same yypstate.
5441 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
5442 check multiple yypull_parse invocations on the same yypstate. For pull
5443 mode, extend to check multiple yyparse invocations.
5444 (Exploding the Stack Size with Alloca): Extend to try with
5445 %push-pull-parser.
5446 (Exploding the Stack Size with Malloc): Likewise.
5447
5448 * tests/calc.at (Simple LALR Calculator): Don't specify
5449 %skeleton "push.c" since %push-pull-parser implies that now.
5450 * tests/headers.at (export YYLTYPE): Don't check for the push
5451 declarations. Otherwise, this test case can't be used to see if push
5452 mode can truly emulate pull mode.
5453 * tests/input.at (Torturing the Scanner): Likewise.
5454 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
5455 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
5456 AT_YACC_IF, which now includes the case of push mode since %skeleton
5457 need not be used for push mode. This will be more intuitive once
5458 push.c is renamed to yacc.c.
5459
5460 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5461
5462 For push mode, convert yyparse from a macro to a function, invoke yylex
5463 instead of passing a yylexp argument to yypull_parse, and don't
5464 generate yypull_parse or yyparse unless %push-pull-parser is declared.
5465 Discussed starting at
5466 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
5467 * data/bison.m4 (b4_pull_if): New.
5468 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
5469 * data/push.c: Improve M4 quoting a little.
5470 (b4_generate_macro_args, b4_parenthesize): Remove.
5471 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
5472 any time a pull parser is requested.
5473 Don't #define this as a wrapper around yypull_parse. Instead, when
5474 both push and pull are requested, make it a function that does that
5475 same thing.
5476 (yypull_parse): If there's a b4_prefix, #define this to
5477 b4_prefix[pull_parse] when both push and pull are requested.
5478 Don't define this as a function unless both push and pull are
5479 requested.
5480 Remove the yylexp argument and hard-code yylex invocation instead.
5481 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
5482 %push-parser.
5483 * src/getargs.c (pull_parser): New global initialized to true.
5484 * getargs.h (pull_parser): extern it.
5485 * src/output.c (prepare): Insert pull_flag muscle.
5486 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
5487 (prologue_declaration): Set both push_parser and pull_parser = true for
5488 %push-pull-parser. Set push_parser = true and pull_parser = false for
5489 %push-parser.
5490 * src/scan-gram.l: Don't accept %push_parser as an alternative to
5491 %push-parser since there's no backward-compatibility concern here.
5492 Scan %push-pull-parser.
5493 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
5494 instead of %push-parser.
5495 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
5496 prototype it in the module that calls yyparse.
5497 * tests/input.at (Torturing the Scanner): Likewise.
5498 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
5499
5500 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
5501
5502 Update etc/bench.pl. Optimize push mode a little (the yyn change
5503 deserves most of the credit).
5504 * Makefile.am (SUBDIRS): Add etc subdirectory.
5505 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
5506 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
5507 yytoken, yyval, and yyloc declarations to...
5508 (yyparse or yypush_parse): ... here to improve performance. For
5509 yypush_parse invocations after the first, be sure to assign yyn its old
5510 value again.
5511 (yypstate_new): Don't bother initializing the yyresult field since the
5512 initial value isn't used.
5513 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
5514 remove the #define that, in push mode, set it to yyps->NAME.
5515 * etc/Makefile.am: New.
5516 * etc/bench.pl: Remove and build it instead from...
5517 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
5518 "tests/bison" from the build directory by default rather than just
5519 invoking "bison" from $PATH.
5520 (calc_grammar): Update push parser code: don't declare yylval globally,
5521 don't define yyparse_wrapper, and don't #define yyparse.
5522 (bench_grammar): Update to check all working combinations of yacc.c,
5523 push.c, impure, pure, pull, and push.
5524
5525 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5526
5527 For push mode, add pull wrappers around yypush_parse.
5528 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
5529 (yypull_parse): New function wrapping yypush_parse.
5530 (yyparse): New #define wrapping yypull_parse.
5531 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
5532 is declared.
5533 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
5534 prototype yylex in the module that calls yyparse, and don't prototype
5535 yyparse there. Otherwise, the yyparse expansion won't compile.
5536 * tests/input.at (Torturing the Scanner): Likewise.
5537
5538 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5539
5540 Enable push parsers to operate in impure mode. Thus, %push-parser no
5541 longer implies %pure-parser. The point of this change is to move
5542 towards being able to test the push parser code by running the entire
5543 test suite as if %push-parser had been declared.
5544 * data/push.c (yypush_parse): For impure mode, remove the
5545 yypushed_char, yypushed_val, and yypushed_loc arguments.
5546 Instead, declare these as local variables initialized to the global
5547 yychar, yylval, and yylloc.
5548 For the first yypush_parse invocation only, restore the initial values
5549 of these global variables when it's time to read a token since they
5550 have been overwritten.
5551 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
5552 %push-parser.
5553 * tests/calc.at (Simple LALR(1) Calculator): Always declare
5554 %pure-parser along with %push-parser since this test case was designed
5555 for pure push parsers.
5556 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
5557 (AT_YACC_OR_PUSH_IF): New.
5558 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
5559 add a note that it's still wrong for some cases (as it has been for a
5560 while).
5561 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
5562 %push-parser no longer implies %pure-parser.
5563
5564 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5565
5566 Remove some unnecessary differences between the pull parser code and
5567 the push parser code. This patch enables yynerrs in push mode.
5568 * data/push.c: Reformat M4 a little.
5569 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
5570 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
5571 because push mode is on. Instead, if pure mode is on, move yynerrs
5572 to...
5573 (b4_declare_parser_state_variables): ... here.
5574 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
5575 to yyps->NAME so it can be used in yypush_parse.
5576 (yypush_parse): Don't omit uses of yynerrs in push mode.
5577
5578 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5579
5580 Fix bug such that the first pushed token's value and location are
5581 sometimes overwritten (sometimes by %initial-action) before being used.
5582 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
5583 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
5584 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
5585 more closely mimic the pull parser logic.
5586 Don't copy the pushed token to yychar, yylval, and yylloc until it's
5587 time to read a token, which is after any initialization of yylval and
5588 yylloc.
5589 (gottoken): Rename label to...
5590 (yyread_pushed_token): ... for clarity and to avoid infringing on the
5591 user namespace.
5592
5593 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5594
5595 Rearrange initialization of the parser state variables so that the
5596 skeleton doesn't have to have a copy for pull mode and another for push
5597 mode. This patch also fixes at least a bug such that yylloc was not
5598 initialized (with b4_location_initial_line and
5599 b4_location_initial_column) upon calling yypush_parse. However, that
5600 initialization now overwrites the first token's location;
5601 %initial-action assigning @$ already did the same thing, and both bugs
5602 will be fixed in a later patch.
5603 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
5604 (b4_declare_parser_state_variables): Remove initialization of yytoken,
5605 yyss, yyvs, yyls, and yystacksize.
5606 (yypstate_new): Remove initialization of some yypstate fields: yystate,
5607 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
5608 yylsp.
5609 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
5610 yyps->NAME so it can be used in yypush_parse.
5611 (yyparse or yypush_parse): For yypush_parse, don't print the
5612 "Starting parse" diagnostic for invocations after the first.
5613 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
5614 yypush_parse, only do it for the first invocation.
5615 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
5616 initialization to occur in yypush_parse but only on the first
5617 invocation.
5618
5619 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5620
5621 * data/push.c: Add CPP guards around push parser declarations in both
5622 the header and the code file.
5623 In the code file, move the push parser declarations to the same place
5624 they appear in the header file.
5625 Clean up the M4 some, especially the inconsistent underquoting in
5626 some b4_c_function_def and b4_c_function_decl uses.
5627
5628 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5629
5630 Encapsulate the push parser state variables into an M4 macro so the
5631 push skeleton doesn't have to list them again for pull mode's yyparse.
5632 For push mode, remove yypush_parse's local equivalents of these
5633 variables to eliminate unnecessary copying between the two sets at
5634 run-time. This patch also fixes at least a bug related to multiple
5635 %initial-action invocations in push mode.
5636 * data/push.c (b4_declare_parser_variables): Rename to...
5637 (b4_declare_scanner_communication_variables): ... this for clarity and
5638 update both uses.
5639 (b4_declare_yyparse_variables): Remove and move its contents to the one
5640 spot where it was invoked.
5641 (b4_declare_parser_state_variables): New macro containing the parser
5642 state variables required by push mode.
5643 (struct yypstate): Replace all fields but yynew with
5644 b4_declare_parser_state_variables.
5645 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
5646 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
5647 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
5648 (yyparse or yypush_parse): For yyparse in pull mode, replace local
5649 parser state variable declarations with
5650 b4_declare_parser_state_variables.
5651 Don't initialize parser state variables when calling yypush_parse since
5652 yypstate_new already does that.
5653 Invoke the user's initial action only upon the first yypush_parse
5654 invocation.
5655 Remove all code that copies between the local parser state variables
5656 and the yypstate.
5657
5658 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5659
5660 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
5661 prevent a name collision in a future patch where these names will
5662 sometimes be #define'd.
5663 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
5664 since it no longer has the same name as the existing argument.
5665 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
5666
5667 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5668 and Joel E. Denny <jdenny@ces.clemson.edu>
5669
5670 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
5671 that the argument is case-insensitive, and there's no `=' here.
5672 For the %skeleton entry, mention that %language is better.
5673 (Bison Options): Likewise for --language and --skeleton. Move the
5674 --skeleton entry so that the `Tuning the parser' section is sorted
5675 alphabetically on long options.
5676 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
5677 %language directive in detail here; cross-reference the %language
5678 documentation instead.
5679 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
5680 `%require "2.3b"' so that the example is always up-to-date.
5681 (Table of Symbols): Add entries for %language and %skeleton.
5682 * examples/extexi (normalize): Instead of replacing every %require
5683 argument with the current Bison version, just substitute for
5684 `@value{VERSION}'. This guarantees that we're testing what actually
5685 appears in the documentation.
5686 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
5687 rather than `@VERSION@'.
5688
5689 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
5690
5691 * NEWS: Reword the %language news a bit, and put it earlier.
5692
5693 * src/getargs.c (skeleton_arg): Last arg is now location const *.
5694 Rewrite to simplify the logic.
5695 (language_argmatch): Likewise.
5696 (program_name): We now own this var.
5697 * src/getargs.h (struct bison_language): Use char[] rather than
5698 const char *.
5699
5700 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
5701 Java is supported.
5702 * src/complain.c (program_name): Remove decl; no longer needed.
5703 * src/main.c (program_name): Remove; now belongs to getargs.
5704
5705 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
5706
5707 * NEWS: Document %language.
5708
5709 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
5710
5711 * data/c-skel.m4, data/c++-skel.m4: New files.
5712 * data/glr.c: Complain on push parsers.
5713
5714 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
5715 over %skeleton.
5716 (Decl Summary): Document %language and %skeleton.
5717 (Command line): Document -L.
5718
5719 * examples/extexi: Rewrite %require directive.
5720 * examples/calc++/Makefile.am: Pass VERSION to extexi.
5721
5722 * src/files.c (compute_exts_from_gc): Look in language structure
5723 for .y extension.
5724 (compute_file_name_parts): Check whether .tab should be added.
5725 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
5726 (language, skeleton_arg, language_argmatch): New.
5727 (long_options): Add --language.
5728 (getargs): Use skeleton_arg, add -L/--language.
5729 * src/getargs.h: Include location.h.
5730 (struct bison_language, language, skeleton_arg, language_argmatch): New.
5731 * src/output.c (prepare): Pick default skeleton from struct language.
5732 Don't dispatch C skeletons here.
5733 * src/parse-gram.y (PERCENT_LANGUAGE): New.
5734 (prologue_declaration): Add "%language" rule, use skeleton_arg.
5735 * src/scan-gram.l ("%language"): New rule.
5736
5737 * tests/calc.at: Test %skeleton and %language.
5738 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
5739 (AT_GLR_IF): Look for %skeleton "glr.cc".
5740 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
5741 (AT_YACC_IF): Reject %language.
5742
5743 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
5744
5745 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
5746 since it wasn't used; only the typedef name 'semantic_type' is needed.
5747 Also, omit trailing white space.
5748
5749 * bootstrap: Sync from coreutils.
5750 (gnulib_extra_files): Add build-aux/announce.gen.
5751 (slurp): Adjust .gitignore files like .cvsignore files.
5752 * build-aux/announce-gen: Remove from CVS, since bootstrap
5753 now creates this.
5754
5755 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
5756
5757 Make %push-parser imply %pure-parser. This fixes several bugs; see
5758 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
5759 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
5760 pure_parser = true.
5761 * data/push.c: Don't bother testing b4_push_if when deciding whether
5762 to expand b4_declare_parser_variables globally.
5763 (yypush_parse): Likewise in here.
5764
5765 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
5766 (yy_reduce_print): Reformat M4 for readability.
5767
5768 2006-12-15 Bob Rossi <bob@brasko.net>
5769 and Joel Denny <jdenny@ces.clemson.edu>
5770
5771 * data/push.c (yypstate): Add typedef, and update all uses of
5772 struct yypstate to just yypstate.
5773 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
5774
5775 2006-12-14 Bob Rossi <bob@brasko.net>
5776
5777 * data/push.c (yypush_parse): Declare prototype regardless of
5778 %locations option.
5779
5780 2006-12-14 Bob Rossi <bob@brasko.net>
5781
5782 * data/push.c (yyparse): Remove the prototype and the #define when in
5783 push-parser mode.
5784
5785 2006-12-13 Bob Rossi <bob@brasko.net>
5786
5787 * data/push.c (yypstate_init): Rename to...
5788 (yypstate_new): ... this and use b4_c_function_def.
5789 (yypstate_delete): New.
5790 (yypush_parse): Change parameters yynval and yynlloc to be const.
5791 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
5792 yypstate_delete functions.
5793
5794 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
5795
5796 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
5797 strange test case titles. Reported by Bob Rossi.
5798
5799 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
5800
5801 * TODO: Add pointer to Sylvain Schmitz's work on static detection
5802 of potential ambiguities in GLR grammers.
5803
5804 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
5805
5806 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
5807 `bison ', use m4_index instead of m4_substr since chopping up a string
5808 containing M4-special characters causes problems here.
5809
5810 Fix a couple of bugs related to special characters in user-specified
5811 file names, and make it easier for skeletons to compute output file
5812 names with the same file name prefix as Bison-computed output file
5813 names.
5814 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
5815 b4_parser_file_name and b4_spec_defines_file instead of
5816 @output_parser_name@ and @output_header_name@, which are now redundant.
5817 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
5818 b4_parser_file_name, b4_spec_defines_file, and the new
5819 @basename(FILENAME@) instead of @output_parser_name@ and
5820 @output_header_name@, which inappropriately escaped the file names as
5821 C string literals.
5822 * src/files.c (all_but_ext): Remove static qualifier.
5823 (compute_output_file_names): Move `free (all_but_ext)' to...
5824 (output_file_names_free): ... here since all_but_ext is needed later.
5825 * src/files.h (all_but_ext): Extern.
5826 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
5827 exactly what MUSCLE_INSERT_STRING used to do.
5828 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
5829 characters are escaped properly.
5830 * src/output.c (prepare): Define muscle file_name_all_but_ext as
5831 all_but_ext.
5832 For pkgdatadir muscle, maintain previous functionality by using
5833 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
5834 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
5835 digraphs would never be expanded. Hopefully no one has M4-special
5836 characters in his Bison installation path.
5837 * src/scan-skel.l: Don't parse @output_header_name@ and
5838 @output_parser_name@ anymore since they're now redundant.
5839 In @output, use decode_at_digraphs.
5840 Parse a new @basename command that invokes last_component.
5841 (decode_at_digraphs): New.
5842 (BASE_QPUTS): Remove unused.
5843 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
5844 (Output file name): New tests.
5845
5846 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
5847
5848 Warn about output files that are generated by the skeletons and that
5849 conflict with other output files.
5850 * data/glr.c: Don't generate the header file here when glr.cc does.
5851 * src/files.c (file_names, file_names_count): New static globals.
5852 (compute_output_file_names): Invoke output_file_name_check for files
5853 not generated by the skeletons and remove existing checks.
5854 (output_file_name_check): New function that warns about conflicting
5855 output file names.
5856 (output_file_names_free): Free file_names.
5857 * src/files.h (output_file_name_check): Declare.
5858 * src/scan-skel.l: Invoke output_file_name_check for files generated by
5859 the skeletons.
5860 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
5861 (Conflicting output files): New tests.
5862
5863 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5864
5865 * doc/bison.texinfo: Fix a couple of typos.
5866
5867 2006-12-08 Bob Rossi <bob@brasko.net>
5868
5869 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
5870 Rename to...
5871 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
5872 update all uses.
5873 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
5874 (yypush_parse): Rename yypvars argument to yyps and remove redundant
5875 local pv.
5876 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
5877 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
5878
5879 2006-12-07 Bob Rossi <bob@brasko.net>
5880 and Joel Denny <jdenny@ces.clemson.edu>
5881
5882 * data/push.c (yypvarsinit): Change return type from void* to struct
5883 yypvars*. No longer cast to void* on return.
5884 (struct yypvars): Remove yylen since it need not be remembered between
5885 yypushparse invocations.
5886 (yypushparse): Don't copy between yylen and pv->yylen.
5887
5888 2006-12-05 Bob Rossi <bob@brasko.net>
5889
5890 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
5891 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
5892 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
5893 (struct yypvars): Remove b4_declare_parser_variables.
5894 (yypvarsinit): Remove init code for removed variables.
5895 (global scope): Do not declare b4_declare_parser_variables if
5896 push or pure mode.
5897 (yypushparse): Add b4_declare_parser_variables.
5898 Init new local variables, and remove init code for removed
5899 yypvars variables.
5900 (yyparse): Delete.
5901 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
5902 and yyparse for other modes.
5903 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
5904 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
5905 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
5906 (AT_PURE_LEX_IF): True if pure or push parser.
5907
5908 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
5909
5910 Document Yacc prologue alternatives and default %destructor's and
5911 %printer's as experimental. Don't mention Java yet. Discussed at
5912 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
5913 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
5914 (2.3a): Annotate this entry to say the old forms of these features were
5915 also experimental.
5916 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
5917 Table of Symbols): Say they're experimental. Comment out any mention
5918 of Java (we'll want this back eventually).
5919
5920 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
5921
5922 Support a file name argument to %defines. Deprecate `=' in
5923 %file-prefix, %name-prefix, and %output. Discussed at
5924 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
5925 * NEWS (2.3a+): Mention.
5926 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
5927 form of %defines, and remove `=' from entries for %file-prefix,
5928 %name-prefix, and %output.
5929 * src/parse-gram.y (prologue_declaration): Implement.
5930 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
5931 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
5932 all but one occurrence of %name-prefix.
5933 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
5934 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
5935 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
5936 occurrence of each of %file-prefix and %output. Add check for %defines
5937 with argument.
5938 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
5939 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
5940 Remove the `=' from %output.
5941
5942 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
5943
5944 Don't escape $ in test case titles since Autoconf 2.61 now does that
5945 correctly.
5946 * tests/actions.at (Default %printer and %destructor are not for error
5947 or $undefined): Here.
5948 (Default %printer and %destructor are not for $accept): Here.
5949 * tests/input.at (Invalid $n and @n): Here.
5950
5951 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
5952
5953 Rename <!> to <>. Discussed starting at
5954 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
5955 * NEWS (2.3a+): Update.
5956 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
5957 Update.
5958 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
5959 * src/scan-gram.l (INITIAL): Implement.
5960 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
5961 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
5962 comment.
5963 * tests/actions.at (Default tagless %printer and %destructor,
5964 Default tagged and per-type %printer and %destructor,
5965 Default %printer and %destructor are not for error or $undefined,
5966 Default %printer and %destructor are not for $accept,
5967 Default %printer and %destructor for mid-rule values): Update.
5968 * tests/input.at (Default %printer and %destructor redeclared,
5969 Unused values with default %destructor): Update.
5970
5971 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
5972
5973 Don't let %prec take a nonterminal.
5974 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
5975 token.
5976 * tests/input.at (%prec takes a token): New test checking that %prec
5977 won't take a nonterminal.
5978
5979 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5980
5981 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
5982 it was double-quoted.
5983 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
5984 grammar is maintained with Bison's highest standards.
5985 * src/getargs.c: Fix some typos in Doxygen comments.
5986
5987 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5988
5989 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
5990 later. Reported by Paul Eggert in
5991 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
5992 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
5993 * src/scan-code.l (translate_action): Don't bother invoking
5994 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
5995 (code_scanner_free): Instead of invoking
5996 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
5997 which frees more.
5998 * src/scan-gram.l (gram_scanner_free): Likewise.
5999 * src/scan-skel.l (scan_skel): Likewise.
6000
6001 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
6002
6003 * src/files.c (tr): Change return type to void.
6004 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
6005 has been called previously for the same key.
6006 (muscle_find): Return storage instead of value so that
6007 --enable-gcc-warnings doesn't produce warnings that the return discards
6008 const. aver that the value and storage are the same since storage
6009 could potentially be NULL when value is not.
6010 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
6011 same as 0.
6012
6013 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6014
6015 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
6016 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
6017 us a slightly cleaner distribution, and also works.
6018 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
6019 gnulib changes.
6020
6021 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
6022 and Paul Eggert <eggert@cs.ucla.edu>
6023
6024 Don't let Bison leak memory except when it complains.
6025 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
6026 (spec_defines_file, dir_prefix): Now char *, not const char *,
6027 since they are freed.
6028 * src/files.c: Likewise.
6029 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
6030 Likewise.
6031 (tr): Now operates in-place. All uses changed.
6032 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
6033 values.
6034 (compute_file_name_parts, compute_output_file_names): Don't store
6035 read-only data in variables that will be freed.
6036 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
6037 src_extension, and header_extension.
6038 (output_file_names_free): New public function to free
6039 spec_verbose_file, spec_graph_file, spec_defines_file,
6040 parser_file_name, and dir_prefix.
6041 * src/getargs.c (getargs): Don't store read-only data in variables that
6042 will be freed.
6043 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
6044 (which previously existed but was unused), and quotearg_free.
6045 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
6046 * src/muscle_tab.c: Likewise.
6047 (muscle_entry): Make the value char const *,
6048 and add a new storage member that is char * and can be freed.
6049 (muscle_entry_free): New private function.
6050 (muscle_init): Use it instead of free.
6051 (muscle_insert, muscle_grow): Update and use new storage member.
6052 (muscle_code_grow): Free the string passed to muscle_grow
6053 since it's not needed anymore.
6054 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
6055 add a new `char *code' member.
6056 ("{...}"): Declare semantic type as code.
6057 * src/scan-code.h (translate_rule_action):
6058 (translate_symbol_action, translate_code, translate_action): Return
6059 `char const *' rather than `char *' since external code should not free
6060 these strings.
6061 * src/scan-code.l: Likewise.
6062 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
6063 which is "{...}" in the parser.
6064 * tests/Makefile.am (maintainer-check-valgrind): Set
6065 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
6066 Valgrind.
6067 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
6068 complain.
6069 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
6070 expecting a non-zero exit status sets --leak-check=summary and
6071 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
6072 this case, and we don't want to hear about it.
6073
6074 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6075
6076 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
6077 instead of from the template, to simplify configuration a bit.
6078 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
6079 and m4/wint_t.m4, as they are needed with the latest gnulib.
6080
6081 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6082
6083 Disable unset/unused mid-rule value warnings by default, and recognize
6084 --warnings=midrule-values to enable them. Discussed starting at
6085 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
6086 * NEWS (2.3a+): Mention.
6087 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
6088 warnings): Add entry for midrule-values subargument.
6089 * src/reader.c (symbol_should_be_used): Don't return true just because
6090 the value is a set/used mid-rule value unless
6091 --warnings=midrule-values was specified.
6092 * tests/input.at (Unused values, Unused values before symbol
6093 declarations): Run tests with and without --warnings=midrule-values.
6094
6095 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
6096 than LIST_FREE directly.
6097
6098 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6099
6100 Finish implementing --warnings=error, which should not be implied by
6101 --warnings=all (or by its synonyms -W and --warnings without
6102 subarguments).
6103 * src/complain.c (set_warning_issued): New function to report that
6104 warnings are being treated as errors and to record an error if so.
6105 Invoke...
6106 (warn_at, warn): ... here.
6107 * src/getargs.c (warnings_args, warnings_types): Reorder so that
6108 "error - warnings are errors" does not appear above "all - all of the
6109 above".
6110 (getargs): For -W and --warnings without subarguments, don't let
6111 FLAGS_ARGMATCH set warnings_error in warnings_flag.
6112 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
6113
6114 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6115
6116 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
6117 empty subargument list. For example: `bison --warnings= parser.y'.
6118
6119 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6120
6121 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
6122 the parser header file so that gcc doesn't warn.
6123
6124 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6125
6126 Split the default %destructor/%printer into two kinds: <*> and <!>.
6127 Discussed starting at
6128 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
6129 * NEWS (2.3a+): Mention.
6130 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
6131 previous change today related to mid-rules.
6132 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
6133 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
6134 (TYPE_TAG_ANY): Add as <*>.
6135 (TYPE_TAG_NONE): Add as <!>.
6136 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
6137 for <*> and <!>.
6138 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
6139 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
6140 * src/symlist.c (symbol_list_default_new): Split into tagged and
6141 tagless versions.
6142 (symbol_list_destructor_set, symbol_list_printer_set): Split
6143 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
6144 SYMLIST_DEFAULT_TAGLESS.
6145 * src/symlist.h: Update symbol_list_default*_new prototypes.
6146 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
6147 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
6148 * src/symtab.c (default_destructor, default_destructor_location,
6149 default_printer, default_printer_location): Split each into tagged and
6150 tagless versions.
6151 (symbol_destructor_get, symbol_destructor_location_get,
6152 symbol_printer_get, symbol_printer_location_get): Implement tagged
6153 default and tagless default cases.
6154 (default_destructor_set, default_printer_set): Split each into tagged
6155 and tagless versions.
6156 * src/symtab.h: Update prototypes.
6157 * tests/actions.at (Default %printer and %destructor): Rename to...
6158 (Default tagless %printer and %destructor): ... this, and extend.
6159 (Per-type %printer and %destructor): Rename to...
6160 (Default tagged and per-type %printer and %destructor): ... this, and
6161 extend.
6162 (Default %printer and %destructor for user-defined end token): Extend.
6163 (Default %printer and %destructor are not for error or $undefined):
6164 Update.
6165 (Default %printer and %destructor are not for $accept): Update.
6166 (Default %printer and %destructor for mid-rule values): Extend.
6167 * tests/input.at (Default %printer and %destructor redeclared): Extend.
6168 (Unused values with default %destructor): Extend.
6169
6170 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6171
6172 Don't apply the default %destructor/%printer to an unreferenced midrule
6173 value. Mentioned at
6174 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
6175 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
6176 like $@n instead of just @n so that the default %destructor/%printer
6177 logic doesn't see them as user-defined symbols.
6178 (symbol_is_dummy): Check for both forms of the name.
6179 * src/reader.c (packgram): Remove the `$' from each midrule symbol
6180 name for which the midrule value is referenced in any action.
6181 * tests/actions.at (Default %printer and %destructor for mid-rule
6182 values): New test.
6183 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
6184 for change to dummy symbol names.
6185
6186 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6187
6188 Warn about unset midrule $$ if the corresponding $n is used.
6189 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
6190 $n usage.
6191 (packgram): Before invoking grammar_rule_check on any rule, make sure
6192 all actions have already been scanned in order to set `used' flags.
6193 Otherwise, checking that a midrule's $$ is set will not always work
6194 properly because the midrule check must forward-reference the midrule's
6195 parent rule.
6196 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
6197 warning.
6198
6199 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6200
6201 More improvements to the documentation of the prologue alternatives:
6202 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
6203 Bison manual.
6204 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
6205 some text to clarify the relative importance of the new directives and
6206 to show how these directives may be viewed as code labels.
6207
6208 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
6209
6210 Similar to the recently removed %before-header, add %code-top as the
6211 alternative to the pre-prologue. Mentioned at
6212 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
6213 Also, let the prologue alternatives appear in the grammar section.
6214 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
6215 (prologue_declaration): Move the existing prologue alternatives to...
6216 (grammar_declaration): ... here and add %code-top.
6217 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
6218
6219 Clean up and extend documentation for the prologue alternatives.
6220 * NEWS (2.3a+): Describe prologue alternatives.
6221 * doc/bison.texinfo (Prologue): Move discussion of prologue
6222 alternatives to...
6223 (Prologue Alternatives): ... this new section, and extend it to discuss
6224 all 4 directives in detail.
6225 (Table of Symbols): Clean up discussion of prologue alternatives and
6226 add %code-top.
6227
6228 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6229
6230 DJGPP specific issues.
6231
6232 * djgpp/config.bat: config.hin has been moved to lib. Adjust
6233 config.bat accordingly.
6234 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
6235 * djgpp/config.site: Likewise.
6236
6237 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
6238
6239 Replace %*-header with %provides, %requires, %code. See discussion at
6240 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
6241
6242 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
6243 (b4_user_start_header): Remove.
6244 * data/glr.c: Use new macros instead of b4_*start_header
6245 and b4_*end_header.
6246 * data/glr.cc: Likewise.
6247 * data/lalr1.cc: Likewise.
6248 * data/push.c: Likewise.
6249 * data/yacc.c: Likewise.
6250
6251 * doc/bison.texinfo: Remove %before-header, rename
6252 %{start,end,after}-header to %requires, %provides, %code.
6253
6254 * src/parse-gram.y: Likewise (also rename token names accordingly).
6255 * src/scan-gram.l: Likewise.
6256 * tests/actions.at: Likewise.
6257
6258 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
6259
6260 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
6261 Problem reported by Joel E. Denny.
6262
6263 2006-10-14 Jim Meyering <jim@meyering.net>
6264
6265 (Sync from coreutils.)
6266 Work also when the working directory (with e.g. coreutils sources)
6267 is version controlled with git, rather than CVS.
6268 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
6269 rather than CVS.
6270 In messages and comments, say e.g., "checked-out sources",
6271 rather than "CVS sources".
6272 (version_controlled_file): New function. Work for git as well as
6273 for CVS. Don't use grep's -q option.
6274 (slurp): Call it here, in place of CVS-specific code.
6275
6276 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
6277
6278 Fix testsuite for ./configure --enable-gcc-warnings:
6279 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
6280 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
6281 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
6282 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
6283 * test/regression.at (Diagnostic that expects two alternatives):
6284 Likewise.
6285
6286 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6287
6288 * bootstrap.conf (gnulib_modules): Add config-h.
6289 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
6290 worry about HAVE_CONFIG_H.
6291 * lib/abitset.c: Likewise.
6292 * lib/bitset.c: Likewise.
6293 * lib/bitset_stats.c: Likewise.
6294 * lib/bitsetv-print.c: Likewise.
6295 * lib/bitsetv.c: Likewise.
6296 * lib/ebitset.c: Likewise.
6297 * lib/get-errno.c: Likewise.
6298 * lib/lbitset.c: Likewise.
6299 * lib/subpipe.c: Likewise.
6300 * lib/timevar.c: Likewise.
6301 * lib/vbitset.c: Likewise.
6302 * lib/bitset.c: Include "bitset.h" first, to test interface.
6303 * lib/bitset_stats.c: Include "bitset_stats.h" first.
6304 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
6305 * lib/bitsetv.c: Include "bitsetv.h" first.
6306 * lib/get-errno.c: Include "get-errno.h" first.
6307 * m4/.cvsignore: Add config-h.m4.
6308 * tests/actions.at (Default %printer and %destructor for ...):
6309 Adjust expected line numbers in output to reflect removal of #if
6310 HAVE_CONFIG_H lines.
6311 * tests/glr-regression.at (Missed %merge type warnings when ...):
6312 Likewise.
6313 * tests/regression.at (Braced code in declaration in rules section):
6314 Likewise.
6315 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
6316 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
6317 Include <config.h> unconditionally.
6318
6319 * bootstrap: Sync from coreutils, as follows:
6320
6321 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6322
6323 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
6324 variable was sometimes used without being initialized. This
6325 messed up the installation of the INSTALL file in some cases.
6326
6327 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6328
6329 * bootstrap (usage, main program, symlink_to_gnulib): Add option
6330 --copy. Inspired by a suggestion from Bruno Haible.
6331
6332 2006-10-03 Jim Meyering <jim@meyering.net>
6333
6334 * bootstrap: Undo last change to this file, since now gnulib-tool
6335 sticks with the automake default in generating dependencies.
6336
6337 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6338
6339 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
6340 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
6341
6342 * doc/bison.1: Add copyright notice.
6343
6344 * data/glr.c: Don't include <stdarg.h>; not used.
6345
6346 * NEWS: The -g and --graph options now output graphs in Graphviz
6347 DOT format, not VCG format.
6348 * doc/bison.1: Likewise.
6349 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
6350 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
6351 of this change in
6352 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
6353 * TODO: Remove Graphviz entry.
6354 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
6355 remove vcg.c, vcg.h, vcg_defaults.h.
6356 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
6357 * src/graphviz.c, src/graphviz.h: New files.
6358 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
6359 * src/files.h: Make comment more generic.
6360 * src/main.c (main): Likewise.
6361 * src/print_graph.h: Likewise.
6362 * src/getargs.c (usage): Make usage description more generic.
6363 * src/print_graph.c: Include graphviz.h rather than vcg.h.
6364 (static_graph, fgraph): Remove. All uses changed to pass
6365 arguments instead of sharing a static var.
6366 (print_core, print_actions, print_state, print_graph):
6367 Output graphviz format rather than VCG format.
6368 * tests/.cvsignore: Remove *.vcg; add *.dot.
6369 * tests/output.at: Expect *.dot files, not *.vcg files.
6370
6371 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
6372 accommodates the 2006-10-08 change.
6373
6374 2006-10-11 Bob Rossi <bob@brasko.net>
6375
6376 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
6377 (b4_yyssa, b4_yyerror_range): New macros.
6378 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
6379 (yypvarsinit): Remove init of removed fields.
6380 (yypushparse): Remove use of removed fields; use new macros instead.
6381
6382 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6383
6384 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
6385 in a push parser. Reindent slightly to match yacc.c better.
6386
6387 2006-10-11 Bob Rossi <bob@brasko.net>
6388
6389 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
6390 yymsg_alloc fields.
6391 (yypvarsinit, yypushparse): Remove init of removed fields.
6392 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
6393
6394 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6395
6396 * THANKS: Add Paolo Bonzini and Bob Rossi.
6397
6398 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
6399
6400 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
6401 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
6402 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
6403 b4_define_user_cde and uses): Remove.
6404 (b4_comment, b4_prefix, b4_sync_start): New.
6405 * data/bison.m4: New file, with most of the content removed from c.m4.
6406 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
6407 * src/output.c (output_skeleton): Pass bison.m4.
6408 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
6409 only if specified.
6410
6411 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
6412
6413 Fix test failure reported by Tom Lane in
6414 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
6415 and try to make such failures easier to catch in the future.
6416 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
6417 that's now the caller's responsibility.
6418 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
6419 Set yychar = YYEOF if it's negative.
6420 * tests/actions.at (yylex): Abort if asked to read past EOF.
6421 * tests/conflicts.at (yylex): Likewise.
6422 * tests/cxx-type.at (yylex): Likewise.
6423 * tests/glr-regression.at (yylex): Likewise.
6424 * tests/input.at (yylex): Likewise.
6425 * tests/regression.at (yylex): Likewise.
6426 * tests/torture.at (yylex): Likewise.
6427
6428 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
6429
6430 Fix problems with translating English-language diagnostics.
6431 * bootstrap: Fix bug introduced in recent bootstrap changes, with
6432 respect to bison-runtime pot generation. The YY_ stuff
6433 wasn't being captured.
6434 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
6435 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
6436 * runtime-po/POTFILES.in: Add data/push.c.
6437
6438 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
6439
6440 Merge bootstrap changes from coreutils.
6441
6442 2006-09-28 Jim Meyering <jim@meyering.net>
6443
6444 Automatically generated dependencies are important even
6445 when all of the sources in a directory come from gnulib.
6446 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
6447 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
6448
6449 2006-09-23 Jim Meyering <jim@meyering.net>
6450
6451 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
6452
6453 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6454
6455 * bootstrap: Add support for --force.
6456 (usage): New function. Describe usage less tersely.
6457 (CVS_only_file): New var.
6458
6459 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
6460
6461 * data/push.c (YYPUSH_MORE): Make it an enum instead.
6462 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
6463 Adjust white space and comments to match GNU style better.
6464
6465 2006-09-20 Bob Rossi <bob@brasko.net>
6466
6467 * data/push.c (yyresult_get): Remove function.
6468 (YYPUSH_MORE): Add #define.
6469 (yypushparse): Modify return value.
6470
6471 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6472
6473 * stamp-h.in: Remove; no longer needed.
6474 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
6475 Remove config.h, config.hin, intl (no longer created).
6476 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
6477 stamp-h1.
6478
6479 Sync bootstrap from coreutils, as follows:
6480
6481 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
6482
6483 * bootstrap (symlink_to_gnulib): New function.
6484 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
6485 to copies-of-gnulib.
6486 (cp_mark_as_generated, slurp, gnulib_files):
6487 Avoid making a copy if it's the same as the old version.
6488 (gnulib_files): Add support for this variable (used by Bison).
6489
6490 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6491
6492 * src/getargs.c (usage): Rework to use conventions similar to
6493 coreutils, to make translation a bit easier and the code a bit
6494 smaller. Problem reported by Tim Van Holder.
6495
6496 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
6497
6498 Use some of gnulib's new modules, taken from coreutils.
6499
6500 * bootstrap: Sync from coreutils, except add support for gnulib_files.
6501 * bootstrap.conf: New file.
6502 (gnulib_modules): Add configmake, inttypes, unistd.
6503 (XGETTEXT_OPTIONS): Add complain, complain_at,
6504 fatal, fatal_at, warn, warn_at, unexpected_end.
6505 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
6506 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
6507 (gl_EARLY): Add.
6508 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
6509 (gl_INIT): Add
6510 (GNULIB_AUTOCONF_SNIPPET): Remove.
6511 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
6512 the pickiest.
6513 * lib/.cvsignore: Add inttypes_.h.
6514 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
6515 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
6516 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
6517 no-longer-necessary initializations.
6518 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
6519 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
6520 use the unistd module.
6521 * src/system.h: Likewise.
6522 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
6523 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
6524 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
6525 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
6526 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
6527 * src/system.h: Include inttypes.h unconditionally, now that we
6528 use the inttypes module. Don't bother to include stdint.h, since
6529 inttypes.h now does that for us.
6530 (LOCALEDIR): Remove, now that we use the configmake module.
6531 * src/getargs.c: Include configmake.h.
6532 * src/main.c: Likewise.
6533 * src/output.c: Likewise.
6534 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
6535 not from $abs_top_builddir, since config.h moved.
6536
6537
6538 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
6539 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
6540
6541 * src/parse-gram.y (symbol_declaration): Don't put statements
6542 before declarations; it's not portable to C89.
6543 * src/scan-code.l (handle_action_at): Likewise.
6544
6545 * src/scan-code.l: Always initialize braces_level; the old code
6546 left it uninitialized and therefore had undefined behavior.
6547
6548 Don't attempt to redefine 'assert', since it runs afoul of
6549 systems where standard headers (mistakenly) include <assert.h>.
6550 Instead, define and use our own alternative, called 'aver'.
6551 * src/reader.c: Don't include assert.h, since we no longer
6552 use assert.
6553 * src/scan-code.l: Likewise.
6554 * src/system.h (assert): Remove, replacing with....
6555 (aver): New function, taking a bool arg. All uses changed.
6556 * src/tables.c (pack_vector): Ensure that aver arg is bool,
6557 not merely an integer.
6558
6559 2006-09-15 Bob Rossi <bob@brasko.net>
6560
6561 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
6562 * data/c.m4 (YYPUSH): New.
6563 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
6564 * src/getargs.c (push_parser): New var.
6565 * src/getargs.h (push_parser): New declaration.
6566 * src/output.c (prepare): Add macro insertion of `push_flag'.
6567 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
6568 (prologue_declaration): Parse %push-parser.
6569 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
6570 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
6571 list of removed lines from the traces observed.
6572 (AT_CHECK_CALC_LALR): Added push parser tests.
6573
6574 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
6575
6576 * NEWS: Version 2.3a.
6577 * configure.ac (AC_INIT): Likewise.
6578
6579 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
6580 "#define YYSTYPE int" that caused "make maintainer-check" to fail
6581 due to header ordering dependencies. I don't know why the #define
6582 was there.
6583
6584 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
6585 runtime cost when YYDEBUG is not defined, and so that some tests
6586 that used to fail now work. Problem and initial suggestion by
6587 Paolo Bonzini.
6588 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
6589 * data/glr.cc (b4_parser_class_name):
6590 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
6591 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
6592 (yydebug_) [YYDEBUG]: New member.
6593 (yycdebug_): Now defined only if YYDEBUG.
6594 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
6595 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
6596 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
6597 if YYYDEBUG.
6598 (debug_stream, set_debug_stream, debug_level, set_debug_level):
6599 Define only if YYDEBUG.
6600 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
6601 set_debug_level.
6602 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
6603 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
6604 AT_CHECK_CALC_GLR_CC that are working now.
6605
6606 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
6607
6608 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
6609 We don't need them in glr.cc, and glr.c defines them.
6610 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
6611 assumes that defining it to anything is the same as defining
6612 it to 1. Problem reported by Paolo Bonzini.
6613
6614 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
6615
6616 * data/c.m4 (b4_null, b4_case): Define.
6617 * src/output.c (prepare_symbols): Use b4_null.
6618 (user_actions_output): Use b4_case.
6619
6620 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
6621
6622 * data/glr.c (b4_shared_declarations): Put start-header first,
6623 before any #includes that we generate, so that feature-test
6624 macros work. Problem reported by Michael Deutschmann in
6625 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
6626 * data/lalr1.cc: Likewise.
6627 * doc/bison.texinfo (Prologue): Document that feature-test macros
6628 should be defined before any Bison declarations.
6629 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
6630 that depend on location.hh after, not before, Bison decls, since
6631 we now include location.hh after the first user prologue.
6632
6633 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
6634 Sander Brandenburg in
6635 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
6636 Also, fix minor white space and comment issues.
6637 (Prologue): Mention that it's better to define feature-test macros
6638 before Bison declarations. Problem reported by Michael Deutschmann.
6639
6640 * README-cvs: Fix typo: "&" should be "&&". Problem reported
6641 by Jim Meyering.
6642 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
6643 This adjusts to recent gnulib changes.
6644
6645 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
6646
6647 Finish implementation of per-type %destructor/%printer. Discussed
6648 starting at
6649 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
6650 and
6651 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
6652 * NEWS (2.3+): Add a description of this feature to the default
6653 %destructor/%printer description.
6654 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
6655 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6656 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
6657 list node contains a semantic type.
6658 * src/symtab.c, src/symtab.h: Extend with a table that associates
6659 semantic types with their %destructor's and %printer's.
6660 (semantic_type_from_uniqstr, semantic_type_get,
6661 semantic_type_destructor_set, semantic_type_printer_set): New functions
6662 composing the public interface of that table.
6663 (symbol_destructor_get, symbol_destructor_location_get,
6664 symbol_printer_get, symbol_printer_location_get): If there's no
6665 per-symbol %destructor/%printer, look up the per-type before trying
6666 the default.
6667 * tests/actions.at (Per-type %printer and %destructor): New test case.
6668 * tests/input.at (Default %printer and %destructor redeclared):
6669 Extend to check that multiple occurrences of %symbol-default in a
6670 single %destructor/%printer declaration is an error.
6671 (Per-type %printer and %destructor redeclared, Unused values with
6672 per-type %destructor): New test cases.
6673
6674 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
6675
6676 Require default %destructor/%printer to be declared using
6677 %symbol-default instead of an empty symbol list, and start working on
6678 new per-type %destructor/%printer. Discussed at
6679 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
6680 * NEWS (2.3+): Add %symbol-default to example.
6681 * bison.texinfo (Freeing Discarded Symbols): Likewise.
6682 (Table of Symbols): Add entry for %symbol-default.
6683 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
6684 (generic_symlist, generic_symlist_item): New nonterminals for creating
6685 a list in which each item is a symbol, semantic type, or
6686 %symbol-default.
6687 (grammar_declaration): Use generic_symlist in %destructor and %printer
6688 declarations instead of symbols.1 or an empty list.
6689 (symbol_declaration, precedence_declaration, symbols.1): Update actions
6690 for changes to symbol_list.
6691 * src/reader.c: Update for changes to symbol_list.
6692 * src/scan-code.l: Likewise.
6693 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
6694 * src/symlist.c, src/symlist.h: Extend such that a list node may
6695 represent a semantic type or a %symbol-default in addition to just an
6696 ordinary symbol. Add switched functions for setting %destructor's and
6697 %printer's.
6698 * tests/actions.at, tests/input.at: Add %symbol-default to all default
6699 %destructor/%printer declarations.
6700
6701 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
6702
6703 Whether the default %destructor/%printer applies to a particular symbol
6704 isn't a question of whether the user *declares* that symbol (in %token,
6705 for example). It's a question of whether the user by any means
6706 *defines* the symbol at all (by simply using a char token, for
6707 example). $end is defined by Bison whereas any other token with token
6708 number 0 is defined by the user. The error token is always defined by
6709 Bison regardless of whether the user declares it with %token, but we
6710 may one day let the user define error as a nonterminal instead.
6711 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
6712 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
6713 the meaning of "user-defined".
6714 * tests/actions.at (Default %printer and %destructor for user-declared
6715 end token): Rename to...
6716 (Default %printer and %destructor for user-defined end token): ...
6717 this.
6718
6719 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
6720 computation of whether to apply the default, don't maintain a list of
6721 every Bison-defined symbol. Instead, just check for a first character
6722 of '$', which a user symbol cannot have, and check for the error token.
6723
6724 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
6725
6726 Don't apply the default %destructor or %printer to the error token,
6727 $undefined, or $accept. This change fits the general rule that the
6728 default %destructor and %printer are only for user-declared symbols,
6729 and it solves several difficulties that are described in the new test
6730 cases listed below.
6731 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
6732 * tests/actions.at (Default %printer and %destructor are not for error
6733 or $undefined, Default %printer and %destructor are not for $accept):
6734 New test cases.
6735
6736 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
6737
6738 Allow %start after the first rule.
6739 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
6740 when parsing the first rule.
6741 (check_and_convert_grammar): Search for it here after all grammar
6742 declarations have been parsed. Skip midrules, which have dummy LHS
6743 nonterminals.
6744 * src/symtab.c (symbol_is_dummy): New function.
6745 * src/symtab.h (symbol_is_dummy): Declare it.
6746 * tests/input.at (%start after first rule): New test.
6747
6748 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
6749
6750 Redo some of the previous commit: add back the ability to use
6751 non-aliased/undeclared string literals since it might be useful to
6752 those declaring %token-table.
6753 * src/reader.c (check_and_convert_grammar): Undo changes in previous
6754 commit: don't worry about complaints from symbols_pack.
6755 * src/symtab.c (symbol_new, symbol_class_set,
6756 symbol_check_alias_consistency): Undo changes in previous commit: count
6757 each string literal as a new symbol and token, assign it a symbol
6758 number, and don't complain about non-aliased string literals.
6759 (symbols_pack): Since symbol_make_alias still does not decrement symbol
6760 and token counts but does still set aliased tokens to the same number,
6761 symbol_pack_processor now leaves empty slots in the symbols array.
6762 Remove those slots.
6763 * tests/regression.at (Undeclared string literal): Remove test case
6764 added in previous commit since non-aliased string literals are allowed
6765 again.
6766 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
6767 remove unnecessary string literal declarations.
6768 * tests/sets.at (Firsts): Likewise.
6769
6770 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
6771
6772 Don't allow an undeclared string literal, but allow a string literal to
6773 be used before its declaration.
6774 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
6775 symbols_pack complained.
6776 * src/symtab.c (symbol_new): Don't count a string literal as a new
6777 symbol.
6778 (symbol_class_set): Don't count a string literal as a new token, and
6779 don't assign it a symbol number since symbol_make_alias does that.
6780 (symbol_make_alias): It's not necessary to decrement the symbol and
6781 token counts anymore. Don't assume that an alias declaration occurs
6782 before any uses of the identifier or string, and thus don't assert that
6783 one of them has the highest symbol number so far.
6784 (symbol_check_alias_consistency): Complain if there's a string literal
6785 that wasn't declared as an alias.
6786 (symbols_pack): Bail if symbol_check_alias_consistency failed since
6787 symbol_pack asserts that every token has been assigned a symbol number
6788 although undeclared string literals have not.
6789 * tests/regression.at (String alias declared after use, Undeclared
6790 string literal): New test cases.
6791 (Characters Escapes, Web2c Actions): Declare string literals as
6792 aliases.
6793 * tests/sets.at (Firsts): Likewise.
6794
6795 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
6796
6797 In the grammar scanner, STRING_FINISH unclosed constructs and return
6798 them to the parser in order to improve error messages.
6799 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
6800 SC_BRACED_CODE, SC_PROLOGUE): Implement.
6801 * tests/input.at (Unclosed constructs): New test case.
6802 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
6803 seen.
6804
6805 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
6806 unused global.
6807
6808 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
6809
6810 Handle string aliases for character tokens correctly.
6811 * src/symtab.c (symbol_user_token_number_set): If the token has an
6812 alias, check and set its alias's user token number instead of its own,
6813 which is set to indicate the alias. Previously, every occurrence of
6814 the character token in the grammar overwrote that alias indicator with
6815 the character code.
6816 * tests/input.at (String aliases for character tokens): New test.
6817
6818 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
6819
6820 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
6821
6822 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
6823
6824 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
6825 to prevent failures when building on older platforms.
6826 Check for autopoint failure.
6827 Set XGETTEXT_OPTIONS to values that check for C format strings,
6828 so that translators are warned about them (this also helps
6829 prevent core dumps).
6830
6831 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
6832 function, since it simplifies our code a bit.
6833
6834 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
6835 rather than -W, so we don't get bogus warnings about sign comparisons.
6836 Add -Wpointer-arith, since that warning is useful (it reports code
6837 that does not conform to C89 and that some compilers reject).
6838 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
6839 since it's no longer needed.
6840
6841 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
6842
6843 Clean up scanners a bit.
6844 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
6845 definitions so gcc won't warn when obstack_for_string is unused.
6846 * src/scan-code.l: config.h and system.h are already #include'd by
6847 scan-code-c.c, so get rid of them here.
6848 * src/scan-gram.l: Likewise.
6849 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
6850 definitions rather than duplicating the rest of it.
6851 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
6852
6853 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
6854
6855 Suppress signed/unsigned comparison warnings for yycheck.
6856 * data/c.m4 (b4_safest_int_type): New macro.
6857 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
6858 a signed int type, cast it to b4_safest_int_type first.
6859 * data/yacc.c: Likewise.
6860 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
6861 also overwritten.
6862
6863 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
6864
6865 * doc/bison.texinfo: Fix some typos.
6866
6867 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
6868
6869 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
6870 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
6871
6872 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
6873 the latest gnulib does this a different way.
6874 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
6875 translation was patched, so stop omitting it.
6876
6877 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
6878
6879 Enable declaration of default %printer/%destructor. Make the parser
6880 use these for all user-declared grammar symbols for which the user does
6881 not declare a specific %printer/%destructor. Thus, the parser uses it
6882 for token 0 if the user declares it but not if Bison generates it as
6883 $end. Discussed starting at
6884 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
6885 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
6886 and
6887 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
6888 * NEWS (2.3+): Mention.
6889 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
6890 declare a %destructor for a mid-rule's semantic value. It's just
6891 impossible to declare one specific to it.
6892 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
6893 code. Describe default %destructor form.
6894 * src/parse-gram.y (grammar_declaration): Parse default
6895 %printer/%destructor declarations.
6896 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
6897 and symbol_destructor_location_get rather than accessing the destructor
6898 and destructor_location members of struct symbol.
6899 (symbol_printers_output): Likewise but for %printer's.
6900 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
6901 again.
6902 * src/symtab.c (default_destructor, default_destructor_location,
6903 default_printer, default_printer_location): New static global
6904 variables to record the default %destructor and %printer.
6905 (symbol_destructor_get, symbol_destructor_location_get,
6906 symbol_printer_get, symbol_printer_location_get): New functions to
6907 compute the appropriate %destructor and %printer for a symbol.
6908 (default_destructor_set, default_printer_set): New functions to set the
6909 default %destructor and %printer.
6910 * src/symtab.h: Prototype all those new functions.
6911 * tests/actions.at (Default %printer and %destructor): New test to
6912 check that the right %printer and %destructor are called, that they're
6913 not called for $end, and that $$ and @$ work correctly.
6914 (Default %printer and %destructor for user-declared end token): New
6915 test to check that the default %printer and %destructor are called for
6916 a user-declared end token.
6917 * tests/input.at (Default %printer and %destructor redeclared, Unused
6918 values with default %destructor): New tests to check related grammar
6919 warnings and errors.
6920
6921 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
6922
6923 Clean up handling of %destructor for the end token (token 0).
6924 Discussed starting at
6925 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
6926 and
6927 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
6928
6929 Make the skeletons consistent in how they pop the end token and invoke
6930 its %destructor.
6931 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
6932 state, which has token number 0, since this would invoke the
6933 %destructor for the end token.
6934 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
6935 until after shifting the end token, or else it won't be popped.
6936 * data/yacc.c (yyparse): Likewise.
6937
6938 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
6939 it's the end token. Upon termination, destroy an unshifted lookahead
6940 even when it's the end token.
6941 * data/lalr1.cc (yy::parser::parse): Likewise.
6942 * data/yacc.c (yyparse): Likewise.
6943
6944 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
6945 value warnings for the end token when the user gives the end token a
6946 %destructor.
6947
6948 * tests/actions.at (Printers and Destructors): Test all the above.
6949
6950 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
6951
6952 Update to latest gnulib and gettext versions.
6953 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
6954 Add fopen-safer.
6955 (gnulib_files): Add m4/warning.m4. Don't worry about files
6956 overwritten by autopoint.
6957 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
6958 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
6959 rejects them.
6960 Don't use autoreconf; instead, invoke autopoint etc. by hand,
6961 so that we can remove the intl files at a better time.
6962 (intl_files_to_remove): Remove aclocal.m4, since it gets
6963 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
6964 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
6965 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
6966 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
6967 Remove datarootdir hack; no longer needed.
6968 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
6969 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
6970 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
6971 strdup.h.
6972 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
6973 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
6974
6975 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
6976
6977 * bootstrap: Adjust to today's change to gnulib-tool by invoking
6978 it with --assume-autoconf='latest-stable'.
6979
6980 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
6981
6982 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
6983 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
6984 YYSTYPE' and `{'.
6985 * src/muscle_tab.h (muscle_grow): Replace the header comments with
6986 those from muscle_tab.c since the old ones are misleading.
6987
6988 2006-07-13 Akim Demaille <akim@epita.fr>
6989
6990 Support %define "KEY" {VALUE}.
6991 * src/scan-code.h, src/scan-code.l (translate_action)
6992 (translate_rule_action, translate_symbol_action, translate_code):
6993 Return char *, not const char *.
6994 * src/parse-gram.y (declaration): Rename as...
6995 (prologue_declaration): this.
6996 (string_content): Remove this nonterminal, use STRING.
6997 (braceless, content, content.opt): New nonterminal.
6998 Use them.
6999 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
7000 as value.
7001 * src/scan-gram.l (getargs.h): Don't include it.
7002
7003 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
7004
7005 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
7006 rather than a for-loop that declares a local bool variable. This
7007 should work around a compatibility problem with a Cray x1e C++
7008 compiler reported by Hung Nguyen in
7009 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
7010 The for-loop was introduced in the 2004-11-17 change but I don't
7011 know why it was needed.
7012
7013 2006-07-12 Akim Demaille <akim@epita.fr>
7014
7015 * data/c.m4: Comment changes.
7016
7017 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
7018
7019 * src/complain.c (error_message, ERROR_MESSAGE): New.
7020 To factor...
7021 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
7022 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
7023
7024 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7025
7026 * NEWS: Instead of %union, you can define and use your own union type
7027 YYSTYPE if your grammar contains at least one <type> tag.
7028 Your YYSTYPE need not be a macro; it can be a typedef.
7029 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
7030 (Union Decl, Decl Summary): Document this.
7031 * data/glr.c (YYSTYPE): Implement this.
7032 * data/glr.cc (YYSTYPE): Likewise.
7033 * data/lalr1.cc (YYSTYPE): Likewise.
7034 * data/yacc.c (YYSTYPE): Likewise.
7035 * src/output.c (prepare): Output tag_seen_flag.
7036 * src/parse-gram.y (declaration, grammar_declaration):
7037 Use 'union_seen' rather than 'typed' to determine whether
7038 %union has been seen, since grammars can now be typed without
7039 %union.
7040 (symbol_declaration, type.opt, symbol_def):
7041 Keep track of whether a tag has been seen.
7042 * src/reader.c (union_seen, tag_seen): New vars.
7043 (typed): remove.
7044 * src/reader.h (union_seen, tag_seen, typed): Likewise.
7045 * src/scan-code.l (untyped_var_seen): New variable.
7046 (handle_action_dollar): Adjust to above changes.
7047 (handle_action_dollar, handle_action_at):
7048 Improve overflow checking for outlandish numbers.
7049 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
7050 avoid new diagnostics generated by above changes.
7051 * tests/regression.at (YYSTYPE typedef): Add test to check
7052 for type tags without %union.
7053
7054 * src/symlist.c (symbol_list_length): Return int, not unsigned
7055 int, since callers expect int. This may need to get revisited
7056 once we have proper integer overflow checking.
7057
7058 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
7059 object is now static.
7060
7061 * src/getargs.c (flags_argmatch): Return void, not int,
7062 to pacify ./configure --enable-gcc-warnings.
7063
7064 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
7065 since last_string is already defined to FLEX_PREFIX (last_string).
7066
7067 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
7068
7069 Implement --warnings/-W.
7070 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
7071 replaced by...
7072 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
7073 Adjust callers.
7074 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
7075 (warnings_args, warnings_types): New.
7076 (getargs, short_options, long_options): Accept -W/--warnings.
7077 Sort the options by alphabetical order, upper case letter right
7078 before its lower case.
7079
7080 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
7081
7082 Change %merge result type clash warnings to errors. Discussed at
7083 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
7084 * src/reader.c (record_merge_function_type): Use complain_at.
7085 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7086 declared later): Update test case results.
7087
7088 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
7089
7090 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
7091 to be in alphabetical order.
7092 (trace_args): Spelling fixes.
7093
7094 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7095
7096 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
7097 so they don't collide with user-defined macros.
7098 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
7099 this was never guaranteed, and now that we're using gnulib stdint,
7100 which defines int_fast16_t to long int, the problem is exposed.
7101
7102 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
7103
7104 * data/c.m4 (b4_basename): Simplify a bit, since we don't
7105 need the full POSIX semantics (and weren't implementing them
7106 anyway).
7107
7108 Adjust to Autoconf 2.60 and today's gnulib.
7109 * bootstrap (gnulib_modules): Add stdint.
7110 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
7111 no longer copies it.
7112 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
7113 since stdint needs the former and wcwidth (which is now required
7114 by mbswidth) needs the latter.
7115 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
7116 work around a compatibility glitch between gettext 0.14.6 and
7117 Autoconf 2.60.
7118 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
7119 Do not check for uintptr_t, since new stdint module does the right
7120 thing.
7121 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
7122 Add stdint.h, stdint_.h, wcwidth.h.
7123 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
7124 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
7125 stdint.m4, wchar_t.m4, wcwidth.m4.
7126 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
7127 usual order for ../lib/*.h files.
7128 (file_name_split): Use last_component, not base_name, to adjust
7129 to gnulib changes.
7130 * src/parse-gram.h: Include <strverscmp.h> in the usual order
7131 for ../lib/*.h files.
7132 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
7133 Define unconditionally, since we now assume the stdint module.
7134 * src/scan-skel.l: Include <dirname.h>.
7135 (BASE_QPUTS): Use last_component, not base_name.
7136 * src/system.h: Include <unlocked-io.h> in the usual order
7137 for ../lib/*.h files. Include <stdint.h> unconditionally,
7138 since we now use the stdint module.
7139 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
7140 HAVE_UINTPTR_T, since we now use the stdint module.
7141 (base_name): Remove decl, since files now include <dirname.h>
7142 to get the decl.
7143
7144 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
7145
7146 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
7147 New, default to 1.
7148 * data/yacc.c, data/glr.c, data/location.cc: Use them.
7149 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
7150 default.
7151 * tests/calc.at: Adjust.
7152
7153 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
7154
7155 * data/c.m4 (b4_basename): New.
7156 (b4_syncline): Also output the location of its invocation (from
7157 the skeleton).
7158 (b4_user_action, b4_define_user_action, b4_user_actions)
7159 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
7160 (b4_user_stype): New.
7161 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
7162
7163 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7164
7165 In the grammar file, the first column is 1 not 0 on the first line as
7166 on every other line.
7167 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
7168 * tests/input.at (Torturing the Scanner): Update output.
7169
7170 * src/scan-gram.l (scanner_cursor): Declare it static.
7171
7172 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7173
7174 In warnings, say "previous declaration" rather than "first
7175 declaration".
7176 * src/symtab.c (redeclaration): Do that here.
7177 * src/reader.c (record_merge_function_type): In the case of a result
7178 type clash, report the previous declaration rather than the very first
7179 one in the grammar file.
7180 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7181 declared later): Add a third declaration to check this behavior.
7182 * tests/input.at (Incompatible Aliases): Update output.
7183
7184 2006-06-27 Akim Demaille <akim@epita.fr>
7185
7186 * doc/Doxyfile.in: New.
7187 * doc/Makefile.am: Use it.
7188 * src/lalr.h, src/symtab.h: Initial doxygenation.
7189
7190 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7191
7192 Don't miss %merge result type warnings just because the LHS types are
7193 declared after the %merge. This continues the effort of the previous
7194 patch.
7195 * src/reader.c (get_merge_function): Don't set the merger type yet.
7196 (record_merge_function_type): New function for setting the merger type
7197 and checking for clashes.
7198 (grammar_current_rule_merge_set): Set the location of the %merge for
7199 the current rule.
7200 (packgram): Invoke record_merge_function_type for each rule now that
7201 all symbol type declarations have been parsed.
7202 * src/reader.h (merger_list.type_declaration_location): New member
7203 storing the location of the first %merge from which the type for this
7204 merging function was derived.
7205 * src/symlist.h (symbol_list.merger_declaration_location): New member
7206 storing the location of a rule's %merge, if any.
7207 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7208 declared later): New test to catch the error fixed by the above patch.
7209
7210 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7211
7212 Get action warnings (grammar_rule_check) right even when symbol
7213 declarations appear after the rules. Discussed at
7214 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
7215 and
7216 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
7217 Don't mistake the type of $$ in a midrule to be that of its parent
7218 rule's $$.
7219 * src/reader.c (grammar_current_rule_end): Don't invoke
7220 grammar_rule_check yet since not all symbol declarations may have been
7221 parsed yet.
7222 (grammar_midrule_action): Likewise.
7223 Don't record whether the midrule's $$ has been used yet since actions
7224 haven't been translated yet.
7225 Record the midrule's parent rule and its RHS index within the parent
7226 rule.
7227 (grammar_current_rule_action_append): Don't translate the action yet
7228 since not all symbol declarations may have been parsed yet and, thus,
7229 warnings about types for $$, $n, @$, and @n can't be reported yet.
7230 (packgram): Translate the action and invoke grammar_rule_check now that
7231 all symbol declarations have been parsed.
7232 * src/scan-code.l (handle_action_dollar): Now that this is invoked
7233 after parsing the entire grammar file, the symbol list here in the case
7234 of a midrule is actually the midrule's empty RHS, so reference its
7235 parent rule's RHS where necessary.
7236 On the other hand, now that you can already know it's a midrule, you
7237 aren't forced to think $$ has the same type as its parent rule's $$.
7238 (handle_action_at): In the case of a midrule, reference the parent rule
7239 where necessary.
7240 * src/symlist.c (symbol_list_new): Initialize new midrule-related
7241 members.
7242 (symbol_list_length): Now that this is invoked after all rules have
7243 been parsed, a NULL symbol (rather than a NULL symbol list node)
7244 terminates a rule. symbol_list_print already does this correctly.
7245 * src/symlist.h (symbol_list.midrule_parent_rule,
7246 symbol_list.midrule_parent_rhs_index): New members so that midrules can
7247 remember their relationships with their parents.
7248 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
7249 fixed by the above patch.
7250 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
7251 implementing...
7252 (Unused values): ... this old test case and...
7253 (Unused values before symbol declarations): ... this new test case.
7254 This one is the same as `Unused values' except that all symbol
7255 declarations appear after the rules in order to catch the rest of the
7256 errors fixed by the above patch.
7257
7258 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7259
7260 More cleanup.
7261 * src/reader.c (current_rule): Declare it static since it's no longer
7262 used outside this file.
7263 (grammar_current_rule_action_append): Remove redundant arguments from
7264 translate_rule_action invocation.
7265 * src/reader.h (current_rule): Remove this unused extern.
7266 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
7267 * src/scan-code.l (translate_rule_action): Likewise.
7268
7269 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
7270
7271 Clean up yesterday's patch.
7272 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
7273 to...
7274 * src/reader.c (grammar_current_rule_action_append): ... here for
7275 consistency with grammar_current_rule_symbol_append.
7276 * tests/regression.at (Braced code in declaration in rules section):
7277 Make yyerror and yylex static as usual.
7278
7279 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
7280
7281 Fix bug that mistakes braced code in a declaration in the rules section
7282 to be a rule action. Mentioned at
7283 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
7284 * src/scan-gram.l: Move midrule action detection from the start of the
7285 scanning of any braced code to...
7286 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
7287 action. For readability, use $2 and @2 rather than the equivalent
7288 global variables.
7289 * tests/regression.at (Braced code in declaration in rules section):
7290 New test to catch the error fixed by the above patch.
7291
7292 Work on code readability some.
7293 * src/scan-code.l (current_rule): Get rid of this misleading and
7294 redundant declaration: it's actually extern'ed in reader.h.
7295 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
7296 translate_action): Add a rule argument and use it instead of the global
7297 current_rule.
7298 (translate_rule_action): This already receives current_rule through an
7299 argument, so pass it on to translate_action instead of assigning
7300 current_rule to current_rule.
7301 (translate_symbol_action, translate_code): Pass rule = NULL to
7302 translate_action.
7303
7304 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
7305
7306 Rename %before-definitions to %start-header and %after-definitions to
7307 %end-header. Don't use these declarations to separate pre-prologue
7308 blocks from post-prologue blocks. Add new order-independent
7309 declarations %before-header and %after-header as alternatives to the
7310 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
7311 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
7312 * NEWS (2.3+): Update for these changes.
7313 * data/glr.c (b4_before_definitions): Update to...
7314 (b4_start_header): ... this.
7315 (b4_after_definitions): Update to...
7316 (b4_end_header): ... this.
7317 * data/glr.cc: Likewise.
7318 * data/lalr1.cc: Likewise.
7319 * data/yacc.c: Likewise.
7320 * doc/bison.texinfo (The prologue): Update names, and replace remaining
7321 prologue blocks with %*-header declarations.
7322 (Calc++ Parser): Likewise.
7323 (Decl Summary): Update names.
7324 (Table of Symbols): Update description.
7325 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
7326 (PERCENT_END_HEADER): ... this.
7327 (PERCENT_BEFORE_DEFINITIONS): Update to...
7328 (PERCENT_START_HEADER): ... this.
7329 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7330 (declaration): Update token names and m4 macro names.
7331 When parsing %end-header and %start-header, invoke translate_code
7332 before muscle_code_grow, and no longer set global booleans to remember
7333 whether these declarations have been seen.
7334 Parse new %after-header and %before-header.
7335 * src/reader.c (before_definitions, after_definitions): Remove.
7336 (prologue_augment): Accept a new bool argument to specify whether to
7337 augment the pre-prologue or post-prologue.
7338 * src/reader.h (before_definitions, after_definitions): Remove these
7339 extern's.
7340 (prologue_augment): Add new bool argument.
7341 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
7342 (PERCENT_END_HEADER): ... this.
7343 (PERCENT_BEFORE_DEFINITIONS): Update to...
7344 (PERCENT_START_HEADER): ... this.
7345 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7346 * tests/actions.at (Printers and Destructors): Update names.
7347
7348 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
7349
7350 Add comparison operators for C++ location classes. Discussed at
7351 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
7352 * data/c++.m4 (b4_define_location_comparison): New boolean %define
7353 declaration indicating whether filename_type has an operator==. If
7354 filename_type is `std::string', it defaults to `1', `0' otherwise.
7355 * data/location.cc: Iff b4_define_location_comparison is `1', add
7356 operator== and operator!= for class position and for class location.
7357
7358 Some minor fixes.
7359 * src/scan-action.l: Remove unused file.
7360 * src/symtab.c (symbol_printer_set): Use printer_location not
7361 destructor_location.
7362 * src/symtab.h (struct symbol): Replace incorrect source comment for
7363 printer members.
7364 * tests/input.at (Incompatible Aliases): Update output with correct
7365 printer location.
7366
7367 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
7368
7369 Don't put the pre-prologue in the header file. For the yacc.c code
7370 file and the glr.c header and code files, move the pre-prologue before
7371 the token definitions. Add new %before-definitions and
7372 %after-definitions to declare code that will go in both the header file
7373 and code file. Discussed at
7374 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
7375 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
7376 and
7377 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
7378 * NEWS (2.3+): Describe these changes.
7379 * data/glr.c (b4_pre_prologue): Move from within to before...
7380 (b4_shared_declarations): ... this.
7381 Add new b4_before_definitions before b4_token_enums.
7382 Add new b4_after_definitions at the end.
7383 * data/glr.cc (b4_pre_prologue): Replace with...
7384 (b4_before_definitions): ... this in the header file.
7385 (b4_after_definitions): New near the end of the header file.
7386 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
7387 code file right before including the header file.
7388 (b4_before_definitions): New in the previous position of
7389 b4_pre_prologue in the header file.
7390 (b4_after_definitions): New near the end of the header file.
7391 * data/yacc.c: Clean up some m4 quoting especially in the header file.
7392 (b4_token_enums_defines): In the code file, move to right before
7393 YYSTYPE for consistency with the header file.
7394 (b4_before_definitions): New right before b4_token_enums_defines in
7395 both the header and code file.
7396 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
7397 header and code file.
7398 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
7399 of prologues for %union dependencies.
7400 (Decl Summary): In %defines description, mention the effect of
7401 %before-definitions and %after-definitions on the header file.
7402 (Calc++ Parser): Forward declare driver in a %before-definitions rather
7403 than in the pre-prologue so that make check succeeds.
7404 (Table of Symbols): Add entries for %before-definitions and
7405 %after-definitions.
7406 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
7407 %before-definitions.
7408 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
7409 (declaration): Parse those declarations and append to
7410 b4_before_definitions and b4_after_definitions, respectively.
7411 * src/reader.c (before_definitions, after_definitions): New bools to
7412 track whether those declarations have been seen.
7413 (prologue_augment): Add to the post-prologue if %union,
7414 %before-definitions, or %after-definitions has been seen.
7415 * src/reader.h (before_definitions, after_definitions): New extern's.
7416 * src/scan-gram.l: Scan the new declarations.
7417 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
7418 prologue block in a %before-definitions or a %after-definitions based
7419 on whether the %union is declared.
7420 * tests/regression.at (Early token definitions with --yacc, Early token
7421 definitions without --yacc): Move tests for token definitions into the
7422 post-prologue since token names are no longer defined in the
7423 pre-prologue.
7424
7425 2006-06-20 Akim Demaille <akim@epita.fr>
7426
7427 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
7428 (symbol_get): Use it.
7429 * src/parse-gram.y: Use it.
7430
7431 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
7432
7433 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
7434 build succeeds when configured with --enable-gcc-warnings.
7435
7436 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
7437
7438 * src/parse-gram.y (char_name): New function.
7439 (CHAR, STRING, string_content): For %printer, properly escape.
7440 (ID): Prefer fputs to fprintf.
7441 (id): Reindent to be consistent with other rules.
7442 Properly quote char.
7443
7444 The Translation Project changed its way of publishing translations
7445 to maintainers. I haven't received any responses to my request
7446 for supporting the old way, or for documenting the new way. I
7447 have modified 'bootstrap' to use screen scraping
7448 (in this case, HTML scraping). This is unreliable and inelegant,
7449 but I don't see any better way. Yuck.
7450 * bootstrap (TP_URL, WGET_COMMAND): New vars.
7451 (get_translations): New function, which uses HTML scraping to
7452 deduce locations of latest translations.
7453 Use this function to grab both bison and bison-runtime .po files.
7454 Don't bother priming the pump for the runtime-po domain any more,
7455 as it's now translated better than bison is.
7456
7457 2006-06-19 Akim Demaille <akim@epita.fr>
7458
7459 * src/scan-gram.l: No longer "parse" things after `%union' until
7460 `{'. Rather, return a single "%union" token.
7461 No longer make symbols: return strings, and leave the conversion
7462 to symbols to the parser.
7463 (SC_PRE_CODE, token_type): Remove.
7464 * src/parse-gram.y (%union): New field `character'.
7465 Sort tokens.
7466 (CHAR): New token.
7467 (ID, ID_COLON): Now that the scanner no longer makes them
7468 identifiers, adjust all uses to invoke symbol_get.
7469 (id_colon): New, wraps the conversion from string to symbol.
7470 (%union): Accept a possible union_name.
7471 (symbol): Now can be a char.
7472 * data/c.m4 (b4_union_name): Leave a default value.
7473 * data/glr.c, data/yacc.c: Use it.
7474
7475 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
7476
7477 For associating token numbers with token names for "yacc.c", don't use
7478 #define statements unless `--yacc' is specified; always use enum
7479 yytokentype. Most important discussions start at:
7480 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
7481 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
7482 and
7483 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
7484 * NEWS (2.3+): Mention.
7485 * data/c.m4 (b4_yacc_if): New.
7486 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
7487 token #define's.
7488 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
7489 on token name definitions.
7490 * src/getargs.c (usage): Capitalize `Yacc' in English.
7491 * src/output.c (prepare): Define b4_yacc_flag.
7492 * tests/regression.at (Early token definitions): Test that tokens names
7493 are defined before the pre-prologue not just before the post-prologue.
7494 Remove this test case and copy to...
7495 (Early token definitions with --yacc): ... this to test #define's.
7496 (Early token definitions without --yacc): ... and this to test enums.
7497
7498 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
7499
7500 * NEWS: Reword the post-2.3 change to not be so optimistic about
7501 removing the old "look-ahead" spelling.
7502 Update previous look-ahead/lookahead change reports.
7503 * REFERENCES: look-ahead -> lookahead (since that's
7504 what he actually wrote).
7505 * doc/refcard.tex: look ahead -> lookahead,
7506 look-ahead -> lookahead
7507
7508 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
7509
7510 For consistency, use `lookahead' instead of `look-ahead' or
7511 `look_ahead'. Discussed starting at
7512 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
7513 and then at
7514 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
7515 * NEWS: For the next release, note the change to `--report'.
7516 * TODO, doc/bison.1: Update English.
7517 * doc/bison.texinfo: Update English.
7518 (Understanding Your Parser, Bison Options): Document as
7519 `--report=lookahead' rather than `--report=look-ahead'.
7520 * src/conflicts.c: Update English in comments.
7521 (lookahead_set): Rename from look_ahead_set.
7522 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
7523 (resolve_sr_conflict): Rename local look_ahead_tokens to
7524 lookahead_tokens, and update other uses.
7525 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
7526 count_rr_conflicts, conflicts_free): Update uses.
7527 * src/getargs.c (report_args): Move "lookahead" before alternate
7528 spellings.
7529 (report_types): Update uses.
7530 (usage): For `--report' usage description, state `lookahead' spelling
7531 rather than `look-ahead'.
7532 * src/getargs.h (report.report_lookahead_tokens): Rename from
7533 report_look_ahead_tokens.
7534 * src/lalr.c: Update English in comments.
7535 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
7536 (state_lookahead_tokens_count): Rename from
7537 state_look_ahead_tokens_count.
7538 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7539 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
7540 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7541 Update other uses.
7542 Update English in output.
7543 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
7544 * src/print.c: Update English in comments.
7545 (lookahead_set): Rename from look_ahead_set.
7546 (print_reduction): Rename argument lookahead_token from
7547 look_ahead_token.
7548 (print_core, state_default_rule, print_reductions, print_results):
7549 Update uses.
7550 * src/print_graph.c: Update English in comments.
7551 (print_core): Update uses.
7552 * src/state.c: Update English in comments.
7553 (reductions_new): Update uses.
7554 (state_rule_lookahead_tokens_print): Rename from
7555 state_rule_look_ahead_tokens_print, and update other uses.
7556 * src/state.h: Update English in comments.
7557 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
7558 (state_rule_lookahead_tokens_print): Rename from
7559 state_rule_look_ahead_tokens_print.
7560 * src/tables.c: Update English in comments.
7561 (conflict_row, action_row): Update uses.
7562 * tests/glr-regression.at
7563 (Incorrect lookahead during deterministic GLR,
7564 Incorrect lookahead during nondeterministic GLR): Rename
7565 print_look_ahead to print_lookahead.
7566 * tests/torture.at: Update English in comments.
7567 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
7568 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
7569 (Many lookahead tokens): Update uses.
7570 * data/glr.c: Update English in comments.
7571 * lalr1.cc: Likewise.
7572 * yacc.c: Likewise.
7573 * src/conflicts.h: Likewise.
7574 * src/lalr.h: Likewise.
7575 * src/main.c: Likewise.
7576 * src/output.c: Likewise.
7577 * src/parse-gram.c: Likewise.
7578 * src/tables.h: Likewise.
7579 * tests/calc.at: Likewise.
7580
7581 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
7582
7583 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
7584
7585 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
7586
7587 * TODO: Add request from Nelson H. F. Beebe to be able to install
7588 Bison without installing the yacc script.
7589
7590 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7591
7592 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
7593 and yytext if they're already #define'd.
7594 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
7595 * src/scan-code-c.c: ... here.
7596 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
7597 <config.h>.
7598
7599 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7600
7601 Get Bison to build again when configured with --enable-gcc-warnings.
7602 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
7603 missing #include's.
7604 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
7605 loc argument as it shadows a global.
7606 * src/scan-gram.l: Remove stray comma that prevents boundary_set
7607 invocation.
7608
7609 * src/.cvsignore: Add scan-code.c.
7610
7611 2006-06-07 Akim Demaille <akim@epita.fr>
7612
7613 * src/scan-gram.l: Move the "add a trailing ; to actions" code
7614 to...
7615 * src/scan-code.l: here.
7616 * tests/input.at (Torturing the Scanner): Fix another location
7617 error.
7618
7619 2006-06-07 Akim Demaille <akim@epita.fr>
7620
7621 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
7622
7623 2006-06-06 Akim Demaille <akim@epita.fr>
7624
7625 Extract the parsing of user actions from the grammar scanner.
7626 As a consequence, the relation between the grammar scanner and
7627 parser is much simpler. We can also split "composite tokens" back
7628 into simple tokens.
7629 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
7630 * src/scan-gram.l (add_column_width, adjust_location): Move to and
7631 rename as...
7632 * src/location.h, src/location.c (add_column_width)
7633 (location_compute): these.
7634 Fix the column count: the initial column is 0.
7635 (location_print): Be robust to ending column being 0.
7636 * src/location.h (boundary_set): New.
7637 * src/main.c: Adjust to scanner_free being renamed as
7638 gram_scanner_free.
7639 * src/output.c: Include scan-code.h.
7640 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
7641 Use boundary_set.
7642 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
7643 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
7644 which is now, again, a separate token.
7645 Adjust all dependencies.
7646 Whereever actions with $ and @ are used, use translate_code.
7647 (action): Remove this nonterminal which is now useless.
7648 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
7649 (grammar_current_rule_action_append): Use translate_code.
7650 (packgram): Bound check ruleno, itemno, and rule_length.
7651 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
7652 (last_string, last_braced_code_loc, max_left_semantic_context)
7653 (scanner_initialize, scanner_free, scanner_last_string_free)
7654 (gram_out, gram_lineno, YY_DECL_): Move to...
7655 * src/scan-gram.h: this new file.
7656 (YY_DECL): Rename as...
7657 (GRAM_DECL): this.
7658 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
7659 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
7660 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
7661 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
7662 Move these declarations, and...
7663 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
7664 these to...
7665 * src/flex-scanner.h: this new file.
7666 * src/scan-gram.l (rule_length, rule_length_overflow)
7667 (increment_rule_length): Remove.
7668 (last_braced_code_loc): Rename as...
7669 (gram_last_braced_code_loc): this.
7670 Adjust to the changes of the parser.
7671 Move all the handling of $ and @ into...
7672 * src/scan-code.l: here.
7673 * src/scan-gram.l (handle_dollar, handle_at): Remove.
7674 (handle_action_dollar, handle_action_at): Move to...
7675 * src/scan-code.l: here.
7676 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
7677 scan-code.h, scan-code-c.c, scan-gram.h.
7678 (EXTRA_bison_SOURCES): Add scan-code.l.
7679 (BUILT_SOURCES): Add scan-code.c.
7680 (yacc): Be robust to white spaces.
7681
7682 * tests/conflicts.at, tests/input.at, tests/reduce.at,
7683 * tests/regression.at: Adjust the column numbers.
7684 * tests/regression.at: Adjust the error message.
7685
7686 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
7687
7688 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
7689 Use Akim's wording from
7690 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
7691
7692 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
7693
7694 Between Bison releases, manually append `+' to the previous Bison
7695 release number, and use that as a signal to automatically print the
7696 ChangeLog's CVS Id keyword from --version. Discussed starting at
7697 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
7698 * ChangeLog: Add Id header.
7699 * configure.ac (AC_INIT): Append `+' to `2.3'.
7700 * src/.cvsignore: Add revision.c.
7701 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
7702 (BUILT_SOURCES): Add revision.c.
7703 (revision.c): New target rule. This file defines a new global variable
7704 named revision. It initializes it with either the Id from ChangeLog
7705 or, if VERSION doesn't contain `+', with the empty string.
7706 * src/getargs.c (version): Print the value of revision.
7707 * src/revision.h: Extern revision.
7708
7709 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
7710
7711 * NEWS: Version 2.3.
7712 * configure.ac (AC_INIT): Likewise.
7713
7714 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
7715
7716 * data/glr.c (YYRECOVERING): Define to be a function-like macro
7717 with no arguments, not as an object-like macro. This is for
7718 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
7719 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
7720 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
7721 Document this.
7722
7723 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
7724
7725 * src/getargs.c (usage): Back out yesterday's modification of the
7726 --help output so that we don't have to wait for translation before
7727 releasing 2.3.
7728
7729 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
7730
7731 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
7732 Problem reported by Akim Demaille.
7733
7734 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
7735
7736 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
7737
7738 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
7739
7740 * data/yacc.c (yy_reduce_print): Omit trailing white space in
7741 generated source code. Problem reported by Frans Englich in
7742 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
7743
7744 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
7745
7746 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
7747 shell, not within 'make', so that 'make' by an ordinary builder
7748 (using GNU make) does not worry about configuring gzip. This also
7749 works around a bug reported independently by Keith Thompson and by
7750 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
7751 stderr rather than stdout, messing up the build logs.
7752
7753 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
7754
7755 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
7756 to make sure that YYID will never be unused. This fixes a 'make
7757 maintainer-check' failure caused by the recent changes to the 'Trivial
7758 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
7759 not used.
7760 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
7761
7762 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
7763
7764 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
7765 state before an empty RHS is always resolved here. Only the location
7766 of that state is guaranteed to be resolved, and that's enough. This
7767 fixes the remaining bug reported by Derek M. Jones in
7768 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
7769 * tests/glr-regression.at (Uninitialized location when reporting
7770 ambiguity): Test the above case.
7771 Also, the embedded comments in this test case claim it checks the case
7772 of an empty RHS that has inherited the initial location. However, the
7773 corresponding LHS was already resolved, so yyresolveLocations didn't
7774 actually have reason to modify it. Fix this by forcing
7775 nondeterministic operation at the beginning of the parse.
7776
7777 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
7778
7779 * data/c.m4 (b4_yy_symbol_print_generate):
7780 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
7781 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
7782 of the bugs reported today by Derek M Jones in
7783 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
7784 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
7785 defined to be a type name without parens or brackets.
7786 (Location Type): Similarly for YYLTYPE.
7787 * tests/regression.at (Trivial grammars): Put in a test for this
7788 bug that will be caught by 'make maintainer-check' (though not,
7789 alas, by 'make check' unless your compiler is picky).
7790
7791 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
7792
7793 * NEWS: Version 2.2.
7794 * configure.ac (AC_INIT): Likewise.
7795
7796 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
7797
7798 * data/glr.c (yyreportTree): Make room in yystates for the state
7799 preceding the RHS. This fixes the segmentation fault reported by Derek
7800 M. Jones in
7801 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
7802 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
7803 to the user. Reported for yyreportTree by Derek M. Jones later in the
7804 same thread.
7805 * THANKS: Add Derek M. Jones.
7806 Update my email address.
7807 Fix typo in Steve Murphy's name.
7808
7809 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
7810
7811 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
7812 checking against YYLAST that caused the parser to miss a potential
7813 alternative in its diagnostic.
7814 Problem reported by Maria Jose Moron Fernandez in
7815 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
7816 * data/lalr1.cc (yysyntax_error_): Likewise.
7817 * data/yacc.c (yysyntax_error): Likewise.
7818 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
7819 tokens, in case we run into an older C compiler.
7820 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
7821 Use them to check for the off-by-one error fixed above.
7822
7823 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
7824 YYSIZE_T, not size_t.
7825 * tests/regression.at (Trivial grammars): New test, to catch
7826 the error fixed by the above patch.
7827
7828 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7829
7830 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
7831 scheme.
7832 Reported by Steve Murphy.
7833
7834 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7835
7836 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
7837 * data/glr.cc: b4_location_flag is now b4_locations_flag.
7838
7839 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7840
7841 Implement --trace=m4.
7842 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
7843 * src/output.c (output_skeleton): When set, pass -dV to m4.
7844
7845 Factor the handling of flags in m4.
7846 * src/output.c (prepare): Rename the muscle names debug, defines,
7847 error_verbose to debug_flag, defines_flag, error_verbose_flag.
7848 * data/c.m4: Adjust.
7849 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
7850 Use b4_define_flag_if to define other b4_FLAG_if macros.
7851 (b4_location_if): As a consequence, rename as...
7852 (b4_locations_if): this, for consistency.
7853 Adjust all the skeletons.
7854
7855 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7856
7857 * etc/bench.pm: Shorten bench names.
7858
7859 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
7860
7861 * src/output.h, src/output.c (error_verbose): Move to...
7862 * src/getargs.h, src/getargs.c: here.
7863 Sort the flags.
7864 Adjust dependencies.
7865
7866 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
7867
7868 * data/c.m4 (b4_copyright): Put the special exception for Bison
7869 skeletons here, so we don't have to put it in each skeleton. All
7870 uses changed. Suggested by Akim Demaille. Also, wrap the
7871 copyright notice, in case it is longer than 80 columns. Replace
7872 comma by newline after title.
7873
7874 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
7875
7876 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
7877 incompatibility, not a bug. Mention that it wasn't fixed as of
7878 flex 2.5.33.
7879
7880 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
7881
7882 * examples/extexi: Enforce the precedence of concatenation over
7883 >>.
7884 Reported by Tommy Nordgren.
7885
7886 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
7887
7888 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
7889 with the member "token".
7890 Reported by Martin Nylin.
7891
7892 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
7893
7894 * data/glr.c: Switch to Bison 2.2 special-exception language in
7895 the copyright notice. Use more-regular format for titles and
7896 copyright notices.
7897 * data/glr.cc: Likewise.
7898 * data/location.cc: Likewise.
7899 * data/yacc.cc: Likewise.
7900 * doc/bison.texinfo (Conditions): Document this.
7901 * NEWS: likewise. Upgrade version to 2.2.
7902
7903 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
7904
7905 * data/glr.cc: Remove dead code.
7906
7907 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
7908
7909 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
7910 that variable and the line breaks the bootstrap. Problem reported
7911 by Juan M. Guerrero.
7912
7913 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
7914
7915 * doc/bison.texinfo (Multiple start-symbols): New.
7916
7917 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
7918
7919 * etc/README, etc/bench.pl: New.
7920
7921 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
7922
7923 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
7924 rule.
7925 Reported by Mickael Labau.
7926 * tests/input.at (Torturing the Scanner): Test it.
7927
7928 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
7929
7930 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
7931 Problem reported by Bob Rossi.
7932
7933 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
7934
7935 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
7936 and didn't really work.
7937 For the index, use @ifnotinfo, not @iftex.
7938 Minor cleanups of spacing and terminology.
7939
7940 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
7941
7942 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
7943 of AT_NAME_PREFIX when %name-prefix is not used.
7944
7945 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
7946
7947 Apply --prefix to C++ skeletons too: they change the namespace.
7948 The test suite already exercize these cases.
7949 * data/c++.m4 (b4_namespace): New.
7950 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
7951 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
7952 * data/yacc.c, data/glr.c: Remove a useless `[]'.
7953 * doc/bison.texinfo: Document it.
7954 (Option Cross Key): Use @multitable in all formats. It looks
7955 nicer, even in TeX outputs.
7956 (Rules): Use the same code whatever the output type is.
7957 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
7958 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
7959 * tests/calc.at: Use it, instead of hard coding `yy'.
7960
7961 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7962
7963 * TODO: Remove dead items.
7964
7965 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7966
7967 * doc/FAQ: Remove, merged into...
7968 * doc/bison.texinfo (FAQ): this.
7969 * doc/Makefile.am (EXTRA_DIST): Adjust.
7970
7971 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
7972
7973 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
7974 even if empty.
7975 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
7976 * doc/bison.texinfo (Calc++ Scanner): Use it.
7977
7978 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
7979
7980 Fix two nits reported by twlevo, plus one more that I discovered.
7981
7982 * src/assoc.h (assoc_to_string): Give a name to the arg, as
7983 this is the usual Bison style.
7984 * src/location.h (location_print): Likewise.
7985
7986 * src/reader.h (token_name): Likewise.
7987
7988 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
7989
7990 Fix some nits reported by twlevo.
7991 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
7992 and "POSIX". Use more-modern syntax for URLs. Mention C++
7993 and ask for Java. Don't hardwire OS version numbers. Add
7994 copyright notice.
7995 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
7996 * src/conflicts.c (solved_conflicts_obstack): Now static.
7997
7998 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
7999
8000 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
8001 page. Say "you can use it" not "you may use it" as on the web page;
8002 we're describing capabilities not granting permission.
8003
8004 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
8005
8006 * data/glr.c (yyresolveLocations): Rename local variables to avoid
8007 shadowing warnings. Use usual patter for iterating through RHS.
8008 * tests/glr-regression.at
8009 (Uninitialized location when reporting ambiguity):
8010 Modify yylex so that it uses its argument, rather than trying
8011 to rely on ARGSUSED (which doesn't work for gcc with warnings).
8012 const char -> char const.
8013
8014 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
8015 Don't use tabs inside commands; it messes up 'ps'.
8016 Problem reported by twlevo.
8017
8018 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
8019
8020 * tests/glr-regression.at (Uninitialized location when reporting
8021 ambiguity): New test case.
8022 * data/glr.c (yyresolveLocations): New function, which uses
8023 YYLLOC_DEFAULT.
8024 (yyresolveValue): Invoke yyresolveLocations before reporting an
8025 ambiguity.
8026 * doc/bison.texinfo (Default Action for Locations): Note
8027 YYLLOC_DEFAULT's usage for ambiguity locations.
8028 (GLR Semantic Actions): Cross-reference those notes.
8029
8030 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
8031
8032 * tests/glr-regression.at (Leaked semantic values when reporting
8033 ambiguity): Remove unnecessary union and type declarations.
8034 (Leaked lookahead after nondeterministic parse syntax error): New test
8035 case.
8036 * data/glr.c (yyparse): Check for zero stacks remaining before
8037 attempting to shift the lookahead so that you don't lose it.
8038
8039 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8040
8041 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
8042 * tests/glr-regression.at (Leaked semantic values when reporting
8043 ambiguity): New test case.
8044 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
8045 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
8046 now unnecessary yystackp parameter.
8047 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
8048 destructors can be called.
8049
8050 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
8051 in existing testcases.
8052
8053 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8054
8055 Don't leak semantic values for parent RHS when a user action cuts the
8056 parser, and clean up related code a bit.
8057 * tests/glr-regression.at (Leaked merged semantic value if user action
8058 cuts parse): Rename to...
8059 (Leaked semantic values if user action cuts parse): ... this. Add check
8060 for leaked parent RHS values.
8061 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
8062 between an unresolved state (non-empty chain of semantic options) and
8063 an incomplete one (signaled by an empty chain).
8064 (yyresolveStates): Document the interface. Move all manipulation of a
8065 successfully or unsuccessfully resolved yyGLRState to...
8066 (yyresolveValue): ... here so that yyresolveValue always leaves a
8067 yyGLRState with consistent data and thus is easier to understand.
8068 Remove the yyvalp and yylocp parameters since they are always just
8069 taken from the yys parameter. When reporting a discarded merged value
8070 in debugging output, note that it is incompletely merged. Document the
8071 interface.
8072 (yyresolveAction): If resolving any of the RHS states fails, destroy
8073 them all rather than leaking them. Thus, as long as user actions are
8074 written to clean up the RHS correctly, yyresolveAction always cleans up
8075 the RHS of a semantic option. Document the interface.
8076
8077 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
8078
8079 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
8080 led to a segmentation fault in GNU Pascal. Problem reported
8081 by Waldek Hebisch.
8082
8083 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
8084
8085 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
8086 mid-rule action inside a nonterminal symbol in order to declare a
8087 destructor for its semantic value.
8088
8089 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
8090
8091 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
8092 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
8093 __cplusplus && ! defined _STDLIB_H && !
8094 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
8095 defined free))]: Include <stdlib.h> rather than rolling our own
8096 declarations of malloc and free, to avoid problems with
8097 incompatible declarations (using 'throw') C++'s stdlib.h. This
8098 should fix Debian bug 340012
8099 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
8100 reported by Guillaume Melquiond.
8101
8102 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8103
8104 * NEWS: Clarify symbols versus types in unused-value warnings.
8105
8106 * configure.ac (AC_INIT): Bump version number.
8107
8108 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8109
8110 * NEWS: Version 2.1a.
8111 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
8112 since C99 requires this.
8113
8114 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
8115
8116 * m4/c-working.m4: New file.
8117 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
8118
8119 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
8120
8121 * Makefile.maint: Merge from coreutils.
8122
8123 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
8124
8125 More portability fixes for problems summarized by Nelson H. F. Beebe.
8126
8127 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
8128 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
8129 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
8130 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
8131 messes up because C++ code is compiled in 32-bit mode but linked
8132 in 64-bit mode.
8133
8134 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
8135
8136 More portability fixes for problems summarized by Nelson H. F. Beebe.
8137
8138 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
8139 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
8140
8141 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
8142 nodist_PROGRAMS, since we don't need to actually compile the
8143 example if we're just doing a plain 'make'. This avoids bothering
8144 the installer unnecessarily about problems due to weird C++
8145 compilers.
8146
8147 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
8148
8149 More portability fixes for problems summarized by Nelson H. F. Beebe.
8150
8151 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
8152 than #include "...", and compile with -I'.'. The old method was
8153 not portable, according to Posix and the C standard, and it does
8154 not work with Sun C 5.7, where previous #line directives affect
8155 the working directory used in later #include "..." directives.
8156
8157 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8158
8159 Various DJGGP specific issues in /djgpp
8160
8161 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
8162
8163 More portability fixes for problems summarized by Nelson H. F. Beebe.
8164
8165 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
8166 '#include <map>' works and that you can apply ++ to iterators.
8167
8168 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
8169
8170 Work around portability problems summarized by Nelson H. F. Beebe in
8171 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
8172
8173 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8174 that '#include <string>' works.
8175
8176 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
8177 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
8178 "warning: sorry: semantics of inline function static data `const
8179 unsigned char translate_table[262]' are wrong (you'll wind up with
8180 multiple copies)".
8181
8182 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
8183 or, xor to not_, and_, or_, and xor_, respectively. This works
8184 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
8185 random system header somewhere that includes the equivalent of
8186 <iso646.h>.
8187
8188 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
8189 -E" works; it apparently doesn't work with PathScale EKO Compiler
8190 Suite Version 2.0.
8191
8192 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
8193
8194 During deterministic GLR operation, user actions should be able to
8195 influence the parse by changing yychar. To make this easier to fix and
8196 to make glr.c easier to evolve in general, don't maintain yytoken in
8197 parallel with yychar; just compute yytoken when needed.
8198 * tests/glr-regression.at (Incorrect lookahead during deterministic
8199 GLR): Check that setting yychar in a user action has the intended
8200 effect.
8201 * data/glr.c (yyGLRStack): Remove yytokenp member.
8202 (yyclearin): Don't set *yytokenp.
8203 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
8204 yychar rather than *yytokenp to determine the current lookahead.
8205 Compute yytoken locally when needed.
8206 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
8207 point to.
8208
8209 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
8210 after `--report' documentation.
8211
8212 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
8213
8214 * src/parse-gram.y (grammar_declaration): Location of printer
8215 symbol is @1, not list->location. Bug reported by twlevo.
8216 * tests/input.at (Incompatible Aliases): Adjust to above change.
8217
8218 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
8219
8220 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
8221 all the test at once. This makes the output easier to read in the
8222 normal case.
8223
8224 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
8225 got from <http://bro-ids.org/download.html>. The bug is that
8226 when two actions appeared in succession, the second one was
8227 scanned before the first one was added to the grammar rule
8228 as a midrule action. Bison then output the incorrect warning
8229 "parse.y:905.17-906.36: warning: unused value: $3".
8230 * src/parse-gram.y (BRACED_CODE, action): These are no longer
8231 associated with a value.
8232 (rhs): Don't invoke grammar_current_rule_action_append.
8233 (action): Invoke it here instead.
8234 * src/reader.c (grammar_midrule_action): Now extern.
8235 (grammar_current_rule_action_append): Don't invoke
8236 grammar_midrule_action; that is now the scanner's job.
8237 * src/reader.h (last_string, last_braced_code_loc):
8238 (grammar_midrule_action): New decls.
8239 * src/scan-gram.l (last_string): Now extern, sigh.
8240 (last_braced_code_loc): New extern variable.
8241 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
8242 rule already has an action.
8243 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
8244 * tests/input.at (AT_CHECK_UNUSED_VALUES):
8245 Add some tests to check that the above changes fixed the bug.
8246
8247 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
8248
8249 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
8250 All used changed. Check whether the symbol has a destructor,
8251 not whether it is typed.
8252 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
8253 that the values are still reported as unused. All line numbers
8254 adjusted.
8255
8256 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
8257
8258 Work around a bug in bro 0.8, which underparenthesizes its
8259 definition of YYLLOC_DEFAULT.
8260 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
8261 their arguments.
8262 * data/lalr1.cc: Likewise.
8263 * data/yacc.cc: Likewise.
8264
8265 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
8266
8267 Work around a bug in Pike 7.0, and give the Pike folks a
8268 better way to override the usual int widths.
8269 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
8270 user can override the types.
8271 (short): #undef, to work around a bug in Pike 7.0.
8272 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
8273 (union yyalloc.yyss): Use yytype_int16 rather than short.
8274 All uses changed.
8275 (yysigned_char): Remove.
8276 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
8277 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
8278 * tests/regression.at (Web2c Actions): Adjust to above changes.
8279
8280 * src/reader.c (check_and_convert_grammar): New function.
8281 (reader): Close the input file even if something went wrong during
8282 parsing. Minor file descriptor leak reported by twlevo.
8283
8284 * src/assoc.c (assoc_to_string): Use a default: abort (); case
8285 to pacify gcc -Wswitch-default.
8286 * src/scan-gram.l (adjust_location): Use a default: break; case
8287 to pacify gcc -Wswitch-default.
8288 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
8289 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8290 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8291 Move these decls to scan-skel.l, since they don't need to be
8292 visible elsewhere.
8293 * src/scan-skel.l: Accept the above decls.
8294 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
8295 is used.
8296
8297 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
8298
8299 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
8300 since we don't want to insist on a version number at the start
8301 of the changelog every time.
8302 * Makefile.maint: Sync from coreutils a bit better.
8303 (sc_trailing_blank): Renamed from sc_trailing_space.
8304 All uses changed.
8305 (sc_no_if_have_config_h, sc_require_config_h):
8306 (sc_prohibit_assert_without_use): New rules.
8307 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
8308 (sc_dd_max_sym_length): Fix leading spaces in rule.
8309 (sc_system_h_headers): Prefix with @.
8310 (sc_useless_cpp_parens, m4-check): Output line numbers.
8311 (changelog-check): Allow version only in head.
8312 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
8313 satisfy new Makefile.maint rule.
8314 * data/glr.c: Likewise.
8315 * data/glr.cc: Likewise.
8316 * data/lalr1.cc: Likewise.
8317 * data/yacc.c: Likewise.
8318 * lib/ebitsetv.c: Likewise.
8319 * lib/lbitset.c: Likewise.
8320 * lib/subpipe.c: Likewise.
8321 * lib/timevar.c: Likewise.
8322 * src/system.h: Likewise.
8323 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
8324 * djgpp/Makefile.maint: Add copyright notice.
8325 * djgpp/README.in: Likewise.
8326 * djgpp/config.bat: Likewise.
8327 * djgpp/config.site: Likewise.
8328 * djgpp/config_h.sed: Likewise.
8329 * djgpp/djunpack.bat: Likewise.
8330 * djgpp/config.sed: Fix copyright notice to match standard format.
8331 * djgpp/subpipe.h: Likewise.
8332 * lib/bitsetv-print.c: Likewise.
8333 * lib/bitsetv.c: Likewise.
8334 * lib/subpipe.h: Likewise.
8335 * lib/timevar.c: Likewise.
8336 * lib/timevar.h: Likewise.
8337 * djgpp/subpipe.c: Use standard recipe for config.h.
8338 * lib/abitset.c: Likewise.
8339 * lib/bitset.c: Likewise.
8340 * lib/bitset_stats.c: Likewise.
8341 * lib/bitsetv-print.c: Likewise.
8342 * lib/bitsetv.c: Likewise.
8343 * lib/ebitsetv.c: Likewise.
8344 * lib/get-errno.c: Likewise.
8345 * lib/lbitset.c: Likewise.
8346 * lib/subpipe.c: Likewise.
8347 * lib/timevar.c: Likewise.
8348 * lib/vbitset.c: Likewise.
8349 * tests/local.at: Likewise.
8350 * src/scan-gram.l: Don't include verify.h, since system.h does
8351 that for us.
8352 * .x-sc_require_config_h: New file.
8353 * .x-sc_unmarked_diagnostics: New file.
8354
8355 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
8356
8357 Be a bit more systematic about using 'abort'.
8358 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
8359 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
8360 Put 'default: abort ();' before some other case, to satisfy older
8361 pedantic compilers.
8362 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8363 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
8364 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
8365 * src/conflicts.c (resolve_sr_conflict): Likewise.
8366 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
8367 (get_decision_str, get_orientation_str, get_node_alignment_str):
8368 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
8369 (get_linestyle_str, get_arrowstyle_str): Likewise.
8370 * src/conflicts.c (resolve_sr_conflict):
8371 Use a default case rather than one for the one remaining enum
8372 value, to catch invalid enum values as well.
8373 * src/lalr.c (set_goto_map, map_goto):
8374 Prefer "assert (FOO);" to "if (!FOO) abort ();".
8375 * src/nullable.c (nullable_compute, token_definitions_output):
8376 Likewise.
8377 * src/reader.c (packgram, reader): Likewise.
8378 * src/state.c (transitions_to, state_new, state_reduction_find):
8379 Likewise.
8380 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
8381 (symbol_pack): Likewise.
8382 * src/tables.c (conflict_row, pack_vector): Likewise.
8383 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
8384 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
8385 * src/system.h: Don't include <assert.h>.
8386 (assert): New macro.
8387
8388 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
8389 (Destructor Decl, Parser Function, Pure Calling):
8390 Describe rules for braces inside C code more carefully.
8391
8392 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
8393
8394 Fix some porting glitches found by Nelson H. F. Beebe.
8395 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
8396 compilers that don't understand that abort () does not return.
8397 * src/state.c (transitions_to): Likewise.
8398 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8399 that '#include <cstdlib>' works.
8400 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
8401 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
8402 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
8403 for the benefit of some pre-C99 compilers.
8404
8405 * bootstrap: Undo changes to gnulib files that autoreconf made.
8406
8407 Minor fixups to get 'make maintainer-check' to work.
8408 * configure.ac: Don't use -Wnested-externs, as it's incompatible
8409 with the new verify.h implementation.
8410 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
8411 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
8412 * data/yacc.c (YYUSE): Likewise.
8413 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
8414 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
8415 * src/parse-gram.y (declaration): Don't pass a string constant
8416 to a function that expects char *, since GCC might complain
8417 about the constant value.
8418 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
8419 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
8420 before #defining them.
8421 * tests/glr-regression.at
8422 (Incorrectly initialized location for empty right-hand side in GLR):
8423 In yyerror, use the msg arg.
8424 (Corrupted semantic options if user action cuts parse):
8425 (Incorrect lookahead during deterministic GLR):
8426 (Incorrect lookahead during nondeterministic GLR):
8427 Don't name a local var 'index'; it shadows string.h's 'index'.
8428
8429 2006-01-19 Akim Demaille <akim@epita.fr>
8430
8431 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
8432 location, not just parts of it.
8433
8434 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
8435
8436 * NEWS: Document the fact that multiple %unions are now allowed.
8437 * doc/bison.texinfo (Union Decl): Likewise.
8438 * TODO: This feature is now implemented, so remove it from
8439 the wishlist.
8440
8441 * Makefile.maint: Merge with coreutils Makefile.maint.
8442 (CVS_LIST): Use build-aux version if available.
8443 (VERSION_REGEXP): New macro.
8444 (syntax-check-rules): Add sc_no_if_have_config_h,
8445 sc_prohibit_assert_without_use, sc_require_config_h,
8446 sc_useless_cpp_parens.
8447 (sc_obsolete_symbols): Check for O_NDELAY.
8448 (sc_dd_max_sym_length): Track coreutils.
8449 (sc_unmarked_diagnostics): Look in all files, not just *.c.
8450 (sc_useless_cpp_parens): New rule.
8451 (news-date-check): Look for version or today's date.
8452 (changelog-check): Don't require version number near head.
8453 (copyright-check): Use current year instead of hardwiring 2005.
8454 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
8455 (announcement): Add --gpg-key-ID.
8456
8457 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
8458 with "file system".
8459
8460 Avoid undefined behavior that addressed just before the start of an
8461 array. Problem reported by twlevo.
8462 * src/reader.c (packgram): Prepend a new sentinel before ritem.
8463 * src/lalr.c (build_relations): Rely on new sentinel.
8464 * src/gram.c (gram_free): Adjust to new sentinel.
8465
8466 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
8467
8468 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
8469 yylookaheadNeeds. All uses updated.
8470 (yysplitStack): Rename local yynewLookaheadStatuses to
8471 yynewLookaheadNeeds.
8472 * data/glr-regression.at (Incorrect lookahead during nondeterministic
8473 GLR): In comments, change `lookahead status' to `lookahead need'.
8474
8475 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8476
8477 * data/glr.c (yysplitStack): A little stylistic rewrite.
8478
8479 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8480
8481 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
8482
8483 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
8484
8485 * doc/bison.texinfo: Fix some typos.
8486 (GLR Semantic Actions): New subsection discussing special
8487 considerations because GLR semantic actions might be deferred.
8488 (Actions): Mention look-ahead usage of yylval.
8489 (Actions and Locations): Mention look-ahead usage of yylloc.
8490 (Special Features for Use in Actions): Add YYEOF entry and mention it
8491 in the yychar entry.
8492 In the yychar entry, remove mention of the local yychar case (pure
8493 parser) since this is irrelevant information when writing semantic
8494 actions and since it's already discussed in `Table of Symbols' where
8495 yychar is otherwise described as an external variable.
8496 In the yychar entry, don't call it the `current' look-ahead since it
8497 isn't when semantic actions are deferred.
8498 In the yychar and yyclearin entries, add note about deferred semantic
8499 actions.
8500 Add yylloc and yylval entries discussing look-ahead usage.
8501 (Look-Ahead Tokens): When discussing yychar, don't call it the
8502 `current' look-ahead, and do mention yylval and yylloc.
8503 (Error Recovery): Cross-reference `Action Features' when mentioning
8504 yyclearin.
8505 (Table of Symbols): In the yychar entry, don't call it the `current'
8506 look-ahead.
8507 In the yylloc and yylval entries, mention look-ahead usage.
8508
8509 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
8510
8511 * tests/glr-regression.at: Update copyright year to 2006.
8512
8513 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8514
8515 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
8516 use during nondeterministic operation to track which stacks have
8517 actually needed the current lookahead.
8518 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
8519 Allocate, deallocate, resize, and otherwise shuffle space for
8520 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
8521 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
8522 appropriately during nondeterministic operation.
8523 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
8524 members to store the current lookahead to be used by the deferred
8525 user action.
8526 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
8527 from which the RHS is taken. Set the lookahead members of the new
8528 yySemanticOption according to the lookahead status for stack yyk.
8529 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
8530 yyaddDeferredAction.
8531 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
8532 members of yySemanticOption before invoking yyuserAction, and then set
8533 them back to their current values afterward.
8534 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
8535 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
8536 * tests/glr-regression.at: Remove `.' from the ends of recent test case
8537 titles for consistency.
8538 (Leaked merged semantic value if user action cuts parse): In order to
8539 suppress lint warnings, use arguments in merge function, and assign
8540 char value < 128 in main.
8541 (Incorrect lookahead during deterministic GLR): New test case.
8542 (Incorrect lookahead during nondeterministic GLR): New test case.
8543
8544 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8545
8546 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
8547 !yyvaluep as signal that no semantic value is available to print.
8548 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
8549 to print a semantic value.
8550
8551 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8552
8553 * tests/glr-regression.at: For consistency with my newer test cases,
8554 don't thank myself.
8555
8556 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
8557
8558 * data/glr.c (yyresolveValue): When merging semantic options, if at
8559 least one user action succeeds but a later one cuts the parse, then
8560 destroy the semantic value before returning rather than leaking it.
8561 (yyresolveStates): If a user action cuts the parse and thus
8562 yyresolveValue fails, ignore the (unset) semantic value rather than
8563 corrupting the yyGLRState, and empty the semantic options list since
8564 the user actions should have called all necessary destructors.
8565 Simplify code with YYCHK.
8566 * tests/glr-regression.at (Corrupted semantic options if user action
8567 cuts parse): New test case.
8568 (Undesirable destructors if user action cuts parse): New test case.
8569 Before applying any of this patch, this test case never actually failed
8570 for me... but only because the corrupted semantic options usually
8571 masked this bug.
8572 (Leaked merged semantic value if user action cuts parse): New test
8573 case.
8574
8575 2006-01-05 Akim Demaille <akim@epita.fr>
8576
8577 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
8578
8579 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
8580
8581 * data/c.m4 (b4_c_modern): New macro, with a new provision for
8582 _MSC_VER. Problem reported by Cenzato Marco.
8583 (b4_c_function_def): Use it.
8584 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
8585 b4_c_modern.
8586 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
8587 than rolling our own.
8588
8589 2006-01-04 Akim Demaille <akim@epita.fr>
8590
8591 Also warn about non-used mid-rule values.
8592 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
8593 member.
8594 (symbol_list_new): Adjust.
8595 * src/reader.c (symbol_typed_p): New.
8596 (grammar_rule_check): Use it.
8597 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
8598 Check its rule.
8599 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
8600 Use it.
8601 * tests/actions.at (Exotic Dollars): Adjust.
8602
8603 2006-01-04 Akim Demaille <akim@epita.fr>
8604
8605 * src/reader.c (grammar_midrule_action): If $$ is set in a
8606 mid-rule, move the `used' bit to its lhs.
8607 * tests/input.at (Unused values): New.
8608 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
8609
8610 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
8611
8612 * doc/bison.texinfo (Bison Options): Say more accurately what
8613 --yacc does.
8614 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
8615 about declarations in the grammar when in Yacc mode, as POSIX does
8616 not require a diagnostic when the grammar uses extensions.
8617
8618 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
8619
8620 Warn about dubious constructions like "%token T T".
8621 Reported by twlevo.
8622 * src/symtab.h (struct symbol.declared): New member.
8623 * src/symtab.c (symbol_new): Initialize it to false.
8624 (symbol_class_set): New arg DECLARING, specifying whether
8625 this is a declaration that we want to warn about, if there
8626 is more than one of them. All uses changed.
8627
8628 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
8629 Allow multiple %union directives, whose contents concatenate.
8630 * src/parse-gram.y (grammar_declaration): Likewise.
8631 Use muscle_code_grow, so that we don't need stype_line any more.
8632 All uses changed.
8633
8634 * src/muscle_tab.c (muscle_grow): Fix comment.
8635
8636 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
8637 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
8638 Update copyright year to 2006.
8639
8640 2006-01-03 Akim Demaille <akim@epita.fr>
8641
8642 Have glr.cc pass (some of) the calc.at tests.
8643 * data/glr.cc (b4_parse_param_orig): New.
8644 (b4_parse_param): Improve its definition, and bound it more
8645 clearly in the skeleton.
8646 (b4_epilogue): Append, instead of prepending, in order to keep
8647 #line consistency.
8648 Simplify the generation of auxiliary functions: locations and
8649 purity are mandated.
8650 (b4_global_tokens_and_yystype): Honor it.
8651 * data/location.cc (c++.m4): Don't include it.
8652 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
8653 and AT_SKEL_CC_IF.
8654 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
8655 AT_LALR1_CC_IF.
8656 Be sure to initialize the first position's filename.
8657 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
8658 mandated anyway.
8659 (AT_CHECK_CALC_GLR_CC): New.
8660 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
8661
8662 2006-01-02 Akim Demaille <akim@epita.fr>
8663
8664 * src/output.c (output_skeleton): Don't hard wire the inclusion of
8665 c.m4.
8666 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
8667 * data/glr.cc: Do not include stack.hh.
8668
8669 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
8670
8671 * data/glr.c: Reformat whitespace with tabs.
8672 (b4_lpure_formals): Remove this unused m4 macro.
8673 * tests/cxx-type.at: Reformat whitespace with tabs.
8674 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
8675 since it's a member. Rename type to isNterm for clarity.
8676
8677 2005-12-29 Akim <akim@sulaco.local>
8678
8679 Let glr.cc catch up with symbol_value_print.
8680 * data/glr.cc (b4_yysymprint_generate): Replace by...
8681 (b4_yy_symbol_print_generate): this.
8682 (yy_symbol_print, yy_symbol_value_print): Declare them.
8683
8684 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
8685
8686 * src/location.h (boundary): Note that a line or column equal
8687 to INT_MAX indicates an overflow.
8688 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
8689 (rule_length_overflow, increment_rule_length, add_column_width):
8690 New functions.
8691 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
8692 (<SC_BRACED_CODE>"}"):
8693 Use increment_rule_length rather than incrementing it by hand.
8694 (adjust_location, handle_syncline): Diagnose overflow.
8695 (handle_action_dollar, handle_action_at):
8696 Fix bug with monstrosities like $-2147483648.
8697 Remove now-unnecessary checks.
8698 (scan_integer): Verify assumptions and remove now-unnecessary checks.
8699 (convert_ucn_to_byte): Verify assumptions.
8700 (handle_syncline): New arg LOC. All callers changed.
8701 Don't store through a value derived from char const * pointer.
8702
8703 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
8704 GCC warnings.
8705
8706 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
8707
8708 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
8709 Remove unnecessary forward static decls.
8710
8711 2005-12-27 Akim Demaille <akim@epita.fr>
8712
8713 * src/reader.c (grammar_current_rule_check): Also check that $$
8714 is used.
8715 Take the rule to check as argument, hence rename as...
8716 (grammar_rule_check): this.
8717 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
8718 Rename as...
8719 (grammar_rule_begin, grammar_rule_end): these, for consistency.
8720 (grammar_midrule_action, grammar_symbol_append): Now static.
8721 * tests/torture.at (input): Don't rely on the default action
8722 being always performed.
8723 * tests/calc.at: "Set" $$ even when the action is "cut" with
8724 YYERROR or other.
8725 * tests/actions.at (Exotic Dollars): Instead of using unused
8726 values, check that the warning is issued.
8727
8728 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
8729
8730 * NEWS: Improve wording for unused-value warnings.
8731
8732 2005-12-22 Akim Demaille <akim@epita.fr>
8733
8734 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
8735 (b4_yysymprint_generate): Rename as...
8736 (b4_yy_symbol_print_generate): this.
8737 Generate yy_symbol_print instead of yysymprint.
8738 Generate also yy_symbol_value_print, and use it.
8739
8740 2005-12-22 Akim Demaille <akim@epita.fr>
8741
8742 * NEWS: Warn about unused values.
8743 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
8744 a `used' member.
8745 (symbol_list_n_get, symbol_list_n_used_set): New.
8746 (symbol_list_n_type_name_get): Use symbol_list_n_get.
8747 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
8748 * src/reader.c (grammar_current_rule_check): Check that values are
8749 used.
8750 * src/symtab.c (symbol_print): Accept 0.
8751 * tests/existing.at: Remove the type information.
8752 Empty the actions.
8753 Remove useless actions (beware of mid-rule actions: perl -000
8754 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
8755 * tests/actions.at (Exotic Dollars): Use unused values.
8756 * tests/calc.at: Likewise.
8757 * tests/glr-regression.at (No users destructors if stack 0 deleted):
8758 Likewise.
8759
8760 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
8761 rule_useful_p.
8762
8763 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
8764
8765 Undo 2005-12-01 tentative license wording change. The wording is
8766 still being reviewed by the lawyers, and we don't want to wait for
8767 them before publishing a test release. For now, revert to the
8768 previous wording.
8769 * NEWS: Undo 2005-12-01 change.
8770 * data/glr.c: Revert to previous license wording.
8771 * data/glr.cc: Likewise.
8772 * data/lalr1.cc: Likewise.
8773 * data/location.cc: Likewise.
8774 * data/yacc.c: Likewise.
8775
8776 * NEWS: Reword %destructor vs YYABORT etc.
8777 * data/glr.c: Use American spacing, for consistency.
8778 * data/glr.cc: Likewise.
8779 * data/lalr1.cc: Likewise.
8780 * data/yacc.c: Likewise.
8781 * data/yacc.c: Reformat comments slightly.
8782 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
8783 for consistency. Fix some spelling errors and reword recently-included
8784 text slightly.
8785 * tests/cxx-type.at: Cast results of malloc, for C++.
8786
8787 2005-12-21 Joel E. Denny <address@hidden>
8788
8789 * tests/cxx-type.at: Construct a tree, count the parents of shared
8790 nodes, and free each node once and only once. Previously, the memory
8791 for semantic values was leaked instead.
8792
8793 2005-12-21 Joel E. Denny <address@hidden>
8794
8795 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
8796 (yylval, yylloc): If pure, #define to yystackp->yyval and
8797 yystackp->yyloc similar to yychar and yynerrs.
8798 (yyparse): If pure, remove local yylval and yylloc. Add local
8799 yystackp to accommodate pure definitions of yylval and yylloc.
8800 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
8801 yylvalp and yyllocp to &yylval and &yylloc.
8802 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
8803 namespace. Previously, nerrs and char were missing, but lval and lloc
8804 weren't necessary.
8805 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
8806 yylvalp and yyllocp parameters since, if pure, these are now always
8807 accessible through yystackp. If not pure, they are still accessible
8808 globally.
8809 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
8810 `if (YYID (N))' to pacify lint.
8811
8812 2005-12-21 Akim Demaille <akim@epita.fr>
8813
8814 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
8815 destroy the RHS symbols of a rule.
8816 * data/yacc.c (yylen): Initialize to 0.
8817 Keep its value to the number of items to possibly shift.
8818 In particular, a regular successful parse that ends on YYFINAL by
8819 a (internal) YYACCEPT must not have yylen != 0.
8820 (yyerrorlab, yyreturn): Pop the RHS.
8821 Reorder a bit to emphasize the `shifting' bits of code.
8822 (YYPOPSTACK): Now accept a number of items to pop.
8823 * data/lalr1.cc: Likewise.
8824 * data/glr.c: Formatting changes.
8825 Use goto instead of fall through.
8826 * doc/bison.texinfo (Destructor Decl): Complete.
8827
8828 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8829
8830 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
8831 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
8832 * djgpp/config.bat: Replace every occurence of the file name
8833 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
8834 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
8835 * djgpp/config.sed: Replace every occurence of the file name
8836 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
8837 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
8838 * djgpp/djunpack.bat: DJGPP specific file.
8839 * djgpp/fnchange.lst: DJGPP specific file.
8840 * djgpp/README.in: Add new information about how to unpack the bison
8841 source on MSDOS and other systems which have 8.3 file name restrictions
8842 using djunpack.bat and fnchange.lst.
8843
8844 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
8845
8846 * bootstrap (build_cvs_prefix): Remove; unused.
8847 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
8848 when getting gnulib.
8849
8850 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
8851
8852 * data/glr.c: Reorder typedef declarations for structs to match order
8853 of struct declarations.
8854 Rename yystack everywhere to yystackp except in yyparse where it's not
8855 a pointer.
8856 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
8857 consistency.
8858 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
8859 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
8860 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
8861 lint.
8862
8863 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
8864
8865 * tests/sets.at (Accept): Fix typos in regular expression used to
8866 sed out the final state number.
8867
8868 Work around portability problem on Solaris 10: flex-generated
8869 files include <stdio.h> before <config.h>, which messes up
8870 because the latter defines __EXTENSIONS__. Address the problem
8871 by creating two new little files that include <config.h> first,
8872 then include the flex-generated files. Rewrite everyone else
8873 to include <config.h> first, as well.
8874 * lib/timevar.c: Always include "config.h".
8875 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
8876 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
8877 (EXTRA_bison_SOURCES): New macro.
8878 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
8879 * src/system.h: Don't include config.h.
8880 * src/LR0.c: Include <config.h> first.
8881 * src/assoc.c: Likewise.
8882 * src/closure.c: Likewise.
8883 * src/complain.c: Likewise.
8884 * src/conflicts.c: Likewise.
8885 * src/derives.c: Likewise.
8886 * src/files.c: Likewise.
8887 * src/getargs.c: Likewise.
8888 * src/gram.c: Likewise.
8889 * src/lalr.c: Likewise.
8890 * src/location.c: Likewise.
8891 * src/main.c: Likewise.
8892 * src/muscle_tab.c: Likewise.
8893 * src/nullable.c: Likewise.
8894 * src/output.c: Likewise.
8895 * src/parse-gram.y: Likewise.
8896 * src/print.c: Likewise.
8897 * src/print_graph.c: Likewise.
8898 * src/reader.c: Likewise.
8899 * src/reduce.c: Likewise.
8900 * src/relation.c: Likewise.
8901 * src/state.c: Likewise.
8902 * src/symlist.c: Likewise.
8903 * src/symtab.c: Likewise.
8904 * src/tables.c: Likewise.
8905 * src/uniqstr.c: Likewise.
8906 * src/vcg.c: Likewise.
8907
8908 * src/parse-gram.y: Fix minor problems uncovered by lint.
8909 (current_lhs, current_lhs_location): Now static.
8910 (current_assoc): Remove unused variable.
8911
8912 Cleanups so that Bison-generated parsers have less lint.
8913 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
8914 Prepend /*ARGSUSED*/, for lint's sake.
8915 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
8916 definition if 'lint' is defined.
8917 (YYID): New macro (or function, if lint).
8918 All uses of /*CONSTCOND*/0 replaced by YYID(0).
8919 * data/yacc.c: Likewise.
8920 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
8921 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
8922 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
8923 is C++ only.
8924 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
8925 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
8926 Use YYID(0) rather than 0, for lint.
8927 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
8928 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
8929
8930 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
8931
8932 * tests/glr-regression.at
8933 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8934 Close memory leak reported by twlevo.
8935
8936 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
8937
8938 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
8939 all stacks.
8940 (yyparse): Iterate another stack in order to call user destructors.
8941 * tests/glr-regression.at (No users destructors if stack 0 deleted):
8942 New test case.
8943 (Duplicated user destructor for lookahead): This test now is expected
8944 to succeed.
8945
8946 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
8947
8948 * NEWS: Document the following change.
8949 * data/yacc.c: Say "parser skeleton" rather than "file", since
8950 it's no longer just a file.
8951 * data/glr.c: Grant a special exception for C GLR parsers, that
8952 reads like the already-existing exception for C LALR(1) parsers.
8953 * data/glr.cc: Likewise.
8954 * data/lalr1.cc: Likewise.
8955 * data/location.cc: Likewise.
8956 * data/yacc.c: Reword the "written by" statement to clarify that
8957 it was the parser skeleton, not the entire output file.
8958 * data/glr.c: Written by Paul Hilfinger.
8959 * data/glr.cc: Written by Akim Demaille.
8960 * data/lalr1.cc: Likewise.
8961
8962 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
8963
8964 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
8965 Fix typos in previous change that broke 'make check'.
8966 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
8967 supported in C.
8968 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
8969 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
8970 We can revert this once things settle down.
8971
8972 * src/conflicts.c (conflicts_print): Don't print file name twice
8973 when %expect fails because there were no conflicts.
8974 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
8975 change.
8976 * tests/conflicts.at (%expect not enough, %expect too much):
8977 (%expect with reduce conflicts): Adjust to new behavior.
8978
8979 2005-11-18 Akim Demaille <akim@epita.fr>
8980
8981 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
8982 errors.
8983 * NEWS: Document this.
8984 * doc/bison.texinfo (Expect Decl): Likewise.
8985
8986 2005-11-16 Akim Demaille <akim@epita.fr>
8987
8988 Generalize the display of semantic values and locations in traces.
8989 * data/glr.c (yy_reduce_print): Fix indices (again).
8990 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
8991 literal integers.
8992 * data/lalr1.cc (yyreduce_print): Rename as...
8993 (yy_reduce_print): this.
8994 Display values and locations.
8995 * data/yacc.c (yy_reduce_print): Likewise.
8996 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
8997 (yysymprint): Move higher to be visible from yy_reduce_print).
8998 (yyparse): Adjust.
8999 * tests/calc.at: Adjust the expected length of the traces.
9000
9001 2005-11-14 Akim Demaille <akim@epita.fr>
9002
9003 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
9004 from 1 to N, while values and location start at 0.
9005 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
9006
9007 2005-11-14 Akim Demaille <akim@epita.fr>
9008
9009 * data/glr.c (yy_reduce_print): Fix the $ number.
9010
9011 2005-11-14 Akim Demaille <akim@epita.fr>
9012
9013 "Use" parse parameters.
9014 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
9015 * data/glr.c, data/glr.cc: Use them.
9016 * data/glr.c (YYUSE): Have a C++ definition that supports
9017 non-pointer types.
9018
9019 2005-11-14 Akim Demaille <akim@epita.fr>
9020
9021 * data/glr.c (yyexpandGLRStack): Declare only if defined.
9022
9023 2005-11-14 Akim Demaille <akim@epita.fr>
9024
9025 * data/glr.cc: New.
9026 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
9027
9028 2005-11-12 Akim Demaille <akim@epita.fr>
9029
9030 Let position and location be PODs.
9031 * data/location.cc (position::initialize, location::initialize): New.
9032 (position::position, location::location): Define only if
9033 b4_location_constructors is defined.
9034 * data/lalr1.cc (b4_location_constructors): Define it for backward
9035 compatibility.
9036 * doc/bison.texinfo (Initial Action Decl): Use initialize.
9037
9038 2005-11-12 Akim Demaille <akim@epita.fr>
9039
9040 * data/lalr1.cc: Move the body of the ctor and dtor into the
9041 parser file (instead of the header).
9042 Wrap the implementations in a "namespace yy".
9043
9044 2005-11-12 Akim Demaille <akim@epita.fr>
9045
9046 Have glr.c include its header file when created.
9047 * data/glr.c (b4_shared_declarations): New.
9048 Output them verbatim in the parser if !%defines, otherwise
9049 output then in the header file, and include it instead.
9050
9051 2005-11-11 Akim Demaille <akim@epita.fr>
9052
9053 * data/glr.c: Comment changes.
9054
9055 2005-11-11 Akim Demaille <akim@epita.fr>
9056
9057 When yydebug, report semantic and location values for reductions.
9058 * data/glr.c (yy_reduce_print): Report the semantic values and the
9059 locations.
9060 (YY_REDUCE_PRINT): Adjust.
9061 (yyglrReduce): Use them.
9062 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
9063 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
9064 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
9065 traces.
9066
9067 2005-11-10 Akim Demaille <akim@epita.fr>
9068
9069 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
9070 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
9071 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
9072
9073 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
9074
9075 * m4/cxx.m4, examples/Makefile.am: Don't build
9076 examples/calc++ if no C++ compiler is available. (trivial change)
9077
9078 2005-11-09 Akim Demaille <akim@epita.fr>
9079
9080 * src/scan-skel.l: Use a couple of asserts.
9081
9082 2005-11-03 Akim Demaille <akim@epita.fr>
9083
9084 In some (weird) cases, the final state number is incorrect.
9085 Reported by Alexandre Duret-Lutz.
9086 * src/LR0.c (state_list_append): Remove the computation of
9087 final_state.
9088 (save_reductions): Do it here.
9089 (get_state): Alpha conversion.
9090 (generate_states): Use a for loop.
9091 * src/gram.h (item_number_is_rule_number)
9092 (item_number_is_symbol_number): New.
9093 * src/state.c: Use assert.
9094 * src/system.h: Include assert.h.
9095 * tests/sets.at (Accept): New.
9096
9097 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9098
9099 * data/glr.c (yyfill): Adjust comment.
9100 (yyresolveAction): Initialize default location properly
9101 for empty right-hand sides.
9102 (yydoAction): Ditto.
9103 Add comment explaining apparently dead code.
9104 * tests/glr-regression.at
9105 (Incorrectly initialized location for empty right-hand side in GLR):
9106 New test.
9107
9108 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
9109
9110 * bootstrap (cleanup_gnulib): New function. Use it to clean up
9111 gnulib when interrupted. This fixes some race conditions and
9112 works around some portability problems (one noted by Paul
9113 Hilfinger).
9114
9115 2005-10-22 Akim <akim@epita.fr>
9116
9117 * Makefile.cfg: Adjust to config -> build-aux.
9118 Reported by twledo.
9119
9120 2005-10-21 Akim Demaille <akim@epita.fr>
9121
9122 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
9123 the %parse-params.
9124 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
9125 * data/yacc.c (b4_Pure_if): Rename as...
9126 (b4_yacc_pure_if): this.
9127 (YY_SYMBOL_PRINT, yyparse): Adjust.
9128 * doc/bison.texinfo: Formatting changes.
9129
9130 2005-10-21 Akim Demaille <akim@epita.fr>
9131
9132 Finish the transition config -> build-aux.
9133 * configure.ac, Makefile.am: Use build-aux.
9134 * config/prev-version, config/announce-gen, config/Makefile.am:
9135 Move to...
9136 * build-aux/prev-version, build-aux/announce-gen,
9137 * build-aux/Makefile.am: here.
9138
9139 2005-10-14 Akim Demaille <akim@epita.fr>
9140
9141 * examples/calc++/test: Use set -x only when VERBOSE.
9142
9143 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
9144
9145 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
9146 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
9147
9148 2005-10-13 Akim Demaille <akim@epita.fr>
9149
9150 * src/scan-skel.l: Output the base name parts of the parser and
9151 header file names.
9152 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
9153 additional checks.
9154 Use this to exercise C++ outputs in subdirs.
9155 Reported by Oleg Smolsky.
9156
9157 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
9158
9159 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
9160 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
9161 Problem reported by John P. Hartmann.
9162 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
9163 already defined it.
9164
9165 2005-10-12 Akim Demaille <akim@epita.fr>
9166
9167 * src/parse-gram.y (version_check): Exit 63 to please missing
9168 (stands for "version mismatch).
9169 * tests/input.at, doc/bison.texinfo: Adjust.
9170
9171 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
9172
9173 Work around portability problems with Visual Age C compiler
9174 (xlc and xlC_r) reported by John P. Hartmann.
9175 * data/location.cc (initial_column, initial_line): Remove.
9176 All uses replaced by 0 and 1.
9177 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
9178 that xlc complains about.
9179 * src/scan-skel.l (skel_wrap): Likewise.
9180 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
9181 as __STDC__.
9182 * data/yacc.c (YYMODERN_C): New macro, which also looks at
9183 __STDC_VERSION__. Use it everywhere instead of looking at
9184 __STDC__ and __cplusplus.
9185
9186 2005-10-10 Akim Demaille <akim@epita.fr>
9187
9188 * examples/calc++/test: Be quiet unless VERBOSE.
9189
9190 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
9191
9192 * data/c.m4 (yydestruct, yysymprint):
9193 Use YYUSE instead of casting to void.
9194 * data/glr.c (YYUSE): New macro.
9195 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9196 Use it instead of rolling our own.
9197 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9198 (YYCHK1):
9199 Use /*CONSTCOND*/ to suppress lint warnings.
9200 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9201 (YY_STACK_PRINT): Use 'false' not '0'.
9202 (YYUSE): New macro.
9203 (yysymprint_, yydestruct_): Use it instead of rolling our own.
9204 * data/yacc.c (YYUSE): New macro.
9205 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
9206 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
9207 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
9208
9209
9210 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
9211 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
9212
9213 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
9214
9215 Undo the parts of the unlocked-I/O change that substituted
9216 putc or puts for printf. This might hurt performance a bit,
9217 but some people prefer the printf style.
9218 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
9219 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
9220 All uses replaced by YYFPRINTF and YYDPRINTF.
9221 * data/yacc.c: Likewise.
9222 * lib/bitset.c (bitset_print): Likewise.
9223 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
9224 putc and puts.
9225 * lib/lbitset.c (debug_lbitset): Likewise.
9226 * src/closure.c (print_firsts, print_fderives): Likewise.
9227 * src/gram.c (grammar_dump): Likewise.
9228 * src/lalr.c (look_ahead_tokens_print): Likewise.
9229 * src/output.c (escaped_output): Likewise.
9230 (user_actions_output): Break apart two printfs.
9231 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
9232 * src/reduce.c (reduce_print): Likewise.
9233 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
9234 * src/system.h: Include unlocked-io.h rathe than stdio.h.
9235
9236 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9237 Use assignments rather than casts-to-void to suppress
9238 unused-variable warnings. This pacifies 'lint'.
9239 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
9240 unused-variable warnings.
9241
9242 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9243
9244 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9245
9246 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
9247
9248 Use unlocked I/O for a minor performance improvement on hosts like
9249 GNU/Linux and Solaris that support unlocked I/O. The basic idea
9250 is to use the gnlib unlocked-io module, and to prefer putc and
9251 puts to printf when either will work (since the latter doesn't
9252 come in an unlocked flavor).
9253 * bootstrap (gnulib_modules): Add unlocked-io.
9254 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
9255 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
9256 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
9257 and similarly for puts and putc and printf.
9258 * data/yacc.c: Likewise.
9259 * lib/bitset.c (bitset_print): Likewise.
9260 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
9261 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
9262 to printf.
9263 * lib/lbitset.c (debug_lbitset): Likewise.
9264 * src/closure.c (print_firsts, print_fderives): Likewise.
9265 * src/gram.c (grammar_dump): Likewise.
9266 * src/lalr.c (look_ahead_tokens_print): Likewise.
9267 * src/output.c (escaped_output): Likewise.
9268 (user_actions_output): Coalesce two printfs.
9269 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
9270 * src/reduce.c (reduce_print): Likewise.
9271 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
9272 * src/system.h: Include unlocked-io.h rather than stdio.h.
9273
9274 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
9275 this confuses xgettext.
9276
9277 2005-10-02 Akim Demaille <akim@epita.fr>
9278
9279 * bootstrap (gnulib_modules): Add strverscmp.
9280 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
9281 * m4/.cvsignore: Add strverscmp.m4.
9282 * src/parse-gram.y (%require): New token, new rule.
9283 (version_check): New.
9284 * src/scan-gram.l (%require): Adjust.
9285 * tests/input.at (AT_REQUIRE): New.
9286 Use it.
9287 * doc/bison.texinfo (Require Decl): New.
9288 (Calc++ Parser): Use %require.
9289
9290 2005-10-02 Akim Demaille <akim@epita.fr>
9291
9292 * data/location.cc: New.
9293
9294 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
9295 Akim Demaille <akim@epita.fr>
9296
9297 Make sure -odir/foo.cc creates dir/location.hh etc.
9298 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
9299 (spec_file_prefix, spec_verbose_file, spec_graph_file)
9300 (spec_defines_file): Now const.
9301 (dir_prefix): New.
9302 (short_base_name): Remove.
9303 * src/files.c: Adjust.
9304 (dirname.h): Include.
9305 (base_name): Don't prototype it.
9306 (finput): Remove, duplicates gram_in.
9307 (full_base_name, short_base_name): Replace by...
9308 (all_but_ext, all_but_tab_ext): these.
9309 (compute_base_names): Rename as...
9310 (compute_file_name_parts): this.
9311 Update to compute the new variables, including dir_prefix.
9312 Adjust dependencies.
9313 * src/output.c (prepare): Output them.
9314 * src/reader.c: Adjust to use gram_in, not finput.
9315 * src/scan-skel.l (@dir_prefix@): New.
9316
9317 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9318
9319 * lib/subpipe.c: New function end_of_output_subpipe() added
9320 to allow support for non-posix systems. This is a no-op function
9321 for posix systems.
9322
9323 * lib/subpipe.h: New function end_of_output_subpipe() added
9324 to allow support for non-posix systems. This is a no-op function
9325 for posix systems.
9326
9327 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
9328 handle the lack of pipe/fork functionality on non-posix systems.
9329
9330 * djgpp/Makefile.maint: DJGPP specific file.
9331
9332 * djgpp/README.in: DJGPP specific file.
9333
9334 * djgpp/config.bat: DJGPP specific configuration file.
9335
9336 * djgpp/config.sed: DJGPP specific configuration file.
9337
9338 * djgpp/config.site: DJGPP specific configuration file.
9339
9340 * djgpp/config_h.sed: DJGPP specific configuration file.
9341
9342 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
9343
9344 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
9345
9346 2005-10-02 Akim Demaille <akim@epita.fr>
9347
9348 * data/location.cc: New, extract from...
9349 * data/lalr1.cc: here.
9350 (location.hh): Include it after the user prologue, in case the
9351 filename type is defined by the user.
9352 Forward declation location and position before the pre-prologue.
9353 (yyresult_): Rename as...
9354 (yyresult): this, it's a local variable, not an attribute.
9355 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
9356
9357 2005-10-01 Akim Demaille <akim@epita.fr>
9358
9359 * examples/extexi: Restore the #line generation.
9360
9361 2005-09-30 Akim Demaille <akim@epita.fr>,
9362 Alexandre Duret-Lutz <adl@gnu.org>
9363
9364 Move the token type and YYSTYPE in the parser class.
9365 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
9366 (parser::token): New, from the moved free definition of tokens.
9367 (parser::semantic_value): Now a full definition instead of an
9368 indirection to YYSTYPE.
9369 (b4_post_prologue): No longer included in the header file, but
9370 in the implementation file.
9371 * doc/bison.texi (C+ Language Interface): Update.
9372 * src/parse-gram.y: Support unary %define.
9373 * tests/actions.at: Define global_tokens_and_yystype for backward
9374 compatibility until we update the tests.
9375 * tests/calc.at: Idem.
9376 (first_line, first_column, last_line, last_column): Define for lalr1.cc
9377 to simplify the code.
9378
9379 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
9380
9381 Port to SunOS 4.1.4, which lacks strtoul and strerror.
9382 Ah, the good old days! Problem reported by Peter Klein.
9383 * bootstrap (gnulib_modules): Add strerror, strtoul.
9384 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
9385 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
9386
9387 2005-09-29 Akim Demaille <akim@epita.fr>
9388
9389 * data/c.m4 (b4_error_verbose_if): New.
9390 * data/lalr1.cc: Use it.
9391 (YYERROR_VERBOSE_IF): Remove.
9392 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
9393 parser members, replaced by...
9394 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
9395 local variables.
9396 (yysyntax_error_): Takes the state number as argument.
9397 (yyreduce_print_): Use the argument yyrule, not the former
9398 attribute yyn_.
9399
9400 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
9401
9402 * bootstrap (gnulib_modules): Add verify.
9403 * lib/.cvsignore: Add verify.h.
9404 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
9405 * src/system.h (verify): Remove.
9406 Include verify.h instead.
9407 * src/tables.c (tables_generate): Use new API for 'verify'.
9408
9409 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
9410
9411 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
9412 local variables whose names begin with 'yy'.
9413 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
9414 Trivial changes from Joel E. Denny.
9415
9416 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
9417 it itself.
9418 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
9419 don't use alloca any more.
9420
9421 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
9422 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
9423 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
9424 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
9425 to match yacc.c, to test more hosts.
9426
9427 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
9428
9429 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
9430 doesn't affect behavior.
9431 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
9432 Solaris, AIX, MSC.
9433 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
9434 This works a bit better with glibc, if user code has already included
9435 stdlib.h.
9436 * doc/bison.texinfo (Bison Parser): Document that users can't
9437 arbitrarily use malloc and free for other purposes. Document
9438 that <alloca.h> and <malloc.h> might be included.
9439 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
9440 user must declare alloca.
9441
9442 * HACKING (release): Forwarn the Translation Project about
9443 stable releses.
9444
9445 2005-09-20 Akim Demaille <akim@epita.fr>
9446
9447 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
9448
9449 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
9450
9451 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
9452 (YYSTACK_ALLOC_MAXIMUM): Use it.
9453 (yysyntax_error): New function.
9454 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
9455 multiple syntax errors are reported, and alloca is being used.
9456 Instead, reallocate buffers twice as big each time, so that
9457 we waste at most half the allocated memory. Start with a small
9458 (128-byte) buffer that will suffice in most cases anyway.
9459 Use yysyntax_error to do most of the work.
9460
9461 * doc/bison.texinfo (Error Reporting, Table of Symbols):
9462 yynerrs is the number of errors reported, not the number of
9463 errors encountered.
9464
9465 * tests/glr-regression.at (Duplicated user destructor for lookahead):
9466 Mark it as expected to fail.
9467 Cast result of malloc; problem reported by twlevo@xs4all.nl.
9468 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
9469 Don't start user-code symbols with "yy", to avoid name space problems.
9470
9471 2005-09-19 Akim Demaille <akim@epita.fr>
9472
9473 Remove the traits, failed experiment.
9474 It never proved useful, and anyway because of the current
9475 definition, it was not possible to have several specialization of
9476 this traits, making it useless.
9477 * data/lalr1.cc (yy:traits): Remove.
9478 Inline its definitions in the parser class.
9479
9480 2005-09-19 Akim Demaille <akim@epita.fr>
9481
9482 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
9483 least Mac OSX with a /usr/local install of gettext.
9484
9485 2005-09-19 Akim Demaille <akim@epita.fr>
9486
9487 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
9488 and yytoken for similarity with the other skeletons.
9489
9490 2005-09-19 Akim Demaille <akim@epita.fr>
9491
9492 * NEWS, configure.ac: update version number to 2.1a.
9493
9494 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
9495
9496 * NEWS: Version 2.1.
9497
9498 * NEWS: Remove notice of yytname change, since it was never in an
9499 official release.
9500 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
9501 diagnostic.
9502 * src/output.c (prepare): Likewise.
9503 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
9504 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
9505 is not defined. This is an awful hack, but it's enough for now.
9506 All callers changed.
9507 * tests/glr-regression-at (make_value): Args are const pointers now,
9508 to avoid GCC warning.
9509 (Duplicated user destructor for lookahead): New test. Currently
9510 skipped. It fails on my host but I'm not sure it'll always fail.
9511
9512 2005-09-16 Akim Demaille <akim@epita.fr>
9513
9514 * src/symtab.h (struct symbol): Declare the printer and destructor
9515 as const, to avoid accidental calls to free.
9516 (symbol_destructor_set, symbol_printer_set): Adjust.
9517 * src/symtab.c: Adjust.
9518
9519 2005-09-16 Akim Demaille <akim@epita.fr>
9520
9521 * data/c.m4 (b4_token_enums): New.
9522 (b4_token_defines): Rename as...
9523 (b4_token_enums_defines): this.
9524 (b4_token_defines): New, output only the #defines.
9525 * data/yacc.c, data/glr.c: Adjust.
9526 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
9527 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
9528 as default values.
9529
9530 2005-09-16 Akim Demaille <akim@epita.fr>
9531
9532 * data/lalr1.cc (yylex_): Remove, inline its code.
9533 (yyreport_syntax_error_): Remove, replaced by...
9534 (yysyntax_error_): this which returns a string and leaves to the
9535 caller the call to the users' error function.
9536 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
9537 Move from members of the parser object...
9538 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
9539 to local variables of the parse function.
9540
9541 2005-09-16 Akim Demaille <akim@epita.fr>
9542
9543 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
9544 since it's in Bison's name space.
9545
9546 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
9547
9548 * data/glr.c (yyresolveValue): Add default case to pacify
9549 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
9550
9551 * NEWS: Document when yyparse started to return 2.
9552 * doc/bison.texinfo (Parser Function): Document when yyparse
9553 returns 2.
9554
9555 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
9556 (b4_filename_type): Renamed back from b4_file_name_type. All uses
9557 changed.
9558 (class position): file_name -> filename (reverting). All uses changed.
9559
9560 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
9561
9562 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
9563 do anything if $@ exists. This reverts part of the 2005-07-07
9564 patch.
9565
9566 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
9567
9568 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
9569 contains obsolete information and isn't worth distributing as a
9570 separate file anyway.
9571 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
9572 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
9573 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
9574 (yyparse): Abort if user code uses longjmp to throw an unexpected
9575 value.
9576
9577 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
9578
9579 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
9580 Suggested by twlevo@xs4all.nl.
9581
9582 * data/glr.c (YYCHK1): Do not assume YYE is in range.
9583 This avoids a diagnostic from gcc -Wswitch-enum.
9584 Problem reported by twlevo@xs4all.nl.
9585
9586 * doc/bison.texinfo: Don't use "filename", as per GNU coding
9587 standards. Use "file name" or "file" or "name", depending on
9588 the context.
9589 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
9590 not to hack/foo.tab.c.
9591 (Calc++ Top Level): 2nd arg of main is not const.
9592 * data/glr.c: b4_filename -> b4_file_name.
9593 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
9594 All uses changed.
9595 (class position): filename -> file_name. All uses changed.
9596 * data/yacc.c: b4_filename -> b4_file_name.
9597 * lib/bitset.h: filename -> file_name in local vars.
9598 * lib/bitset_stats.c: Likewise.
9599 * src/files.c: Likewise.
9600 * src/scan-skel.l ("@output ".*\n): Likewise.
9601 * src/files.c (file_name_split): Renamed from filename_split.
9602 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
9603
9604 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
9605
9606 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
9607 to accommodate latest gnulib.
9608
9609 * tests/glr-regression.at (Duplicate representation of merged trees):
9610 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
9611
9612 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
9613 needed.
9614
9615 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
9616
9617 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
9618 All uses changed. Invoke user destructor after an error during a
9619 split parse (trivial change from Joel E. Denny).
9620
9621 * tests/glr-regression.at
9622 (User destructor after an error during a split parse): New test case.
9623 Problem reported by Joel E. Denny in:
9624 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
9625
9626 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
9627
9628 * README-cvs: Give URLs for recommended tools.
9629 Mention Gzip version problem, and bootstrapping issues.
9630 Remove troubleshooting section, as it's somewhat obsolete.
9631
9632 * bootstrap (no_cache): New var, to accommodate different wget
9633 variants. Use it instead of '-C off'. Problem reported by
9634 twlevo@xs4all.nl.
9635
9636 * data/glr.c (yydestroyStackItem): New function.
9637 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
9638 debugging information. Problem reported by Joel E. Denny.
9639
9640 2005-08-25 Akim Demaille <akim@epita.fr>
9641
9642 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
9643
9644 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
9645
9646 * data/glr.c (yyrecoverSyntaxError, yyreturn):
9647 Don't invoke destructor on unresolved entries.
9648 * tests/glr-regression.at
9649 (User destructor for unresolved GLR semantic value): New test case.
9650 Problem reported by Joel E. Denny in:
9651 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
9652
9653 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
9654
9655 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
9656 Add strnlen.c.
9657 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
9658 lib-prefix.m4, po.m4.
9659
9660 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
9661 in yydestruct diagnostic, since it might not be an error.
9662 Problem reported by Joel Denny near end of
9663 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
9664 * data/lalr1.cc (yyerturn): Likewise.
9665 * data/yacc.c (yyreturn): Likewise.
9666 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
9667
9668 * src/files.c: Remove obsolete FIXME comment.
9669
9670 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
9671 with the other templates, and to fix bogus run-on messages such
9672 as the one reported at the end of
9673 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
9674 All callers changed to avoid the newline.
9675 (yyprocessOneStack): Output two lines rather than one, to accommodate
9676 the above change. This changes the debug output format slightly.
9677
9678 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
9679 reported by Joel E. Denny in
9680 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
9681 (trivial change).
9682 * tests/glr-regression.at (Duplicate representation of merged trees):
9683 New test, from Joel E. Denny in:
9684 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
9685 * THANKS: Add Joel E. Denny.
9686
9687 * configure.ac (AC_INIT): Bump to 2.0c.
9688
9689 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
9690
9691 * NEWS: Version 2.0b.
9692
9693 * Makefile.am (SUBDIRS): Put examples before tests, so that
9694 "make check" doesn't finish with "All 1 tests passed".
9695
9696 * tests/regression.at (Token definitions): Don't rely on
9697 AT_PARSER_CHECK for data that contains backslashes. It currently
9698 uses 'echo', and 'echo' isn't portable if its argument contains
9699 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
9700 that the byte '\0xff' is not printable in the C locale; it is,
9701 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
9702 not printable, so use '\0x81' to test.
9703
9704 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
9705 version of GCC, since the macro is used with non-GCC compilers.
9706
9707 Fix core dump reported by Pablo De Napoli in
9708 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
9709 * tests/regression.at (Invalid inputs with {}): New test.
9710 * src/parse-gram.y (token_name): Translate type before using
9711 it as an index.
9712
9713 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
9714 the user's name space. All uses changed to __attribute__
9715 ((__unused__)).
9716 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
9717 Add __attribute__ ((__noreturn__)).
9718
9719 * etc/clcommit: Remove. We weren't using it, and it failed
9720 "make maintainer-distcheck".
9721 * Makefile.maint: Merge from coreutils.
9722 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
9723 (syntax-check-rules): Change list of rules as described below.
9724 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
9725 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
9726 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
9727 (sc_trailing_space): New rules.
9728 (sc_xalloc_h_in_src): Remove.
9729 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
9730 (sc_space_tab, sc_error_exit_success, sc_changelog):
9731 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
9732 (makefile-check, po-check, author_mark_check):
9733 (makefile_path_separator_check, copyright-check):
9734 Use grep -n, to make it easier to find violations.
9735 Use CVS_LIST and CVS_LIST_EXCEPT.
9736 (header_regexp, h_re): Remove.
9737 (dd_c): New macro.
9738 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
9739 (my-distcheck): Use more-modern GCC flags.
9740 (signatures, %.asc): Remove.
9741 (rel-files, announcement): Remove signatures.
9742 Restore old updating code, even though we don't use it, so
9743 that we're the same as coreutils.
9744 (alpha, beta, major): Depend on news-date-check.
9745 Make the upload commands.
9746
9747 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
9748 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
9749 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
9750 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
9751 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
9752 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
9753 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
9754 * tests/sets.at: Likewise.
9755
9756 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
9757 we comment out the Autoconf version number.
9758 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
9759 it's error-prone and "make maintainer-distcheck" rejects it.
9760
9761 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
9762 Indent calls to "error" to pacify "make maintainer-distcheck",
9763 when the calls are not intended to be translated.
9764 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
9765
9766 * src/Makefile.am (DEFS): Use +=, to pacify
9767 "make maintainer-distcheck".
9768 (bison_SOURCES): Add scan-skel.h.
9769 (sc_tight_scope): New rule, from coreutils.
9770
9771 * src/files.c (src_extension, header_extension):
9772 Now static, not extern.
9773 * src/getargs.c (short_options): Likewise.
9774 * src/muscle_tab.c (muscle_table): Likewise.
9775 * src/parse-gram.y (current_class, current_type, current_prec):
9776 Likewise.
9777 * src/reader.c (grammar_end, previous_rule_end): Likewise.
9778 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
9779 * src/main.c (main): Cast bindtextdomain and textdomain calls to
9780 void, to avoid warning when NLS is disabled.
9781 * src/output.c: Include scan-skel.h.
9782 (scan_skel): Remove decl, since scan-skel.h does this.
9783 (output_skeleton):
9784 Indent calls to "error" to pacify "make maintainer-distcheck".
9785 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
9786 * src/reader.h (gram_end, gram_lineno): New decls to pacify
9787 "make maintainer-distcheck".
9788 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
9789 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
9790 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
9791 (skel_lex_destroy, scan_skel): Move these decls to...
9792 * src/scan-skel.h: New file.
9793 * src/uniqstr.c (uniqstr_assert):
9794 Indent calls to "error" to pacify "make maintainer-distcheck".
9795
9796 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
9797 not @VAR@.
9798
9799 * tests/torture.at: Revamp to avoid misuse of atoi that
9800 "make maintainer-distcheck" complained about.
9801
9802 * examples/extexi (message): Don't print a message more than once,
9803 and omit line-number decoration that makes Emacs compile think
9804 that informative messages are worth worrying about.
9805
9806 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
9807
9808 * configure.ac: Update version number.
9809
9810 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
9811 accidentally.
9812 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
9813 autogenerated by the maintainer.
9814 * examples/calc++/.cvsignore: Add *.yy.
9815
9816 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
9817 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9818 * lib/bitsetv.c (bitsetv_alloc): Likewise.
9819
9820 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
9821
9822 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
9823 from maintainer-distcheck about casting the argument of 'free'.
9824
9825 * NEWS: Mention recent yytname changes.
9826 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
9827
9828 * bootstrap: For translations that have not yet been upgraded to
9829 the new runtime-po domain, prime the pump by extracting the
9830 relevant strings from the obsolete translations. This code can be
9831 removed once the bison-runtime domain has been translated by each
9832 team.
9833
9834 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
9835 now that token names are already quoted.
9836
9837 Fix problem reported by Anthony Heading.
9838 * data/glr.c (YYTOKEN_TABLE): New macro.
9839 (yytname): Define if YYTOKEN_TABLE.
9840 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
9841 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
9842 (YYERROR_VERBOSE): Define the same way the other skeletons do.
9843 * src/output.c (prepare_symbols): Output token_table_flag.
9844
9845 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
9846
9847 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
9848 again if the first call fails.
9849
9850 * data/glr.c (yytnamerr): New function.
9851 (yyreportSyntaxError): Use it to dequote most string literals.
9852 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
9853 with other skeletons. All uses changed.
9854 (yytnameerr_): New function.
9855 (yyreport_syntax_error): Use it to dequote most string literals.
9856 * data/yacc.c (yytnamerr): New function.
9857 (yyerrlab): Use it to decode most string literals.
9858 * doc/bison.texinfo (Decl Summary, Calling Convention):
9859 Clarify quoting convention of yytname.
9860 * src/output.c (prepare_symbols): Quote all names. This undoes
9861 the 2005-04-17 change, which is now accomplished (mostly) via
9862 changes in the parsers as described above.
9863 * tests/regression.at (Token definitions, Web2c Actions):
9864 Undo most 2005-04-17 change here, too.
9865
9866 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
9867
9868 Fix more problems reported by twlevo@xs4all.nl.
9869 * tests/cxx-type.at: Don't pipe output of ./types through sed to
9870 remove trailing spaces. This loses the exit status of ./types,
9871 and isn't needed since ./types shouldn't be emitting trailing
9872 spaces.
9873 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
9874 as the stack isn't valid in that case.
9875
9876 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
9877 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
9878 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
9879 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
9880 is used.
9881 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
9882 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9883 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9884 Likewise.
9885
9886 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
9887 overly-picky compilers that reject 'char *foo = "bar";'.
9888
9889 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
9890 to FILE * parameter, not to stderr. This fixes a typo introduced
9891 in the 2005-07-12 change.
9892
9893 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
9894 warnings from GCC 4.
9895
9896 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
9897 (yyglrShiftDefer, yysplitStack):
9898 Remove unused parameters b4_pure_formals. All uses changed.
9899 (yyglrShift): Remove unused parameters b4_user_formals.
9900 All uses changed.
9901 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
9902
9903 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
9904
9905 Destructor cleanups and regularization among the three skeletons.
9906 * NEWS: Document the behavior changes.
9907 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
9908 stack before failing, as the cleanup code will do it for us now.
9909 * data/lalr1.cc (yyerrlab): Likewise.
9910 * data/glr.c (yyparse): Pop everything off the stack before
9911 freeing it, so that destructors get called properly.
9912 * data/lalr1.cc (yyreturn): Likewise.
9913 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
9914 This is more consistent.
9915 * doc/bison.texinfo (Destructor Decl): Mention more reasons
9916 why destructors might be called. 1.875 -> 2.1.
9917 (Destructor Decl, Decl Summary, Table of Symbols):
9918 Some English-language cleanups for %destructor.
9919 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
9920 Add output line for destructor of start symbol.
9921 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
9922 because of that same extra output line.
9923
9924 * NEWS: Document minor wording changes in diagnostics of
9925 Bison-generated parsers.
9926 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
9927 Remove unused formals. All uses changed.
9928 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
9929 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
9930 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
9931 Rename yyoverflowab to yyexhaustedlab.
9932 When memory exhaustion occurs during syntax-error reporting,
9933 report it separately rather than in a single diagnostic; this
9934 eases translation.
9935 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
9936 (Memory Exhausted): Renamed from Parser Stack Overflow.
9937 Revamp wording slightly to prefer "memory exhaustion".
9938 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
9939
9940 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
9941
9942 Add i18n support to the GLR skeleton. Partially fix the C++
9943 skeleton; a C++ expert needs to finish this. Remove debugging
9944 msgids; there's little point to having them translated, since they
9945 can be understood only by someone who can read the
9946 (English-language) source code.
9947
9948 Generate runtime-po/bison-runtime.pot automatically, so that we
9949 don't have to worry about garbage getting in that file. We'll
9950 make sure after the next official release that old msgids don't
9951 get lost. See
9952 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
9953
9954 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
9955 Now auto-generated.
9956 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
9957 Fix typos in explanations of the runtime file.
9958 * bootstrap: Change gettext keyword from YYI18N to YY_.
9959 Use standard Makefile.in.in in runtime-po, since we'll arrange
9960 for backward-compatible bison-runtime.po files in a different way.
9961 * data/glr.c (YY_): New macro, from yacc.c.
9962 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
9963 Translate messages intended for users.
9964 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
9965 the wording in the other skeletons. We don't know that the memory
9966 is virtual.
9967 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
9968 Use same method that yacc.c uses.
9969 Don't translate debugging messages.
9970 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
9971 it doesn't work (yet), and requires C++ expertise to fix.
9972 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
9973 Move defn to a more logical place, to be consistent with other
9974 skeletons.
9975 Don't translate debugging messages.
9976 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
9977 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
9978 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
9979 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
9980
9981 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
9982 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
9983 void, not int.
9984 * tests/glr-regression.at (Badly Collapsed GLR States):
9985 Likewise.
9986 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9987 yylex should return 0 at EOF rather than aborting.
9988
9989 Improve tests for stack overflow in GLR parser.
9990 Problem reported by twlevo@xs4all.nl.
9991 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
9992 All uses removed.
9993 (yyStackOverflow): Just longjmp, but with value 2 so that caller
9994 can handle the problem.
9995 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
9996 (yyparse): New local variable yyresult to record the result.
9997 Use result of setjmp to set it, rather than storing itinto
9998 struct.
9999 (yyDone): Remove label.
10000 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
10001 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
10002 if YYABORT is used).
10003 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
10004 yyparse status; put status > 1 into diagnostic.
10005 Check that status==2 works.
10006 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
10007 Use exit status 3 for failure to open (which shouldn't happen).
10008
10009 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
10010
10011 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
10012 1 on syntax error; just let yyparse do its thing.
10013 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
10014 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
10015 (Exploding the Stack Size with Alloca):
10016 (Exploding the Stack Size with Malloc):
10017 Expect exit status 2, not 1, since the parser is supposed to blow
10018 its stack. Problem reported by twlevo@xs4all.nl.
10019
10020 * data/glr.c (yyparse): Don't assume that the initial calls
10021 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
10022 Print a stack-overflow message and fail instead.
10023 Initialize the line-number information before creating the stack,
10024 so that the stack-overflow message can report line zero safely.
10025
10026 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
10027
10028 Fix problems reported by twlevo@xs4all.nl.
10029 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
10030 (yyuserMerge): Provide a default case if b4_mergers is empty.
10031 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
10032 * tests/glr-regression.at
10033 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10034 Add casts to pacify C++ compilers.
10035 * tests/glr-regression.at (Improper merging of GLR delayed action
10036 sets): Declare yylex before using it.
10037 * tests/Makefile.am (maintainer-check-g++): Fix a stray
10038 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
10039 test for valgrind; valgrind is independent of g++.
10040 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
10041 for compatibility with POSIX 1003.1-2001 (if running coreutils).
10042 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
10043 Use a destructor, so that we can expand the stack. Change
10044 YYSTYPE to char * so that we can free it. Cast result of malloc.
10045
10046 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10047
10048 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
10049 a valgrind failure. Problem reported by twlevo@xs4all.nl.
10050
10051 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
10052
10053 * PACKAGING: New file, suggested by Bruno Haible and taken from
10054 similar wording in gettext's PACKAGING file.
10055 * NEWS: Mention PACKAGING.
10056 * Makefile.am (EXTRA_DIST): Add PACKAGING.
10057
10058 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
10059
10060 * NEWS: Document recent i18n improvements.
10061 * bootstrap: Get runtime translations into runtime-po.
10062 Create runtime-po files automatically, if possible.
10063 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
10064 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
10065 does not infringe on the user's name space.
10066 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
10067 * doc/bison.texinfo (Internationalization): Revamp the English
10068 and Texinfo syntax a bit, to try to make it clearer.
10069 (Bison Options, Option Cross Key): Mention --print-localedir.
10070 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
10071 YYENABLE_NLS. Quote a bit more.
10072 * runtime-po/.cvsignore: New file.
10073 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
10074 * runtime-po/Rules-quot: Remove; now created by bootstrap.
10075 * runtime-po/quot.sed: Likewise.
10076 * runtime-po/boldquot.sed: Likewise.
10077 * runtime-po/en@quot.header: Likewise.
10078 * runtime-po/en@boldquot.header: Likewise.
10079 * runtime-po/insert-header.sin: Likewise.
10080 * runtime-po/remove-potcdate.sin: Likewise.
10081 * runtime-po/Makevars: Likewise.
10082 * runtime-po/LINGUAS: Likewise.
10083 * runtime-po/de.po: Likewise; we will rely on the translation project
10084 to maintain this, so "bootstrap" should get it.
10085 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
10086 its value.
10087 * src/main.c (main): Bind the bison-runtime domain, too.
10088
10089 2005-07-12 Bruno Haible <bruno@clisp.org>
10090
10091 * data/yacc.c: Include <libintl.h> when NLS is enabled.
10092 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
10093 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
10094 * runtime-po: New directory.
10095 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
10096 $(DOMAIN).pot-update rule, so that old messages are never dropped.
10097 * runtime-po/Rules-quot: New file, copied from po/.
10098 * runtime-po/quot.sed: Likewise.
10099 * runtime-po/boldquot.sed: Likewise.
10100 * runtime-po/en@quot.header: Likewise.
10101 * runtime-po/en@boldquot.header: Likewise.
10102 * runtime-po/insert-header.sin: Likewise.
10103 * runtime-po/remove-potcdate.sin: Likewise.
10104 * runtime-po/Makevars: New file.
10105 * runtime-po/POTFILES.in: New file.
10106 * runtime-po/LINGUAS: New file.
10107 * runtime-po/bison-runtime.pot: New file.
10108 * runtime-po/de.po: New file.
10109 * m4/bison.m4: New file.
10110 * Makefile.am (SUBDIRS): Add runtime-po.
10111 (aclocaldir, aclocal_DATA): New variables.
10112 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
10113 Define aclocaldir.
10114 * src/getargs.c (usage): Document --print-localedir option.
10115 (PRINT_LOCALEDIR_OPTION): New enum item.
10116 (long_options): Add --print-localedir option.
10117 (getargs): Handle --print-localedir option.
10118 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
10119 (Internationalization): New section.
10120
10121 2005-07-12 Akim Demaille <akim@epita.fr>
10122
10123 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
10124 for consistency with the rest of the code.
10125 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
10126 Add separators.
10127
10128 2005-07-12 Akim Demaille <akim@epita.fr>
10129
10130 * src/parse-gram.y: Use %printer instead of YYPRINT.
10131
10132 2005-07-12 Akim Demaille <akim@epita.fr>
10133
10134 * src/symtab.h, src/symtab.c (symbol_print): New.
10135 * src/symlist.h, src/symlist.c (symbol_list_print): New.
10136 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
10137
10138 2005-07-12 Akim Demaille <akim@epita.fr>
10139
10140 * data/glr.c (b4_syncline): Fix (swap) the definitions of
10141 b4_at_dollar and b4_dollar_dollar.
10142
10143 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
10144
10145 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
10146 and Pennello's paper.
10147
10148 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
10149
10150 * data/yacc.c (yyparse): Undo previous patch. Instead,
10151 set yylsp[0] and yyvsp[0] only if the initial action
10152 sets yylloc and yylval, respectively.
10153
10154 * data/yacc.c (yyparse): In the initial action, set
10155 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
10156 This avoids the use of undefined variables if the initial
10157 action does not set yylloc and/or yylval.
10158
10159 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
10160
10161 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
10162 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
10163 Remove from CVS. These files are automatically generated.
10164 * examples/extexi: Clarify that this file is now part of Bison,
10165 not GNU M4, and that it works with any POSIX-compatible Awk.
10166 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
10167 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
10168 so that we also get calc++-parser.yy. Geneate it.
10169 Use $(AWK), not gawk, since any conforming Awk will do.
10170 Put comment before action, since older 'make' can't handle comment
10171 in action.
10172 $(BUILT_SOURCES): List all built sources, not just some of them.
10173 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
10174 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
10175 $($(calc_sources_generated)): Remove unnecessary test for existence
10176 of target. (This had a shell syntax error anyway; a stray "x".)
10177 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
10178 calc++-parser.yy.
10179 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
10180
10181 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
10182 implied by the other modules.
10183
10184 2005-07-06 Akim Demaille <akim@epita.fr>
10185
10186 Bind examples/calc++ to the package.
10187 * examples/calc++/Makefile: Remove, replaced by...
10188 * examples/calc++/Makefile.am: ... this new file.
10189 * examples/calc++/test: Remove input.
10190 * examples/calc++/compile: Remove.
10191 * examples/Makefile.am: New.
10192 * configure.ac, Makefile.am: Adjust.
10193 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
10194
10195 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
10196
10197 * data/glr.c (yyFail): Drastically simplify; since the format argument
10198 never had any % directives, we can simply pass it to yyerror.
10199 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
10200 be modified later, as that is the usual style in glr.c.
10201 Problems reported by Paul Hilfinger.
10202
10203 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
10204 and size overflow errors.
10205 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
10206 in case the user prolog sets feature-test macros like _GNU_SOURCE.
10207 (YYSIZEMAX): New macro.
10208 (yystpcpy): New function, taken from yacc.c.
10209 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
10210 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
10211 so that we don't have to maintain their signatures.
10212 (yyFail): Check for buffer overflow, by using vsnprintf rather
10213 than vsprintf. Allocate a bigger buffer if possible.
10214 Report an error if buffer allocation fails.
10215 (yyStackOverflow): New function.
10216 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
10217 the initialization was successful. It might fail if storage was
10218 exhausted.
10219 (yyexpandGLRStack): Add more checks for storage allocation failure.
10220 Use yyStackOverflow to report failures.
10221 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
10222 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
10223 Don't assume stack number fits in int.
10224 (yysplitStack): Check for storage allocation failure.
10225 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
10226 can print diagnostics on storage allocation failure. All callers
10227 changed.
10228 (yyresolveValue): Use yybool for boolean.
10229 (yyreportSyntaxError): Check for size-calculation overflow.
10230 This code is taken from yacc.c.
10231 (yyparse): Check for storage allocation errors when allocating
10232 the initial stack.
10233
10234 2005-07-05 Akim Demaille <akim@epita.fr>
10235
10236 Extract calc++ from the documentation.
10237 * doc/bison.texinfo (Calc++): Add the extraction marks.
10238 * examples/extexi: New, from the aborted GNU Programming 2E.
10239 Separate the different paragraph of a file with empty lines.
10240 * examples/Makefile: Use it to extract the whole calc++ example.
10241
10242 2005-06-24 Akim Demaille <akim@epita.fr>
10243
10244 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
10245 class typedefs.
10246
10247 2005-06-22 Akim Demaille <akim@epita.fr>
10248
10249 * doc/bison.texinfo (C++ Language Interface): First stab.
10250 (C++ Parsers): Remove.
10251
10252 2005-06-22 Akim Demaille <akim@epita.fr>
10253
10254 * data/lalr1.cc (yylex_): Honor %lex-param.
10255
10256 2005-06-22 Akim Demaille <akim@epita.fr>
10257
10258 Start a set of simple examples.
10259 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
10260 * examples/calc++/calc++-driver.hh,
10261 * examples/calc++/calc++-parser.yy,
10262 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
10263 * examples/calc++/compile, examples/calc++/test: New.
10264
10265 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
10266
10267 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
10268 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
10269 which stems from the 2005-05-27 patch.
10270
10271 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10272
10273 * data/glr.c: Modify treatment of unused parameters to permit use
10274 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
10275
10276 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
10277
10278 Fix infringement on user name space reported by Janos Zoltan Szabo.
10279 * data/yacc.c (yyparse): strlen -> yystrlen.
10280
10281 2005-05-30 Akim Demaille <akim@epita.fr>
10282
10283 * data/lalr1.cc (_): New.
10284 Translate the various messages.
10285
10286 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
10287
10288 Fix infringement on user name space reported by Bruno Haible.
10289 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
10290 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
10291 the user's name space.
10292 (alloca): Include <stdlib.h> to get it, if it's not built in.
10293 (YYMALLOC, YYFREE): Define only if needed.
10294 (malloc, free): Declare, but only if needed, as this infringes on
10295 the user name space.
10296
10297 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
10298
10299 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
10300 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
10301 with %d format.
10302 * lib/ebitset.c (min, max): Undef before defining.
10303 * lib/vbitset.c (min, max): Likewise.
10304 * lib/subpipe.c (create_subpipe): Save local variables in case
10305 vfork clobbers them.
10306
10307 2005-05-24 Bruno Haible <bruno@clisp.org>
10308
10309 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
10310 error message syntax used by gcc-4.0.
10311
10312 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
10313
10314 * README: Mention m4 1.4.3. Remove obsolete advice about
10315 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
10316
10317 * bootstrap: Remove workaround for problem I encountered with
10318 gettext 0.14.1; it seems to be fixed now.
10319
10320 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
10321
10322 * NEWS: Version 2.0a.
10323
10324 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
10325 the previous change.
10326
10327 Various maintainer cleanups.
10328 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
10329 conftest*, for benefit of CVS commands run at the same time as
10330 "configure". Add build-aux, since "bootstrap" now creates it and
10331 its subfiles.
10332 * Makefile.cfg (move_if_change): Remove.
10333 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
10334 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
10335 (po_repo, do-po-update, po-update, wget_files, get-targets):
10336 (config.guess-url_prefix, config.sub-url_prefix):
10337 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
10338 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
10339 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
10340 Remove.
10341 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
10342 this is now the recommended name.
10343 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
10344 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
10345 ylwrap. These files now go into build-aux.
10346 * config/move-if-change: Remove.
10347 * config/prev-version.txt: Bump from 1.75 to 2.0.
10348
10349 * bootstrap: Add stdio-safer, unistd-safer modules.
10350 Remove m4/glibc2.m4 (introduced by latest gnulib, but
10351 we don't need it).
10352 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
10353 fopen-safer.c, stdio-safer.h, unistd-safer.h.
10354 * lib/subpipe.c: Include "unistd-safer.h".
10355 (create_subpipe): Make sure all the newly-created
10356 file descriptors are > 2, so that diagnostics don't
10357 get sent down them (which might cause Bison to hang, in theory).
10358 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
10359 * src/files.c (xfopen): Use fopen_safer, not fopen.
10360
10361 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
10362 yesterday's yacc.c fix.
10363
10364 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
10365
10366 * data/glr.c, data/lalr1.cc: Update copyright date.
10367
10368 Fix a destructor bug reported by Wolfgang Spraul in
10369 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
10370 * data/yacc.c (yyabortlab): Don't call destructor, and
10371 don't set yychar to EMPTY.
10372 (yyoverflowlab): Don't call destructor.
10373 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
10374 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
10375 since we no longer output the message "discarding lookahead token
10376 end of input ()".
10377
10378 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10379
10380 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
10381 fix a small glitch in debugging output.
10382 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
10383 after YY_SYMBOL_PRINT where needed.
10384
10385 (struct yyGLRState): Add some comments.
10386 (struct yySemanticOption): Add some comments.
10387 (union yyGLRStackItem): Add comment.
10388
10389 (yymergeOptionSets): Correct this to properly perform the union,
10390 avoiding infinite reported by Michael Rosien.
10391 Update comment.
10392
10393 * tests/glr-regression.at: Add test for GLR merging error reported
10394 by M. Rosien.
10395
10396 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
10397
10398 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
10399 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
10400 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
10401 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
10402 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
10403 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
10404 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
10405 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
10406 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
10407 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
10408 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
10409 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
10410 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
10411 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
10412 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
10413 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
10414 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
10415 src/derives.h, src/files.c, src/files.h, src/getargs.c,
10416 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
10417 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
10418 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
10419 src/output.h, src/parse-gram.c, src/parse-gram.h,
10420 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
10421 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
10422 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
10423 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
10424 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
10425 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
10426 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
10427 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
10428 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
10429 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
10430 tests/reduce.at, tests/regression.at, tests/sets.at,
10431 tests/synclines.at, tests/testsuite.at, tests/torture.at:
10432 Update FSF postal mail address.
10433
10434 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
10435
10436 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
10437 Problem reported by Ralf Menzel.
10438
10439 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
10440
10441 * tests/actions.at: Test that stack overflow invokes destructors.
10442 From Marcus Holland-Moritz.
10443 * data/yacc.c (yyerrlab): Move the code that destroys the stack
10444 from here....
10445 (yyreturn): to here. That way, destructors are called properly
10446 even if the stack overflows, or the user calls YYACCEPT or
10447 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
10448 (yyoverflowlab): Destroy the lookahead.
10449
10450 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
10451
10452 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
10453
10454 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
10455
10456 * NEWS: Bison-generated C parsers no longer quote literal strings
10457 associated with tokens.
10458 * src/output.c (prepare_symbols): Don't escape strings,
10459 since users don't want to see C escapes.
10460 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
10461 in diagnostics.
10462 * tests/input.at (Torturing the Scanner): Likewise.
10463 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
10464
10465 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
10466
10467 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
10468 the data size is known to be too small and we can't increase it.
10469 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
10470
10471 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
10472
10473 * src/parse-gram.y: Include quotearg.h.
10474 (string_as_id): Quote $1 before using it as a key, since the
10475 lexer no longer quotes it for us.
10476 (string_content): Don't strip quotes, since lexer no longer
10477 quotes it for us.
10478 * src/scan-gram.l: Include quotearg.h.
10479 ("\""): Omit quote.
10480 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
10481 a key, since the rest of the lexer doesn't quote it.
10482 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
10483 * tests/regression.at (Token definitions): Check for backslashes
10484 in token strings.
10485
10486 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
10487 (YYSIZE_T): Define to unsigned long int when using an older compiler.
10488 (yyparse): Revamp code to generate long syntax error message, to
10489 make it easier to translate, and to avoid problems with arithmetic
10490 overflow. Change "virtual memory" to "memory" in diagnostic, since
10491 we don't know whether the memory is virtual.
10492
10493 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
10494
10495 * NEWS: Bison-generated C parsers now use the _ macro to
10496 translate strings.
10497 * data/yacc.c (_) [!defined _]: New macro.
10498 All English strings wrapped inside this macro.
10499 * doc/bison.texinfo (Bison Parser): Document _.
10500 * po/POTFILES.in: Include src/parse-gram.c, since it now
10501 includes translateable strings that parse-gram.y doesn't.
10502
10503 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
10504
10505 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
10506 reverting the 2004-10-11 change to this function.
10507 (symbol_check_alias_consistency): Don't call symbol_type_set
10508 if the type name is already correct.
10509 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
10510
10511 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
10512
10513 * tests/regression.at (Token definitions): Don't use a token named
10514 c, as that generates a "#define c ..." that runs afoul of buggy
10515 stdlib.h that uses the identifier c as a member of struct
10516 drand48_data. Problem reported by Horst Wente.
10517
10518 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
10519
10520 * bootstrap: Change translation URL from
10521 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
10522 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
10523 redirection glitches. Problem reported by twlevo@xs4all.nl.
10524
10525 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
10526
10527 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
10528 after operands; POSIX says this isn't portable for the c99 command.
10529
10530 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
10531
10532 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
10533 immediately if a data overrun has occurred; this may help us track
10534 down what may be a spurious failure on MacOS.
10535
10536 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
10537
10538 Respond to problems reported by twlevo@xs4all.nl.
10539
10540 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
10541
10542 * src/vcg.h: Comment fix.
10543 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
10544 (G_CMAX): Change to -1 instead of INT_MAX.
10545
10546 * data/yacc.c (yyparse): Omit spaces before #line.
10547
10548 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
10549
10550 * src/tables.c (state_number_to_vector_number): Put it inside an
10551 "#if 0", since it's not currently used. Problem reported by
10552 Roland McGrath.
10553
10554 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
10555
10556 * src/output.c (escaped_output): Renamed from
10557 escaped_file_name_output, since we now use it for symbol tags as
10558 well. All uses changed.
10559 (symbol_destructors_output, symbol_printers_output):
10560 Escape symbol tags too.
10561 Problem reported by Matyas Forstner in
10562 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
10563
10564 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
10565 not needed.
10566 * src/output.c (user_actions_output, token_definitions_output,
10567 symbol_destructors_output, symbol_printers_output): Likewise.
10568 * src/reader.c (prologue_augment): Likewise.
10569 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
10570
10571 * src/vcg.c (output_edge): Don't quote linestyle arg.
10572 Problem reported by twlevo@xs4all.nl.
10573
10574 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
10575
10576 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
10577 example, reported by Derek M Jones. Also, make the example even
10578 more outrageous, to better illustrate how bad the problem is.
10579
10580 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
10581
10582 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
10583 putsym. Typo reported by Sebastian Piping.
10584
10585 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
10586
10587 * doc/bison.texinfo (Language and Grammar): some -> same
10588 (Epilogue): int he -> in the
10589 Typos reported by Sebastian Piping via Justin Pence.
10590
10591 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
10592
10593 * tests/glr-regression.at (Improper handling of embedded actions
10594 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
10595 embedded actions and $-N in GLR parsers", work around an Autoconf bug
10596 with dollar signs in test names.
10597 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
10598 for a similar reason.
10599
10600 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
10601
10602 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
10603 wants to redefine G_VIEW.
10604
10605 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
10606
10607 * src/vcg.c (get_view_str): Remove case for normal_view.
10608 Problem reported by twlevo@xs4all.nl.
10609
10610 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
10611
10612 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
10613 Problem reported by twlevo@xs4all.nl.
10614
10615 * doc/bison.texinfo: Change @dircategory from "GNU programming
10616 tools" to "Software development". Requested by Richard Stallman
10617 via Karl Berry.
10618
10619 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
10620
10621 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
10622 Problem reported by twlevo@xs4all.nl.
10623
10624 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
10625
10626 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
10627 keyword; it's not needed with modern compilers, and it doesn't
10628 affect correctness with older compilers. Suggested by
10629 twlevo@xs4all.nl.
10630
10631 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
10632
10633 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
10634 gcc -Wswitch-default.
10635 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
10636 * data/yacc.c (yyparse): Likewise.
10637
10638 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
10639
10640 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
10641 already. Let config.h define any nonstandard values.
10642
10643 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
10644
10645 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
10646 for the benefit of slower hosts. Problem reported by
10647 Nelson H. F. Beebe.
10648
10649 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
10650
10651 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
10652 being defined and not used.
10653 * data/lalr1.cc (yyparse): Likewise.
10654 Use "if (false)" rather than "if (0)".
10655
10656 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
10657
10658 * TODO: Mention that we should allow NUL bytes in tokens.
10659
10660 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
10661
10662 * src/scan-skel.l (<<EOF>>): Don't close standard output.
10663 Problem reported by Hans Aberg.
10664
10665 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
10666
10667 * src/getargs.c (version): Happy new year; update overall
10668 program copyright date from 2004 to 2005.
10669
10670 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
10671 Problem reported by Hans Aberg.
10672 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
10673 (Output file names.): Add a test for the case when standard output
10674 is closed.
10675
10676 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
10677
10678 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
10679 to fix an oversight in the Bison 2.0 manual.
10680
10681 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
10682
10683 * NEWS: Version 2.0. Reformat the existing news items since
10684 1.875, so that related items are grouped together.
10685 * configure.ac (AC_INIT): Bump version to 2.0.
10686 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
10687
10688 * tests/torture.at (Exploding the Stack Size with Alloca): Set
10689 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
10690 otherwise, we're not testing alloca. Unfortunately there's no
10691 simple way to consult HAVE_ALLOCA here.
10692
10693 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
10694 for yymsg, too.
10695
10696 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
10697 hand. This avoids a warning about comparing int to size_t when
10698 GCC warnings are enabled.
10699
10700 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
10701
10702 * NEWS: Bison-generated parsers no longer default to using the
10703 alloca function (when available) to extend the parser stack, due
10704 to widespread problems in unchecked stack-overflow detection.
10705 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
10706 responsibility to set it to a positive value. This lets the user
10707 specify a value that is not a preprocessor constant.
10708 * data/yacc.c (YYMAXDEPTH): Likewise.
10709 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
10710 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
10711 to be a compile-time constant. However, explain the constraints on it.
10712 Also, explain the constraints on YYINITDEPTH.
10713 (Table of Symbols): Explain that alloca is no longer the default.
10714 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
10715 to 1.
10716
10717 * doc/bison.texinfo (Location Default Action): Mention that n must
10718 be zero when k is zero. Suggested by Frank Heckenbach.
10719
10720 2004-12-22 Akim Demaille <akim@epita.fr>
10721
10722 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
10723 (parser::state_type, parser::semantic_type, parser::location_type):
10724 Private, not public.
10725 (parser::parse): Return ints, not bool.
10726 Returning a bool introduces a problem: 0 corresponds to false, and
10727 it seems weird to return false on success. Returning true changes
10728 the conventions for yyparse.
10729 Alternatively we could return void and send an exception.
10730 There is no clear consensus (yet?).
10731 (state_stack, semantic_stack, location_stack): Rename as...
10732 (state_stack_type, semantic_stack_type, location_stack_type): these.
10733 Private, not public.
10734 * tests/c++.at: New.
10735 * tests/testsuite.at, tests/Makefile.am: Adjust.
10736
10737 2004-12-21 Akim Demaille <akim@epita.fr>
10738
10739 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
10740
10741 2004-12-21 Akim Demaille <akim@epita.fr>
10742
10743 Don't impose std::string for filenames.
10744
10745 * data/lalr1.cc (b4_filename_type): New.
10746 (position::filename): Use it.
10747 (parser.hh): Move the inclusion of stack.hh and location.hh below
10748 the user code, so that needed headers for the filename type can be
10749 included first.
10750 Forward declare them before the user code.
10751 * tests/Makefile.am (check-local, installcheck-local): Pass
10752 TESTSUITEFLAGS to the TESTSUITE.
10753
10754 2004-12-20 Akim Demaille <akim@epita.fr>
10755
10756 Use more STL like names: my_class instead of MyClass.
10757
10758 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
10759 (SemanticStack, SemanticType, StateStack, StateType)
10760 (TokenNumberType, Stack, Slice, Traits, Parser::location)
10761 (Parser::value): Rename as...
10762 (location_stack, location_type, rhs_number_type, semantic_stack)
10763 (semantic_type, state_stack, state_type, token_number_type, stack)
10764 (slice, traits, parser::yylloc, parser::yylval): these.
10765
10766 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
10767
10768 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
10769
10770 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
10771 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10772
10773 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
10774
10775 Remove uses of 'short int' and 'unsigned short int'. This raises
10776 some arbitrary limits. It uses more memory but nowadays that's
10777 not much of an issue.
10778
10779 This change does not affect the generated parsers; that's a different
10780 task, as some users will want to conserve memory there.
10781
10782 Ideally we should use size_t to represent all object counts, and
10783 something like ptrdiff_t to represent signed differences of object
10784 counts; but that will require more code-cleanup than I have the
10785 time to do right now.
10786
10787 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
10788 Use size_t, not int or short int, to count objects.
10789 * src/closure.c (nritemset, closure): Likewise.
10790 * src/closure.h (nritemset, closure): Likewise.
10791 * src/nullable.c (nullable_compute): Likewise.
10792 * src/print.c (print_core): Likewise.
10793 * src/print_graph.c (print_core): Likewise.
10794 * src/state.c (state_compare, state_hash): Likewise.
10795 * src/state.h (struct state): Likewise.
10796 * src/tables.c (default_goto, goto_actions): Likewise.
10797
10798 * src/gram.h (rule_number, rule): Use int, not short int.
10799 * src/output.c (prepare_rules): Likewise.
10800 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
10801 errs, reductions): Likewise.
10802 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
10803 Likewise.
10804 * src/tables.c (vector_number, tally, action_number,
10805 ACTION_NUMBER_MINIMUM): Likewise.
10806 * src/output.c (muscle_insert_short_int_table): Remove.
10807
10808 2004-12-17 Akim Demaille <akim@epita.fr>
10809
10810 * data/lalr1.cc: Extensive Doxygenation.
10811 (error_): Rename as...
10812 (error): this, since it is visible to the user.
10813 Adjust callers.
10814 (Parser::message): Now an automatic variable from...
10815 (Parser::yyreport_syntax_error_): here.
10816 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
10817 Parser::error.
10818 * tests/input.at: Escape $.
10819
10820 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
10821
10822 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
10823 Parenthesize rhs to avoid obscure problems with mistakes like
10824 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
10825 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
10826 b4_rhs_location): Likewise.
10827 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
10828 b4_rhs_location): Likewise.
10829
10830 2004-12-16 Akim Demaille <akim@epita.fr>
10831
10832 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
10833 yacc.c: be sure to stay within yycheck_.
10834 * tests/actions.at: Re-enable C++ tests.
10835
10836 2004-12-16 Akim Demaille <akim@epita.fr>
10837
10838 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
10839 real.
10840
10841 2004-12-16 Akim Demaille <akim@epita.fr>
10842
10843 Use #define to handle the %name-prefix.
10844
10845 * data/glr.c, data/yacc.c: Comment changes.
10846 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
10847 so that one can refer to yylex in the parser file, and have it
10848 renamed, as is the case with other skeletons.
10849
10850 2004-12-16 Akim Demaille <akim@epita.fr>
10851
10852 Move lalr1.cc internals into yy*.
10853
10854 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
10855 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
10856 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
10857 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
10858 (empty_, final_, terror_, errcode_, ntokens_)
10859 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
10860 (looka_, ilooka_, error_range_, nerrs_):
10861 Rename as...
10862 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
10863 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
10864 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
10865 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
10866 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
10867 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
10868 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
10869 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
10870 these.
10871
10872 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
10873
10874 Fix some problems reported by twlevo at xs4all.
10875 * src/symtab.c (symbol_new): Report an error if the input grammar
10876 contains too many symbols. This is better than calling abort() later.
10877 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
10878 (struct node, struct graph):
10879 Rename member expand to stretch. All uses changed.
10880 (struct graph): Remove member layoutalgorithm. All uses removed.
10881 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
10882 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
10883 All uses changed.
10884 (N_STRETCH): Rename from N_EXPAND. All uses changed.
10885
10886 2004-12-15 Akim Demaille <akim@epita.fr>
10887
10888 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
10889 Add more Doxygen comments.
10890 (symprint_, stack_print_, reduce_print_, destruct_, pop)
10891 (report_syntax_error_, translate_): Rename as...
10892 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
10893 (yypop_, yyreport_syntax_error_, yytranslate_): this.
10894
10895 2004-12-15 Akim Demaille <akim@epita.fr>
10896
10897 * data/lalr1.cc (lex_): Rename as...
10898 (yylex_): this.
10899 Move the trace here.
10900 Take the %name-prefix into account.
10901 Reported by Alexandre Duret-Lutz.
10902
10903 2004-12-15 Akim Demaille <akim@epita.fr>
10904
10905 Simplify the C++ parser constructor.
10906
10907 * data/lalr1.cc (debug_): Rename as...
10908 (yydebug_): so that the parser's internals are always in the yy*
10909 pseudo namespace.
10910 Adjust uses.
10911 (b4_parse_param_decl): Remove the leading comma as it is now only
10912 called as unique argument list.
10913 (Parser::Parser): Remove the constructor accepting a location and
10914 an initial debugging level.
10915 Remove from the other ctor the argument for the debugging level.
10916 (debug_level_type, debug_level, set_debug_level): New.
10917
10918 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
10919 constructor calls.
10920
10921 2004-12-15 Akim Demaille <akim@epita.fr>
10922
10923 Remove b4_root related material: failure experiment
10924 (which goal was to allow to derive from a class).
10925
10926 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
10927 definitions and uses.
10928
10929 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
10930
10931 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
10932 not 2, since it's not portable to subtract 1 from the start of an
10933 array. The new item 0 is never set or used. All uses changed.
10934
10935 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
10936 the default definition of YYLLOC_DEFAULT. Problem reported
10937 by Frank Heckenbach.
10938
10939 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
10940
10941 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
10942 the normal case and one for the error case. Just use the
10943 first one uniformly. Problem reported by Frank Heckenbach.
10944 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
10945 use exactly the same macro in both places.
10946 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
10947 so that the normal-case YYRHSLOC works for the error case too.
10948 All uses changed.
10949 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
10950 (YYLLOC_DEFAULT): Use the same macro as glr.c.
10951 * doc/bison.texinfo (Location Default Action): Don't claim that
10952 we have an array of locations. Use the same macro for both glr
10953 and lalr parsers. Mention YYRHSLOC. Mention what happens when
10954 the index is 0.
10955
10956 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
10957
10958 * HACKING: Update email addresses to send announcements to.
10959
10960 * configure.ac (AC_INIT): Bump version to 1.875f.
10961
10962 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
10963
10964 * NEWS: Version 1.875e.
10965 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
10966
10967 * src/scan-skel.l: Include "complain.h", for "fatal".
10968
10969 * src/relation.h (relation_print, relation_digraph):
10970 Relation sizes are of type relation_node, not size_t (this is
10971 merely a doc fix, since the two types are equivalent).
10972 (relation_transpose): Relation sizes are of type relation_node,
10973 not int.
10974 * src/relation.c: Likewise.
10975 (top, infinity): Now of type relation_node, not int.
10976 (traverse, relation_transpose): Use relation_node, not int.
10977
10978 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
10979 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
10980 (yyparse): Remove unused local introduced in 2004-10-25 patch.
10981
10982 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
10983 specifying whether the test should be skipped. Use it tp
10984 specify that the [%defines %skeleton "lalr1.cc"] tests currently
10985 fail on some hosts, and should be skipped.
10986
10987 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
10988
10989 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
10990 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
10991 unless otherwise specified below.
10992
10993 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
10994 to allocate kernel_base, kernel_items, kernel_size, since
10995 they needn't be initialized to 0.
10996 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
10997 * src/closure.c (new_closure): Likewise, for itemset.
10998 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
10999 * src/lalr.c (set_goto_map): Likewise, for temp_map.
11000 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
11001 (build_relations): Likewise for edge, states1, includes.
11002 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
11003 * src/reader.c (packgram): Likewise, for ritem, rules.
11004 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
11005 * src/relation.c (relation_digraph): Likewise for VERTICES.
11006 (relation_transpose): Likewise for new_R, end_R.
11007 * src/symtab.c (symbols_token_translations_init): Likewise for
11008 token_translations.
11009 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
11010 (token_actions): Likewise for yydefact, actrow, conflrow,
11011 conflict_list.
11012 (save_column): Likewise for froms[symno], tos[symno].
11013 (goto_actions): Likewise for state_count.
11014 (pack_table): Likewise for base, pos, check.
11015 (tables_generate): Likewise for width.
11016
11017 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
11018 for initial core. Just have a separate core, so we needn't worry
11019 about whether kernel_size and kernel_base are initialized.
11020
11021 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
11022 kernel_size, kernel_items): Remove unnecessary initialization.
11023 * src/conflicts.c (conflicts): Likewise.
11024 * src/derives.c (derives): Likewise.
11025 * src/muscle_tablc (muscle_insert): Likewise.
11026 * src/relation.c (relation_digraph): Likewise.
11027 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
11028 conflrow, conflict_table, conflict_list, table, check):
11029 Likewise.
11030
11031 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
11032 This is because all callers pass unsigned int.
11033 * src/closure.h (new_closure): Likewise.
11034
11035 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
11036 (build_relations): Initialize includes[i] in all cases.
11037 * src/reader.c (packgram): Always initialize rules[ruleno].prec
11038 and rules[ruleno].precsym. Initialize members in order.
11039 * src/relation.c (relation_transpose): Always initialize new_R[i]
11040 and end_R[i].
11041 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
11042
11043 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
11044 conflict_list[0] was always 0, but now it isn't initialized.
11045
11046 * src/table.c (table_grow): When conflict_table grew, the grown
11047 area wasn't cleared. Fix this.
11048
11049 * lib/.cvsignore: Add strdup.c, strdup.h.
11050 * m4/.cvsignore: Add strdup.m4.
11051
11052 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
11053
11054 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
11055 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
11056 GOTO_NUMBER_MAXIMUM, since we occasionally compute
11057 ngotos + 1 without checking for overflow.
11058 (build_relations): Use END_NODE, not -1, to denote end of edges.
11059 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
11060 build_relations): Use goto_number, not int, for goto numbers.
11061 * src/tables.c (save_column, default_goto): Likewise.
11062
11063 2004-11-23 Akim Demaille <akim@epita.fr>
11064
11065 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
11066 of #defining from yystype.
11067 Don't typedef yystype, C++ does not need it.
11068 This lets it possible to forward declare it as union.
11069
11070 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
11071
11072 * bootstrap (gnulib_modules): Add extensions.
11073 Problem reported by Jim Meyering.
11074
11075 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
11076
11077 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
11078 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
11079 src/system.h, src/tables.c: XFREE -> free, to accommodate
11080 recent change to gnulib xalloc.h.
11081 Problem reported by Jim Meyering.
11082
11083 2004-11-17 Akim Demaille <akim@epita.fr>
11084
11085 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
11086
11087 2004-11-17 Akim Demaille <akim@epita.fr>,
11088 Alexandre Duret-Lutz <adl@gnu.org>
11089
11090 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
11091 changes.
11092 (YYCDEBUG): Adjust.
11093 Use it instead of cdebug_.
11094 (Parser::debug_stream, Parser::set_debug_stream): New.
11095 (Parser::symprint_): Define cdebug_ for temporary backward
11096 compatibility.
11097 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
11098 debug_stream ().
11099
11100 2004-11-17 Akim Demaille <akim@epita.fr>
11101
11102 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
11103 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
11104 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
11105 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11106
11107 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
11108
11109 * data/glr.c (yyloc_default): Remove; not used.
11110 Problem reported by Frank Heckenbach.
11111
11112 2004-10-25 Akim Demaille <akim@epita.fr>
11113
11114 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
11115 Introduce another definition to address simple location arrays.
11116 (yyGLRStack): New member: yyerror_range.
11117 (yyrecoverSyntaxError, yyparse): Update it.
11118 (yyrecoverSyntaxError): Use it when shifting the error token to
11119 have an accurate range, equivalent to the one computed by both
11120 yacc.c and lalr1.cc.
11121 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
11122 that column numbers start at column 0, as per GNU Coding
11123 Standards, the others tests, and the doc.
11124 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
11125 Adjust to the above change (first column is 0).
11126 And adjust the location of the "<error>", now covering the whole
11127 line.
11128
11129 2004-10-22 Akim Demaille <akim@epita.fr>
11130 and Paul Eggert <eggert@cs.ucla.edu>
11131
11132 Remove some arbitrary limits on goto numbers and relations.
11133 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
11134 initial values, since they're never used.
11135 (set_goto_map): ngotos is now unsigned, so test for overflow
11136 by seeing whether it wraps around to zero.
11137 * src/lalr.h (goto_number): Now size_t, not short int.
11138 (GOTO_NUMBER_MAXIMUM): Remove.
11139 * src/relation.c (relation_print, traverse, relation_transpose):
11140 Check for END_NODE rather than looking at sign.
11141 * src/relation.h (END_NODE): New macro.
11142 (relation_node): Now size_t, not short int.
11143
11144 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
11145
11146 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
11147 keyword, not an identifier. Problem reported by Baron Schwartz in
11148 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
11149
11150 2004-10-11 Akim Demaille <akim@epita.fr>
11151
11152 * src/symtab.c (symbol_check_alias_consistency): Also check
11153 type names, destructors, and printers.
11154 Reported by Alexandre Duret-Lutz.
11155 Recode the handling of associativity and precedence in terms
11156 of symbol_precedence_set.
11157 Accept no redeclaration at all, not even equal to the previous
11158 value.
11159 (redeclaration): New.
11160 Use it to factor redeclaration complaints.
11161 (symbol_make_alias): Don't set the type of the alias, let
11162 symbol_check_alias_consistency do it as for other features.
11163 * src/symtab.h (symbol): Add new member prec_location, and
11164 type_location.
11165 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
11166 * tests/input.at (Incompatible Aliases): New.
11167
11168 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
11169
11170 .cvsignore fixes to accommodate gnulib changes,
11171 and the practice of naming build directories "_build".
11172 * .cvsignore: Add "_*". Sort.
11173 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
11174 * m4/.cvsignore: Add "*_gl.m4".
11175
11176 2004-10-06 Akim Demaille <akim@epita.fr>
11177
11178 * src/parse-gram.y (add_param): Fix the truncation of trailing
11179 spaces.
11180
11181 2004-10-05 Akim Demaille <akim@epita.fr>
11182
11183 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
11184 whether the reducion was empty or not. This leaves room to
11185 improve the use of YYLLOC_DEFAULT in such a case.
11186 lalr1.cc is still experimental, so changing this is acceptable.
11187 And finally, there are probably not many users who changed the
11188 handling of locations in GLR, so changing is admissible too.
11189
11190 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
11191 empty reduction, set @$ to an empty location ending the previously
11192 stacked symbol.
11193 Adjust uses to make sure the code is triggered on empty
11194 reductions.
11195 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
11196 expected output: empty reductions have empty locations.
11197
11198 2004-09-29 Akim Demaille <akim@epita.fr>
11199
11200 * data/lalr1.cc: Move towards a more standard C++ coding style
11201 for templates: Class < T > -> Class<T>.
11202
11203 2004-09-29 Akim Demaille <akim@epita.fr>
11204
11205 * data/lalr1.cc: Reinstall the former ctor, for sake of
11206 compatibility, but warn it will be removed.
11207 Move towards a more standard C++ coding style (i.e., type *var ->
11208 type* var).
11209
11210 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
11211
11212 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
11213 since it's less likely to work if NULs are involved in the future.
11214
11215 2004-09-27 Akim Demaille <akim@epita.fr>
11216
11217 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
11218
11219 2004-09-27 Akim Demaille <akim@epita.fr>
11220
11221 * data/lalr1.cc (b4_parse_param_decl_1): New.
11222 (b4_parse_param_decl): Use it to have different names between attribute
11223 and argument names.
11224 (b4_cc_constructor_call): Likewise.
11225
11226 2004-09-24 Akim Demaille <akim@epita.fr>
11227
11228 * src/parse-gram.y (add_param): Strip the leading and trailing
11229 blanks from a formal argument declaration.
11230 (YY_LOCATION_PRINT): New.
11231
11232 2004-09-24 Akim Demaille <akim@epita.fr>
11233
11234 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
11235 after the location.
11236
11237 2004-09-24 Akim Demaille <akim@epita.fr>
11238
11239 * doc/bison.texinfo (Table of Symbols): Sort.
11240
11241 2004-09-21 Akim Demaille <akim@epita.fr>
11242
11243 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
11244 the useless parentheses.
11245 Suggested by Paul Eggert.
11246
11247 2004-09-20 Akim Demaille <akim@epita.fr>
11248
11249 Let the initial-action act on the look-ahead, and use it for the
11250 "initial push" (corresponding to an hypothetical beginning-of-file).
11251 And let lalr1.cc honor %initial-action.
11252
11253 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
11254 example.
11255 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
11256 (Parser::Parser): Remove the ctor that used to initialize it.
11257 (Parser::parse): Like in the other skeletons, issue the "starting
11258 parse" message before any action.
11259 Honor %initial-action.
11260 Initialize the stacks with the lookahead.
11261 * data/yacc.c: Let $$ and @$ in %initial-action designate the
11262 look-ahead.
11263 Push them in the stacks.
11264 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
11265
11266 2004-09-20 Akim Demaille <akim@epita.fr>
11267
11268 * doc/bison.texinfo (Initial Action Decl): New.
11269
11270 2004-09-20 Akim Demaille <akim@epita.fr>
11271
11272 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
11273 clearer criterion to define it.
11274 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
11275 When reducing on an empty RHS, use the latest stacked location as
11276 location.
11277 yylloc is not always available.
11278 * data/glr.c: Likewise.
11279 Also, honor initial-actions.
11280
11281 2004-09-20 Akim Demaille <akim@epita.fr>
11282
11283 * data/yacc.c (YY_LOCATION_PRINT): New.
11284 Define when we know YYLTYPE's structure, i.e., when the default
11285 YYLLOC_DEFAULT is used.
11286 * data/c.m4 (b4_yysymprint_generate): Use it.
11287 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
11288 value of the result.
11289 (error_start_): Replace with...
11290 (error_range_): this location array.
11291 This allows to replace code relying on the implementation of
11292 locations by portable code.
11293 * data/yacc.c (yylerrsp): Replace with...
11294 (yyerror_range): this.
11295 Every time a token is popped, update yyerror_range[0], to have an
11296 accurate location for the error token.
11297 * data/glr.c (YY_LOCATION_PRINT): New.
11298 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
11299 deference a pointer.
11300 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
11301 report the location in %printers.
11302
11303 * src/scan-skel.l: Instead of abort, report error messages to ease
11304 understanding skeleton scanning failures.
11305
11306 2004-09-16 Akim Demaille <akim@epita.fr>
11307
11308 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
11309 (iterator, const_iterator): these, to be more in the C++ spirit.
11310 Also, return reverse iterators so that when displaying the stack
11311 we display its bottom first.
11312 (Parser::stack_print_, Parser::reduce_print_): Match the messages
11313 from yacc.c.
11314 We should probably use vector here though.
11315
11316 2004-09-16 Akim Demaille <akim@epita.fr>
11317
11318 Have more complete shift traces.
11319
11320 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
11321 to report Shifts instead of ad hoc YYDPRINTF invocations,
11322 including for the error token.
11323 * data/lalr1.cc (symprint_): Output the location.
11324 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
11325 output the location within the %printer.
11326 Activate GLR tests, at least to make sure they compile properly.
11327 They still don't pass though.
11328 * tests/calc.at: Adjust expect verbose output, since now "Entering
11329 state..." is on a different line than the "Shifting" message.
11330
11331 2004-09-08 Akim Demaille <akim@epita.fr>
11332
11333 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
11334 Bison directive from the Bison file to the invocation of this
11335 macro, so that these directives are passed to
11336 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
11337 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
11338 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
11339 the extra Bison directives instead of the whole series.
11340 Change the grammar so that there are recoverable errors, and
11341 unrecoverable errors. Now we can have the parser give up before
11342 consuming the whole input. As a result we now can observe that
11343 the lookahead is freed when needed.
11344 Change the parser source to parse argv[1] instead of a hard coded
11345 string.
11346 Simplify yylex, and give a value and location to EOF.
11347 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
11348 passed directives already coded in the file.
11349 Add some tests to check the location of "error".
11350 For some tests, the C++ parser is correct, and not yacc.c.
11351 For other tests, they provide different, but unsatisfying, values,
11352 so keep the C++ value so that at least one parser is "correct"
11353 according to the test suite.
11354 (Actions after errors): Remove, this is subsumed by the
11355 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
11356
11357 2004-09-06 Akim Demaille <akim@epita.fr>
11358
11359 * data/lalr1.cc: Adjust the indentation of the labels.
11360 (Parser::pop): New.
11361 Use it.
11362
11363 2004-09-06 Akim Demaille <akim@epita.fr>
11364
11365 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
11366 argument, an informative message.
11367 Call YY_SYMBOL_PRINT.
11368 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
11369 * data/lalr1.cc (destruct_): Likewise.
11370 In addition, no longer depend on b4_yysymprint_generate and
11371 b4_yydestruct_generate to generate these functions, do it "by
11372 hand".
11373
11374 2004-09-03 Akim Demaille <akim@epita.fr>
11375
11376 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
11377 invoked, yydestruct the lookahead.
11378 * tests/calc.at (Calculator $1): Update the expected lengths of
11379 traces: there is an added line for the discarded lookahead.
11380 * doc/bison.texinfo (Destructor Decl): Some rewording.
11381 Define "discarded" symbols.
11382
11383 2004-09-02 Akim Demaille <akim@epita.fr>
11384
11385 * data/lalr1.cc (translate_, destruct_): No reason to be static.
11386
11387 2004-09-02 Akim Demaille <akim@epita.fr>
11388
11389 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
11390 (YYDSYMPRINTF): Rename as...
11391 (YY_SYMBOL_PRINT): this.
11392 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
11393 two.
11394 Use it instead of direct symprint_ calls.
11395 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
11396 one.
11397
11398 2004-09-02 Akim Demaille <akim@epita.fr>
11399
11400 * data/lalr1.cc (b4_yysymprint_generate): New.
11401 (symprint_): New member function, defined when YYDEBUG.
11402 Use it consistently instead of token/nterm debugging output by
11403 hand.
11404 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
11405 %printer calls to use cdebug_ when using lalr1.cc.
11406
11407 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
11408
11409 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
11410 with #ifdef YYDEBUG.
11411
11412 2004-08-26 Akim Demaille <akim@epita.fr>
11413
11414 * doc/bison.texinfo (Implementing Loops): Rename as...
11415 (Implementing Gotos/Loops): this.
11416
11417 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
11418
11419 Adjust to latest gnulib.
11420 * bootstrap (gnulib_modules): Add xalloc-die.
11421 Set LC_ALL=C so that file names sort consistently.
11422 Prefer the gnulib copies of gettext.m4, glibc21.m4,
11423 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
11424 uintmax_t.m4, ulonglong.m4.
11425 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
11426 po.m4 since we are now using _gl.m4 instead.
11427
11428 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
11429
11430 * src/scan-action.l: Remove. Scanning of semantic actions is
11431 handled in scan-gram.l.
11432
11433 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
11434
11435 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
11436
11437 * src/location.h (struct): The file member is a uniqstr.
11438 (equal_boundaries): Use UNIQSTR_EQ for comparison.
11439
11440 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
11441
11442 Fix bug with non-%union parsers that have printers or destructors,
11443 which led to a Bison core dump. Reported by Peter Fales in
11444 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
11445
11446 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
11447 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
11448 not to our own type.
11449 * src/output.c (symbol_destructors_output, symbol_printers_output):
11450 Don't assume %union.
11451 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
11452 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
11453 UNION-FLAG. All callers changed.
11454 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
11455 Use type char, not unsigned int, when declaring an array of char;
11456 this lets us remove a cast.
11457 (Printers and Destructors): Add non-%union test cases.
11458
11459 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11460
11461 * doc/bison.texinfo: Minor editorial changes, mostly to the new
11462 GLR writeups. E.g., avoid frenchspacing and the future tense,
11463 change "lookahead" to "look-ahead", and change "wrt" to "with
11464 respect to".
11465
11466 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11467
11468 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
11469 New sections, split off from the GLR Parsers section. Put the new
11470 Simple GLR Parser near the start of the GLR section, for clarity.
11471 Rewrite connective text.
11472
11473 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
11474
11475 * doc/bison.texinfo (Simple GLR Parsers): New section.
11476
11477 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11478
11479 * NEWS, TODO, doc/bison.texinfo:
11480 Use "look-ahead" instead of "lookahead", to be consistent.
11481 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
11482 while we're fixing "look-ahead".
11483 * src/conflicts.c (shift_set): Renamed from shiftset.
11484 (look_ahead_set): Renamed from lookaheadset.
11485 * src/print.c: Likewise.
11486 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
11487 name for "lookahead".
11488 (report_types, usage): Likewise.
11489 * src/getargs.h (report_look_ahead_tokens): Renamed from
11490 report_lookaheads.
11491 * src/lalr.c (compute_look_ahead_tokens): Renamed from
11492 compute_lookaheads.
11493 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
11494 (look_ahead_tokens_print): Renamed from lookaheads_print.
11495 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
11496 state_rule_lookaheads_print.
11497 * src/state.h: Likewise.
11498 (reductions.look_ahead_tokens): Renamed from lookaheads.
11499 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
11500 AT_DATA_LOOKAHEADS_GRAMMAR.
11501
11502 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
11503
11504 * README: Update location of patched M4 distribution.
11505
11506 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
11507
11508 Don't assume the C++ compiler takes the same arguments as the C compiler
11509 (trivial change).
11510 * configure.ac (O0CXXFLAGS): New var.
11511 * tests/atlocal.in (CXXFLAGS): Use it.
11512
11513 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
11514
11515 Fix some "make check" problems with C++ reported by
11516 Albert Chin-A-Young for Tru64 C++ in this thread:
11517 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
11518
11519 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
11520 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11521 Output to a .cc file for C++, not to a .c file.
11522 * tests/calc.at (AT_CHECK_CALC): Likewise.
11523 * tests/regression.at (AT_CHECK_DANCER): Likewise.
11524 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
11525
11526 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
11527
11528 * tests/calc.at, tests/actions.at: Workaround for SGI
11529 C++ compiler. (trivial change)
11530
11531 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
11532
11533 Spent a few hours checking out which prerequisite versions the
11534 current sources actually require. I went all the way back to
11535 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
11536 a seemingly endless set of combinations of versions more recent
11537 than that. The bottom line is that the current sources require
11538 fairly recent versions of the build tools, and it'll be some work
11539 to change this.
11540 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
11541 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
11542 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
11543 Add comments explaining why those particular versions are
11544 currently needed.
11545
11546 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
11547 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
11548 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
11549
11550 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
11551 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
11552
11553 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
11554
11555 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
11556 0.11.5. Suggested by Bruno Haible.
11557 * bootstrap: Remove gettext version checking.
11558
11559 * doc/bison.texinfo (Decl Summary): Also mention that %union
11560 can depend on prerequisite types. Problem reported by Tim
11561 Van Holder.
11562
11563 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
11564
11565 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
11566 * README-alpha: Don't tell people not to package this.
11567
11568 * bootstrap: Don't assume $(...) works; use `...` instead.
11569 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
11570 gettext better.
11571
11572 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
11573 put into the -d output file, and mention what to do if YYSTYPE is
11574 defined as a macro.
11575
11576 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
11577
11578 Undo change made earlier today: it caused autopoint to not bring
11579 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
11580 autopoint's.
11581
11582 * bootstrap: Check that gettext version matches what's in
11583 configure.ac. Warn users to ignore robots.txt ERROR 404.
11584 * bootstrap: Undo today's earlier change (logged below).
11585 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
11586
11587 The gettext version checking is causing more trouble than it's
11588 curing; remove it. Problem reported by Paul Hilfinger.
11589
11590 * bootstrap: Issue a warning that one can expect a message
11591 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
11592 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
11593
11594 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
11595
11596 Ensure that the C++ compiler used for testing actually works on a
11597 simple test program; if not, skip the C++-related tests. Problem
11598 reported by Vin Shelton in:
11599 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
11600
11601 * m4/cxx.m4: New file.
11602 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
11603 * tests/atlocal.in (BISON_CXX_WORKS): Add.
11604 * tests/local.at (AT_COMPILE_CXX): Use it.
11605
11606 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11607
11608 * data/glr.c (yylloc): Output this macro even if locations are not
11609 being generated, as the GLR parser needs it even in that case.
11610 Problem reported by Troy A. Johnson
11611 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
11612
11613 * configure.ac (AC_INIT): Update to 1.875e.
11614
11615 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11616
11617 * NEWS: Version 1.875d.
11618 * configure.ac (AC_INIT): Likewise.
11619 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
11620
11621 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
11622 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
11623 lalr1.cc runs afoul of the first, and the last two are no longer
11624 supported by GCC 3.4.0.
11625 * README: Mention GNU m4 1.4 or later; mention m4 patches.
11626 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
11627
11628 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
11629
11630 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
11631 unsigned int, for compatibility with latest gnulib hash module.
11632 * src/state.c (state_hash, state_hasher): Likewise.
11633 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
11634 * src/uniqstr.c (hash_uniqstr): Likewise.
11635
11636 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
11637
11638 * NEWS: Unescaped newlines are no longer allowed in char & strings.
11639
11640 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
11641 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
11642 character and string literals.
11643 (unexpected_end): New function.
11644 (unexpected_eof): Use it.
11645 (unexpected_newline): New function.
11646 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
11647 actions.
11648
11649 * NEWS: Document %expect-rr.
11650
11651 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
11652 Fix typo by replacing $1 with $option.
11653 Remove more 'intl'-related files.
11654 Don't DEFUN AM_INTL_SUBDIR twice.
11655
11656 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
11657 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
11658 strtoul.c.
11659 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
11660 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
11661 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
11662 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
11663 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
11664 * src/.cvsignore: Add *.output.
11665
11666 * src/parse-gram.y: Put copyright notice inside %{ %} so it
11667 gets copied to the output file.
11668
11669 2004-04-28 Paul Eggert <eggert@twinsun.com>
11670
11671 Get files from the gnulib and po repositories, instead of relying
11672 on them being in our CVS. Upgrade to latest versions of gnulib
11673 and Automake.
11674
11675 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
11676 * bootstrap: Bootstrap from gnulib and po repositories.
11677 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
11678 * README-cvs: Document these changes. Remove version numbers from
11679 mentions of build tools, since they change so often. Mention Flex.
11680
11681 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
11682 (gl_USE_SYSTEM_EXTENSIONS): Add.
11683 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
11684 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
11685 does this for us.
11686 (AC_ISC_POSIX): Remove; we no longer support this
11687 ancient OS, as it gets in the way of latest Autoconf & gnulib.
11688 (AC_HEADER_STDC): Remove: we now assume C89 or better.
11689 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
11690 Do not check for C89 headers, except for locale.h which is used
11691 by the Yacc library and must port to K&R hosts.
11692 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
11693 Do not check for C89 functions, except for setlocale which is
11694 used by the Yacc library.
11695 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
11696 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
11697 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
11698 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
11699 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
11700 AM_GNU_GETTEXT): Remove; now done by:
11701 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
11702 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
11703 for us.
11704
11705 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
11706 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
11707 Define to empty, as gnulib.mk will do the rest for us.
11708 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
11709 for us.
11710 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
11711 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
11712
11713 * src/files.c: Include gnulib's xstrndup.h.
11714
11715 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
11716 (REALLOC): Use xnrealloc, for likewise.
11717 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
11718 (strnlen, memrchr): Remove decls; functions no longer used.
11719 Include <stpcpy.h>.
11720
11721 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
11722 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
11723 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
11724 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
11725 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
11726 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
11727 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
11728 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
11729 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
11730 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
11731 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
11732 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11733 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
11734 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
11735 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
11736 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
11737 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
11738 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
11739 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
11740 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
11741 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
11742 Remove, as these files are now generated automatically
11743 by bootstrap or automake.
11744
11745 * po/ChangeLog: Remove: all but one entry was a duplicate
11746 of this file, and I moved that 2000-11-02 entry here.
11747
11748 * config/.cvsignore: Add Makefile, depcomp, install-sh.
11749 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
11750 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
11751 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
11752 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
11753 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
11754 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
11755 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
11756 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
11757 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
11758 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
11759 xstrndup.h.
11760 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
11761 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
11762 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
11763 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
11764 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
11765 * src/.cvsignore: Remove *_.c.
11766
11767
11768 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
11769 support it. (The latest stable gzip doesn't.)
11770
11771 2004-04-27 Paul Eggert <eggert@twinsun.com>
11772
11773 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
11774 case, as stos_ is now used by destructors due to the 2004-02-09
11775 change.
11776
11777 Remove more K&R C support.
11778 * lib/libiberty.y (PARAMS): Remove. All uses removed.
11779 * lib/subpipe.c (errno): Remove decl.
11780 Include <stdlib.h> unconditionally.
11781 (EXIT_FAILURE): Remove macro.
11782 * src/complain.c (vfprintf, strerror): Remove.
11783 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
11784 unconditionally.
11785 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
11786 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
11787 (strchr, strspn, memchr): Remove decls.
11788 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
11789 unconditionally. Do not declare perror.
11790 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
11791 unconditionally.
11792
11793 * src/complain.c (_): Remove useless defn, as system.h defines this.
11794
11795 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
11796 with latest obstack.h.
11797 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
11798 to procedure types, as obstack.h now does that for us.
11799 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
11800
11801 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
11802 so that this include file can stand alone.
11803 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
11804 does this now. Include subpipe.h first after config.h, to
11805 test whether it can stand alone.
11806
11807 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
11808 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
11809 unused declaration.
11810
11811 * tests/synclines.at (%union synch line): Put a dummy member in
11812 the union, because empty unions aren't allowed in C. Caught
11813 by GCC 3.4.0.
11814
11815 2004-04-13 Jim Meyering <jim@meyering.net>
11816
11817 * src/conflicts.c (conflicts_print): Correct format string typo:
11818 use `%%' to produce literal `%'. (trivial change)
11819
11820 2004-03-30 Paul Eggert <eggert@twinsun.com>
11821
11822 * src/getargs.c (version): Update copyright year to 2004.
11823
11824 * data/c.m4 (b4_int_type): Use 'short int' rather than
11825 'short', and similarly for 'long', 'unsigned', etc.
11826 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
11827 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
11828 yy_yypstack, yydumpstack): Likewise.
11829 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
11830 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
11831 Likewise.
11832 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
11833 yy_stack_print, yyparse): Likewise.
11834 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
11835 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
11836 * lib/bitset.c (bitset_print): Likewise.
11837 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
11838 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
11839 * lib/bitsetv.c (bitsetv_dump): Likewise.
11840 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
11841 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
11842 Likewise.
11843 * src/LR0.c (allocate_itemsets): Likewise.
11844 * src/gram.h (rule_number, rule): Likewise.
11845 * src/lalr.h (goto_number): Likewise.
11846 * src/nullable.c (nullable_compute): Likewise.
11847 * src/output.c (prepare_rules): Likewise.
11848 * src/relation.c (relation_print, relation_digraph): Likewise.
11849 * src/relation.h (relation_node): Likewise.
11850 * src/state.h (state_number, transitions, errs, reductions,
11851 struct state): Likewise.
11852 * src/symtab.h (symbol_number, struct symbol): Likewise.
11853 * src/tables.c (vector_number, tally, action_number,
11854 default_goto, goto_actions): Likewise.
11855 * tests/existing.at (GNU Cim Grammar): Likewise.
11856 * tests/regression.at (Web2c Actions): Likewise.
11857
11858 * src/output.c (muscle_insert_short_int_table): Renamed from
11859 muscle_insert_short_table. All uses changed.
11860
11861 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11862
11863 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
11864 (declaration): Replace expected_conflicts with expected_sr_conflicts.
11865 Add %expect-rr rule.
11866
11867 * src/scan-gram.l: Recognize %expect-rr.
11868
11869 * src/conflicts.h (expected_sr_conflicts): Rename from
11870 expected_conflicts.
11871 (expected_rr_conflicts): Declare.
11872
11873 * src/conflicts.c (expected_sr_conflicts): Rename from
11874 expected_conflicts.
11875 (expected_rr_conflicts): Define.
11876 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
11877 for GLR parsers.
11878 Use expected_sr_conflicts in place of expected_conflicts.
11879 Warn if expected_rr_conflicts used in non-GLR parser.
11880
11881 * doc/bison.texinfo: Add documentation for %expect-rr.
11882
11883 2004-03-08 Paul Eggert <eggert@gnu.org>
11884
11885 Add support for hex token numbers. Suggested by Odd Arild Olsen in
11886 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
11887
11888 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
11889 in lalr1.cc.
11890 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
11891 * src/scan-gram.l (scan_integer): New function.
11892 ({int}): Use it.
11893 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
11894 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
11895 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
11896 Say "long int", not "long", for uniformity with GNU style.
11897
11898 2004-02-25 Paul Eggert <eggert@twinsun.com>
11899
11900 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
11901 compilers. This fixes a problem with Intel's C++ compiler being
11902 chatty, reported by Guido Trentalancia in
11903 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
11904
11905 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
11906
11907 Support %destructor and merge error locations in lalr1.cc.
11908
11909 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
11910 (Parser::stos_): Define unconditionally.
11911 (Parser::destruct_): New method. Generate its body with
11912 b4_yydestruct_generate.
11913 (Parser::error_start_): New attribute.
11914 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
11915 token which are discarded.
11916 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
11917 error_start_ when erroneous token are discarded.
11918 (Parser::parse) <yyerrlab1>: Compute the location of the error
11919 token so that it covers all the discarded tokens.
11920 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
11921 it can be called with `%skeleton "lalr1.cc"', and do that.
11922
11923 2004-02-02 Paul Eggert <eggert@twinsun.com>
11924
11925 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
11926 $(top_srcdir)/lib and ../lib. This fixes a bug reported
11927 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
11928 There's no need to mention top_builddir since Automake does that
11929 for us.
11930 (INCLUDES): Remove, as Automake says it's obsolescent.
11931 Contents migrated into AM_CPPFLAGS as described above.
11932 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
11933
11934 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11935
11936 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
11937 (yyreportSyntaxError): Handle case where lookahead token is
11938 YYEMPTY.
11939
11940 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11941
11942 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
11943 resulting parsers are compilable with C++.
11944
11945 2003-12-23 Paul Eggert <eggert@twinsun.com>
11946
11947 * config/depcomp, config/install-sh: Sync with Automake 1.8.
11948 * src/output.c (output_skeleton): Rename local var.
11949 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
11950 Bison tokens, as this runs afoul of the 2003-10-07 change that
11951 disallowed NUL bytes in character constants or string literals.
11952
11953 * tests/local.at: Require Autoconf 2.59's Autotest.
11954 * tests/testsuite.at: Don't include local.at, since we now assume
11955 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
11956 including it.
11957 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
11958 multiple inclusion warnings.
11959
11960 2003-12-02 Akim Demaille <akim@epita.fr>
11961
11962 * doc/bison.texinfo (How Can I Reset the Parser): More about start
11963 conditions.
11964 From Bruno Haible.
11965
11966 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
11967
11968 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
11969
11970 2003-10-07 Paul Eggert <eggert@twinsun.com>
11971
11972 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
11973 if testsuite doesn't exist.
11974
11975 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
11976 literals, unfortunately.
11977 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
11978 Complain about NUL bytes in character constants or string literals.
11979
11980 2003-10-05 Paul Eggert <eggert@twinsun.com>
11981
11982 * NEWS: Don't document %no-default-prec, as it's still
11983 too experimental.
11984 * doc/bison.texinfo: Document %no-default-prec only if
11985 the defaultprec flag is set. Normally it's not.
11986
11987 2003-10-04 Paul Eggert <eggert@twinsun.com>
11988
11989 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
11990 non-modifiable lvalue, instead of a modifiable one.
11991 * doc/bison.texinfo (Actions): Document that $$ can
11992 be assigned to. Do not claim that $$ and $N are
11993 array element references: user code should not rely on this.
11994
11995 2003-10-01 Paul Eggert <eggert@twinsun.com>
11996
11997 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
11998 (grammar_declaration): Use it.
11999 * src/scan-gram.l: New token %no-default-prec.
12000 * tests/conflicts.at: Revamp tests to use %no-default-prec.
12001 * NEWS, doc/bison.texinfo: Document the above.
12002
12003 2003-10-01 Akim Demaille <akim@epita.fr>
12004
12005 VCG no longer supports long_straight_phase.
12006
12007 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
12008 * src/print_graph.c (print_graph): Adjust.
12009
12010 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
12011 and Paul Eggert <eggert@twinsun.com>
12012
12013 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
12014 Table of Symbols): Document %default-prec.
12015 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
12016 (grammar_declaration): Set default_prec on %default-prec.
12017 * src/scan-gram.l (%default-prec): New token.
12018 * src/reader.h (default_prec): New flag.
12019 * src/reader.c: Likewise.
12020 (packgram): Handle it.
12021 * tests/conflicts.at (%default-prec without %prec,
12022 %default-prec with %prec, %default-prec 1): New tests.
12023
12024 2003-09-30 Paul Eggert <eggert@twinsun.com>
12025
12026 * tests/testsuite.at: Include local.at, not input.at, fixing
12027 a typo in the 2003-08-25 patch.
12028
12029 2003-08-27 Akim Demaille <akim@epita.fr>
12030
12031 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
12032 GCC warnings.
12033
12034 2003-08-26 Akim Demaille <akim@epita.fr>
12035
12036 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
12037 "<\#" to avoid magic from Gnus when posting parts of this script.
12038
12039 2003-08-26 Akim Demaille <akim@epita.fr>
12040
12041 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
12042 (Parser::parse): here.
12043 Adjust: nerrs and errstatus is now replaced by...
12044 (Parser::nerrs_, Parser::errstatus_): New.
12045
12046 2003-08-25 Akim Demaille <akim@epita.fr>
12047
12048 * config/announce-gen, Makefile.cfg: New.
12049 * Makefile.am: Adjust.
12050 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
12051 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
12052
12053 2003-08-25 Akim Demaille <akim@epita.fr>
12054
12055 When reducing initial empty rules, Bison parser read an initial
12056 location that is not defined. This results in garbage, and that
12057 affects Bison's own parser. Therefore we need (i) to extend Bison
12058 to support a means to initialize this location, and (ii) to use
12059 this CVS Bison to fix CVS Bison's parser.
12060
12061 * src/reader.h, reader.c (epilogue_augment): Remove, replace
12062 with...
12063 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
12064 * src/parse-gram.y: Adjust.
12065 (%initial-action): New.
12066 (%error-verbose): Since we require CVS Bison, there is no reason
12067 not to use it.
12068 * src/scan-gram.l: Adjust.
12069 * src/Makefile.am (YACC): New, to make sure we use our own parser.
12070 * data/yacc.c (yyparse): Use b4_initial_action.
12071
12072 2003-08-25 Akim Demaille <akim@epita.fr>
12073
12074 * doc/bison.texinfo: Don't promote stdout for error messages.
12075
12076 2003-08-25 Akim Demaille <akim@epita.fr>
12077
12078 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
12079 From Alexandre Duret-Lutz.
12080
12081 2003-08-25 Akim Demaille <akim@epita.fr>
12082
12083 Version 1.875c.
12084
12085 2003-08-25 Akim Demaille <akim@epita.fr>
12086
12087 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
12088 Use them.
12089
12090 2003-08-25 Akim Demaille <akim@epita.fr>
12091
12092 * data/lalr1.cc (Parser::reduce_print_): New.
12093 Use it.
12094
12095 2003-08-25 Akim Demaille <akim@epita.fr>
12096
12097 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
12098 error recovery loops. This patch is based on
12099 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
12100 Also, augment the similarity between lalr1.cc and yacc.c.
12101 Note: the locations of error recovery rules are not correct yet.
12102
12103 * data/lalr1.cc: Comment changes to augment the similarity between
12104 lalr1.cc and yacc.c.
12105 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
12106 (yyerrlab1): Remove, but where it used to be (now the bottom part of
12107 yyerrlab), when hitting EOF, pop the whole stack here instead of
12108 merely falling thru the default error handling mechanism.
12109 (yyerrorlab): New label, with the old contents of YYERROR,
12110 plus the following change: pop the stack of rhs corresponding
12111 to the production that invoked YYERROR. That is how Yacc
12112 behaves (required by POSIX).
12113 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
12114 fail.
12115
12116 2003-08-25 Akim Demaille <akim@epita.fr>
12117
12118 Tune local.at so that people can "autom4te -l autotest calc.at -o
12119 calc" for instance, to extract a sub test suite.
12120
12121 * tests/testsuite.at: Move the initialization, Autotest version
12122 requirement, and AT_TESTED invocation into...
12123 * tests/local.at: here.
12124 * tests/testsuite.at: Include it for compatibility with Autoconf
12125 2.57.
12126 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
12127 be ignore.
12128
12129 2003-08-04 Paul Eggert <eggert@twinsun.com>
12130
12131 Rework code slightly to avoid gcc -Wtraditional warnings.
12132 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
12133 The returned value is now stored in *YY0. All callers changed.
12134 * src/output.c (merge_output): Adjust to the above change.
12135
12136 2003-07-26 Paul Eggert <eggert@twinsun.com>
12137
12138 * data/glr.c (YYASSERT): New macro.
12139 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
12140 yyresolveStates, yyprocessOneStack):
12141 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
12142 Derived from a suggestion by Frank Heckenbach.
12143
12144 2003-07-25 Paul Eggert <eggert@twinsun.com>
12145
12146 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
12147 for portability to K&R C (after ansi2knr, presumably). See
12148 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
12149 by Frank Heckenbach, though I have omitted the structure-initialization
12150 part of his glr-knr.diff patch since I recall that the Portable
12151 C Compiler didn't require that change.
12152
12153 Let the user specify how to allocate and free memory.
12154 Derived from a suggestion by Frank Heckenbach in
12155 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
12156 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
12157 All uses of free, malloc, realloc changed to use these macros,
12158 and unnecessary casts removed.
12159 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
12160
12161 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
12162
12163 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
12164 use s.empty() rather than s == "" to test for empty string; see
12165 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
12166 (trivial change)
12167
12168 2003-06-25 Akim Demaille <akim@epita.fr>
12169
12170 * config/depcomp, config/install-sh: Update from masters.
12171
12172 2003-06-20 Paul Eggert <eggert@twinsun.com>
12173
12174 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
12175 and return properly parenthesized result.
12176 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
12177 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12178 Remove unnecessary parentheses from uses.
12179 * doc/bison.texinfo (Location Default Action): Describe the
12180 conventions for parentheses.
12181
12182 2003-06-19 Paul Eggert <eggert@twinsun.com>
12183
12184 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
12185 yyreportTree): Do not assume that size_t is the same width as int,
12186 when printing sizes. Print sizes using an unsigned format.
12187 Problem reported by Frank Heckenbach in
12188 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
12189
12190 Port to Forte Developer 7 C compiler.
12191 * data/glr.c (struct YYLTYPE): If locations are not being used,
12192 declare a single dummy member, as empty structs do not conform
12193 to the C standard.
12194 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
12195 the Forte Developer 7 C compiler complains that end-of-loop
12196 code is not reached.
12197
12198 2003-06-17 Paul Eggert <eggert@twinsun.com>
12199
12200 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
12201 avoid warnings from picky compilers about redefinition of PARAMS.
12202
12203 2003-06-17 Paul Eggert <eggert@twinsun.com>
12204
12205 Version 1.875b.
12206
12207 * NEWS: Document 1.875b.
12208
12209 * lib/bbitset.h: Do not include config.h; that's the includer's job.
12210 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
12211 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
12212 Don't use 'index' in comments, as it's a builtin fn on some hosts.
12213 * lib/bitset_stats.c: Include gettext.h unconditionally, as
12214 per recent gettext manual's suggestion.
12215 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
12216 Use prototypes, not old-style definitions.
12217 * lib/lbitset.c (lbitset_unused_clear): Likewise.
12218 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
12219 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
12220 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
12221 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
12222 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
12223 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
12224 vbitset_or_and_cmp, vbitset_copy): Likewise.
12225
12226 * lib/libiberty.h: Do not include config.h; that's the includer's job.
12227 Do not include <stdlib.h>.
12228 (PARAMS): Define unconditionally for C89.
12229 (ATTRIBUTE_NORETURN): Remove.
12230 (ATTRIBUTE_UNUSED): Define unconditionally.
12231
12232 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
12233 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
12234 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
12235 * lib/vbitset.c, lib/vbitset.h: New files.
12236 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
12237 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
12238 from libbitset.
12239
12240 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
12241 `How Can I Reset @code{yyparse}', since texinfo does not allow
12242 arbitrary @ in node names.
12243
12244 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
12245 shouldn't be needed according to the gettext 0.12.1 documentation
12246 but which seem to be needed anyway: codeset.m4 glibc21.m4
12247 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
12248 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
12249 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
12250
12251 * lib/.cvsignore: Add stdbool.h.
12252 * m4/.cvsignore: Add nls.m4, po.m4.
12253
12254 Upgrade to CVS gnulib.
12255 * stdbool_.h: File renamed from stdbool.h.in.
12256 * configure.ac (AM_STDBOOL_H): Invoke this instead of
12257 AC_HEADER_STDBOOL.
12258 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
12259 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
12260 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
12261 (MOSTLYCLEANFILES): New var.
12262 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
12263 (stdbool.h): New rule.
12264 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
12265 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
12266 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
12267 m4/quote.m4: Upgrade to today's gnulib.
12268
12269 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
12270 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
12271 the tests right now.
12272 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
12273 yyerror are declared before use; C99 requires this.
12274
12275 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12276
12277 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
12278 first.
12279 (yyrecoverSyntaxError): Correct the logic for setting and testing
12280 yyerrState.
12281 Correct comment on handling EOF.
12282 Allow states with only a default reduction, rather than failing
12283 (I can't quite reconstruct why these were not allowed before).
12284
12285 Fixes to avoid problem that $-N rules in GLR parsers can cause
12286 buffer overruns, corrupting state.
12287
12288 * src/output.c (prepare_rules): Output max_left_semantic_context
12289 definition.
12290 * src/reader.h (max_left_semantic_context): New variable declaration.
12291 * src/scan-gram.l (max_left_semantic_context): Define.
12292 (handle_action_dollar): Update max_left_semantic_context.
12293 * data/glr.c (YYMAXLEFT): New definition.
12294 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
12295 (yyresolveAction): Ditto.
12296
12297 Fixes to problems with location handling in GLR parsers reported by
12298 Frank Heckenbach (2003/06/05).
12299
12300 * data/glr.c (YYLTYPE): Make trivial if locations not used.
12301 (YYRHSLOC): Add parentheses, and define only if locations used.
12302 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
12303 locations not used.
12304 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
12305 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
12306
12307 * tests/cxx-type.at: Exercise location information; update tests
12308 to differentiate output with and without locations.
12309 Remove forward declarations of yylex and yyerror---caused errors
12310 because default YYLTYPE not yet defined.
12311 Change semantic actions to compute strings, rather than printing
12312 them directly (to test proper passing of semantics values). Change
12313 output to prefix notation and update test data and expected results.
12314 (yylex): Track locations.
12315 (stmtMerge): Return value rather than printing, and include arguments
12316 in value.
12317
12318 2003-06-03 Paul Eggert <eggert@twinsun.com>
12319
12320 Avoid warnings generated by GCC 2.95.4 when Bison is
12321 configured with --enable-gcc-warnings.
12322 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
12323 yy::]b4_parser_class_name[::translate_,
12324 yy::Stack::operator[] (unsigned),
12325 yy::Stack::operator[] (unsigned) const,
12326 yy::Slice::operator[] (unsigned),
12327 yy::Slice::operator[] (unsigned) const):
12328 Rename local vars to avoid warnings.
12329 * tests/glr-regression.at (Improper handling of embedded actions
12330 and $-N in GLR parsers): Remove unused local variable from yylex.
12331 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
12332 (void) as arg when not pure, since we now assume C89 when building
12333 Bison. Pacify GCC by using parameter.
12334
12335 2003-06-02 Paul Eggert <eggert@twinsun.com>
12336
12337 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
12338 yy::Location::lines, yy::Location::columns): Rename arguments
12339 to avoid shadowing; this removes a warning generated by GCC 3.3.
12340
12341 2003-06-01 Paul Eggert <eggert@twinsun.com>
12342
12343 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
12344 to g++, as GCC 3.3 complains if you do it.
12345 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
12346 everything that WARNING_CFLAGS has, except omit warnings
12347 not suitable for C++.
12348 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
12349 * tests/atlocal.in (CXXFLAGS): New var.
12350 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
12351
12352 Fix a GLR parser bug I reported in February; see
12353 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
12354 The problem was that GLR parsers did not conform to the C standard,
12355 because actions like { $1 = $2 + $3; } expanded to expressions
12356 that invoked YYFILL in separate subexpressions, and YYFILL assigned
12357 to a local variable. The C standard says that expressions
12358 like (var = f ()) + (var = f ()) have undefined behavior.
12359 Another problem was that GCC sometimes issues warnings that
12360 yyfill and its parameters are unused.
12361
12362 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
12363 as possibly unused.
12364 (yyfill): New function.
12365 (YYFILL): Use it.
12366 (yyuserAction): Change type of yynormal to bool, so that it matches
12367 the new yyfill signature. Mark it as possibly unused.
12368
12369
12370 Follow up on a bug I reported in February, where a Bison-generated
12371 parser can loop. Provide a test case and a fix for yacc.c. I
12372 don't have a fix for lalr1.cc or for glr.c, unfortunately.
12373 The original bug report is in:
12374 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
12375
12376 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
12377 macro's size was becoming unwieldy.
12378 (yyerrlab): Do not discard an empty lookahead symbol, as this
12379 might destroy garbage.
12380 (yyerrorlab): New label, with the old contents of YYERROR,
12381 plus the following change: pop the stack of rhs corresponding
12382 to the production that invoked YYERROR. That is how Yacc
12383 behaves, and POSIX requires this behavior.
12384 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
12385 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
12386 Define 'alarm' to do nothing if unistd.h is not available.
12387 Add a new rule "exp: '-' error;" to test the above change to
12388 data/yacc.c. Use 'alarm' to abort any test taking longer than
12389 10 seconds, as it's probably looping.
12390 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
12391 Also, the new yacc.c generates two fewer diagnostics for an
12392 existing test.
12393
12394 2003-05-24 Paul Eggert <eggert@twinsun.com>
12395
12396 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
12397 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
12398 This fixes a problem reported by John Bowman when the Compaq/HP
12399 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
12400 -ansi -Wall -gall).
12401 * data/yacc.c (union yyalloc): Likewise.
12402 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
12403
12404 Switch from 'int' to 'bool' where that makes sense.
12405
12406 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
12407 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
12408 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
12409 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
12410 Return or accept bool, not int. All callers changed.
12411 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
12412 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
12413 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
12414 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
12415 bitset_or_and_cmp_): Likewise.
12416 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
12417 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
12418 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
12419 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
12420 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
12421 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
12422 bitset_stats_or_and_cmp): Likewise.
12423 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
12424 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
12425 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
12426 ebitset_xor_cmp): Likewise.
12427 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
12428 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
12429 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
12430 lbitset_xor_cmp): Likewise.
12431 * lib/bbitset.h: Include <stdbool.h>.
12432 (struct bitset_vtable): The following members now return bool, not
12433 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
12434 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
12435 or_and_cmp).
12436 * src/conflicts.c (count_rr_conflicts): Likewise.
12437 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
12438 All uses changed.
12439 * lib/ebitset.c (ebitset_obstack_init): Likewise.
12440 * lib/lbitset.c (lbitset_obstack_init): Likewise.
12441 * src/getargs.c (debug_flag, defines_flag, locations_flag,
12442 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12443 graph_flag): Likewise.
12444 * src/getargs.h (debug_flag, defines_flag, locations_flag,
12445 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12446 graph_flag): Likewise.
12447 * src/output.c (error_verbose): Likewise.
12448 * src/output.h (error_verbose): Likewise.
12449 * src/reader.c (start_flag, typed): Likewise.
12450 * src/reader.h (typed): Likewise.
12451 * src/getargs.c (LOCATIONS_OPTION): New constant.
12452 (long_options, getargs): Use it.
12453 * src/lalr.c (build_relations): Use bool, not int.
12454 * src/nullable.c (nullable_compute): Likewise.
12455 * src/print.c (print_reductions): Likewise.
12456 * src/tables.c (action_row, pack_vector): Likewise.
12457 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
12458 * src/output.c (prepare): Use it.
12459 * src/output.c (token_definitions_output,
12460 symbol_destructors_output, symbol_destructors_output): Use string,
12461 not boolean integer, to keep track of whether to output separator.
12462 * src/print_graph.c (print_core): Likewise.
12463 * src/state.c (state_rule_lookaheads_print): Likewise.
12464
12465 * config/install-sh: Sync from automake 1.7.5.
12466
12467 2003-05-14 Paul Eggert <eggert@twinsun.com>
12468
12469 * src/parse-gram.y (rules_or_grammar_declaration): Require a
12470 semicolon after a grammar declaration, in the interest of possible
12471 future changes to the Bison input language.
12472 Do not allow a stray semicolon at the start of the grammar.
12473 (rhses.1): Allow one or more semicolons after any rule, including
12474 just before "|" as required by POSIX.
12475 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
12476 grammar.
12477
12478 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
12479
12480 %parse-param support for lalr1.cc.
12481
12482 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
12483 b4_cc_constructor_calls, b4_cc_constructor_call,
12484 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
12485 definitions.
12486 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
12487 parse-param arguments.
12488 (yy::b4_parser_class_name): Declare instance variables to
12489 hold parse-param arguments.
12490 * tests/calc.at: s/value/semantic_value/ because value clashes
12491 with a member of yy::b4_parser_class_name. Adjust C++ code
12492 to handle %parse-param. Enable %parse-param test in C++.
12493
12494 2003-05-12 Paul Eggert <eggert@twinsun.com>
12495
12496 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
12497 English a bit. Fix fclose typo. Change "const char" to "char
12498 const", and use ANSI C rather than K&R for "main". Suggest
12499 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
12500 and suggest yy_switch_to_buffer.
12501
12502 2003-05-05 Paul Eggert <eggert@twinsun.com>
12503
12504 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
12505 C89. This avoids a diagnostic on compilers that define __STDC__
12506 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
12507 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
12508
12509 2003-05-03 Paul Eggert <eggert@twinsun.com>
12510
12511 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
12512 Do not overrun array bounds.
12513 This should fix a bug reported today by Olatunji Oluwabukunmi in
12514 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
12515
12516 2003-04-29 Akim Demaille <akim@epita.fr>
12517
12518 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
12519 * src/getargs.c, src/getargs.h: here, as bool, not int.
12520 (nondeterministic_parser): New.
12521 * src/parse-gram.y, src/scan-gram.l: Support
12522 %nondeterministic-parser.
12523 * src/output.c (prepare): Use nondeterministic_parser instead
12524 of glr_parser where appropriate.
12525 * src/tables.c (conflict_row, action_row, save_row)
12526 (token_actions, token_actions, pack_vector): Ditto.
12527
12528 2003-04-29 Akim Demaille <akim@epita.fr>
12529
12530 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
12531
12532 2003-04-29 Akim Demaille <akim@epita.fr>
12533
12534 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
12535 with %pure-parser and %locations to exercise the patch from Yakov
12536 Markovitch below.
12537
12538 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
12539
12540 * data/yacc.c: (b4_lex_param): Corrected for the case where
12541 %lex-param is provided and %pure-parser isn't.
12542
12543 2003-04-27 Paul Eggert <eggert@twinsun.com>
12544
12545 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
12546 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
12547 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
12548 if it is not defined.
12549 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
12550
12551 2003-04-26 Paul Eggert <eggert@twinsun.com>
12552
12553 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
12554 Declare to be of type suitable for the ninf value itself, not of
12555 type suitable for the corresponding table, since the latter might
12556 be unsigned but the ninf value might be negative. This fixes a
12557 bug reported by Alexandre Duret-Lutz in
12558 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
12559
12560 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
12561 invokes it. We shouldn't invoke it twice because it will attempt
12562 to put error.o in the archive twice. This fixes a glitch reported
12563 by Martin Mokrejs in
12564 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
12565
12566 2003-04-21 Paul Eggert <eggert@twinsun.com>
12567
12568 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
12569 to gnulib.
12570
12571 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
12572
12573 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
12574 Fix obvious typo that results in uncompilable GLR parsers
12575 when both %pure-parser and %locations are used. (trivial change)
12576
12577 2003-04-17 Paul Eggert <eggert@twinsun.com>
12578
12579 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
12580 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
12581 Do not insert the expected token via unput, as this runs afoul
12582 of a POSIX-compatibility bug in flex 2.5.31.
12583 All uses changed to BEGIN the parent state,
12584 since we no longer insert the expected token via unput.
12585 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
12586 that is no longer emitted after the above change.
12587
12588 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
12589 the first one. This change is from Paul Hilfinger, and it fixes
12590 regression reported by Werner Lemberg in
12591 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
12592
12593 (resolve_sr_conflict): Don't invoke state_errs_set
12594 unless one or more tokens have been explicitly made errors.
12595 Otherwise, the above change causes Bison to abort.
12596
12597 * tests/existing.at (GNU pic Grammar): New test case, taken from
12598 Lemberg's email.
12599
12600 2003-03-31 Akim Demaille <akim@epita.fr>
12601
12602 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
12603
12604 2003-03-31 Akim Demaille <akim@epita.fr>
12605
12606 * src/output.c (prepare_symbols): Avoid trailing spaces in the
12607 output.
12608
12609 2003-03-31 Akim Demaille <akim@epita.fr>
12610
12611 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
12612 From Paul Hilfinger.
12613
12614 2003-03-29 Akim Demaille <akim@epita.fr>
12615
12616 * m4/error.m4: Do not put under dynamic conditions some code which
12617 expansion is under static control.
12618
12619 2003-03-29 Akim Demaille <akim@epita.fr>
12620
12621 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
12622
12623 2003-03-29 Akim Demaille <akim@epita.fr>
12624
12625 * doc/bison.texinfo (Strings are Destroyed): New.
12626
12627 2003-03-13 Paul Eggert <eggert@twinsun.com>
12628
12629 * .cvsignore: Add configure.lineno.
12630 * src/.cvsignore: Add yacc.
12631 * tests/.cvsignore: Add testsuite.log.
12632 * doc/fdl.texi: Sync with latest FSF version.
12633
12634 2003-03-12 Paul Eggert <eggert@twinsun.com>
12635
12636 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
12637 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
12638 cursor, instead of leaving it undefined. This fixes a bug
12639 reported by Tim Van Holder in
12640 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
12641 * tests/input.at (Torturing the Scanner): Test the scanner on
12642 an empty input file, which was Tim Van Holder's test case.
12643
12644 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
12645 <sys/resource.h> can be included, include sys/time.h and
12646 sys/times.h first, if available. This works around the SunOS
12647 4.1.4 porting bug reported by Bruce Becker in
12648 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
12649
12650 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
12651 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
12652 AC_HEADER_SYS_WAIT.
12653
12654 Merge changes from gnulib. This was prompted because the CVS
12655 snapshot didn't build on Solaris 7 due to strnlen problems.
12656
12657 These changes need to be merged back into gnulib:
12658 * lib/hash.c: Include <stdbool.h> unconditionally.
12659 * m4/onceonly.m4 (m4_quote): New macro.
12660 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
12661 Quote AC_FOREACH variable-expansions properly.
12662 The 2003-01-03 obstack.h change also needs merging.
12663 {end of changes requiring merging}
12664
12665 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
12666 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
12667 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
12668 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
12669 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
12670 New files, imported from gnulib.
12671 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
12672 above.
12673
12674 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
12675 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
12676 gnulib sources.
12677
12678 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
12679 Add.
12680 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
12681 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
12682 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
12683 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
12684 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
12685 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
12686 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
12687 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
12688 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
12689 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
12690 (jm_PREREQ_ARGMATCH): Remove.
12691 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
12692 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
12693
12694 * src/system.h: Include <stdbool.h> unconditionally.
12695
12696 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
12697 assuming at least C89 in the bitset code for some time now.
12698
12699 2003-03-03 Akim Demaille <akim@epita.fr>
12700
12701 * ro.po: New.
12702
12703 2003-03-02 Akim Demaille <akim@epita.fr>
12704
12705 * doc/bison.texinfo (Table of Symbols): Reactivate the
12706 documentation for %lex-param, and %parse-param.
12707
12708 2003-03-02 Akim Demaille <akim@epita.fr>
12709
12710 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
12711 generate verbose error messages.
12712 Use the number of tokens as an upper bound in yytname, as it
12713 cannot be a non terminal.
12714
12715 2003-03-02 Akim Demaille <akim@epita.fr>
12716
12717 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
12718 message.
12719
12720 2003-03-02 Akim Demaille <akim@epita.fr>
12721
12722 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
12723 Use them to exercise yycheck overrun.
12724 Based on Andrew Suffield's grammar.
12725
12726 2003-03-02 Akim Demaille <akim@epita.fr>
12727
12728 Create tests/local.at for Bison generic testing macros.
12729
12730 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
12731 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
12732 This new file.
12733 * tests/calc.at (AT_CHECK_CALC): Adjust.
12734 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
12735 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
12736 * tests/local.at: here.
12737 (AT_COMPILE_CXX): Tags the tests using it as c++.
12738 Ignore the test if CXX is not functional.
12739
12740 2003-03-01 Paul Eggert <eggert@twinsun.com>
12741
12742 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
12743 not loc->end, since loc->end might contain garbage and this leads
12744 to undefined behavior on some platforms.
12745 (id_loc, token_start): Use (IF_LINTed) initial values that do not
12746 depend on *loc, so that the reader doesn't give the the false
12747 impression that *loc is initialized.
12748 (<INITIAL>"%%"): Do not bother setting code_start, since its value
12749 does not survive the return.
12750
12751 2003-03-01 Akim Demaille <akim@epita.fr>
12752
12753 * src/scan-gram.l (code_start): Always initialize it when entering
12754 into yylex, as SC_EPILOGUE is activated *before* the corresponding
12755 yylex invocation. An alternative would be making it static, but
12756 then it starts with the second %%'s beginning, instead of its end.
12757
12758 2003-02-28 Paul Eggert <eggert@twinsun.com>
12759
12760 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
12761 around a UnixWare 7.1.1 porting bug reported by John Hughes in
12762 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
12763
12764 2003-02-26 Paul Eggert <eggert@twinsun.com>
12765
12766 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
12767 Remove Sequent/Pyramid discussion (nobody uses them any more).
12768 Merge VMS and MS-DOS discussion; these ports may well be dead
12769 but let's keep mentioning them for now. Put <> around email
12770 addresses. Add copyright notice.
12771
12772 2003-02-24 Paul Eggert <eggert@twinsun.com>
12773
12774 * data/glr.c (yy_reduce_print): yylineno -> yylno,
12775 to avoid collision with flex use of yylineno.
12776 Problem reported by Bruce Lilly in
12777 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
12778 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
12779 * data/yacc.c (yy_reduce_print): Likewise.
12780
12781 * config/depcomp: Sync with Automake 1.7.3.
12782
12783 2003-02-21 Akim Demaille <akim@epita.fr>
12784
12785 * data/lalr1.cc: Use temporary variables instead of casts to
12786 change integer types.
12787 Suggested by Paul Eggert.
12788
12789 2003-02-21 Akim Demaille <akim@epita.fr>
12790
12791 * doc/bison.texinfo: Use "location" consistently to refer to @n,
12792 to avoid confusions with lalr1.cc's notion of Position.
12793 Suggested by Paul Eggert.
12794
12795 2003-02-20 Akim Demaille <akim@epita.fr>
12796
12797 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
12798 before initial_columns.
12799 (location.hh): Use consistent variable names when defining the
12800 operator<<.
12801 Use "last" so that we subtract from Positions, not from unsigned.
12802
12803 2003-02-20 Akim Demaille <akim@epita.fr>
12804
12805 * data/lalr1.cc (position.hh): New subfile, including the extended
12806 and Doxygen'ed documentation of class Position.
12807 (location.hh): Use it.
12808 Document a` la Doxygen.
12809 With the help of Benoit Perrot.
12810
12811 2003-02-20 Akim Demaille <akim@epita.fr>
12812
12813 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
12814 AT_YACC_IF.
12815 Redefine AT_YYERROR_SEES_LOC_IF using it.
12816 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
12817 not defined.
12818 Don't use the location in yy::Parser::error_ and
12819 yy::Parser::print_ when not %locations.
12820 Activate more lalr1.cc tests.
12821
12822 2003-02-19 Akim Demaille <akim@epita.fr>
12823
12824 * data/lalr1.cc: When displaying a line number, be sure to make it
12825 an int.
12826
12827 2003-02-19 Akim Demaille <akim@epita.fr>
12828
12829 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
12830 Remove, useless.
12831 (YYABORT, YYACCEPT, YYERROR): New.
12832 * tests/calc.at: Renable the lalr1.cc test.
12833
12834 2003-02-19 Akim Demaille <akim@epita.fr>
12835
12836 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
12837 error recovery, mixing with/without pops and discarding of the
12838 lookahead.
12839 Exercise YYERROR.
12840 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
12841
12842 2003-02-17 Paul Eggert <eggert@twinsun.com>
12843
12844 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
12845 * tests/testsuite.at (AT_COMPILE): Use them.
12846 This fixes the testsuite problem reported by Robert Lentz in
12847 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
12848
12849 2003-02-12 Paul Eggert <eggert@twinsun.com>
12850
12851 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
12852 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
12853 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
12854 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
12855 Check for malloc failure, for consistency with yacc.c.
12856 (yytname_size): Remove, for consistency with yacc.c.
12857
12858 The bug still remains in data/lalr1.cc, as I didn't have time
12859 to fix it there.
12860
12861 2003-02-06 Akim Demaille <akim@epita.fr>
12862
12863 * configure.ac (GXX): Rename as...
12864 (CXX): this, to keep the original Autoconf semantics.
12865 Require 2.57.
12866 * data/lalr1.cc: Fix b4_copyright invocations.
12867 If YYDEBUG is not defined, don't depend upon name_ being defined.
12868 (location.hh): Include string and iostream.
12869 (Position::filename): New member.
12870 (Position::Position ()): New.
12871 (operator<< (Position)): New.
12872 (operator- (Position, int)): New.
12873 (Location::first, Location::last): Rename as...
12874 (Location::begin, Location::end): these, to mock the conventional
12875 iterator names.
12876 (operator<< (Location)): New.
12877 * tests/atlocal.in (CXX): New.
12878 * tests/testsuite.at (AT_COMPILE_CXX): New.
12879 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
12880 locations in a more synthetic way.
12881 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
12882 lalr1.cc is used.
12883 Adjust the C locations to match those from Emacs: first column is
12884 column 0.
12885 Change all the expected results.
12886 Conform to the GCS: simplify the locations when applicable.
12887 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
12888 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
12889 these CPP macros with the m4 macros new defined by...
12890 (AT_CHECK_PUSHDEFS): this, i.e.:
12891 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
12892 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
12893 New macros.
12894 (AT_CHECK_POPDEFS): Undefine them.
12895 (AT_CHECK_CALC_LALR1_CC): New.
12896 Use it for the first lalr1.cc test.
12897
12898 2003-02-04 Akim Demaille <akim@epita.fr>
12899
12900 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
12901 Location as is defined.
12902
12903 2003-02-04 Akim Demaille <akim@epita.fr>
12904
12905 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
12906 name_ being defined.
12907
12908 2003-02-03 Paul Eggert <eggert@twinsun.com>
12909
12910 * src/gram.h (start_symbol): Remove unused decl.
12911
12912 Use more-consistent naming conventions for local vars.
12913
12914 * src/derives.c (derives_compute): Change type of local var from
12915 int to rule_number.
12916 * src/gram.c (grammar_rules_partial_print): Likewise.
12917 * src/print.c (print_core): Likewise.
12918 * src/reduce.c (reduce_grammar_tables): Likewise.
12919
12920 * src/gram.c (grammar_dump): Change name of item_number *
12921 local var from r to rp.
12922 * src/nullable.c (nullable_compute): Likewise.
12923
12924 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
12925
12926 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
12927 for symbol or symbol_number var.
12928 * src/reader.c (grammar_start_symbol_set): Likewise.
12929 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
12930 Likewise.
12931 * src/state.c (transitions_to): Likewise.
12932 * src/state.h: Likewise.
12933 * src/tables.c (symbol_number_to_vector_number): Likewise.
12934
12935 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
12936 char * var.
12937
12938 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
12939 var.
12940
12941 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
12942 var.
12943
12944 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
12945 Use str, not s, for char * var. Use ch, not c, for character var.
12946 Use size for size var.
12947
12948 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
12949 char * var.
12950 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
12951 uniqstr var.
12952 * src/uniqstr.h: Likewise.
12953
12954 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12955 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12956 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
12957 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
12958 param to have same name as that of enum, so that we don't use
12959 "s" to stand for a non-state.
12960
12961 2003-02-02 Akim Demaille <akim@epita.fr>
12962
12963 * src/scan-skel.l: Scan more than one inert character per yylex
12964 invocation.
12965
12966 2003-02-01 Paul Eggert <eggert@twinsun.com>
12967
12968 Version 1.875a.
12969
12970 * po/LINGUAS: Add ms.
12971
12972 2003-01-30 Akim Demaille <akim@epita.fr>
12973
12974 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
12975
12976 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12977
12978 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
12979 of $1.
12980
12981 Changes in response to error report by S. Eken: GLR mode does not
12982 handle negative $ indices or $ indices in embedded rules correctly.
12983 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
12984
12985 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
12986 (b4_rhs_location): Ditto.
12987 (yyfill): New function to copy from stack tree into array
12988 incrementally.
12989 (yyuserAction): Modify to allow incremental move of semantic values
12990 to rhs array when in GLR mode.
12991 Define YYFILL to use in user-defined actions to fill semantic array
12992 as needed.
12993 Remove dummy use of yystack, as there is now a guaranteed use.
12994 (yydoAction): Modify to allow incremental move of semantic values
12995 to rhs array when in GLR mode.
12996 (yyresolveAction): Ditto.
12997 (yyglrShiftDefer): Update comment.
12998 (yyresolveStates): Use X == NULL for pointers, not !X.
12999 (yyglrReduce): Ditto.
13000 (yydoAction): Ditto
13001
13002 * tests/glr-regr1.at: Rename to ...
13003 * tests/glr-regression.at: Add new regression test for the problems
13004 described above (adapted from S. Eken).
13005 Update copyright notice.
13006 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
13007 * tests/Makefile.am: Ditto.
13008
13009 2003-01-28 Paul Eggert <eggert@twinsun.com>
13010
13011 * data/lalr1.cc: Do not use @output_header_name@ unless
13012 b4_defines_flag is set. This fixes two bugs reported by
13013 Tim Van Holder in
13014 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
13015 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
13016
13017 2003-01-21 Paul Eggert <eggert@twinsun.com>
13018
13019 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
13020 we don't need to worry about yyerrlab1 being reported as an
13021 "unused label" by non-GCC C compilers. The downside is that if
13022 locations are used then a couple of statements are duplicated each
13023 time YYERROR is invoked, but the upside is that the warnings
13024 should vanish.
13025 (yyerrlab1): Move code to YERROR.
13026 (yyerrlab2): Remove. Change uses back to yyerrlab1.
13027 This reverts some of the 2002-12-27 change.
13028
13029 2003-01-17 Paul Eggert <eggert@twinsun.com>
13030
13031 * src/output.c (symbol_printers_output): Fix typo that led
13032 to core dump. Problem reported by Antonio Rus in
13033 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
13034
13035 2003-01-13 Akim Demaille <akim@epita.fr>,
13036 Quoc Peyrot <chojin@lrde.epita.fr>,
13037 Robert Anisko <anisko_r@lrde.epita.fr>
13038
13039 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
13040 when the stacks contain one element, as the loop would otherwise
13041 free the last state, and then use the top state (the one we just
13042 popped). This means that the initial elements will not be freed
13043 explicitly, as is the case in yacc.c; it is not a problem, as
13044 these elements have fake values.
13045
13046 2003-01-11 Paul Eggert <eggert@twinsun.com>
13047
13048 * NEWS: %expect-violations are now just warnings, reverting
13049 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
13050 bootstrapping problem reported by Matthias Klose; see
13051 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
13052 * src/conflicts.c (conflicts_print): Likewise.
13053 * tests/conflicts.at (%expect not enough, %expect too much,
13054 %expect with reduce conflicts): Likewise.
13055 * doc/bison.texinfo (Expect Decl): Document this. Also mention
13056 that the warning is enabled if the number of conflicts changes
13057 (not necessarily increases).
13058
13059 * src/getargs.c (version): Update copyright year.
13060
13061 2003-01-09 Akim Demaille <akim@epita.fr>
13062
13063 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
13064
13065 2003-01-08 Paul Eggert <eggert@twinsun.com>
13066
13067 * Makefile.maint (WGETFLAGS):
13068 New macro, containing "-C off" to disable proxy caches.
13069 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
13070 (rel-check): Use $(WGET) instead of wget.
13071
13072 2003-01-06 Paul Eggert <eggert@twinsun.com>
13073
13074 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
13075 the GLR paper of Scott, Johnstone and Hussain.
13076
13077 2003-01-04 Paul Eggert <eggert@twinsun.com>
13078
13079 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
13080 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
13081 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
13082 (EXTRA_LIBRARIES): New var, for liby.a.
13083 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
13084 (EXTRA_SCRIPTS): New var, for yacc.
13085
13086 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
13087 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
13088 Problem reported by Nelson H. F. Beebe.
13089
13090 2003-01-03 Paul Eggert <eggert@twinsun.com>
13091
13092 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
13093 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
13094 when compiling Bison 1.875's `bitset bset = obstack_alloc
13095 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
13096
13097 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
13098 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
13099 grow to a huge size with typical invocation.
13100
13101 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
13102 Use the pattern recommended by Autoconf 2.57, except also protect
13103 against double-definition.
13104 * src/system.h: Likewise.
13105 Portability issues reported by Nelson H. F. Beebe.
13106
13107 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
13108 All uses changed. Provide a definition in both C and C++.
13109 (yytrue, yyfalse): Define even if defined (__cplusplus).
13110
13111 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
13112 Reported by Nelson H. F. Beebe.
13113
13114 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
13115
13116 2003-01-02 Paul Eggert <eggert@twinsun.com>
13117
13118 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
13119 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
13120 Bug reported by Nelson H. F. Beebe.
13121
13122 2003-01-01 Paul Eggert <eggert@twinsun.com>
13123
13124 * Version 1.875.
13125
13126 2002-12-30 Paul Eggert <eggert@twinsun.com>
13127
13128 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
13129 Moved here from...
13130 (<INITIAL>","): Here. This causes stray "," to be treated
13131 more uniformly.
13132
13133 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
13134 last brace in braced code when not in Yacc mode, for compatibility
13135 with Bison 1.35. This resurrects the 2001-12-15 patch to
13136 src/reader.c.
13137
13138 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
13139 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
13140
13141 2002-12-28 Paul Eggert <eggert@twinsun.com>
13142
13143 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
13144 that of SYM's type. This fixes Debian bug 168069, reported by
13145 Thomas Olsson.
13146
13147 2002-12-28 Paul Eggert <eggert@twinsun.com>
13148
13149 Version 1.75f.
13150
13151 Switch back to the Yacc style of conflict reports, undoing some
13152 of the 2002-07-30 change.
13153 * doc/bison.texinfo (Understanding): Use Yacc style for
13154 conflict reports. Also, use new way of locating rules.
13155 * src/conflicts.c (conflict_report):
13156 Renamed from conflict_report_yacc, removing the old
13157 'conflict_report'. Translate the entire conflict report at once,
13158 so that we don't assume that "," has the same interpretation in
13159 all languages.
13160 (conflicts_output): Use Yacc-style conflict report for each state,
13161 instead of our more-complicated style.
13162 (conflicts_print): Use Yacc-style conflict report, except print
13163 the input file name when not emulating Yacc.
13164 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
13165 Conflicted Reduction, %expect not enough, %expect too much,
13166 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
13167 * tests/existing.at (GNU Cim Grammar): Likewise.
13168 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
13169
13170 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
13171 fatal): Don't invoke fflush; it's not needed and it might even be
13172 harmful for stdout, as stdout might not be open.
13173 * src/reduce.c (reduce_print): Likewise.
13174
13175 2002-12-27 Paul Eggert <eggert@twinsun.com>
13176
13177 Fix a bug where error locations were not being recorded correctly.
13178 This problem was originally reported by Paul Hilfinger in
13179 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
13180
13181 * data/yacc.c (yyparse): New local var yylerrsp, to record the
13182 top of the location stack's error locations.
13183 (yyerrlab): Set it. When discarding a token, push its location
13184 onto yylerrsp so that we don't lose track of the error's end.
13185 (yyerrlab1): Now is only the target of YYERROR, so that we can
13186 properly record the location of the action that failed. For GCC
13187 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
13188 GCC warning about yyerrlab1 being unused if YYERROR is unused.
13189 (yyerrlab2): New label, which yyerrlab now falls through to.
13190 Compute the error's location by applying YYLLOC_DEFAULT to
13191 the locations of all the symbols that went into the error.
13192 * doc/bison.texinfo (Location Default Action): Mention that
13193 YYLLOC_DEFAULT is also invoked for syntax errors.
13194 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13195 Error locations include the locations of all the tokens that were
13196 discarded, not just the last token.
13197
13198 2002-12-26 Paul Eggert <eggert@twinsun.com>
13199
13200 * src/files.c: Include quote.h.
13201 (compute_output_file_names): Warn if we detect conflicting
13202 outputs to the same file. This should catch the misunderstanding
13203 exemplified by Debian Bug 165349, reported by Bruce Stephens..
13204
13205 * src/conflicts.c (conflicts_print): If the user specifies
13206 "%expect N", report an error if there are any reduce/reduce
13207 conflicts. This is what the manual says should happen.
13208 This fixes Debian bug 130890, reported by Anthony DeRobertis.
13209 * tests/conflicts.at (%expect with reduce conflicts): New test.
13210
13211 Don't use m4_include on relative file names, as it doesn't work as
13212 desired if there happens to be a file with that name under ".".
13213
13214 * m4sugar/version.m4: Remove; it was included but it wasn't used.
13215 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
13216 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
13217 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
13218 * src/output.c (output_skeleton): Use full path names when
13219 specifying a file to include; don't rely on include path, as
13220 it's unreliable when the working file contains a file with
13221 that name.
13222
13223 2002-12-25 Paul Eggert <eggert@twinsun.com>
13224
13225 Remove obsolete references to bison.simple and bison.hairy.
13226 Problem mentioned by Aubin Mahe in
13227 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
13228 * data/glr.c: Comment fix.
13229 * doc/bison.1: Remove references. Also, mention "yacc".
13230
13231 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
13232 with -g option.
13233
13234 * src/parse-gram.y (declaration): Use enum "report_states" rather
13235 than its numeric value 1.
13236
13237 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
13238 opening a new one. This fixes Debian bug 165349, reported by
13239 Bruce Stephens.
13240
13241 2002-12-24 Paul Eggert <eggert@twinsun.com>
13242
13243 Version 1.75e.
13244
13245 * Makefile.maint (cvs-update): Don't assume that the shell
13246 supports $(...), as Solaris sh doesn't.
13247
13248 * src/parse-gram.y (lloc_default): Remove test for empty
13249 nonterminals at the end, since it didn't change the result.
13250
13251 2002-12-24 Paul Eggert <eggert@twinsun.com>
13252
13253 If the user does not define YYSTYPE as a macro, Bison now declares it
13254 using typedef instead of defining it as a macro. POSIX requires this.
13255 For consistency, YYLTYPE is also declared instead of defined.
13256
13257 %union directives can now have a tag before the `{', e.g., the
13258 directive `%union foo {...}' now generates the C code
13259 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
13260 The default union tag is `YYSTYPE', for compatibility with Solaris 9
13261 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
13262 instead of `yyltype'.
13263
13264 `yystype' and `yyltype' are now obsolescent macros instead of being
13265 typedefs or tags; they are no longer documented and will be
13266 withdrawn in a future release.
13267
13268 * data/glr.c (b4_location_type): Remove.
13269 (YYSTYPE): Renamed from yystype.
13270 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
13271 (struct YYLTYPE): Renamed from struct yyltype.
13272 (YYLTYPE): Renamed from yyltype.
13273 (yyltype, yystype): New (and obsolescent) macros,
13274 for backward compatibility.
13275 * data/yacc.c: Likewise.
13276
13277 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
13278 does not specify a union tag. This is for compatibility with
13279 Solaris 9 yacc.
13280
13281 * src/parse-gram.y (add_param): 2nd arg is now char * not char
13282 const *, since it is now modified by stripping surrounding { }.
13283 (current_braced_code): Remove.
13284 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
13285 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
13286 trailing " {...}". Now of type <chars>.
13287 (grammar_declaration): Adjust to bundled tokens.
13288 (code_content): Remove; stripping is now done by add_param.
13289 (print_token_value): Print contents of bundled tokens.
13290 (token_name): New function.
13291
13292 * src/reader.h (braced_code, current_braced_code): Remove.
13293 (token_name): New decl.
13294
13295 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
13296 token_type, not braced_code code_kind. All uses changed.
13297 (SC_PRE_CODE): New state, for scanning after a keyword that
13298 has (or usually has) an immediately-following braced code.
13299 (token_type): New local var, to keep track of which token type
13300 to return when scanning braced code.
13301 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
13302 <INITIAL>"%parse-param", <INITIAL>"%printer",
13303 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
13304 instead of returning a token type immediately.
13305 (<INITIAL>"{"): Set token type.
13306 (<SC_BRACED_CODE>"}"): Use it.
13307 (handle_action_dollar, handle_action_at): Now returns bool
13308 indicating success. Fail if ! current_rule; this prevents a core dump.
13309 (handle_symbol_code_dollar, handle_symbol_code_at):
13310 Remove; merge body into caller.
13311 (handle_dollar, handle_at): Complain in invalid contexts.
13312
13313 * NEWS, doc/bison.texinfo: Document the above.
13314 * NEWS: Fix years and program names in copyright notice.
13315
13316 2002-12-17 Paul Eggert <eggert@twinsun.com>
13317
13318 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
13319 Reporting, Table of Symbols): Omit mentions of %lex-param and
13320 %parse-param from the documentation for now.
13321
13322 2002-12-15 Paul Eggert <eggert@twinsun.com>
13323
13324 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
13325 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
13326 lookahead symbol, and which sets yychar in parser actions) and it
13327 disagreed with the Bison documentation. Bug
13328 reported by Andrew Walrond.
13329
13330 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
13331 as the caller now does that.
13332 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
13333 (YYEMPTY): Parenthesize right hand side, since others use it.
13334 (yyparse): Don't assume that our generated code is the only code
13335 that sets yychar.
13336
13337 2002-12-13 Paul Eggert <eggert@twinsun.com>
13338
13339 Version 1.75d.
13340
13341 POSIX requires a "yacc" command.
13342 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
13343 (MOSTLYCLEANFILES): Add yacc.
13344 (yacc): New rule.
13345 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
13346 as an alias for bison y.
13347
13348 * po/LINGUAS: Add da.
13349
13350 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
13351 problem with latest <getopt.h>.
13352 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
13353
13354 * doc/fdl.texi: Upgrade to 1.2.
13355 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
13356 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
13357 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
13358 gnulib.
13359 * config/install-sh: Sync with autotools.
13360
13361 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
13362 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
13363 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
13364 locations are requested.
13365 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
13366 locations are requested.
13367
13368 2002-12-12 Paul Eggert <eggert@twinsun.com>
13369
13370 Remove unportable casts and storage allocation tricks.
13371 While we're at it, remove almost all casts, since they
13372 usually aren't needed and are a sign of trouble.
13373
13374 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
13375
13376 * src/derives.c (derives_compute): Do not subtract NTOKENS from
13377 the pointer DSET returned by malloc; this isn't portable.
13378 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
13379 Similarly for DERIVES.
13380 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
13381 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
13382 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
13383
13384 * src/derives.c (derives_compute): Do not bother invoking
13385 int_of_rule_number, since rule numbers are integers.
13386
13387 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
13388 rather than XMALLOC (char, N).
13389
13390 * src/files.c (filename_split): Rewrite to avoid cast.
13391
13392 * src/gram.h (symbol_number_as_item_number,
13393 item_number_as_symbol_number, rule_number_as_item_number,
13394 item_number_as_rule_number):
13395 Now inline functions rather than macros, to avoid casts.
13396 * src/state.h (state_number_as_int): Likewise.
13397 * src/tables.c (state_number_to_vector_number,
13398 symbol_number_to_vector_number): Likewise.
13399
13400 * src/gram.h (int_of_rule_number): Remove; no longer used.
13401
13402 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
13403 since the resulting storage is always stored into.
13404
13405 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
13406 where it's needed.
13407
13408 * src/muscle_tab.c (muscle_m4_output):
13409 Now inline. Return bool, not int.
13410 * src/state.c (state_compare): Likewise.
13411 * src/symtab.c (symbol_check_defined,
13412 symbol_check_alias_consistency, symbol_pack, symbol_translation,
13413 hash_compare_symbol, hash_symbol):
13414 Likewise.
13415 * src/uniqstr.c (uniqstr_print): Likewise.
13416 * src/muscle_tab.c (muscle_m4_output_processor):
13417 New function, to avoid casts.
13418 * src/state.c (state_comparator, stage_hasher): Likewise.
13419 * src/symtab.c (symbol_check_defined_processor,
13420 symbol_check_alias_consistency_processor, symbol_pack_processor,
13421 symbol_translation_processor, hash_symbol_comparator,
13422 hash_symbol_hasher): Likewise.
13423 * src/uniqstr.c (uniqstr_print_processor): Likewise.
13424 * src/muscle_tab.c (muscles_m4_output):
13425 Use new functions instead of casting old functions unportably.
13426 * src/state.c (state_hash_new): Likewise.
13427 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
13428 symbols_token_translations_init):
13429 Likewise.
13430 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
13431
13432 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
13433 var instead of casting to long, to avoid casts.
13434 (prepare_states): Use MALLOC rather than alloca, so that we don't
13435 have to worry about alloca.
13436 * src/state.c (state_hash_lookup): Likewise.
13437
13438 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
13439 local var instead of casting to unsigned char, to avoid casts.
13440
13441 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
13442 STATE_ALLOC): Remove.
13443 (transitions_new, errs_new, reductions_new, state_new): Use malloc
13444 rather than calloc, and use offsetof to avoid allocating slightly
13445 too much storage.
13446 (state_new): Initialize all members.
13447
13448 * src/state.c (state_hash): Use unsigned accumulator, not signed.
13449
13450 * src/symtab.c (symbol_free): Remove; unused.
13451 (symbol_get): Remove cast in lhs of assignment.
13452 (symbols_do): Now static. Accept generic arguments, not
13453 hashing-related ones.
13454
13455 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
13456 (symbol_processor): Remove.
13457 (symbols_do): Remove decl; now static.
13458
13459 * src/system.h (alloca): Remove; decl no longer needed.
13460 (<stddef.h>): Include, for offsetof.
13461 (<inttypes.>, <stdint.h>): Include if available.
13462 (uintptr_t): New type, if system lacks it.
13463 (CALLOC, MALLOC, REALLOC): New macros.
13464 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
13465 new macros.
13466
13467 * src/tables.c (table_size): Now int, to pacify GCC.
13468 (table_grow, table_ninf_remap): Use signed table size.
13469 (save_row): Don't bother initializing locals when not needed.
13470 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
13471 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
13472
13473 * src/vcg.h: Correct misspellings.
13474
13475 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
13476
13477
13478 * src/getargs.c (getargs): Don't assume EOF == -1.
13479
13480 2002-12-09 Paul Eggert <eggert@twinsun.com>
13481
13482 Change identifier spellings to avoid collisions with names
13483 that are reserved by POSIX.
13484
13485 Don't use names ending in _t, since POSIX reserves them.
13486 For consistency, remove _e and _s endings -- they're weren't
13487 needed to remove ambiguity. All uses changed.
13488 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
13489 turn was just renamed from struniq_t.
13490 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
13491 which in turn was just renamed from struniq_processor_t.
13492 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
13493 in turn was renamed from hash_compare_struniq_t.
13494 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
13495 (state_list): Renamed from state_list_t.
13496 * src/assoc.h (assoc): Renamed from assoc_t.
13497 * src/conflicts.c (enum conflict_resolution): Renamed from
13498 enum conflict_resolution_e.
13499 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
13500 (rule_list): Renamed from rule_list_t.
13501 * src/getargs.h (enum trace): Renamed from enum trace_e.
13502 (enum report): Renamed from enum report_e.
13503 * src/gram.h (item_number): Renamed from item_number_t.
13504 (rule_number): Renamed from rule_number_t.
13505 (struct rule_s): Remove the "rule_s" part; not used.
13506 (rule): Renamed from rule_t.
13507 (rule_filter): Renamed from rule_filter_t.
13508 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
13509 (goto_list): Renamed from goto_list_t.
13510 * src/lalr.h (goto_number): Renamed from goto_number_t.
13511 * src/location.h (location): Renamed from location_t.
13512 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
13513 and moved here from:
13514 * src/muscle_tab.h (muscle_entry_t): here.
13515 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
13516 (rule_list): Renamed from rule_list_t.
13517 * src/print_graph.c (static_graph): Renamed from graph.
13518 * src/reader.h (braced_code): Renamed from braced_code_t.
13519 Remove brace_code_e tag.
13520 * src/relation.h (relation_node): Renamed from relation_node_t.
13521 (relation_nodes): Renamed from relation_nodes_t.
13522 (relation): Renamed from relation_t.
13523 * src/state.h (state_number): Renamed from state_number_t.
13524 (struct state): Renamed from struct state_s.
13525 (state): Renamed from state_t.
13526 (transitions): Renamed from transitions_t. Unused (and
13527 misspelled) transtion_s tag removed.
13528 (errs): Renamed from errs_t. Unused errs_s tag removed.
13529 (reductions): Renamed from reductions_t. Unused tag
13530 reductions_s removed.
13531 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
13532 (struct symbol_list): Renamed from struct symbol_list_s.
13533 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
13534 (struct symbol): Renamed from struct symbol_s.
13535 (symbol): Renamed from symbol_t.
13536 * src/tables.c (vector_number): Renamed from vector_number_t.
13537 (action_number): Renamed from action_t.
13538 * src/tables.h (base_number): Renamed from base_t.
13539 * src/vcg.h (enum color): Renamed from enum color_e.
13540 (enum textmode): Renamed from enum textmode_e.
13541 (enum shape): Renamed from enum shape_e.
13542 (struct colorentry): Renamed from struct colorentry_s.
13543 (struct classname): Renamed from struct classname_s.
13544 (struct infoname): Renamed from struct infoname_s.
13545 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
13546 (enum decision): Renamed from enum decision_e.
13547 (enum orientation): Renamed from enum orientation_e.
13548 (enum alignment): Renamed from enum alignment_e.
13549 (enum arrow_mode): Renamed from enum arrow_mode_e.
13550 (enum crossing_type): Renamed from enum crossing_type_e.
13551 (enum view): Renamed from enum view_e.
13552 (struct node): Renamed from struct node_s.
13553 (node): Renamed from node_t.
13554 (enum linestyle): Renamed from enum linestyle_e.
13555 (enum arrowstyle): Renamed from enum arrowstyle_e.
13556 (struct edge): Renamed from struct edge.
13557 (edge): Renamed from edge_t.
13558 (struct graph): Renamed from struct graph_s.
13559 (graph): Renamed from graph_t.
13560 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
13561 Rename value_t -> value.
13562 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
13563 value_t_as_yystype -> value_as_yystype.
13564
13565 Don't include <errno.h> in the mainstream code, since it
13566 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
13567 * lib/get-errno.c, lib/get-errno.h: New files.
13568 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
13569 get-errno.c.
13570 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
13571 * src/output.c (output_skeleton): Likewise.
13572 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
13573 instead of errno.
13574 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
13575 Likewise.
13576 (handle_action_dollar, handle_action_at): Likewise.
13577 * src/system.h: Do not include <errno.h>.
13578 (TAB_EXT): Renamed from EXT_TAB.
13579 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
13580
13581 Avoid str[a-z]*, since <string.h> reserves that name space.
13582 Change all instances of "struniq" in names to "uniqstr", and
13583 likewise for "STRUNIQ" and "UNIQSTR".
13584 * src/uniqstr.c: Renamed from src/struniq.c.
13585 * src/uniqstr.h: Renamed from src/struniq.h.
13586 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
13587 * src/files.c (strsuffix): Remove; unused.
13588 (concat2): Renamed from stringappend. Now static.
13589 * src/files.h (strsuffix, stringappend): Remove; unused.
13590 * src/parse-gram.y (<chars>): Renamed from <string>.
13591 (<uniqstr>): Renamed from <struniq>.
13592 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
13593 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
13594 (struct graph_s.expand): Renamed from struct graph_s.stretch.
13595 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
13596 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
13597 (N_EXPAND): Renamed from N_STRETCH.
13598
13599 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
13600 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
13601 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
13602 Remove; unused.
13603 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
13604 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
13605 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
13606 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
13607 (BASE_MAXIMUM): Renamed from BASE_MAX.
13608 (BASE_MINIMUM): Renamed from BASE_MIN.
13609 (ACTION_MAX): Remove; unused.
13610 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
13611 Unnecessary casts removed from above defines.
13612
13613
13614 Fix misspelling in names.
13615 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
13616 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
13617 G_NODE_ALIGNEMENT.
13618
13619
13620 * lib/timevar.c (timevar_report): Renamed from time_report,
13621 for consistency with other names.
13622 * lib/timevar.h (timevar_report): New decl.
13623 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
13624
13625
13626 Sort include-file uses.
13627
13628 Reorder all include files under src to be in the order "system.h".
13629 then the ../lib include files in angle brackets (alphabetized),
13630 then the . include files in double-quotes (alphabetized). Fix
13631 dependency breakages encountered in this process, as follows:
13632 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
13633 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
13634 * src/state.h: Include "symtab.h".
13635
13636 2002-12-08 Paul Eggert <eggert@twinsun.com>
13637
13638 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
13639 since this causes problems when __file__ contains character
13640 sequences like "@" that are treated specially by src/scan-skel.l.
13641 Instead, just use the file's basename. This fixes the bug
13642 reported by Martin Mokrejs in
13643 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
13644
13645 2002-12-06 Paul Eggert <eggert@twinsun.com>
13646
13647 Add support for rules that do not have trailing semicolons, as
13648 POSIX requires. Improve the quality of locations in Bison
13649 diagnostics.
13650
13651 * src/location.c: Include <quotearg.h>.
13652 (empty_location): Now const.
13653 (location_print): New function. Follow the recommendation of the
13654 GNU Coding Standards for locations that span file boundaries.
13655 * src/location.h: Do not include <quotearg.h>; no longer needed.
13656 (boundary): New type.
13657 (location_t): Use it. This allows locations to span file boundaries.
13658 All member uses changed: file -> start.file or end.file (as needed),
13659 first_line -> start.line, first_column -> start.column,
13660 last_line -> end.line, last_column -> end.column.
13661 (equal_boundaries): New function.
13662 (LOCATION_RESET, LOCATION_STEP): Remove.
13663 (LOCATION_PRINT): Remove. All callers changed to use location_print.
13664 (empty_location): Now const.
13665 (location_print): New decl.
13666 * src/parse-gram.y (lloc_default): New function, which handles
13667 empty locations more accurately.
13668 (YYLLOC_DEFAULT): Use it.
13669 (%token COLON): Remove.
13670 (%token ID_COLON): New token.
13671 (rules): Use it.
13672 (declarations, rules): Remove trailing semicolon.
13673 (declaration, rules_or_grammar_declaration):
13674 Allow empty (";") declaration.
13675 (symbol_def): Remove empty actions; no longer needed.
13676 (rules_or_grammar_declaration): Remove trailing semicolon.
13677 (semi_colon.opt): Remove.
13678 * src/reader.h: Include location.h.
13679 (scanner_cursor): New decl.
13680 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
13681 rolling our own.
13682 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
13683 of *loc.
13684 (STEP): Remove. No longer needed, now that adjust_location does
13685 the work. All uses removed.
13686 (scanner_cursor): New var.
13687 (adjust_location): Renamed from extend_location. It now sets
13688 *loc and adjusts the scanner cursor. All uses changed.
13689 Don't bother testing for CR.
13690 (handle_syncline): Remove location arg; now updates scanner cursor.
13691 All callers changed.
13692 (unexpected_end_of_file): Now accepts start boundary of token or
13693 comment, not location. All callers changed. Update scanner cursor,
13694 not the location.
13695 (SC_AFTER_IDENTIFIER): New state.
13696 (context_state): Renamed from c_context. All uses changed.
13697 (id_loc, code_start, token_start): New local vars.
13698 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
13699 processing of Yacc white space and equivalents here.
13700 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
13701 instead of returning ID immediately, since we need to search for
13702 a subsequent colon.
13703 (<INITIAL>"'", "\""): Save token_start.
13704 (<INITIAL>"%{", "{", "%%"): Save code_start.
13705 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
13706 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
13707 BEGIN context_state at end, not INITIAL.
13708 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
13709 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
13710 Return correct token start.
13711 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
13712 the start of a character, string or multiline comment is found.
13713 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
13714 Reduction): Adjust reported locations to match the more-precise
13715 results now expected.
13716 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
13717 * tests/reduce.at (Useless Rules, Reduced Automaton,
13718 Underivable Rules): Likewise.
13719 * tests/regression.at (Invalid inputs): No longer `expecting ";"
13720 or "|"' now that so many other tokens are allowed by the new grammar.
13721
13722 * src/complain.h (current_file): Remove duplicate decl;
13723 current_file is now owned by files.h.
13724 * src/complain.c, src/scan-gram.l: Include files.h.
13725
13726 2002-12-06 Paul Eggert <eggert@twinsun.com>
13727
13728 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
13729 promotes to int; it might be unsigned int.
13730 * data/yacc.c (yy_reduce_print): Likewise.
13731
13732 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
13733 be #defined in the prologue, not in the Bison declarations.
13734 This fixes Debian Bug 102878, reported by Shaul Karl.
13735
13736 2002-12-02 Paul Eggert <eggert@twinsun.com>
13737
13738 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
13739 * lib/strtoul.c: New file, from gnulib.
13740 This fixes a porting bug reported by Peter Klein in
13741 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
13742
13743 2002-11-30 Paul Eggert <eggert@twinsun.com>
13744
13745 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
13746 and put only a forward declaration in the prologue. This is for
13747 consistency with the other scanner helper functions.
13748
13749 Type clashes now generate warnings, not errors, since it
13750 appears that POSIX may allow some grammars with type clashes.
13751 * src/reader.c (grammar_current_rule_check): Warn about
13752 type clashes instead of complaining.
13753 * tests/input.at (Type Clashes): Expect warnings, not complaints.
13754
13755 Add Yacc library, since POSIX requires it.
13756 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
13757 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
13758 * lib/main.c, lib/yyerror.c: New files.
13759
13760 gram_error can be static; it need not be extern.
13761 * src/reader.h (gram_error): Remove decl.
13762 * src/parse-gram.y (gram_error): Now static. Add static decl.
13763 (print_token_value): Omit parameter names from forward decl,
13764 for consistency.
13765
13766 2002-11-29 Paul Eggert <eggert@twinsun.com>
13767
13768 * doc/bison.texinfo: Emphasize that yylex and yyerror must
13769 be declared before being used. E.g., one should typically
13770 declare them in the prologue. Use GNU coding style in examples.
13771 Put "const" consistently after the type it modifies. Mention
13772 that C99 supports "inline". Mention that yyerror traditionally
13773 returns "int".
13774
13775 %parse-param and %lex-param now take just one argument, the
13776 declaration; the argument name is deduced from the declaration.
13777
13778 * doc/bison.texinfo (Parser Function, Pure Calling, Error
13779 Reporting, Table of Symbols): Document this.
13780 * src/parse-gram.y (add_param): New function.
13781 (COMMA): Remove.
13782 (declaration): Implement new rule for %parse-param and %lex-param.
13783 * src/scan-gram.l: "," now elicits a warning, rather than being
13784 a token; this is more compatible with byacc.
13785 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
13786
13787 2002-11-27 Paul Eggert <eggert@twinsun.com>
13788
13789 Rename identifiers to avoid real and potential collisions.
13790
13791 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
13792 to avoid collision with lex macro described by Bruce Lilly in
13793 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
13794 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
13795 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
13796 * src/parse-gram.y (print_token_value): Renamed from yyprint.
13797 All uses changed.
13798 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
13799 The name "yycontrol" violates the name space rules, and this stuff
13800 wasn't being used anyway.
13801 (input): Remove action; this stuff wasn't being used.
13802 (gram_error): Rename local variable yylloc -> loc.
13803 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
13804 (YY_DECL): Don't use "yy" at start of local variables.
13805 All uses changed, e.g., yylloc -> loc.
13806 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
13807 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
13808 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
13809 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
13810
13811 * src/parse-gram.y (gram_error): loc is now const *.
13812 * src/reader.h (gram_error): Likewise.
13813
13814 2002-11-24 Paul Eggert <eggert@twinsun.com>
13815
13816 Version 1.75c.
13817
13818 * tests/actions.at (Actions after errors): Use an output format
13819 more similar to that of the Printers and Destructors test.
13820 Test the position of the ';' token too.
13821 (Printers and Destructors): Likewise.
13822 (Printers and Destructors: %glr-parser): Remove for now, to avoid
13823 unnecessarily alarming people when the test fails.
13824
13825 * data/yacc.c (yyerrlab1): Move this label down, so that the
13826 parser does not discard the lookahead token if the user code
13827 invokes YYERROR. This change is required for POSIX conformance.
13828
13829 * lib/error.c: Sync with gnulib.
13830
13831 2002-11-22 Paul Eggert <eggert@twinsun.com>
13832
13833 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
13834 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
13835 * lib/xmalloc.c: Likewise.
13836
13837 2002-11-20 Paul Eggert <eggert@twinsun.com>
13838
13839 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
13840
13841 2002-11-20 Paul Eggert <eggert@twinsun.com>
13842
13843 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
13844 should use `if (! x) abort ();' rather than `assert (x);', and
13845 anyway it's one less thing to worry about configuring.
13846
13847 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
13848 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
13849 and replace all instances of assert with abort.
13850 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
13851 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
13852
13853 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
13854 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
13855 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
13856 hash_find_entry, hash_rehash, hash_insert): Likewise.
13857 * src/conflicts.c (resolve_sr_conflict): Likewise.
13858 * src/lalr.c (set_goto_map, map_goto): Likewise.
13859 * src/nullable.c (nullable_compute): Likewise.
13860 * src/output.c (prepare_rules, token_definitions_output): Likewise.
13861 * src/reader.c (packgram, reader): Likewise.
13862 * src/state.c (state_new, state_free, state_transitions_set,
13863 state_reduction_find): Likewise.
13864 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
13865 symbol_pack): Likewise.
13866 * src/tables.c (conflict_row, pack_vector): Likewise.
13867 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
13868 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
13869 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
13870 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
13871
13872 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
13873 (ARGMATCH_CONSTRAINT): New macro.
13874 (ARGMATCH_ASSERT): Use it.
13875
13876 * src/system.h (verify): New macro.
13877 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
13878 rather than assert.
13879 * src/tables.c (tables_generate): Likewise.
13880
13881 * src/struniq.c (struniq_assert): Now returns void, and aborts
13882 if the assertion is false.
13883 (struniq_assert_p): Remove.
13884 * src/struniq.h: Likewise.
13885
13886 2002-11-18 Paul Eggert <eggert@twinsun.com>
13887
13888 * data/glr.c (yygetLRActions): Replace `yyindex' with
13889 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
13890 This fixes the regression with Sun ONE Studio 7 cc that I reported in
13891 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
13892
13893 2002-11-18 Akim Demaille <akim@epita.fr>
13894
13895 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
13896 space.
13897 From Tim Van Holder.
13898
13899 2002-11-17 Paul Eggert <eggert@twinsun.com>
13900
13901 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
13902 to "SyntaxError" for consistency with my 2002-11-15 change.
13903
13904 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
13905 not define to {}, since this breaks the common use of `YYDPRINTF
13906 ((...));' if a single statement is desired (e.g. before `else').
13907 Work around GCC warnings by surrounding corresponding calls with
13908 {} if needed.
13909 (yyhasResolvedValue): Remove unused function.
13910 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
13911 loop body.
13912 (yyreportSyntaxError): Renamed from yyreportParseError.
13913 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
13914 All uses changed.
13915 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
13916 extern when possible. Remove unused initializations.
13917
13918 2002-11-16 Akim Demaille <akim@epita.fr>
13919
13920 Augment the similarity between GLR and LALR traces.
13921
13922 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
13923 (YY_REDUCE_PRINT): New.
13924 (yyparse): Use them.
13925 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
13926 YYDPRINT here.
13927 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
13928 state reached after the reduction/recovery, since...
13929 (yyparse, yyprocessOneStack): Report the state we are entering in.
13930
13931 2002-11-16 Akim Demaille <akim@epita.fr>
13932
13933 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
13934 Add support for --trace=skeleton.
13935 * src/scan-skel.l: %option debug.
13936 Scan strings of non-@ or \n instead of character by character.
13937 (scan_skel): Handle trace_skeleton.
13938 (QPUTS): New.
13939 (@output_parser_name@, @output_header_name@): ``Restore'' their
13940 support (used to be M4 macros).
13941 * data/yacc.c: Quote larger chunks, a la glr.c.
13942 * data/lalr1.cc: Likewise.
13943 The header guards are no longer available, so use some other
13944 string than `YYLSP_NEEDED'.
13945
13946 2002-11-16 Akim Demaille <akim@epita.fr>
13947
13948 Make the ``Printers and Destructors'' test more verbose, taking
13949 `yacc.c''s behavior as (possibly wrong) reference.
13950
13951 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
13952 instead of fprint on stdout.
13953 Set and report the last_line of the symbols.
13954 Consistently display values and locations.
13955
13956 2002-11-16 Paul Eggert <eggert@twinsun.com>
13957
13958 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
13959
13960 2002-11-15 Paul Eggert <eggert@twinsun.com>
13961
13962 * tests/actions.at (Actions after errors): New test case.
13963
13964 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
13965 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
13966 tests/action.at, tests/calc.at, tests/conflicts.at,
13967 tests/cxx-type.at, tests/regression.at:
13968 "parse error" -> "syntax error" for POSIX compatibility.
13969 "parsing stack overflow..." -> "parser stack overflow" so
13970 that code matches Bison documentation.
13971
13972 2002-11-15 Akim Demaille <akim@epita.fr>
13973
13974 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
13975 take two BRACED_CODE, not two string_content.
13976 Free the scanner's obstack when we are done.
13977 (code_content): New.
13978 * tests/calc.at: Adjust.
13979 * doc/bison.texinfo: Adjust.
13980 Also, make sure to include the `,' for these declarations.
13981
13982 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
13983
13984 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
13985 definition; avoids potential autoreconf problems.
13986
13987 2002-11-15 Akim Demaille <akim@epita.fr>
13988
13989 Always check the value returned by yyparse.
13990
13991 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
13992 returned by yyparse.
13993 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
13994 Adjust calls.
13995 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
13996 returned by yyparse.
13997
13998 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13999
14000 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
14001 on input.at test.
14002
14003 2002-11-14 Paul Eggert <eggert@twinsun.com>
14004
14005 * src/output.c (output_skeleton): Call xfopen instead of
14006 duplicating xfopen's body.
14007
14008 Fix bugs reported by Nelson H. F. Beebe in
14009 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
14010
14011 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
14012 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
14013 Group compiler. Instead, use "$CC -E bar.c". Include the .h
14014 file twice in the grammar, as an extra check.
14015
14016 * tests/input.at (Torturing the Scanner): Surround the
14017 backslash-newline tests with "#if 0", to make it less likely that
14018 we'll run into compiler bugs. Bring back solitary \ inside
14019 comment, but add a closing comment to work around HP C bug. Don't
14020 test backslash-newline in C character constant.
14021
14022 2002-11-14 Akim Demaille <akim@epita.fr>
14023
14024 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
14025 status of the compiler.
14026 Calling `exit 1' is no longer needed.
14027 Reported by Nelson H. F. Beebe.
14028
14029 2002-11-14 Akim Demaille <akim@epita.fr>
14030
14031 * tests/atlocal.in (CPPFLAGS): We have config.h.
14032 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
14033 New.
14034 * tests/actions.at, tests/calc.at, tests/conflicts.at,
14035 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
14036 * tests/regression.at, tests/torture.at: Use them for all the
14037 grammars that are to be compiled.
14038 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
14039 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
14040 * doc/bison.texinfo (GLR Parsers): Document `inline'.
14041
14042 2002-11-14 Akim Demaille <akim@epita.fr>
14043
14044 * doc/bison.texinfo: Various formatting changes (alignments in
14045 samples, additional @group/@end group, GCS in samples.
14046 Use @deffn instead of simple @table to define the directives,
14047 macros, variables etc.
14048
14049 2002-11-13 Paul Eggert <eggert@twinsun.com>
14050
14051 Fix some bugs reported by Albert Chin-A-Young in
14052 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
14053
14054 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
14055 -o c"; the HP C compiler chatters during compilation.
14056 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
14057 * tests/headers.at (export YYLTYPE): Likewise.
14058
14059 * tests/input.at (Torturing the Scanner): Remove lines containing
14060 solitary backslashes, as they tickle a bug in the HP C compiler.
14061
14062 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
14063 comments, since they're not portable. Use GNU coding style.
14064
14065 2002-11-13 Akim Demaille <akim@epita.fr>
14066
14067 * data/yacc.c: Leave bigger chunks of quoted text.
14068 (YYDSYMPRINTF): New.
14069 Use it to report symbol activities.
14070 * data/glr.c (YYDSYMPRINTF): New.
14071 Use it.
14072
14073 2002-11-12 Paul Eggert <eggert@twinsun.com>
14074
14075 Version 1.75b.
14076
14077 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
14078 (yyglrReduce): Return yyok, not 0.
14079 This should avoid the enumerated-type warnings reported
14080 by Nelson H. F. Beebe in
14081 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
14082
14083 * lib/bbitset.h (BITSET_INLINE): Remove.
14084 * lib/bitset.h [! BITSET_INLINE]: Remove.
14085 (bitset_set, bitset_reset, bitset_test): Rename local vars
14086 to avoid shadowing warnings by GCC.
14087
14088 * data/glr.c (inline): Remove #define. It's the user's
14089 responsibility to #define it away, just like 'const'.
14090 This fixes one of the bugs reported by Nelson H. F. Beebe in
14091 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
14092
14093 * Makefile.maint (po-check): Scan .l and .y files instead of the
14094 .c and the .h files that they generate. This fixes the bug
14095 reported by Tim Van Holder in:
14096 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
14097 Look for N_ as well as for _. Try to avoid matching #define for
14098 N_ and _.
14099 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
14100 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
14101 * src/scan-gram.l: Revamp regular expressions so that " and '
14102 do not confuse xgettext.
14103
14104 * src/struniq.h (struniq_new): Do not declare the return type
14105 to be 'const'; this violates the C standard.
14106 * src/struniq.c (struniq_new): Likewise.
14107
14108 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
14109
14110 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
14111 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
14112 linker.
14113
14114 2002-11-12 Akim Demaille <akim@epita.fr>
14115
14116 * Makefile.maint: Sync with Autoconf:
14117 (local_updates): New.
14118
14119 2002-11-12 Akim Demaille <akim@epita.fr>
14120
14121 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
14122
14123 2002-11-12 Akim Demaille <akim@epita.fr>
14124
14125 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
14126 locations.
14127
14128 2002-11-12 Akim Demaille <akim@epita.fr>
14129
14130 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
14131 not yyvalue.
14132
14133 2002-11-12 Akim Demaille <akim@epita.fr>
14134
14135 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
14136 Use it to test the GLR parser.
14137
14138 2002-11-12 Akim Demaille <akim@epita.fr>
14139
14140 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
14141 defines it.
14142 * data/glr.c (yystos): New.
14143 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
14144 (YYDSYMPRINT): New.
14145 (yyval): Don't define it, it is handled via M4.
14146 (yyrecoverParseError): Free verbosely the discarded symbols.
14147 * data/yacc.c (yysymprint): Remove, rather...
14148 (b4_yysymprint_generate): invoke.
14149 * data/c.m4 (b4_yysymprint_generate): New.
14150 Accept pointers as arguments, as opposed to the version from
14151 yacc.c.
14152 (b4_yydestruct_generate): Likewise.
14153 * tests/cations.at (Printers and Destructors): Use Bison directives
14154 instead of CPP macros.
14155 Don't rely on internal details.
14156
14157 2002-11-12 Akim Demaille <akim@epita.fr>
14158
14159 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
14160 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
14161 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
14162 it against YYEMPTY and so forth), work on yytoken (i.e., set
14163 it to YYEMPTY etc.).
14164 (yydestruct): Replace with a b4_yydestruct_generate invocation.
14165 (b4_symbol_actions): Remove.
14166 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
14167 for 0, end-of-input.
14168
14169 2002-11-12 Akim Demaille <akim@epita.fr>
14170
14171 * doc/bison.texinfo (Destructor Decl): New.
14172
14173 2002-11-12 Akim Demaille <akim@epita.fr>
14174
14175 * src/tables.c (tables_generate): Use free for pointers that
14176 cannot be NULL, not XFREE.
14177 (pack_vector): Use assert, not fatal, for bound violations.
14178 * src/state.c (state_new): Likewise.
14179 * src/reader.c (reader): Likewise.
14180 * src/lalr.c (set_goto_map): Likewise.
14181 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
14182 the file name.
14183
14184 2002-11-12 Akim Demaille <akim@epita.fr>
14185
14186 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
14187 Restore.
14188 * src/scan-gram.l (last_string): Is global to the file, not to
14189 yylex.
14190 * src/parse-gram.y (input): Don't append the epilogue here,
14191 (epilogue.opt): do it here, and free the scanner's obstack.
14192 * src/reader.c (epilogue_set): Rename as...
14193 (epilogue_augment): this.
14194 * data/c.m4 (b4_epilogue): Defaults to empty.
14195
14196 2002-11-12 Akim Demaille <akim@epita.fr>
14197
14198 * src/getargs.c (long_options): Remove duplicates.
14199 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
14200 Remove.
14201 * doc/bison.rnh: Remove.
14202 * doc/bison.texinfo (VMS Invocation): Remove.
14203
14204 2002-11-12 Akim Demaille <akim@epita.fr>
14205
14206 * src/struniq.h, src/struniq.c (struniq_t): Is const.
14207 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
14208
14209 Use struniq for symbols.
14210
14211 * src/symtab.h (symbol_t): The tag member is a struniq.
14212 (symbol_type_set): Adjust.
14213 * src/symtab.c (symbol_new): Takes a struniq.
14214 (symbol_free): Don't free the tag member.
14215 (hash_compare_symbol_t, hash_symbol_t): Rename as...
14216 (hash_compare_symbol, hash_symbol): these.
14217 Use the fact that tags as struniqs.
14218 (symbol_get): Use struniq_new.
14219 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
14220 Returns a strniq.
14221 * src/reader.h (merger_list, grammar_currentmerge_set): The name
14222 and type members are struniqs.
14223 * src/reader.c (get_merge_function)
14224 (grammar_current_rule_merge_set): Adjust.
14225 (TYPE, current_type): Are struniq.
14226
14227 Use struniq for file names.
14228
14229 * src/files.h, src/files.c (infile): Split into...
14230 (grammar_file, current_file): these.
14231 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
14232 * src/reduce.c (reduce_print): Likewise.
14233 * src/getargs.c (getargs): Likewise.
14234 * src/complain.h, src/complain.c: Likewise.
14235 * src/main.c (main): Call struniqs_new early enough to use it for
14236 file names.
14237 Don't free the input file name.
14238
14239 2002-11-12 Akim Demaille <akim@epita.fr>
14240
14241 * src/symtab.c (symbol_free): Remove dead deactivated code:
14242 type_name are properly removed.
14243 Don't use XFREE to free items that cannot be NULL.
14244 * src/struniq.h, src/struniq.c: New.
14245 * src/main.c (main): Initialize/free struniqs.
14246 * src/parse-gram.y (%union): Add astruniq member.
14247 (yyprint): Adjust.
14248 * src/scan-gram.l (<{tag}>): Return a struniq.
14249 Free the obstack bit that used to store it.
14250 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
14251
14252 2002-11-11 Paul Eggert <eggert@twinsun.com>
14253
14254 Revamp to fix many (but not all) of the C- and M4-related quoting
14255 problems. Among other things, this fixes the Bison bug reported
14256 by Jan Hubicka when processing the Bash grammar; see:
14257 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
14258
14259 Use new @ escapes consistently. Represent brackets with @{ and @}
14260 rather than @<:@ and @:>@, since this works a bit better with dumb
14261 editors like vi. Represent @ with @@, since @ is now consistently
14262 an escape. Use @oline@ and @ofile@ rather than __oline__ and
14263 __ofile__, to avoid unexpected expansions. Similarly, use @output
14264 rather than #output.
14265
14266 * data/c.m4 (b4_copyright): Omit file name from comment, since
14267 the file name could contain "*/".
14268 (b4_synclines_flag): Don't quote the 2nd argument; it should already
14269 be quoted. All uses changed.
14270
14271 * data/glr.c: Use new @ escapes consistently.
14272 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
14273 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
14274 Remove, since they couldn't handle arbitrary characters in file
14275 names.
14276 * data/lalr1.cc: Likewise.
14277 * data/yacc.c: Likewise.
14278
14279 * src/files.c (output_infix): Remove; all uses removed.
14280 * src/files.h: Likewise.
14281
14282 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
14283 mishandled funny characters in file names, and anyway it isn't
14284 needed any more.
14285 * data/yacc.c: Likewise.
14286 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
14287
14288 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
14289 * data/yacc.c: Likewise.
14290
14291 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
14292 strings now.
14293 (muscle_init): Quote filename as a C string.
14294 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
14295 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
14296 * src/output.c (escaped_file_name_output): New function.
14297 (prepare_symbols): Quote tokens for M4.
14298 (prepare): Don't insert output_infix, output_prefix,
14299 output_parser_name, output_header_name; this is now down by scan-skel.
14300 Insert skeleton as a C string.
14301
14302 * src/output.c (user_actions_output, symbol_destructors_output,
14303 symbol_printers_output): Quote filenames for C and M4.
14304 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14305
14306 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
14307 escapes other than \\ and \'; this simplifies the code.
14308 (<SC_STRING>): Likewise, for \\ and \".
14309 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
14310 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
14311 Use new escapes @{ and @} for [ and ].
14312
14313 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
14314 them with auto vars.
14315 Switch to new escape scheme, where @ is the escape character uniformly.
14316 Abort if a stray escape character is found. Avoid unbounded input
14317 buffer when parsing non-escaped text.
14318
14319 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
14320 __oline__, #output, $@, and @{ do not have unintended meanings.
14321
14322 2002-11-09 Paul Eggert <eggert@twinsun.com>
14323
14324 Fix the test failure due to GCC warnings described in
14325 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
14326 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
14327 evaluate to 0 if it's impossible for NINF to be in the respective
14328 table.
14329 (yygetLRActions, yyrecoverParseError): Use them.
14330
14331 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
14332 counted in the token inserted at end of file. Now takes
14333 location_t *, not location_t, so that the location can be
14334 adjusted. All uses changed.
14335
14336 * tests/regression.at (Invalid inputs): Adjust wording in
14337 diagnostic to match the new behavior.
14338
14339 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
14340 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
14341 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
14342 abort ();'. This reduces the runtime of the "Many lookaheads"
14343 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
14344 GCC 3.2.
14345
14346 2002-11-07 Paul Eggert <eggert@twinsun.com>
14347
14348 * src/parse-gram.y (CHARACTER): Remove unused token.
14349 All uses removed.
14350
14351 * src/scan-gram.l: Remove stack option. We no longer use the
14352 stack, since the stack was never deeper than 1; instead, use the
14353 new auto var c_context to record the stacked value.
14354
14355 Remove nounput option. At an unexpected end of file, we now unput
14356 the minimal input necessary to end cleanly; this simplifies the
14357 code.
14358
14359 Avoid unbounded token sizes where this is easy.
14360
14361 (unexpected_end_of_file): New function.
14362 Use it to systematize the error message on unexpected EOF.
14363 (last-string): Now auto, not static.
14364 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
14365 (scanner_last_string_free): Remove; not used.
14366 (percent_percent_count): Move decl to just before use.
14367 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
14368 not the (never otherwised-used) CHARACTER.
14369
14370 2002-11-07 Akim Demaille <akim@epita.fr>
14371
14372 Let yyerror always receive the msg as last argument, so that
14373 yyerror can be variadic.
14374
14375 * data/yacc.c (b4_yyerror_args): New.
14376 Use it when calling yyerror.
14377 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
14378 Use it when calling yyerror.
14379 * doc/bison.texinfo (Error Reporting): Adjust.
14380 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
14381 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
14382
14383 2002-11-06 Akim Demaille <akim@epita.fr>
14384
14385 #line should have quoted strings.
14386 Ideally, this should be done by m4_quotearg.
14387
14388 * src/scan-skel.l: Include quotearg.h.
14389 Quote __ofile__.
14390 * src/output.c (symbol_printers_output)
14391 (symbol_destructors_output): Quote the file name.
14392
14393 2002-11-06 Akim Demaille <akim@epita.fr>
14394
14395 * tests/regression.at (Invalid inputs): Adjust to the recent
14396 messages.
14397
14398 2002-11-06 Akim Demaille <akim@epita.fr>
14399
14400 Restore --no-lines.
14401 Reported by Jim Kent.
14402
14403 * data/c.m4 (b4_syncline): New.
14404 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
14405 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
14406 * src/output.c (user_actions_output): Likewise.
14407 (prepare): Define 'b4_synclines_flag'.
14408 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
14409
14410 2002-11-06 Akim Demaille <akim@epita.fr>
14411
14412 * src/main.c (main): Free `infile'.
14413 * src/scan-gram.l (handle_syncline): New.
14414 Recognize `#line'.
14415 * src/output.c (user_actions_output, symbol_destructors_output)
14416 (symbol_printers_output): Use the location's file name, not
14417 infile.
14418 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14419
14420 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14421
14422 * src/tables.c (matching_state): Don't allow states to match if
14423 either has GLR conflict entries.
14424
14425 2002-11-05 Paul Eggert <eggert@twinsun.com>
14426
14427 * src/scan-gram.l: Use more accurate diagnostics, e.g.
14428 "integer out of range" rather than "invalid value".
14429 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
14430 accordingly.
14431
14432 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
14433 Also, remove one static variable in the scanner.
14434
14435 * src/scan-gram.l (braces_level): Now auto, not static.
14436 Initialize to zero if the compiler is being picky.
14437 (INITIAL): Clear braces_level instead of incrementing it.
14438 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
14439 as POSIX 1003.1-2001 requires.
14440 * src/system.h (IF_LINT): New macro, taken from coreutils.
14441 * configure.ac: Define "lint" if --enable-gcc-warnings.
14442
14443 2002-11-05 Akim Demaille <akim@epita.fr>
14444
14445 * src/scan-gram.l: When it starts with `%', complain about the
14446 whole directive, not just that `invalid character: %'.
14447
14448 2002-11-04 Akim Demaille <akim@epita.fr>
14449
14450 * Makefile.maint: Update from Autoconf.
14451 (update, cvs-update, po-update, do-po-update): New.
14452
14453 2002-11-04 Akim Demaille <akim@epita.fr>
14454
14455 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
14456 and yyerror.
14457 Have yyerror `use' its arguments.
14458 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
14459 returns true when location & yacc & pure & parse-param.
14460 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
14461
14462 2002-11-04 Akim Demaille <akim@epita.fr>
14463
14464 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
14465 clashes.
14466 * src/scan-gram.l: Use [\'] instead of ['] to pacify
14467 font-lock-mode.
14468 Use complain_at.
14469 Use quote, not quote_n since LOCATION_PRINT no longer uses the
14470 slot 0.
14471
14472 2002-11-03 Paul Eggert <eggert@twinsun.com>
14473
14474 * src/reader.c (get_merge_function, grammar_current_rule_check):
14475 Use consistent diagnostics for reporting type name clashes.
14476 Quote the types with <>, for consistency with Yacc.
14477 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
14478
14479 2002-11-03 Akim Demaille <akim@epita.fr>
14480
14481 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
14482 New.
14483 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
14484 (b4_parse_param): Remove.
14485 Use b4_identification.
14486 Propagate b4_pure_args where needed to pass them to yyerror.
14487 * data/glr.m4 (b4_parse_param): Remove.
14488 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
14489 (b4_lpure_formals): New.
14490 Use b4_identification.
14491 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
14492 b4_user_formals and b4_user_args.
14493 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
14494 (yyreportAmbiguity): When using a pure parser, also need
14495 the location, and the parse-params.
14496 Adjust callers.
14497 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
14498 When using a pure parser, also need the parse-params.
14499 Adjust callers.
14500 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
14501 (%pure-parser + %parse-param) LALR and GLR parsers.
14502 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
14503 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
14504 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
14505 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
14506 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
14507 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
14508 * doc/bison.texinfo: Untabify the whole file.
14509 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
14510 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
14511 (Error Reporting): Adjust to these new directives.
14512 Document %error-verbose, deprecate YYERROR_VERBOSE.
14513
14514 2002-11-03 Akim Demaille <akim@epita.fr>
14515
14516 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
14517 AT_CHECK_CALC_GLR invocations to use % directives, instead of
14518 command line options.
14519 * tests/cxx-type.at: Formatting changes.
14520
14521 2002-11-03 Paul Eggert <eggert@twinsun.com>
14522
14523 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
14524 to count columns correctly, and to check for invalid inputs.
14525
14526 Use mbsnwidth to count columns correctly. Account for tabs, too.
14527 Include mbswidth.h.
14528 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
14529 (extend_location): New function.
14530 (YY_LINES): Remove.
14531
14532 Handle CRLF in C code rather than in Lex code.
14533 (YY_INPUT): New macro.
14534 (no_cr_read): New function.
14535
14536 Scan UCNs, even though we don't fully handle them yet.
14537 (convert_ucn_to_byte): New function.
14538
14539 Handle backslash-newline correctly in C code.
14540 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
14541 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
14542 all uses changed.
14543 (tag, splice): New EREs. Do not allow NUL or newline in tags.
14544 Use {splice} wherever C allows backslash-newline.
14545 YY_STEP after space, newline, vertical-tab.
14546 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
14547
14548 (letter, id): Don't assume ASCII; e.g., spell out a-z.
14549
14550 ({int}, handle_action_dollar, handle_action_at): Check for integer
14551 overflow.
14552
14553 (YY_STEP): Omit trailing semicolon, so that it's more like C.
14554
14555 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
14556 as well as \000. Check for UCHAR_MAX, not 255.
14557 Allow \x with an arbitrary positive number of digits, as in C.
14558 Check for overflow here.
14559 Allow \? and UCNs, for compatibility with C.
14560
14561 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
14562 with quote slot used by complain_at.
14563
14564 * tests/input.at: Add tests for backslash-newline, m4 quotes
14565 in symbols, long literals, and funny escapes in strings.
14566
14567 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
14568 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
14569 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
14570 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
14571 * m4/mbswidth.m4: New file, from GNU coreutils.
14572
14573 * doc/bison.texinfo (Grammar Outline): Document // comments.
14574 (Symbols): Document that trigraphs have no special meaning in Bison,
14575 nor is backslash-newline allowed.
14576 (Actions): Document that trigraphs have no special meaning.
14577
14578 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
14579 no longer used.
14580
14581 2002-11-02 Paul Eggert <eggert@twinsun.com>
14582
14583 * src/reader.c: Don't include quote.h; not needed.
14584 (get_merge_function): Reword warning to be consistent with
14585 type clash diagnostic in grammar_current_rule_check.
14586
14587 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
14588 bug in trigraph handling.
14589
14590 * src/output.c (prepare_symbols): When printing token names,
14591 escape "[" as "@<:@" and likewise for "]".
14592
14593 * src/system.h (errno): Remove declaration, as we are now
14594 assuming C89 or better, and C89 guarantees errno.
14595
14596 2002-10-30 Paul Eggert <eggert@twinsun.com>
14597
14598 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
14599 Check for close failures.
14600 * src/files.h (xfclose): Return void, not int, since it always
14601 returned zero.
14602 * src/files.c (xfclose): Likewise. Report I/O error if ferror
14603 indicates one.
14604 * src/output.c (output_skeleton): Use xfclose rather than fclose
14605 and ferror. xfclose now checks ferror.
14606
14607 * data/glr.c (YYLEFTMOST_STATE): Remove.
14608 (yyreportTree): Use a stack-based leftmost state. This avoids
14609 our continuing battles with bogus warnings about initializers.
14610
14611 2002-10-30 Akim Demaille <akim@epita.fr>
14612
14613 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
14614 #if.
14615
14616 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14617
14618 * tests/glr-regr1.at: New test for reported regressions.
14619 * tests/testsuite.at: Add glr-regr1.at test.
14620 * tests/Makefile.am: Add glr-regr1.at test.
14621
14622 2002-10-24 Paul Eggert <eggert@twinsun.com>
14623
14624 Version 1.75a.
14625
14626 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
14627 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
14628 we use malloc. Don't assume 'A' through 'Z' are contiguous.
14629 Don't assume strdup exists; POSIX says its an XSI extension.
14630 Check for buffer overflow on input.
14631
14632 2002-10-24 Akim Demaille <akim@epita.fr>
14633
14634 * src/output.c (output_skeleton): Don't disable M4sugar comments
14635 too soon: it results in comments being expanded.
14636 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
14637 first output.
14638
14639 2002-10-24 Akim Demaille <akim@epita.fr>
14640
14641 * data/yacc.c (m4_int_type): New.
14642 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
14643 char' as only yacc.c wants K&R portability.
14644 * data/glr.c (yysigned_char): Remove.
14645 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
14646 Reported by Quoc Peyrot.
14647
14648 2002-10-23 Paul Eggert <eggert@twinsun.com>
14649
14650 * src/main.c (main): With --trace=time, report times even if a
14651 non-fatal error occurs. Formerly, the times were reported in some
14652 such cases but not in others.
14653 * src/reader.c (reader): Just return if a complaint has been issued,
14654 instead of exiting, so that 'main' can report times.
14655
14656 2002-10-22 Akim Demaille <akim@epita.fr>
14657
14658 * src/system.h: Include sys/types.
14659 Reported by Bert Deknuydt.
14660
14661 2002-10-23 Paul Eggert <eggert@twinsun.com>
14662
14663 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
14664 Suggested by Art Haas.
14665
14666 2002-10-22 Paul Eggert <eggert@twinsun.com>
14667
14668 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
14669 decl; not needed any more.
14670 * src/main.c (main): Use return to exit, undoing yesterday's change.
14671 The last OS that we could find where this wouldn't work is
14672 SunOS 3.5, and that's too old to worry about now.
14673
14674 * data/glr.c (struct yyltype): Define members even when not
14675 doing locations. This is more consistent with yacc.c, and it
14676 works around the following bug reports:
14677 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
14678 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
14679
14680 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
14681 @acronym consistently. Standardize on "Yacc" instead of "YACC",
14682 "Algol" instead of "ALGOL". Give a bit more history about BNF.
14683
14684 2002-10-22 Akim Demaille <akim@epita.fr>
14685
14686 * data/README: New.
14687
14688 2002-10-21 Paul Eggert <eggert@twinsun.com>
14689
14690 Be consistent about 'bool'; the old code used an enum in one
14691 module and an int in another, and this violates the C standard.
14692 * m4/stdbool.m4: New file, from coreutils 4.5.3.
14693 * configure.ac (AC_HEADER_STDBOOL): Add.
14694 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
14695 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
14696 * src/symtab.c (hash_compare_symbol_t): Likewise.
14697 * src/system.h (bool, false, true): Use a definition consistent
14698 with ../lib/hash.c. All uses changed.
14699
14700 * src/complain.c (warning_issued): Renamed from warn_message_count,
14701 so that we needn't worry about integer overflow (!).
14702 Now of type bool. All uses changed.
14703 (complaint_issued): Renamed from complain_message_count; likewise.
14704
14705 * src/main.c (main): Use exit to exit with failure.
14706
14707 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
14708 rather than 1 and 0.
14709 * src/main.c (main): Likewise.
14710 * src/getargs.c (getargs): Likewise.
14711 * src/reader.c (reader): Likewise.
14712
14713 * src/getarg.c (getargs): Remove duplicate code for
14714 "Try `bison --help'".
14715
14716 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
14717 What was that "2" for?
14718
14719 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
14720 * src/getargs.c (usage): Likewise.
14721
14722 * src/getargs.c (getargs): When there are too few operands, report
14723 the last one. When there are too many, report the first extra
14724 one. This is how diffutils does it.
14725
14726 2002-10-20 Paul Eggert <eggert@twinsun.com>
14727
14728 Remove K&R vestiges.
14729 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
14730 * src/complain.c (VA_START): Remove. Assume prototypes.
14731 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
14732 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
14733 fatal): Assume prototypes.
14734 * src/complain.h: Assume prototypes.
14735 * src/system.h (PARAMS): Remove.
14736 Include <limits.h> unconditionally, since it's guaranteeed even
14737 for a freestanding C89 compiler.
14738 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
14739 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
14740
14741 2002-10-20 Akim Demaille <akim@epita.fr>
14742
14743 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
14744 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
14745 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
14746 (yyresolveStates, yyresolveAction, yyresolveStack)
14747 (yyprocessOneStack): Use them.
14748 (yy_reduce_print): New.
14749 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
14750
14751 2002-10-20 Akim Demaille <akim@epita.fr>
14752
14753 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
14754 arguments and output `void'.
14755 (b4_c_function): Rename as...
14756 (b4_c_function_def): this.
14757 (b4_c_function_decl, b4_c_ansi_function_def)
14758 (b4_c_ansi_function_decl): New.
14759 Change the interpretation of the arguments: before `int, foo', now
14760 `int foo, foo'.
14761 * data/yacc.c (yyparse): Prototype and define thanks to these.
14762 Adjust b4_c_function_def uses.
14763 * data/glr.c (yyparse): Likewise, but ANSI only.
14764
14765 2002-10-20 Akim Demaille <akim@epita.fr>
14766
14767 * src/output.c (prepare): Move the definition of `tokens_number',
14768 `nterms_number', `undef_token_number', `user_token_number_max'
14769 to...
14770 (prepare_tokens): Here.
14771 (prepare_tokens): Rename as...
14772 (prepare_symbols): this.
14773 (prepare): Move the definition of `rules_number' to...
14774 (prepare_rules): here.
14775 (prepare): Move the definition of `last', `final_state_number',
14776 `states_number' to...
14777 (prepare_states): here.
14778 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
14779
14780 2002-10-20 Akim Demaille <akim@epita.fr>
14781
14782 * src/tables.h, src/tables.c, src/output.c: Comment changes.
14783
14784 2002-10-20 Akim Demaille <akim@epita.fr>
14785
14786 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
14787 * data/c.m4: here.
14788
14789 2002-10-20 Akim Demaille <akim@epita.fr>
14790
14791 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
14792 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
14793 `pair'.
14794 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
14795 `name' to...
14796 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
14797 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
14798 These.
14799
14800 2002-10-19 Paul Eggert <eggert@twinsun.com>
14801
14802 Do not create a temporary file, as that involves security and
14803 cleanup headaches. Instead, use a pair of pipes.
14804 Derived from a suggestion by Florian Krohm.
14805 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
14806 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
14807 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
14808 (BISON_PREREQ_SUBPIPE): Add.
14809 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
14810 Add subpipe.h, subpipe.c.
14811 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
14812 * po/POTFILES.in: Add lib/subpipe.c.
14813 * src/output.c: Include "subpipe.h".
14814 (m4_invoke): Remove decl.
14815 (scan_skel): New decl.
14816 (output_skeleton): Use pipe rather than temporary file for m4 input.
14817 Check that m4sugar.m4 is readable, to avoid deadlock.
14818 Check for pipe I/O error.
14819 * src/scan-skel.l (readpipe): Remove decl.
14820 (scan_skel): New function, to be used in place of m4_invoke.
14821 Read from stream rather than file.
14822
14823 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
14824 float, as this generates a warning on Solaris 8 + GCC 3.2 with
14825 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
14826 this generates a more-accurate value anyway.
14827
14828 * lib/timevar.c (timervar_accumulate): Rename locals to
14829 avoid confusion with similarly-named more-global.
14830 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
14831
14832 * src/output.c (prepare): Use xstrdup to convert char const *
14833 to char *, to avoid GCC warning.
14834
14835 2002-10-19 Akim Demaille <akim@epita.fr>
14836
14837 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
14838 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
14839 Use them to have `calc.y' ready for %pure-parser.
14840 * data/yacc.c (YYLEX): Pass a yylex return type to
14841 b4_c_function_call.
14842
14843 2002-10-19 Akim Demaille <akim@epita.fr>
14844
14845 Prototype support of %lex-param and %parse-param.
14846
14847 * src/parse-gram.y: Add the definition of the %lex-param and
14848 %parse-param tokens, plus their rules.
14849 Drop the `_' version of %glr-parser.
14850 Add the "," token.
14851 * src/scan-gram.l (INITIAL): Scan them.
14852 * src/muscle_tab.c: Comment changes.
14853 (muscle_insert, muscle_find): Rename `pair' as `probe'.
14854 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
14855 (muscle_entry_s): The `value' member is no longer const.
14856 Adjust all dependencies.
14857 * src/muscle_tab.c (muscle_init): Adjust: use
14858 MUSCLE_INSERT_STRING.
14859 Initialize the obstack earlier.
14860 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
14861 (muscle_pair_list_grow): New.
14862 * data/c.m4 (b4_c_function_call, b4_c_args): New.
14863 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
14864 * tests/calc.at: Use %locations, not --locations.
14865 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
14866
14867 2002-10-19 Akim Demaille <akim@epita.fr>
14868
14869 * src/getargs.c (usage): Take status as argument and exit
14870 accordingly.
14871 Report the traditional `Try ... --help' message when status != 0.
14872 (usage, version): Don't take a FILE * as arg, it is pointless.
14873 (getargs): When there is an incorrect number of arguments, make it
14874 an error, and report it GNUlically thanks to `usage ()'.
14875
14876 2002-10-18 Paul Eggert <eggert@twinsun.com>
14877
14878 * data/glr.c (yyreportParseError): Don't assume that sprintf
14879 yields the length of the printed string, as this is not true
14880 on SunOS 4.1.4. Reported by Peter Klein.
14881
14882 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
14883 * tests/conflicts.at (%nonassoc and eof): Likewise.
14884 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
14885
14886 2002-10-17 Akim Demaille <akim@epita.fr>
14887
14888 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
14889 * src/getargs.c (trace_types, trace_args): Adjust.
14890 * src/reader.c (grammar_current_rule_prec_set)
14891 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
14892 Standardize error messages.
14893 And s/@prec/%prec/!
14894 (reader): Use trace_flag to enable scanner/parser debugging,
14895 instead of an adhoc scheme.
14896 * src/scan-gram.l: Remove trailing debugging code.
14897
14898 2002-10-16 Paul Eggert <eggert@twinsun.com>
14899
14900 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
14901 MUSCLE_TAB_H.
14902
14903 * NEWS: Officially drop support for building Bison with K&R C,
14904 since it didn't work anyway and it's not worth worrying about.
14905 * Makefile.maint (wget_files): Remove ansi2knr.c.
14906 (ansi2knr.c-url_prefix): Remove.
14907 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
14908 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
14909 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
14910
14911 2002-10-15 Paul Eggert <eggert@twinsun.com>
14912
14913 Stop using the "enum_" trick for K&R-style function definitions;
14914 it confused me, and I was the author! Instead, assume that people
14915 who want to use K&R C compilers (when using these modules in GCC,
14916 perhaps?) will run ansi2knr.
14917
14918 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
14919 All uses of "enum_" changed to "enum ".
14920 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
14921 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
14922
14923 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
14924 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
14925 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
14926 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
14927 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
14928 abitset_not, abitset_ones, abitset_or, abitset_or_and,
14929 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
14930 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
14931 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
14932 Use function prototypes; this removes the need for declaring
14933 static functions simply to provide their prototypes.
14934 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
14935 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
14936 bitset_count_, bitset_create, bitset_dump, bitset_first,
14937 bitset_free, bitset_init, bitset_last, bitset_next,
14938 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
14939 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
14940 bitset_print, bitset_release_memory, bitset_toggle_,
14941 bitset_type_choose, bitset_type_get, bitset_type_name_get,
14942 debug_bitset): Likewise.
14943 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
14944 * lib/bitset_stats.c (bitset_log_histogram_print,
14945 bitset_percent_histogram_print, bitset_stats_and,
14946 bitset_stats_and_cmp, bitset_stats_and_or,
14947 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
14948 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
14949 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
14950 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
14951 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
14952 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
14953 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
14954 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
14955 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
14956 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
14957 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
14958 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
14959 bitset_stats_zero): Likewise.
14960 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
14961 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
14962 bitsetv_dump, debug_bitsetv): Likewise.
14963 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
14964 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
14965 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
14966 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
14967 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
14968 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
14969 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
14970 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
14971 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
14972 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
14973 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
14974 Likewise.
14975 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
14976 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
14977 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
14978 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
14979 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
14980 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
14981 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
14982 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
14983 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
14984 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
14985 lbitset_xor_cmp, lbitset_zero): Likewise.
14986
14987 2002-10-14 Akim Demaille <akim@epita.fr>
14988
14989 Version 1.75.
14990
14991 2002-10-14 Akim Demaille <akim@epita.fr>
14992
14993 * tests/Makefile.am (maintainer-check-posix): New.
14994
14995 2002-10-14 Akim Demaille <akim@epita.fr>
14996
14997 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
14998 member.
14999
15000 2002-10-14 Akim Demaille <akim@epita.fr>
15001
15002 * src/tables.c (table_ninf_remap): base -> tab.
15003 Reported by Matt Rosing.
15004
15005 2002-10-14 Paul Eggert <eggert@twinsun.com>
15006
15007 * tests/action.at, tests/calc.at, tests/conflicts.at,
15008 tests/cxx-type.at, tests/headers.at, tests/input.at,
15009 tests/regression.at, tests/synclines.at, tests/torture.at:
15010 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
15011 so that the tests still work even if POSIXLY_CORRECT is set.
15012 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
15013
15014 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
15015 for portability to K&R hosts. Fix typo: signed char is guaranteed
15016 only to 127, not to 128.
15017 * data/glr.c (yysigned_char): New type.
15018 * data/yacc.c (yysigned_char): Likewise.
15019 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
15020
15021 2002-10-13 Paul Eggert <eggert@twinsun.com>
15022
15023 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
15024 true due to limited range of data type" warning from GCC.
15025
15026 * data/c.m4 (b4_token_defines): Protect against double-inclusion
15027 by wrapping enum yytokentype's definition inside #ifndef
15028 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
15029
15030 2002-10-13 Akim Demaille <akim@epita.fr>
15031
15032 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
15033 Un yy- yyrhs to avoid the name clash with the global YYRHS.
15034
15035 2002-10-13 Akim Demaille <akim@epita.fr>
15036
15037 * Makefile.maint: Update from Autoconf 2.54.
15038 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
15039
15040 2002-10-13 Akim Demaille <akim@epita.fr>
15041
15042 * src/print.c (print_state): Separate the list of solved conflicts
15043 from the other items.
15044 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
15045
15046 2002-10-13 Akim Demaille <akim@epita.fr>
15047
15048 Let nondeterministic skeletons be usable with deterministic
15049 tables.
15050
15051 With the patch, GAWK compiled by GCC without -O2 passes its test
15052 suite using a GLR parser driven by LALR tables. It fails with -O2
15053 because `struct stat' gives two different answers on my machine:
15054 88 (definition of an auto var) and later 96 (memset on this var).
15055 Hence the stack is badly corrumpted. The headers inclusion is to
15056 blame: if I move the awk.h inclusion before GLR's system header
15057 inclusion, the two struct stat have the same size.
15058
15059 * src/tables.c (pack_table): Always create conflict_table.
15060 (token_actions): Always create conflict_list.
15061 * data/glr.c (YYFLAG): Remove, unused.
15062
15063 2002-10-13 Akim Demaille <akim@epita.fr>
15064
15065 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
15066 (O0FLAGS): New.
15067 (VALGRIND, GXX): New.
15068 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
15069 * tests/bison.in: Run $PREBISON a pre-command.
15070 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
15071 (maintainer-check-g++): New.
15072 * Makefile.am (maintainer-check): New.
15073
15074 2002-10-13 Akim Demaille <akim@epita.fr>
15075
15076 * data/glr.c: Formatting changes.
15077 Tweak some trace messages to match yacc.c's.
15078
15079 2002-10-13 Akim Demaille <akim@epita.fr>
15080
15081 GLR parsers sometimes raise parse errors instead of performing the
15082 default reduction.
15083 Reported by Charles-Henry de Boysson.
15084
15085 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
15086 check the length of the traces when %glr.
15087 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
15088 GLR's traces.
15089 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
15090 Test GLR parsers.
15091 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
15092 (yyltype): Remove the yy prefix from the member names.
15093 (yytable): Complete its comment.
15094 (yygetLRActions): Map error action number from YYTABLE from
15095 YYTABLE_NINF to 0.
15096 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
15097 (which was a bug: it should have been YYTABEL_NINF, and yet it was
15098 not satisfying as we could compare an YYACTION computed from
15099 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
15100 only value for error actions.
15101 (yyreportParseError): In verbose parse error messages, don't issue
15102 `error' in the list of expected tokens.
15103 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
15104 next action to perform to match glr.c's decoding.
15105 (yytable): Complete its comment.
15106
15107 2002-10-13 Paul Eggert <eggert@twinsun.com>
15108
15109 Fix problem reported by Henrik Grubbstroem in
15110 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
15111 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
15112 because the Bison parser reads the second action before reducing
15113 the first one.
15114 * src/scan-gram.l (rule_length): New static var.
15115 Use it to keep track of the rule length in the scanner, since
15116 we can't expect the parser to be in lock-step sync with the scanner.
15117 (handle_action_dollar, handle_action_at): Use this var.
15118 * tests/actions.at (Exotic Dollars): Test for the problem.
15119
15120 2002-10-12 Paul Eggert <eggert@twinsun.com>
15121
15122 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
15123 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
15124 Include <sys/time.h> when checking for clock_t and struct tms.
15125 Use same include order as source.
15126 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
15127 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
15128
15129 * lib/timevar.c: Update copyright date and clarify comments.
15130 (get_time) [IN_GCC]: Keep the GCC version for reference.
15131
15132 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
15133 GCC version as of today, then merge Bison's changes.
15134 Change "GCC" to "Bison" in copyright notice. timevar.def's
15135 author is Akim, so change that too.
15136
15137 * src/reader.c (grammar_current_rule_check):
15138 Don't worry about the default action if $$ is untyped.
15139 Prevents bogus warnings reported by Jim Gifford in
15140 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
15141
15142 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
15143 * data/glr.c, data/lalr1.cc, data/yacc.c:
15144 Output token definitions before the first part of user declarations.
15145 Fixes compatibility problem reported by Jim Gifford for kbd in
15146 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
15147
15148 2002-10-11 Paul Eggert <eggert@twinsun.com>
15149
15150 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
15151 (yyparse): here. This undoes some of the 2002-07-25 change.
15152 Compatibility problem reported by Ralf S. Engelschall with
15153 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
15154
15155 2002-10-11 Akim Demaille <akim@epita.fr>
15156
15157 * tests/regression.at Characters Escapes): New.
15158 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
15159 characters.
15160 Reported by Jan Nieuwenhuizen.
15161
15162 2002-10-11 Akim Demaille <akim@epita.fr>
15163
15164 * po/id.po: New.
15165
15166 2002-10-10 Paul Eggert <eggert@twinsun.com>
15167
15168 Portability fixes for bitsets; this also avoids several GCC
15169 warnings.
15170
15171 * lib/abitset.c: Include <stddef.h>, for offsetof.
15172 * lib/lbitset.c: Likewise.
15173
15174 * lib/abitset.c (abitset_bytes): Return a size that is aligned
15175 properly for vectors of objects. Do not assume that adding a
15176 header size to a multiple of a word size yields a value that is
15177 properly aligned for the whole union.
15178 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15179
15180 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
15181 unique names for structures.
15182 * lib/ebitset.c (ebitset_bytes): Likewise.
15183 * lib/lbitset.c (lbitset_bytes): Likewise.
15184
15185 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
15186 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
15187 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
15188 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
15189 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
15190 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
15191 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
15192 to improve the type-checking that GCC can do.
15193 * lib/bitset.c (bitset_op4_cmp): Likewise.
15194 * lib/bitset_stats.c (bitset_stats_count,
15195 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
15196 bitset_stats_copy, bitset_stats_disjoint_p,
15197 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
15198 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
15199 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
15200 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
15201 bitset_stats_and_or_cmp, bitset_stats_andn_or,
15202 bitset_stats_andn_or_cmp, bitset_stats_or_and,
15203 bitset_stats_or_and_cmp): Likewise.
15204 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
15205 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
15206 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
15207 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
15208
15209 * lib/abitset.h: Include bitset.h, not bbitset.h.
15210 * lib/ebitset.h: Likewise.
15211 * lib/lbitset.h: Likewise.
15212
15213 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
15214 All instances of parameters of type enum bitset_opts are now of
15215 type enum_bitset_opts, to conform to the C Standard, and similarly
15216 for enum_bitset_type.
15217 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15218 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
15219
15220 Do not use "struct bitset_struct" to mean different things in
15221 different modules. Not only is this confusing, it violates
15222 the C Standard, which requires that structure types in different
15223 modules must be compatible if one is to be passed to the other.
15224 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
15225 All instances of "struct bitset_struct *" replaced with "bitset".
15226 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
15227 (union bitset_union, struct abitset_struct, struct ebitset_struct,
15228 struct lbitset_struct, struct bitset_stats_struct): New types.
15229 All uses of struct bitset_struct changed to union bitset_union,
15230 etc.
15231 * lib/abitset.c (struct abitset_struct, abitset,
15232 struct bitset_struct): Remove.
15233 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
15234 struct bitset_struct): Remove.
15235 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
15236 bitset_struct): Remove.
15237 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
15238 Likewise.
15239
15240 Do not call a function of type T using a call that assumes the
15241 function is of a different type U. Standard C requires that a
15242 function must be called with a type that is compatible with its
15243 definition.
15244 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15245 New decls.
15246 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15247 New functions.
15248 * lib/ebitset.c (PFV): Remove.
15249 * lib/lbitset.c (PFV): Likewise.
15250 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
15251 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
15252 decls.
15253 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
15254 (ebitset_vtable): Use them.
15255 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
15256 lbitset_xor): New functions.
15257 (lbitset_vtable): Use them.
15258
15259 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
15260 Declare.
15261
15262 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
15263 GCC warning.
15264 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
15265 Use offsetof, for simplicity.
15266
15267 2002-10-06 Paul Eggert <eggert@twinsun.com>
15268
15269 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
15270 the same width as int. This reapplies a hunk of the 2002-08-12 patch
15271 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
15272 which was inadvertently undone by the 2002-09-30 patch.
15273 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
15274 the same width as int.
15275
15276 2002-10-04 Paul Eggert <eggert@twinsun.com>
15277
15278 Version 1.50.
15279
15280 * configure.ac (AC_INIT), NEWS: Increment version number.
15281
15282 * doc/bison.texinfo: Minor spelling, grammar, and white space
15283 fixes.
15284 (Symbols): Mention that any negative value returned from yylex
15285 signifies end-of-input. Warn about negative chars. Mention
15286 the portable Standard C character set.
15287
15288 The GNU coding standard says CFLAGS and YFLAGS are reserved
15289 for the installer to set.
15290 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
15291 * src/Makefile.am (AM_CFLAGS): Likewise.
15292 (AM_YFLAGS): Renamed from YFLAGS.
15293
15294 Fix some MAX and MIN problems.
15295 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
15296 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
15297 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
15298 * src/reader.c (reader): Use it.
15299
15300 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
15301 POSIX 1003.1-2001 has removed fgrep.
15302
15303 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15304
15305 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
15306 interpreted as signed.
15307 * lib/ebitset.c (ebitset_list): Fix bug.
15308
15309 2002-10-01 Paul Eggert <eggert@twinsun.com>
15310
15311 More fixes for 64-bit hosts and large bitsets.
15312
15313 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
15314 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
15315 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
15316 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
15317 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
15318 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
15319 bitset_count_): Likewise.
15320 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
15321 bitset_first, bitset_last): Likewise.
15322 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
15323 bitset_stats_list_reverse, bitset_stats_size,
15324 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
15325 Likewise.
15326 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15327 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15328 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15329 bitsetv_reflexive_transitive_closure): Likewise.
15330 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
15331 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
15332 Likewise.
15333 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
15334 Likewise.
15335
15336 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
15337 Use size_t, not unsigned int, to count bytes.
15338 * lib/abitset.h (abitset_bytes): Likewise.
15339 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
15340 Likewise.
15341 * lib/bitset.h (bitset_bytes): Likewise.
15342 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
15343 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
15344 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15345 * lib/ebitset.c (ebitset_bytes): Likewise.
15346 * lib/ebitset.h (ebitset_bytes): Likewise.
15347 * lib/lbitset.c (lbitset_bytes): Likewise.
15348 * lib/lbitset.h (lbitset_bytes): Likewise.
15349
15350 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
15351 abitset_subset_p, abitset_disjoint_p, abitset_and,
15352 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
15353 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
15354 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
15355 abitset_or_and, abitset_or_and_cmp):
15356 Use bitset_windex instead of unsigned int.
15357 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15358 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
15359 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
15360 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
15361 Likewise.
15362 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
15363
15364 * lib/bitset.c (bitset_print):
15365 Use proper printf formats for widths of integer types.
15366 * lib/bitset_stats.c (bitset_percent_histogram_print,
15367 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
15368 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15369 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15370 * lib/lbitset.c (lbitset_bytes): Likewise.
15371
15372 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
15373 BITSET_SIZE_MAX): New macros.
15374 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
15375 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
15376 to BITSET_WINDEX_MAX.
15377
15378 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
15379 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
15380 since we now return the bitset_bindex type (not int).
15381
15382 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
15383 when computing sizes.
15384 * lib/ebitset.c (ebitset_elts_grow): Likewise.
15385
15386 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
15387 and avoid cast to unsigned.
15388
15389 2002-09-30 Akim Demaille <akim@epita.fr>
15390
15391 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
15392 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
15393 Updates from Michael Hayes.
15394
15395 2002-09-30 Art Haas <ahaas@neosoft.com>
15396
15397 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
15398 invocations.
15399 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
15400 defined.
15401
15402 2002-09-27 Akim Demaille <akim@epita.fr>
15403
15404 Version 1.49c.
15405
15406 2002-09-27 Akim Demaille <akim@epita.fr>
15407
15408 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
15409 (Because of AC_LIBSOURCE).
15410
15411 2002-09-27 Akim Demaille <akim@epita.fr>
15412
15413 Playing with Autoscan.
15414
15415 * configure.ac: Remove the old LIBOBJ tweaks.
15416 (AC_REPLACE_FUNCS): Add strrchr and strtol.
15417 * lib/strrchr.c: New.
15418 * lib/strtol.c: New, from the Coreutils 4.5.1.
15419
15420 2002-09-27 Akim Demaille <akim@epita.fr>
15421
15422 Playing with Autoscan.
15423
15424 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
15425 * lib/Makefile.am (libbison_a_SOURCES): No longer include
15426 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
15427 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
15428 Coreutils 4.5.1.
15429
15430 2002-09-24 Akim Demaille <akim@epita.fr>
15431
15432 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
15433 (Frequently Asked Questions, Parser Stack Overflow): New.
15434
15435 2002-09-13 Akim Demaille <akim@epita.fr>
15436
15437 Playing with autoscan.
15438
15439 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
15440 * src/files.c (skeleton_find): Remove, unused.
15441 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
15442 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
15443
15444 2002-09-13 Akim Demaille <akim@epita.fr>
15445
15446 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
15447 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
15448
15449 2002-09-13 Akim Demaille <akim@epita.fr>
15450
15451 * configure.ac: Require 2.54.
15452 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
15453 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
15454 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
15455 Remove, provided by Autoconf macros.
15456
15457 2002-09-12 Akim Demaille <akim@epita.fr>
15458
15459 * m4/prereq.m4: Update, from Coreutils 4.5.1.
15460
15461 2002-09-12 Akim Demaille <akim@epita.fr>
15462
15463 * m4/prereq.m4: Update, from Fileutils 4.1.5.
15464 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
15465 Reported by Martin Mokrejs.
15466
15467 2002-09-10 Akim Demaille <akim@epita.fr>
15468
15469 * src/parse-gram.y: Associate a human readable string to each
15470 token type.
15471 * tests/regression.at (Invalid inputs): Adjust.
15472
15473 2002-09-10 Gary V. Vaughan <gary@gnu.org>
15474
15475 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
15476 with an Autoconf-2.5x style configure.ac.
15477
15478 2002-09-06 Paul Eggert <eggert@twinsun.com>
15479
15480 * doc/bison.texinfo (Conditions): Make explicit that the GPL
15481 exception applies only to yacc.c. This is a modification of a
15482 patch originally suggested by Akim Demaille.
15483
15484 2002-09-06 Akim Demaille <akim@epita.fr>
15485
15486 * data/c.m4 (b4_copyright): Move the GPL exception comment from
15487 here to...
15488 * data/yacc.c: here.
15489
15490 * data/lalr1.cc (struct yyltype): Don't define it, since we use
15491 LocationType.
15492 (b4_ltype): Default to yy::Location from location.hh.
15493
15494 2002-09-04 Jim Meyering <jim@meyering.net>
15495
15496 * data/yacc.c: Guard the declaration of yytoknum also with
15497 `#ifdef YYPRINT', so it is declared only when used.
15498
15499 2002-09-04 Akim Demaille <akim@epita.fr>
15500
15501 * configure.in: Rename as...
15502 * configure.ac: this.
15503 Bump to 1.49c.
15504
15505 2002-09-04 Akim Demaille <akim@epita.fr>
15506
15507 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
15508 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
15509 translate maintainer only messages.
15510
15511 2002-08-12 Paul Eggert <eggert@twinsun.com>
15512
15513 Version 1.49b.
15514
15515 * Makefile.am (SUBDIRS): Remove intl.
15516 (DISTCLEANFILES): Remove.
15517 * NEWS: Mention that GNU M4 is now required. Clarify what is
15518 meant by "larger grammars". Mention the pt_BR translation.
15519 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
15520 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
15521 Bump version from 0.11.2 to 0.11.5.
15522 (BISON_PREREQ_STAGE): Remove.
15523 (AM_GNU_GETTEXT): Use external gettext.
15524 (AC_OUTPUT): Remove intl/Makefile.
15525
15526 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
15527
15528 * data/glr.c: Include string.h, for strlen.
15529 (yyreportParseError): Use size_t for yysize.
15530 (yy_yypstack): No longer nested inside yypstates, as nested
15531 functions are not portable. Do not assume size_t is the
15532 same width as int.
15533 (yypstates): Do not assume that ptrdiff_t is the same width
15534 as int, and similarly for yyposn and YYINDEX.
15535
15536 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
15537
15538 * lib/Makefile.am (INCLUDES): Do not include from the intl
15539 directory, which has been removed.
15540 * src/Makefile.am (INCLUDES): Likewise.
15541
15542 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
15543 (bitsets_sources, additional_bitsets_sources, timevars_sources):
15544 New vars.
15545
15546 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
15547 * tests/Makefile.am (EXTRA_DIST): Likewise.
15548
15549 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
15550 Do not assume that bitset_windex is the same width as unsigned.
15551
15552 * lib/abitset.c (abitset_unused_clear): Do not assume that
15553 bitset_word is the same width as int.
15554 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
15555 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
15556 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
15557 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
15558 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
15559
15560 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
15561 portability to one's complement hosts!).
15562 * lib/ebitset.c (ebitset_op1): Likewise.
15563 * lib/lbitset.c (lbitset_op1): Likewise.
15564
15565 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
15566 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
15567 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
15568 Sync with fileutils.
15569 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
15570 lib/gettext.h: Sync with diffutils.
15571
15572 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
15573 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
15574
15575 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
15576 PROTOTYPES to check for prototypes, and "defined __STDC__" to
15577 check for void *.
15578
15579 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
15580 size_t; the old version tried to do this but casted improperly.
15581 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
15582 (bitset_test): Now returns int, not unsigned long.
15583
15584 * lib/bitset_stats.c: Include "gettext.h".
15585 (_): New macro.
15586 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
15587 name locals "index", as it generates unnecessary warnings on some
15588 hosts that have an "index" function.
15589
15590 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
15591 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
15592 they need translation.
15593 * src/LR0.c (state_list_append, new_itemsets, get_state,
15594 append_states, generate_states): Likewise.
15595 * src/assoc.c (assoc_to_string): Likewise.
15596 * src/closure.c (print_closure, set_firsts, closure): Likewise.
15597 * src/gram.c (grammar_dump): Likewise.
15598 * src/injections.c (injections_compute): Likewise.
15599 * src/lalr.c (lookaheads_print): Likewise.
15600 * src/relation.c (relation_transpose): Likewise.
15601 * src/scan-gram.l: Likewise.
15602 * src/tables.c (table_grow, pack_vector): Likewise.
15603
15604 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
15605 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
15606 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
15607 * m4/mbstate_t.m4: Sync with fileutils.
15608 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
15609
15610 * po/LINGUAS: Add pt_BR.
15611 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
15612 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
15613 lib/timevar.c.
15614 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
15615 manual recommends.
15616 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
15617
15618 * src/complain.c (strerror_r): Remove decl; not needed.
15619 (strerror): Use same pattern as ../lib/error.c.
15620
15621 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
15622
15623 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
15624
15625 * src/main.c (main): Cast result of bindtextdomain and textdomain
15626 to void, to avoid a GCC warning when --disable-nls is in effect.
15627
15628 * src/scan-gram.l: Use strings rather than escapes when possible,
15629 to minimize the number of warnings from xgettext.
15630 (handle_action_dollar, handle_action_at): Don't use isdigit,
15631 as it mishandles negative chars and it may not work as expected
15632 outside the C locale.
15633
15634 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
15635 this is a GCC extension and is not portable to other compilers.
15636
15637 * src/system.h (alloca): Use same pattern as ../lib/error.c.
15638 Do not include <ctype.h>; no longer needed.
15639 Do not include <malloc.h>; no longer needed (and generates
15640 warnings on OpenBSD 3.0).
15641
15642 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
15643 it's not portable.
15644
15645 * tests/regression.at: Do not use 'cc -c input.c -o input';
15646 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
15647
15648 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
15649 exit status as failure, not just exit status 1. Sun C exits
15650 with status 2 sometimes.
15651
15652 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
15653 Use it for the two large tests.
15654
15655 2002-08-02 Akim Demaille <akim@epita.fr>
15656
15657 * src/conflicts.c (conflicts_output): Don't output rules never
15658 reduced here, since anyway that computation doesn't work.
15659 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
15660 (rule_useless_p, rule_never_reduced_p): New.
15661 (grammar_rules_partial_print): Use a filter instead of a range.
15662 Display the title only if needed.
15663 (grammar_rules_print): Adjust.
15664 (grammar_rules_never_reduced_report): New.
15665 * src/tables.c (action_row): Move the computation of rules never
15666 reduced to...
15667 (token_actions): here.
15668 * src/main.c (main): Make the parser before making the report, so
15669 that rules never reduced are computed.
15670 Call grammar_rules_never_reduced_report.
15671 * src/print.c (print_results): Report rules never reduced.
15672 * tests/conflicts.at, tests/reduce.at: Adjust.
15673
15674 2002-08-01 Akim Demaille <akim@epita.fr>
15675
15676 Instead of attaching lookaheads and duplicating the rules being
15677 reduced by a state, attach the lookaheads to the reductions.
15678
15679 * src/state.h (state_t): Remove the `lookaheads',
15680 `lookaheads_rule' member.
15681 (reductions_t): Add a `lookaheads' member.
15682 Use a regular array for the `rules'.
15683 * src/state.c (reductions_new): Initialize the lookaheads member
15684 to 0.
15685 (state_rule_lookaheads_print): Adjust.
15686 * src/state.h, src/state.c (state_reductions_find): New.
15687 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
15688 (count_rr_conflicts): Adjust.
15689 * src/lalr.c (LArule): Remove.
15690 (add_lookback_edge): Adjust.
15691 (state_lookaheads_count): New.
15692 (states_lookaheads_initialize): Merge into...
15693 (initialize_LA): this.
15694 (lalr_free): Adjust.
15695 * src/main.c (main): Don't free nullable and derives too early: it
15696 is used by --verbose.
15697 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
15698
15699 2002-08-01 Akim Demaille <akim@epita.fr>
15700
15701 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
15702 `rule_number_t**'.
15703 (set_derives, free_derives): Rename as...
15704 (derives_compute, derives_free): this.
15705 Adjust all dependencies.
15706 * src/nullable.c (set_nullable, free_nullable): Rename as...
15707 (nullable_compute, nullable_free): these.
15708 (rule_list_t): Store rule_t *, not rule_number_t.
15709 * src/state.c (state_rule_lookaheads_print): Directly compare rule
15710 pointers, instead of their numbers.
15711 * src/main.c (main): Call nullable_free, and derives_free earlier,
15712 as they were lo longer used.
15713
15714 2002-08-01 Akim Demaille <akim@epita.fr>
15715
15716 * lib/timevar.c (get_time): Include children time.
15717 * src/lalr.h (LA, LArule): Don't export them: used with the
15718 state_t.
15719 * src/lalr.c (LA, LArule): Static.
15720 * src/lalr.h, src/lalr.c (lalr_free): New.
15721 * src/main.c (main): Call it.
15722 * src/tables.c (pack_vector): Check whether loc is >= to the
15723 table_size, not >.
15724 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
15725 (tables_generate): do it, since that's also it which allocates
15726 them.
15727 Don't free LA and LArule, main does.
15728
15729 2002-07-31 Akim Demaille <akim@epita.fr>
15730
15731 Separate parser tables computation and output.
15732
15733 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
15734 (conflict_list, conflict_list_cnt, table, check, table_ninf)
15735 (yydefgoto, yydefact, high): Move to...
15736 * src/tables.h, src/tables.c: here.
15737 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
15738 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
15739 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
15740 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
15741 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
15742 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
15743 (action_row, save_row, token_actions, save_column, default_goto)
15744 (goto_actions, sort_actions, matching_state, pack_vector)
15745 (table_ninf_remap, pack_table, prepare_actions): Move to...
15746 * src/tables.c: here.
15747 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
15748 * src/output.c (token_actions, output_base, output_conflicts)
15749 (output_check): Merge into...
15750 (prepare_actions): this.
15751 (actions_output): Rename as...
15752 (user_actions_output): this.
15753 * src/main.c (main): Call tables_generate and tables_free.
15754
15755 2002-07-31 Akim Demaille <akim@epita.fr>
15756
15757 Steal GCC's --time-report support.
15758
15759 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
15760 stolen/adjusted from GCC.
15761 * m4/stage.m4: Remove time related checks.
15762 * m4/timevar.m4: New.
15763 * configure.in: Adjust.
15764 * src/system.h: Adjust to using timevar.h.
15765 * src/getargs.h, src/getargs.c: Support trace_time for
15766 --trace=time.
15767 * src/main.c (stage): Remove.
15768 (main): Replace `stage' invocations with timevar calls.
15769 * src/output.c: Insert pertinent timevar calls.
15770
15771 2002-07-31 Akim Demaille <akim@epita.fr>
15772
15773 Let --trace have arguments.
15774
15775 * src/getargs.h (enum trace_e): New.
15776 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
15777 (long_options, short_options): --trace/-T takes an optional
15778 argument.
15779 Change all the uses of trace_flag to reflect the new flags.
15780 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
15781
15782 Strengthen `stage' portability.
15783
15784 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
15785 * configure.in: Use it.
15786 Don't check for malloc.h and sys/times.h.
15787 * src/system.h: Include them when appropriate.
15788 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
15789 times and struct tms are available.
15790
15791 2002-07-30 Akim Demaille <akim@epita.fr>
15792
15793 In verbose parse error message, don't report `error' as an
15794 expected token.
15795 * tests/actions.at (Printers and Destructors): Adjust.
15796 * tests/calc.at (Calculator $1): Adjust.
15797 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
15798 error message, do not report the parser accepts the error token in
15799 that state.
15800
15801 2002-07-30 Akim Demaille <akim@epita.fr>
15802
15803 Normalize conflict related messages.
15804
15805 * src/complain.h, src/complain.c (warn, complain): New.
15806 * src/conflicts.c (conflicts_print): Use them.
15807 (conflict_report_yacc): New, extracted from...
15808 (conflicts_print): here.
15809 * tests/conflicts.at, tests/existing.at: Adjust.
15810
15811 2002-07-30 Akim Demaille <akim@epita.fr>
15812
15813 Report rules which are never reduced by the parser: those hidden
15814 by conflicts.
15815
15816 * src/LR0.c (save_reductions): Don't make the final state too
15817 different: save its reduction (accept) instead of having a state
15818 without any action (no shift or goto, no reduce).
15819 Note: the final state is now a ``regular'' state, i.e., the
15820 parsers now contain `reduce 0' as default reduction.
15821 Nevertheless, since they decide to `accept' when yystate =
15822 final_state, they still will not reduce rule 0.
15823 * src/print.c (print_actions, print_reduction): Adjust.
15824 * src/output.c (action_row): Track reduced rules.
15825 (token_actions): Report rules never reduced.
15826 * tests/conflicts.at, tests/regression.at: Adjust.
15827
15828 2002-07-30 Akim Demaille <akim@epita.fr>
15829
15830 `stage' was accidently included in a previous patch.
15831 Initiate its autoconfiscation.
15832
15833 * configure.in: Look for malloc.h and sys/times.h.
15834 * src/main.c (stage): Adjust.
15835 Report only when trace_flag.
15836
15837 2002-07-29 Akim Demaille <akim@epita.fr>
15838
15839 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
15840 state_number_t.
15841 (errs_t): symbol_t*, not symbol_number_t.
15842 (reductions_t): rule_t*, not rule_number_t.
15843 (FOR_EACH_SHIFT): New.
15844 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
15845 * src/print.c, src/print_graph.c: Adjust.
15846
15847 2002-07-29 Akim Demaille <akim@epita.fr>
15848
15849 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
15850
15851 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
15852 (endtoken, accept): these.
15853 * src/reader.c (reader): Set endtoken's default tag to "$end".
15854 Set undeftoken's tag to "$undefined" instead of "$undefined.".
15855 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
15856 Adjust.
15857
15858 2002-07-29 Akim Demaille <akim@epita.fr>
15859
15860 * src/reduce.c (reduce_grammar): When the language is empty,
15861 complain about the start symbol, not the axiom.
15862 Use its location.
15863 * tests/reduce.at (Empty Language): New.
15864
15865 2002-07-26 Akim Demaille <akim@epita.fr>
15866
15867 * src/reader.h, src/reader.c (gram_error): ... can't get
15868 yycontrol without making too strong assumptions on the parser
15869 itself.
15870 * src/output.c (prepare_tokens): Use the real 0th value of
15871 token_translations instead of `0'.
15872 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
15873 visible here.
15874 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
15875 for the time being: %locations ought to provide it to yyerror.
15876
15877 2002-07-25 Akim Demaille <akim@epita.fr>
15878
15879 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
15880 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
15881 * tests/regression.at (Web2c Actions): Adjust.
15882
15883 2002-07-25 Akim Demaille <akim@epita.fr>
15884
15885 Stop storing rules from 1 to nrules + 1.
15886
15887 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
15888 * src/nullable.c, src/output.c, src/print.c, src/reader.c
15889 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
15890 Iterate from 0 to nrules.
15891 Use rule_number_as_item_number and item_number_as_rule_number.
15892 Adjust to `derive' now containing possibly 0.
15893 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
15894 Handle the `- 1' part in rule numbers from/to item numbers.
15895 * src/conflicts.c (log_resolution): Fix the message which reversed
15896 shift and reduce.
15897 * src/output.c (action_row): Initialize default_rule to -1.
15898 (token_actions): Adjust.
15899 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
15900 expected output.
15901 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
15902
15903 2002-07-25 Akim Demaille <akim@epita.fr>
15904
15905 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
15906 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
15907 (b4_c_knr_arg_decl): New.
15908 * data/yacc.c: Use it to define yysymprint, yydestruct, and
15909 yyreport_parse_error.
15910
15911 2002-07-25 Akim Demaille <akim@epita.fr>
15912
15913 * data/yacc.c (yyreport_parse_error): New, extracted from...
15914 (yyparse): here.
15915 (yydestruct, yysymprint): Move above yyparse.
15916 Be K&R compliant.
15917
15918 2002-07-25 Akim Demaille <akim@epita.fr>
15919
15920 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
15921 replace...
15922 (b4_sint_type, b4_uint_type): these.
15923 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
15924 * tests/regression.at (Web2c Actions): Adjust.
15925
15926 2002-07-25 Akim Demaille <akim@epita.fr>
15927
15928 * src/gram.h (TIEM_NUMBER_MAX): New.
15929 (item_number_of_rule_number, rule_number_of_item_number): Rename
15930 as...
15931 (rule_number_as_item_number, item_number_as_rule_number): these.
15932 Adjust dependencies.
15933 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
15934 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
15935 (symbol_number_to_vector_number): New.
15936 (order): Of vector_number_t* type.
15937 (base_t, BASE_MAX, BASE_MIN): New.
15938 (froms, tos, width, pos, check): Of base_t type.
15939 (action_number_t, ACTION_MIN, ACTION_MAX): New.
15940 (actrow): Of action_number_t type.
15941 (conflrow): Of unsigned int type.
15942 (table_ninf, base_ninf): New.
15943 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
15944 (muscle_insert_int_table, muscle_insert_base_table)
15945 (muscle_insert_rule_number_table): New.
15946 (prepare_tokens): Output `toknum' as int_table.
15947 (action_row): Returns a rule_number_t.
15948 Use ACTION_MIN, not SHRT_MIN.
15949 (token_actions): yydefact is rule_number_t*.
15950 (table_ninf_remap): New.
15951 (pack_table): Use it for `base' and `table'.
15952 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
15953 replaced with...
15954 (YYPACT_NINF, YYTABLE_NINF): these.
15955 (yypact, yytable): Compute their types instead of hard-coded
15956 `short'.
15957 * tests/regression.at (Web2c Actions): Adjust.
15958
15959 2002-07-19 Akim Demaille <akim@epita.fr>
15960
15961 * src/scan-gram.l (id): Can start with an underscore.
15962
15963 2002-07-16 Akim Demaille <akim@epita.fr>
15964
15965 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
15966 Adjust all former `associativity' dependencies.
15967 * src/symtab.c (symbol_new): Default associativity is `undef', not
15968 `right'.
15969 (symbol_check_alias_consistence): Adjust.
15970
15971 2002-07-09 Akim Demaille <akim@epita.fr>
15972
15973 * doc/bison.texinfo: Properly set the ``header'' part.
15974 Use @dircategory ``GNU programming tools'' as per Texinfo's
15975 documentation.
15976 Use @copying.
15977
15978 2002-07-09 Akim Demaille <akim@epita.fr>
15979
15980 * lib/quotearg.h: Protect against multiple inclusions.
15981 * src/location.h (location_t): Add a `file' member.
15982 (LOCATION_RESET, LOCATION_PRINT): Adjust.
15983 * src/complain.c (warn_at, complain_at, fatal_at): Drop
15984 `error_one_per_line' support.
15985
15986 2002-07-09 Akim Demaille <akim@epita.fr>
15987
15988 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
15989 * src/reader.c (lineno): Remove.
15990 Adjust all dependencies.
15991 (get_merge_function): Take a location and use complain_at.
15992 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
15993 * tests/regression.at (Invalid inputs, Mixing %token styles):
15994 Adjust.
15995
15996 2002-07-09 Akim Demaille <akim@epita.fr>
15997
15998 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
15999 recovery rule, and forbid extensions when --yacc.
16000 (gram_error): Use complain_at.
16001 * src/reader.c (reader): Exit if there were parse errors.
16002
16003 2002-07-09 Akim Demaille <akim@epita.fr>
16004
16005 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
16006 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
16007 Reported by R Blake <blakers@mac.com>.
16008
16009 2002-07-09 Akim Demaille <akim@epita.fr>
16010
16011 * data/yacc.c: Output the copyright notive in the header.
16012
16013 2002-07-03 Akim Demaille <akim@epita.fr>
16014
16015 * src/output.c (froms, tos): Are state_number_t.
16016 (save_column): sp, sp1, and sp2 are state_number_t.
16017 (prepare): Rename `final' as `final_state_number', `nnts' as
16018 `nterms_number', `nrules' as `rules_number', `nstates' as
16019 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
16020 unused.
16021 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
16022 * data/lalr1.cc (nsym_): Remove, unused.
16023
16024 2002-07-03 Akim Demaille <akim@epita.fr>
16025
16026 * src/lalr.h, src/lalr.c (goto_number_t): New.
16027 * src/lalr.c (goto_list_t): New.
16028 Propagate them.
16029 * src/nullable.c (rule_list_t): New.
16030 Propagate.
16031 * src/types.h: Remove.
16032
16033 2002-07-03 Akim Demaille <akim@epita.fr>
16034
16035 * src/closure.c (print_fderives): Use rule_rhs_print.
16036 * src/derives.c (print_derives): Use rule_rhs_print.
16037 (rule_list_t): New, replaces `shorts'.
16038 (set_derives): Add comments.
16039 * tests/sets.at (Nullable, Firsts): Adjust.
16040
16041 2002-07-03 Akim Demaille <akim@epita.fr>
16042
16043 * src/output.c (prepare_actions): Free `tally' and `width'.
16044 (prepare_actions): Allocate and free `order'.
16045 * src/symtab.c (symbols_free): Free `symbols'.
16046 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
16047 * src/output.c (m4_invoke): Move to...
16048 * src/scan-skel.l: here.
16049 (<<EOF>>): Close yyout, and free its name.
16050
16051 2002-07-03 Akim Demaille <akim@epita.fr>
16052
16053 Fix some memory leaks, and fix a bug: state 0 was examined twice.
16054
16055 * src/LR0.c (new_state): Merge into...
16056 (state_list_append): this.
16057 (new_states): Merge into...
16058 (generate_states): here.
16059 (set_states): Don't ensure a proper `errs' state member here, do it...
16060 * src/conflicts.c (conflicts_solve): here.
16061 * src/state.h, src/state.c: Comment changes.
16062 (state_t): Rename member `shifts' as `transitions'.
16063 Adjust all dependencies.
16064 (errs_new): For consistency, also take the values as argument.
16065 (errs_dup): Remove.
16066 (state_errs_set): New.
16067 (state_reductions_set, state_transitions_set): Assert that no
16068 previous value was assigned.
16069 (state_free): New.
16070 (states_free): Use it.
16071 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
16072 temporary storage: use `errs' and `nerrs' as elsewhere.
16073 (set_conflicts): Allocate and free this `errs'.
16074
16075 2002-07-02 Akim Demaille <akim@epita.fr>
16076
16077 * lib/libiberty.h: New.
16078 * lib: Update the bitset implementation from upstream.
16079 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
16080 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
16081 * src/main.c: Adjust bitset stats calls.
16082
16083 2002-07-01 Paul Eggert <eggert@twinsun.com>
16084
16085 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
16086 char, so that negative chars don't collide with $.
16087
16088 2002-06-30 Akim Demaille <akim@epita.fr>
16089
16090 Have the GLR tests be `warning' checked, and fix the warnings.
16091
16092 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
16093 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
16094 (yyremoveDeletes): `yyi' and `yyj' are size_t.
16095 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
16096 (yyaddDeferredAction): static.
16097 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
16098 (yyreportParseError): yyprefix is const.
16099 yytokenp is used only when verbose.
16100 (yy__GNUC__): Replace with __GNUC__.
16101 (yypdumpstack): yyi is size_t.
16102 (yypreference): Un-yy local variables and arguments, to avoid
16103 clashes with `yyr1'. Anyway, we are not in the user name space.
16104 (yytname_size): be an int, as is compared with ints.
16105 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
16106 Use them.
16107 * tests/cxx-gram.at: Use quotation to protect $1.
16108 Use AT_COMPILE to enable warnings hunts.
16109 Prototype yylex and yyerror.
16110 `Use' argc.
16111 Include `string.h', not `strings.h'.
16112 Produce and prototype stmtMerge only when used.
16113 yylex takes a location.
16114
16115 2002-06-30 Akim Demaille <akim@epita.fr>
16116
16117 We spend a lot of time in quotearg, in particular when --verbose.
16118
16119 * src/symtab.c (symbol_get): Store a quoted version of the key.
16120 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
16121 Adjust all callers.
16122
16123 2002-06-30 Akim Demaille <akim@epita.fr>
16124
16125 * src/state.h (reductions_t): Rename member `nreds' as num.
16126 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
16127 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
16128
16129 2002-06-30 Akim Demaille <akim@epita.fr>
16130
16131 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
16132 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
16133 (shifts_to): Rename as...
16134 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
16135 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
16136 (TRANSITION_IS_DISABLED, transitions_to): these.
16137
16138 2002-06-30 Akim Demaille <akim@epita.fr>
16139
16140 * src/print.c (print_shifts, print_gotos): Merge into...
16141 (print_transitions): this.
16142 (print_transitions, print_errs, print_reductions): Align the
16143 lookaheads columns.
16144 (print_core, print_transitions, print_errs, print_state,
16145 print_grammar): Output empty lines separator before, not after.
16146 (state_default_rule_compute): Rename as...
16147 (state_default_rule): this.
16148 * tests/conflicts.at (Defaulted Conflicted Reduction),
16149 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
16150 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
16151
16152 2002-06-30 Akim Demaille <akim@epita.fr>
16153
16154 Display items as we display rules.
16155
16156 * src/gram.h, src/gram.c (rule_lhs_print): New.
16157 * src/gram.c (grammar_rules_partial_print): Use it.
16158 * src/print.c (print_core): Likewise.
16159 * tests/conflicts.at (Defaulted Conflicted Reduction),
16160 (Unresolved SR Conflicts): Adjust.
16161 (Unresolved SR Conflicts): Adjust and rename as...
16162 (Resolved SR Conflicts): this, as was meant.
16163 * tests/regression.at (Web2c Report): Adjust.
16164
16165 2002-06-30 Akim Demaille <akim@epita.fr>
16166
16167 * src/print.c (state_default_rule_compute): New, extracted from...
16168 (print_reductions): here.
16169 Pessimize, but clarify the code.
16170 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
16171
16172 2002-06-30 Akim Demaille <akim@epita.fr>
16173
16174 * src/output.c (action_row): Let default_rule be always a rule
16175 number.
16176
16177 2002-06-30 Akim Demaille <akim@epita.fr>
16178
16179 * src/closure.c (print_firsts, print_fderives, closure):
16180 Use BITSET_EXECUTE.
16181 * src/lalr.c (lookaheads_print): Likewise.
16182 * src/state.c (state_rule_lookaheads_print): Likewise.
16183 * src/print_graph.c (print_core): Likewise.
16184 * src/print.c (print_reductions): Likewise.
16185 * src/output.c (action_row): Likewise.
16186 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
16187
16188 2002-06-30 Akim Demaille <akim@epita.fr>
16189
16190 * src/print_graph.c: Use report_flag.
16191
16192 2002-06-30 Akim Demaille <akim@epita.fr>
16193
16194 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
16195 to...
16196 * src/relation.h, src/relation.c (traverse, relation_digraph)
16197 (relation_print, relation_transpose): New.
16198
16199 2002-06-30 Akim Demaille <akim@epita.fr>
16200
16201 * src/state.h, src/state.c (shifts_to): New.
16202 * src/lalr.c (build_relations): Use it.
16203
16204 2002-06-30 Akim Demaille <akim@epita.fr>
16205
16206 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
16207 (item_number_of_rule_number, rule_number_of_item_number): New.
16208 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
16209 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
16210 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
16211 Propagate their use.
16212 Much remains to be done, in particular wrt `shorts' from types.h.
16213
16214 2002-06-30 Akim Demaille <akim@epita.fr>
16215
16216 * src/symtab.c (symbol_new): Initialize the `printer' member.
16217
16218 2002-06-30 Akim Demaille <akim@epita.fr>
16219
16220 * src/LR0.c (save_reductions): Remove, replaced by...
16221 * src/state.h, src/state.c (state_reductions_set): New.
16222 (reductions, errs): Rename as...
16223 (reductions_t, errs_t): these.
16224 Adjust all dependencies.
16225
16226 2002-06-30 Akim Demaille <akim@epita.fr>
16227
16228 * src/LR0.c (state_list_t, state_list_append): New.
16229 (first_state, last_state): Now symbol_list_t.
16230 (this_state): Remove.
16231 (new_itemsets, append_states, save_reductions): Take a state_t as
16232 argument.
16233 (set_states, generate_states): Adjust.
16234 (save_shifts): Remove, replaced by...
16235 * src/state.h, src/state.c (state_shifts_set): New.
16236 (shifts): Rename as...
16237 (shifts_t): this.
16238 Adjust all dependencies.
16239 * src/state.h (state_t): Remove the `next' member.
16240
16241 2002-06-30 Akim Demaille <akim@epita.fr>
16242
16243 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
16244 escaped in slot 0.
16245
16246 2002-06-30 Akim Demaille <akim@epita.fr>
16247
16248 Use hash.h for the state hash table.
16249
16250 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
16251 (allocate_storage): Use state_hash_new.
16252 (free_storage): Use state_hash_free.
16253 (new_state, get_state): Adjust.
16254 * src/lalr.h, src/lalr.c (states): Move to...
16255 * src/states.h (state_t): Remove the `link' member, no longer
16256 used.
16257 * src/states.h, src/states.c: here.
16258 (state_hash_new, state_hash_free, state_hash_lookup)
16259 (state_hash_insert, states_free): New.
16260 * src/states.c (state_table, state_compare, state_hash): New.
16261 * src/output.c (output_actions): Do not free states now, since we
16262 still need to know the final_state number in `prepare', called
16263 afterwards. Do it...
16264 * src/main.c (main): here: call states_free after `output'.
16265
16266 2002-06-30 Akim Demaille <akim@epita.fr>
16267
16268 * src/state.h, src/state.c (state_new): New, extracted from...
16269 * src/LR0.c (new_state): here.
16270 * src/state.h (STATE_ALLOC): Move to...
16271 * src/state.c: here.
16272 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
16273 * src/state.h, src/state.c: here.
16274
16275 2002-06-30 Akim Demaille <akim@epita.fr>
16276
16277 * src/reader.c (gensym): Rename as...
16278 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
16279 (getsym): Rename as...
16280 (symbol_get): this.
16281
16282 2002-06-30 Akim Demaille <akim@epita.fr>
16283
16284 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
16285 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
16286 * src/output.c, src/print.c, src/print_graph.c: Propagate.
16287 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
16288
16289 2002-06-30 Akim Demaille <akim@epita.fr>
16290
16291 Make the test suite pass with warnings checked.
16292
16293 * tests/actions.at (Printers and Destructors): Improve.
16294 Avoid unsigned vs. signed issues.
16295 * tests/calc.at: Don't exercise the scanner here, do it...
16296 * tests/input.at (Torturing the Scanner): here.
16297
16298 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16299
16300 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
16301 reorganize first lines parallel to yacc.c.
16302
16303 2002-06-28 Akim Demaille <akim@epita.fr>
16304
16305 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
16306 (b4_token_enum, b4_token_defines): New, factored from...
16307 * data/lalr1.cc, data/yacc.c, glr.c: here.
16308
16309 2002-06-28 Akim Demaille <akim@epita.fr>
16310
16311 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
16312 unused variables.
16313 * src/output.c (merger_output): static.
16314
16315 2002-06-28 Akim Demaille <akim@epita.fr>
16316
16317 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
16318 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
16319 pacify GCC.
16320 * src/output.c (save_row): Initialize all the variables to pacify GCC.
16321
16322 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16323
16324 Accumulated changelog for new GLR parsing features.
16325
16326 * src/conflicts.c (count_total_conflicts): Change name to
16327 conflicts_total_count.
16328 * src/conflicts.h: Ditto.
16329 * src/output.c (token_actions): Use the new name.
16330 (output_conflicts): Change conflp => conflict_list_heads, and
16331 confl => conflict_list for better readability.
16332 * data/glr.c: Use the new names.
16333 * NEWS: Add self to GLR announcement.
16334
16335 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
16336
16337 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
16338 Akim Demaille.
16339
16340 * data/bison.glr: Change name to glr.c
16341 * data/glr.c: Renamed from bison.glr.
16342 * data/Makefile.am: Add glr.c
16343
16344 * src/getargs.c:
16345
16346 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
16347 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
16348
16349 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16350
16351 * data/bison.glr: Be sure to restore the
16352 current #line when returning to the skeleton contents after having
16353 exposed the input file's #line.
16354
16355 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16356
16357 * data/bison.glr: Bring up to date with changes to bison.simple.
16358
16359 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16360
16361 * data/bison.glr: Correct definitions that use b4_prefix.
16362 Various reformatting.
16363 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
16364 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
16365 yytokenp argument; now part of stack.
16366 (yychar): Define to behave as documented.
16367 (yyclearin): Ditto.
16368
16369 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16370
16371 * src/reader.h: Add declaration for free_merger_functions.
16372
16373 * src/reader.c (merge_functions): New variable.
16374 (get_merge_function): New function.
16375 (free_merger_functions): New function.
16376 (readgram): Check for %prec that is not followed by a symbol.
16377 Handle %dprec and %merge declarations.
16378 (packgram): Initialize dprec and merger fields in rules array.
16379
16380 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
16381 conflict_list_cnt, conflict_list_free): New variables.
16382 (table_grow): Also grow conflict_table.
16383 (prepare_rules): Output dprec and merger tables.
16384 (conflict_row): New function.
16385 (action_row): Output conflict lists for GLR parser. Don't use
16386 default reduction in conflicted states for GLR parser so that there
16387 are spaces for the conflict lists.
16388 (save_row): Also save conflict information.
16389 (token_actions): Allocate conflict list.
16390 (merger_output): New function.
16391 (pack_vector): Pack conflict table, too.
16392 (output_conflicts): New function to output yyconflp and yyconfl.
16393 (output_check): Allocate conflict_tos.
16394 (output_actions): Output conflict tables, also.
16395 (output_skeleton): Output b4_mergers definition.
16396 (prepare): Output b4_max_rhs_length definition.
16397 Use 'bison.glr' as default skeleton for GLR parsers.
16398
16399 * src/gram.c (glr_parser): New flag.
16400 (grammar_free): Call free_merger_functions.
16401
16402 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
16403 all pairs of conflicting reductions, rather than just all tokens
16404 causing conflicts. Needed to size conflict tables.
16405 (conflicts_output): Modify call to count_rr_conflicts for new
16406 interface.
16407 (conflicts_print): Ditto.
16408 (count_total_conflicts): New function.
16409
16410 * src/reader.h (merger_list): New type.
16411 (merge_functions): New variable.
16412
16413 * src/lex.h (tok_dprec, tok_merge): New token types.
16414
16415 * src/gram.h (rule_s): Add dprec and merger fields.
16416 (glr_parser): New flag.
16417
16418 * src/conflicts.h (count_total_conflicts): New function.
16419
16420 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
16421
16422 * doc/bison.texinfo (Generalized LR Parsing): New section.
16423 (GLR Parsers): New section.
16424 (Language and Grammar): Mention GLR parsing.
16425 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
16426 Correct typo ("tge" -> "the").
16427
16428 * data/bison.glr: New skeleton for GLR parsing.
16429
16430 * tests/cxx-gram.at: New tests for GLR parsing.
16431
16432 * tests/testsuite.at: Include cxx-gram.at.
16433
16434 * tests/Makefile.am: Add cxx-gram.at.
16435
16436 * src/parse-gram.y:
16437
16438 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
16439
16440 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
16441
16442 2002-06-27 Akim Demaille <akim@epita.fr>
16443
16444 * src/options.h, src/options.c: Remove.
16445 * src/getargs.c (short_options, long_options): New.
16446
16447 2002-06-27 Akim Demaille <akim@epita.fr>
16448
16449 * data/bison.simple, data/bison.c++: Rename as...
16450 * data/yacc.c, data/lalr1.cc: these.
16451 * doc/bison.texinfo (Environment Variables): Remove.
16452
16453 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
16454
16455 * src/getargs.c (report_argmatch): Initialize strtok().
16456
16457 2002-06-20 Akim Demaille <akim@epita.fr>
16458
16459 * data/bison.simple (b4_symbol_actions): New, replaces...
16460 (b4_symbol_destructor, b4_symbol_printer): these.
16461 (yysymprint): Be sure to call YYPRINT only for tokens, and using
16462 user token numbers.
16463
16464 2002-06-20 Akim Demaille <akim@epita.fr>
16465
16466 * data/bison.simple (yydestructor): Rename as...
16467 (yydestruct): this.
16468
16469 2002-06-20 Akim Demaille <akim@epita.fr>
16470
16471 * src/symtab.h, src/symtab.c (symbol_type_set)
16472 (symbol_destructor_set, symbol_precedence_set): The location is
16473 the last argument.
16474 Adjust all callers.
16475
16476 2002-06-20 Akim Demaille <akim@epita.fr>
16477
16478 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
16479 internals.
16480 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
16481 Takes a location.
16482 * src/symtab.h, src/symtab.c (symbol_class_set)
16483 (symbol_user_token_number_set): Likewise.
16484 Adjust all callers.
16485 Promote complain_at.
16486 * tests/input.at (Type Clashes): Adjust.
16487
16488 2002-06-20 Akim Demaille <akim@epita.fr>
16489
16490 * data/bison.simple (YYLEX): Fix the declaration when
16491 %pure-parser.
16492
16493 2002-06-20 Akim Demaille <akim@epita.fr>
16494
16495 * data/bison.simple (yysymprint): Don't print the token number,
16496 just its name.
16497 * tests/actions.at (Destructors): Rename as...
16498 (Printers and Destructors): this.
16499 Also exercise %printer.
16500
16501 2002-06-20 Akim Demaille <akim@epita.fr>
16502
16503 * data/bison.simple (YYDSYMPRINT): New.
16504 Use it to remove many of the #if YYDEBUG/if (yydebug).
16505
16506 2002-06-20 Akim Demaille <akim@epita.fr>
16507
16508 * src/symtab.h, src/symtab.c (symbol_t): printer and
16509 printer_location are new members.
16510 (symbol_printer_set): New.
16511 * src/parse-gram.y (PERCENT_PRINTER): New token.
16512 Handle its associated rule.
16513 * src/scan-gram.l: Adjust.
16514 (handle_destructor_at, handle_destructor_dollar): Rename as...
16515 (handle_symbol_code_at, handle_symbol_code_dollar): these.
16516 * src/output.c (symbol_printers_output): New.
16517 (output_skeleton): Call it.
16518 * data/bison.simple (yysymprint): New. Cannot be named yyprint
16519 since there are already many grammar files with a user `yyprint'.
16520 Replace the calls to YYPRINT to calls to yysymprint.
16521 * tests/calc.at: Adjust.
16522 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
16523 taking advantage of parser very internal details (stack size!).
16524
16525 2002-06-20 Akim Demaille <akim@epita.fr>
16526
16527 * src/scan-gram.l: Complete the scanner with the missing patterns
16528 to pacify Flex.
16529 Use `quote' and `symbol_tag_get' where appropriate.
16530
16531 2002-06-19 Akim Demaille <akim@epita.fr>
16532
16533 * tests/actions.at (Destructors): Augment to test locations.
16534 * data/bison.simple (yydestructor): Pass it the current location
16535 if locations are enabled.
16536 Prototype only when __STDC__ or C++.
16537 Change the argument names to move into the yy name space: there is
16538 user code here.
16539
16540 2002-06-19 Akim Demaille <akim@epita.fr>
16541
16542 * data/bison.simple (b4_pure_if): New.
16543 Use it instead of #ifdef YYPURE.
16544
16545 2002-06-19 Akim Demaille <akim@epita.fr>
16546
16547 * data/bison.simple (b4_location_if): New.
16548 Use it instead of #ifdef YYLSP_NEEDED.
16549
16550 2002-06-19 Akim Demaille <akim@epita.fr>
16551
16552 Prepare @$ in %destructor, but currently don't bind it in the
16553 skeleton, as %location use is not cleaned up yet.
16554
16555 * src/scan-gram.l (handle_dollar, handle_destructor_at)
16556 (handle_action_at): New.
16557 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
16558 a braced_code_t and a location as additional arguments.
16559 (handle_destructor_dollar): Instead of requiring `b4_eval', just
16560 unquote one when outputting `b4_dollar_dollar'.
16561 Adjust callers.
16562 * data/bison.simple (b4_eval): Remove.
16563 (b4_symbol_destructor): Adjust.
16564 * tests/input.at (Invalid @n): Adjust.
16565
16566 2002-06-19 Zack Weinberg <zack@codesourcery.com>
16567
16568 * doc/bison.texinfo: Document ability to have multiple
16569 prologue sections.
16570
16571 2002-06-18 Akim Demaille <akim@epita.fr>
16572
16573 * src/files.c (compute_base_names): When computing the output file
16574 names from the input file name, strip the directory part.
16575
16576 2002-06-18 Akim Demaille <akim@epita.fr>
16577
16578 * data/bison.simple.new: Comment changes.
16579 Reported by Andreas Schwab.
16580
16581 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
16582
16583 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
16584 there are no `label `yyoverflowlab' defined but not used' warnings
16585 when yyoverflow is defined.
16586
16587 2002-06-18 Akim Demaille <akim@epita.fr>
16588
16589 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
16590 new member.
16591 (symbol_destructor_set): Adjust.
16592 * src/output.c (symbol_destructors_output): Output the destructor
16593 locations.
16594 Output the symbol name.
16595 * data/bison.simple (b4_symbol_destructor): Adjust.
16596
16597 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
16598 and Akim Demaille <akim@epita.fr>
16599
16600 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
16601 what's left on the stack when the error recovery hits EOF.
16602 * tests/actions.at (Destructors): Complete to exercise this case.
16603
16604 2002-06-17 Akim Demaille <akim@epita.fr>
16605
16606 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
16607 arguments is really empty, not only equal to `[]'.
16608 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
16609 member.
16610 (symbol_destructor_set): New.
16611 * src/output.c (symbol_destructors_output): New.
16612 * src/reader.h (brace_code_t, current_braced_code): New.
16613 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
16614 (handle_dollar): Rename as...
16615 (handle_action_dollar): this.
16616 (handle_destructor_dollar): New.
16617 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
16618 (grammar_declaration): Use it.
16619 * data/bison.simple (yystos): Is always defined.
16620 (yydestructor): New.
16621 * tests/actions.at (Destructors): New.
16622 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
16623
16624 2002-06-17 Akim Demaille <akim@epita.fr>
16625
16626 * src/symlist.h, src/symlist.c (symbol_list_length): New.
16627 * src/scan-gram.l (handle_dollar, handle_at): Compute the
16628 rule_length only when needed.
16629 * src/output.c (actions_output, token_definitions_output): Output
16630 the full M4 block.
16631 * src/symtab.c: Don't access directly to the symbol tag, use
16632 symbol_tag_get.
16633 * src/parse-gram.y: Use symbol_list_free.
16634
16635 2002-06-17 Akim Demaille <akim@epita.fr>
16636
16637 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
16638 (symbol_list_prepend, get_type_name): Move to...
16639 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
16640 (symbol_list_prepend, symbol_list_n_type_name_get): here.
16641 Adjust all callers.
16642 (symbol_list_free): New.
16643 * src/scan-gram.l (handle_dollar): Takes a location.
16644 * tests/input.at (Invalid $n): Adjust.
16645
16646 2002-06-17 Akim Demaille <akim@epita.fr>
16647
16648 * src/reader.h, src/reader.c (symbol_list_new): Export it.
16649 (symbol_list_prepend): New.
16650 * src/parse-gram.y (%union): `list' is a new member.
16651 (symbols.1): New, replaces...
16652 (terms_to_prec.1, nterms_to_type.1): these.
16653 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
16654 Take a location as additional argument.
16655 Adjust all callers.
16656
16657 2002-06-15 Akim Demaille <akim@epita.fr>
16658
16659 * src/parse-gram.y: Move %token in the declaration section so that
16660 we don't depend upon CVS Bison.
16661
16662 2002-06-15 Akim Demaille <akim@epita.fr>
16663
16664 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
16665 * src/print.c (print_core): Use it.
16666
16667 2002-06-15 Akim Demaille <akim@epita.fr>
16668
16669 * src/conflicts.c (log_resolution): Accept the rule involved in
16670 the sr conflicts instead of the lookahead number that points to
16671 that rule.
16672 (flush_reduce): Accept the current lookahead vector as argument,
16673 instead of the index in LA.
16674 (resolve_sr_conflict): Accept the current number of lookahead
16675 bitset to consider for the STATE, instead of the index in LA.
16676 (set_conflicts): Adjust.
16677 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
16678
16679 2002-06-15 Akim Demaille <akim@epita.fr>
16680
16681 * src/state.h (state_t): Replace the `lookaheadsp' member, a
16682 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
16683 Adjust all dependencies.
16684 * src/lalr.c (initialize_lookaheads): Split into...
16685 (states_lookaheads_count, states_lookaheads_initialize): these.
16686 (lalr): Adjust.
16687
16688 2002-06-15 Akim Demaille <akim@epita.fr>
16689
16690 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
16691 out of...
16692 (grammar_rules_print): here.
16693 * src/reduce.c (reduce_output): Use it.
16694 * tests/reduce.at (Useless Rules, Reduced Automaton)
16695 (Underivable Rules): Adjust.
16696
16697 2002-06-15 Akim Demaille <akim@epita.fr>
16698
16699 Copy BYacc's nice way to report the grammar.
16700
16701 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
16702 New.
16703 Don't print the rules' location, it is confusing and useless.
16704 (rule_print): Use grammar_rhs_print.
16705 * src/print.c (print_grammar): Use grammar_rules_print.
16706
16707 2002-06-15 Akim Demaille <akim@epita.fr>
16708
16709 Complete and rationalize `useless thing' warnings.
16710
16711 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
16712 (symbol_tag_print): New.
16713 Use them everywhere in place of accessing directly the tag member.
16714 * src/gram.h, src/gram.c (rule_print): New.
16715 Use it where a rule used to be printed `by hand'.
16716 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
16717 (reduce_grammar_tables): Report the useless rules.
16718 (reduce_print): Useless things are a warning, not an error.
16719 Report it as such.
16720 * tests/reduce.at (Useless Nonterminals, Useless Rules):
16721 (Reduced Automaton, Underivable Rules): Adjust.
16722 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
16723 * tests/conflicts.at (Unresolved SR Conflicts)
16724 (Solved SR Conflicts): Adjust.
16725
16726 2002-06-15 Akim Demaille <akim@epita.fr>
16727
16728 Let symbols have a location.
16729
16730 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
16731 (getsym): Adjust.
16732 Adjust all callers.
16733 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
16734 Use location_t, not int.
16735 * src/symtab.c (symbol_check_defined): Take advantage of the
16736 location.
16737 * tests/regression.at (Invalid inputs): Adjust.
16738
16739 2002-06-15 Akim Demaille <akim@epita.fr>
16740
16741 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
16742 (input): Don't try to initialize yylloc here, do it in the
16743 scanner.
16744 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
16745 * src/gram.h (rule_t): Change line and action_line into location
16746 and action_location, of location_t type.
16747 Adjust all dependencies.
16748 * src/location.h, src/location.c (empty_location): New.
16749 * src/reader.h, src/reader.c (grammar_start_symbol_set)
16750 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
16751 (grammar_current_rule_symbol_append)
16752 (grammar_current_rule_action_append): Expect a location as argument.
16753 * src/reader.c (grammar_midrule_action): Adjust to attach an
16754 action's location as dummy symbol location.
16755 * src/symtab.h, src/symtab.c (startsymbol_location): New.
16756 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
16757 the line numbers.
16758
16759 2002-06-14 Akim Demaille <akim@epita.fr>
16760
16761 Grammar declarations may be found in the grammar section.
16762
16763 * src/parse-gram.y (rules_or_grammar_declaration): New.
16764 (declarations): Each declaration may end with a semicolon, not
16765 just...
16766 (grammar_declaration): `"%union"'.
16767 (grammar): Branch to rules_or_grammar_declaration.
16768
16769 2002-06-14 Akim Demaille <akim@epita.fr>
16770
16771 * src/main.c (main): Invoke scanner_free.
16772
16773 2002-06-14 Akim Demaille <akim@epita.fr>
16774
16775 * src/output.c (m4_invoke): Extracted from...
16776 (output_skeleton): here.
16777 Free tempfile.
16778
16779 2002-06-14 Akim Demaille <akim@epita.fr>
16780
16781 * src/parse-gram.y (directives, directive, gram)
16782 (grammar_directives, precedence_directives, precedence_directive):
16783 Rename as...
16784 (declarations, declaration, grammar, grammar_declaration)
16785 (precedence_declaration, precedence_declarator): these.
16786 (symbol_declaration): New.
16787
16788 2002-06-14 Akim Demaille <akim@epita.fr>
16789
16790 * src/files.c (action_obstack): Remove, unused.
16791 (output_obstack): Remove it, and all its dependencies, as it is no
16792 longer needed.
16793 * src/reader.c (epilogue_set): Build the epilogue in the
16794 muscle_obstack.
16795 * src/output.h, src/output.c (muscle_obstack): Move to...
16796 * src/muscle_tab.h, src/muscle_tab.h: here.
16797 (muscle_init): Initialize muscle_obstack.
16798 (muscle_free): New.
16799 * src/main.c (main): Call it.
16800
16801 2002-06-14 Akim Demaille <akim@epita.fr>
16802
16803 * src/location.h: New, extracted from...
16804 * src/reader.h: here.
16805 * src/Makefile.am (noinst_HEADERS): Merge into
16806 (bison_SOURCES): this.
16807 Add location.h.
16808 * src/parse-gram.y: Use location_t instead of Bison's.
16809 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
16810 Use location_t instead of ints.
16811
16812 2002-06-14 Akim Demaille <akim@epita.fr>
16813
16814 * data/bison.simple, data/bison.c++: Be sure to restore the
16815 current #line when returning to the skeleton contents after having
16816 exposed the input file's #line.
16817
16818 2002-06-12 Akim Demaille <akim@epita.fr>
16819
16820 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
16821 eager.
16822 * tests/actions.at (Exotic Dollars): New.
16823
16824 2002-06-12 Akim Demaille <akim@epita.fr>
16825
16826 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
16827 ['"/] too eagerly.
16828 * tests/input.at (Torturing the Scanner): New.
16829
16830 2002-06-11 Akim Demaille <akim@epita.fr>
16831
16832 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
16833 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
16834 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
16835 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
16836 * src/reader.c (reader): Use it.
16837
16838 2002-06-11 Akim Demaille <akim@epita.fr>
16839
16840 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
16841 Adjust all callers.
16842 (scanner_last_string_free): New.
16843
16844 2002-06-11 Akim Demaille <akim@epita.fr>
16845
16846 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
16847 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
16848 (last_string, YY_OBS_FREE): New.
16849 Use them when returning an ID.
16850
16851 2002-06-11 Akim Demaille <akim@epita.fr>
16852
16853 Have Bison grammars parsed by a Bison grammar.
16854
16855 * src/reader.c, src/reader.h (prologue_augment): New.
16856 * src/reader.c (copy_definition): Remove.
16857
16858 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
16859 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
16860 (grammar_current_rule_prec_set, grammar_current_rule_check)
16861 (grammar_current_rule_symbol_append)
16862 (grammar_current_rule_action_append): Export.
16863 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
16864 (symbol_list_action_append): Remove.
16865 Hook the routines from reader.
16866 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
16867 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
16868
16869 * src/reader.c (read_declarations): Remove, unused.
16870
16871 * src/parse-gram.y: Handle the epilogue.
16872 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
16873 (grammar_start_symbol_set): this.
16874 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
16875 * src/reader.c (readgram): Remove, unused.
16876 (reader): Adjust to insert eoftoken and axiom where appropriate.
16877
16878 * src/reader.c (copy_dollar): Replace with...
16879 * src/scan-gram.h (handle_dollar): this.
16880 * src/parse-gram.y: Remove `%thong'.
16881
16882 * src/reader.c (copy_at): Replace with...
16883 * src/scan-gram.h (handle_at): this.
16884
16885 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
16886 New.
16887
16888 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
16889 time being.
16890
16891 * src/reader.h, src/reader.c (grammar_rule_end): New.
16892
16893 * src/parse.y (current_type, current_class): New.
16894 Implement `%nterm', `%token' support.
16895 Merge `%term' into `%token'.
16896 (string_as_id): New.
16897 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
16898 type name.
16899
16900 * src/parse-gram.y: Be sure to handle properly the beginning of
16901 rules.
16902
16903 * src/parse-gram.y: Handle %type.
16904 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
16905
16906 * src/parse-gram.y: More directives support.
16907 * src/options.c: No longer handle source directives.
16908
16909 * src/parse-gram.y: Fix %output.
16910
16911 * src/parse-gram.y: Handle %union.
16912 Use the prologue locations.
16913 * src/reader.c (parse_union_decl): Remove.
16914
16915 * src/reader.h, src/reader.c (epilogue_set): New.
16916 * src/parse-gram.y: Use it.
16917
16918 * data/bison.simple, data/bison.c++: b4_stype is now either not
16919 defined, then default to int, or to the contents of %union,
16920 without `union' itself.
16921 Adjust.
16922 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
16923
16924 * src/output.c (actions_output): Don't output braces, as they are
16925 already handled by the scanner.
16926
16927 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
16928 characters to themselves.
16929
16930 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
16931 that the epilogue has a proper #line.
16932
16933 * src/parse-gram.y: Handle precedence/associativity.
16934
16935 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
16936 a terminal.
16937 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
16938 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
16939 at all to define terminals that cannot be emitted.
16940
16941 * src/scan-gram.l: Escape M4 characters.
16942
16943 * src/scan-gram.l: Working properly with escapes in user
16944 strings/characters.
16945
16946 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
16947 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
16948 grammar.
16949 Use more modest sizes, as for the time being the parser does not
16950 release memory, and therefore the process swallows a huge amount
16951 of memory.
16952
16953 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
16954 stricter %token grammar.
16955
16956 * src/symtab.h (associativity): Add `undef_assoc'.
16957 (symbol_precedence_set): Do nothing when passed an undef_assoc.
16958 * src/symtab.c (symbol_check_alias_consistence): Adjust.
16959
16960 * tests/regression.at (Invalid %directive): Remove, as it is now
16961 meaningless.
16962 (Invalid inputs): Adjust to the new error messages.
16963 (Token definitions): The new grammar doesn't allow too many
16964 eccentricities.
16965
16966 * src/lex.h, src/lex.c: Remove.
16967 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
16968 (copy_character, copy_string2, copy_string, copy_identifier)
16969 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
16970 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
16971 (parse_action): Remove.
16972 * po/POTFILES.in: Adjust.
16973
16974 2002-06-11 Akim Demaille <akim@epita.fr>
16975
16976 * src/reader.c (parse_action): Don't store directly into the
16977 rule's action member: return the action as a string.
16978 Don't require `rule_length' as an argument: compute it.
16979 (grammar_current_rule_symbol_append)
16980 (grammar_current_rule_action_append): New, eved out from
16981 (readgram): here.
16982 Remove `action_flag', `rulelength', unused now.
16983
16984 2002-06-11 Akim Demaille <akim@epita.fr>
16985
16986 * src/reader.c (grammar_current_rule_prec_set).
16987 (grammar_current_rule_check): New, eved out from...
16988 (readgram): here.
16989 Remove `xaction', `first_rhs': useless.
16990 * tests/input.at (Type clashes): New.
16991 * tests/existing.at (GNU Cim Grammar): Adjust.
16992
16993 2002-06-11 Akim Demaille <akim@epita.fr>
16994
16995 * src/reader.c (grammar_midrule_action): New, Eved out from
16996 (readgram): here.
16997
16998 2002-06-11 Akim Demaille <akim@epita.fr>
16999
17000 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
17001 New.
17002 (readgram): Use them as replacement of inlined code, crule and
17003 crule1.
17004
17005 2002-06-11 Akim Demaille <akim@epita.fr>
17006
17007 * src/reader.c (grammar_end, grammar_symbol_append): New.
17008 (readgram): Use them.
17009 Make the use of `p' as local as possible.
17010
17011 2002-06-10 Akim Demaille <akim@epita.fr>
17012
17013 GCJ's parser requires the tokens to be defined before the prologue.
17014
17015 * data/bison.simple: Output the token definition before the user's
17016 prologue.
17017 * tests/regression.at (Braces parsing, Duplicate string)
17018 (Mixing %token styles): Check the output from bison.
17019 (Early token definitions): New.
17020
17021 2002-06-10 Akim Demaille <akim@epita.fr>
17022
17023 * src/symtab.c (symbol_user_token_number_set): Don't complain when
17024 assigning twice the same user number to a token, so that we can
17025 use it in...
17026 * src/lex.c (lex): here.
17027 Also use `symbol_class_set' instead of hand written code.
17028 * src/reader.c (parse_assoc_decl): Likewise.
17029
17030 2002-06-10 Akim Demaille <akim@epita.fr>
17031
17032 * src/symtab.c, src/symtab.c (symbol_class_set)
17033 (symbol_user_token_number_set): New.
17034 * src/reader.c (parse_token_decl): Use them.
17035 Use a switch instead of ifs.
17036 Use a single argument.
17037
17038 2002-06-10 Akim Demaille <akim@epita.fr>
17039
17040 Remove `%thong' support as it is undocumented, unused, duplicates
17041 `%token's job, and creates useless e-mail traffic with people who
17042 want to know what it is, why it is undocumented, unused, and
17043 duplicates `%token's job.
17044
17045 * src/reader.c (parse_thong_decl): Remove.
17046 * src/options.c (option_table): Remove "thong".
17047 * src/lex.h (tok_thong): Remove.
17048
17049 2002-06-10 Akim Demaille <akim@epita.fr>
17050
17051 * src/symtab.c, src/symtab.c (symbol_type_set)
17052 (symbol_precedence_set): New.
17053 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
17054 (value_components_used): Remove, unused.
17055
17056 2002-06-09 Akim Demaille <akim@epita.fr>
17057
17058 Move symbols handling code out of the reader.
17059
17060 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
17061 (axiom): Move to...
17062 * src/symtab.h, src/symtab.c: here.
17063
17064 * src/gram.c (start_symbol): Remove: use startsymbol->number.
17065 * src/reader.c (startval): Rename as...
17066 * src/symtab.h, src/symtab.c (startsymbol): this.
17067 * src/reader.c: Adjust.
17068
17069 * src/reader.c (symbol_check_defined, symbol_make_alias)
17070 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17071 (token_translations_init)
17072 Move to...
17073 * src/symtab.c: here.
17074 * src/reader.c (packsymbols): Move to...
17075 * src/symtab.h, src/symtab.c (symbols_pack): here.
17076 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
17077 argument.
17078
17079 2002-06-03 Akim Demaille <akim@epita.fr>
17080
17081 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
17082 then statements.
17083
17084 2002-06-03 Akim Demaille <akim@epita.fr>
17085
17086 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
17087 structs with non literals.
17088 * src/scan-skel.l: never-interactive.
17089 * src/conflicts.c (enum conflict_resolution_e): No trailing
17090 comma.
17091 * src/getargs.c (usage): Split long literal strings.
17092 Reported by Hans Aberg.
17093
17094 2002-05-28 Akim Demaille <akim@epita.fr>
17095
17096 * data/bison.c++: Use C++ ostreams.
17097 (cdebug_): New member.
17098
17099 2002-05-28 Akim Demaille <akim@epita.fr>
17100
17101 * src/output.c (output_skeleton): Be sure to allocate enough room
17102 for `/' _and_ for `\0' in full_skeleton.
17103
17104 2002-05-28 Akim Demaille <akim@epita.fr>
17105
17106 * data/bison.c++: Catch up with bison.simple:
17107 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17108 and Paul Eggert <eggert@twinsun.com>: `error' handing.
17109 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
17110 and popping traces.
17111
17112 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17113
17114 * src/output.c (output_skeleton): Put an explicit path in front of
17115 the skeleton file name, rather than relying on the -I directory,
17116 to partially alleviate effects of having a skeleton file lying around
17117 in the current directory.
17118
17119 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17120
17121 * src/conflicts.c (log_resolution): Correct typo:
17122 obstack_printf should be obstack_fgrow1.
17123
17124 2002-05-26 Akim Demaille <akim@epita.fr>
17125
17126 * src/state.h (state_t): `solved_conflicts' is a new member.
17127 * src/LR0.c (new_state): Set it to 0.
17128 * src/conflicts.h, src/conflicts.c (print_conflicts)
17129 (free_conflicts, solve_conflicts): Rename as...
17130 (conflicts_print, conflicts_free, conflicts_solve): these.
17131 Adjust callers.
17132 * src/conflicts.c (enum conflict_resolution_e)
17133 (solved_conflicts_obstack): New, used by...
17134 (log_resolution): this.
17135 Adjust to attach the conflict resolution to each state.
17136 Complete the description with the precedence/associativity
17137 information.
17138 (resolve_sr_conflict): Adjust.
17139 * src/print.c (print_state): Output its solved_conflicts.
17140 * tests/conflicts.at (Unresolved SR Conflicts)
17141 (Solved SR Conflicts): Exercise --report=all.
17142
17143 2002-05-26 Akim Demaille <akim@epita.fr>
17144
17145 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17146 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17147 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
17148 (token_number_t, item_number_as_token_number)
17149 (token_number_as_item_number, muscle_insert_token_number_table):
17150 Rename as...
17151 (symbol_number_t, item_number_as_symbol_number)
17152 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
17153 these, since it is more appropriate.
17154
17155 2002-05-26 Akim Demaille <akim@epita.fr>
17156
17157 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
17158 `Error:' lines.
17159 * data/bison.simple (yystos) [YYDEBUG]: New.
17160 (yyparse) [YYDEBUG]: Display the symbols which are popped during
17161 error recovery.
17162 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
17163
17164 2002-05-25 Akim Demaille <akim@epita.fr>
17165
17166 * doc/bison.texinfo (Debugging): Split into...
17167 (Tracing): this new section, its former contents, and...
17168 (Understanding): this new section.
17169 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
17170 by...
17171 (report_flag): this.
17172 Adjust all dependencies.
17173 (report_args, report_types, report_argmatch): New.
17174 (usage, getargs): Report/support -r, --report.
17175 * src/options.h
17176 (struct option_table_struct): Rename as..,
17177 (struct option_table_s): this.
17178 Rename the `set_flag' member to `flag' to match with getopt_long's
17179 struct.
17180 * src/options.c (option_table): Split verbose into an entry for
17181 %verbose, and another for --verbose.
17182 Support --report/-r, so remove -r from the obsolete --raw.
17183 * src/print.c: Attach full item sets and lookaheads reports to
17184 report_flag instead of trace_flag.
17185 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
17186
17187 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17188 and Paul Eggert <eggert@twinsun.com>
17189
17190 * data/bison.simple (yyparse): Correct error handling to conform to
17191 POSIX and yacc. Specifically, after syntax error is discovered,
17192 do not reduce further before shifting the error token.
17193 Clean up the code a bit by removing the labels yyerrdefault,
17194 yyerrhandle, yyerrpop.
17195 * NEWS: Document the above.
17196
17197 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17198
17199 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
17200 type; it isn't always big enough, since it doesn't necessarily
17201 include non-terminals.
17202 (yytranslate): Expand definition of yy_token_number_type, so that
17203 the latter can be removed.
17204 (yy_token_number_type): Remove, only one use.
17205 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
17206 don't use TokenNumberType as element type.
17207
17208 * tests/regression.at: Modify expected output to agree with change
17209 to yyr1 and yytranslate.
17210
17211 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
17212
17213 * src/reader.c (parse_action): Use copy_character instead of
17214 obstack_1grow.
17215
17216 2002-05-13 Akim Demaille <akim@epita.fr>
17217
17218 * tests/regression.at (Token definitions): Prototype yylex and
17219 yyerror.
17220
17221 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17222
17223 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
17224 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
17225 32-bit arithmetic.
17226 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
17227
17228 2002-05-07 Akim Demaille <akim@epita.fr>
17229
17230 * tests/synclines.at: Be sure to prototype yylex and yyerror to
17231 avoid GCC warnings.
17232
17233 2002-05-07 Akim Demaille <akim@epita.fr>
17234
17235 Kill GCC warnings.
17236
17237 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
17238 over the RHS of each rule.
17239 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
17240 * src/state.h (state_t): Member `nitems' is unsigned short.
17241 * src/LR0.c (get_state): Adjust.
17242 * src/reader.c (packgram): Likewise.
17243 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
17244 `Type'.
17245 (muscle_insert_int_table): Remove, unused.
17246 (prepare_rules): Remove `max'.
17247
17248 2002-05-06 Akim Demaille <akim@epita.fr>
17249
17250 * src/closure.c (print_firsts): Display of the symbol tags.
17251 (bitmatrix_print): Move to...
17252 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
17253 here.
17254 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
17255
17256 2002-05-06 Akim Demaille <akim@epita.fr>
17257
17258 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
17259 hash_do_for_each.
17260
17261 2002-05-06 Akim Demaille <akim@epita.fr>
17262
17263 * src/LR0.c (new_state, get_state): Instead of using the global
17264 `kernel_size' and `kernel_base', have two new arguments:
17265 `core_size' and `core'.
17266 Adjust callers.
17267
17268 2002-05-06 Akim Demaille <akim@epita.fr>
17269
17270 * src/reader.c (packgram): No longer end `ritem' with a 0
17271 sentinel: it is not used.
17272
17273 2002-05-05 Akim Demaille <akim@epita.fr>
17274
17275 New experimental feature: display the lookaheads in the report and
17276 graph.
17277
17278 * src/print (print_core): When --trace-flag, display the rules
17279 lookaheads.
17280 * src/print_graph.c (print_core): Likewise.
17281 Swap the arguments.
17282 Adjust caller.
17283
17284 2002-05-05 Akim Demaille <akim@epita.fr>
17285
17286 * tests/torture.at (Many lookaheads): New test.
17287
17288 2002-05-05 Akim Demaille <akim@epita.fr>
17289
17290 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
17291 (GENERATE_MUSCLE_INSERT_TABLE): this.
17292 (output_int_table, output_unsigned_int_table, output_short_table)
17293 (output_token_number_table, output_item_number_table): Replace with...
17294 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
17295 (muscle_insert_short_table, muscle_insert_token_number_table)
17296 (muscle_insert_item_number_table): these.
17297 Adjust all callers.
17298 (prepare_tokens): Don't free `translations', since...
17299 * src/reader.h, src/reader.c (grammar_free): do it.
17300 Move to...
17301 * src/gram.h, src/gram.c (grammar_free): here.
17302 * data/bison.simple, data/bison.c++: b4_token_number_max is now
17303 b4_translate_max.
17304
17305 2002-05-05 Akim Demaille <akim@epita.fr>
17306
17307 * src/output.c (output_unsigned_int_table): New.
17308 (prepare_rules): `i' is unsigned.
17309 `prhs', `rline', `r2' are unsigned int.
17310 Rename muscle `rhs_number_max' as `rhs_max'.
17311 Output muscles `prhs_max', `rline_max', and `r2_max'.
17312 Free rline and r1.
17313 * data/bison.simple, data/bison.c++: Adjust to use these muscles
17314 to compute types instead of constant types.
17315 * tests/regression.at (Web2c Actions): Adjust.
17316
17317 2002-05-04 Akim Demaille <akim@epita.fr>
17318
17319 * src/symtab.h (SALIAS, SUNDEF): Rename as...
17320 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
17321 Adjust dependencies.
17322 * src/output.c (token_definitions_output): Be sure not to output a
17323 `#define 'a'' when fed with `%token 'a' "a"'.
17324 * tests/regression.at (Token definitions): New.
17325
17326 2002-05-03 Paul Eggert <eggert@twinsun.com>
17327
17328 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
17329 for K&R C.
17330
17331 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
17332
17333 * Makefile.am (SUBDIRS): Remove intl.
17334 (EXTRA_DIST): Add config/config.rpath.
17335
17336 2002-05-03 Akim Demaille <akim@epita.fr>
17337
17338 * data/bison.simple (m4_if): Don't output empty enums.
17339 And actually, output valid enum definitions :(.
17340
17341 2002-05-03 Akim Demaille <akim@epita.fr>
17342
17343 * configure.bat: Remove, completely obsolete.
17344 * Makefile.am (EXTRA_DIST): Adjust.
17345 Don't distribute config.rpath...
17346 * config/Makefile.am (EXTRA_DIST): Do it.
17347
17348 2002-05-03 Akim Demaille <akim@epita.fr>
17349
17350 * configure.in (GETTEXT_VERSION): New.
17351 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
17352
17353 2002-05-03 Akim Demaille <akim@epita.fr>
17354
17355 * data/bison.simple (b4_token_enum): New.
17356 (b4_token_defines): Use it to output tokens both as #define and
17357 enums.
17358 Suggested by Paul Eggert.
17359 * src/output.c (token_definitions_output): Don't output spurious
17360 white spaces.
17361
17362 2002-05-03 Akim Demaille <akim@epita.fr>
17363
17364 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
17365
17366 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
17367
17368 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
17369 Update the stack class, give a try to deque as the default container.
17370
17371 2002-05-02 Akim Demaille <akim@epita.fr>
17372
17373 * data/bison.simple (yyparse): Do not implement @$ = @1.
17374 (YYLLOC_DEFAULT): Adjust to do it.
17375 * doc/bison.texinfo (Location Default Action): Fix.
17376
17377 2002-05-02 Akim Demaille <akim@epita.fr>
17378
17379 * src/reader.c (parse_braces): Merge into...
17380 (parse_action): this.
17381
17382 2002-05-02 Akim Demaille <akim@epita.fr>
17383
17384 * configure.in (ALL_LINGUAS): Remove.
17385 * po/LINGUAS, hr.po: New.
17386
17387 2002-05-02 Akim Demaille <akim@epita.fr>
17388
17389 Remove the so called hairy (semantic) parsers.
17390
17391 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
17392 * src/gram.h, src/gram.c (semantic_parser): Remove.
17393 (rule_t): Remove the guard and guard_line members.
17394 * src/lex.h (token_t): remove tok_guard.
17395 * src/options.c (option_table): Remove %guard and %semantic_parser
17396 support.
17397 * src/output.c, src/output.h (guards_output): Remove.
17398 (prepare): Adjust.
17399 (token_definitions_output): Don't output the `T'
17400 tokens (???).
17401 (output_skeleton): Don't output the guards.
17402 * src/files.c, src/files.c (attrsfile): Remove.
17403 * src/reader.c (symbol_list): Remove the guard and guard_line
17404 members.
17405 Adjust dependencies.
17406 (parse_guard): Remove.
17407 * data/bison.hairy: Remove.
17408 * doc/bison.texinfo (Environment Variables): Remove occurrences of
17409 BISON_HAIRY.
17410
17411 2002-05-02 Akim Demaille <akim@epita.fr>
17412
17413 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
17414 (parse_guard): Rename the formal argument `stack_offset' as
17415 `rule_length', which is more readable.
17416 Adjust callers.
17417 (copy_at, copy_dollar): Instead of outputting the hard coded
17418 values of $$, $n and so forth, output invocation to b4_lhs_value,
17419 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
17420 Note: this patch partially drops `semantic-parser' support: it
17421 always does `rule_length - n', where semantic parsers ought to
17422 always use `-n'.
17423 * data/bison.simple, data/bison.c++ (b4_lhs_value)
17424 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
17425
17426 2002-05-02 Akim Demaille <akim@epita.fr>
17427
17428 * configure.in (AC_INIT): Bump to 1.49b.
17429 (AM_INIT_AUTOMAKE): Short invocation.
17430
17431 2002-05-02 Akim Demaille <akim@epita.fr>
17432
17433 Version 1.49a.
17434
17435 2002-05-01 Akim Demaille <akim@epita.fr>
17436
17437 * src/skeleton.h: Remove.
17438
17439 2002-05-01 Akim Demaille <akim@epita.fr>
17440
17441 * src/skeleton.h: Fix the #endif.
17442 Reported by Magnus Fromreide.
17443
17444 2002-04-26 Paul Eggert <eggert@twinsun.com>
17445
17446 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
17447 Define if we define YYSTYPE and YYLTYPE, respectively.
17448 (YYCOPY): Fix [] quoting problem in the non-GCC case.
17449
17450 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
17451
17452 * src/scan-skel.l: Postprocess quadrigraphs.
17453
17454 * src/reader.c (copy_character): New function, used to output
17455 single characters while replacing `[' and `]' with quadrigraphs, to
17456 avoid troubles with M4 quotes.
17457 (copy_comment): Output characters with copy_character.
17458 (read_additionnal_code): Likewise.
17459 (copy_string2): Likewise.
17460 (copy_definition): Likewise.
17461
17462 * tests/calc.at: Exercise M4 quoting.
17463
17464 2002-04-25 Akim Demaille <akim@epita.fr>
17465
17466 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
17467 between `!' and the command.
17468 Reported by Paul Eggert.
17469
17470 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
17471
17472 * tests/calc.at: Exercise prologue splitting.
17473
17474 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
17475 `b4_post_prologue' instead of `b4_prologue'.
17476
17477 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
17478 muscles.
17479 (output): Free pre_prologue_obstack and post_prologue_obstack.
17480 * src/files.h, src/files.c (attrs_obstack): Remove.
17481 (pre_prologue_obstack, post_prologue_obstack): New.
17482 * src/reader.c (copy_definition): Add a parameter to specify the
17483 obstack to fill, instead of using attrs_obstack unconditionally.
17484 (read_declarations): Pass pre_prologue_obstack to copy_definition if
17485 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
17486
17487 2002-04-23 Paul Eggert <eggert@twinsun.com>
17488
17489 * data/bison.simple: Remove unnecessary commentary and white
17490 space differences from 1_29-branch.
17491 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
17492
17493 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
17494 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
17495 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
17496 constructors or destructors.
17497
17498 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
17499
17500 2002-04-23 Akim Demaille <akim@epita.fr>
17501
17502 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
17503 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
17504 location with columns.
17505 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
17506 All reported by Paul Eggert.
17507
17508 2002-04-22 Akim Demaille <akim@epita.fr>
17509
17510 * src/reduce.c (dump_grammar): Move to...
17511 * src/gram.h, src/gram.c (grammar_dump): here.
17512 Be sure to separate long item numbers.
17513 Don't read the members of a rule's prec if its nil.
17514
17515 2002-04-22 Akim Demaille <akim@epita.fr>
17516
17517 * src/output.c (table_size, table_grow): New.
17518 (MAXTABLE): Remove, replace uses with table_size.
17519 (pack_vector): Instead of dying when the table is too big, grow it.
17520
17521 2002-04-22 Akim Demaille <akim@epita.fr>
17522
17523 * data/bison.simple (yyr1): Its type is that of a token number.
17524 * data/bison.c++ (r1_): Likewise.
17525 * tests/regression.at (Web2c Actions): Adjust.
17526
17527 2002-04-22 Akim Demaille <akim@epita.fr>
17528
17529 * src/reader.c (token_translations_init): 256 is now the default
17530 value for the error token, i.e., it will be assigned another
17531 number if the user assigned 256 to one of her tokens.
17532 (reader): Don't force 256 to error.
17533 * doc/bison.texinfo (Symbols): Adjust.
17534 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
17535 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
17536 etc. instead of 10, 20, 30 (which was used to `jump' over error
17537 (256) and undefined (2)).
17538
17539 2002-04-22 Akim Demaille <akim@epita.fr>
17540
17541 Propagate more token_number_t.
17542
17543 * src/gram.h (token_number_as_item_number)
17544 (item_number_as_token_number): New.
17545 * src/output.c (GENERATE_OUTPUT_TABLE): New.
17546 Use it to create output_item_number_table and
17547 output_token_number_table.
17548 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17549 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
17550 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
17551 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
17552
17553 2002-04-22 Akim Demaille <akim@epita.fr>
17554
17555 * src/output.h, src/output.c (get_lines_number): Remove.
17556
17557 2002-04-19 Akim Demaille <akim@epita.fr>
17558
17559 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
17560 as Lex/Flex'.
17561 (Debugging): More details about enabling the debugging features.
17562 (Table of Symbols): Describe $$, $n, @$, and @n.
17563 Suggested by Tim Josling.
17564
17565 2002-04-19 Akim Demaille <akim@epita.fr>
17566
17567 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
17568
17569 2002-04-10 Akim Demaille <akim@epita.fr>
17570
17571 * src/system.h: Rely on HAVE_LIMITS_H.
17572 Suggested by Paul Eggert.
17573
17574 2002-04-09 Akim Demaille <akim@epita.fr>
17575
17576 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
17577 full stderr, and strip it according to the bison options, instead
17578 of composing the error message from different bits.
17579 This makes it easier to check for several error messages.
17580 Adjust all the invocations.
17581 Add an invocation exercising the error token.
17582 Add an invocation demonstrating a stupid error message.
17583 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
17584 Adjust the tests.
17585 Error message are for stderr, not stdout.
17586
17587 2002-04-09 Akim Demaille <akim@epita.fr>
17588
17589 * src/gram.h, src/gram.c (error_token_number): Remove, use
17590 errtoken->number.
17591 * src/reader.c (reader): Don't specify the user token number (2)
17592 for $undefined, as it uselessly prevents using it.
17593 * src/gram.h (token_number_t): Move to...
17594 * src/symtab.h: here.
17595 (state_t.number): Is a token_number_t.
17596 * src/print.c, src/reader.c: Use undeftoken->number instead of
17597 hard coded 2.
17598 (Even though this 2 is not the same as above: the number of the
17599 undeftoken remains being 2, it is its user token number which
17600 might not be 2).
17601 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
17602 `user_token_number_max'.
17603 Output `undef_token_number'.
17604 * data/bison.simple, data/bison.c++: Use them.
17605 Be sure to map invalid yylex return values to
17606 `undef_token_number'. This saves us from gratuitous SEGV.
17607
17608 * tests/conflicts.at (Solved SR Conflicts)
17609 (Unresolved SR Conflicts): Adjust.
17610 * tests/regression.at (Web2c Actions): Adjust.
17611
17612 2002-04-08 Akim Demaille <akim@epita.fr>
17613
17614 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
17615 Adding #line.
17616 Remove the duplicate `typedefs'.
17617 (RhsNumberType): Fix the declaration and various other typos.
17618 Use __ofile__.
17619 * data/bison.simple: Use __ofile__.
17620 * src/scan-skel.l: Handle __ofile__.
17621
17622 2002-04-08 Akim Demaille <akim@epita.fr>
17623
17624 * src/gram.h (item_number_t): New, the type of item numbers in
17625 RITEM. Note that it must be able to code symbol numbers as
17626 positive number, and the negation of rule numbers as negative
17627 numbers.
17628 Adjust all dependencies (pretty many).
17629 * src/reduce.c (rule): Remove this `short *' pointer: use
17630 item_number_t.
17631 * src/system.h (MINSHORT, MAXSHORT): Remove.
17632 Include `limits.h'.
17633 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
17634 (shortcpy): Remove.
17635 (MAXTABLE): Move to...
17636 * src/output.c (MAXTABLE): here.
17637 (prepare_rules): Use output_int_table to output rhs.
17638 * data/bison.simple, data/bison.c++: Adjust.
17639 * tests/torture.at (Big triangle): Move the limit from 254 to
17640 500.
17641 * tests/regression.at (Web2c Actions): Ajust.
17642
17643 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
17644 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
17645 passes, but produces negative #line number, once fixed, GCC is
17646 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
17647 C), it passes.
17648 * src/state.h (state_h): Code input lines on ints, not shorts.
17649
17650 2002-04-08 Akim Demaille <akim@epita.fr>
17651
17652 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
17653 and then the grammar.
17654
17655 2002-04-08 Akim Demaille <akim@epita.fr>
17656
17657 * src/system.h: No longer using strndup.
17658
17659 2002-04-07 Akim Demaille <akim@epita.fr>
17660
17661 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
17662 * src/output.c (output_table_data): Return the longest number.
17663 (prepare_tokens): Output `token_number_max').
17664 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
17665 New.
17666 Use them to define yy_token_number_type/TokenNumberType.
17667 Use this type for yytranslate.
17668 * tests/torture.at (Big triangle): Push the limit from 124 to
17669 253.
17670 * tests/regression.at (Web2c Actions): Adjust.
17671
17672 2002-04-07 Akim Demaille <akim@epita.fr>
17673
17674 * tests/torture.at (Big triangle): New.
17675 (GNU AWK Grammar, GNU Cim Grammar): Move to...
17676 * tests/existing.at: here.
17677
17678 2002-04-07 Akim Demaille <akim@epita.fr>
17679
17680 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
17681 nritems.
17682 Adjust dependencies.
17683
17684 2002-04-07 Akim Demaille <akim@epita.fr>
17685
17686 * src/reader.c: Normalize increments to prefix form.
17687
17688 2002-04-07 Akim Demaille <akim@epita.fr>
17689
17690 * src/reader.c, symtab.c: Remove debugging code.
17691
17692 2002-04-07 Akim Demaille <akim@epita.fr>
17693
17694 Rename all the `bucket's as `symbol_t'.
17695
17696 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
17697 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
17698 * src/symtab.c, src/symtab.h (bucket): Rename as...
17699 (symbol_t): this.
17700 (symbol_list_new, bucket_check_defined, bucket_make_alias)
17701 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
17702 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
17703 (buckets_new, buckets_free, buckets_do): Rename as...
17704 (symbol_list_new, symbol_check_defined, symbol_make_alias)
17705 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17706 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
17707 (symbols_new, symbols_free, symbols_do): these.
17708
17709 2002-04-07 Akim Demaille <akim@epita.fr>
17710
17711 Use lib/hash for the symbol table.
17712
17713 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
17714 EOF.
17715 * src/lex.c (lex): Set the `number' member of new terminals.
17716 * src/reader.c (bucket_check_defined, bucket_make_alias)
17717 (bucket_check_alias_consistence, bucket_translation): New.
17718 (reader, grammar_free, readgram, token_translations_init)
17719 (packsymbols): Adjust.
17720 (reader): Number the predefined tokens.
17721 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
17722 for predefined tokens.
17723 * src/symtab.h (bucket): Remove all the hash table related
17724 members.
17725 * src/symtab.c (symtab): Replace by...
17726 (bucket_table): this.
17727 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
17728 (buckets_new, buckets_do): New.
17729
17730 2002-04-07 Akim Demaille <akim@epita.fr>
17731
17732 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
17733 (start_symbol, max_user_token_number, semantic_parser)
17734 (error_token_number): Initialize.
17735 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
17736 Initialize.
17737 (reader): Don't.
17738 (errtoken, eoftoken, undeftoken, axiom): Extern.
17739
17740 2002-04-07 Akim Demaille <akim@epita.fr>
17741
17742 * src/gram.h (rule_s): prec and precsym are now pointers
17743 to the bucket giving the priority/associativity.
17744 Member `associativity' removed: useless.
17745 * src/reduce.c, src/conflicts.c: Adjust.
17746
17747 2002-04-07 Akim Demaille <akim@epita.fr>
17748
17749 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
17750 Properly escape the symbols' TAG when outputting them.
17751
17752 2002-04-07 Akim Demaille <akim@epita.fr>
17753
17754 * src/lalr.h (LA): Is a bitsetv, not bitset*.
17755
17756 2002-04-07 Akim Demaille <akim@epita.fr>
17757
17758 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
17759 (LArule): this, which is an array to rule_t*.
17760 * src/print.c, src/conflicts.c: Adjust.
17761
17762 2002-04-07 Akim Demaille <akim@epita.fr>
17763
17764 * src/gram.h (rule_t): Rename `number' as `user_number'.
17765 `number' is a new member.
17766 Adjust dependencies.
17767 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
17768
17769 2002-04-07 Akim Demaille <akim@epita.fr>
17770
17771 As a result of the previous patch, it is no longer needed
17772 to reorder ritem itself.
17773
17774 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
17775
17776 2002-04-07 Akim Demaille <akim@epita.fr>
17777
17778 Be sure never to walk through RITEMS, but use only data related to
17779 the rules themselves. RITEMS should be banished.
17780
17781 * src/output.c (output_token_translations): Rename as...
17782 (prepare_tokens): this.
17783 In addition to `translate', prepare the muscles `tname' and
17784 `toknum', which were handled by...
17785 (output_rule_data): this.
17786 Remove, and move the remainder of its outputs into...
17787 (prepare_rules): this new routines, which also merges content from
17788 (output_gram): this.
17789 (prepare_rules): Be sure never to walk through RITEMS.
17790 (output_stos): Rename as...
17791 (prepare_stos): this.
17792 (output): Always invoke prepare_states, after all, just don't use it
17793 in the output if you don't need it.
17794
17795 2002-04-07 Akim Demaille <akim@epita.fr>
17796
17797 * src/LR0.c (new_state): Display `nstates' as the name of the
17798 newly created state.
17799 Adjust to initialize first_state and last_state if needed.
17800 Be sure to distinguish the initial from the final state.
17801 (new_states): Create the itemset of the initial state, and use
17802 new_state.
17803 * src/closure.c (closure): Now that the initial state has its
17804 items properly set, there is no need for a special case when
17805 creating `ruleset'.
17806
17807 As a result, now the rule 0, reducing to $axiom, is visible in the
17808 outputs. Adjust the test suite.
17809
17810 * tests/conflicts.at (Solved SR Conflicts)
17811 (Unresolved SR Conflicts): Adjust.
17812 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
17813 * tests/conflicts.at (S/R in initial): New.
17814
17815 2002-04-07 Akim Demaille <akim@epita.fr>
17816
17817 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
17818 the RHS of the rules.
17819 * src/output.c (output_gram): Likewise.
17820
17821 2002-04-07 Akim Demaille <akim@epita.fr>
17822
17823 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
17824 bucket.
17825 Adjust all dependencies.
17826 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
17827 `number' of the buckets too.
17828 * src/gram.h: Include `symtab.h'.
17829 (associativity): Move to...
17830 * src/symtab.h: here.
17831 No longer include `gram.h'.
17832
17833 2002-04-07 Akim Demaille <akim@epita.fr>
17834
17835 * src/gram.h, src/gram.c (rules_rhs_length): New.
17836 (ritem_longest_rhs): Use it.
17837 * src/gram.h (rule_t): `number' is a new member.
17838 * src/reader.c (packgram): Set it.
17839 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
17840 the end of `rules', and count them out of `nrules'.
17841 (reduce_output, dump_grammar): Adjust.
17842 * src/print.c (print_grammar): It is no longer needed to check for
17843 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
17844 * tests/reduce.at (Reduced Automaton): New test.
17845
17846 2002-04-07 Akim Demaille <akim@epita.fr>
17847
17848 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
17849 lacking `+ 1' to nrules, Bison reported as useless a token if it
17850 was used solely to set the precedence of the last rule...
17851
17852 2002-04-07 Akim Demaille <akim@epita.fr>
17853
17854 * data/bison.c++, data/bison.simple: Don't output the current file
17855 name in #line, to avoid useless diffs between two identical
17856 outputs under different names.
17857
17858 2002-04-07 Akim Demaille <akim@epita.fr>
17859
17860 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
17861 Normalize loops to using `< nrules + 1', not `<= nrules'.
17862
17863 2002-04-07 Akim Demaille <akim@epita.fr>
17864
17865 * TODO: Update.
17866
17867 2002-04-07 Akim Demaille <akim@epita.fr>
17868
17869 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
17870 bucket.value as bucket.number.
17871
17872 2002-04-07 Akim Demaille <akim@epita.fr>
17873
17874 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
17875 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17876 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
17877 RHS, instead of being an index in RITEMS.
17878
17879 2002-04-04 Paul Eggert <eggert@twinsun.com>
17880
17881 * doc/bison.texinfo: Update copyright date.
17882 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
17883 (Symbols): Warn about running Bison in one character set,
17884 but compiling and/or running in an incompatible one.
17885 Warn about character code 256, too.
17886
17887 2002-04-03 Paul Eggert <eggert@twinsun.com>
17888
17889 * src/bison.data (YYSTACK_ALLOC): Depend on whether
17890 YYERROR_VERBOSE is nonzero, not whether it is defined.
17891
17892 Merge changes from bison-1_29-branch.
17893
17894 2002-03-20 Paul Eggert <eggert@twinsun.com>
17895
17896 Merge fixes from Debian bison_1.34-1.diff.
17897
17898 * configure.in (AC_PREREQ): 2.53.
17899
17900 2002-03-20 Akim Demaille <akim@epita.fr>
17901
17902 * src/conflicts.c (log_resolution): Argument `resolution' is const.
17903
17904 2002-03-19 Paul Eggert <eggert@twinsun.com>
17905
17906 * src/bison.simple (YYCOPY): New macro.
17907 (YYSTACK_RELOCATE): Use it.
17908 Remove Type arg; no longer needed. All callers changed.
17909 (yymemcpy): Remove; no longer needed.
17910
17911 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
17912 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
17913
17914 2002-03-19 Akim Demaille <akim@epita.fr>
17915
17916 Test and fix the #line outputs.
17917
17918 * tests/atlocal.at (GCC): New.
17919 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
17920 (Prologue synch line, %union synch line, Postprologue synch line)
17921 (Action synch line, Epilogue synch line): New tests.
17922 * src/reader.c (parse_union_decl): Define the muscle stype_line.
17923 * data/bison.simple, data/bison.c++: Use it.
17924
17925 2002-03-19 Akim Demaille <akim@epita.fr>
17926
17927 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
17928 (Solved SR Conflicts, %expect not enough, %expect right)
17929 (%expect too much): Move to...
17930 * tests/conflicts.at: this new file.
17931
17932 2002-03-19 Akim Demaille <akim@epita.fr>
17933
17934 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
17935 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
17936 that we can move to enums for instance.
17937 * src/output.c (token_definitions_output): Output a list of
17938 `token-name, token-number' instead of the #define.
17939 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
17940
17941 2002-03-14 Akim Demaille <akim@epita.fr>
17942
17943 Use Gettext 0.11.1.
17944
17945 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
17946
17947 * data/bison.c++: Make the user able to add members to the generated
17948 parser by subclassing.
17949
17950 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
17951
17952 * src/reader.c (read_additionnal_code): `c' should be an integer, not
17953 a character.
17954 Reported by Nicolas Tisserand and Nicolas Burrus.
17955
17956 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17957
17958 * src/reader.c: Warn about lacking semi-colons, do not complain.
17959
17960 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17961
17962 * data/bison.c++: Remove a debug line.
17963
17964 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
17965
17966 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
17967 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
17968 provide a default implementation.
17969
17970 2002-03-04 Akim Demaille <akim@epita.fr>
17971
17972 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
17973 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
17974 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
17975 * tests/semantic.at (Parsing Guards): Similarly.
17976 * src/reader.at (readgram): Complain if the last rule is not ended
17977 with a semi-colon.
17978
17979 2002-03-04 Akim Demaille <akim@epita.fr>
17980
17981 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
17982 * src/closure.c: here.
17983 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
17984 RTC.
17985 * src/warshall.h, src/warshall.c: Remove.
17986 * tests/sets.at (Broken Closure): Adjust.
17987
17988 2002-03-04 Akim Demaille <akim@epita.fr>
17989
17990 * src/output.c (output_skeleton): tempdir is const.
17991 bytes_read is unused.
17992
17993 2002-03-04 Akim Demaille <akim@epita.fr>
17994
17995 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
17996 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
17997 Update.
17998 From Michael Hayes.
17999
18000 2002-03-04 Akim Demaille <akim@epita.fr>
18001
18002 * src/closure.c (closure): `r' is unused.
18003
18004 2002-03-04 Akim Demaille <akim@epita.fr>
18005
18006 * tests/sets.at (Broken Closure): Add the ending `;'.
18007 * src/reader.at (readgram): Complain if a rule is not ended with a
18008 semi-colon.
18009
18010 2002-03-04 Akim Demaille <akim@epita.fr>
18011
18012 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
18013 (count_sr_conflicts): Use bitset_count.
18014 * src/reduce.c (inaccessable_symbols): Ditto.
18015 (bits_size): Remove.
18016 * src/warshall.h, src/warshall.c: Convert to bitsetv.
18017
18018 2002-03-04 Akim Demaille <akim@epita.fr>
18019
18020 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
18021 * src/reduce.c: Remove the `bitset_zero's following the
18022 `bitset_create's, as now it is performed by the latter.
18023
18024 2002-03-04 Akim Demaille <akim@epita.fr>
18025
18026 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
18027 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
18028 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
18029 latest sources from Michael.
18030
18031 2002-03-04 Akim Demaille <akim@epita.fr>
18032
18033 * src/output.c (output): Don't free the grammar.
18034 * src/reader.c (grammar_free): New.
18035 * src/main.c (main): Call it and don't free symtab here.
18036
18037 2002-03-04 Akim Demaille <akim@epita.fr>
18038
18039 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
18040 before returning.
18041 Reported by Benoit Perrot.
18042
18043 2002-03-04 Akim Demaille <akim@epita.fr>
18044
18045 Use bitset operations when possible, not loops over bits.
18046
18047 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
18048 bitset_or.
18049 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
18050 * src/reduce.c (useless_nonterminals): Formatting changes.
18051 * src/warshall.c (TC): Use bitset_or.
18052
18053 2002-03-04 Akim Demaille <akim@epita.fr>
18054
18055 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
18056 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
18057 Ditto.
18058
18059 2002-03-04 Akim Demaille <akim@epita.fr>
18060
18061 * src/lalr.c (F): Now a bitset*.
18062 Adjust all dependencies.
18063
18064 2002-03-04 Akim Demaille <akim@epita.fr>
18065
18066 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
18067 Adjust all dependencies.
18068
18069 2002-03-04 Akim Demaille <akim@epita.fr>
18070
18071 * src/L0.c, src/LR0.h (nstates): Be size_t.
18072 Adjust comparisons (signed vs unsigned).
18073 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
18074 bitset*.
18075 Adjust all dependencies.
18076
18077 2002-03-04 Akim Demaille <akim@epita.fr>
18078
18079 * src/closure.c (firsts): Now, also a bitset.
18080 Adjust all dependencies.
18081 (varsetsize): Remove, now unused.
18082 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
18083
18084 2002-03-04 Akim Demaille <akim@epita.fr>
18085
18086 * src/print.c: Convert to use bitset.h, not hand coded iterations
18087 over ints.
18088
18089 2002-03-04 Akim Demaille <akim@epita.fr>
18090
18091 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
18092
18093 2002-03-04 Akim Demaille <akim@epita.fr>
18094
18095 * src/closure.c (ruleset): Be a bitset.
18096 (rulesetsize): Remove.
18097
18098 2002-03-04 Akim Demaille <akim@epita.fr>
18099
18100 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18101 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
18102 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
18103 * src/closure.c (fderives): Be an array of bitsets.
18104
18105 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
18106
18107 * data/bison.c++: Merge the two generated headers. Insert a copyright
18108 notice in each output file.
18109
18110 2002-02-28 Akim Demaille <akim@epita.fr>
18111
18112 * data/bison.c++: Copy the prologue of bison.simple to fetch
18113 useful M4 definitions, such as b4_header_guard.
18114
18115 2002-02-25 Akim Demaille <akim@epita.fr>
18116
18117 * src/getargs.c (version): Give the name of the authors, and use a
18118 translator friendly scheme for the bgr
18119 copyright notice.
18120
18121 2002-02-25 Akim Demaille <akim@epita.fr>
18122
18123 * src/output.c (header_output): Remove, now handled completely via
18124 M4.
18125
18126 2002-02-25 Akim Demaille <akim@epita.fr>
18127
18128 * m4/m4.m4: New, from CVS Autoconf.
18129 * configure.in: Invoke it.
18130 * src/output.c (output_skeleton): Use its result instead of the
18131 hard coded name.
18132
18133 2002-02-25 Akim Demaille <akim@epita.fr>
18134
18135 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
18136 Fileutils 4.1.5.
18137 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
18138 * src/output.c (output_skeleton): Use mkstemp to create a real
18139 temporary file.
18140 Move the filling of `skeleton' and its muscle to...
18141 (prepare): here.
18142 (output): Move the definition of the prologue muscle to...
18143 (prepare): here.
18144 * src/system.h (DEFAULT_TMPDIR): New.
18145
18146 2002-02-14 Paul Eggert <eggert@twinsun.com>
18147
18148 Remove the support for C++ namespace cleanliness; it was
18149 causing more problems than it was curing, since it didn't work
18150 properly on some nonstandard C++ compilers. This can wait
18151 for a proper C++ parser.
18152
18153 * NEWS: Document this.
18154 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
18155 of C++, as it's treated like C now.
18156 * src/bison.simple (YYSTD): Remove.
18157 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
18158 Treat C++ just like Standard C instead of trying to support
18159 namespace cleanliness.
18160
18161 2002-02-14 Akim Demaille <akim@epita.fr>
18162
18163 * tests/regression.at (else): Adjust to Andreas' change.
18164
18165 2002-02-14 Akim Demaille <akim@epita.fr>
18166
18167 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
18168
18169 2002-02-13 Andreas Schwab <schwab@suse.de>
18170
18171 * src/output.c (output_rule_data): Don't output NULL, it might
18172 not be defined yet.
18173
18174 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
18175
18176 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
18177 (Copyright notice): Update.
18178
18179 2002-02-11 Akim Demaille <akim@epita.fr>
18180
18181 * tests/regression.at (%nonassoc and eof): Don't include
18182 nonportable headers.
18183
18184 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
18185
18186 * data/bison.c++: Correct error recovery. Make the user able to
18187 initialize the starting location.
18188
18189 2002-02-07 Akim Demaille <akim@epita.fr>
18190
18191 * tests/input.at: New.
18192
18193 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18194
18195 * data/bison.c++: Replace some direct m4 expansions by constants. Be
18196 more consistent when naming methods and variables. Put preprocessor
18197 directives around tables only needed for debugging.
18198
18199 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18200
18201 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
18202 C++ parsers.
18203 (yy::b4_name::parse): Use print_.
18204
18205 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18206
18207 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
18208
18209 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18210
18211 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
18212 C++ parsers.
18213 (yy::b4_name::parse): Build verbose error messages, and use error_.
18214
18215 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
18216
18217 * data/bison.c++: Fix m4 quoting in comments.
18218
18219 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
18220
18221 * data/bison.c++: Adjust the parser code. Fix some muscles that were
18222 not expanded by m4.
18223
18224 2002-02-05 Akim Demaille <akim@epita.fr>
18225
18226 * data/bison.c++: Adjust to the M4 back end.
18227 More is certainly needed.
18228
18229 2002-02-05 Akim Demaille <akim@epita.fr>
18230
18231 Give a try to M4 as a back end.
18232
18233 * lib/readpipe.c: New, from wdiff.
18234 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
18235 BISON_HAIRY.
18236 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
18237 specific values. Now it is m4 that performs the lookup.
18238 * src/parse-skel.y: Remove.
18239 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
18240 * src/output.c (actions_output, guards_output)
18241 (token_definitions_output): No longer keeps track of the output
18242 line number, hence remove the second argument.
18243 (guards_output): Check against the guard member of a rule, not the
18244 action member.
18245 Adjust callers.
18246 (output_skeleton): Don't look for the skeleton location, let m4 do
18247 that.
18248 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
18249 file will be used.
18250 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
18251 (prepare): Given that for the time being changesyntax is not
18252 usable in M4, rename the muscles using `-' to `_'.
18253 Define `defines_flag', `output_parser_name' and `output_header_name'.
18254 * src/output.h (actions_output, guards_output)
18255 (token_definitions_output): Adjust prototypes.
18256 * src/scan-skel.l: Instead of scanning the skeletons, it now
18257 processes the output of m4: `__oline__' and `#output'.
18258 * data/bison.simple: Adjust to be used by M4(sugar).
18259 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
18260 to date.
18261 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
18262 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
18263 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
18264 shamelessly stolen from CVS Autoconf.
18265
18266 2002-02-05 Akim Demaille <akim@epita.fr>
18267
18268 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
18269 * configure.in: Check for the declarations of free and malloc.
18270 * src/muscle_tab.c: Adjust.
18271
18272 2002-02-05 Akim Demaille <akim@epita.fr>
18273
18274 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
18275 which have no values.
18276
18277 2002-02-05 Akim Demaille <akim@epita.fr>
18278
18279 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
18280 * data/: here.
18281
18282 2002-01-29 Paul Eggert <eggert@twinsun.com>
18283
18284 * src/bison.simple (YYSIZE_T): Do not define merely because
18285 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
18286 On some platforms, <alloca.h> does not declare YYSTD (size_t).
18287
18288 2002-01-27 Akim Demaille <akim@epita.fr>
18289
18290 Fix `%nonassoc and eof'.
18291
18292 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
18293 which were not properly copied! Replace
18294 memcpy (res->errs, src->errs, src->nerrs);
18295 with
18296 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
18297 !!!
18298 * tests/regression.at (%nonassoc and eof): Adjust to newest
18299 Autotest: `.' is not in the PATH.
18300
18301 2002-01-27 Akim Demaille <akim@epita.fr>
18302
18303 * tests/sets.at (AT_EXTRACT_SETS): New.
18304 (Nullable): Use it.
18305 (Firsts): New.
18306
18307 2002-01-26 Akim Demaille <akim@epita.fr>
18308
18309 * tests/actions.at, tests/calc.at, tests/headers.at,
18310 * tests/torture.at: Adjust to the newest Autotest which no longer
18311 forces `.' in the PATH.
18312
18313 2002-01-25 Akim Demaille <akim@epita.fr>
18314
18315 * tests/regression.at (%nonassoc and eof): New.
18316 Suggested by Robert Anisko.
18317
18318 2002-01-24 Akim Demaille <akim@epita.fr>
18319
18320 Bison dumps core when trying to complain about broken input files.
18321 Reported by Cris van Pelt.
18322
18323 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
18324 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
18325 into...
18326 (Invalid inputs): Strengthen: exercise parse_percent_token.
18327
18328 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
18329
18330 * src/Makefile.am: Add bison.c++.
18331 * src/bison.c++: New skeleton.
18332
18333 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
18334
18335 * po/it.po: New.
18336
18337 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
18338
18339 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
18340
18341 2002-01-20 Marc Autret <marc@gnu.org>
18342
18343 * src/files.c (compute_output_file_names): Fix
18344
18345 2002-01-20 Marc Autret <marc@gnu.org>
18346
18347 * tests/output.at: New test.
18348 * src/files.c (compute_base_names): Don't map extensions when
18349 the YACC flag is set, use defaults.
18350 Reported by Evgeny Stambulchik.
18351
18352 2002-01-20 Marc Autret <marc@gnu.org>
18353
18354 * src/system.h: Need to define __attribute__ away for non-GCC
18355 compilers as well (i.e., the vendor C compiler).
18356 Suggested by Albert Chin-A-Young.
18357
18358 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
18359
18360 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
18361 canonical definition.
18362 * src/system.h: Use the canonical definition for PARAMS (avoids
18363 a conflict with the macro from lib/hash.h).
18364
18365 2002-01-11 Akim Demaille <akim@epita.fr>
18366
18367 * configure.in: Use AC_FUNC_STRNLEN.
18368 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
18369
18370 2002-01-09 Akim Demaille <akim@epita.fr>
18371
18372 * src/files.c, src/files.h (output_infix): New.
18373 (tab_extension): Remove.
18374 (compute_base_names): Compute the former, drop the latter.
18375 * src/output.c (prepare): Insert the muscles `output-infix', and
18376 `output-suffix'.
18377 * src/parse-skel.y (string, string.1): New.
18378 (section.header): Use it.
18379 (section.yacc): Remove.
18380 (prefix): Remove too.
18381 * src/scan-skel.l: Adjust.
18382 * src/bison.simple, src/bison.hairy: Adjust.
18383
18384 2002-01-09 Akim Demaille <akim@epita.fr>
18385
18386 * configure.in (WERROR_CFLAGS): Compute it.
18387 * src/Makefile.am (CFLAGS): Pass it.
18388 * tests/atlocal.in (CFLAGS): Idem.
18389 * src/files.c: Fix a few warnings.
18390 (get_extension_index): Remove, unused.
18391
18392 2002-01-08 Akim Demaille <akim@epita.fr>
18393
18394 * src/getargs.c (AS_FILE_NAME): New.
18395 (getargs): Use it to convert DOSish file names.
18396 * src/files.c (base_name): Rename as full_base_name to avoid
18397 clashes with `base_name ()'.
18398 (filename_split): New.
18399 (compute_base_names): N-th rewrite, using filename_split.
18400
18401 2002-01-08 Akim Demaille <akim@epita.fr>
18402
18403 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
18404 New, stolen from the Fileutils 4.1.
18405 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18406 * configure.in: Check for the presence of memrchr, and of its
18407 prototype.
18408
18409 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
18410
18411 * lib/hash.h (__P): Added definition for this macro.
18412 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
18413 BUILT_SOURCES, to ensure they are generated first.
18414 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
18415 %error-verbose to allow bootstrapping with bison 1.30x.
18416
18417 2002-01-06 Akim Demaille <akim@epita.fr>
18418
18419 * src/reader.c (parse_braces): Don't fetch the next char, the
18420 convention is to fetch on entry.
18421 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
18422 'switch' without a following semicolon.
18423 * tests/regression.at (braces parsing): New.
18424
18425 2002-01-06 Akim Demaille <akim@epita.fr>
18426
18427 Bison is dead wrong in its RR conflict reports.
18428
18429 * tests/torture.at (GNU Cim Grammar): New.
18430 * src/conflicts.c (count_rr_conflicts): Fix.
18431
18432 2002-01-06 Akim Demaille <akim@epita.fr>
18433
18434 Creating package.m4 from configure.ac causes too many problems.
18435
18436 * tests/Makefile.am (package.m4): Create it by hand,
18437 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
18438
18439 2002-01-06 Akim Demaille <akim@epita.fr>
18440
18441 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
18442 skeleton.h.
18443
18444 2002-01-04 Paul Eggert <eggert@twinsun.com>
18445
18446 * doc/bison.texinfo (Debugging):
18447 Remove YYSTDERR; it's no longer defined or used.
18448 Also, s/cstdio.h/cstdio/.
18449
18450 2002-01-03 Akim Demaille <akim@epita.fr>
18451
18452 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
18453
18454 2002-01-03 Akim Demaille <akim@epita.fr>
18455
18456 * src/parse-skel.y (process_skeleton): Don't bind the parser's
18457 tracing code to --trace, wait for a better --trace option, with
18458 args.
18459
18460 2002-01-03 Akim Demaille <akim@epita.fr>
18461
18462 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
18463 The ISO C++ standard is extremely clear about it: stderr is
18464 considered a macro, not a regular symbol (see table 94 `Header
18465 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
18466 Therefore std:: does not apply to it. It still does with fprintf.
18467 Also, s/cstdio.h/cstdio/.
18468
18469 2002-01-03 Akim Demaille <akim@epita.fr>
18470
18471 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
18472 for non system headers.
18473
18474 2002-01-02 Akim Demaille <akim@epita.fr>
18475
18476 Equip the skeleton chain with location tracking, runtime trace,
18477 pure parser and scanner.
18478
18479 * src/parse-skel.y: Request a pure parser, locations, and prefix
18480 renaming.
18481 (%union): Having several members with the same type does not help
18482 type mismatches, simplify.
18483 (YYPRINT, yyprint): New.
18484 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
18485 (skel_error): this.
18486 Handle locations.
18487 * src/scan-skel.l: Adjust to these changes.
18488 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
18489 (LOCATION_PRINT, skel_control_t): New.
18490
18491 2001-12-30 Akim Demaille <akim@epita.fr>
18492
18493 * src/parse-skel.y: Get rid of the shift/reduce conflict:
18494 replace `gb' with BLANKS.
18495 * src/scan-skel.l: Adjust.
18496
18497 2001-12-30 Akim Demaille <akim@epita.fr>
18498
18499 * src/system.h: We don't need nor want bcopy.
18500 Throw away MS-DOS crap: we don't need getpid.
18501 * configure.in: We don't need strndup. It was even causing
18502 problems: because Flex includes the headers *before* us,
18503 _GNU_SOURCE is not defined by config.h, and therefore strndup was
18504 not visible.
18505 * lib/xstrndup.c: New.
18506 * src/scan-skel.l: Use it.
18507 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
18508 * src/parse-skel.y: Use %directives instead of #defines.
18509
18510 2001-12-30 Akim Demaille <akim@epita.fr>
18511
18512 * src/skeleton.h: New.
18513 * src/output.c (output_parser, output_master_parser): Remove, dead
18514 code.
18515 * src/output.h (get_lines_number, actions_output, guards_output)
18516 (token_definitions_output): Prototype them.
18517 * src/parse-skel.y: Add the license notice.
18518 Include output.h and skeleton.h.
18519 (process_skeleton): Returns void, and takes a single parameter.
18520 * src/scan-skel.l: Add the license notice.
18521 Include skeleton.h.
18522 Don't use %option yylineno: it seems that then Flex imagines
18523 REJECT has been used, and therefore it won't reallocate its
18524 buffers (which makes no other sense to me than a bug). It results
18525 in warnings for `unused: yy_flex_realloc'.
18526
18527 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
18528
18529 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18530 (MUSCLE_INSERT_PREFIX): ...to there.
18531 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18532 (MUSCLE_INSERT_PREFIX): Move from here...
18533
18534 * src/bison.hairy: Add a section directive. Put braces around muscle
18535 names. This parser skeleton is still broken, but Bison should not
18536 choke on a bad muscle 'syntax'.
18537 * src/bison.simple: Add a section directive. Put braces around muscle
18538 names.
18539
18540 * src/files.h (strsuffix, stringappend): Add declarations.
18541 (tab_extension): Add declaration.
18542 (short_base_name): Add declaration.
18543
18544 * src/files.c (strsuffix, stringappend): No longer static. These
18545 functions are used in the skeleton parser.
18546 (tab_extension): New.
18547 (compute_base_names): Use the computations done in this function
18548 to guess if the generated parsers should have '.tab' in their
18549 names.
18550 (short_base_name): No longer static.
18551
18552 * src/output.c (output_skeleton): New.
18553 (output): Disable call to output_master_parser, and give a try to
18554 a new skeleton handling system.
18555 (guards_output, actions_output): No longer static.
18556 (token_definitions_output, get_lines_number): No longer static.
18557
18558 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
18559
18560 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
18561 parse-skel.y.
18562
18563 * src/parse-skel.y: New file.
18564 * src/scan-skel.l: New file.
18565
18566 2001-12-29 Akim Demaille <akim@epita.fr>
18567
18568 %name-prefix is broken.
18569
18570 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
18571 Adjust all dependencies.
18572 * tests/headers.at (export YYLTYPE): Strengthen this test: use
18573 %name-prefix.
18574
18575 Renaming yylval but not yylloc is not consistent. Now we do.
18576
18577 * src/bison.simple: Prefix yylloc if used.
18578 * doc/bison.texinfo (Decl Summary): Document that.
18579
18580 2001-12-29 Akim Demaille <akim@epita.fr>
18581
18582 * doc/bison.texinfo: Promote `%long-directive' over
18583 `%long_directive'.
18584 Remove all references to fixed-output-files, yacc is enough.
18585
18586 2001-12-29 Akim Demaille <akim@epita.fr>
18587
18588 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
18589 user prologue. These are defaults.
18590 * tests/actions.at (Mid-rule actions): Make sure the user can
18591 define YYDEBUG and YYERROR_VERBOSE.
18592
18593 2001-12-29 Akim Demaille <akim@epita.fr>
18594
18595 * src/output.c (header_output): Don't forget to export YYLTYPE and
18596 yylloc.
18597 * tests/headers.at (export YYLTYPE): New, make sure it does.
18598 * tests/regression.at (%union and --defines, Invalid CPP headers):
18599 Move to...
18600 * tests/headers.at: here.
18601
18602 2001-12-29 Akim Demaille <akim@epita.fr>
18603
18604 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
18605
18606 2001-12-29 Akim Demaille <akim@epita.fr>
18607
18608 * tests/actions.at (Mid-rule actions): Output on a single line
18609 instead of several.
18610
18611 2001-12-29 Akim Demaille <akim@epita.fr>
18612
18613 * doc/bison.texinfo: Formatting changes.
18614
18615 2001-12-29 Akim Demaille <akim@epita.fr>
18616
18617 Don't store the token defs in a muscle, just be ready to output it
18618 on command. Now possible via `symbols'. Fixes a memory leak.
18619
18620 * src/output.c (token_definitions_output): New.
18621 (output_parser, header_output): Use it.
18622 * src/reader.c (symbols_save): Remove.
18623
18624 2001-12-29 Akim Demaille <akim@epita.fr>
18625
18626 * src/bison.simple: Do not provide a default for YYSTYPE and
18627 YYLTYPE before the user's prologue. Otherwise it's hardly... a
18628 default.
18629
18630 2001-12-29 Akim Demaille <akim@epita.fr>
18631
18632 Mid-rule actions are simply... ignored!
18633
18634 * src/reader.c (readgram): Be sure to attach mid-rule actions to
18635 the empty-rule associated to the dummy symbol, not to the host
18636 rule.
18637 * tests/actions.at (Mid-rule actions): New.
18638
18639 2001-12-29 Akim Demaille <akim@epita.fr>
18640
18641 Memory leak.
18642
18643 * src/reader.c (reader): Free grammar.
18644
18645 2001-12-29 Akim Demaille <akim@epita.fr>
18646
18647 Memory leak.
18648
18649 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
18650 since it allocates it for each state, although only one is needed.
18651 (allocate_storage): Do it here.
18652
18653 2001-12-29 Akim Demaille <akim@epita.fr>
18654
18655 * src/options.h, src/options.c (create_long_option_table): Rename
18656 as...
18657 (long_option_table_new): this, with a clearer prototype.
18658 (percent_table): Remove, unused,
18659 * src/getargs.c (getargs): Adjust.
18660
18661 2001-12-29 Akim Demaille <akim@epita.fr>
18662
18663 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
18664 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
18665 as states.
18666
18667 2001-12-29 Akim Demaille <akim@epita.fr>
18668
18669 * src/lalr.c (build_relations): Rename `states' as `states1'.
18670 Sorry, I don't understand exactly what it is, no better name...
18671
18672 2001-12-29 Akim Demaille <akim@epita.fr>
18673
18674 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
18675 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
18676 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
18677 as rules.
18678
18679 2001-12-29 Akim Demaille <akim@epita.fr>
18680
18681 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
18682 ago.
18683
18684 2001-12-29 Akim Demaille <akim@epita.fr>
18685
18686 * src/reader.c, src/reader.h (user_toknums): Remove.
18687 Adjust all users to use symbols[i]->user_token_number.
18688
18689 2001-12-29 Akim Demaille <akim@epita.fr>
18690
18691 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
18692 Adjust all users to use symbols[i]->prec or ->assoc.
18693
18694 2001-12-29 Akim Demaille <akim@epita.fr>
18695
18696 * src/reader.c, src/reader.h (tags): Remove.
18697 Adjust all users to use symbols[i]->tag.
18698
18699 2001-12-29 Akim Demaille <akim@epita.fr>
18700
18701 * src/gram.h, src/gram.c (symbols): New, similar to state_table
18702 and rule_table.
18703 * src/reader.c (packsymbols): Fill this table.
18704 Drop sprec.
18705 * src/conflicts.c (resolve_sr_conflict): Adjust.
18706 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
18707 single table.
18708 Use symbols[i]->tag instead of tags[i].
18709
18710 2001-12-29 Akim Demaille <akim@epita.fr>
18711
18712 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
18713 In addition, put a comment in there, to replace...
18714 * tests/regression.at (%union and C comments): Remove.
18715
18716 2001-12-29 Akim Demaille <akim@epita.fr>
18717
18718 * tests/regression.at (Web2c Actions): Blindly move the actual
18719 output as expected output. The contents *seem* right to me, but I
18720 can't pretend reading perfectly parser tables... Nonetheless, all
18721 the other tests pass correctly, the table look OK, even though the
18722 presence of `$axiom' is to be noted: AFAICS it is useless (but
18723 harmless).
18724
18725 2001-12-29 Akim Demaille <akim@epita.fr>
18726
18727 * src/reader.c (readgram): Don't add the rule 0 if there were no
18728 rules read. In other words, add it _after_ having performed
18729 grammar sanity checks.
18730 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
18731
18732 2001-12-29 Akim Demaille <akim@epita.fr>
18733
18734 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
18735 visible, and some states have now a different number.
18736
18737 2001-12-29 Akim Demaille <akim@epita.fr>
18738
18739 * src/reader.c (readgram): Bind the initial rule's lineno to that
18740 of the first rule.
18741 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
18742 (Solved SR Conflicts): Adjust rule 0's line number.
18743
18744 2001-12-29 Akim Demaille <akim@epita.fr>
18745
18746 Fix the `GAWK Grammar' failure.
18747
18748 * src/LR0.c (final_state): Initialize to -1 so that we do compute
18749 the reductions of the first state which was mistakenly confused
18750 with the final state because precisely final_state was initialized
18751 to 0.
18752 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
18753 now noticed by Bison.
18754 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
18755 have a reduction on $default.
18756
18757 2001-12-29 Akim Demaille <akim@epita.fr>
18758
18759 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
18760 rule line numbers.
18761 * src/closure.c (print_closure): Likewise.
18762 * src/derives.c (print_derives): Likewise.
18763 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
18764 now.
18765
18766 2001-12-29 Akim Demaille <akim@epita.fr>
18767
18768 * src/lalr.c (lookaheads_print): New.
18769 (lalr): Call it when --trace-flag.
18770 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
18771 are dumped.
18772
18773 2001-12-29 Akim Demaille <akim@epita.fr>
18774
18775 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
18776 when walking through ritem, even via rule->rhs.
18777 * src/reduce.c (dump_grammar, useful_production, reduce_output)
18778 (useful_production, useless_nonterminals): Likewise.
18779 (reduce_grammar_tables): Likewise, plus update nritems.
18780 * src/nullable.c (set_nullable): Likewise.
18781 * src/lalr.c (build_relations): Likewise.
18782 * tests/sets.at (Nullable): Adjust.
18783 Fortunately, now, the $axiom is no longer nullable.
18784
18785 2001-12-29 Akim Demaille <akim@epita.fr>
18786
18787 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
18788 the 0-sentinel.
18789 * src/gram.c (ritem_longest_rhs): Likewise.
18790 * src/reduce.c (nonterminals_reduce): Likewise.
18791 * src/print_graph.c (print_graph): Likewise.
18792 * src/output.c (output_rule_data): Likewise.
18793 * src/nullable.c (set_nullable): Likewise.
18794
18795 2001-12-29 Akim Demaille <akim@epita.fr>
18796
18797 * src/output.c: Comment changes.
18798
18799 2001-12-27 Paul Eggert <eggert@twinsun.com>
18800
18801 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
18802 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
18803 Sparc, as they were causing more porting problems than the
18804 (minor) performance improvement was worth.
18805
18806 Also, catch up with 1.31's YYSTD.
18807
18808 2001-12-27 Akim Demaille <akim@epita.fr>
18809
18810 * src/output.c (output_gram): Rely on nritems, not the
18811 0-sentinel. See below.
18812 Use -1 as separator, not 0.
18813 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
18814 Rely on -1 as separator in yyrhs, instead of 0.
18815 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
18816 twice `Now at end of input', therefore there are two lines less to
18817 expect.
18818
18819 2001-12-27 Akim Demaille <akim@epita.fr>
18820
18821 * tests/regression.at (Unresolved SR Conflicts):
18822 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
18823 below.
18824
18825 2001-12-27 Akim Demaille <akim@epita.fr>
18826
18827 * src/LR0.c (new_state): Recognize the final state by the fact it
18828 is reached by eoftoken.
18829 (insert_start_shifting_state, insert_eof_shifting_state)
18830 (insert_accepting_state, augment_automaton): Remove, since now
18831 these states are automatically computed from the initial state.
18832 (generate_states): Adjust.
18833 * src/print.c: When reporting a rule number to the user, substract
18834 1, so that the axiom rule is rule 0, and the first user rule is 1.
18835 * src/reduce.c: Likewise.
18836 * src/print_graph.c (print_core): For the time being, just as for
18837 the report, depend upon --trace-flags to dump the full set of
18838 items.
18839 * src/reader.c (readgram): Once the grammar read, insert the rule
18840 0: `$axiom: START-SYMBOL $'.
18841 * tests/set.at: Adjust: rule 0 is now displayed, and since the
18842 number of the states has changed (the final state is no longer
18843 necessarily the last), catch up.
18844
18845 2001-12-27 Akim Demaille <akim@epita.fr>
18846
18847 Try to make the use of the eoftoken valid. Given that its value
18848 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
18849 is used instead of > 0 where appropriate, (ii), depend upon nritems
18850 instead of the 0-sentinel.
18851
18852 * src/gram.h, src/gram.c (nritems): New.
18853 Expected to be duplication of nitems, but for the time being...
18854 * src/reader.c (packgram): Assert nritems and nitems are equal.
18855 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
18856 * src/closure.c (print_closure, print_fderives): Likewise.
18857 * src/gram.c (ritem_print): Likewise.
18858 * src/print.c (print_core, print_grammar): Likewise.
18859 * src/print_graph.c: Likewise.
18860
18861 2001-12-27 Akim Demaille <akim@epita.fr>
18862
18863 * src/main.c (main): If there are complains after grammar
18864 reductions, then output the report anyway if requested, then die.
18865 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
18866 * src/reader.c (eoftoken): New.
18867 (parse_token_decl): If the token being defined has value `0', it
18868 is the eoftoken.
18869 (packsymbols): No longer hack `tags' to insert `$' by hand.
18870 Be sure to preserve the value of the eoftoken.
18871 (reader): Make sure eoftoken is defined.
18872 Initialize nsyms to 0: now eoftoken is created just like the others.
18873 * src/print.c (print_grammar): Don't special case the eof token.
18874 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
18875 lie anyway, albeit pleasant.
18876 * tests/calc.at: Exercise error messages with eoftoken.
18877 Change the grammar so that empty input is invalid.
18878 Adjust expectations.
18879 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
18880
18881 2001-12-27 Akim Demaille <akim@epita.fr>
18882
18883 * configure.in: Check the protos of strchr ans strspn.
18884 Replace strchr if needed.
18885 * src/system.h: Provide the protos of strchr, strspn and memchr if
18886 missing.
18887 * lib/strchr.c: New.
18888 * src/reader.c (symbols_save): Use strchr.
18889
18890 2001-12-27 Akim Demaille <akim@epita.fr>
18891
18892 * src/print.c, src/print_graph.c (escape): New.
18893 Use it to quote the TAGS outputs.
18894 * src/print_graph.c (print_state): Now errors are in red, and
18895 reductions in green.
18896 Prefer high to wide: output the state number on a line of its own.
18897
18898 2001-12-27 Akim Demaille <akim@epita.fr>
18899
18900 * src/state.h, src/state.c (reductions_new): New.
18901 * src/LR0.c (set_state_table): Let all the states have a
18902 `reductions', even if reduced to 0.
18903 (save_reductions): Adjust.
18904 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
18905 * src/print.c (print_reductions, print_actions): Adjust.
18906 * src/output.c (action_row): Adjust.
18907
18908 2001-12-27 Akim Demaille <akim@epita.fr>
18909
18910 * src/state.h, src/state.c (errs_new, errs_dup): New.
18911 * src/LR0.c (set_state_table): Let all the states have an errs,
18912 even if reduced to 0.
18913 * src/print.c (print_errs, print_reductions): Adjust.
18914 * src/output.c (output_actions, action_row): Adjust.
18915 * src/conflicts.c (resolve_sr_conflict): Adjust.
18916
18917 2001-12-27 Akim Demaille <akim@epita.fr>
18918
18919 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
18920
18921 2001-12-27 Akim Demaille <akim@epita.fr>
18922
18923 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
18924 * src/print.c: here.
18925 (lookaheadset, shiftset): New, used as additional storage by
18926 print_reductions.
18927 (print_results): Adjust.
18928 (print_shifts, print_gotos, print_errs): New, extracted from...
18929 (print_actions): here.
18930 * src/print_graph.c (print_actions): Remove dead code.
18931
18932 2001-12-27 Akim Demaille <akim@epita.fr>
18933
18934 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
18935 `$n' and `@n'.
18936
18937 2001-12-27 Akim Demaille <akim@epita.fr>
18938
18939 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
18940 (build_relations): Adjust.
18941
18942 2001-12-27 Akim Demaille <akim@epita.fr>
18943
18944 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
18945 duplication.
18946
18947 2001-12-27 Akim Demaille <akim@epita.fr>
18948
18949 * src/reader.c (packgram): Catch nitems overflows.
18950
18951 2001-12-27 Akim Demaille <akim@epita.fr>
18952
18953 * src/files.c, src/files.h (guard_obstack): Remove.
18954 * src/output.c (output): Adjust.
18955 * src/reader.c (parse_braces): New, factoring...
18956 (copy_action, copy_guard): these two which are renamed as...
18957 (parse_action, parse_guard): these.
18958 As a voluntary consequence, using braces around guards is now
18959 mandatory.
18960
18961 2001-12-27 Akim Demaille <akim@epita.fr>
18962
18963 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
18964 * src/reader.c (symbol_list): `guard' and `guard_line' are new
18965 members.
18966 (symbol_list_new): Adjust.
18967 (copy_action): action_line is the first line, not the last.
18968 (copy_guard): Just as for actions, store the `action' only, not
18969 the switch/case/break flesh.
18970 Don't parse the user action that might follow the guard, let...
18971 (readgram): do it, i.e., now, there can be an action after a
18972 guard.
18973 In other words the guard is just explicitly optional.
18974 (packgram): Adjust.
18975 * src/output.c (guards_output): New.
18976 (output_parser): Call it when needed.
18977 (output): Also free the guard and attrs obstacks.
18978 * src/files.c, src/files.h (obstack_save): Remove.
18979 (output_files): Remove.
18980 As a result, if one needs the former `.act' file, using an
18981 appropriate skeleton which requires actions and guards is now
18982 required.
18983 * src/main.c (main): Adjust.
18984 * tests/semantic.at: New.
18985 * tests/regression.at: Use `input.y' as input file name.
18986 Avoid 8+3 problems by requiring input.c when the test needs the
18987 parser.
18988
18989 2001-12-27 Akim Demaille <akim@epita.fr>
18990
18991 * src/reader.c (symbol_list_new): Be sure to initialize all the
18992 fields.
18993
18994 2001-12-27 Akim Demaille <akim@epita.fr>
18995
18996 All the hacks using a final pseudo state are now useless.
18997
18998 * src/LR0.c (set_state_table): state_table holds exactly nstates.
18999 * src/lalr.c (nLA): New.
19000 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
19001 instead of lookaheadsp from the pseudo state (nstate + 1).
19002
19003 2001-12-27 Akim Demaille <akim@epita.fr>
19004
19005 * src/output.c (action_row, token_actions): Use a state_t instead
19006 of a integer, and nlookaheads instead of the following state's
19007 lookaheadsp.
19008
19009 2001-12-27 Akim Demaille <akim@epita.fr>
19010
19011 * src/conflicts.c (log_resolution, flush_shift)
19012 (resolve_sr_conflict, set_conflicts, solve_conflicts)
19013 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
19014 (conflicts_print, print_reductions): Use a state_t instead of an
19015 integer when referring to a state.
19016 As much as possible, depend upon nlookaheads, instead of the
19017 `lookaheadsp' member of the following state (since lookaheads of
19018 successive states are successive, the difference between state n + 1
19019 and n served as the number of lookaheads for state n).
19020 * src/lalr.c (add_lookback_edge): Likewise.
19021 * src/print.c (print_core, print_actions, print_state)
19022 (print_results): Likewise.
19023 * src/print_graph.c (print_core, print_actions, print_state)
19024 (print_graph): Likewise.
19025 * src/conflicts.h: Adjust.
19026
19027 2001-12-27 Akim Demaille <akim@epita.fr>
19028
19029 * src/bison.hairy: Formatting/comment changes.
19030 ANSIfy.
19031 Remove `register' indications.
19032 Add plenty of `static'.
19033
19034 2001-12-27 Akim Demaille <akim@epita.fr>
19035
19036 * src/output.c (prepare): Drop the muscle `ntbase' which
19037 duplicates ntokens.
19038 * src/bison.simple: Formatting/comment changes.
19039 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
19040 is an undocumented synonym.
19041
19042 2001-12-22 Akim Demaille <akim@epita.fr>
19043
19044 * src/output.c (output_table_data): Change the prototype to use
19045 `int' for array ranges: some invocations do pass an int, not a
19046 short.
19047 Reported by Wayne Green.
19048
19049 2001-12-22 Akim Demaille <akim@epita.fr>
19050
19051 Some actions of web2c.y are improperly triggered.
19052 Reported by Mike Castle.
19053
19054 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
19055 * tests/regression.at (Web2c): Rename as...
19056 (Web2c Report): this.
19057 (Web2c Actions): New.
19058
19059 2001-12-22 Akim Demaille <akim@epita.fr>
19060
19061 Reductions in web2c.y are improperly reported.
19062 Reported by Mike Castle.
19063
19064 * src/conflicts.c (print_reductions): Fix.
19065 * tests/regression.at (Web2c): New.
19066
19067 2001-12-18 Akim Demaille <akim@epita.fr>
19068
19069 Some host fail on `assert (!"foo")', which expands to
19070 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
19071 Reported by Nelson Beebee.
19072
19073 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
19074 `#define it_succeeded 0' and `assert (it_succeeded)'.
19075
19076 2001-12-17 Marc Autret <autret_m@epita.fr>
19077
19078 * src/bison.simple: Don't hard code the skeleton line and filename.
19079 * src/output.c (output_parser): Rename 'line' as 'output_line'.
19080 New line counter 'skeleton_line' (skeleton-line muscle).
19081
19082 2001-12-17 Paul Eggert <eggert@twinsun.com>
19083
19084 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
19085 YYDEBUG must be defined to a nonzero value.
19086
19087 * src/bison.simple (yytname): Do not assume that the user defines
19088 YYDEBUG to a properly parenthesized expression.
19089
19090 2001-12-17 Akim Demaille <akim@epita.fr>
19091
19092 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
19093 nlookaheads is a new member.
19094 Adjust all users.
19095 * src/lalr.h (nlookaheads): Remove this orphan declaration.
19096 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
19097 state.
19098
19099 2001-12-17 Akim Demaille <akim@epita.fr>
19100
19101 * src/files.h, src/files.c (open_files, close_files): Remove.
19102 * src/main.c (main): Don't open/close files, nor invoke lex_free,
19103 let...
19104 * src/reader.c (reader): Do it.
19105
19106 2001-12-17 Akim Demaille <akim@epita.fr>
19107
19108 * src/conflicts.c (print_reductions): Formatting changes.
19109
19110 2001-12-17 Akim Demaille <akim@epita.fr>
19111
19112 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
19113 (flush_reduce): New.
19114 (resolve_sr_conflict): Adjust.
19115
19116 2001-12-17 Akim Demaille <akim@epita.fr>
19117
19118 * src/output.c (output_obstack): Be static and rename as...
19119 (format_obstack): this, to avoid any confusion with files.c's
19120 output_obstack.
19121 * src/reader.h (muscle_obstack): Move to...
19122 * src/output.h: here, since it's defined in output.c.
19123
19124 2001-12-17 Akim Demaille <akim@epita.fr>
19125
19126 * src/output.c (action_row, save_column, default_goto)
19127 (sort_actions, matching_state, pack_vector): Better variable
19128 locality.
19129
19130 2001-12-17 Akim Demaille <akim@epita.fr>
19131
19132 * src/output.c: Various formatting changes.
19133
19134 2001-12-17 Akim Demaille <akim@epita.fr>
19135
19136 * src/files.c (output_files): Free the output_obstack.
19137 * src/main.c (main): Call print and print_graph conditionally.
19138 * src/print.c (print): Work unconditionally.
19139 * src/print_graph.c (print_graph): Work unconditionally.
19140 * src/conflicts.c (log_resolution): Output only if verbose_flag.
19141
19142 2001-12-16 Marc Autret <autret_m@epita.fr>
19143
19144 * src/output.c (actions_output): Fix. When we use %no-lines,
19145 there is one less line per action.
19146
19147 2001-12-16 Marc Autret <autret_m@epita.fr>
19148
19149 * src/bison.simple: Remove a useless #line directive.
19150 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
19151 * src/output.c (get_lines_number): New.
19152 (output_parser): Adjust, now takes care about the lines of a
19153 output muscles.
19154 Fix line numbering.
19155 (actions_output): Computes the number of lines taken by actions.
19156 (output_master_parser): Insert new skeleton which is the name of
19157 the output parser file name.
19158
19159 2001-12-15 Marc Autret <autret_m@epita.fr>
19160
19161 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
19162
19163 2001-12-15 Marc Autret <autret_m@epita.fr>
19164
19165 * src/output.c (output_gram): Keep track of the hairy one.
19166
19167 2001-12-15 Akim Demaille <akim@epita.fr>
19168
19169 Make `make distcheck' work.
19170
19171 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
19172 system.h which uses libgettext.h.
19173
19174 2001-12-15 Akim Demaille <akim@epita.fr>
19175
19176 * src/nullable.c (set_nullable): Useless rules must be skipped,
19177 otherwise, since we range over their symbols, we might look at a
19178 nonterminal which no longer ``exists'', i.e., it is not counted in
19179 `nvars', hence we overflow our arrays.
19180
19181 2001-12-15 Akim Demaille <akim@epita.fr>
19182
19183 The header can also be produced directly, without any obstack!
19184 Yahoo!
19185
19186 * src/files.c, src/files.h (defines_obstack): Remove.
19187 (compute_header_macro): Global.
19188 (defines_obstack_save): Remove.
19189 * src/reader.c (parse_union_decl): No longer output to
19190 defines_obstack: its content can be found in the `stype' muscle
19191 anyway.
19192 (output_token_translations): Merge into...
19193 (symbols_output): this.
19194 Rename as...
19195 (symbols_save): this.
19196 (reader): Adjust.
19197 * src/output.c (header_output): New.
19198 (output): Call it.
19199
19200 2001-12-15 Akim Demaille <akim@epita.fr>
19201
19202 * src/reader.c (parse_union_decl): Instead of handling two obstack
19203 simultaneously, use one to define the `stype' muscle, and use the
19204 value of the latter to fill defines_obstack.
19205 (copy_comment): Remove.
19206 (copy_comment2): Work for a single obstack.
19207 Rename as...
19208 (copy_comment): this.
19209
19210 2001-12-15 Akim Demaille <akim@epita.fr>
19211
19212 * src/lex.c, src/lex.h (xgetc): No longer static.
19213 * src/reader.c (parse_union_decl): Revamp.
19214
19215 2001-12-15 Akim Demaille <akim@epita.fr>
19216
19217 Still making progress in separating Bison into (i) input, (ii)
19218 process, (iii) output: now we can directly output the parser file
19219 without using table_obstack at all.
19220
19221 * src/files.c, src/files.h (table_obstack): Bye bye.
19222 (parser_file_name): New.
19223 * src/files.c (compute_output_file_names): Compute it.
19224 * src/output.c (actions_output, output_parser)
19225 (output_master_parser): To a file instead of an obstack.
19226
19227 2001-12-15 Akim Demaille <akim@epita.fr>
19228
19229 Attach actions to rules, instead of pre-outputting them to
19230 actions_obstack.
19231
19232 * src/gram.h (rule_t): action and action_line are new members.
19233 * src/reader.c (symbol_list): Likewise.
19234 (copy_action): Save the actions within the rule.
19235 (packgram): Save them in rule_table.
19236 * src/output.c (actions_output): New.
19237 (output_parser): Use it on `%%actions'.
19238 (output_rule_data): Don't free rule_table.
19239 (output): Do it.
19240 (prepare): Don't save the `action' muscle.
19241 * src/bison.simple: s/%%action/%%actions/.
19242
19243 2001-12-15 Akim Demaille <akim@epita.fr>
19244
19245 * src/reader.c (copy_action): When --yacc, don't append a `;'
19246 to the user action: let it fail if lacking.
19247 Suggested by Arnold Robbins and Tom Tromey.
19248
19249 2001-12-14 Akim Demaille <akim@epita.fr>
19250
19251 * src/lex.c (literalchar): Simply return the char you decoded, non
19252 longer mess around with obstacks and int pointers.
19253 Adjust all callers.
19254
19255 2001-12-14 Akim Demaille <akim@epita.fr>
19256
19257 * src/lex.c (literalchar): Don't escape the special characters,
19258 just decode them, and keep them as char (before, eol was output as
19259 the 2 char string `\n' etc.).
19260 * src/output.c (output_rule_data): Use quotearg to output the
19261 token strings.
19262
19263 2001-12-13 Paul Eggert <eggert@twinsun.com>
19264
19265 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
19266 Do not infringe on the global user namespace when using C++.
19267 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
19268 All uses of `fprintf' and `stderr' changed.
19269
19270 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
19271
19272 2001-12-13 Akim Demaille <akim@epita.fr>
19273
19274 The computation of nullable is broken: it doesn't handle empty
19275 RHS's properly.
19276
19277 * tests/torture.at (GNU AWK Grammar): New.
19278 * tests/sets.at (Nullable): New.
19279 * src/nullable.c (set_nullable): Instead of blindly looping over
19280 `ritems', loop over the rules, and then over their rhs's.
19281
19282 Work around Autotest bugs.
19283
19284 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
19285 frame, because Autotest understand lines starting with a `+' as
19286 traces from the shell. Then, they are not processed properly.
19287 Admittedly an Autotest bug, but we don't have time to wait for
19288 Autotest to catch up.
19289 * tests/regression.at (Broken Closure): Adjust to the new table
19290 frames.
19291 Move to...
19292 * tests/sets.at: here.
19293
19294 2001-12-13 Akim Demaille <akim@epita.fr>
19295
19296 * src/closure.c (closure): Use nrules instead of playing tricks
19297 with BITS_PER_WORD.
19298
19299 2001-12-13 Akim Demaille <akim@epita.fr>
19300
19301 * src/print.c (print_actions): Output the handling of `$' as the
19302 traces do: shifting the token EOF. Before EOF was treated as a
19303 nonterminal.
19304 * tests/regression.at: Adjust some tests.
19305 * src/print_graph.c (print_core): Complete the set of items via
19306 closure. The next-to-final and final states are still unsatisfying,
19307 but that's to be addressed elsewhere.
19308 No longer output the rule numbers, but do output the state number.
19309 A single loop for the shifts + gotos is enough, but picked a
19310 distinct color for each.
19311 (print_graph): Initialize and finalize closure.
19312
19313 2001-12-13 Akim Demaille <akim@epita.fr>
19314
19315 * src/reader.c (readgram): Remove dead code, an strip useless
19316 braces.
19317 (get_type): Remove, unused.
19318
19319 2001-12-12 Akim Demaille <akim@epita.fr>
19320
19321 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
19322 on that of lib/error.c.
19323
19324 2001-12-12 Akim Demaille <akim@epita.fr>
19325
19326 Some hosts don't like `/' in includes.
19327
19328 * src/system.h: Include libgettext.h without qualifying the path.
19329 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
19330 $(top_srcdir).
19331
19332 2001-12-11 Marc Autret <autret_m@epita.fr>
19333
19334 * src/output.c (output_parser): Remove useless muscle.
19335
19336 2001-12-11 Marc Autret <autret_m@epita.fr>
19337
19338 * src/bison.simple: Remove #line just before %%epilogue. It
19339 is now handled in ...
19340 * src/reader.c (read_additionnal_code): Add the output of a
19341 #line for the epilogue.
19342
19343 2001-12-10 Marc Autret <autret_m@epita.fr>
19344
19345 * src/reader.c (copy_definition): Re-use CPP-outed code which
19346 replace precedent remove.
19347 * src/bison.simple: Remove #line before %%prologue because
19348 %%input-line is wrong at this time.
19349
19350 2001-12-10 Marc Autret <autret_m@epita.fr>
19351
19352 * src/reader.c (symbols_output): Clean up.
19353 * src/output.c (output_gram, output): Clean up.
19354
19355 2001-12-10 Akim Demaille <akim@epita.fr>
19356
19357 * src/lalr.c (initialize_lookaheads): New. Extracted from...
19358 * src/LR0.c (set_state_table): here.
19359 * src/lalr.c (lalr): Call it.
19360
19361 2001-12-10 Akim Demaille <akim@epita.fr>
19362
19363 * src/state.h (shifts): Remove the `number' member: shifts are
19364 attached to state, hence no longer need to be labelled with a
19365 state number.
19366
19367 2001-12-10 Akim Demaille <akim@epita.fr>
19368
19369 Now that states have a complete set of members, the linked list of
19370 shifts is useless: just fill directly the state's shifts member.
19371
19372 * src/state.h (shifts): Remove the `next' member.
19373 * src/LR0.c (first_state, last_state): Remove.
19374 Adjust the callers.
19375 (augment_automaton): Don't look for the shifts that must be added
19376 a shift on EOF: it is those of the state we looked for! But now,
19377 since shifts are attached, it is no longer needed to looking
19378 merely by its id: its number.
19379
19380 2001-12-10 Akim Demaille <akim@epita.fr>
19381
19382 * src/LR0.c (augment_automaton): Better variable locality.
19383 Remove an impossible branch: if there is a state corresponding to
19384 the start symbol being shifted, then there is shift for the start
19385 symbol from the initial state.
19386
19387 2001-12-10 Akim Demaille <akim@epita.fr>
19388
19389 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
19390 only when appropriate: when insert_start_shifting_state' is not
19391 invoked.
19392 * tests/regression.at (Rule Line Numbers): Adjust.
19393
19394 2001-12-10 Akim Demaille <akim@epita.fr>
19395
19396 * src/LR0.c (augment_automaton): Now that all states have shifts,
19397 merge the two cases addition shifts to the initial state.
19398
19399 2001-12-10 Akim Demaille <akim@epita.fr>
19400
19401 * src/lalr.c (set_state_table): Move to...
19402 * src/LR0.c: here.
19403 * src/lalr.c (lalr): Don't call it...
19404 * src/LR0.c (generate_states): do it.
19405 * src/LR0.h (first_state): Remove, only the table is used.
19406
19407 2001-12-10 Akim Demaille <akim@epita.fr>
19408
19409 * src/LR0.h (first_shift, first_reduction): Remove.
19410 * src/lalr.c: Don't use first_shift: find shifts through the
19411 states.
19412
19413 2001-12-10 Akim Demaille <akim@epita.fr>
19414
19415 * src/LR0.c: Attach shifts to states as soon as they are
19416 computed.
19417 * src/lalr.c (set_state_table): Instead of assigning shifts to
19418 state, just assert that the mapping was properly done.
19419
19420 2001-12-10 Akim Demaille <akim@epita.fr>
19421
19422 * src/LR0.c (insert_start_shift): Rename as...
19423 (insert_start_shifting_state): this.
19424 (insert_eof_shifting_state, insert_accepting_state): New.
19425 (augment_automaton): Adjust.
19426 Better locality of the variables.
19427 When looking if the start_symbol is shifted from the initial
19428 state, using `while (... symbol != start_symbol ...)' sounds
19429 better than `while (... symbol < start_symbol ...)': If fail
19430 to see how the order between symbols could be relevant!
19431
19432 2001-12-10 Akim Demaille <akim@epita.fr>
19433
19434 * src/getargs.h: Don't declare `spec_name_prefix' and
19435 `spec_file_prefix', declared by src/files.h.
19436 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
19437 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
19438 * src/output.c (prepare): Adjust.
19439 * src/reader.c (symbols_output): Likewise.
19440 * src/vmsgetargs.c: Vaguely adjust, but who cares?
19441
19442 2001-12-10 Akim Demaille <akim@epita.fr>
19443
19444 * src/muscle_tab.c (muscle_init): NULL is a better default than
19445 `"0"'.
19446
19447 2001-12-10 Akim Demaille <akim@epita.fr>
19448
19449 * src/reader.c (reader): Calling symbols_output once is enough.
19450
19451 2001-12-10 Akim Demaille <akim@epita.fr>
19452
19453 Now that states have a complete set of members, the linked list of
19454 reductions is useless: just fill directly the state's reductions
19455 member.
19456
19457 * src/state.h (struct reductions): Remove member `number' and
19458 `next'.
19459 * src/LR0.c (first_reduction, last_reduction): Remove.
19460 (save_reductions): Don't link the new reductions, store them in
19461 this_state.
19462 * src/lalr.c (set_state_table): No need to attach reductions to
19463 states, it's already done.
19464 * src/output.c (output_actions): No longer free the shifts, then
19465 the reductions, then the states: free all the states and their
19466 members.
19467
19468 2001-12-10 Akim Demaille <akim@epita.fr>
19469
19470 * src/options.c (OPTN, DRTV, BOTH): New.
19471 (option_table): Use them.
19472
19473 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
19474 the job of system.h.
19475 * src/options.c: Don't include stdio.h and xalloc.h for the same
19476 reasons.
19477
19478 2001-12-10 Akim Demaille <akim@epita.fr>
19479
19480 * src/output.c (output, prepare): Make sure the values of the
19481 muscles `action' and `prologue' are 0-terminated.
19482
19483 2001-12-10 Akim Demaille <akim@epita.fr>
19484
19485 Clean up GCC warnings.
19486
19487 * src/reader.c (copy_action): `buf' is not used.
19488 (parse_skel_decl): Be static.
19489 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
19490 * src/options.h (create_long_option_table): Have a real prototype.
19491 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
19492 (hash_delete_at): Return const void *.
19493 Adjust casts to preserve the const.
19494
19495 2001-12-10 Akim Demaille <akim@epita.fr>
19496
19497 * configure.in: Require 2.52g.
19498 M4 is not needed, but AUTOM4TE is.
19499 * m4/m4.m4: Remove.
19500 * tests/Makefile.am: Adjust.
19501
19502 2001-12-10 Akim Demaille <akim@epita.fr>
19503
19504 One structure for states is enough, even though theoretically
19505 there are LR(0) states and LALR(1) states.
19506
19507 * src/lalr.h (state_t): Remove.
19508 (state_table): Be state_t **, not state_t *.
19509 * src/state.h (core, CORE_ALLOC): Rename as...
19510 (state_t, STATE_ALLOC): this.
19511 Add the LALR(1) members: shifts, reductions, errs.
19512 * src/LR0.c (state_table): Rename as...
19513 (state_hash): this, to avoid name clashes with the global
19514 `state_table'.
19515 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
19516 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
19517
19518 2001-12-10 Akim Demaille <akim@epita.fr>
19519
19520 Bison dumps core on bash.y.
19521 Reported by Pascal Bart.
19522
19523 * src/warshall.c (bitmatrix_print): New.
19524 (TC): Use it.
19525 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
19526 j must be the outer loop.
19527 * tests/regression.at (Broken Closure): New.
19528
19529 2001-12-05 Akim Demaille <akim@epita.fr>
19530
19531 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
19532 its argument.
19533 Reported by Peter Hamorsky.
19534
19535 2001-12-05 Akim Demaille <akim@epita.fr>
19536
19537 * src/conflicts.c (err_table): Remove.
19538 (resolve_sr_conflict): Adjust.
19539 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
19540 Rename as...
19541 (state_t.reductions, state_t.shifts): this.
19542
19543 2001-12-05 Akim Demaille <akim@epita.fr>
19544
19545 * src/reduce.c (reduce_grammar_tables): No longer disable the
19546 removal of useless rules via CPP but via `if (0)', so that the
19547 compiler still check the code is valid.
19548 For instance, it should have noticed `rline' no longer exists: use
19549 the `line' member of rule_t.
19550 * src/gram.c (dummy, rline): Remove, unused.
19551
19552 2001-12-05 Akim Demaille <akim@epita.fr>
19553
19554 * src/output.c (pack_vector): Use assert, not berror.
19555 * src/main.c (berror): Remove, unused.
19556
19557 2001-12-05 Akim Demaille <akim@epita.fr>
19558
19559 New experimental feature: if --verbose --trace output all the
19560 items of a state, not only its kernel.
19561
19562 * src/print.c (print_core): If `trace_flag', then invoke closure
19563 before outputting the items of the state (print_core is no longer
19564 a correct name them).
19565 (print_results): Invoke new_closure/free_closure if needed.
19566
19567 2001-12-05 Akim Demaille <akim@epita.fr>
19568
19569 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
19570 * src/closure.c, src/closure.h (itemsetsize): Rename as...
19571 (nitemset): for consistency with the rest of the project.
19572
19573 2001-12-05 Akim Demaille <akim@epita.fr>
19574
19575 * src/closure.c (print_closure): Improve.
19576 (closure): Use it for printing input and output.
19577
19578 2001-12-05 Akim Demaille <akim@epita.fr>
19579
19580 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
19581 indexed by nonterminals.
19582
19583 2001-12-05 Akim Demaille <akim@epita.fr>
19584
19585 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
19586 what it was!).
19587 * src/warshall.h: Remove accidental duplication of the content.
19588
19589 2001-12-05 Akim Demaille <akim@epita.fr>
19590
19591 * src/closure.c (set_fderives): De-obfuscate.
19592
19593 2001-12-05 Akim Demaille <akim@epita.fr>
19594
19595 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
19596
19597 2001-12-05 Akim Demaille <akim@epita.fr>
19598
19599 * src/closure.c (set_firsts): De-obfuscate.
19600
19601 2001-12-05 Akim Demaille <akim@epita.fr>
19602
19603 * src/output.c (action_row): De-obfuscate
19604 using the good o' techniques: arrays not pointers, variable
19605 locality, BITISSET, RESETBIT etc.
19606
19607 2001-12-05 Akim Demaille <akim@epita.fr>
19608
19609 Pessimize the code to simplify it: from now on, all the states
19610 have a valid SHIFTS, which NSHIFTS is possibly 0.
19611
19612 * src/LR0.c (shifts_new): Be global and move to..
19613 * src/state.c, src/state.h: here.
19614 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
19615 * src/print_graph: Adjust.
19616
19617 2001-12-05 Akim Demaille <akim@epita.fr>
19618
19619 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
19620 * src/conflicts.c: Use it.
19621 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
19622 incorrectly ``simplified''.
19623
19624 2001-12-05 Akim Demaille <akim@epita.fr>
19625
19626 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
19627 using the good o' techniques: arrays not pointers, variable
19628 locality, BITISSET, RESETBIT etc.
19629
19630 2001-12-05 Akim Demaille <akim@epita.fr>
19631
19632 * src/state.h (SHIFT_SYMBOL): New.
19633 * src/conflicts.c: Use it to deobfuscate.
19634
19635 2001-12-05 Akim Demaille <akim@epita.fr>
19636
19637 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
19638 (print_reductions): De-obfuscate using the good o' techniques:
19639 arrays not pointers, variable locality, BITISSET.
19640
19641 2001-12-05 Akim Demaille <akim@epita.fr>
19642
19643 * src/conflicts.c (print_reductions): Arrays, not pointers.
19644 Use BITISSET.
19645
19646 2001-12-05 Akim Demaille <akim@epita.fr>
19647
19648 * src/conflicts.c (print_reductions): Pessimize, but clarify.
19649
19650 2001-12-05 Akim Demaille <akim@epita.fr>
19651
19652 * src/conflicts.c (print_reductions): Improve variable locality.
19653
19654 2001-12-05 Akim Demaille <akim@epita.fr>
19655
19656 * src/conflicts.c (print_reductions): Pessimize, but clarify.
19657
19658 2001-12-05 Akim Demaille <akim@epita.fr>
19659
19660 * src/conflicts.c (print_reductions): Improve variable locality.
19661
19662 2001-12-05 Akim Demaille <akim@epita.fr>
19663
19664 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
19665 * src/lalr.c: Use them.
19666
19667 2001-12-05 Akim Demaille <akim@epita.fr>
19668
19669 * src/LR0.c (augment_automaton): Formatting changes.
19670 Better variable locality.
19671
19672 2001-12-05 Akim Demaille <akim@epita.fr>
19673
19674 * src/lalr.c (matrix_print): New.
19675 (transpose): Use it.
19676 Use arrays instead of pointers.
19677
19678 2001-12-05 Akim Demaille <akim@epita.fr>
19679
19680 * src/lalr.c (maxrhs): Move to...
19681 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
19682 * src/lalr.c (build_relations): Adjust.
19683
19684 2001-12-05 Akim Demaille <akim@epita.fr>
19685
19686 * src/lalr.c (transpose): Free the memory allocated to the
19687 argument, as it is replaced by the results by the unique caller.
19688 (build_relations): Merely invoke transpose: it handles the memory
19689 deallocation.
19690 Improve variable locality.
19691 Avoid variables used as mere abbreviations.
19692 (compute_lookaheads): Use arrays instead of pointers.
19693
19694 2001-12-05 Akim Demaille <akim@epita.fr>
19695
19696 * src/lalr.c (initialize_F): Improve variable locality.
19697 Avoid variables used as mere abbreviations.
19698
19699 2001-12-05 Akim Demaille <akim@epita.fr>
19700
19701 * src/derives.c (print_derives): Display the ruleno.
19702 * src/lalr.c (initialize_F, transpose): Better variable locality
19703 to improve readability.
19704 Avoid variables used as mere abbreviations.
19705
19706 2001-12-05 Akim Demaille <akim@epita.fr>
19707
19708 * src/lalr.c (traverse): Use arrays instead of pointers.
19709
19710 2001-12-05 Akim Demaille <akim@epita.fr>
19711
19712 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
19713 the handling of squeue.
19714 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
19715
19716 2001-12-05 Akim Demaille <akim@epita.fr>
19717
19718 Because useless nonterminals are now kept alive (instead of being
19719 `destroyed'), we now sometimes examine them, and store information
19720 related to them. Hence we need to know their number, and adjust
19721 memory allocations.
19722
19723 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
19724 static.
19725 * src/LR0.c (allocate_itemsets): The memory allocated to
19726 `symbol_count' was used for two different purpose: once to count
19727 the number of occurrences of each symbol, and later reassigned to
19728 `shift_symbol', containing the symbol that can be shifted from a
19729 given state.
19730 Deobfuscate, i.e., allocate, use and free `symbol_count' here
19731 only, and...
19732 (new_itemsets): Allocate `shift_symbol' here.
19733 (allocate_itemsets): symbol_count includes useless nonterminals.
19734 Make room for them.
19735 (free_storage): Use `free', not `XFREE', for pointers that cannot
19736 be null.
19737
19738 2001-12-05 Akim Demaille <akim@epita.fr>
19739
19740 * src/nullable.c (set_nullable): Deobfuscate the handling of
19741 ritem.
19742 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
19743
19744 2001-12-05 Akim Demaille <akim@epita.fr>
19745
19746 * src/gram.c, src/gram.h (ritem_print): New.
19747 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
19748 (This useless function was defined only to work around VMS linkers
19749 that can't handle compilation units with variables only).
19750 * src/reduce.c (dump_grammar): Use it to trace the construction of
19751 ritem.
19752
19753 2001-12-04 Paul Eggert <eggert@twinsun.com>
19754
19755 * src/bison.simple (union yyalloc): Change member names
19756 to be the same as the stack names.
19757 (yyparse): yyptr is now union yyalloc *, not char *.
19758 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
19759 and may generate better code on some machines.
19760 (yystpcpy): Use prototype if __STDC__ is defined, not just
19761 if __cplusplus is defined.
19762
19763 2001-11-30 Akim Demaille <akim@epita.fr>
19764
19765 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
19766 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
19767 Gettext doesn't compile cleanly, and dies with -Werror.
19768 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
19769 Include WARNING_CFLAGS here.
19770 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
19771 before being defined.
19772
19773 2001-11-27 Paul Eggert <eggert@twinsun.com>
19774
19775 * lib/quotearg.h (quotearg_n, quotearg_n_style):
19776 First arg is int, not unsigned.
19777 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
19778 (SIZE_MAX, UINT_MAX): New macros.
19779 (quotearg_n_options): Abort if N is negative.
19780 Avoid overflow check on hosts where size_t is 64 bits and int
19781 is 32 bits, as overflow is impossible there.
19782 Fix off-by-one typo that caused unnecessary reallocation.
19783
19784 2001-11-29 Paul Eggert <eggert@twinsun.com>
19785
19786 Name space cleanup in generated parser.
19787
19788 * doc/bison.texinfo (Bison Parser): Discuss system headers
19789 and their effect on the user name space.
19790
19791 * src/bison.simple:
19792 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
19793 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
19794 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
19795
19796 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
19797 on user names when possible.
19798
19799 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
19800 Simplify test for whather <alloca.h> exists.
19801
19802 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
19803
19804 (<stdio.h>): Include if YYDEBUG.
19805
19806 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
19807 ! defined (yyoverflow) && ! defined (yymemcpy).
19808
19809 (yymemcpy, yyparse): Rename local variables as needed so that
19810 they all begin with 'yy'.
19811
19812 (yystrlen, yystpcpy): New functions.
19813
19814 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
19815 All uses changed.
19816
19817 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
19818 instead of relying on string.h functions. Use YYSTACK_ALLOC
19819 and YYSTACK_FREE instead of malloc and free.
19820
19821 2001-11-30 Akim Demaille <akim@epita.fr>
19822
19823 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
19824 before their first uses.
19825 (YYBISON, YYPURE): Move to the top of the output.
19826
19827 2001-11-30 Akim Demaille <akim@epita.fr>
19828
19829 * tests/reduce.at (Useless Nonterminals): Fix.
19830
19831 2001-11-30 Akim Demaille <akim@epita.fr>
19832
19833 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
19834 if body instead of `;' to pacify GCC's warnings.
19835
19836 2001-11-30 Akim Demaille <akim@epita.fr>
19837
19838 Instead of mapping the LHS of unused rules to -1, keep the LHS
19839 valid, but flag the rules as invalid.
19840
19841 * src/gram.h (rule_t): `useful' is a new member.
19842 * src/print.c (print_grammar): Adjust.
19843 * src/derives.c (set_derives): Likewise.
19844 * src/reader.c (packgram, reduce_output): Likewise.
19845 * src/reduce.c (reduce_grammar_tables): Likewise.
19846 * tests/reduce.at (Underivable Rules, Useless Rules): New.
19847
19848 2001-11-30 Akim Demaille <akim@epita.fr>
19849
19850 * src/reduce.c (reduce_output): Formatting changes.
19851 * src/print.c (print_results, print_grammar): Likewise.
19852 * tests/regression.at (Rule Line Numbers)
19853 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
19854
19855 2001-11-30 Akim Demaille <akim@epita.fr>
19856
19857 * src/reduce.c (nonterminals_reduce): Instead of throwing away
19858 useless nonterminals, move them at the end of the symbol arrays.
19859 (reduce_output): Adjust.
19860 * tests/reduce.at (Useless Nonterminals): Adjust.
19861
19862 2001-11-30 Akim Demaille <akim@epita.fr>
19863
19864 * src/reduce.c: Various comment/formatting changes.
19865 (nonterminals_reduce): New, extracted from...
19866 (reduce_grammar_tables): here.
19867 (reduce_grammar): Call nonterminals_reduce.
19868
19869 2001-11-29 Paul Eggert <eggert@twinsun.com>
19870
19871 * src/bison.simple (YYSTACK_REALLOC): Remove.
19872 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
19873 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
19874 New macros.
19875 (union yyalloc): New type.
19876 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
19877 an arbitrary restriction on hosts where size_t is wider than int.
19878
19879 (yyparse): Don't dump core if alloca or malloc fails; instead, report
19880 a parser stack overflow. Allocate just one block of memory for all
19881 three stacks, instead of allocating three blocks; this typically is
19882 faster and reduces fragmentation.
19883
19884 Do not limit the number of items in the stack to a value that fits
19885 in 'int', as this is an arbitrary limit on hosts with 64-bit
19886 size_t and 32-bit int.
19887
19888 2001-11-29 Marc Autret <autret_m@epita.fr>
19889
19890 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
19891 of defining YYERROR_VERBOSE.
19892 [AT_DATA]: $4 is now out of C declarations in the prologue.
19893
19894 2001-11-28 Marc Autret <autret_m@epita.fr>
19895
19896 * src/reader.c (parse_dquoted_param): New.
19897 (parse_skel_decl): Use it.
19898 * src/lex.h: Add its prototype.
19899 * src/lex.c (literalchar): Become not static.
19900
19901 2001-11-28 Marc Autret <autret_m@epita.fr>
19902
19903 * src/output.h: And put its extern declaration here.
19904 * src/output.c (error_verbose): Define here.
19905 (prepare): Echo name modification.
19906 * src/getargs.h: Clean its extern declaration.
19907 * src/getargs.c (error_verbose_flag): Remove.
19908 (getargs): Remove case 'e'.
19909 * src/options.c (option_table): 'error-verbose' is now seen as simple
19910 percent option.
19911 Include output.h.
19912
19913 * src/reader.c (read_declarations): Remove case tok_include.
19914 (parse_include_decl): Remove.
19915 * src/lex.h (token_t): Remove tok_include.
19916 * src/options.c (option_table): 'include' is now a simple command line
19917 option.
19918
19919 2001-11-28 Marc Autret <autret_m@epita.fr>
19920
19921 * src/bison.simple: Adjust muscle names.
19922 * src/muscle_tab.c (muscle_init): Also rename the muscles.
19923 * src/output.c (prepare): s/_/-/ for the muscles names.
19924 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
19925
19926 2001-11-28 Marc Autret <autret_m@epita.fr>
19927
19928 * src/bison.simple: Fix debug.
19929 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
19930
19931 2001-11-28 Akim Demaille <akim@epita.fr>
19932
19933 * src/LR0.c (shifts_new): New.
19934 (save_shifts, insert_start_shift, augment_automaton): Use it.
19935
19936 2001-11-28 Akim Demaille <akim@epita.fr>
19937
19938 * src/closure.c (closure): `b' and `ruleno' denote the same value:
19939 keep ruleno only.
19940
19941 2001-11-28 Akim Demaille <akim@epita.fr>
19942
19943 * src/closure.c (closure): Instead of looping over word in array
19944 then bits in words, loop over bits in array.
19945
19946 2001-11-28 Akim Demaille <akim@epita.fr>
19947
19948 * src/closure.c (closure): No longer optimize the special case
19949 where all the bits of `ruleset[r]' are set to 0, to make the code
19950 clearer.
19951
19952 2001-11-28 Akim Demaille <akim@epita.fr>
19953
19954 * src/closure.c (closure): `r' and `c' are new variables, used to
19955 de-obfuscate accesses to RULESET and CORE.
19956
19957 2001-11-28 Akim Demaille <akim@epita.fr>
19958
19959 * src/reduce.c (reduce_print): Use ngettext.
19960 (dump_grammar): Improve the trace accuracy.
19961
19962 2001-11-28 Akim Demaille <akim@epita.fr>
19963
19964 * src/reduce.c (dump_grammar): Don't translate trace messages.
19965
19966 2001-11-28 Akim Demaille <akim@epita.fr>
19967
19968 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
19969 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
19970 as all tags are free'ed afterwards.
19971 From Enrico Scholz.
19972
19973 2001-11-27 Paul Eggert <eggert@twinsun.com>
19974
19975 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
19976 use alloca when we didn't want to, and vice versa.
19977
19978 2001-11-27 Marc Autret <autret_m@epita.fr>
19979
19980 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
19981 initialization.
19982 * src/output.c (prepare): Remove its update.
19983
19984 2001-11-27 Marc Autret <autret_m@epita.fr>
19985
19986 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
19987 Use %error-verbose.
19988
19989 2001-11-27 Marc Autret <autret_m@epita.fr>
19990
19991 * src/bison.simple: Remove YYERROR_VERBOSE using.
19992 Use %%error_verbose.
19993 (yyparse): Likewise.
19994 * src/output.c (prepare): Give its final value.
19995 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
19996 * src/getargs.h: Add its extern declaration.
19997 * src/getargs.c (error_verbose_flag): New int.
19998 (getargs): Update to catch new case.
19999 * src/options.c (option_table): 'error-verbose' is a new option.
20000 (shortopts): Update.
20001
20002 2001-11-27 Akim Demaille <akim@epita.fr>
20003
20004 * src/system.h: Use intl/libgettext.h.
20005 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
20006
20007 2001-11-27 Akim Demaille <akim@epita.fr>
20008
20009 * tests/torture.at (Exploding the Stack Size with Malloc):
20010 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
20011
20012 2001-11-27 Akim Demaille <akim@epita.fr>
20013
20014 * src/files.c: Include error.h.
20015 Reported by Hans Aberg.
20016
20017 2001-11-26 Marc Autret <autret_m@epita.fr>
20018
20019 * src/reader.c (parse_include_decl): New, not yet implemented.
20020 (read_declarations): Add case tok_include.
20021 * src/getargs.h (include): Add its extern definition.
20022 * src/getargs.c (include): New const char *.
20023 (getargs): Add case '-I'.
20024 * src/options.c (option_table): Add include as command line and
20025 percent option.
20026 * src/lex.h (token_t): Add tok_include.
20027
20028 2001-11-26 Akim Demaille <akim@epita.fr>
20029
20030 * src/reader.c (readgram): Make sure rules for mid-rule actions
20031 have a lineno equal to that of their host rule.
20032 Reported by Hans Aberg.
20033 * tests/regression.at (Rule Line Numbers): New.
20034
20035 2001-11-26 Akim Demaille <akim@epita.fr>
20036
20037 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
20038 size_ts.
20039
20040 2001-11-26 Akim Demaille <akim@epita.fr>
20041
20042 * src/complain.c, src/complain.h (error): Remove, provided by
20043 lib/error.[ch].
20044
20045 2001-11-26 Akim Demaille <akim@epita.fr>
20046
20047 * src/reader.c (read_declarations): Don't abort on tok_illegal,
20048 issue an error message.
20049 * tests/regression.at (Invalid %directive): New.
20050 Reported by Hans Aberg.
20051
20052 2001-11-26 Akim Demaille <akim@epita.fr>
20053
20054 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
20055 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
20056
20057 2001-11-26 Akim Demaille <akim@epita.fr>
20058
20059 * src/conflicts.c (conflicts_print): Don't complain at all when
20060 there are no reduce/reduce conflicts, and as many shift/reduce
20061 conflicts as expected.
20062 * tests/regression.at (%expect right): Adjust.
20063
20064 2001-11-23 Akim Demaille <akim@epita.fr>
20065
20066 * lib/alloca.c: Update, from fileutils.
20067
20068 2001-11-23 Akim Demaille <akim@epita.fr>
20069
20070 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
20071
20072 2001-11-23 Akim Demaille <akim@epita.fr>
20073
20074 * src/system.h: Include alloca.h.
20075 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
20076
20077 2001-11-23 Akim Demaille <akim@epita.fr>
20078
20079 * src/print_graph.c (print_actions): Remove `rule', unused.
20080 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
20081 pacify GCC's signed < unsigned warnings.
20082 * src/closure.c (itemsetsize): Likewise.
20083 * src/reader.c (symbol_list_new): Static.
20084
20085 2001-11-23 Akim Demaille <akim@epita.fr>
20086
20087 Attaching lineno to buckets is stupid, since only one copy of each
20088 symbol is kept, only the line of the first occurrence is kept too.
20089
20090 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
20091 * src/reader.c (rline_allocated): Remove, unused.
20092 (symbol_list): Have a `line' member.
20093 (symbol_list_new): New.
20094 (readgram): Use it.
20095 * src/print.c (print_grammar): Output the rule line numbers.
20096 * tests/regression.at (Solved SR Conflicts)
20097 (Unresolved SR Conflicts): Adjust.
20098 Reported by Hans Aberg.
20099
20100 2001-11-22 Marc Autret <autret_m@epita.fr>
20101
20102 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
20103
20104 2001-11-22 Marc Autret <autret_m@epita.fr>
20105
20106 * src/muscle_tab.c (muscle_init): Remove initialization of
20107 skeleton muscle.
20108 * src/output.c (output_master_parser): Do it here.
20109
20110 2001-11-20 Akim Demaille <akim@epita.fr>
20111
20112 * po/sv.po: New.
20113 * configure.in (ALL_LINGUAS): Adjust.
20114 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
20115 longer contains strings to translate.
20116
20117 2001-11-19 Akim Demaille <akim@epita.fr>
20118
20119 * src/conflicts.c (conflicts_print): Add a missing \n.
20120
20121 2001-11-19 Akim Demaille <akim@epita.fr>
20122
20123 * src/nullable.c (nullable_print): New.
20124 (set_nullable): Call it when tracing.
20125 Better locality of variables.
20126
20127 2001-11-19 Akim Demaille <akim@epita.fr>
20128
20129 * src/print.c (print_actions): Better locality of variables.
20130
20131 2001-11-19 Akim Demaille <akim@epita.fr>
20132
20133 * src/derives.c (print_derives): Fix and enrich.
20134 * src/closure.c (print_fderives): Likewise.
20135
20136 2001-11-19 Akim Demaille <akim@epita.fr>
20137
20138 * src/closure.c (itemsetend): Remove, replaced with...
20139 (itemsetsize): new.
20140
20141 2001-11-19 Akim Demaille <akim@epita.fr>
20142
20143 * src/LR0.c (kernel_end): Remove, replaced with...
20144 (kernel_size): new.
20145
20146 2001-11-19 Akim Demaille <akim@epita.fr>
20147
20148 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
20149 to clarify.
20150
20151 2001-11-19 Akim Demaille <akim@epita.fr>
20152
20153 * src/closure.c (closure): Use arrays instead of pointers to clarify.
20154
20155 2001-11-19 Akim Demaille <akim@epita.fr>
20156
20157 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
20158 trace messages.
20159 * src/LR0.c: Likewise.
20160 (allocate_itemsets): Use arrays instead of pointers to clarify.
20161
20162 2001-11-19 Akim Demaille <akim@epita.fr>
20163
20164 * src/getargs.c (statistics_flag): Replace with...
20165 (trace_flag): New.
20166 (longopts): Accept --trace instead of --statistics.
20167 * src/getargs.h, src/options.c: Adjust.
20168 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
20169 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
20170
20171 2001-11-19 Akim Demaille <akim@epita.fr>
20172
20173 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
20174 pointers to clarify the code.
20175 (save_reductions, save_shifts): Factor common parts of alternatives.
20176
20177 2001-11-19 Akim Demaille <akim@epita.fr>
20178
20179 * src/LR0.c (new_state, get_state): Complete TRACE code.
20180 * src/closure.c: Include `reader.h' to get `tags', needed by the
20181 trace code.
20182 Rename the conditional DEBUG as TRACE.
20183 Output consistently TRACEs to stderr, not stdout.
20184 * src/derives.c: Likewise.
20185 * src/reduce.c: (inaccessable_symbols): Using if is better style
20186 than goto.
20187 Use `#if TRACE' instead of `#if 0' for tracing code.
20188
20189 2001-11-19 Akim Demaille <akim@epita.fr>
20190
20191 * src/system.h (LIST_FREE, shortcpy): New.
20192 * src/LR0.c: Use them.
20193 * src/output.c (free_itemsets, free_reductions, free_shifts):
20194 Remove, replaced by LIST_FREE.
20195
20196 2001-11-19 Akim Demaille <akim@epita.fr>
20197
20198 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
20199 (REDUCTIONS_ALLOC): New.
20200 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
20201 allocation.
20202
20203 2001-11-19 Akim Demaille <akim@epita.fr>
20204
20205 * src/LR0.c (new_state): Complete trace code.
20206 * src/nullable.c (set_nullable): Don't translate traces.
20207
20208 2001-11-19 Akim Demaille <akim@epita.fr>
20209
20210 * src/print_graph.c (print_core): Better locality of variables.
20211 * src/print.c (print_core): Likewise.
20212
20213 2001-11-19 Akim Demaille <akim@epita.fr>
20214
20215 * src/vcg.c: You do the output, so you are responsible of the
20216 handling of VCG syntax, in particular: use quotearg.
20217 * src/print_graph.c: Don't.
20218 (print_actions): Don't output the actions as part of the nodes,
20219 since that's the job of the edges.
20220 (print_state): Don't output by hand: fill the node description,
20221 and ask for its output.
20222
20223 2001-11-19 Akim Demaille <akim@epita.fr>
20224
20225 * src/bison.simple (yyparse): When verbosely reporting an error,
20226 no longer put additional quotes around token names.
20227 * tests/calc.at: Adjust.
20228
20229 2001-11-19 Akim Demaille <akim@epita.fr>
20230
20231 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
20232 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
20233 * src/output.c: Adjust.
20234
20235 2001-11-19 Akim Demaille <akim@epita.fr>
20236
20237 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
20238 (rule_t): this.
20239 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
20240
20241 2001-11-19 Akim Demaille <akim@epita.fr>
20242
20243 * src/gram.h (rule_t): New.
20244 (rule_table): New.
20245 (rrhs, rlhs): Remove, part of state_t.
20246 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
20247 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
20248 * src/reader.c, src/reduce.c: Adjust.
20249
20250 2001-11-19 Akim Demaille <akim@epita.fr>
20251
20252 * src/reader.c (symbols_output): New, extracted from...
20253 (packsymbols): Here.
20254 (reader): Call it.
20255
20256 2001-11-19 Akim Demaille <akim@epita.fr>
20257
20258 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
20259 (maxrhs): this new function.
20260
20261 2001-11-19 Akim Demaille <akim@epita.fr>
20262
20263 * src/lalr.c (F): New macro to access the variable F.
20264 Adjust.
20265
20266 2001-11-19 Akim Demaille <akim@epita.fr>
20267
20268 * src/lalr.h (LA): New macro to access the variable LA.
20269 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20270 * src/lalr.c: Adjust.
20271
20272 2001-11-19 Akim Demaille <akim@epita.fr>
20273
20274 * src/lalr.c (initialize_LA): Only initialize LA. Let...
20275 (set_state_table): handle the `lookaheads' members.
20276
20277 2001-11-19 Akim Demaille <akim@epita.fr>
20278
20279 * src/lalr.h (lookaheads): Removed array, whose contents is now
20280 a member of...
20281 (state_t): this structure.
20282 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20283 Adjust.
20284
20285 2001-11-19 Akim Demaille <akim@epita.fr>
20286
20287 * src/lalr.h (consistent): Removed array, whose contents is now
20288 a member of...
20289 (state_t): this structure.
20290 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20291 Adjust.
20292
20293 2001-11-19 Akim Demaille <akim@epita.fr>
20294
20295 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
20296 contents are now members of...
20297 (state_t): this structure.
20298 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20299 Adjust.
20300
20301 2001-11-19 Akim Demaille <akim@epita.fr>
20302
20303 * src/lalr.h (state_t): New.
20304 (state_table): Be a state_t * instead of a core **.
20305 (accessing_symbol): Remove, part of state_t.
20306 * src/lalr.c: Adjust.
20307 (set_accessing_symbol): Merge into...
20308 (set_state_table): this.
20309 * src/print_graph.c, src/conflicts.c: Adjust.
20310
20311 2001-11-14 Akim Demaille <akim@epita.fr>
20312
20313 * tests/calc.at, tests/output.at, tests/regression.at,
20314 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
20315 now the tests are run in private dirs, therefore AC_CLEANUP and
20316 family can be simplified to 0-ary.
20317 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
20318 use abs. path to find config.h.
20319 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
20320 stderr, there can be way too much random noise.
20321 Instead pass -Werror to GCC and rely on the exit status.
20322 Reported by Wolfram Wagner.
20323
20324 2001-11-14 Akim Demaille <akim@epita.fr>
20325
20326 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
20327 defined only if yyoverflow is defined, to avoid `warning: unused
20328 variable `yyvs1''.
20329 Reported by The Test Suite.
20330
20331 2001-11-14 Akim Demaille <akim@epita.fr>
20332
20333 * src/print.c: Include reduce.h.
20334 Reported by Hans Aberg.
20335
20336 2001-11-14 Akim Demaille <akim@epita.fr>
20337
20338 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
20339 Revert a previous patch: these are really const.
20340 * src/conflicts.c (conflict_report): Additional useless pair of
20341 braces to pacify GCC's warnings for `if () if () {} else {}'.
20342 * src/lex.c (parse_percent_token): Replace equal_offset with
20343 arg_offset.
20344 arg is const.
20345 Be sure to strdup `arg' when used, since there is no reason for
20346 token_buffer not to change.
20347
20348 2001-11-14 Akim Demaille <akim@epita.fr>
20349
20350 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
20351 definition.
20352 * src/main.c (main): Use them.
20353 Suggested by Hans Aberg.
20354
20355 2001-11-12 Akim Demaille <akim@epita.fr>
20356
20357 * src/system.h (ngettext): Now that we use ngettext, be sure to
20358 provide a default definition when NLS are not used.
20359
20360 2001-11-12 Akim Demaille <akim@epita.fr>
20361
20362 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
20363 Use @kbd to denote user input.
20364 (Language and Grammar): ANSIfy the example.
20365 Adjust its layout for info/notinfo.
20366 (Location Tracking Calc): Output error messages to stderr.
20367 Output locations in a more GNUtically correct way.
20368 Fix a couple of Englishos.
20369 Adjust @group/@end group pairs.
20370
20371 2001-11-12 Akim Demaille <akim@epita.fr>
20372
20373 %expect was not functioning at all.
20374
20375 * src/conflicts.c (expected_conflicts): Set to -1.
20376 (conflict_report): Use ngettext.
20377 (conflicts_print): Check %expect and make its violation an error.
20378 * doc/bison.texinfo (Expect Decl): Adjust.
20379 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
20380 * tests/regression.at (%expect not enough, %expect right)
20381 (%expect too much): New.
20382
20383 2001-11-12 Akim Demaille <akim@epita.fr>
20384
20385 * tests/regression.at (Conflicts): Rename as...
20386 (Unresolved SR Conflicts): this.
20387 (Solved SR Conflicts): New.
20388
20389 2001-11-12 Akim Demaille <akim@epita.fr>
20390
20391 * src/reduce.c (print_results): Rename as...
20392 (reduce_output): This.
20393 Output to OUT, passed as argument, instead of output_obstack.
20394 (dump_grammar): Likewise.
20395 (reduce_free): New.
20396 Also free V1.
20397 (reduce_grammar): No longer call reduce_output, since...
20398 * src/print.c (print_results): do it.
20399 * src/main.c (main): Call reduce_free;
20400
20401 2001-11-12 Akim Demaille <akim@epita.fr>
20402
20403 * src/conflicts.c (print_reductions): Accept OUT as argument.
20404 Output to it, not to output_obstack.
20405 * src/print.c (print_actions): Adjust.
20406
20407 2001-11-12 Akim Demaille <akim@epita.fr>
20408
20409 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
20410 the result instead of using...
20411 (src_total, rrc_total, src_count, rrc_count): Remove.
20412 (any_conflicts): Remove.
20413 (print_conflicts): Split into...
20414 (conflicts_print, conflicts_output): New.
20415 * src/conflicts.h: Adjust.
20416 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
20417 * src/print.c (print_grammar): Issue `\n' between two rules.
20418 * tests/regression.at (Conflicts): New.
20419 Reported by Tom Lane.
20420
20421 2001-11-12 Akim Demaille <akim@epita.fr>
20422
20423 * tests/regression.at (Invalid input): Remove, duplicate with
20424 ``Invalid input: 1''.
20425
20426 2001-11-12 Akim Demaille <akim@epita.fr>
20427
20428 * tests/torture.at (AT_DATA_STACK_TORTURE)
20429 (Exploding the Stack Size with Alloca)
20430 (Exploding the Stack Size with Malloc): New.
20431
20432 2001-11-12 Akim Demaille <akim@epita.fr>
20433
20434 * src/bison.simple (YYSTACK_REALLOC): New.
20435 (yyparse) [!yyoverflow]: Use it and free the old stack.
20436 Reported by Per Allansson.
20437
20438 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
20439
20440 * src/bison.simple: Define type yystype instead of YYSTYPE, and
20441 define CPP macro, which substitute YYSTYPE by yystype.
20442 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
20443 with yyltype/YYLTYPE. This allows inclusion of the generated
20444 header within the parser if the compiler, such as GGC, accepts
20445 multiple equivalent #defines.
20446 From Akim.
20447
20448 2001-11-05 Akim Demaille <akim@epita.fr>
20449
20450 * src/reader.c (symbols_output): New, extracted from...
20451 (packsymbols): here.
20452 (reader): Adjust.
20453
20454 2001-11-05 Akim Demaille <akim@epita.fr>
20455
20456 * src/lex.c (parse_percent_token): s/quotearg/quote/.
20457
20458 2001-11-05 Akim Demaille <akim@epita.fr>
20459
20460 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
20461 pattern.
20462
20463 2001-11-05 Akim Demaille <akim@epita.fr>
20464
20465 * src/options.h (struct option_table_struct): set_flags is void*.
20466 * src/options.c (longopts): Support `--output' and `%output'.
20467 (usage): Adjust.
20468 * src/lex.h (tok_setopt): Remove, replaced with...
20469 (tok_intopt, tok_stropt): these new guys.
20470 * src/lex.c (getopt.h): Not needed.
20471 (token_buffer, unlexed_token_buffer): Not const.
20472 (percent_table): Promote `-' over `_' in directive names.
20473 Active `%name-prefix', `file-prefix', and `output'.
20474 (parse_percent_token): Accept possible arguments to directives.
20475 Promote `-' over `_' in directive names.
20476
20477 2001-11-04 Akim Demaille <akim@epita.fr>
20478
20479 * doc/bison.texinfo (Decl Summary): Split the list into
20480 `directives for grammars' and `directives for bison'.
20481 Sort'em.
20482 Add description of `%name-prefix', `file-prefix', and `output'.
20483 Promote `-' over `_' in directive names.
20484 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
20485 Simplify the description of `--name-prefix'.
20486 Promote `-' over `_' in directive names.
20487 Promote `--output' over `--output-file'.
20488 Fix the description of `--defines'.
20489 * tests/output.at: Exercise %file-prefix and %output.
20490
20491 2001-11-02 Akim Demaille <akim@epita.fr>
20492
20493 * doc/refcard.tex: Update.
20494
20495 2001-11-02 Akim Demaille <akim@epita.fr>
20496
20497 * src/symtab.h (SUNDEF): New.
20498 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
20499 stand for `uninitialized', instead of 0.
20500 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
20501 * src/lex.c (lex): Adjust.
20502
20503 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
20504 Number it 0.
20505 Let yylex return it instead of a plain 0.
20506 Reported by Dick Streefland.
20507
20508 2001-11-02 Akim Demaille <akim@epita.fr>
20509
20510 * tests/regression.at (Mixing %token styles): New test.
20511
20512 2001-11-02 Akim Demaille <akim@epita.fr>
20513
20514 * src/reader.c (parse_thong_decl): Formatting changes.
20515 (token_translations_init): New, extracted from...
20516 (packsymbols): Here.
20517 Adjust.
20518
20519 2001-11-01 Akim Demaille <akim@epita.fr>
20520
20521 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
20522 Check that `9foo.y' produces correct cpp guards.
20523 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
20524 guards.
20525 Reported by Wwp.
20526
20527 2001-11-01 Akim Demaille <akim@epita.fr>
20528
20529 * tests/regression.at (Invalid input: 2): New.
20530 * src/lex.c (unlexed_token_buffer): New.
20531 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
20532 too.
20533 Reported by Wwp.
20534
20535 2001-11-01 Akim Demaille <akim@epita.fr>
20536
20537 * tests/calc.at: Catch up with 1.30.
20538 * configure.in: Bump to 1.49a.
20539 Adjust to newer Autotest.
20540
20541 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
20542
20543 * src/conflicts.c: Move global variables rrc_total and src_total ...
20544 (print_conflicts): here.
20545 * src/output.c (output): Free global variable user_toknums.
20546 * src/lex.c (token_obstack): Become static.
20547
20548 2001-10-18 Akim Demaille <akim@epita.fr>
20549
20550 * tests/atlocal.in (GCC): Add.
20551 * tests/calc.at: s/m4_match/m4_bmatch/.
20552 s/m4_patsubst/m4_bpatsubst/.
20553 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
20554 * configure.in: AC_SUBST(GCC).
20555
20556 2001-10-14 Marc Autret <autret_m@epita.fr>
20557
20558 * src/options.c (create_long_option_table): Fix.
20559
20560 2001-10-10 Akim Demaille <akim@epita.fr>
20561
20562 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
20563
20564 2001-10-04 Akim Demaille <akim@epita.fr>
20565
20566 * src/reader.c (parse_union_decl): Push the caracters in
20567 union_obstack, not attrs_obstack.
20568
20569 2001-10-04 Akim Demaille <akim@epita.fr>
20570
20571 Merge in the branch 1.29.
20572
20573 * src/reader.c (packsymbols): Use a temporary obstack for
20574 `%%tokendef', since output_stack is already used elsewhere.
20575
20576 2001-10-02 Akim Demaille <akim@epita.fr>
20577
20578 Bump 1.29d.
20579
20580 2001-10-02 Akim Demaille <akim@epita.fr>
20581
20582 Version 1.29c.
20583
20584 2001-10-02 Akim Demaille <akim@epita.fr>
20585
20586 * tests/regression.at (Invalid CPP headers): New.
20587 From Alexander Belopolsky.
20588 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
20589
20590 2001-10-02 Akim Demaille <akim@epita.fr>
20591
20592 * tests/regression.at (Invalid input): New.
20593 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
20594 Reported by Shura.
20595
20596 2001-10-02 Akim Demaille <akim@epita.fr>
20597
20598 * tests/calc.at: Now that --debug works, the tests must be adjusted.
20599
20600 2001-10-02 Akim Demaille <akim@epita.fr>
20601
20602 * src/output.c (output_parser): Assert `skeleton'.
20603 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
20604 systems.
20605 From Shura.
20606
20607 2001-10-01 Marc Autret <autret_m@epita.fr>
20608
20609 * src/lex.h: Echo modifications.
20610 * src/lex.c (unlex): Parameter is now token_t.
20611 From Hans Aberg.
20612
20613 2001-10-01 Marc Autret <autret_m@epita.fr>
20614
20615 * src/main.c: Include lex.h.
20616 From Hans Aberg.
20617
20618 2001-09-29 Akim Demaille <akim@epita.fr>
20619
20620 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
20621
20622 2001-09-28 Akim Demaille <akim@epita.fr>
20623
20624 * tests/testsuite.at: Update to newer Autotest.
20625 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
20626
20627 2001-09-27 Akim Demaille <akim@epita.fr>
20628
20629 Position independent wrapper.
20630
20631 * tests/bison: Remove.
20632 * tests/bison.in: New.
20633 * configure.in: Adjust.
20634
20635 2001-09-27 Paul Eggert <eggert@twinsun.com>
20636
20637 Port quotearg fixes from tar 1.13.24.
20638
20639 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
20640 tm to be declared.
20641 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
20642 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
20643
20644 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
20645 * m4/mbrtowc.m4: New file.
20646 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
20647 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
20648
20649 2001-09-27 Akim Demaille <akim@epita.fr>
20650
20651 Bump to 1.29c.
20652
20653 2001-09-27 Akim Demaille <akim@epita.fr>
20654
20655 Version 1.29b.
20656
20657 2001-09-25 Akim Demaille <akim@epita.fr>
20658
20659 * src/system.h: Include `xalloc.h'.
20660 Remove it from the C files.
20661 * src/files.c (output_files): Free the obstacks.
20662 * src/lex.c (init_lex): Rename as...
20663 (lex_init): this.
20664 (lex_free): New.
20665 * src/main.c (main): Use it.
20666
20667 2001-09-24 Marc Autret <autret_m@epita.fr>
20668
20669 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
20670 to output informations in fout (FILE*).
20671 (open_graph, close_graph): Likewise.
20672 (output_graph, output_edge, output_node): Likewise.
20673 * src/vcg.h: Update function prototypes.
20674 * src/print_graph.c (print_graph): Open output graph file.
20675 (print_actions): Adjust.
20676 * src/files.h: Remove extern declaration.
20677 * src/files.c: Remove graph_obstack declaration.
20678 (open_files): Remove graph_obstack initialization.
20679 (output_files): Remove graph_obstack saving.
20680
20681 2001-09-24 Marc Autret <autret_m@epita.fr>
20682
20683 * src/files.c (compute_output_file_names): Fix.
20684
20685 2001-09-24 Marc Autret <autret_m@epita.fr>,
20686 Akim Demaille <akim@epita.fr>
20687
20688 * src/reader.c (reader): Remove call to free_symtab ().
20689 * src/main.c (main): Call it here.
20690 Include symtab.h.
20691 * src/conflicts.c (initialize_conflicts): Rename as...
20692 (solve_conflicts): this.
20693 * src/print.c (print_core, print_actions, print_state)
20694 (print_grammar): Dump to a file instead a `output_obstack'.
20695 (print_results): Dump `output_obstack', and then proceed with the
20696 FILE *.
20697 * src/files.c (compute_output_file_names, close_files): New.
20698 (output_files): Adjust.
20699 * src/main.c (main): Adjust.
20700
20701 2001-09-23 Marc Autret <autret_m@epita.fr>
20702
20703 * src/files.c (compute_header_macro): Computes header macro name
20704 from spec_defines_file when given.
20705
20706 2001-09-23 Marc Autret <autret_m@epita.fr>
20707
20708 * src/files.c (output_files): Add default extensions.
20709
20710 2001-09-22 Akim Demaille <akim@epita.fr>
20711
20712 * src/conflicts.c (finalize_conflicts): Rename as...
20713 (free_conflicts): this.
20714
20715 2001-09-22 Akim Demaille <akim@epita.fr>
20716
20717 * src/gram.c (gram_free): Rename back as...
20718 (dummy): this.
20719 (output_token_translations): Free `token_translations'.
20720 * src/symtab.c (free_symtab): Free the tag field.
20721
20722 2001-09-22 Akim Demaille <akim@epita.fr>
20723
20724 Remove `translations' as it is always set to true.
20725
20726 * src/gram.h: Adjust.
20727 * src/reader.c (packsymbols, parse_token_decl): Adjust
20728 * src/print.c (print_grammar): Adjust.
20729 * src/output.c (output_token_translations): Adjust.
20730 * src/lex.c (lex): Adjust.
20731 * src/gram.c: Be sure the set pointers to NULL.
20732 (dummy): Rename as...
20733 (gram_free): this.
20734
20735 2001-09-22 Akim Demaille <akim@epita.fr>
20736
20737 * configure.in: Invoke AM_LIB_DMALLOC.
20738 * src/system.h: Use dmalloc.
20739 * src/LR0.c: Be sure to have pointers initialized to NULL.
20740 (allocate_itemsets): Allocate kernel_items only if needed.
20741
20742 2001-09-22 Akim Demaille <akim@epita.fr>
20743
20744 * configure.in: Bump to 1.29b.
20745 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
20746 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
20747 need xmalloc.c in calc.y.
20748 From Pascal Bart.
20749
20750 2001-09-21 Akim Demaille <akim@epita.fr>
20751
20752 Version 1.29a.
20753 * Makefile.maint, config/config.guess, config/config.sub,
20754 * config/missing: Update from masters.
20755 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
20756 upon package.m4.
20757 * configure.in (ALL_LINGUAS): Add `tr'.
20758
20759 2001-09-21 Akim Demaille <akim@epita.fr>
20760
20761 * tests/Makefile.am (package.m4): Move to...
20762 ($(srcdir)/$(TESTSUITE)): here.
20763
20764 2001-09-20 Akim Demaille <akim@epita.fr>
20765
20766 * src/complain.c: No longer try to be standalone: use system.h.
20767 Don't assume __STDC__ is defined to 1. Just test if it is defined.
20768 * src/complain.h: Likewise.
20769 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
20770 Remove the unused variable `n'.
20771 From Albert Chin-A-Young.
20772
20773 2001-09-18 Marc Autret <autret_m@epita.fr>
20774
20775 * doc/bison.1: Update.
20776 * doc/bison.texinfo (Bison Options): Update --defines and --graph
20777 descriptions.
20778 (Option Cross Key): Update.
20779 Add --graph.
20780
20781 2001-09-18 Marc Autret <autret_m@epita.fr>
20782
20783 * tests/regression.at: New test (comment in %union).
20784
20785 2001-09-18 Marc Autret <autret_m@epita.fr>
20786
20787 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
20788 do that.
20789 Reported by Keith Browne.
20790
20791 2001-09-18 Marc Autret <autret_m@epita.fr>
20792
20793 * tests/output.at: Add tests for --defines and --graph.
20794
20795 2001-09-18 Marc Autret <autret_m@epita.fr>
20796
20797 * tests/output.at: Removes tests of %{header,src}_extension features.
20798
20799 2001-09-18 Akim Demaille <akim@epita.fr>
20800
20801 * tests/Makefile.am (package.m4): New.
20802 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
20803 (_AT_CHECK_CALC_ERROR): Likewise.
20804 Factor the `, ' part of verbose error messages.
20805
20806 2001-09-18 Marc Autret <autret_m@epita.fr>
20807
20808 * src/getargs.c (longopts): Declare --defines and --graph as options
20809 with optional arguments.
20810 * src/files.h: Add extern declarations.
20811 * src/files.c (spec_graph_file, spec_defines_file): New.
20812 (output_files): Update.
20813 Remove CPP-outed code.
20814
20815 2001-09-18 Marc Autret <autret_m@epita.fr>
20816
20817 Turn off %{source,header}_extension feature.
20818
20819 * src/files.c (compute_exts_from_gf): Update.
20820 (compute_exts_from_src): Update.
20821 (output_files): CPP-out useless code.
20822 * src/files.h: Remove {header,source}_extension extern declarations.
20823 * src/reader.c (parse_dquoted_param): CPP-out.
20824 (parse_header_extension_decl): Remove.
20825 (parse_source_extension_decl): Remove.
20826 (read_declarations): Remove cases tok_{hdrext,srcext}.
20827 * src/lex.c (percent_table): Remove {header,source}_extension entries.
20828 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
20829
20830 2001-09-10 Akim Demaille <akim@epita.fr>
20831
20832 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
20833 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
20834 (AT_CHECK_OUTPUT): this.
20835 Merely check ls' exit status, its output is useless.
20836
20837 2001-09-10 Akim Demaille <akim@epita.fr>
20838
20839 * tests/calc.at: Use m4_match.
20840 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
20841
20842 2001-09-10 Marc Autret <autret_m@epita.fr>,
20843 Akim Demaille <akim@epita.fr>
20844
20845 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
20846 enum color_e.
20847 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
20848 to `normal'.
20849 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
20850 * src/lex.h: Adjust prototype.
20851 (token_t): Add `tok_undef'.
20852 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
20853 (parse_percent_token): Now returns token_t.
20854 Add default statement in switch.
20855 (lex): Separate `c' as an input variable, from the token_t result
20856 part.
20857 (unlexed): Is a token_t.
20858
20859 2001-09-10 Akim Demaille <akim@epita.fr>
20860
20861 * configure.in: Bump to 1.29a.
20862
20863 2001-09-07 Akim Demaille <akim@epita.fr>
20864
20865 Version 1.29.
20866
20867 2001-08-30 Akim Demaille <akim@epita.fr>
20868
20869 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
20870 * m4/atconfig.m4: Remove.
20871 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
20872 * tests/bison: New.
20873 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
20874 m4_if, m4_patsubst, and m4_regexp.
20875 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
20876 `input' file instead of echo.
20877
20878 2001-08-29 Akim Demaille <akim@epita.fr>
20879
20880 Bump to 1.28e.
20881
20882 2001-08-29 Akim Demaille <akim@epita.fr>
20883
20884 Version 1.28d.
20885
20886 2001-08-29 Paul Eggert <eggert@twinsun.com>
20887
20888 * src/bison.simple (yyparse): Don't take the address of an
20889 item before the start of an array, as that doesn't conform to
20890 the C Standard.
20891
20892 2001-08-29 Robert Anisko <anisko_r@epita.fr>
20893
20894 * doc/bison.texinfo (Location Tracking Calc): New node.
20895
20896 2001-08-29 Paul Eggert <eggert@twinsun.com>
20897
20898 * src/output.c (output): Do not define const, as this now
20899 causes more problems than it cures.
20900
20901 2001-08-29 Akim Demaille <akim@epita.fr>
20902
20903 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
20904 the nodes.
20905 Be sure to tag the `detailmenu'.
20906
20907 2001-08-29 Akim Demaille <akim@epita.fr>
20908
20909 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
20910 download in a tmp dir.
20911
20912 2001-08-28 Marc Autret <autret_m@epita.fr>
20913
20914 * config/depcomp: New file.
20915
20916 2001-08-28 Marc Autret <autret_m@epita.fr>
20917
20918 * doc/bison.1 (mandoc): Adjust.
20919 From Juan Manuel Guerrero.
20920
20921 2001-08-28 Marc Autret <autret_m@epita.fr>
20922
20923 * src/print_graph.c (print_state): Fix.
20924
20925 2001-08-27 Marc Autret <autret_m@epita.fr>
20926
20927 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
20928 char * members.
20929 Echo modifications to the functions prototypes.
20930 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
20931
20932 2001-08-27 Marc Autret <autret_m@epita.fr>
20933
20934 * src/vcg.c: Include `xalloc.h'.
20935 (add_colorentry): New.
20936 (add_classname): New.
20937 (add_infoname): New.
20938 * src/vcg.h: Add new prototypes.
20939
20940 2001-08-27 Akim Demaille <akim@epita.fr>
20941
20942 * Makefile.maint: Sync. again with CVS Autoconf.
20943
20944 2001-08-27 Akim Demaille <akim@epita.fr>
20945
20946 * Makefile.maint: Formatting changes.
20947 (po-update, cvs-update, update): New targets.
20948 (AMTAR): Remove.
20949
20950 2001-08-27 Akim Demaille <akim@epita.fr>
20951
20952 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
20953 * Makefile.maint: Sync. with CVS Autoconf.
20954
20955 2001-08-27 Marc Autret <autret_m@epita.fr>
20956
20957 * src/vcg.h (struct infoname_s): New.
20958 (struct colorentry_s): New.
20959 (graph_s): New fields {vertical,horizontal}_order in structure.
20960 Add `infoname' field.
20961 Add `colorentry' field;
20962 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
20963 (G_HORIZONTAL_ORDER): New.
20964 (G_INFONAME): New.
20965 (G_COLORENTRY): New.
20966 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
20967 Add output of `infoname'.
20968 Add output of `colorentry'.
20969
20970 2001-08-27 Marc Autret <autret_m@epita.fr>
20971
20972 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
20973 This one shadowed a global parameter.
20974
20975 2001-08-24 Marc Autret <autret_m@epita.fr>
20976
20977 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
20978 instead of `unsigned'.
20979 (print_state): Do not call obstack_object_size () in obstack_grow ()
20980 to avoid macro variables shadowing.
20981
20982 2001-08-23 Marc Autret <autret_m@epita.fr>
20983
20984 * src/lex.c (percent_table): Typo: s/naem/name/.
20985 Add graph option.
20986 Normalize new options declarations.
20987
20988 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
20989
20990 * tests/suite.at: Exercise %header_extension and %source_extension.
20991
20992 2001-08-16 Marc Autret <autret_m@epita.fr>
20993
20994 * src/reader.c (parse_dquoted_param): New.
20995 (parse_header_extension_decl): Use it.
20996 (parse_source_extension_decl): Likewise.
20997
20998 2001-08-16 Marc Autret <autret_m@epita.fr>
20999
21000 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
21001 (get_xxxx_str): Use assert () instead of complain ().
21002 Remove return invokations in default cases.
21003 (get_decision_str): Modify default behaviour. Remove second argument.
21004 Echo modifications on calls.
21005 (output_graph): Fix.
21006
21007 2001-08-16 Marc Autret <autret_m@epita.fr>
21008
21009 * src/getargs.c (usage): Update with ``-g, --graph''.
21010
21011 2001-08-16 Marc Autret <autret_m@epita.fr>
21012
21013 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
21014 (Option Cross Key): Likewise.
21015 * doc/bison.1: Update.
21016
21017 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
21018
21019 * src/output.c (output_master_parser): Don't finish action_obstack.
21020 (output_parser): Don't care about the muscle action, here.
21021 (prepare): Copy the action_obstack in the action muscle.
21022 (output): Free action_obstack.
21023
21024 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
21025
21026 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
21027 will contain `%union' declaration.
21028 (parse_union_decl): Delete #line directive output.
21029 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
21030 informations about %union.
21031 (parse_union_decl): Copy the union_obstack in the muscle stype.
21032 * src/bison.simple: Add new #line directive.
21033 Add typdef %%stype YYSTYPE.
21034
21035 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
21036
21037 * src/bison.simple: Add new `#line' directive.
21038
21039 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
21040
21041 * src/bison.simple: New `#line' directive.
21042 * src/output.c (output_parser): Support new dynamic muscle input_line.
21043
21044 2001-09-22 Marc Autret <autret_m@epita.fr>
21045
21046 * src/output.c (output_master_parser): New.
21047 (output_parser): Be more re-entrant.
21048
21049 2001-09-21 Marc Autret <autret_m@epita.fr>
21050
21051 * src/reader.c (copy_definition, parse_union_decl): Update and use
21052 `linef' muscle.
21053 (copy_action): Likewise.
21054 Use obstack_1grow ().
21055 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
21056
21057 2001-09-21 Marc Autret <autret_m@epita.fr>
21058
21059 * src/options.c (option_table): Adjust.
21060 * src/lex.c (parse_percent_token): Fix.
21061
21062 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
21063
21064 * src/options.c (symtab.h): Include it, need by lex.h.
21065
21066 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
21067
21068 * src/lex.c (parse_percent_token): Change type of variable `tx', which
21069 is now an option_table_struct*.
21070 (option_strcmp): New function option_strcmp.
21071 (parse_percent_token): Call option_strcmp.
21072 * src/getargs.c (xalloc.h, options.h): Include it.
21073 (getargs): Call create_long_option_table.
21074 (getargs): Free longopts at the end of the function.
21075 (shortopts): Move in options.c.
21076 * src/options.c (create_long_option_table): New function. Convert
21077 information from option_table to option structure.
21078 * src/reader.c (options.h): Include it.
21079
21080 * src/Makefile.am: Adjust.
21081 * src/options.c (option_table): Create from longopts and percent_table.
21082 * src/getargs.c (longopts): Delete.
21083 * src/lex.c (struct percent_table_struct): Delete.
21084 (percent_table): Delete.
21085 (options.h): Include it.
21086 * src/options.c: Create.
21087 * src/options.h: Create.
21088 Declare enum opt_access_e.
21089 Define struct option_table_struct.
21090
21091 2001-09-20 Marc Autret <autret_m@epita.fr>
21092
21093 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
21094 sections of Bison.
21095
21096 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
21097
21098 * src/bison.simple: s/%%filename/%%skeleton.
21099 * src/muscle_tab.c (getargs.h): Include it.
21100 (muscle_init): Insert new muscle skeleton.
21101
21102 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
21103
21104 * src/output.c (output_parser): Delete unused variable actions_dumped.
21105
21106 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
21107
21108 * src/output.c (output): Delete call to reader_output_yylsp.
21109 * src/reader.c (reader): Likewise.
21110 * src/reader.h: Delete declaration of reader_output_yylsp.
21111
21112 2001-09-02 Marc Autret <autret_m@epita.fr>
21113
21114 * src/reader.c: Include muscle_tab.h.
21115 (parse_union_decl): Update.
21116 (parse_macro_decl): Rename parse_muscle_decl.
21117 Update to use renamed functions and variable.
21118 (read_declarations, copy_action, read_additionnal_code, : Updated
21119 with correct variables and functions names.
21120 (packsymbols, reader): Likewise.
21121
21122 * src/reader.h (muscle_obstack): Extern declaration update.
21123
21124 * src/output.c: Include muscle_tab.h
21125 In all functions using macro_insert, change by using muscle_insert ().
21126 (macro_obstack): Rename muscle_obstack.
21127 Echo modifications in the whole file.
21128 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
21129 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
21130 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
21131
21132 * src/muscle_tab.h: Update double inclusion macros.
21133 (macro_entry_s): Rename muscle_entry_s.
21134 Update prototypes.
21135
21136 * src/muscle_tab.c: Include muscle_tab.h.
21137 Rename macro_tabble to muscle_table.
21138 (mhash1, mhash2, mcmp): Use muscle_entry.
21139 (macro_init): Rename muscle_init. Update.
21140 (macro_insert): Rename muscle_insert. Update.
21141 (macro_find): Rename muscle_find. Update.
21142
21143 * src/main.c: Include muscle_tab.h.
21144 (main): Call muscle_init ().
21145 * src/Makefile.am (bison_SOURCES): Echo modifications.
21146
21147 2001-09-02 Marc Autret <autret_m@epita.fr>
21148
21149 Now the files macro_tab.[ch] are named muscle_tab.[ch].
21150
21151 * src/muscle_tab.c, src/muscle_tab.h: Add files.
21152
21153 2001-09-02 Marc Autret <autret_m@epita.fr>
21154
21155 * src/macrotab.c, src/macrotab.h: Remove.
21156
21157 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
21158
21159 * src/reader.c (copy_guard): Use muscle to specify the `#line'
21160 filename.
21161
21162 2001-09-01 Marc Autret <autret_m@epita.fr>
21163
21164 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
21165 to an explicit value to activate the feature. We do it here.
21166
21167 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21168
21169 * src/output.c (prepare): Delete the `filename' muscule insertion.
21170 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
21171 (parse_union_decl): Likewise.
21172 * src/macrotab.c (macro_init): Initialize filename by infile.
21173
21174 2001-08-31 Marc Autret <autret_m@epita.fr>
21175
21176 * src/bison.simple (YYLSP_NEEDED): New definition.
21177 * src/output.c (prepare): Add macro insertion of `locations_flag'
21178
21179 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21180
21181 * src/output.c (prepare): Delete insertion of previous muscles,
21182 and insert the `prefix' muscles.
21183 * src/macrotab.c (macro_init): Likewise.
21184 (macro_init): Initialization prefix directive by `yy'.
21185 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
21186 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
21187 yylval, yydebug, yyerror, yynerrs and yyparse.
21188 New directive `#define' to substitute yydebug, ... with option
21189 name_prefix.
21190
21191 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21192
21193 * src/main.c (main): Standardize.
21194 * src/output.c (output_table_data, output_parser): Likewise.
21195 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
21196
21197 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
21198
21199 * src/reader.c (read_additionnal_code): Rename %%user_code to
21200 %%epilogue.
21201 * src/output.c (output): Rename %%declarations to %%prologue.
21202 * src/bison.simple: Echo modifications.
21203
21204 2001-08-31 Marc Autret <autret_m@epita.fr>
21205
21206 * src/reader.c (readgram): CleanUp.
21207 (output_token_defines): Likewise.
21208 (packsymbols): Likewise.
21209 (reader): Likewise.
21210 * src/output.c (output): CPP-out useless code.
21211
21212 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21213
21214 * src/reader.c (reader): Delete obsolete call to function
21215 output_trailers and output_headers.
21216 * src/output.h: Remove obsolete functions prototypes of output_headers
21217 and output_trailers.
21218
21219 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
21220
21221 * src/main.c: Include macrotab.h.
21222 * src/macrotab.h (macro_entry_s): Constify fields.
21223 Adjust functions prototypes.
21224 * src/macrotab.c (macro_insert): Constify key and value.
21225 (macro_find): Constify key.
21226 (macro_insert): Include 'xalloc.h'
21227 (macro_insert): Use XMALLOC.
21228 (macro_find): Constify return value.
21229 * src/output.c (output_table_data): Rename table to table_data.
21230 (output_parser): Constify macro_key, macro_value.
21231
21232 2001-08-30 Marc Autret <autret_m@epita.fr>
21233
21234 * src/reader.c (parse_skel_decl): New.
21235 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
21236 * src/lex.h (token_t): New token `tok_skel'.
21237 * src/lex.c (percent_table): Add skeleton option entry.
21238 Standardize.
21239
21240 2001-08-29 Marc Autret <autret_m@epita.fr>
21241
21242 * src/bison.simple: Add %%user_code directive at the end.
21243 * src/reader.c (read_additionnal_code): New.
21244 (reader): Use it.
21245 * src/output.c (output_program): Remove.
21246 (output): Update.
21247
21248 2001-08-28 Marc Autret <autret_m@epita.fr>
21249
21250 * src/output.c (output_actions): Clean up.
21251 (output_gram): CPP-out useless code.
21252 * src/reader.c (reader): Clean up, CPP-out useless code.
21253
21254 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
21255
21256 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
21257 directive.
21258 * src/bison.simple: Add `%%definitions'.
21259
21260 2001-08-28 Marc Autret <autret_m@epita.fr>
21261
21262 * config/depcomp: New file.
21263
21264 2001-08-27 Paul Eggert <eggert@twinsun.com>
21265
21266 * src/bison.simple (yyparse): Don't take the address of an
21267 item before the start of an array, as that doesn't conform to
21268 the C Standard.
21269
21270 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
21271
21272 * src/output.c (output): Remove the initialization of the macro
21273 obstack. It was done too late here.
21274
21275 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
21276 completely wrong.
21277 (reader): Initialize the macro obstack here, since we need it to grow
21278 '%define' directives.
21279
21280 * src/reader.h: Declare the macro obstack as extern.
21281
21282 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
21283
21284 * src/output.c (output_parser): Fix. Store single '%' characters in
21285 the output obstack instead of throwing them away.
21286
21287 2001-08-27 Akim Demaille <akim@epita.fr>
21288
21289 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21290
21291 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21292
21293 * lib/Makefile.am: Adjust.
21294
21295 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21296
21297 * src/bison.simple: Update and add '%%' directives.
21298
21299 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21300
21301 * src/reader.c (reader): Remove calls to 'output_headers' and
21302 'output_trailers'. Remove some C output.
21303 (readgram): Disable a piece of code that was writing a default
21304 definition for 'YYSTYPE'.
21305 (reader_output_yylsp): Remove.
21306 (packsymbols): Output token defintions to a macro.
21307 (copy_definition): Disable C output.
21308
21309 * src/reader.c (parse_macro_decl): New function used to parse macro
21310 declarations.
21311 (copy_string2): Put the body of copy_string into this new function.
21312 Add a parameter to let the caller choose whether he wants to copy the
21313 string delimiters or not.
21314 (copy_string): Be a simple call to copy_string2 with the last argument
21315 bound to true.
21316 (read_declarations): Add case for macro definition.
21317 (copy_identifier): New.
21318 (parse_macro_decl): Read macro identifiers using copy_identifier
21319 rather than lex.
21320
21321 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21322
21323 * src/output.c (prepare): Add prefixed names.
21324 (output_parser): Output semantic actions.
21325 (output_parser): Fix bug on '%%line' directives.
21326
21327 * src/output.c (output_headers): Remove. The C code printed by this
21328 function should now be in the skeletons.
21329 (output_trailers): Remove.
21330 (output): Disable call to 'reader_output_yylsp'.
21331 (output_rule_data): Do not output tables to the table obstack.
21332
21333 * src/output.c: Remove some C dedicated output.
21334 Improve the use of macro and output obstacks.
21335 (output_defines): Remove.
21336
21337 * src/output.c (output_token_translations): Associate 'translate'
21338 table with a macro. No output to the table obstack.
21339 (output_gram): Same for 'rhs' and 'prhs'.
21340 (output_stos): Same for 'stos'.
21341 (output_rule_data): Same for 'r1' and 'r2'.
21342 (token_actions): Same for 'defact'.
21343 (goto_actions): Same for 'defgoto'.
21344 (output_base): Same for 'pact' and 'pgoto'.
21345 (output_table): Same for 'table'.
21346 (output_check): Same for 'check'.
21347
21348 * src/output.c (output_table_data): New function.
21349 (output_short_table): Remove.
21350 (output_short_or_char_table): Remove.
21351
21352 * src/output.c (output_parser): Replace most of the skeleton copy code
21353 with something new. Skeletons are now processed character by character
21354 rather than line by line, and Bison looks for '%%' macros. This is the
21355 first step in making Bison's output process (a lot) more flexible.
21356 (output_parser): Use the macro table.
21357
21358 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21359
21360 * src/main.c (main): Initialize the macro table.
21361
21362 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21363
21364 * src/lex.c (percent_table): Add tok_define.
21365 * src/lex.h: Add tok_define.
21366
21367 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21368
21369 * src/macrotab.c: New file.
21370 * src/macrotab.h: New file.
21371 * src/Makefile.am: Update.
21372
21373 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21374
21375 * lib/hash.c: New file.
21376 * lib/hash.h: New file.
21377 * lib/Makefile.am: Update.
21378
21379 2001-08-15 Akim Demaille <akim@epita.fr>
21380
21381 Version 1.28c.
21382
21383 2001-08-15 Marc Autret <autret_m@epita.fr>
21384
21385 * src/reader.c (readgram): Indent output macro YYSTYPE.
21386 (packsymbols): Likewise.
21387 (output_token_defines): Likewise.
21388 * src/files.c: Standardize.
21389 (compute_header_macro): New.
21390 (defines_obstack_save): New. Use compute_header_macro.
21391 (output_files): Update. Use defines_obstack_save.
21392
21393 2001-08-15 Akim Demaille <akim@epita.fr>
21394
21395 * doc/bison.texinfo (Table of Symbols): Document
21396 YYSTACK_USE_ALLOCA.
21397
21398 2001-08-15 Akim Demaille <akim@epita.fr>
21399
21400 * missing: Update from CVS Automake.
21401 * config/config.guess, config/config.sub, config/texinfo.tex:
21402 Update from gnu.org.
21403
21404 2001-08-15 Akim Demaille <akim@epita.fr>
21405
21406 * Makefile.maint: Sync with CVS Autoconf.
21407
21408 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
21409
21410 * doc/bison.texinfo: Include GNU Free Documentation License from
21411 `fdl.texi'.
21412 * doc/fdl.texi: Add to package.
21413
21414 2001-08-14 Marc Autret <autret_m@epita.fr>
21415
21416 Turn on %{source,header}_extension features.
21417
21418 * src/lex.c (percent_table): Un-CPP out header_extension and
21419 source_extension.
21420 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
21421 (compute_exts_from_src): Remove conditions. It restores priorities
21422 between options.
21423
21424 2001-08-14 Marc Autret <autret_m@epita.fr>
21425
21426 * src/files.c (compute_base_names): Add extensions computing when
21427 `--file-prefix' used.
21428 Standardize function calls.
21429
21430 2001-08-13 Marc Autret <autret_m@epita.fr>
21431
21432 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
21433 defining it (defined but null disables alloca).
21434
21435 2001-08-13 Marc Autret <autret_m@epita.fr>
21436
21437 * src/bison.simple (_yy_memcpy): CPP reformat.
21438
21439 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
21440
21441 * tests/atconfig.in (CPPFLAGS): Fix.
21442
21443 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
21444
21445 * doc/bison.texinfo: Include GNU General Public License from
21446 `gpl.texi'.
21447 * doc/gpl.texi: Add to package.
21448
21449 2001-08-10 Marc Autret <autret_m@epita.fr>
21450
21451 * src/print_graph.h: Fix.
21452 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
21453
21454 2001-08-10 Akim Demaille <akim@epita.fr>
21455
21456 * src/system.h: Provide default declarations for stpcpy, strndup,
21457 and strnlen.
21458
21459 2001-08-10 Robert Anisko <anisko_r@epita.fr>
21460
21461 * doc/bison.texinfo (Locations): Update @$ stuff.
21462
21463 2001-08-09 Robert Anisko <anisko_r@epita.fr>
21464
21465 * src/bison.simple (YYLLOC_DEFAULT): Update.
21466 (yyparse): Adjust.
21467
21468 2001-08-08 Marc Autret <autret_m@epita.fr>
21469
21470 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
21471 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
21472 Reported by Fabrice Bauzac.
21473
21474 2001-08-08 Marc Autret <autret_m@epita.fr>
21475
21476 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
21477 * src/vcg.c (output_node): Fix.
21478 * src/vcg.h: Cleanup.
21479 * src/print_graph.c: Add comments.
21480 (node_output_size): New global variable. Simplify the formatting of
21481 the VCG graph output.
21482 (print_actions): Unused code is now used. It notifies the final state
21483 and no action states in the VCG graph. It also give the reduce actions.
21484 The `shift and goto' edges are red and the `go to state' edges are
21485 blue.
21486 Get the current node name and node_obstack by argument.
21487 (node_obstack): New variable.
21488 (print_state): Manage node_obstack.
21489 (print_core): Use node_obstack given by argument.
21490 A node is not only computed here but in print_actions also.
21491 (print_graph): CPP out useless code instead of commenting it.
21492
21493 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
21494
21495 * tests/atconfig.in (CPPFLAGS): Fix.
21496
21497 2001-08-07 Akim Demaille <akim@epita.fr>
21498
21499 * src/print_graph.c (quote): New.
21500 (print_core): Use it.
21501
21502 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
21503
21504 * src/vcg.c (complain.h): Include it.
21505 Unepitaize `return' invocations.
21506 [NDEBUG] (main): Remove.
21507 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
21508 * src/files.c (open_files): Initialize graph_obstack.
21509 * src/print_graph.c (print_actions): CPP out useless code.
21510 (print_core): Don't output the last `\n' in labels.
21511 Use `quote'.
21512 * src/files.c (output_files): Output the VCG file.
21513 * src/main.c (main): Invoke print_graph ();
21514
21515 2001-08-06 Marc Autret <autret_m@epita.fr>
21516
21517 Automaton VCG graph output.
21518 Using option ``-g'' or long option ``--graph'', you can generate
21519 a gram_filename.vcg file containing a VCG description of the LALR (1)
21520 automaton of your grammar.
21521
21522 * src/main.c: Call to print_graph() function.
21523 * src/getargs.h: Update.
21524 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
21525 (graph_flag): New flag.
21526 (longopts): Update.
21527 (getargs): Add case `g'.
21528 * src/files.c (graph_obstack): New obstack struct.
21529 (open_files): Initialize new obstack.
21530 (output_files): Saves graph_obstack if required.
21531 * src/files.h (graph_obstack): New extern declaration.
21532 * src/Makefile.am: Add new source files.
21533
21534 2001-08-06 Marc Autret <autret_m@epita.fr>
21535
21536 * src/print_graph.c, src/print_graph.h (graph): New.
21537 * src/vcg.h: New file.
21538 * src/vcg.c: New file, VCG graph handling.
21539
21540 2001-08-06 Marc Autret <autret_m@epita.fr>
21541
21542 Add of %source_extension and %header_extension which specify
21543 the source or/and the header output file extension.
21544
21545 * src/files.c (compute_base_names): Remove initialisation of
21546 src_extension and header_extension.
21547 (compute_exts_from_gf): Update.
21548 (compute_exts_from_src): Update.
21549 (output_files): Update.
21550 * src/reader.c (parse_header_extension_decl): New.
21551 (parse_source_extension_decl): New.
21552 (read_declarations): New case statements for the new tokens.
21553 * src/lex.c (percent_table): Add entries for %source_extension
21554 and %header_extension.
21555 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
21556
21557 2001-08-06 Marc Autret <autret_m@epita.fr>
21558
21559 * configure.in: Bump to 1.28c.
21560 * doc/bison.texinfo: Texinfo thingies.
21561
21562 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
21563
21564 * tests/atconfig.in (CPPFLAGS): Add.
21565 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
21566
21567 2001-08-03 Akim Demaille <akim@epita.fr>
21568
21569 Version 1.28b.
21570
21571 2001-08-03 Akim Demaille <akim@epita.fr>
21572
21573 * tests/Makefile.am (check-local): Ship testsuite.
21574 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
21575 Include `string.h'.
21576
21577 2001-08-03 Akim Demaille <akim@epita.fr>
21578
21579 * configure.in: Try using -Wformat when compiling.
21580
21581 2001-08-03 Akim Demaille <akim@epita.fr>
21582
21583 * configure.in: Bump to 1.28b.
21584
21585 2001-08-03 Akim Demaille <akim@epita.fr>
21586
21587 * src/complain.c: Adjust strerror_r portability issues.
21588
21589 2001-08-03 Akim Demaille <akim@epita.fr>
21590
21591 Version 1.28a.
21592
21593 2001-08-03 Akim Demaille <akim@epita.fr>
21594
21595 * src/getargs.c, src/getarg.h (skeleton)): Constify.
21596 * src/lex.c (literalchar): Avoid name clashes on `buf'.
21597 * src/getargs.c: Include complain.h.
21598 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
21599 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
21600
21601 2001-08-03 Akim Demaille <akim@epita.fr>
21602
21603 * src/reader.c (readgram): Display hidden chars in error messages.
21604
21605 2001-08-03 Akim Demaille <akim@epita.fr>
21606
21607 Update to gettext 0.10.39.
21608
21609 2001-08-03 Akim Demaille <akim@epita.fr>
21610
21611 * lib/strspn.c: New.
21612
21613 2001-08-01 Marc Autret <autret_m@epita.fr>
21614
21615 * doc/bison.texinfo: Update.
21616 * doc/bison.1 (mandoc): Update.
21617 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
21618 * src/files.c: Support output files extensions computing.
21619 (src_extension): New static variable.
21620 (header_extension): New static variable.
21621 (tr): New function.
21622 (get_extension_index): New function, gets the index of an extension
21623 filename in a string.
21624 (compute_exts_from_gf): New function, computes extensions from the
21625 grammar file extension.
21626 (compute_exts_from_src): New functions, computes extensions from the
21627 C source file extension, file given by ``-o'' option.
21628 (compute_base_names): Update.
21629 (output_files): Update.
21630
21631 2001-08-01 Robert Anisko <anisko_r@epita.fr>
21632
21633 * doc/bison.texi: Document @$.
21634 (Locations): New section.
21635
21636 2001-07-18 Akim Demaille <akim@epita.fr>
21637
21638 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
21639 * config/prev-version.txt, config/move-if-change: New.
21640 * Makefile.am: Adjust.
21641
21642 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
21643
21644 * src/bison.simple (yyparse): Suppress warning `comparaison
21645 between signed and unsigned'.
21646
21647 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
21648
21649 * src/getargs.h (raw_flag): Remove.
21650 * src/getargs.c: Die on `-r'/`--raw'.
21651 * src/lex.c (parse_percent_token): Die on `%raw'.
21652 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
21653 * tests/calc.at: Suppress test with option `--raw'.
21654
21655 2001-07-14 Akim Demaille <akim@epita.fr>
21656
21657 * config/: New.
21658 * configure.in: Require Autoconf 2.50.
21659 Update to gettext 0.10.38.
21660
21661 2001-03-16 Akim Demaille <akim@epita.fr>
21662
21663 * doc/bison.texinfo: ANSIfy the examples.
21664
21665 2001-03-16 Akim Demaille <akim@epita.fr>
21666
21667 * getargs.c (skeleton): New variable.
21668 (longopts): --skeleton is a new option.
21669 (shortopts, getargs): -S is a new option.
21670 * getargs.h: Declare skeleton.
21671 * output.c (output_parser): Use it.
21672
21673 2001-03-16 Akim Demaille <akim@epita.fr>
21674
21675 * m4/strerror_r.m4: New.
21676 * m4/error.m4: Run AC_FUNC_STRERROR_R.
21677 * lib/error.h, lib/error.c: Update.
21678
21679 2001-03-16 Akim Demaille <akim@epita.fr>
21680
21681 * src/getargs.c (longopts): Clean up.
21682
21683 2001-02-21 Akim Demaille <akim@epita.fr>
21684
21685 * src/reader.c (gensym): `gensym_count' is your own.
21686 Use a static buf to create the symbol name, as token_buffer is no
21687 longer a buffer.
21688
21689 2001-02-08 Akim Demaille <akim@epita.fr>
21690
21691 * src/conflicts.c (conflict_report): Be sure not to append to res
21692 between two calls, which could happen if both first sprintf were
21693 skipped, but not the first cp += strlen.
21694
21695 2001-02-08 Akim Demaille <akim@epita.fr>
21696
21697 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
21698 New, from fileutils 4.0.37.
21699 * configure.in: Require Autoconf 2.49c. I took some time before
21700 making this decision. This is the only way out for portability
21701 issues in Bison, it would mean way too much duplicate effort to
21702 import in Bison features implemented in 2.49c since 2.13.
21703 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
21704
21705 2001-02-02 Akim Demaille <akim@epita.fr>
21706
21707 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
21708 * lib/xalloc.h, lib/xmalloc.c: Update.
21709
21710 2001-01-19 Akim Demaille <akim@epita.fr>
21711
21712 Get rid of the ad hoc handling of token_buffer in the scanner: use
21713 the obstacks.
21714
21715 * src/lex.c (token_obstack): New.
21716 (init_lex): Initialize it. No longer call...
21717 (grow_token_buffer): this. Remove it.
21718 Adjust all the places which used it to use the obstack.
21719
21720 2001-01-19 Akim Demaille <akim@epita.fr>
21721
21722 * src/lex.h: Rename all the tokens:
21723 s/\bENDFILE\b/tok_eof/g;
21724 s/\bIDENTIFIER\b/tok_identifier/g;
21725 etc.
21726 Let them be enums, not #define, to ease debugging.
21727 Adjust all the code.
21728
21729 2001-01-18 Akim Demaille <akim@epita.fr>
21730
21731 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
21732 * src/lex.c (maxtoken, grow_token_buffer): Static.
21733
21734 2001-01-18 Akim Demaille <akim@epita.fr>
21735
21736 Since we now use obstacks, more % directives can be enabled.
21737
21738 * src/lex.c (percent_table): Also accept `%yacc',
21739 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
21740 `%debug'.
21741 Handle the actions for `%semantic_parser' and `%pure_parser' here,
21742 instead of returning a token.
21743 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
21744 * src/reader.c (read_declarations): Adjust.
21745 * src/files.c (open_files): Don't call `compute_base_names', don't
21746 compute `attrsfile' since they depend upon data which might be
21747 *in* the input file now.
21748 (output_files): Do it here.
21749 * src/output.c (output_headers): Document the fact that this patch
21750 introduces a guaranteed SEGV for semantic parsers.
21751 * doc/bison.texinfo: Document them.
21752 * tests/suite.at: Exercise these %options.
21753
21754 2000-12-20 Akim Demaille <akim@epita.fr>
21755
21756 Also handle the output file (--verbose) with obstacks.
21757
21758 * files.c (foutput): Remove.
21759 (output_obstack): New.
21760 Adjust all dependencies.
21761 * src/conflicts.c: Return a string.
21762 * src/system.h (obstack_grow_string): Rename as...
21763 (obstack_sgrow): this. Be ready to work with non literals.
21764 (obstack_fgrow4): New.
21765
21766 2000-12-20 Akim Demaille <akim@epita.fr>
21767
21768 * src/files.c (open_files): Fix the computation of short_base_name
21769 in the case of `-o foo.tab.c'.
21770
21771 2000-12-20 Akim Demaille <akim@epita.fr>
21772
21773 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
21774 (copy_dollar): Now that everything uses obstacks, get rid of the
21775 FILE * parameters.
21776
21777 2000-12-20 Akim Demaille <akim@epita.fr>
21778
21779 * src/files.c (open_files): Actually the `.output' file is based
21780 on the short_base_name, not base_name.
21781 * tests/suite.at (Checking output file names): Adjust.
21782
21783 2000-12-20 Akim Demaille <akim@epita.fr>
21784
21785 * src/bison.s1: Remove, we now use directly...
21786 * src/bison.simple: this.
21787 * src/Makefile.am: Use pkgdata instead of data.
21788
21789 2000-12-20 Akim Demaille <akim@epita.fr>
21790
21791 * src/files.c (guard_obstack): New.
21792 (open_files): Initialize it.
21793 (output_files): Dump it...
21794 * src/files.h: Export it.
21795 * src/reader.c (copy_guard): Use it.
21796
21797 2000-12-19 Akim Demaille <akim@epita.fr>
21798
21799 * src/files.c (outfile, defsfile, actfile): Removed as global
21800 vars.
21801 (open_files): Don't compute them.
21802 (output_files): Adjust.
21803 (base_name, short_base_name): Be global.
21804 Adjust dependencies.
21805
21806 2000-12-19 Akim Demaille <akim@epita.fr>
21807
21808 * src/files.c (strsuffix): New.
21809 (stringappend): Be just like strcat but allocate.
21810 (base_names): Eve out from open_files.
21811 Try to simplify the rather hairy computation of base_name and
21812 short_base_name.
21813 (open_files): Use it.
21814 * tests/suite.at (Checking output file names): New test.
21815
21816 2000-12-19 Akim Demaille <akim@epita.fr>
21817
21818 * src/system.h (obstack_grow_literal_string): Rename as...
21819 (obstack_grow_string): this.
21820 * src/output.c (output_parser): Recognize `%% actions' instead of
21821 `$'.
21822 * src/bison.s1: s/$/%% actions/.
21823 * src/bison.hairy: Likewise.
21824
21825 2000-12-19 Akim Demaille <akim@epita.fr>
21826
21827 * src/output.c (output_parser): Compute the `#line' lines when
21828 there are.
21829 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
21830 Suggested by Hans Aberg.
21831
21832 2000-12-19 Akim Demaille <akim@epita.fr>
21833
21834 Let the handling of the skeleton files be local to the procedures
21835 that use it.
21836
21837 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
21838 longer static.
21839 (fparser, open_extra_files): Remove.
21840 (open_files, output_files): Don't take care of fparser.
21841 * src/files.h: Adjust.
21842 * src/output.c (output_parser): Open and close the file to the
21843 skeleton.
21844 * src/reader.c (read_declarations): When %semantic_parser, open
21845 fguard.
21846
21847 2000-12-19 Akim Demaille <akim@epita.fr>
21848
21849 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
21850 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
21851
21852 2000-12-19 Akim Demaille <akim@epita.fr>
21853
21854 * src/files.c (open_files): Yipee! We no longer need all the code
21855 looking for `/tmp' since we have no tmp file.
21856
21857 2000-12-19 Akim Demaille <akim@epita.fr>
21858
21859 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
21860 New macros.
21861 * src/files.c (open_files): Less dependency on MSDOS etc.
21862
21863 2000-12-14 Akim Demaille <akim@epita.fr>
21864
21865 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
21866 Provide a default definition.
21867 Use it when executing the default @ action.
21868 * src/reader.c (reader_output_yylsp): No longer include
21869 `timestamp' and `text' in the default YYLTYPE.
21870
21871 2000-12-12 Akim Demaille <akim@epita.fr>
21872
21873 * src/reader.c (copy_definition, parse_union_decl, copy_action)
21874 (copy_guard): Quote the file names.
21875 Reported by Laurent Mascherpa.
21876
21877 2000-12-12 Akim Demaille <akim@epita.fr>
21878
21879 * src/output.c (output_headers, output_program, output): Be sure
21880 to escape special characters when outputting filenames.
21881 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
21882 (output_headers): Don't depend on them, Use ACTSTR.
21883
21884 2000-11-17 Akim Demaille <akim@epita.fr>
21885
21886 * lib/obstack.h: Formatting changes.
21887 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
21888 prevents type checking.
21889 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
21890 cast the value to (void *): assigning a `foo *' to a `void *'
21891 variable is valid.
21892 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
21893 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
21894 append characters.
21895
21896 2000-11-17 Akim Demaille <akim@epita.fr>
21897
21898 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
21899 as...
21900 (suite.m4, regression.m4, calc.m4): these.
21901 * tests/atgeneral.m4: Update from CVS Autoconf.
21902
21903 2000-11-17 Akim Demaille <akim@epita.fr>
21904
21905 * tests/regression.m4 (%union and --defines): New test,
21906 demonstrating a current bug in the obstack implementation.
21907
21908 2000-11-17 Akim Demaille <akim@epita.fr>
21909
21910 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
21911 macros.
21912 Use them to declare the variables which are global or local to
21913 `yyparse'.
21914
21915 2000-11-17 Akim Demaille <akim@epita.fr>
21916
21917 * acconfig.h: Remove, no longer used.
21918
21919 2000-11-07 Akim Demaille <akim@epita.fr>
21920
21921 * src: s/Copyright (C)/Copyright/g.
21922
21923 2000-11-07 Akim Demaille <akim@epita.fr>
21924
21925 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
21926 defining.
21927 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
21928
21929 2000-11-07 Akim Demaille <akim@epita.fr>
21930
21931 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
21932 Merge in a single CPP if/else.
21933
21934 2000-11-07 Akim Demaille <akim@epita.fr>
21935
21936 * src/output.c (output): Remove useless variables.
21937 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
21938 argument `data' for consistency with the prototypes.
21939 Qualify it `const'.
21940 (obstack_copy, obstack_copy0): Rename the second argument as
21941 `address' for consistency. Qualify it `const'.
21942 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
21943 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
21944 `const' their input argument (`data' or `address').
21945 Adjust the corresponding macros to include `const' in casts.
21946
21947 2000-11-03 Akim Demaille <akim@epita.fr>
21948
21949 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
21950 s/PFILE1/BISON_HAIRY/.
21951 Adjust dependencies.
21952
21953 2000-11-03 Akim Demaille <akim@epita.fr>
21954
21955 For some reason, this was not applied.
21956
21957 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
21958 `unlink': it's no longer used.
21959
21960 2000-11-03 Akim Demaille <akim@epita.fr>
21961
21962 * src/files.c (skeleton_find): New function, eved out of...
21963 (open_files, open_extra_files): here.
21964
21965 2000-11-03 Akim Demaille <akim@epita.fr>
21966
21967 Don't use `atexit'.
21968
21969 * src/files.c (obstack_save): New function.
21970 (done): Rename as...
21971 (output_files): this.
21972 Use `obstack_save'.
21973 * src/main.c (main): Don't use `atexit' to register `done', since
21974 it no longer has to remove tmp files, just call `output_files'
21975 when there are no errors.
21976
21977 2000-11-02 Akim Demaille <akim@epita.fr>
21978
21979 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
21980 `unlink': it's no longer used.
21981 * src/files.h: Formatting changes.
21982
21983 2000-11-02 Akim Demaille <akim@epita.fr>
21984
21985 Remove the last uses of mktemp and unlink/delete.
21986
21987 * src/files.c (fdefines, ftable): Removed.
21988 (defines_ostack, table_obstack): New.
21989 Adjust dependencies of the former into uses of the latter.
21990 * src/output.c (output_short_or_char_table, output_short_table):
21991 Convert to using obstacks.
21992 * src/reader.c (copy_comment2): Accept one FILE * and two
21993 obstacks.
21994 (output_token_defines, reader_output_yylsp): Use obstacks.
21995 * src/system.h (obstack_fgrow3): New.
21996 * po/POTFILES.in: Adjust.
21997
21998 2000-11-01 Akim Demaille <akim@epita.fr>
21999
22000 Change each use of `fattrs' into a use of `attrs_obstack'.
22001
22002 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
22003 * src/files.c (fattrs): Remove.
22004 (attrs_obstack): New.
22005 Adjust all dependencies.
22006 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
22007
22008 2000-11-01 Akim Demaille <akim@epita.fr>
22009
22010 Introduce obstacks.
22011 Change each use of `faction' into a use of `action_obstack'.
22012
22013 * lib/obstack.h, lib/obstack.c: New files.
22014 * src/files.c (faction): Remove.
22015 (action_obstack): New.
22016 Adjust all dependencies.
22017
22018 2000-10-20 Akim Demaille <akim@epita.fr>
22019
22020 * lib/quote.h (PARAMS): New macro. Use it.
22021
22022 2000-10-16 Akim Demaille <akim@epita.fr>
22023
22024 * src/output.c (output_short_or_char_table): New function.
22025 (output_short_table, output_token_translations): Use it.
22026 (goto_actions): Use output_short_table.
22027
22028 2000-10-16 Akim Demaille <akim@epita.fr>
22029
22030 * src/symtab.c (bucket_new): New function.
22031 (getsym): Use it.
22032
22033 * src/output.c (output_short_table): New argument to display the
22034 comment associated with the table.
22035 Adjust dependencies.
22036 (output_gram): Use it.
22037 (output_rule_data): Nicer output layout for YYTNAME.
22038
22039 2000-10-16 Akim Demaille <akim@epita.fr>
22040
22041 * src/lex.c (read_typename): New function.
22042 (lex): Use it.
22043 * src/reader.c (copy_dollar): Likewise.
22044
22045 2000-10-16 Akim Demaille <akim@epita.fr>
22046
22047 * src/reader.c (copy_comment2): Expect the input stream to be on
22048 the `/' which is suspected to open a comment, instead of being
22049 called after `//' or `/*' was read.
22050 (copy_comment, copy_definition, parse_union_decl, copy_action)
22051 (copy_guard): Adjust.
22052
22053 2000-10-16 Akim Demaille <akim@epita.fr>
22054
22055 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
22056 `read_signed_integer'.
22057
22058 2000-10-16 Akim Demaille <akim@epita.fr>
22059
22060 * src/reader.c (copy_dollar): New function.
22061 (copy_guard, copy_action): Use it.
22062
22063 2000-10-16 Akim Demaille <akim@epita.fr>
22064
22065 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
22066 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
22067 New files, from Fileutils 4.0.27.
22068 * src/main.c (printable_version): Remove.
22069 * src/lex.c, src/reader.c: Use `quote'.
22070
22071 2000-10-04 Akim Demaille <akim@epita.fr>
22072
22073 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
22074
22075 2000-10-04 Akim Demaille <akim@epita.fr>
22076
22077 * doc/bison.texinfo: Various typos spotted by Neil Booth.
22078
22079 2000-10-04 Akim Demaille <akim@epita.fr>
22080
22081 When a literal string is used to define two different tokens,
22082 `bison -v' segfaults.
22083 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
22084
22085 * tests/regression.m4: New file.
22086 Include the core of the sample provided by Piotr Gackiewicz.
22087 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
22088 properly.
22089
22090 2000-10-04 Akim Demaille <akim@epita.fr>
22091
22092 * src/reader.c (parse_expect_decl): Keep `count' within the size
22093 of `buffer'.
22094 From Neil Booth.
22095
22096 2000-10-02 Paul Eggert <eggert@twinsun.com>
22097
22098 * bison.s1 (yyparse): Assign the default value
22099 unconditionally, to avoid a GCC warning and make the parser a
22100 tad smaller.
22101
22102 2000-10-02 Akim Demaille <akim@epita.fr>
22103
22104 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
22105 options.
22106
22107 2000-10-02 Akim Demaille <akim@epita.fr>
22108
22109 * src/derives.c, src/print.c, src/reduce.c: To ease the
22110 translation, move some `\n' out of the translated strings.
22111
22112 2000-10-02 Akim Demaille <akim@epita.fr>
22113
22114 The location tracking mechanism is precious for parse error
22115 messages. Nevertheless, it is enabled only when `@n' is used in
22116 the grammar, which is a different issue (you can use it in error
22117 message, but not in the grammar per se). Therefore, there should
22118 be another means to enable it.
22119
22120 * src/getargs.c (getargs): Support `--locations'.
22121 (usage): Report it.
22122 * src/getargs.h (locationsflag): Export it.
22123 * src/lex.c (percent_table): Support `%locations'.
22124 * src/reader.c (yylsp_needed): Remove this variable, now replaced
22125 with `locationsflag'.
22126 * doc/bison.texinfo: Document `--locations' and `%locations'.
22127 Sort the options.
22128 * tests/calc.m4: Test it.
22129
22130 For regularity of the names, replace each
22131 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
22132 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
22133 In addition replace each `flag' with `_flag'.
22134
22135 2000-10-02 Akim Demaille <akim@epita.fr>
22136
22137 Also test parse error messages, including with YYERROR_VERBOSE.
22138
22139 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
22140 associative).
22141 Use it to check the computations.
22142 Use it to check `nonassoc' is honored.
22143 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
22144 `--yyerror-verbose'.
22145 (_AT_CHECK_CALC): Adjust to this option.
22146 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
22147
22148 2000-10-02 Akim Demaille <akim@epita.fr>
22149
22150 Test also `--verbose', `--defines' and `--name-prefix'. Testing
22151 the latter demonstrates a flaw in the handling of non debugging
22152 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
22153 was used in order to simplify:
22154
22155 #if YYDEBUG
22156 if (yydebug)
22157 {
22158 ...
22159 }
22160 #endif
22161
22162 into
22163
22164 if (yydebug)
22165 {
22166 ...
22167 }
22168
22169 unfortunately this leads to a CPP conflict when
22170 `--name-prefix=foo' is used since it produces `#define yydebug
22171 foodebug'.
22172
22173 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
22174 (YYDPRINTF): New macro.
22175 Spread its use.
22176 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
22177 the bison options.
22178 Also test `--verbose', `--defines' and `--name-prefix'.
22179
22180 2000-10-02 Akim Demaille <akim@epita.fr>
22181
22182 Improve the readability of the produced parsers.
22183
22184 * src/bison.s1: Formatting changes.
22185 Improve the comment related to the `$' mark.
22186 (yydefault): Don't fall through to `yyresume': `goto' there.
22187 * src/output.c (output_parser): When the `$' is met, skip the end
22188 of its line.
22189 New variable, `number_of_dollar_signs', to check there's exactly
22190 one `$' in the parser skeleton.
22191
22192 2000-10-02 Akim Demaille <akim@epita.fr>
22193
22194 * lib/xstrdup.c: New file, from the fileutils.
22195 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
22196 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
22197 instead of strlen + xmalloc + strcpy.
22198 * src/symtab.c (copys): Remove, use xstrdup instead.
22199
22200 2000-10-02 Akim Demaille <akim@epita.fr>
22201
22202 * src/gram.h (associativity): New enum type which replaces the
22203 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
22204 `right_assoc', `left_assoc' and `non_assoc'.
22205 Adjust all dependencies.
22206 * src/reader.c: Formatting changes.
22207 (LTYPESTR): Don't define it, use it as a literal in
22208 `reader_output_yylsp'.
22209 * src/symtab.h (symbol_class): New enum type which replaces the
22210 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
22211 `sunknown', `stoken and `snterm'.
22212
22213 2000-10-02 Akim Demaille <akim@epita.fr>
22214
22215 * src/getargs.c (fixed_outfiles): Rename as...
22216 (yaccflag): for consistency and accuracy.
22217 Adjust dependencies.
22218
22219 2000-10-02 Akim Demaille <akim@epita.fr>
22220
22221 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
22222 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
22223 difficult and introduced a lot of core dump. It turns out that
22224 Bison used an implementation of `xmalloc' based on `calloc', and
22225 at various places it does depend upon the initialization to 0. I
22226 have not tried to isolate the pertinent places, and all the former
22227 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
22228 someone should address this issue.
22229
22230 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
22231 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
22232 files.
22233 Adjust dependencies.
22234 * src/warshall.h: New file.
22235 Propagate.
22236
22237 2000-10-02 Akim Demaille <akim@epita.fr>
22238
22239 Various anti-`extern in *.c' changes.
22240
22241 * src/system.h: Include `assert.h'.
22242
22243 2000-10-02 Akim Demaille <akim@epita.fr>
22244
22245 * src/state.h (nstates, final_state, first_state, first_shift)
22246 (first_reduction): Move their exportation from here...
22247 * src/LR0.h: to here.
22248 Adjust dependencies.
22249 * src/getargs.c (statisticsflag): New variable.
22250 Add support for `--statistics'.
22251 Adjust dependencies.
22252
22253 Remove a lot of now useless `extern' statements in most files.
22254
22255 2000-10-02 Akim Demaille <akim@epita.fr>
22256
22257 * src/LR0.h: New file.
22258 Propagate its use.
22259
22260 2000-10-02 Akim Demaille <akim@epita.fr>
22261
22262 * src/print.h: New file.
22263 Propagate its use.
22264 * src/print.c: Formatting and ordering changes.
22265 (verbose, terse): Replace with...
22266 (print_results): this new function.
22267 Adjust dependencies.
22268
22269 2000-10-02 Akim Demaille <akim@epita.fr>
22270
22271 * src/conflicts.c (conflict_report): New function.
22272 (conflict_log, verbose_conflict_log): Replace with...
22273 (print_conflicts): this function.
22274 Adjust dependencies.
22275 * src/conflicts.h: New file.
22276 Propagate its inclusion.
22277
22278 2000-10-02 Akim Demaille <akim@epita.fr>
22279
22280 * src/nullable.h: New file.
22281 Propagate its inclusion.
22282 * src/nullable.c: Formatting changes.
22283
22284 2000-10-02 Akim Demaille <akim@epita.fr>
22285
22286 * src/reduce.h: New file.
22287 Propagate its inclusion.
22288 * src/reduce.c: Topological sort and other formatting changes.
22289 (bool, TRUE, FALSE): Move their definition to...
22290 * src/system.h: here.
22291
22292 2000-10-02 Akim Demaille <akim@epita.fr>
22293
22294 * src/files.c: Formatting changes.
22295 (tryopen, tryclose, openfiles): Rename as...
22296 (xfopen, xfclose, open_files): this.
22297 (stringappend): static.
22298 * src/files.h: Complete the list of exported symbols.
22299 Propagate its use.
22300
22301 2000-10-02 Akim Demaille <akim@epita.fr>
22302
22303 * src/reader.h: New file.
22304 Propagate its use instead of tedious list of `extern' and
22305 prototypes.
22306 * src/reader.c: Formatting changes, topological sort,
22307 s/register//.
22308
22309 2000-10-02 Akim Demaille <akim@epita.fr>
22310
22311 * src/lex.h: Prototype `lex.c' exported functions.
22312 * src/reader.c: Adjust.
22313 * src/lex.c: Formatting changes.
22314 (safegetc): Rename as...
22315 (xgetc): this.
22316
22317 2000-10-02 Akim Demaille <akim@epita.fr>
22318
22319 * src/lalr.h: New file.
22320 Propagate its inclusion instead of prototypes and `extern'.
22321 * src/lalr.c: Formatting changes, topological sorting etc.
22322
22323 2000-10-02 Akim Demaille <akim@epita.fr>
22324
22325 * src/output.c (token_actions): Introduce a temporary array,
22326 YYDEFACT, that makes it possible for this function to use
22327 output_short_table.
22328
22329 2000-10-02 Akim Demaille <akim@epita.fr>
22330
22331 `user_toknums' is output as a `short[]' in `output.c', while it is
22332 defined as a `int[]' in `reader.c'. For consistency with the
22333 other output tables, `user_toknums' is now defined as a table of
22334 shorts.
22335
22336 * src/reader.c (user_toknums): Be a short table instead of an int
22337 table.
22338 Adjust dependencies.
22339
22340 Factor the short table outputs.
22341
22342 * src/output.c (output_short_table): New function.
22343 * src/output.c (output_gram, output_stos, output_rule_data)
22344 (output_base, output_table, output_check): Use it.
22345
22346 2000-10-02 Akim Demaille <akim@epita.fr>
22347
22348 * src/output.c (output): Topological sort of the functions, in
22349 order to get rid of the `static' prototypes.
22350 No longer use `register'.
22351 * src/output.h: New file.
22352 Propagate its inclusion in files explicitly prototyping functions
22353 from output.c.
22354
22355 2000-09-21 Akim Demaille <akim@epita.fr>
22356
22357 * src/atgeneral.m4: Update from Autoconf.
22358
22359 2000-09-21 Akim Demaille <akim@epita.fr>
22360
22361 * src/closure.h: New file.
22362 * src/closure.c: Formatting changes, topological sort over the
22363 functions, use of closure.h.
22364 (initialize_closure, finalize_closure): Rename as...
22365 (new_closure, free_closure): these. Adjust dependencies.
22366 * src/LR0.c: Formatting changes, topological sort, use of
22367 cloture.h.
22368 (initialize_states): Rename as...
22369 (new_states): this.
22370 * src/Makefile.am (noinst_HEADERS): Adjust.
22371
22372 2000-09-20 Akim Demaille <akim@epita.fr>
22373
22374 * src/acconfig.h: Don't protect config.h against multiple
22375 inclusion.
22376 Don't define PARAMS.
22377 * src/system.h: Define PARAMS.
22378 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
22379 purpose of config.h. system.h must not try to fix wrong
22380 definitions in config.h.
22381
22382 2000-09-20 Akim Demaille <akim@epita.fr>
22383
22384 * src/derives.h: New file.
22385 * src/main.c, src/derives.h: Use it.
22386 Formatting changes.
22387 * src/Makefile.am (noinst_HEADERS): Adjust.
22388
22389 2000-09-20 Akim Demaille <akim@epita.fr>
22390
22391 * tests/atgeneral.m4: Update from Autoconf.
22392 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
22393 (AT_CHECK_CALC): New macros.
22394 Use these macros to test bison with options `', `--raw',
22395 `--debug', `--yacc', `--yacc --debug'.
22396
22397 2000-09-19 Akim Demaille <akim@epita.fr>
22398
22399 * src/output.c: Formatting changes.
22400 * src/machine.h: Remove, leaving its contents in...
22401 * src/system.h: here.
22402 Include stdio.h.
22403 Adjust all dependencies on stdio.h and machine.h.
22404 * src/getargs.h: New file.
22405 Let all `extern' declarations about getargs.c be replaced with
22406 inclusion of `getargs.h'.
22407 * src/Makefile.am (noinst_HEADERS): Adjust.
22408
22409 * tests/calc.m4 (yyin): Be initialized in main, not on the global
22410 scope.
22411 (yyerror): Returns void, not int.
22412 * doc/bison.texinfo: Formatting changes.
22413
22414 2000-09-19 Akim Demaille <akim@epita.fr>
22415
22416 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
22417 portable.
22418
22419 2000-09-18 Akim Demaille <akim@epita.fr>
22420
22421 * configure.in: Append WARNING_CFLAGS to CFLAGS.
22422 * src/Makefile.am (INCLUDES): Don't.
22423 Be ready to fetch headers in lib/.
22424
22425 2000-09-18 Akim Demaille <akim@epita.fr>
22426
22427 * doc/bison.texinfo: Update the copyright.
22428 ANSIfy and GNUify the examples.
22429 Remove the old menu.
22430
22431 2000-09-18 Akim Demaille <akim@epita.fr>
22432
22433 First set of tests: use the `calc' example from the documentation.
22434
22435 * src/bison.s1 (yyparse): Condition the code using `yytname' which
22436 is defined only when YYDEBUG is.
22437 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
22438 * src/files.c (tryopen, tryclose): Formatting changes.
22439 Move to the top and be static.
22440 * src/reader.c (read_signed_integer): Likewise.
22441 * tests/calc.m4: New file.
22442 * Makefile.am, suite.m4: Adjust.
22443 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
22444
22445 2000-09-18 Akim Demaille <akim@epita.fr>
22446
22447 Add support for an Autotest test suite for Bison.
22448
22449 * m4/m4.m4, m4/atconfig.m4: New files.
22450 * m4/Makefile.am (EXTRA_DIST): Adjust.
22451 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
22452 files.
22453 * src/getargs.c: Display a more standard --version message.
22454 * src/reader.c (reader): Formatting changes.
22455 No longer depend upon VERSION_STRING.
22456 * configure.in: No longer use `dnl'.
22457 Set up the test suite and the new directory `tests/.
22458 (VERSION_STRING): Remove.
22459
22460 2000-04-14 Akim Demaille <akim@epita.fr>
22461
22462 * src/reader.c (copy_comment2): New function, same as former
22463 `copy_comment', but outputs into two FILE *.
22464 (copy_comment): Use it.
22465 (parse_union_decl): Use it.
22466 (get_type, parse_start_decl): Use the same `invalid' message.
22467 (parse_start_decl, parse_union_decl): Use the same `multiple'
22468 message.
22469 (parse_union_decl, copy_guard, copy_action): Use the same
22470 `unmatched' message.
22471 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
22472
22473 2000-03-31 Akim Demaille <akim@epita.fr>
22474
22475 * src/files.c (tryopen, tryclose): Move to the top.
22476 Be static.
22477
22478 2000-03-31 Akim Demaille <akim@epita.fr>
22479
22480 * src/main.c (main): Don't call `done', exit does it.
22481
22482 2000-03-31 Akim Demaille <akim@epita.fr>
22483
22484 * allocate.c: s/return (foo)/return foo/.
22485 * lalr.c: Likewise.
22486 * LR0.c: Likewise.
22487 * output.c: Likewise.
22488 * reader.c: Likewise.
22489 * symtab.c: Likewise.
22490 * vmsgetargs.c: Likewise.
22491
22492 2000-03-31 Akim Demaille <akim@epita.fr>
22493
22494 Clean up the error reporting functions.
22495
22496 * src/report.c: New file.
22497 * src/report.h: Likewise.
22498 * src/Makefile.am: Adjust.
22499 * m4/error.m4: New file.
22500 * m4/Makefile.am: Adjust.
22501 * configure.in (jm_PREREQ_ERROR): Call it.
22502 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
22503 Remove.
22504 (fatal, fatals): Remove. All callers use complain.c::fatal.
22505 (warn, warni, warns, warnss, warnss): Remove. All callers use
22506 complain.c::complain.
22507 (toomany): Remove, use fatal instead.
22508 * src/files.c (done): No argument, use complain_message_count.
22509 * src/main.c (main): Register `done' to `atexit'.
22510
22511 * src/getargs.c (usage): More `fputs', less `fprintf'.
22512
22513 2000-03-28 Akim Demaille <akim@epita.fr>
22514
22515 * lib/: New directory.
22516 * Makefile.am (SUBDIRS): Adjust.
22517 * configure.in: Adjust.
22518 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
22519 useless.
22520 * src/alloca.c: Moved to lib/.
22521 * src/getopt.c: Likewise.
22522 * src/getopt1.c: Likewise.
22523 * src/getopt.h: Likewise.
22524 * src/ansi2knr.c: Likewise.
22525 * src/ansi2knr.1: Likewise.
22526 * src/Makefile.am: Adjust.
22527 * lib/Makefile.am: New file.
22528
22529 2000-03-28 Akim Demaille <akim@epita.fr>
22530
22531 * src/getargs.c (usage): Refresh the help message.
22532
22533 2000-03-17 Akim Demaille <akim@epita.fr>
22534
22535 * src/getopt1.c: Updated from textutils 2.0e
22536 * src/getopt.c: Likewise.
22537 * src/getopt.h: Likewise.
22538
22539 2000-03-17 Akim Demaille <akim@epita.fr>
22540
22541 * src/Makefile.am (bison.simple): Fix the awk program: quote only
22542 the file name, not the whole `#line LINE FILE'.
22543
22544 2000-03-17 Akim Demaille <akim@epita.fr>
22545
22546 On syntax errors, report the token on which we choked.
22547
22548 * src/bison.s1 (yyparse): In the label yyerrlab, when
22549 YYERROR_VERBOSE, add yychar in msg.
22550
22551 2000-03-17 Akim Demaille <akim@epita.fr>
22552
22553 * src/reader.c (copy_at): New function.
22554 (copy_guard): Use it.
22555 (copy_action): Use it.
22556
22557 2000-03-17 Akim Demaille <akim@epita.fr>
22558
22559 Be kind to translators, save some useless translations.
22560
22561 * src/main.c (banner): New function.
22562 (fatal_banner): Use it.
22563 (warn_banner): Use it.
22564
22565 2000-03-17 Akim Demaille <akim@epita.fr>
22566
22567 * src/reader.c (copy_definition): Use copy_string and
22568 copy_comment. Removed now unused `match', `ended',
22569 `cplus_comment'.
22570 (copy_comment, copy_string): Moved, to be visible from
22571 copy_definition.
22572
22573 2000-03-17 Akim Demaille <akim@epita.fr>
22574
22575 * src/reader.c (copy_string): Declare `static inline'. No
22576 problems with inline, since it is checked by configure.
22577 (copy_comment): Likewise.
22578
22579 2000-03-17 Akim Demaille <akim@epita.fr>
22580
22581 * src/reader.c (packsymbols): Formatting changes.
22582
22583 2000-03-17 Akim Demaille <akim@epita.fr>
22584
22585 * src/reader.c (copy_comment): New function, factored out from:
22586 (copy_action): Use it. Removed now unused `match', `ended',
22587 `cplus_comment'.
22588 (copy_guard): Likewise.
22589
22590 2000-03-17 Akim Demaille <akim@epita.fr>
22591
22592 * src/reader.c (copy_string): New function, factored out from:
22593 (copy_action): Use it.
22594 (copy_guard): Likewise.
22595
22596 2000-03-17 Akim Demaille <akim@epita.fr>
22597
22598 Change the handling of @s so that they behave exactly like $s.
22599 There is now a pseudo variable @$ (readble and writable), location
22600 of the lhs of the rule (by default ranging from the location of
22601 the first symbol of the rhs, to the location of the last symbol,
22602 or, if the rhs is empty, YYLLOC).
22603
22604 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
22605 yyval.
22606 (yyparse): When providing a default semantic action, provide a
22607 default location action.
22608 (after the $): No longer change `*YYLSP', just stack YYLOC the
22609 same way you stack YYVAL.
22610 * src/reader.c (read_declarations): Use warns.
22611 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
22612 (copy_action, case '@'): Likewise.
22613 Use a standard error message, to save useless work from
22614 translators.
22615
22616 2000-03-17 Akim Demaille <akim@epita.fr>
22617
22618 * src/bison.s1: Formatting and cosmetics changes.
22619 * src/reader.c: Likewise.
22620 Update the Copyright notice.
22621
22622 2000-03-17 Akim Demaille <akim@epita.fr>
22623
22624 * src/bison.s1 (#line): All set to `#line' only, since the
22625 Makefile now handles them.
22626
22627 2000-03-16 Akim Demaille <akim@epita.fr>
22628
22629 * src/output.c (output_rule_data): Output the documentation of
22630 some of the tables.
22631 (Copyright notice): Update.
22632 Formatting changes.
22633
22634 2000-03-16 Akim Demaille <akim@epita.fr>
22635
22636 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
22637 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
22638 One `#if YYDEBUG' remains, since it uses variables which are
22639 defined only if `YYDEBUG != 0'.
22640
22641 2000-03-16 Akim Demaille <akim@epita.fr>
22642
22643 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
22644 and related variables so that the similarities are highlighted.
22645
22646 2000-03-16 Akim Demaille <akim@epita.fr>
22647
22648 * src/bison.s1: Properly indent CPP directives.
22649
22650 2000-03-16 Akim Demaille <akim@epita.fr>
22651
22652 * src/bison.s1: Properly indent the `alloca' CPP section.
22653
22654 2000-03-16 Akim Demaille <akim@epita.fr>
22655
22656 Do not hard code values of directories in `configure.in'.
22657 Update the `configure' tool chain.
22658
22659 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
22660 src/makefile.am.
22661 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
22662 (AC_OUTPUT): Add m4/Makefile.
22663 Bump to bison 1.28a, 1.29 has never been released.
22664 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
22665 handled via src/Makefile.am.
22666 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
22667 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
22668 autoheader.
22669 * Makefile.am (SUBDIRS): Add m4.
22670 (ACLOCAL_AM_FLAGS): New variable.
22671 (AUTOMAKE_OPTIONS): Add check-news.
22672 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
22673 the proper line number and file name.
22674 (DEFS): Propagate the location of bison library files and of the
22675 locale files.
22676 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
22677 builddir.
22678 * acinclude.m4: Remove, replaced by the directory m4.
22679 * m4/Makefile.am (EXTRA_DIST): New variable.
22680 * m4/gettext.m4: New file, from the fileutils.
22681 * m4/lcmessage.m4: Likewise
22682 * m4/progtest.m4: Likewise.
22683 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
22684
22685 2000-03-10 Akim Demaille <akim@epita.fr>
22686
22687 * src/closure.c:
22688 Formatting changes of various comments.
22689 Respect the GNU coding standards at various places.
22690 Don't use `_()' when no translation is needed.
22691
22692 1999-12-13 Jesse Thilo <jthilo@gnu.org>
22693
22694 * src/files.c:
22695 OS/2 honors TMPDIR environment variable.
22696
22697 1999-12-13 Jesse Thilo <jthilo@gnu.org>
22698
22699 * doc/bison.texinfo: Tweaked spelling and grammar.
22700 Updated ISBN.
22701 Removed reference to price of printed copy.
22702 Mention BISON_SIMPLE and BISON_HAIRY.
22703
22704 1999-12-13 Jesse Thilo <jthilo@gnu.org>
22705
22706 * configure.in, NEWS:
22707 Bison 1.29 released.
22708
22709 1999-10-27 Jesse Thilo <jthilo@gnu.org>
22710
22711 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
22712 Added reference card.
22713
22714 1999-07-26 Jesse Thilo <jthilo@gnu.org>
22715
22716 * po/ru.po: Added Russian translation.
22717
22718 1999-07-26 Jesse Thilo <jthilo@gnu.org>
22719
22720 * configure.in: Added Russian translation.
22721
22722 1999-07-06 Jesse Thilo <jthilo@gnu.org>
22723
22724 * configure.in, NEWS, README:
22725 Released version 1.28.
22726
22727 1999-06-14 Jesse Thilo <jthilo@gnu.org>
22728
22729 * src/system.h:
22730 Squashed redefinition warning on some systems.
22731
22732 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
22733 Have configure build version string instead of relying on ANSI string
22734 concatentation.
22735
22736 1999-06-14 Jesse Thilo <jthilo@gnu.org>
22737
22738 * po/POTFILES.in: Got rid of version.c.
22739
22740 1999-06-14 Jesse Thilo <jthilo@gnu.org>
22741
22742 * acconfig.h, configure.in:
22743 Have configure build version string instead of relying on ANSI string
22744 concatentation.
22745
22746 1999-06-08 Jesse Thilo <jthilo@gnu.org>
22747
22748 * doc/bison.1:
22749 Dropped mention of `+' for long-named options.
22750
22751 1999-05-30 Jesse Thilo <jthilo@gnu.org>
22752
22753 * src/files.c: Added <unistd.h> for unlink().
22754
22755 * src/Makefile.am, src/system.h:
22756 I18n fixes.
22757
22758 1999-05-30 Jesse Thilo <jthilo@gnu.org>
22759
22760 * README: Added a FAQ list.
22761
22762 * configure.in, acconfig.h:
22763 I18n fixes.
22764
22765 1999-05-30 Jesse Thilo <jthilo@gnu.org>
22766
22767 * doc/FAQ, doc/Makefile.am:
22768 Added a FAQ list.
22769
22770 1999-05-19 Jesse Thilo <jthilo@gnu.org>
22771
22772 * src/alloc.h, src/symtab.h, src/version.c:
22773 Protected inclusion of "config.h" with HAVE_CONFIG_H.
22774
22775 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22776
22777 * src/.cvsignore, src/Makefile.am:
22778 Reorganized: sources in `src', documentation in `doc'.
22779
22780 * src/lex.c (literalchar):
22781 fixed the code for escaping double quotes (thanks
22782 Jonathan Czisny.)
22783
22784 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22785
22786 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
22787 Adjusted paths to reflect directory reorganization.
22788
22789 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22790
22791 * doc/.cvsignore, doc/Makefile.am:
22792 Reorganized: sources in `src', documentation in `doc'.
22793
22794 1999-04-18 Jesse Thilo <jthilo@gnu.org>
22795
22796 * configure.in:
22797 Updated AC_INIT file to reflect directory reorganization.
22798
22799 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
22800 Reorganized: sources in `src', documentation in `doc'.
22801
22802 1999-04-13 Jesse Thilo <jthilo@gnu.org>
22803
22804 * src/allocate.c:
22805 Don't declare calloc() and realloc() if not necessary.
22806
22807 1999-04-13 Jesse Thilo <jthilo@gnu.org>
22808
22809 * configure.in, acconfig.h, acinclude.m4:
22810 Don't declare calloc() and realloc() if not necessary.
22811
22812 1999-03-23 Jesse Thilo <jthilo@gnu.org>
22813
22814 * po/.cvsignore: Added i18n support.
22815
22816 1999-03-23 Jesse Thilo <jthilo@gnu.org>
22817
22818 * acconfig.h, configure.in, Makefile.am:
22819 Added i18n support.
22820
22821 1999-03-22 Jesse Thilo <jthilo@gnu.org>
22822
22823 * src/bison.s1: Fixed #line numbers.
22824
22825 1999-03-15 Jesse Thilo <jthilo@gnu.org>
22826
22827 * po/es.po, po/fr.po, po/nl.po, po/de.po:
22828 Added PO files from Translation Project.
22829
22830 1999-03-03 Jesse Thilo <jthilo@gnu.org>
22831
22832 * Makefile.am:
22833 Added support for non-ANSI compilers (ansi2knr).
22834
22835 1999-02-16 Jesse Thilo <jthilo@gnu.org>
22836
22837 * configure.in: Bumped version number to 1.27.
22838
22839 * Makefile.am:
22840 Added `bison.simple' to list of files removed by `make distclean'.
22841
22842 1999-02-12 Jesse Thilo <jthilo@gnu.org>
22843
22844 * src/files.c, src/files.h:
22845 Defined locations of parser files in config.h instead of Makefile.
22846
22847 1999-02-12 Jesse Thilo <jthilo@gnu.org>
22848
22849 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
22850 Defined locations of parser files in config.h instead of Makefile.
22851
22852 1999-02-09 Jesse Thilo <jthilo@gnu.org>
22853
22854 * Makefile.am:
22855 Removed inappropriate use of $< macro.
22856
22857 1999-02-05 Jesse Thilo <jthilo@gnu.org>
22858
22859 * po/Makefile.in.in, po/POTFILES.in:
22860 Add `po' directory skeleton.
22861
22862 1999-01-27 Jesse Thilo <jthilo@gnu.org>
22863
22864 * README: Document help-bison list.
22865
22866 * configure.in: Add check for mkstemp().
22867
22868 1999-01-20 Jesse Thilo <jthilo@gnu.org>
22869
22870 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
22871 Hush a few compiler warnings.
22872
22873 * src/files.c:
22874 Add tryclose(), which verifies that fclose was successful.
22875 Hush a couple of compiler warnings.
22876
22877 1999-01-20 Jesse Thilo <jthilo@gnu.org>
22878
22879 * Makefile.am, OChangeLog:
22880 ChangeLog is now automatically generated. Include the old version as
22881 OChangeLog.
22882
22883 1999-01-14 Jesse Thilo <jthilo@gnu.org>
22884
22885 * 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:
22886 Update FSF address.
22887
22888 1999-01-14 Jesse Thilo <jthilo@gnu.org>
22889
22890 * doc/bison.texinfo: Fix formatting glitch.
22891
22892 * doc/bison.texinfo: Update FSF address.
22893
22894 1999-01-14 Jesse Thilo <jthilo@gnu.org>
22895
22896 * acconfig.h: Update FSF address.
22897
22898 1999-01-08 Jesse Thilo <jthilo@gnu.org>
22899
22900 * src/system.h:
22901 Don't define PACKAGE here, since config.h defines it.
22902
22903 1998-12-30 Jesse Thilo <jthilo@gnu.org>
22904
22905 * src/reader.c: Update copyright date.
22906
22907 * src/main.c:
22908 Ditch sprintf to statically-sized buffers in fatal/warn functions in
22909 favor of output directly to stderr (avoids buffer overruns).
22910
22911 * src/reader.c: Some checks for premature EOF.
22912
22913 * 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:
22914 Use prototypes if the compiler understands them.
22915
22916 * src/files.c: Honor TMPDIR on Unix hosts.
22917 Use prototypes if the compiler understands them.
22918
22919 * src/reader.c:
22920 Fix a couple of buffer overrun bugs.
22921 Use prototypes if the compiler understands them.
22922
22923 * src/system.h: Include unistd.h and ctype.h.
22924 Use #ifdef instead of #if for NLS symbols.
22925
22926 1998-12-30 Jesse Thilo <jthilo@gnu.org>
22927
22928 * doc/bison.texinfo:
22929 Delete comment "consider using @set for edition number, etc..." since
22930 we now are doing so.
22931
22932 1998-12-30 Jesse Thilo <jthilo@gnu.org>
22933
22934 * configure.in:
22935 Use prototypes if the compiler understands them.
22936
22937 * NEWS: Document 1.26 highlights.
22938
22939 * Makefile.am: Require Automake 1.3 or later.
22940
22941 * acconfig.h:
22942 Use prototypes if the compiler understands them.
22943
22944 1998-12-29 Jesse Thilo <jthilo@gnu.org>
22945
22946 * src/version.c:
22947 Use VERSION symbol from automake for version number.
22948
22949 1998-12-29 Jesse Thilo <jthilo@gnu.org>
22950
22951 * acconfig.h, configure.in, version.cin:
22952 Use VERSION symbol from automake for version number.
22953
22954 1998-11-28 Jesse Thilo <jthilo@gnu.org>
22955
22956 * Makefile.am:
22957 Distribute original version of simple parser (bison.s1), not built
22958 version (bison.simple).
22959
22960 1998-11-28 Jesse Thilo <jthilo@gnu.org>
22961
22962 * doc/bison.texinfo: Add info dir entry.
22963
22964 * doc/bison.texinfo:
22965 Let automake put version number into documentation.
22966
22967 1998-11-26 Jesse Thilo <jthilo@gnu.org>
22968
22969 * src/bison.cld, src/build.com, src/vmshlp.mar:
22970 Add non-RCS files from /gd/gnu/bison.
22971
22972 1998-11-26 Jesse Thilo <jthilo@gnu.org>
22973
22974 * doc/bison.1:
22975 Document the BISON_HAIRY and BISON_SIMPLE variables.
22976
22977 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22978
22979 * src/version.c: Build version.c automatically.
22980
22981 * src/reader.c:
22982 Fix token numbering (used to start at 258, not 257).
22983
22984 * src/system.h: Include config.h.
22985
22986 * src/getargs.c: Update bug report address.
22987
22988 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
22989 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
22990
22991 1998-11-25 Jesse Thilo <jthilo@gnu.org>
22992
22993 * Makefile.am:
22994 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
22995
22996 * configure.in, version.cin:
22997 Build version.c automatically.
22998
22999 * AUTHORS: Add AUTHORS file.
23000
23001 * README: Update bug report address.
23002
23003 * bison.simple:
23004 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23005
23006 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
23007 Add automake stuff.
23008
23009 1998-11-25 Jesse Thilo <jthilo@gnu.org>
23010
23011 * doc/bison.texinfo: Clean up some formatting.
23012
23013 1998-05-05 Richard Stallman <rms@gnu.org>
23014
23015 * doc/bison.texinfo:
23016 Explain better why to make a pure parser.
23017
23018 1998-01-05 Richard Stallman <rms@gnu.org>
23019
23020 * src/files.c (openfiles):
23021 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
23022 find a temporary directory, if possible. Do not unlink files while
23023 they are open.
23024
23025 1997-08-25 Richard Stallman <rms@gnu.org>
23026
23027 * src/reader.c (stack_offset;):
23028 Change some warni to warns.
23029
23030 * src/lex.c (literalchar): Use warns, not warni.
23031
23032 1997-06-28 Richard Stallman <rms@gnu.org>
23033
23034 * src/bison.s1: Add a Bison version comment.
23035
23036 * src/main.c (fatal, warn, berror):
23037 Use program_name.
23038
23039 1997-06-28 Richard Stallman <rms@gnu.org>
23040
23041 * Makefile.in (bison_version): New variable.
23042 (dist): Use that variable.
23043 (bison.s1): Substitute the Bison version into bison.simple.
23044
23045 * bison.simple: Add a Bison version comment.
23046
23047 1997-06-18 Richard Stallman <rms@gnu.org>
23048
23049 * src/main.c (fatal, warn, berror):
23050 Make error messages standard.
23051 (toomany): Improve error message text.
23052
23053 * 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:
23054 new.h renamed to alloc.h.
23055
23056 1997-06-18 Richard Stallman <rms@gnu.org>
23057
23058 * Makefile.in: new.h renamed to alloc.h.
23059
23060 1997-05-24 Richard Stallman <rms@gnu.org>
23061
23062 * src/lex.c (literalchar):
23063 Fix the code for escaping \, " and '.
23064
23065 (lex): Avoid trouble when there are many chars
23066 to discard in a char literal with just several chars in it.
23067
23068 1997-05-17 Richard Stallman <rms@gnu.org>
23069
23070 * src/bison.s1:
23071 Use malloc, if using alloca is troublesome.
23072 (YYSTACK_USE_ALLOCA): New flag macro.
23073 Define it for some systems and compilers.
23074 (YYSTACK_ALLOC): New macro.
23075 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23076 If it was malloc'd, free it.
23077
23078 1997-05-17 Richard Stallman <rms@gnu.org>
23079
23080 * bison.simple:
23081 Use malloc, if using alloca is troublesome.
23082 (YYSTACK_USE_ALLOCA): New flag macro.
23083 Define it for some systems and compilers.
23084 (YYSTACK_ALLOC): New macro.
23085 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23086 If it was malloc'd, free it.
23087
23088 1997-04-23 Richard Stallman <rms@gnu.org>
23089
23090 * src/bison.s1:
23091 (alloca) [__hpux]: Always define as __builtin_alloca.
23092
23093 1997-04-23 Richard Stallman <rms@gnu.org>
23094
23095 * bison.simple:
23096 (alloca) [__hpux]: Always define as __builtin_alloca.
23097
23098 1997-04-22 Richard Stallman <rms@gnu.org>
23099
23100 * src/bison.s1:
23101 [__hpux]: Include alloca.h (right for HPUX 10)
23102 instead of declaring alloca (right for HPUX 9).
23103
23104 * src/bison.s1 (__yy_memcpy):
23105 Declare arg `count' as unsigned int.
23106 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23107
23108 1997-04-22 Richard Stallman <rms@gnu.org>
23109
23110 * bison.simple:
23111 [__hpux]: Include alloca.h (right for HPUX 10)
23112 instead of declaring alloca (right for HPUX 9).
23113
23114 * bison.simple (__yy_memcpy):
23115 Declare arg `count' as unsigned int.
23116 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23117
23118 1997-01-03 Richard Stallman <rms@gnu.org>
23119
23120 * src/allocate.c: [__STDC__ or _MSC_VER]:
23121 Declare calloc and realloc to return void *.
23122
23123 1997-01-02 Richard Stallman <rms@gnu.org>
23124
23125 * src/system.h:
23126 [_MSC_VER]: Include stdlib.h and process.h.
23127 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
23128
23129 * src/main.c (main): Return FAILURE as a value.
23130 (printable_version): Declare arg as int, not char.
23131
23132 1997-01-02 Richard Stallman <rms@gnu.org>
23133
23134 * Makefile.in (dist):
23135 Explicitly check for symlinks, and copy them.
23136
23137 1996-12-19 Richard Stallman <rms@gnu.org>
23138
23139 * src/files.c:
23140 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
23141
23142 1996-12-18 Paul Eggert <eggert@gnu.org>
23143
23144 * src/bison.s1 (yyparse):
23145 If __GNUC__ and YYPARSE_PARAM are both defined,
23146 declare yyparse to have a void * argument.
23147
23148 1996-12-18 Paul Eggert <eggert@gnu.org>
23149
23150 * bison.simple (yyparse):
23151 If __GNUC__ and YYPARSE_PARAM are both defined,
23152 declare yyparse to have a void * argument.
23153
23154 1996-12-17 Richard Stallman <rms@gnu.org>
23155
23156 * src/reduce.c (nbits): Add some casts.
23157
23158 1996-08-12 Richard Stallman <rms@gnu.org>
23159
23160 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
23161
23162 1996-08-12 Richard Stallman <rms@gnu.org>
23163
23164 * bison.simple: Test _MSDOS as well as _MSDOS_.
23165
23166 1996-07-31 Richard Stallman <rms@gnu.org>
23167
23168 * src/bison.s1:
23169 [__sun && __i386]: Include alloca.h.
23170
23171 1996-07-31 Richard Stallman <rms@gnu.org>
23172
23173 * bison.simple:
23174 [__sun && __i386]: Include alloca.h.
23175
23176 1996-07-30 Richard Stallman <rms@gnu.org>
23177
23178 * src/bison.s1: Comment change.
23179
23180 * src/bison.s1: Test _MSDOS_, not MSDOS.
23181
23182 1996-07-30 Richard Stallman <rms@gnu.org>
23183
23184 * bison.simple: Comment change.
23185
23186 * bison.simple: Test _MSDOS_, not MSDOS.
23187
23188 1996-06-01 Richard Stallman <rms@gnu.org>
23189
23190 * 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:
23191 Insert `_' macro around many string constants.
23192
23193 * src/main.c:
23194 Insert `_' macro around many string constants.
23195
23196 (main): Call setlocale, bindtextdomain and textdomain.
23197
23198 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
23199 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
23200 [ENABLE_NLS]: Include libintl.h.
23201 [ENABLE_NLS] (gettext): Define.
23202 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
23203 (N_, PACKAGE, LOCALEDIR): New macros.
23204
23205 1996-06-01 Richard Stallman <rms@gnu.org>
23206
23207 * POTFILES.in: New file.
23208
23209 * Makefile.in (allocate.o):
23210 Define target explicitly.
23211
23212 * Makefile.in (CFLAGS): Set to @CFLAGS@.
23213 (LDFLAGS): Set to @LDFLAGS@.
23214 (configure): Run autoconf only if preceding `cd' succeeds.
23215 (bison.s1): Redirect output to temporary file then move the
23216 temporary to the target, rather than redirecting directly to bison.s1.
23217 (clean): Remove config.status and config.log.
23218 (distclean): Don't remove config.status here.
23219
23220 1996-05-12 Richard Stallman <rms@gnu.org>
23221
23222 * src/bison.s1:
23223 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23224
23225 1996-05-12 Richard Stallman <rms@gnu.org>
23226
23227 * bison.simple:
23228 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23229
23230 1996-05-11 Richard Stallman <rms@gnu.org>
23231
23232 * src/bison.s1 (__yy_memcpy):
23233 Really reorder the args, as was supposedly done on Feb 14 1995.
23234 (yyparse): Calls changed accordingly.
23235
23236 1996-05-11 Richard Stallman <rms@gnu.org>
23237
23238 * Makefile.in (dist): Don't use $(srcdir).
23239
23240 * bison.simple (__yy_memcpy):
23241 Really reorder the args, as was supposedly done on Feb 14 1995.
23242 (yyparse): Calls changed accordingly.
23243
23244 1996-01-27 Richard Stallman <rms@gnu.org>
23245
23246 * src/output.c (output_rule_data):
23247 Test YYERROR_VERBOSE in the conditional
23248 around the definition of ttyname.
23249
23250 1995-12-29 Richard Stallman <rms@gnu.org>
23251
23252 * src/bison.s1:
23253 Fix line numbers in #line commands.
23254
23255 1995-12-29 Richard Stallman <rms@gnu.org>
23256
23257 * bison.simple:
23258 Fix line numbers in #line commands.
23259
23260 1995-12-27 Richard Stallman <rms@gnu.org>
23261
23262 * src/bison.s1 (YYPARSE_PARAM_DECL):
23263 In C++, make it always null.
23264 (YYPARSE_PARAM_ARG): New macro.
23265 (yyparse): Use YYPARSE_PARAM_ARG.
23266
23267 1995-12-27 Richard Stallman <rms@gnu.org>
23268
23269 * bison.simple (YYPARSE_PARAM_DECL):
23270 In C++, make it always null.
23271 (YYPARSE_PARAM_ARG): New macro.
23272 (yyparse): Use YYPARSE_PARAM_ARG.
23273
23274 1995-11-29 Richard Stallman <rms@gnu.org>
23275
23276 * doc/bison.texinfo:
23277 Describe literal string tokens, %raw, %no_lines, %token_table.
23278
23279 1995-11-29 Daniel Hagerty <hag@gnu.org>
23280
23281 * doc/bison.texinfo: Fixed update date
23282
23283 1995-10-16 Richard Stallman <rms@gnu.org>
23284
23285 * src/version.c: Version 1.25.
23286
23287 1995-10-16 Richard Stallman <rms@gnu.org>
23288
23289 * NEWS: *** empty log message ***
23290
23291 1995-10-16 Richard Stallman <rms@gnu.org>
23292
23293 * doc/bison.1, doc/bison.rnh:
23294 Add new options.
23295
23296 1995-10-15 Richard Stallman <rms@gnu.org>
23297
23298 * src/vmsgetargs.c, src/getargs.c:
23299 Added -n, -k, and -raw switches.
23300 (noparserflag, toknumflag, rawtoknumflag): New variables.
23301
23302 * src/symtab.h (SALIAS):
23303 New #define for adding aliases to %token.
23304 (struct bucket): Added `alias' field.
23305
23306 * src/reduce.c (reduce_grammar):
23307 Revise error message.
23308 (print_notices): Remove final `.' from error message.
23309
23310 * src/reader.c (reader_output_yylsp):
23311 New function.
23312 (readgram): Use `#if 0' around code that accepted %command
23313 inside grammar rules: The documentation doesn't allow it,
23314 and it will fail since the %command processors scan for the next %.
23315 (parse_token_decl): Extended the %token
23316 declaration to allow a multi-character symbol as an alias.
23317 (parse_thong_decl): New function.
23318 (read_declarations): Added %thong declarations.
23319 (read_declarations): Handle NOOP to deal with allowing
23320 % declarations as another means to specify the flags.
23321 (readgram): Allow %prec prior to semantics embedded in a rule.
23322 (skip_to_char, read_declarations, copy_definition)
23323 (parse_token_decl, parse_start_decl, parse_type_decl)
23324 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
23325 (get_type_name, copy_guard, copy_action, readgram)
23326 (get_type, packsymbols): Revised most error messages.
23327 Changed `fatal' to `warnxxx' to avoid aborting for error.
23328 Revised and use multiple warnxxx functions to avoid using VARARGS1.
23329 (read_declarations): Improve the error message for
23330 an invalid character. Do not abort.
23331 (read_declarations, copy_guard, copy_action): Use
23332 printable_version to avoid unprintable characters in printed output.
23333 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
23334 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
23335 Allow the type of a non-terminal can be given
23336 more than once, as long as all specifications give the same type.
23337
23338 * src/output.c:
23339 (output_headers, output_trailers, output, output_gram)
23340 (output_rule_data): Implement noparserflag variable.
23341 Implement toknumflag variable.
23342 (output): Call reader_output_yylsp to output LTYPESTR.
23343
23344 * src/main.c (main):
23345 If reader sees an error, don't process the grammar.
23346 (fatals): Updated to not use VARARGS1.
23347 (printable_version, int_to_string, warn, warni, warns, warnss)
23348 (warnsss): New error reporting functions. Avoid abort for error.
23349
23350 * src/lex.h:
23351 Added THONG and NOOP for alias processing.
23352 Added SETOPT for the new code that allows setting options with %flags.
23353
23354 * src/lex.c:
23355 Include getopt.h. Add some extern decls.
23356 (safegetc): New function to deal with EOF gracefully.
23357 (literalchar); new function to deal with reading \ escapes.
23358 (lex): Use literalchar.
23359 (lex): Implemented "..." tokens.
23360 (literalchar, lex, parse_percent_token): Made tokenbuffer
23361 always contain the token. This includes growing the token
23362 buffer while reading an integer.
23363 (parse_percent_token): Replaced if-else statement with percent_table.
23364 (parse_percent_token): Added % declarations as another
23365 way to specify the flags -n, -l, and -r. Also added hooks for
23366 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
23367 major changes to files.c.
23368 (lex) Retain in the incoming stream a character following
23369 an incorrect '/'.
23370 (skip_white_space, lex): Revised most error messages
23371 and changed fatal to warn to avoid aborting.
23372 (percent_table): Added %thong declarations.
23373
23374 * src/gram.h: Comment changes.
23375
23376 * src/files.c (openfiles, open_extra_files, done):
23377 Add faction flag
23378 and actfile file. Handle noparserflag. Both for -n switch.
23379
23380 * src/conflicts.c (resolve_sr_conflict):
23381 Remove use of alloca.
23382
23383 1995-06-01 Jim Meyering <meyering@gnu.org>
23384
23385 * doc/bison.texinfo: *** empty log message ***
23386
23387 1995-05-06 Richard Stallman <rms@gnu.org>
23388
23389 * src/bison.s1: Comment change.
23390
23391 1995-05-06 Richard Stallman <rms@gnu.org>
23392
23393 * bison.simple: Comment change.
23394
23395 1995-05-03 Richard Stallman <rms@gnu.org>
23396
23397 * src/version.c: Version now 1.24.
23398
23399 * src/bison.s1: Change distribution terms.
23400
23401 * src/version.c: Version now 1.23.
23402
23403 1995-05-03 Richard Stallman <rms@gnu.org>
23404
23405 * doc/bison.texinfo:
23406 Rewrite "Conditions for Using Bison".
23407 Update version to 1.24.
23408
23409 1995-05-03 Richard Stallman <rms@gnu.org>
23410
23411 * bison.simple: Change distribution terms.
23412
23413 1995-02-23 Richard Stallman <rms@gnu.org>
23414
23415 * src/files.c: Test __VMS_POSIX as well as VMS.
23416
23417 1995-02-14 Jim Meyering <meyering@gnu.org>
23418
23419 * src/bison.s1 (__yy_memcpy):
23420 Renamed from __yy_bcopy to avoid
23421 confusion. Reverse FROM and TO arguments to be consistent with
23422 those of memcpy.
23423
23424 1995-02-14 Jim Meyering <meyering@gnu.org>
23425
23426 * bison.simple (__yy_memcpy):
23427 Renamed from __yy_bcopy to avoid
23428 confusion. Reverse FROM and TO arguments to be consistent with
23429 those of memcpy.
23430
23431 1994-11-10 David J. MacKenzie <djm@gnu.org>
23432
23433 * NEWS: reformat
23434
23435 * NEWS: New file.
23436
23437 * Makefile.in (DISTFILES): Include NEWS.
23438
23439 * Makefile.in (DISTFILES):
23440 Include install-sh, not install.sh.
23441
23442 * configure.in: Update to Autoconf v2 macro names.
23443
23444 1994-10-05 David J. MacKenzie <djm@gnu.org>
23445
23446 * Makefile.in: fix typo
23447
23448 * Makefile.in (prefix, exec_prefix):
23449 Let configure set them.
23450
23451 1994-09-28 David J. MacKenzie <djm@gnu.org>
23452
23453 * Makefile.in: Set datadir to $(prefix)/share.
23454
23455 1994-09-15 Richard Stallman <rms@gnu.org>
23456
23457 * src/bison.s1:
23458 Update copyright notice and GPL version.
23459
23460 1994-09-15 Richard Stallman <rms@gnu.org>
23461
23462 * bison.simple:
23463 Update copyright notice and GPL version.
23464
23465 1994-07-12 Richard Stallman <rms@gnu.org>
23466
23467 * src/reduce.c, src/reader.c:
23468 entered into RCS
23469
23470 1994-05-05 David J. MacKenzie <djm@gnu.org>
23471
23472 * Makefile.in: entered into RCS
23473
23474 1994-03-26 Richard Stallman <rms@gnu.org>
23475
23476 * src/bison.s1: entered into RCS
23477
23478 1994-03-26 Richard Stallman <rms@gnu.org>
23479
23480 * bison.simple: entered into RCS
23481
23482 1994-03-25 Richard Stallman <rms@gnu.org>
23483
23484 * src/main.c: entered into RCS
23485
23486 1994-03-24 Richard Stallman <rms@gnu.org>
23487
23488 * src/conflicts.c: entered into RCS
23489
23490 1994-01-02 Richard Stallman <rms@gnu.org>
23491
23492 * Makefile.in: *** empty log message ***
23493
23494 1993-11-21 Richard Stallman <rms@gnu.org>
23495
23496 * src/bison.s1: *** empty log message ***
23497
23498 1993-11-21 Richard Stallman <rms@gnu.org>
23499
23500 * doc/bison.texinfo: entered into RCS
23501
23502 * doc/bison.texinfo: *** empty log message ***
23503
23504 1993-11-21 Richard Stallman <rms@gnu.org>
23505
23506 * bison.simple: *** empty log message ***
23507
23508 1993-10-25 David J. MacKenzie <djm@gnu.org>
23509
23510 * doc/bison.texinfo: *** empty log message ***
23511
23512 1993-10-19 Richard Stallman <rms@gnu.org>
23513
23514 * src/bison.s1: *** empty log message ***
23515
23516 1993-10-19 Richard Stallman <rms@gnu.org>
23517
23518 * bison.simple: *** empty log message ***
23519
23520 1993-10-14 Richard Stallman <rms@gnu.org>
23521
23522 * src/bison.s1: *** empty log message ***
23523
23524 1993-10-14 Richard Stallman <rms@gnu.org>
23525
23526 * bison.simple: *** empty log message ***
23527
23528 1993-09-14 David J. MacKenzie <djm@gnu.org>
23529
23530 * doc/bison.texinfo: *** empty log message ***
23531
23532 1993-09-13 Noah Friedman <friedman@gnu.org>
23533
23534 * Makefile.in: *** empty log message ***
23535
23536 1993-09-10 Richard Stallman <rms@gnu.org>
23537
23538 * src/conflicts.c: *** empty log message ***
23539
23540 * src/system.h: entered into RCS
23541
23542 1993-09-10 Richard Stallman <rms@gnu.org>
23543
23544 * doc/bison.1: entered into RCS
23545
23546 1993-09-06 Noah Friedman <friedman@gnu.org>
23547
23548 * src/version.c: entered into RCS
23549
23550 1993-09-06 Noah Friedman <friedman@gnu.org>
23551
23552 * Makefile.in: *** empty log message ***
23553
23554 1993-07-30 David J. MacKenzie <djm@gnu.org>
23555
23556 * Makefile.in: *** empty log message ***
23557
23558 1993-07-24 Richard Stallman <rms@gnu.org>
23559
23560 * src/bison.s1: *** empty log message ***
23561
23562 1993-07-24 Richard Stallman <rms@gnu.org>
23563
23564 * bison.simple: *** empty log message ***
23565
23566 1993-07-08 David J. MacKenzie <djm@gnu.org>
23567
23568 * Makefile.in: *** empty log message ***
23569
23570 1993-07-04 Richard Stallman <rms@gnu.org>
23571
23572 * src/bison.s1: *** empty log message ***
23573
23574 1993-07-04 Richard Stallman <rms@gnu.org>
23575
23576 * bison.simple: *** empty log message ***
23577
23578 1993-06-26 David J. MacKenzie <djm@gnu.org>
23579
23580 * src/getargs.c: entered into RCS
23581
23582 1993-06-26 David J. MacKenzie <djm@gnu.org>
23583
23584 * doc/bison.texinfo: *** empty log message ***
23585
23586 * doc/bison.1: New file.
23587
23588 1993-06-25 Richard Stallman <rms@gnu.org>
23589
23590 * src/getargs.c: New file.
23591
23592 1993-06-16 Richard Stallman <rms@gnu.org>
23593
23594 * src/bison.s1: *** empty log message ***
23595
23596 1993-06-16 Richard Stallman <rms@gnu.org>
23597
23598 * bison.simple: *** empty log message ***
23599
23600 1993-06-03 Richard Stallman <rms@gnu.org>
23601
23602 * src/bison.s1: New file.
23603
23604 1993-06-03 Richard Stallman <rms@gnu.org>
23605
23606 * doc/bison.texinfo: *** empty log message ***
23607
23608 1993-06-03 Richard Stallman <rms@gnu.org>
23609
23610 * bison.simple: New file.
23611
23612 1993-05-19 Richard Stallman <rms@gnu.org>
23613
23614 * doc/bison.texinfo: New file.
23615
23616 1993-05-07 Noah Friedman <friedman@gnu.org>
23617
23618 * Makefile.in: *** empty log message ***
23619
23620 1993-04-28 Noah Friedman <friedman@gnu.org>
23621
23622 * src/reader.c: *** empty log message ***
23623
23624 1993-04-23 Noah Friedman <friedman@gnu.org>
23625
23626 * src/alloc.h: entered into RCS
23627
23628 1993-04-20 David J. MacKenzie <djm@gnu.org>
23629
23630 * src/version.c: *** empty log message ***
23631
23632 * src/files.c, src/allocate.c:
23633 entered into RCS
23634
23635 * src/reader.c: *** empty log message ***
23636
23637 * src/lex.c: entered into RCS
23638
23639 * src/conflicts.c: New file.
23640
23641 * src/symtab.c: entered into RCS
23642
23643 * src/alloc.h: New file.
23644
23645 * src/LR0.c: entered into RCS
23646
23647 1993-04-18 Noah Friedman <friedman@gnu.org>
23648
23649 * src/reader.c: New file.
23650
23651 * src/version.c: *** empty log message ***
23652
23653 1993-04-18 Noah Friedman <friedman@gnu.org>
23654
23655 * Makefile.in: *** empty log message ***
23656
23657 1993-04-17 Noah Friedman <friedman@gnu.org>
23658
23659 * Makefile.in: *** empty log message ***
23660
23661 1993-04-15 Richard Stallman <rms@gnu.org>
23662
23663 * src/main.c, src/files.c:
23664 New file.
23665
23666 1993-04-15 Noah Friedman <friedman@gnu.org>
23667
23668 * configure.in: entered into RCS
23669
23670 * configure.in: *** empty log message ***
23671
23672 * configure.in: New file.
23673
23674 1993-04-14 Richard Stallman <rms@gnu.org>
23675
23676 * Makefile.in: New file.
23677
23678 1993-04-13 Richard Stallman <rms@gnu.org>
23679
23680 * src/version.c: New file.
23681
23682 1993-03-25 Richard Stallman <rms@gnu.org>
23683
23684 * src/output.c: entered into RCS
23685
23686 1992-09-25 Richard Stallman <rms@gnu.org>
23687
23688 * configure.bat: entered into RCS
23689
23690 1992-06-22 Richard Stallman <rms@gnu.org>
23691
23692 * src/vmsgetargs.c: entered into RCS
23693
23694 1992-06-22 Richard Stallman <rms@gnu.org>
23695
23696 * doc/bison.rnh: entered into RCS
23697
23698 1992-04-20 David J. MacKenzie <djm@gnu.org>
23699
23700 * README: entered into RCS
23701
23702 1992-01-22 Richard Stallman <rms@gnu.org>
23703
23704 * src/machine.h: entered into RCS
23705
23706 1991-12-21 Richard Stallman <rms@gnu.org>
23707
23708 * src/lalr.c, src/closure.c:
23709 entered into RCS
23710
23711 1991-12-20 Richard Stallman <rms@gnu.org>
23712
23713 * src/state.h: entered into RCS
23714
23715 1991-12-18 Richard Stallman <rms@gnu.org>
23716
23717 * src/print.c, src/nullable.c, src/derives.c:
23718 entered into RCS
23719
23720 1991-11-03 David J. MacKenzie <djm@gnu.org>
23721
23722 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
23723 entered into RCS
23724
23725 1988-09-09 Richard Stallman <rms@gnu.org>
23726
23727 * src/bison.hairy: entered into RCS
23728
23729 1987-12-16 Richard Stallman <rms@gnu.org>
23730
23731 * REFERENCES: entered into RCS
23732
23733
23734 -----
23735
23736 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
23737 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
23738 2008, 2009 Free Software Foundation, Inc.
23739
23740 Copying and distribution of this file, with or without
23741 modification, are permitted provided the copyright notice and this
23742 notice are preserved.